.q-content.gc-body {
    background: #ffffff;
    padding: 48px 0 100px 0;
}
.gc-head h1 {
    text-transform: uppercase;
    text-align: center;
    font: 46px 'montserratbold', Arial, sans-serif;
    line-height: 120%;
    margin: 60px 0 50px;
}
.gc-form {
    max-width: 540px;
    margin: auto;
    width: 100%;
}

.gc-form__title {
    color: #7E6676;
    font-size: 20px;
    line-height: 120%;
    font-family: 'Montserrat';
    margin-bottom: 30px;
}
.gc-input {
    position: relative;
    margin-bottom: 20px;
}
.gc-input.form-item {
    margin-top: 0;
}
.gc-input label {
    font-size: 14px;
    font-family: 'Montserrat';
    margin-bottom: 10px;
    display: inline-block;
    line-height: 100%;
}
.gc-input input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #ECDEE6;
    border-radius: 0;
    width: 100%;
    font-size: 14px;
    height: 50px;
}

.gc-tooltip {
    position: absolute;
    z-index: 50;
}
.gc-input .gc-tooltip {
    right: 20px;
    bottom: 15px;
}
.gc-tooltip__icon {
    width: 20px;
    height: 20px;
}
.gc-tooltip__icon img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}
.gc-tooltip__text {
    position: absolute;
    font-family: 'Montserrat';
    font-size: 12px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 3px;
    padding: 15px;
    width: 248px;
    bottom: 80%;
    left: 120%;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}
.gc-tooltip:hover .gc-tooltip__text {
    opacity: 1;
    visibility: visible;
}

.gc-form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.gc-form-col {
    width: calc(50% - 10px);
    border: 1px solid #ECDEE6;
    border-radius: 7px;
    padding: 20px;
    margin-bottom: 20px;
}
.gc-form-col__title {
    font-size: 16px;
    font-family: 'Montserrat';
    margin-bottom: 20px;
}
.gc-chbx {
    cursor: pointer;
    position: relative;
    display: block;
    width: 100%;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat';
}
.gc-chbx input {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    left: 0;
    top: 0;
}
.gc-chbx__icon {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 0;
    background: #FFFFFF;
    border: 1px solid #7E6676;
}
.gc-chbx__icon:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    background: #ffffff url(/local/templates/kronostime2022/img/check2.svg) 3px 4px no-repeat;
    background-size: 11px auto;
    opacity: 0;
    border: 2px solid #E30613;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.gc-chbx input:checked+.gc-chbx__icon:before {
    opacity: 1;
}
.gc-chbx input:checked+.gc-chbx__icon {
    border-color: transparent;
}

.gc-input textarea.q-form__input {
    font-size: 14px;
    height: 150px;
    float: none;
    border-radius: 0;
    border: 1px solid #ECDEE6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.gc-input .dropzone {
    min-height: 40px;
    padding: 0;
    margin: 0 0 30px 0;
    border: none;
    position: relative;
    z-index: 20;
}
.gc-input .dropzone .dz-message {
    margin: 0 0 20px 0;
    text-align: left;
}
.gc-input .dropzone .dz-message .dz-button {
    background: #FFFFFF;
    border: 2px solid #E30613;
    border-radius: 7px;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: #E30613;
    font-family: 'Montserratbold';
    padding: 11px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.gc-input .dropzone .dz-message .dz-button:hover {
    opacity: 0.7;
}
.gc-input .dropzone .dz-preview {
    min-height: 0;
    height: 70px;
    width: 70px;
    margin: 0 10px 10px 0;
}
.gc-input .dropzone .dz-preview .dz-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    -webkit-box-shadow: 0 0 60px 7px #000000;
    box-shadow: 0 0 60px 7px #000000;
}
.gc-input .dropzone .dz-preview .dz-image {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    background: #dddddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.gc-input .dropzone .dz-preview .dz-details {
    font-size: 8px;
    padding: 8px;
}
.gc-input .dropzone .dz-preview .dz-details .dz-size {
    font-size: 10px;
}
.gc-input .dropzone .dz-preview .dz-progress {
    width: 80%;
    left: 10%;
    right: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin: 0;
    height: 6px;
    margin-top: 18px;
    display: none;
}
.gc-input .dropzone .dz-preview .dz-remove {
    font-size: 0;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(/local/templates/kronostime2022/img/remove_icon.svg) center no-repeat;
    z-index: 1100;
}
.gc-input .dropzone .dz-preview .dz-error-message {
    top: 80px;
    left: -34px;
}

