

.container_preloader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    min-height: 100dvh;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}


.box_logo_preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 220px;
    min-height: 175px;
    max-height: 175px;
    margin: auto;
    justify-content: center;
    animation: logoAnimation 1s forwards;
}

.bar_preloader_with_logo{
    position: relative;
    z-index: 10;
}

.logo_preloader {
    width: 156.406px;
    height: 106.563px;
    margin: auto;
}

.line_loader_preloader {
    display: block;
    width: 0;
    height: 1px;
    background: white;
    margin-top: 10px;
    border-radius: 2px;
    animation: lineFill 1s ease-in-out;

}


.box_bars_preloader {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
}

.bar_preloader {
    flex: 1;
    height: 100dvh;
    background: #1B1444;
    transform-origin: top;
    transform: translateY(0%);
    transition: transform 1s ease;
}

@keyframes lineFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes foldUp {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(-100%);
    }
}




.desktop_header{
    display: none;
}


.global_container_header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    background: #FFF;
    box-shadow: 0 2px 4px -1px rgba(66, 76, 88, 0.10);
    padding: 12px 20px;
}


.mobile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile_header_menu {
    width: 25px;
    height: 25px;
    transition: var(--all-time-transition);
    fill: #1B1444;
}

.mobile_header_menu use {
    transition: var(--all-time-transition);
}

#iconBurger {
    opacity: 1;
}

.container_menu_mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    bottom: 0;
    background: #FFF;
    padding: 0 10px 0 10px;
    transition: var(--all-time-transition);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    z-index: 10000;
}

.container_menu_mobile.open {
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    pointer-events: all;
}

.container_logo_btn_close{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px 12px 10px;
}


.icon_close_menu_mobile {
    width: 25px;
    height: 25px;
}


.box_top_menu_links {
    display: flex;
    align-items: center;
}

.icon_arrow_menu_link {
    display: block;
    padding: 5px;
    width: 26px;
    height: 24px;
    object-fit: cover;
    transition: var(--all-time-transition);
}

.item_menu_links_children.open .icon_arrow_menu_link {
    transform: rotate(180deg);
}

.container_menu_links_search{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item_menu_links {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
}

.item_menu_links::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(27, 20, 68, 0.10);
}

.item_menu_links:last-child::after {
    display: none;
}

.item_menu_links:first-child {
    margin-top: 0;
}

.link_menu_mobile {
    padding: 12px 8px;
    color: #090712;
    font-family: var(--font-family-helvetica);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 42px;
}

.list_children_menu_links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
}

.list_children_menu_links {
    max-height: 0;
    overflow: hidden;
    margin-top: -6px;
    transition: var(--all-time-transition);
}

.item_menu_links_children.open .list_children_menu_links {
    max-height: 500px;
    overflow: visible;
}


.link_children_menu_link {
    display: flex;
    padding: 9px 8px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #090712;
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.link_children_menu_link.active {
    font-weight: 400;
}

.link_children_menu_link.active::before{
    content: '';
    display: block;
    width: 8.833px;
    height: 8.833px;
    border-radius: 50%;
    background-color: var(--color-violet-600);
}

.link_menu_mobile .width_children_menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.button_menu_search {
    width: 100%;
    display: flex;
    padding: 9px 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 6px;
    background: #9EE334;
    color: #090712;
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    transition: var(--all-time-transition);
    height: 44px;
}


.button_menu_search:hover {
    background: #fff;
}

.container_arrow_button {
    width: 26px;
    height: 23px;
    overflow: hidden;
}

.box_icon_arrow_button{
    display: flex;
    align-items: center;
    gap: 5px;
    transform: rotate(-45deg);
}

.icon_arrow_button {
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    fill: #090712;
    transition: var(--all-time-transition);
    transform: translateX(-25px);
}

.button_menu_search:hover .icon_arrow_button {
    transform: translateX(0);
}

.container_menu_language_mobile {
    display: flex;f.icon_arrow_button;
    gap: 10px;
    flex-direction: column;
    padding-top: 10px;
    border-top: 1px solid rgba(27, 20, 68, 0.10);
}


.box_top_select_language_mobile{
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 6px;
    height: 38px;
}

.icon_arrow_select_language_mobile {
    width: 16px;
    height: 16px;
    transition: var(--all-time-transition);
}


.container_menu_language_mobile.open .icon_arrow_select_language_mobile {
    transform: rotate(180deg);
}

.text_select_language_mobile {
    color: #090712;
    font-family: var(--font-family-helvetica);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    /* 83.333% */
}

.list_select_language_mobile{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    transition: var(--all-time-transition);
}

.link_select_language_mobile {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 6px;
}

.link_select_language_mobile {
    color: #090712;
    font-family: var(--font-family-helvetica);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 0.83;

}

.link_select_language_mobile.active {
    font-weight: 500;
    pointer-events: none;
}

.link_select_language_mobile.active::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url("../../image/icon_done_arrow.svg") no-repeat;
    background-size: 20px 20px;
    background-position: center;
}


