#cookie-note {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background-color: white;
    padding: 10px 30px 10px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
}

.cookie-note-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    margin: 0 auto;
    max-width: 1000px;
}

.cookie-text {
    font-size: 16px;
    line-height: normal;
}

.cookie-text .link {
    display: inline-block;
    color:#F46975;
    text-decoration: underline;
}

/* .cookie-accept {
    border: 1px solid #c8e1ff;
    height: 30px;
    width: 176px;
    text-align: center;
    line-height: 29px;
    color: #1c84ff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
    background-color: white;
} */

.cookie-accept {
    display: block;
    background-color: #fff;
    width: 220px;
    height: 42px;
    border: 1px solid #F46975;
    float: left;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    color: #F46975;
    cursor: pointer;
    font-weight: 500;
    transition: all .2s;
}

@media (max-width: 1200px) {
    .cookie-text {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    #cookie-note {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    #cookie-note {
        padding: 10px;
    }

    .cookie-note-content {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }
}

.form-agreement-section {
    margin-bottom: 20px;
}


.form-agreement-section .agreement-text {
    color: black;
    font-size: 14px;
}

.form-agreement-section .agreement-error {
    color: #FD3838;
    font-size: .8rem;
}


.input-label.error {
    color: #FD3838;
    margin-bottom: 4px;
    display: block;
}

.form-agreement-section .agreement-text .link {
    color: #0093B9;
}

.agreement-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.checkbox-icon {
    width: 100%;
    display: block;
}

.checkbox-icon.checked {
    display: none;
}

.form-agreement-section.checked .checkbox-icon.checked {
    display: block;
}

.form-agreement-section.checked .checkbox-icon.empty {
    display: none;
}

.agreement-btn {
    width: 22px;
    flex-shrink: 0;
    cursor: pointer;
    /* margin-top: 2px; */
}

.agreement-error {
    margin-top: 5px;
    color: #f8002c;
    display: none;
}

.form-agreement-section.error .agreement-error {
    display: block;
}


.js-hidden {
    display: none !important;
}


#main-form .hystmodal__window,
#success-modal .hystmodal__window {
	max-width: 400px;
}

.hystmodal .card {
	padding: 50px 45px;
}

.cta-form__title,
.popup-confirm__title {
	line-height: normal;
	font-size: 28px;
	margin: 0px !important;
	text-align: center;
}

.cta-form__description {
	font-size: 16px;
	line-height: normal;
	margin: 10px;
	text-align: center;
}

.popup-confirm__title {
	margin-top: 15px;
	margin-bottom: 30px;
}

.popup-confirm__descriprion {
	font-size: 18px;
    margin-top: 20px !important;
	line-height: normal;
	margin: 10px 0px 0px;
	text-align: center;
}

button:focus {
    outline: none !important;
    background-color: white;
}
