/* pop-up */

.pop-up {
    background: #00000080;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11111;
    transition: all 0.5s ease-in-out 0s;
}
.pop-up.open {
    left: 0%;
    transition: all 0.5s ease-in-out 0s;
}
.pop-up-title {
    font-size: 25px;
}
.pop-up-body {
    width: 370px;
    padding: 16px 20px 20px 20px;
    border-radius: 40px;
    background-color: #fff;
    position: relative;
}
.pop-up-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.pop-up-close {
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}
.pop-up-title {
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 12px;
}
.form-field-block-title {
    width: 100%;
    height: 60px;
    border-radius: 40px;
    padding: 20px 30px;
    font-size: 14px;
    font-weight: 300;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    border: 1px solid #0000004d;
}
.form-field-block-title:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url(./../images/icons/str-filter.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: calc(50% - 9px);
    right: 20px;
    transition: all 0.3s ease-in-out 0s;
}
.form-field-block-dropdown.is-simple .form-field-block-title {
    border: none;
    background: none;
    color: black;
    font-weight: 600;
    height: 45px;
    padding: 0;
}
.form-field-block-body {
    position: absolute;
    height: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out 0s;
    z-index: 11;
    background: #fff;
    padding: 0 20px;
    border-radius: 0 0 5px 5px;
    width: 100%;
    top: 101%;
    box-shadow: 0px 4px 15px 0px #0000000d;
}
.form-field-block-body-item label {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
    padding: 0 33px;
    margin-bottom: 16px;
    cursor: pointer;
    display: block;
    position: relative;
}
.form-field-block-dropdown {
    position: relative;
    margin-bottom: 15px;
}
.form-field-block-dropdown.is-simple {
    margin-bottom: 0;
}
.form-field-block-dropdown.open .form-field-block-body {
    height: auto;
    max-height: 400px;
    transition: all 0.3s ease-in-out 0s;
    padding: 20px;
    border-top: 1px solid #ffde39;
    overflow-y: auto;
}
.form-field-block-body-item input[type="radio"],
.form-field-block-body-item input[type="checkbox"] {
    width: 0;
    height: 0;
    overflow: hidden;
    display: none;
}
.form-field-block-body-item label::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: calc(50% - 11px);
    background: #1d1b201f;
}
.form-field-block-body-item label::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: calc(50% - 5px);
    border: 1px solid #1d1b20;
}
.form-field-block-body-item input:checked ~ label::after {
    content: "";
    background: url("./../images/icons/state-layer.png");
    background-size: contain;
    display: block;
    width: 10px;
    height: 10px;
    border: none;
    background-repeat: no-repeat;
}
.form-field-block-body::-webkit-scrollbar {
    width: 8px; /* Ширина скроллбара */
}

/* Стилі для стрілок скроллбара */
.form-field-block-body::-webkit-scrollbar-button {
    background: #f2f2f2; /* Колір стрілок */
    opacity: 0;
}

/* Стилі для доріжки скроллбара */
.form-field-block-body::-webkit-scrollbar-track {
    background: #f2f2f2;
    /* Колір доріжки */
}

/* Стилі для курсора скроллбара при наведенні */
.form-field-block-body::-webkit-scrollbar-thumb:hover {
    background-color: #888; /* Колір курсора при наведенні */
}

/* Стилі для курсора скроллбара */
.form-field-block-body::-webkit-scrollbar-thumb {
    background: #ffde39;
    border-radius: 20px;
    /* Колір курсора */
}
.form-field-block {
    margin-bottom: 15px;
}
.form-field-text {
    border: 1px solid #0000004d;
    width: 100%;
    height: 60px;
    border-radius: 40px;
    padding: 20px 30px;
    font-size: 14px;
    font-weight: 300;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
}
.form-field-text::placeholder {
    font-size: 14px;
    font-weight: 300;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
    color: #000;
}
.btn-submit {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
    width: 100%;
    padding: 17.5px;
    display: flex;
    justify-content: center;
    color: var(--c-white);
    background: var(--c-dark-tan);
    border-radius: 40px;
}
.btn-submit.is-simple {
    padding: 3px 10px;
    width: auto;
    font-size: 14px;
}
/* /pop-up */