.list_select_language_mobile {
    max-height: 0;
    margin-top: -10px;
    overflow: hidden;
    transition: var(--all-time-transition);
}


.container_menu_language_mobile.open .list_select_language_mobile {
    max-height: 500px;
    margin-top: 0;
    overflow: auto;
}

.background{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--all-time-transition);
}

.background.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 9999;
}



/* ========================== container_search ==========================  */

.container_search_mobile{
    position: fixed;
    padding: 10px;
    top: 0;
    right: 0;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #fff;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--all-time-transition);
    z-index: -1;
}

.container_search_mobile.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    z-index: 10001;
}

.box_top_search_mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;

}


.button_close_search_mobile {
    display: flex;
    width: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.icon_close_search_mobile {
    fill: #090712;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}


.title_top_search_mobile {
    color: #071121;
    font-family: var(--font-family-helvetica);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}


/* ========================== /container_search ==========================  */



@media screen and (max-width: 1279px) {
    .button_menu_search {
        font-size: 16px;
    }
    .icon_arrow_menu_link {
        padding: 0;
        width: 16px;
        height: 14px;
        margin-top: 5px;
    }

}

@media screen and (max-width: 768px) {
    .box_top_select_language_mobile {
        height: 59px;
    }
    .container_menu_language_mobile {
        padding-top: 0;
    }
    .link_select_language_mobile {

    }
}


@media screen and (min-width: 1280px) {
    .desktop_header{
        display: flex;
    }

    .mobile_header{
        display: none;
    }

    .global_container_header {
        position: fixed;
        top: -100%;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 80px);
        max-width: 1600px;
        padding: 12px 16px;
        transition: var(--all-time-transition);
    }

    .global_container_header.scrolled {
        top: 20px;
        border-radius: 12px;
        background: #FFF;
        backdrop-filter: blur(10px);
    }


    .desktop_header{
        justify-content: center;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }


    .logo_header_desktop {
        width: 143.673px;
        height: 44px;
        flex-shrink: 0;
    }

    .container_menu_links_desktop{
        display: flex;
        align-items: center;
        height: 100%;
    }

    .list_menu_links_desktop {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .item_menu_links_desktop{
        display: flex;
        align-items: center;
        height: fit-content;

    }

    .link_menu_desktop {
        color: #090712;
        font-family: var(--font-family-helvetica);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.17;
        transition: var(--all-time-transition);
        border-radius: 6px;
        padding: 10px 13px;
        height: 36px;
    }

    .link_menu_desktop:hover {
        background: #9EE334;
    }

    .item_menu_links_desktop.menu-item-has-children:hover .link_menu_desktop{
        background: #9EE334;
    }

    .item_menu_links_desktop.current_page_item .link_menu_desktop{
        background: #9EE334;
    }


    .item_menu_links_desktop_service .link_menu_desktop{
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .item_menu_links_desktop_service .link_menu_desktop::after {
        content: '';
        display: flex;
        width: 16px;
        height: 14px;
        transform: translateY(1px);
        align-items: center;
        background-image: url("../../image/icon_short_arrow_list.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 16px 14px;
        transition: var(--all-time-transition);
    }

    .item_menu_links_desktop.menu-item-has-children:hover .link_menu_desktop::after {
        transform: rotate(180deg);
    }

    .box_text_link_menu_desktop {
        display: flex;
        flex-direction: column;
        padding: 0 1px;
        gap: 5px;
        height: 16px;
        overflow: hidden;
        transition: var(--all-time-transition);
    }

    .text_link_menu_desktop{
        transition: var(--all-time-transition);
    }

    .link_menu_desktop:hover .text_link_menu_desktop,
    .item_menu_links_desktop.menu-item-has-children:hover .text_link_menu_desktop {
        transform: translateY(-21px);
    }

    .button_menu_search_desktop {
        padding: 5px 14px;
        height: 36px;
        align-items: center;
        border: 1px solid #9EE334;
    }

    .button_menu_search_desktop:hover {
        border-color: #090712;
    }


}




.container_children_menu_list_header {
    position: absolute;
    padding-top: 20px;
    top: 76%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--all-time-transition);
}


.children_menu_list_header {
    width: max-content;
    display: flex;
    padding: 16px;
    flex-wrap: wrap;
    max-height: 264px;
    column-gap: 16px;
    row-gap: 8px;
    flex-direction: column;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    min-width: 650px;
    max-width: 650px;
}

.item_menu_links_desktop.menu-item-has-children:hover .container_children_menu_list_header{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

    /*.children_menu_list_header.open {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    pointer-events: auto;*/
/*}*/

.children_menu_link_header_desktop{
    display: inline-flex;
    padding: 10px;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    color:  #090712;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    transition: var(--all-time-transition);
}

.children_menu_link_header_desktop:hover {
    background: #F2F3F6;
}

.box_icons_link_children_menu_desktop {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 20px;
    overflow: hidden;
}

.circle_link_children_menu_desktop {
    transform: translateX(-26px);
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    position: relative;
    display: block;
    transition: var(--all-time-transition);
}

.circle_link_children_menu_desktop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 8.833px;
    height: 8.833px;
    border-radius: 50%;
    background: #090712;
    opacity: 0.2;
}

.icon_link_children_menu_desktop {
    display: flex;
    transform: translateX(-26px);
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    justify-content: flex-end;
    align-items: center;
    transition: var(--all-time-transition);
}

.children_menu_link_header_desktop:hover .icon_link_children_menu_desktop,
.children_menu_link_header_desktop:hover .circle_link_children_menu_desktop {
    transform: translateX(0);
}

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

.box_top_select_language_desktop{
    border-radius: 6px;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    /*gap: 2px;*/
    transition: var(--all-time-transition);
    height: 36px;
}

.box_top_select_language_desktop:hover {
    background: #9EE334;
    cursor: pointer;
}

.container_menu_language_desktop.open .box_top_select_language_desktop {
    background: #9EE334;
}

.text_select_language_desktop {
    color: #090712;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 15px; /* 107.143% */
    width: 19px;
    height: 12px;
}

.container_menu_language_desktop{
    position: relative;
}

.list_select_language_desktop{
    position: absolute;
    top: 165%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 149px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    pointer-events: none;
    transition: var(--all-time-transition);
}

.container_menu_language_desktop.open .list_select_language_desktop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.icon_arrow_select_language_desktop {
    min-width: 16px;
    max-width: 16px;
    min-height: 14px;
    max-height: 14px;
    transition: var(--all-time-transition);
}

.container_menu_language_desktop.open .icon_arrow_select_language_desktop {
    transform: rotate(180deg);
}

.item_select_language_desktop {
    width: 100%;
}

.link_select_language_desktop {
    display: flex;
    height: 34px;
    width: 100%;
    padding: 10px;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 6px;
    color: #090712;
    font-family: var(--font-family-helvetica);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: var(--all-time-transition);
}

.link_select_language_desktop.active {
    font-weight: 500;
}

.link_select_language_desktop.active::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url("../../image/icon_done_arrow.svg") no-repeat;
    background-size: 20px 20px;
    background-position: center;
}

.link_select_language_desktop:hover {
    background: #F2F3F6;
}

.container_report_property_form{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
    max-width: 504px;
    padding: 20px 10px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 12000;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--all-time-transition);
}

.container_report_property_form.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: auto;
    overflow: auto;
}