.gc-agree .gc-chbx {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 20px;
}

.gc-form .bt-red.q-button {
    height: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: auto;
    min-width: 184px;
    margin: auto;
    float: none;
    display: block;
    margin-top: 30px;
    font-size: 14px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.gc-form-description {
    font-size: 14px;
    font-family: 'montserrat';
    background: #FBF3EE;
    border-radius: 7px;
    margin-top: 60px;
    padding: 20px;
}

.gc-form-mess {
    text-align: center;
    font-size: 16px;
    margin: 40px 0 0 0;
    background: #ebfdea;
    font-family: 'montserrat';
    padding: 20px;
    border-radius: 7px;
}


/*********preloader**********/
.preloader_f {
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    background: rgba(0, 0, 0, 0.09);
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}
.preloader_f.active {
    opacity: 1;
    z-index: 9999999999;
    visibility: visible;
}
.sk-fading-circle {
    width: 4em;
    height: 4em;
    position: relative;
    margin: auto;
}
.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #ff0000;
    -webkit-box-shadow: 0 0 3px rgba(255, 255, 255, 0.66);
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.66);
    border-radius: 100%;
    -webkit-animation: sk-fading-circle-delay 1.2s infinite ease-in-out both;
    animation: sk-fading-circle-delay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle-2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}
.sk-fading-circle .sk-circle-3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}
.sk-fading-circle .sk-circle-4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sk-fading-circle .sk-circle-5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}
.sk-fading-circle .sk-circle-6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}
.sk-fading-circle .sk-circle-7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sk-fading-circle .sk-circle-8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}
.sk-fading-circle .sk-circle-9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}
.sk-fading-circle .sk-circle-10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.sk-fading-circle .sk-circle-11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}
.sk-fading-circle .sk-circle-12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}
.sk-fading-circle .sk-circle-2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.sk-fading-circle .sk-circle-3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.sk-fading-circle .sk-circle-4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-fading-circle .sk-circle-5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.sk-fading-circle .sk-circle-6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}
.sk-fading-circle .sk-circle-7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.sk-fading-circle .sk-circle-8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.sk-fading-circle .sk-circle-9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle-10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle-11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle-12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-fading-circle-delay {
    0%, 39%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

@keyframes sk-fading-circle-delay {
    0%, 39%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}
/*********end_preloader**********/


@media(max-width: 991px) {
    .gc-tooltip__text {
        left: auto;
        right: -100%;
        bottom: 120%;
    }
}

@media(max-width: 600px) {
    .gc-head h1 {
        font-size: 21px;
        margin: 24px 0 0;
    }
    .q-content.gc-body {
        padding: 30px 0 50px 0;
    }
    .gc-form {
        padding: 0 10px;
    }
    .gc-form__title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .gc-tooltip__text {
        padding: 10px;
        width: 170px;
    }
    .gc-input.form-item+br, .gc-input.form-item+br+br {
        display: none;
    }
    .gc-form-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .gc-form-col {
        width: 100%;
    }
    .gc-input .dropzone .dz-message .dz-button {
        font-size: 12px;
    }
    .gc-agree .gc-chbx {
        font-size: 12px;
    }
    .gc-form .bt-red.q-button {
        width: 100%;
    }
    .gc-form-description {
        margin-top: 50px;
    }

}