.doccheck-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1035;
}

.docheck-popup-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 99999;
    cursor: pointer;
    color: white;
    font-size: 25px;
    font-weight: 300;
}

.component-docheck-form .docheck-popup-form-left {
    background-color: var(--global--color-light-gray);
}

.component-docheck-form .docheck-popup-form-right {
    background-color: var(--global--color-raspberry-red);
}

.component-docheck-form .docheck-popup-top-text {
    color: var(--global--color-dark-gray);
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-transform: uppercase;
}

.component-docheck-form .docheck-popup-heading {
    color: var(--global--color-raspberry-red);
    letter-spacing: 0.01em;
}

.component-docheck-form .docheck-popup-description {
    color: var(--global--color-dark-gray);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.component-docheck-form .docheck-popup-form-header {
    color: var(--global--color-white);
    margin-bottom: 24px;
}

.component-docheck-form .docheck-popup-form-header img {
    margin-right: 24px;
}

.inputs-area input[type="text"], .inputs-area input[type="email"], .inputs-area select {
    color: var(--global--color-dark-gray);
    font-size: 20px;
    line-height: 1.5;
    width: 100%;
    margin-bottom: 12px;
    padding: 8px;
}

.inputs-area input[type="submit"],
.inputs-area button[type="submit"]  {
    background-color: var(--global--color-white);
    background-repeat: no-repeat;
    background-position: right 25px center;
    color: var(--global--color-navy-blue);
    padding: 10px 24px;
    border-radius: 25px;
    border-width: 0px;
    letter-spacing: 0.06em;
}

.inputs-area input[type="submit"],
.inputs-area button[type="submit"] i.icon-logout::after {
	background-image: url("img/icon-login.svg");
}
.inputs-area input[type="submit"] {
	padding-right: 48px;
}

.component-docheck-form .login-links {
    list-style-type: none;
    margin-bottom: 24px
}

.component-docheck-form .login-links a {
    color: var(--global--color-white);
    text-decoration-line: underline;
}

.docheck-popup-form-steps {
    margin-bottom: 100px;
    display: flex !important;
    justify-content: center;
}

.inputs-area {
    display: block;
    position: relative;
}

.prev-next-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bttn-prev {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.06em;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: var(--global--color-white);
    cursor: pointer;
}

.bttn-next {
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    background-color: var(--global--color-white);
    color: var(--global--color-primary-dark);
}

.bttn-next::after {
    content: ">";
    background-image: url("../img/icon-arrow-right-blue.svg");
    padding-left: 15px;
    margin-left: 10px;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center right;
}

.steps-label {
    color: var(--global--color-white);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
}

.steps-inner-div {
    display: inline-block;
}

.steps-inner-div input {
    accent-color: #F4BF00;
}

.conditions-div {
    display: block;
}

.conditions-div input[type="radio"] {
    -webkit-appearance: none;
    outline: none;
    appearance: none;
    background-color: var(--global--color-navy-blue);;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid var(--global--color-white);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0px;
}

.conditions-div input[type="radio"]:checked {
    background-color: var(--global--color-white);
}

.conditions-div label {
    color: var(--global--color-white);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    margin-left: 24px;
}

.step-inactive {
    color: var(--global--color-gray) !important;
}


.input-text-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;

    letter-spacing: 0.01em;

    color: var(--global--color-white);
}

.input-text-desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;

    color: var(--global--color-white);
}

.input-filling-desc {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-decoration-line: underline;
    color: var(--global--color-white);

}

.post-address-text {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 12px;
    letter-spacing: 0.01em;

    color: var(--global--color-white);
}


/* */
/* The checkbox-container */
.checkbox-container {
    display: inline-flex;
    justify-items: center;
    align-content: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 24px;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--global--color-navy-blue);
    border: 1px white solid;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--global--color-navy-blue);
}

/* Create a custom checkbox */
.check_mid {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--global--color-navy-blue);
    border: 1px white solid;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .check_mid {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .check_mid {
    background-color: var(--global--color-navy-blue);
}


/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check_mid:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
    z-index: 9;
}

.checkbox-container input:indeterminate ~ .check_mid:after {
    display: block;
}