.box_top_report_property_form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.btn_close_report_property_form {
    display: flex;
    width: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--all-time-transition);
}

.btn_close_report_property_form:hover {
    background-color: #F2F3F6;
}

.icon_close_report_property_form {
    width: 20px;
    height: 20px;
    transition: var(--all-time-transition);
    fill: #090712;
}

.title_report_property_form {
    color: #071121;
    font-family: var(--font-family-helvetica);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.box_report_property_form br {
    display: none;
}


.box_report_property_form p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    /*margin-bottom: 20px;*/
}

.label_report_property_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.label_text_report_property_form {
    overflow: hidden;
    color: #495260;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*.label_report_property_form .wpcf7-form-control-wrap {*/
    /*width: 100%;*/
/*}*/

.input_report_property_form {
    display: flex;
    width: 100%;
    padding: 12px 14px;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    background: #F2F3F6;
    transition: var(--all-time-transition);

    overflow: hidden;
    color: #071121;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

}

.input_report_property_form::placeholder {
    color: #6D7889;
}

.label_report_property_form .choices {
    display: flex;
    padding: 12px 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 6px;
    background: #F2F3F6;
    height: 44px;
}

.label_report_property_form .wpcf7-form-control-wrap {
    width: 100%;
}

.choices__item {
    overflow: hidden;
    color: #071121;
    text-overflow: ellipsis;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.choices__list.choices__list--dropdown{
    display: flex;
    padding: 8px;
    align-items: center;
    border-radius: 8px;
    background: #FFF;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--all-time-transition);
    border: none;
    bottom: 100%;
    top: auto;
}

.choices__list.choices__list--dropdown.is-active {
    opacity: 1;
    z-index: 1;
    visibility: visible;
    pointer-events: auto;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.choices__item.choices__item--choice.is-selected::before {
    content: '';
    display: flex;
    width: 20px;
    height: 20px;
    background-image: url("../../image/icon_done_arrow.svg");
}

.choices__item.choices__item--selectable {
    font-weight: 500;
}
.choices__item.choices__item--choice.choices__item--selectable {
    font-weight: 400;
}

.acceptance_report_property_form {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.wpcf7-form-control-wrap .wpcf7-list-item-label {
    color: #6D7889;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.wpcf7-form-control-wrap .wpcf7-list-item-label a {
    color: #1B1444;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.wpcf7-acceptance .wpcf7-list-item-label:before {
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    border: 1px solid #D2D1D8;
    background-color: #fff;
}

.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label:before {
    background-size: 10px;
}

.send_report_property_form{
    display: flex;
    padding: 9px 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 6px;
    background: #1B1444;
    color: #FFF;
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    height: 44px;
    line-height: normal;
    transition: var(--all-time-transition);

}

.send_report_property_form:disabled {
    opacity: 0.6;
}

.send_report_property_form:hover {
    background: #090712;
}

.icon_arrow_button_white {
    fill: #FFFFFF;
}

.send_report_property_form:hover .icon_arrow_button_white {
    transform: translateX(0);
}


.form_report_property {
    width: 100%;
}

.choices__list.choices__list--single .choices__item.choices__item--selectable{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.choices__list.choices__list--single .choices__item.choices__item--selectable::after {
    content: '';
    width: 20px;
    height: 20px;
    display: flex;
    background-image: url("../../image/icon_short_arrow_list.svg");
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--all-time-transition);
}

.choices.is-open .choices__list.choices__list--single .choices__item.choices__item--selectable::after {
    transform: rotate(180deg);
}

.wpcf7 form.invalid .wpcf7-response-output {
    font-family: var(--font-family-helvetica);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.label_text_report_property_form {
    display: flex;
    align-items: center;
    gap: 4px;
}

.label_report_property_form:has([aria-required="true"]) .label_text_report_property_form::after {
    content: '*';
    overflow: hidden;
    color: rgb(220 50 50);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-family-helvetica);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.container_report_property_form .choices__list .choices__item--selectable {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;

}

.container_report_property_form .choices__list--single .choices__item--selectable {
    font-weight: 500;

}

.container_report_property_form .choices__list .choices__item--selectable.is-selected {
    font-weight: 500;
}

@media screen and (min-width: 504px) {
    .container_report_property_form {
        padding: 20px;
        border-radius: 14px;
        bottom: auto;
        right: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 743px) {
    .form_hero_home_page {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        align-self: stretch;
    }

    .container_radio_hero_form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 100%;
        height: 41px;
    }

    .label_radio_hero_form {
        display: flex;
        width: 100%;
        padding: 12px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-top: 3px solid rgba(0,0,0,0);
        color: #090712;
        font-family: var(--font-family-helvetica);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 17px;
        height: 41px;
    }

    .input_radio_hero_form {
        width: 0;
        height: 0;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
    }

    .label_radio_hero_form:has(.input_radio_hero_form:checked) {
        border-top: 3px solid #1B1444;
    }

    .container_inputs_hero_form{
        display: flex;
        width: 100%;
        gap: 20px;
        flex-direction: column;
        align-self: stretch;
    }

    .label_inputs_hero_form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 4px;
        flex: 1 0 0;
    }

    .text_label_inputs_hero_form{
        color: #6D7889;
        font-family: var(--font-family-helvetica);
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .container_custom_select_hero_form {
        position: relative;
        width: 100%;
    }

    .box_top_custom_select_hero_form{
        display: flex;
        padding: 12px 14px;
        justify-content: center;
        align-items: center;
        gap: 6px;
        align-self: stretch;
        border-radius: 6px;
        background: #F2F3F6;
        cursor: pointer;
    }

    .text_selected_custom_select_hero_form {
        overflow: hidden;
        color: #071121;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-overflow: ellipsis;
        font-family: var(--font-family-helvetica);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .text_selected_custom_select_hero_form::after {
        content: '';
        width: 20px;
        height: 20px;
        background-image: url("../../image/icon_short_arrow_list.svg");
        background-repeat: no-repeat;
        background-position: center;
        transition: var(--all-time-transition);
    }

    .container_custom_select_hero_form.open .text_selected_custom_select_hero_form::after{
        transform: rotate(180deg);
    }

    .list_custom_select_hero_form {
        position: absolute;
        top: 110%;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 8px;
        background: #FFF;
        box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        width: 100%;
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        pointer-events: none;
        transition: var(--all-time-transition);
    }

    .container_custom_select_hero_form.open .list_custom_select_hero_form {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .item_custom_select_hero_form {
        display: flex;
        height: 34px;
        width: 100%;
        padding: 10px;
        align-items: center;
        gap: 4px;
        align-self: stretch;
        border-radius: 6px;
        color: #090712;
        font-family: var(--font-family-helvetica);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        transition: var(--all-time-transition);
    }

    .item_custom_select_hero_form:hover {
        font-weight: 500;
        background: #F2F3F6;
        cursor: pointer;
    }

    .item_custom_select_hero_form.active{
        font-weight: 500;
    }

    .item_custom_select_hero_form.active::before {
        content: '';
        width: 20px;
        height: 20px;
        background-image: url("../../image/icon_done_arrow.svg");
        background-repeat: no-repeat;
        background-position: center;
        transition: var(--all-time-transition);
    }

    .box_min_max_result_hero_form{
        display: flex;
        justify-content: center;
        gap: 8px;
        flex: 1 0 0;
        height: 44px;
        padding: 6px;
        align-items: center;
        align-self: stretch;
        border-radius: 6px;
        background: #F2F3F6;
    }

    .box_input_icon_result_hero_form {
        display: flex;
        width: 100%;
        padding: 8px 14px;
        justify-content: space-between;
        align-items: center;
        border-radius: 6px;
        background: #FFF;
        border: 1px solid #FFF;
        transition: var(--all-time-transition);
        height: 32px;
    }

    .box_input_icon_result_hero_form:has(.input_hero_form:focus) {
        border-color: #D2D0D8;
        background: #FFF;
    }

    .input_hero_form, .icon_result_hero_form {
        overflow: hidden;
        color:  #090712;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-family: var(--font-family-helvetica);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        transition: var(--all-time-transition);
    }
    .input_hero_form {
        width: 100%;
    }
    .icon_result_hero_form{
        color:  #6D7889;
        overflow: visible;
    }

    .input_hero_form::placeholder {
        color:  #6D7889;
    }

    .decoration_line_min_max_result_hero_form{
        min-width: 10px;
        max-width: 10px;
        height: 1px;
        background:  #D2D1D8;
    }

    .icon_result_hero_form sup {
        font-size: 0.7em;
        vertical-align: top;
        top: 0.5em;
    }

    .box_input_address_hero_form {
        display: flex;
        padding: 12px 14px;
        align-items: center;
        gap: 6px;
        align-self: stretch;
        border-radius: 6px;
        background: #F2F3F6;
    }

    .input_hero_form_address {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        flex: 1 0 0;
        overflow: hidden;
        color:  #090712;
        text-overflow: ellipsis;
        font-family: var(--font-family-helvetica);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .input_hero_form_address::placeholder {
        color: #6D7889;
    }


    .icon_address_hero_form {
        width: 20px;
        height: 20px;
        fill: #071121;
    }


    .btn_submit_hero_form {
        display: flex;
        padding: 12px 14px;
        justify-content: center;
        align-items: center;
        gap: 6px;
        align-self: stretch;
        border-radius: 6px;
        background:  #9EE334;
        color: #090712;
        font-family: var(--font-family-helvetica);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        height: 44px;
    }
    .btn_submit_hero_form:hover, .btn_submit_hero_form:active {
        background: #fff;
    }

    .icon_search_hero_form {
        width: 20px;
        height: 20px;
        fill: #090712;
    }
    .container_report_property_form.open {
        height: 100%;
    }



}


.btn_scroll_top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background: #9EE334;
    border-radius: 50%;
    z-index: 10;
    transition: var(--all-time-transition);
}

.box_icon_scroll_top{
    height: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13.38px;
}

.icon_scroll_top{
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    fill: #090712;
    transform: rotate(-90deg);
    transition: var(--all-time-transition);
}

.btn_scroll_top:hover .icon_scroll_top {
    transform: rotate(-90deg) translateX(34px);
}

.btn_scroll_top:hover {
    background: #fff;
    box-shadow: 0 1px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn_scroll_top.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.block_with_animation {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 400ms ease-in-out, transform 400ms ease-in-out;
}

.block_with_animation.from-top {
    transform: translateY(-50px);
}

.block_with_animation.from-bottom {
    transform: translateY(50px);
}

.block_with_animation.visible {
    opacity: 1;
    transform: translateY(0);
}


@media screen and (min-width: 1280px) {
    .link_select_language_desktop {
        font-size: 14px;
    }
}

.label_agent_modal.document {
    position: relative;
}

.modal-content .container_custom_label {
    height: 98px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 8px;
    background-color: #F2F3F6;
    border: 1px solid #D2D1D8;
}

.modal-content .container_custom_label .box_top_custom_label {
    font-family: var(--font-family-helvetica);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #52525B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.box_bottom_custom_label {
    font-family: var(--font-family-helvetica);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #6D7889;
}

.icon_dowload_document {
    background-image: url('../../image/career/Frame_icon.png');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
}


.modal-content  .wpcf7-form-control-wrap[data-name="cv-file"] {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.modal-content .file-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #D2D1D8;
    width:  100%;
}

.modal-content .file-preview-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 2H6C5.47 2 4.96 2.21 4.59 2.59C4.21 2.96 4 3.47 4 4V20C4 20.53 4.21 21.04 4.59 21.41C4.96 21.79 5.47 22 6 22H18C18.53 22 19.04 21.79 19.41 21.41C19.79 21.04 20 20.53 20 20V8L14 2Z' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 2V8H20' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
    display: inline-block;
    opacity: 40%;
}

.modal-content  .file-preview-delete {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.modal-content .icon_delete {
    background-image: url('../../image/icons/icon_close_black.svg');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.form_agent_modal .file-preview-info p {
    gap: 0;
}

.vacancy-template-default .textarea_agent_modal {
    height: 116px;
}

#file-preview-name {
    font-family: var(--font-family-helvetica);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1B1444;
}

#file-preview-size {
    font-family: var(--font-family-helvetica);
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #52525B;
}

.modal-content form .wpcf7-form-control-wrap textarea {
    margin-bottom: 0;
}

.vacancy-template-default .form_agent_modal {
    gap: 8px;
}

.vacancy-template-default .wpcf7-not-valid-tip {
    margin-top: 5px;
}
.error-file-message {
    font-family: var(--font-family-helvetica);
    font-weight: normal;
    font-size: 1rem;
    line-height: 100%;
    color: #dc3232;
    letter-spacing: 0;
}
