.formWrapper {
    display: none;
    position: relative;
    max-width: 388px;
    width: 100%;
}
.formWrapper#call .link-modal {
    height: 44px;
    padding: 0 30px;
    border-radius: 24px;
    background-color: #3f9cc1;
    -webkit-transition: 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s;
    -o-transition: 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s;
    transition: 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s;
    font-family: "Droid Sans", sans-serif;
    color: #fff;
    font-size: 12px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #252e59;
}
.form__label {
    display: block;
    font-family: "Droid Sans", sans-serif;
    color: #7c7c7c;
    font-size: 14px;
    line-height: 1.5em;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 700;
}
.form__input {
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
}
.select {
    position: relative;
    width: 100%;
    color: #999;
    border: 1px solid #e1e6eb;
}
.select::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    background: 0 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid;
    right: 12px;
    top: 50%;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms;
    -webkit-transform-origin: 50% 50% 0;
    -ms-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.select.open {
    color: #212529;
}
.select.open:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.select__checked {
    cursor: pointer;
    font-size: 13px;
    padding: 8px 16px;
}
.select__options {
    position: absolute;
    z-index: 1;
    left: -1px;
    width: calc(100% + 2px);
    top: 36px;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e6eb;
    border-top: 0;
    border-bottom: 1px solid #e1e6eb;
}
.select__group-title {
    font-size: 14px;
    font-weight: 700;
    color: #6c757d;
    padding: 8px 15px;
}
.select__option {
    position: relative;
    cursor: pointer;
    width: 100%;
    font-size: 13px;
    background: #fff;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms;
}
.select__option > input {
    position: absolute;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.select__option > input:checked + .select__text {
    color: #fff;
    background: #2c5b80;
}
.select__text {
    padding: 5px 15px;
    background: #fff;
    -webkit-transition: 250ms;
    -o-transition: 250ms;
    transition: 250ms;
}
.select__text:hover {
    background: #f2f2f4;
}
.formConsent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}
.formConsent label {
    width: auto;
}
.formConsent__container {
    position: relative;
    min-width: 13px;
    margin-right: 8px;
}
.formConsent__input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.formConsent__input:checked + .formConsent__checkbox .formConsent__icon {
    opacity: 1;
}
.formConsent__checkbox {
    width: 13px;
    height: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    border-radius: 2px;
    border: 2px solid #c4c4c4;
}
.formConsent__icon {
    width: 13px;
    height: 13px;
    opacity: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.formConsent__text {
    text-align: left;
    letter-spacing: 1px;
    font-family: "Droid Sans", sans-serif;
    color: #7c7c7c;
    font-size: 12px;
    line-height: 1.5em;
}
.formConsent__text a {
    color: #252e59;
    text-decoration: underline;
}
.ajaxMessage {
    display: none;
}
.ajaxMessage.open {
    display: block;
}
.ajaxMessage__success {
    display: none;
}
.ajaxMessage__success.open {
  display: block;
}
.ajaxMessage__error {
    display: none;
}
.ajaxMessage__error.open {
    display: block;
}
.modal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
    position: fixed;
    padding: 40px 0;
    text-align: center;
    overflow: hidden auto;
    background-color: rgba(21, 42, 66, 0.7);
}
.modal:before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}
.modal__container {
    width: 400px;
    height: auto;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 30px 30px 20px;
    border-radius: 4px;
    background-color: #f3f3f3;
}
.modal__gallery {
    position: relative;
}
.modal__gallery img {
    display: none;
}
.modal__iframeWrap {
    position: relative;
    max-width: 650px;
    width: 100%;
}
.modal__iframe {
    top: 0;
    left: 0;
    width: 100%;
}
.modal__next,
.modal__prev {
    width: 0;
    height: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
}
.modal__prev {
    left: -60px;
    border-right: 20px solid #fff;
}
.modal__next {
    right: -60px;
    border-left: 20px solid #fff;
}
.modal__close {
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 100;
    width: 12px;
    height: 22px;
}
.modal__close:after,
.modal__close:before {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 2px;
    background: #7c7c7c;
    -webkit-transform: rotate(55deg);
    -ms-transform: rotate(55deg);
    transform: rotate(55deg);
}
.modal__close:before {
    -webkit-transform: rotate(-55deg);
    -ms-transform: rotate(-55deg);
    transform: rotate(-55deg);
}
.scrollbarMeasure {
    width: 50px;
    height: 50px;
    overflow-y: scroll;
    visibility: hidden;
}
.fadeIn {
    -webkit-animation: 0.5s fadeIn;
    animation: 0.5s fadeIn;
}
.fadeOut {
    -webkit-animation: 0.5s fadeOut;
    animation: 0.5s fadeOut;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@media only screen and (max-width: 1259px) {
    .modal {
        padding: 40px 10px;
    }
}
@media only screen and (max-width: 575px) {
    .modal__container {
        width: 100%;
    }
    .modal__iframeWrap {
        width: 92%;
    }
}