/* Style the check_mid/indicator */
.checkbox-container .check_mid:after {
    left: 6px;
    top: 0px;
    width: 12px;
    height: 14px;
    border: solid white;
    border-width: 0 0 2px 0;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 9px;
    top: 3px;
    width: 8px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

input:indeterminate {
    background: lime;
}

.spacer {
    width: 100%;
    height: 24px;
}

.checkbox-input {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--global--color-white);
}

.error-message-sec {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #f00;
}


.thank-you-upper-label {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--global--color-white);

}

.thank-you-title {
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    line-height: 42px;
    letter-spacing: 0.01em;
    color: var(--global--color-white);
}

.thank-you-desc {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--global--color-white);
}

.tab-4-icon-section {
    display: none;
}

.docheck-popup-mail-icon {
    max-width: 235px;
    max-height: 158px;
}

.docheck-popup-close-btn svg {
    color: white;
    margin-right: 60px;
}

@media (min-width: 992px) {


    .com-ponent-docheck-popup-form {
        min-height: calc(100vh - 750px);
    }

    .component-docheck-form .docheck-popup-form-left {
        padding-right: 0;
    }

    .component-docheck-form .docheck-popup-form-right {
        padding-left: 0;
    }

    .component-docheck-form .docheck-popup-form-left-inner {
        padding: 72px;
    }

    .component-docheck-form .docheck-popup-form-right-inner {
        padding-left: 100px;
        padding-right: 100px;
    }

    .component-docheck-form .docheck-popup-top-text {
        margin-bottom: 12px;
    }

    .component-docheck-form .docheck-popup-heading {
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 18px;
    }

    .component-docheck-form .docheck-popup-form-header {
        font-size: 34px;
        line-height: 42px;
    }

    .inputs-area input[type="text"], .inputs-area input[type="email"], .inputs-area select {
        padding: 8px;
    }

    .component-docheck-form .login-links li:not(:last-child) {
        margin-right: 12px;
    }

    .component-docheck-form .login-links a {
        font-size: 12px;
        line-height: 1.5;
    }

    .inputs-area input[type="submit"] {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 991.98px) {
    .docheck-popup-close-btn svg {
        color: var(--global--color-navy) !important;
        margin-right: 0px
    }

    .docheck-popup-close-btn {
        color: var(--global--color-dark-gray);
    }

    .component-docheck-form .docheck-popup-top-text {
        margin-bottom: 6px;
    }

    .component-docheck-form .docheck-popup-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px;
    }

    .component-docheck-form .docheck-popup-form-left-inner {
        padding: 104px 12px 62px;
    }

    .component-docheck-form .docheck-popup-form-right-inner {
        padding: 78px 12px;
    }

    .component-docheck-form .docheck-popup-form-header {
        font-size: 28px;
        line-height: 36px;
    }

    .component-docheck-form form input[type="text"],
    .component-docheck-form form input[type="password"] {
        padding: 14px 8px 16px;
    }

    .component-docheck-form .login-links li:not(:last-child) {
        margin-right: 24px;
    }

    .component-docheck-form .login-links a {
        font-size: 14px;
        line-height: 21px;
    }

    .component-docheck-form form input[type="submit"] {
        font-size: 18px;
        line-height: 23px;
    }

    .input-filling-desc {
        font-size: 14px;
    }
}


/*mobile styles */
@media (max-width: 767.98px) {
    .docheck-popup-form-steps {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .spacer {
        height: 18px;
    }

    .component-docheck-form .docheck-popup-form-right-last-step {
        background-color: var(--global--color-sky-blue);
    }

    .tab-4-icon-section {
        display: block;
    }
}

@media (max-width: 639.98px) {
    .checkboxes {
        display: flex;
        flex-direction: column;
    }
}


.docheck-popup-container-popup .doccheck-login-page-form-left {
    background-color: var(--global--color-light-gray);
}

.docheck-popup-container-popup .doccheck-login-page-form-right {
    background-color: var(--global--color-raspberry-red);
}

.docheck-popup-container-popup .doccheck-login-page-form-top-text {
    color: var(--global--color-dark-gray);
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.06em;
}

.docheck-popup-container-popup .doccheck-login-page-form-heading {
    color: var(--global--color-raspberry-red);
    letter-spacing: 0.01em;
}

.docheck-popup-container-popup .doccheck-login-page-form-desciption {
    color: var(--global--color-dark-gray);
    font-size: 20px;
    line-height: 1.5;
}

.docheck-popup-container-popup .doccheck-login-page-form-header {
    color: var(--global--color-white);
    margin-bottom: 24px;
}

.docheck-popup-container-popup .doccheck-login-page-form-header img {
    margin-right: 24px;
}

.docheck-popup-container-popup form input[type="text"],
.docheck-popup-container-popup form input[type="password"] {
	border-width: 0;
    color: var(--global--color-dark-gray);
    font-size: 20px;
    line-height: 1.5;
    width: 100%;
    margin-bottom: 12px;
	outline: none;
}

.docheck-popup-container-popup form input[type="submit"],
.docheck-popup-container-popup form button[type="submit"] {
    background-color: var(--global--color-white);
    background-repeat: no-repeat;
    background-position: right 25px center;
    color: var(--global--color-raspberry-red);
    padding: 10px 24px;
    border-radius: 25px;
    border-width: 0px;
    letter-spacing: 0.06em;
}

.docheck-popup-container-popup form input[type="submit"],
.docheck-popup-container-popup form button[type="submit"] i.icon-logout::after {
	background-image: url("../img/icon-login.svg");
}
.docheck-popup-container-popup form input[type="submit"] {
	padding-right: 48px;
}

.docheck-popup-container-popup .login-links {
    list-style-type: none;
    margin-bottom: 24px
}

.docheck-popup-container-popup .login-links a {
    color: var(--global--color-white);
    text-decoration-line: underline;
}

@media (min-width: 992px) {
    .com-ponent-doccheck-login-page-form {
        min-height: calc(100vh - 750px);
    }

    .docheck-popup-container-popup .doccheck-login-page-form-overlay {
        width: 100%;
    }

    .doccheck-login-page-form-wide .doccheck-login-page-form-overlay {
        width: 50%;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-overlay {
        height: 100%;
        z-index: -1;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-overlay-left {
        background-color: var(--global--color-light-gray);
        left: 0;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-overlay-right {
        background-color: var(--global--color-raspberry-red);
        right: 0;
    }

    .doccheck-login-page-form-wide .doccheck-login-page-form-left {
        padding-right: 0;
    }

    .doccheck-login-page-form-wide .doccheck-login-page-form-right {
        padding-left: 0;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-left-inner {
        padding: 72px;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-right-inner {
        padding-left: 100px;
        padding-right: 100px;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-top-text {
        margin-bottom: 12px;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-heading {
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 18px;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-header {
        font-size: 34px;
        line-height: 42px;
    }

    .docheck-popup-container-popup form input[type="text"],
    .docheck-popup-container-popup form input[type="password"] {
        padding: 8px;
    }

    .docheck-popup-container-popup .login-links li:not(:last-child) {
        margin-right: 12px;
    }

    .docheck-popup-container-popup .login-links a {
        font-size: 12px;
        line-height: 1.5;
    }

    .docheck-popup-container-popup form input[type="submit"] {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 991.98px) {
    .docheck-popup-container-popup .doccheck-login-page-form-top-text {
        margin-bottom: 6px;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-left-inner {
        padding: 104px 12px 62px;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-right-inner {
        padding: 78px 12px;
    }

    .docheck-popup-container-popup .doccheck-login-page-form-header {
        font-size: 28px;
        line-height: 36px;
    }

    .docheck-popup-container-popup form input[type="text"],
    .docheck-popup-container-popup form input[type="password"] {
        padding: 14px 8px 16px;
    }

    .docheck-popup-container-popup .login-links li:not(:last-child) {
        margin-right: 24px;
    }

    .docheck-popup-container-popup .login-links a {
        font-size: 14px;
        line-height: 21px;
    }

    .docheck-popup-container-popup form input[type="submit"] {
        font-size: 18px;
        line-height: 23px;
    }
}