html {
    scroll-behavior: smooth;
}
.relative {
    position: relative;
}
.faq_wp{
    border-top: 1px solid rgba(37,30,74,0.2);
    margin-top: 12px;
    padding: 50px 80px 0 80px;
}
.answer_block{
    display: none;
    background: #fff;
    border: 1px solid #005780;
    border-top: none;
    margin-top: -10px;
    padding: 38px 25px;
    border-radius: 0 0 10px 10px;
}
.faq_wp .question_block:last-child{
    margin-bottom: 0;
}
.question_block.active .answer_block{
    display: block;
}
.landing_text {
    position: relative;
    padding-top: 20px;
    margin-top: 50px;
    border-top: 1px solid #666666;
}

.landing_text.landing_text--top {

}

.landing_text.landing_text--bottom {
    
}

.landing_text_content {
    position: relative;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.landing_text--collapsed .landing_text_content {
    max-height: 200px;
    mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.landing_text_toggle {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #005780;
    border-radius: 10px;
    color: #005780;
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.landing_text_toggle:hover {
    background: #005780;
    color: #fff;
}

.landing_text_toggle_text {
    display: inline;
}

.landing_text h2, .landing_text h3, .landing_text h4, .landing_text h5 {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.landing_text h2 {
    font-size: 1.5em;
}
.landing_text h3 {
    font-size: 1.4rem;
}
.landing_text h3 {
    font-size: 1.3rem;
}
.landing_text h4 {
    font-size: 1.2rem;
}

.landing_text p {
    font-size: 1rem;
    margin: .8rem 0;
    line-height: normal;
}

.landing_text ul {
    list-style-type: disc !important;
    list-style-position: outside;
    margin: .8rem 0;
    padding-left: 2rem;
    line-height: normal;
}

.landing_text ol {
    list-style-type: decimal !important;
    list-style-position: outside;
    margin: .8rem 0;
    padding-left: 2rem;
    line-height: normal;
}

.landing_text ul li,
.landing_text ol li {
    font-size: 1rem;
    margin: .4rem 0;
    line-height: normal;
    display: list-item !important;
}

.landing_text ol li {
    padding-left: 0;
}

.landing_text ul li {
    list-style-type: disc !important;
}

.landing_text ol li {
    list-style-type: decimal !important;
}

.city-selector-wrapper {
    position: relative;
    margin-left: 2rem;
}

.city_btn {
    height: 50px;
    min-width: 150px;
    padding: 0 15px;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 0 10px 0 rgba(31,36,90,0.3);
    border: 1px solid #005780;
}

.city_btn:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.city_btn svg {
    width: 16px;
    height: 16px;
    color: #005780;
}

.city-selector-label {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.city_toggle_block {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.city_toggle_block .tb_title {
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: black;
    text-align: left;
    margin-bottom: 0;
    background-color: #005780;
    color: white;
    border-radius: 8px 8px 0 0;
}

.city_toggle_block .ctb_item {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s;
    gap: 10px;
    font-size: 14px;
    color: black;
    position: relative;
}

.city_toggle_block .ctb_item:last-child {
    padding-bottom: 16px;
    border-radius: 0 0 8px 8px;
}

.city_toggle_block .ctb_item:hover {
    background: #f8f9fa;
}

.city_toggle_block .ctb_item.active {
    background: #F3F7F9;
    color: #005780;
    font-weight: 500;
}

.city_toggle_block .ctb_item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.city_toggle_block .ctb_item .check-icon {
    margin-left: auto;
    color: #005780;
}

/* Стиль для мобильных */
@media (max-width: 768px) {
    .city-selector-wrapper {
        margin-left: 0;
        position: static;
    }
    .city_btn {
        height: 20px;
        padding: 0 8px;
        font-size: 10px;
        min-width: auto;
        border-radius: 3px;
    }
    .city_btn svg {
        width: 10px;
    }
    
    .city-selector-label {
        max-width: 80px;
        display: none;
    }
    .city_toggle_block {
        min-width: auto;
        left: 0;
        right: 0;
        width: 100vw;
        border-radius: 0;
    }
    .city_toggle_block .tb_title, .city_toggle_block .ctb_item  {
        font-size: 10px;
        padding: 8px 15px;
        border-radius: 0;
    }
}

.city-catalog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
}

.city-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.city-tag:hover {
    border-color: #005780;
    color: #005780;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.city-tag.active {
    background: #005780;
    border-color: #005780;
    color: #ffffff;
    font-weight: 500;
}

.city-tag.active:hover {
    background: #005780;
    border-color: #005780;
    transform: none;
}

@media (max-width: 768px) {
    .city-catalog-tags {
        gap: 8px;
        padding: 15px 0;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .city-tag {
        padding: 4px 8px;
        font-size: 10px;
    }
}

/* Анимация появления */
.city_toggle_block {
    animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question_top{
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid #005780;
    position: relative;
    z-index: 100;
    cursor: pointer;
}
.question_top div{
    font-size: 25px;
    font-weight: 500;
    width: calc(100% - 450px);
}
.question_top span{
    width: 38px;
    height: 38px;
    background: url("../images/ico-arrow-down.svg") no-repeat center center;
    background-size: 100% auto;
}
.question_block.active .question_top span{
    transform: rotate(-180deg);
}
.question_block.active .question_top{
    box-shadow: 0 0 10px 0 rgba(31,36,90,0.3);
}
.answer_block p{
    text-indent: 36px;
}
.answer_block ul{
    margin-left: 35px;
    margin-top: 25px;
}
.answer_block ul li{
    list-style: none;
    font-size: 20px;
    font-weight: 300;
    position: relative;
    padding-left: 20px;
}
.answer_block ul li:before{
    content: '–';
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
}
.answer_block ul li a{
    font-weight: 400;
    color: #883DFB;
}
.answer_block p:first-child{
    margin-top: 0;
}
.question_block{
    margin-bottom: 20px;
}
.publications_wp{
    margin-top: 68px;
    padding-top: 20px;
    border-top: 1px solid #666666;
}
.publications_wp h2{
    font-size: 25px;
    margin-bottom: 0;
}
.publication_item{
    width: 49%;
    margin-top: 38px;
}
.publication_img_wp{
    width: 200px;
    position: relative;
}
.publication_info{
    width: calc(100% - 200px);
    padding-left: 10px;
    position: relative;
}
.publication_img{
    display: block;
}
.publication_img img{
    border-radius: 10px;
}
.publication_like{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    background: #fff;
}
.publication_like svg{
    transition: .2s;
    fill: #fff;
    stroke: #DB864D;
    position: relative;
    top: 1px;
}
.publication_del{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
}
.publication_del svg{
    transition: .2s;
    fill: #DB864D;
    position: relative;
    top: 1px;
}
.publication_edit{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    margin-left: 5px;
}
.publication_edit svg{
    transition: .2s;
    fill: #fff;
    stroke: #DB864D;
    position: relative;
    top: 1px;
}
.publication_copy{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    margin-left: auto;
    margin-top: 5px;
}
.publication_copy svg{
    transition: .2s;
    fill: #DB864D;
    position: relative;
    top: 1px;
}
.publication_sorting{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    z-index: 100;
    background: #fff;
    margin-right: 10px;
}
.publication_sorting svg{
    transition: .2s;
    fill: #fff;
    stroke: #DB864D;
}
.publication_like:hover svg{
    fill: #DB864D;
}
.publication_like.active svg{
    fill: #DB864D;
}
.pub_btns{
    position: absolute;
    display: none;
    top: 15px;
    right: 15px;
}
.result_item:hover .pub_btns {
    display: flex !important;
}
.pub_btns .publication_like{
    position: static;
}
.publication_title{
    font-size: 25px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}
.publication_line{
    display: none !important;
    font-size: 20px;
    font-weight: 300;
    padding-right: 50px;
    margin-bottom: 15px;
}
.detail-cart-inline  {
    margin-top: 25px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
}
.detail-cart-inline .publication_line {
    margin-top: 0;
    margin-bottom: 0;
}
.pl_link svg{
    fill: #DB864D;
    margin-right: 10px;
}
.pl_link{
    display: flex;
    align-items: center;
}
.pl_link_stroke svg{
    stroke: #DB864D;
    fill: #fff;
}
.publication_text{
    font-size: 20px;
}
footer{
    width: 100%;
    padding: 50px 0;
    margin-top: auto;
    position: relative;
    background: #F3F7F9;
}
.content_wp {
    margin-bottom: 70px;
}
.f_list{
    width: calc(100% - 300px);
}
.f_list li{
    list-style: none;
    margin-bottom: 20px;
    width: 23%;
}
.f_list li:nth-child(4n+4){
    width: 28%;
}
.f_list li a{
    font-size: 20px;
}
.soc_block a{
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background-color: #fff;
    margin-left: 25px;
}
.f_list li a:hover{
    color: #DB864D;
}
.soc_block a:first-child{
    margin-left: 0;
}
.soc_tg{
    background: url("../images/soc-tg.svg") no-repeat center center;
}
.soc_vk{
    background: url("../images/soc-vk.svg") no-repeat center center;
}
.soc_ig{
    background: url("../images/soc-ig.svg") no-repeat center center;
}
.soc_yb{
    background: url("../images/soc-yb.svg") no-repeat center center;
}
.soc_wp{
    background: url("/images/new/whatsapp.svg") no-repeat center center;
    background-size: 30px auto;
}
.question_btn{
    margin-top: 17px;
    width: 100%;
    height: 50px;
    color: #005780;
}
.question_btn svg{
    fill: #005780;
    margin-right: 15px;
}
.copyright{
    margin-top: 20px;
    font-size: 15px;
}
.copyright a{
    color: #005780;
}
.f_btns{
    margin-top: 30px;
}
.f_btns a{
    width: 232px;
    height: 50px;
    margin-right: 10px;
    border-radius: 10px;
    font-size: 20px;
}
.f_btns a img{
    margin-right: 15px;
}
.right_btns{
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 8900;
}
.right_btns a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    fill: #fff;
}
.up_btn{
    background: #fff;
    margin-bottom: 20px;
}
.up_btn svg{
    stroke: #883DFB;
    fill: none;
}
.r_call_btn{
    background: #883DFB;
}
.r_call_btn svg{
    fill: #fff;
}
.up_btn:hover{
    background: #883DFB;
}
.up_btn:hover svg{
    stroke: #fff;
}
.r_call_btn:hover{
    background: #fff;
}
.r_call_btn:hover svg{
    fill: #883DFB;
}
.cookie_block{
    width: 700px;
    height: 120px;
    border-radius: 10px;
    background: #fff;
    position: fixed;
    bottom: 20px;
    top: auto !important;
    left: 50%;
    margin-left: -350px;
    padding: 30px;
    z-index: 1000;
    display: none;
}
.cookie_btn{
    width: 218px;
    height: 55px;
}
.cookie_info{
    width: calc(100% - 218px);
    padding-right: 20px;
    padding-bottom: 10px;
    font-size: 20px;
}
.cookie_btn svg{
    fill: #005780;
    margin-right: 10px;
}
.toggle_menu{
    padding-top: 10px;
    display: none;
}
.toggle_menu ul li{
    width: 25%;
    padding-right: 10px;
    margin-bottom: 20px;
    list-style: none;
    position: relative;
    padding-left: 30px;
}
.toggle_menu ul li a{
    font-size: 20px;
    font-weight: 300;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px dashed rgba(255,255,255,0);
}
.toggle_menu ul li a:hover{
    border-bottom: 1px dashed #000;
}
.toggle_menu ul li a.active{
    border-bottom: 1px dashed #000;
}
.toggle_menu ul li:before{
    content: '—';
    position: absolute;
    top: 0;
    left: 0;
}
.center_btn .main_btn{
    margin: 70px auto 0 auto;
    padding: 0 30px;
}
.center_btn .main_btn svg{
    margin-left: 25px;
}
.publications_wp .center_btn .main_btn{
    margin-top: 30px;
}
.details_block{
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(37,30,74,0.2);
}
.details_block h2{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}
.details_item{
    max-width: 700px;
    border-radius: 10px;
    padding: 20px;
    margin: 50px auto 0 auto;
}
.details_item ul{
    margin-top: 30px;
}
.details_item ul li{
    font-size: 25px;
    padding-left: 27px;
}
.details_item ul li:before{
    font-size: 25px;
}
.details_item ul:first-child{
    margin-top: 0;
}
.modal_w1{
    /* width: 900px; */
    border-radius: 10px;
    background: #f7f7f7;
    padding: 80px 50px;

    height: auto !important;
    margin-top: 0px !important;
    width: 900px !important;
    left: auto !important;
    margin-left: auto !important;
}
.modal_title{
    text-align: center;
    font-size: 35px;
    font-weight: 600;
}
.modal_text{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
}
.modal_text_v2{
    padding: 0 30px;
    text-align: center;
}
.modal_text_v2 p{
    font-size: 25px;
    font-weight: 400;
    margin-top: 20px;
}
.modal_subtitle{
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
}
.fancybox-close-small svg{
    display: none;
}
.fancybox-close-small{
    width: 25px;
    height: 25px;
    opacity: 1;
    background: url("../images/ico-close.svg") no-repeat center center;
    background-size: 100%;
    top: 50px !important;
    right: 50px !important;
}
.services_wp + .center_btn .main_btn{
    margin-top: 15px;
}
.pagination li{
    padding-left: 0;
    font-size: 20px;
    font-weight: 400;
    margin: 0 11px 0 0;
}

.pagination li a{
    color: #005780;
    border-bottom: 1px dashed #005780;
    display: inline-block;
    padding-bottom: 3px;
}
.pagination li a:hover{
    color: #000;
    border-bottom: 1px dashed rgba(255,255,255,0);
}
.pagination li a.active{
    color: #000;
    border-bottom: 1px dashed rgba(255,255,255,0);
}
.pagination li:before{
    display: none;
}
.pagination li:first-child{
    font-size: 20px;
    font-weight: 400;
    color: #251E4A;
}
.sorting_bottom .filter_top{
    height: 30px;
    border-radius: 10px;
    font-size: 14px;
    padding: 0 7px;
    border: 1px solid #DB864D;
}
.sorting_bottom .filter_top span{
    width: 12px;
    height: 7px;
    background-size: 100% auto;
}
.sorting_bottom .filter_item{
    width: 55px;
}
.sorting_bottom .filter_top div{
    width: calc(100% - 12px);
}
.sorting_bottom>span{
    font-size: 20px;
    margin-right: 20px;
}
.pagination_wp{
    margin-top: 15px;
}
.pagination_prev{
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/ico-arrow-right.svg") no-repeat center center;
    background-size: auto 100%;
    transform: rotate(-180deg);
    border: none !important;
}
.pagination_next{
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/ico-arrow-right.svg") no-repeat center center;
    background-size: auto 100%;
    border: none !important;
}
.sorting_bottom .filter_toggle a{
    font-size: 14px;
    padding: 5px 7px;
    margin: 3px 0;
}
.sorting_bottom .filter_toggle a:hover{
    background: #FFEEDE;
}
.sorting_bottom .filter_toggle{
    top: 36px;
    padding: 5px 0;
    border: 1px solid #DB864D;
}
.cf_input:disabled{
    cursor: default;
    border: 1px solid rgba(37,30,74,0.2);
    background: rgba(0,0,0,0.03);
}
.modal_line .contacts_form_item{
    width: 49%;
}
.contacts_form_item .cf_pole{
    height: 160px;
}
.result_wp + .result_wp{
    border-top: 1px solid rgba(37,30,74,0.2);
    margin-top: 30px;
}
.result_wp + .result_wp.result_wp_hidden{
    border-top: none;
    margin-top: 0;
}
.result_text{
    font-size: 20px;
    margin-top: 7px;
}
.result_data{
    font-size: 20px;
    font-weight: 300;
    margin-top: 15px;
}
.more_btn{
    width: 510px;
    height: 80px;
    margin: 20px auto 0 auto;
    font-size: 25px;
}
.login_btn{
    width: 550px;
    height: 86px;
    margin: 50px auto 0 auto;
    font-size: 25px;
    border-radius: 15px;
}
.login_btn span{
    margin-right: 5px;
}
.login_btn svg{
    fill: #883DFB;
    margin-left: 20px;
}
.lk_mi_bottom{
    margin-top: 38px;
}
.save_btn{
    width: 330px;
    height: 80px;
    border-radius: 10px;
    font-size: 25px;
    background: #005780 url("../images/ico-person-white.svg") no-repeat 70px center;
    border: 1px solid #005780;
    color: #fff;
    font-weight: 400;
    padding-left: 60px;
}
.save_btn:hover{
    background: #fff url("../images/ico-person-blue.svg") no-repeat 70px center;
    color: #005780;
}
.lk_mi_bottom .contacts_form_check{
    width: calc(100% - 350px);
    margin: 0 0 0 20px;
    padding-top: 0;
    top: -5px;
}
.lk_mi_bottom .contacts_form_check input[type='checkbox'] + label:before{
    top: 6px;
}
.lk_mi_bottom .contacts_form_check a{
    display: inline;
}
.activation_block{
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(37,30,74,0.2);
}
.activation_title{
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}
.activation_title + .lk_warning{
    margin-top: 30px;
}
.activation_btn{
    width: 21.5%;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    font-size: 25px;
    font-weight: 500;
    padding: 0 10px 0 20px;
}
.activation_btn:hover{
    background: #883DFB;
    color: #fff;
}
.activation_input{
    width: 50%;
}
.activation_line{
    margin-top: 50px;
}
.access_btn{
    width: 100%;
    height: 70px;
    border-radius: 10px;
    font-size: 25px;
    background: #fff;
}
.access_btn:hover{
    background: #883DFB;
    color: #fff;
}
.confirm_link{
    font-size: 25px;
    font-weight: 300;
}
.confirm_link:hover{
    color: #883DFB;
}
.lk_mi_line_m2{
    margin-top: 50px;
}
.lists_btn{
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #005780;
    color: #fff;
    margin-left: 23px;
}
.lists_btns .lists_btn{
    height: 80px;
    background: #fff;
    border: 1px solid #005780;
    color: #000;
}
.modal_w1 .contacts_form_btns_w2 .contacts_form_btn{
    width: 330px;
}
.modal_w1 .contacts_form_btns_w2 .contacts_form_btn_item input[type='file'] + label{
    width: 330px;
}
.modal_w1 .contacts_form_btns_w2 .contacts_form_btns{
    width: 100%;
    margin-top: 30px;
}
.modal_w1 .contacts_form_btns_w2 .contacts_form_btn_item{
    margin: 0 10px;
}
.modal_text a{
    color: #005780;
}
.modal_f2 .modal_title{
    font-size: 30px;
}
.modal_f2 .modal_text{
    font-size: 25px;
}
.contacts_form_line .contacts_form_item{
    width: 48%;
}
.chat_bottom_img{
    width: 86%;
    margin-left: -5px;
    margin-right: -5px;
    margin-top: 37px;
}
.chat_bottom_img_item{
    position: relative;
    width: 25%;
    padding: 0 5px;
}
.chat_bottom_img_item img{
    border-radius: 10px;
}
.cbi_close{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: url("../images/ico-close-grey.svg") no-repeat center center;
    position: absolute;
    top: 10px;
    right: 18px;
}
.chat_message_input_block{
    width: calc(100% - 240px);
    position: relative;
}
.chat_message_line{
    margin-top: 20px;
}
.chat_message_input{
    width: 100%;
    height: 80px;
    border-radius: 10px;
    padding: 0 110px 0 20px;
    font: 25px 'Montserrat', sans-serif;
}
.chat_message_btn{
    width: 220px;
    height: 80px;
    font-size: 25px;
    border-radius: 10px;
    background: #005780;
    color: #fff;
    margin-left: auto;
}
.chat_message_add_file input[type='file']{
    display: none;
}
.chat_message_add_file input[type='file'] + label{
    display: block;
    width: 40px;
    height: 40px;
    background: url("../images/ico-add-file.svg") no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    
}
.chat_message_add_file{
    position: absolute;
    top: 50%;
    margin-top: -20px;
    right: 60px;
}

.emoji_btn{
    display: block;
    width: 32px;
    height: 32px;
    background: url("../images/ico-smile.svg") no-repeat center center;
    margin-top: 10px;
}
.chat_message_input_block .emoji_btn{
    position: absolute;
    top: 50%;
    margin-top: -16px;
    right: 70px;
}
.lk_item_text{
    font-size: 25px;
    font-weight: 300;
}
.exercise_wp + .pagination_wp{
    margin-top: 20px;
}
.contacts_form_item .filter_item{
    width: 100%;
    background: #fff;
}
.contacts_form_item .filter_top{
    padding: 0 20px;
}
.modal .cf_input{
    padding: 0 20px;
    text-align: center;
}
.button_size_medium{
    width: 400px;
    height: 110px;
}
.lk_admin_link{
    margin-top: 15px;
}
.lk_admin_link a{
    font-size: 20px;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px dashed #005780;
}
.modal_save_btn{
    width: 300px;
    height: 70px;
    margin: 0 auto;
}
.modal_save_btn svg{
    fill: #883DFB;
    margin-left: 20px;
}
.modal_ok_btn{
    width: 120px;
    height: 70px;
    color: #fff;
}
.modal_ok_btn.button--fit {
    width: fit-content;
    padding-right: 30px;
    padding-left: 50px;
}
.modal_no_btn{
    width: 120px;
    height: 70px;
    background: url("../images/ico-close-blue.svg") no-repeat 20px center;
    padding-left: 30px;
}
.modal_no_btn.button--fit {
    width: fit-content;
    padding-right: 30px;
    padding-left: 50px;
}
.modal_no_btn:hover{
    background: #005780 url("../images/ico-close-white.svg") no-repeat 20px center;
}
.modal_ok_btn:hover{
    color: #005780;
    background: #fff;
}
.modal_ok_btn svg{
    fill: #fff;
    margin-right: 15px;
}
.modal_ok_btn:hover svg{
    fill: #005780;
}
.modal .contacts_form_btns{
    margin-top: 38px;
}
.modal .contacts_form_full .contacts_form_check{
    margin-top: 20px;
    height: auto;
    margin-left: 0;
}
.modal_pay_btn{
    width: 376px;
    height: 55px;
    margin: 0 auto;
    background: #005780 url("../images/ico-wallet.svg") no-repeat 90px center;
    color: #fff;
    padding-left: 30px;
}
.modal_pay_btn:hover{
    background: #fff url("../images/ico-wallet-blue.svg") no-repeat 90px center;
    color: #005780;
}
.pay_info{
    text-align: center;
    font-size: 25px;
    margin-top: 20px;
}
.pay_info span{
    font-weight: 600;
}
.contacts_form_check_one_line{
    padding-top: 15px;
    margin-top: 0 !important;
}
.mob_lk_btns{
    display: none;
}
.ui-datepicker * {
    font-size: 14px;
}
.footer_right{
    margin-left: auto;
}

/**/
.main_promo_slider{
    position: relative;
}
.main_promo_wp{
    margin-top: 50px;
}
.prev1{
    width: 50px;
    height: 50px;
    background: url("../images/ico-arrow-white.svg") no-repeat center center;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 30px;
    z-index: 8900;
}
.next1{
    width: 50px;
    height: 50px;
    background: url("../images/ico-arrow-white.svg") no-repeat center center;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    right: 30px;
    z-index: 8900;
    transform: rotate(-180deg);
}
.sp1{
    width: auto;
    background: #fff;
    max-width: 165px;
    height: 36px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: -55px auto 0 auto;
}
.main_promo_slide{
    position: relative;
}
.main_promo_slide:before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
}
.main_promo_slide img{
    border-radius: 10px;
}
.main_promo_info{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    color: #fff;
}
.main_promo_info div{
    width: 35%;
}
.main_promo_gallery_item_wp{
    width: 50%;
    padding: 0 20px;
}
.main_promo_gallery{
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 20px;
}
.main_promo_gallery_item img{
     border-radius: 10px;
}
.main_promo_gallery_item{
    position: relative;
    margin-top: 40px;
}
.main_promo_gallery_item:before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
}
.main_promo_gallery_item .main_promo_info div{
    width: 45%;
}
.request_btn{
    width: 510px;
    height: 100px;
    font-size: 25px;
    font-weight: 400;
    margin: 70px auto 0 auto;
}
.request_btn span{
    font-weight: 600;
}
.request_btn svg{
    margin-right: 30px;
    fill: #fff;
}
.reviews_wp{
    margin-top: 70px;
    padding-top: 20px;
    border-top: 1px solid #666666;
}
.reviews_wp h2{
    font-size: 25px;
    margin-bottom: 38px;
}
.review_slide{
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #DB864D;
}
.reviews_slider{
    position: relative;
    padding: 0 10px 50px 10px;
}
.review_slide_img{
    width: 100px;
}
.review_slide_img img{
    border-radius: 50%;
}
.review_slide_info{
    width: calc(100% - 100px);
    padding-left: 20px;
}
.rs_name{
    font-size: 20px;
    font-weight: 500;
}
.rs_link{
    margin-top: 5px;
}
.rs_link a{
    font-size: 20px;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px dashed #005780;
    color: #005780;
}
.rs_rating{
    margin-top: 25px;
}
.review_slide_text{
    margin-top: 25px;
    font-size: 20px;
}
.swiper-rev{
    overflow: hidden;
}
.sp-rev{
    bottom: 0 !important;
}
.lang_toggle_block{
    width: 170px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #DB864D;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    display: none;
}
.tb_title{
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 7px;
}
.ltb_item {
    cursor: pointer;
}
.ltb_item img{
    width: 60px;
    height: auto;
    border-radius: 10px;
}
.ltb_item div{
    width: 60px;
    height: 40px;
    border: 2px solid #DB864D;
    border-radius: 10px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.ltb_item{
    padding: 0 9px;
    margin-bottom: 10px;
}
.lang_toggle_block .ltb_item:last-child{
    margin-bottom: 0;
}
.currency_toggle_block{
    width: 160px;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #DB864D;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    display: none;
}
.currency_toggle_block a{
    display: block;
    font-size: 15px;
    position: relative;
    padding-left: 18px;
    border-radius: 10px;
}
.currency_toggle_block a:before{
    content: '–';
    font-size: 15px;
    position: absolute;
    top: 0;
    left: 3px;
}
.currency_toggle_block a.active{
    background: #FFEEDE;
    border-radius: 10px;
    font-weight: 500;
}
.currency_toggle_block a.active:before{
    content: '+';
    font-weight: 500;
}
.more_btn + .request_btn{
    margin-top: 38px;
}
.answer_comments_link{
    margin-top: 28px;
}
.answer_comments_link a{
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 3px;
    border-bottom: 1px dashed #000;
}
.service_bottom{
    width: 90%;
    margin-top: 13px;
}
.service_price{
    width: calc(100% - 290px);
    font-size: 25px;
    font-weight: 500;
}
.service_link{
    font-size: 20px;
    padding-bottom: 3px;
    border-bottom: 1px dashed #005780;
    color: #005780;
}
.services_block .publication_title{
    margin-bottom: 20px;
}
.plugin_wp{
    margin-top: 30px;
}
.plugin_tabs a{
    font-size: 25px;
    padding-bottom: 3px;
    margin-right: 38px;
    color: #005780;
    border-bottom: 1px dashed #005780;
}
.plugin_tabs a.active{
    color: #000;
    border-bottom: 1px dashed rgba(255,255,255,0);
}
.plugin_block{
    margin-top: 20px;
}
.chat_line_text p a{
    color: #005780;
    border-bottom: 1px dashed #005780;
}
.chat_line_text p a:hover{
    text-decoration: none;
}
.download_block{
    margin-top: 38px;
}
.download_block h2{
    text-align: left;
    margin-bottom: 15px;
}
.download_block h2 span{
    padding-right: 38px;
    background: url("../images/ico-check-orange.svg") no-repeat right center;
    background-size: 30px auto;
}
.dl_text{
    width: 550px;
    padding-right: 50px;
    font-size: 20px;
}
.dl_link{
    margin-left: 10px;
    font-size: 20px;
    color: #005780;
    border-bottom: 1px dashed #005780;
}
.download_line{
    margin-top: 10px;
}
.download_line .contacts_form_check{
    width: auto;
    margin-left: 30px;
    margin-top: 0;
    color: #005780;
}
.download_line .contacts_form_check label{
    display: block;
    padding-top: 5px;
}
.lists_btns_w2 .lists_btn{
    font-size: 25px;
}
.lists_btns_w2 .lists_btn svg{
    fill: #005780;
    margin-right: 10px;
}
.lists_btns_w2 .lists_btn_stroke svg{
    fill: #fff;
    stroke: #005780;
}
.lists_btns_w2 .lists_btn:hover{
    background: #005780;
    color: #fff;
}
.lists_btns_w2 .lists_btn:hover svg{
    fill: #fff;
}
.lists_btns_w2 .lists_btn.lists_btn_stroke:hover svg{
    stroke: #fff;
    fill: none;
}
.lists_btns_w3 .lists_btn{
    font-size: 22px;
}
.lists_btns_w3 .lists_btn svg{
    fill: #005780;
    margin-right: 10px;
}
.lists_btns_w3 .lists_btn_stroke svg{
    fill: #fff;
    stroke: #005780;
}
.lists_btns_w3 .lists_btn:hover{
    background: #005780;
    color: #fff;
}
.lists_btns_w3 .lists_btn:hover svg{
    fill: #fff;
}
.lists_btns_w3 .lists_btn.lists_btn_stroke:hover svg{
    stroke: #fff;
    fill: none;
}
.result_wp_square{
    margin-top: 72px;
    padding-top: 30px;
}
.divider{
    width: 100%;
    height: 1px;
}
.result_wp_square + .pagination_wp{
    margin-top: -15px;
}
.profile_add_img{
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 20px;
}
.profile_add_img_item{
    width: 12.5%;
    padding: 0 10px;
    position: relative;
}
.profile_add_img_item img{
    border-radius: 10px;
}
.profile_add_img_item:hover .pa_del_img{
    opacity: 1;
}
.pa_del_img{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: url("../images/ico-close-grey.svg") no-repeat center center;
    background-size: 100%;
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0;
}
.exercise_item_pole .profile_add_img_item{
    width: 16.666666%;
}
.exercise_item_pole .profile_add_img{
    margin-top: 0;
}
.exercise_item_pole .pa_del_img{
    width: 36px;
    height: 36px;
    background-size: 100%;
}
.result_item_line{
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}
.result_wp .result_item_line:first-child{
    margin-top: 0;
}
.result_item_line.premium{
    background: #FFEEDE;
}
.result_item_line .publication_img_wp{
    width: 330px;
}
.result_item_line_info{
    width: calc(100% - 330px);
    padding-left: 30px;
}
.result_item_line_info .result_title{
    font-size: 25px;
    margin-top: 0;
}
.ri_line{
    margin-top: 20px;
}
.ri_line .place_info{
    font-size: 25px;
    margin-top: 0;
}
.ri_line .catalog_price_block{
    font-size: 25px;
    margin-top: 0;
    margin-left: 30px;
}
.ri_line .publication_line{
    margin-left: 53px;
    margin-bottom: 0;
}
.ri_line .pl_link{
    margin-right: 36px;
}
.result_item_line_info ul{
    margin-top: 23px;
}
.result_item_line.premium .pl_link_stroke svg{
    fill: #FFEEDE;
}
.company_text{
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #666666;
}
.company_text p span{
    background: #FFEEDE;
    padding: 0 5px;
    border-radius: 3px;
}
.pt_item{
    width: 33.333%;
    padding: 0 10px;
}
.plugin_tabs_v2{
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 36px;
}
.pt_item a{
    width: 100%;
    height: 80px;
    border: 1px solid #005780;
    border-radius: 10px;
    font-size: 25px;
}
.pt_item a:hover{
    background: #F3F7F9;
}
.pt_item a.active{
    font-weight: 500;
    background: #F3F7F9;
}
.plugin_wp{
    margin-top: 65px;
    padding-top: 20px;
    border-top: 1px solid #666666;
}
.plugin_wp + .publications_wp h2{
    text-align: left;
}
.comment_wp{
    margin-top: 68px;
    padding-top: 20px;
    border-top: 1px solid #666666;
}
.comment_title{
    font-size: 25px;
    font-weight: 500;
}
.comment_add_link{
    font-size: 25px;
    font-weight: 500;
    border-bottom: 1px dashed #000;
    display: inline-block;
    padding-bottom: 3px;
}
.cbt_img{
    width: 40px;
}
.cbt_img img{
    border-radius: 10px;
}
.cbt_text{
    font-size: 20px;
    padding-left: 10px;
}
.cbt_link{
    font-size: 20px;
    padding-bottom: 3px;
    margin-right: 28px;
    color: #005780;
    border-bottom: 1px dashed #005780;
}
.cbt_reaction a{
    width: 37px;
    height: 27px;
    border: 1px solid #333;
}
.cbt_reaction a.plus{
    background: url("../images/ico-arrow-down-black.svg") no-repeat center center;
    transform: rotate(-180deg);
}
.cbt_reaction a.minus{
    background: url("../images/ico-arrow-down-black.svg") no-repeat center center;
}
.reaction_count{
    width: 60px;
    height: 27px;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    padding: 0 5px;
}
.comment_block{
    margin-top: 23px;
}
.comment_item{
    border-radius: 10px;
    border: 1px solid #DB864D;
    padding: 20px 30px;
    margin-top: 5px;
    position: relative;
}
.comment_item p:first-child{
    margin-top: 0;
}
.all_comments_link{
    margin-top: 20px;
}
.all_comments_link a{
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px dashed #000;
    display: inline-block;
    padding-bottom: 3px;
}
.comment_rating{
    margin-left: 20px;
}
.comment_block_w2{
    width: 93%;
    margin-left: auto;
}
.comment_block_w3{
    width: 86%;
    margin-left: auto;
}
.comment_item img{
    margin-top: 10px;
    margin-right: 10px;
}
.company_top_wp + .company_text{
    margin-top: 30px;
}
.company_text + .publications_wp h2{
    text-align: left;
}
.result_wp + .plugin_wp{
    padding-top: 0;
    border: none;
    margin-top: 38px;
}
.plugin_wp + .company_text{
    margin-top: 50px;
}
.eip_line_item{
    width: 33.333%;
    padding: 0 10px;
}
.eip_line{
    margin-left: -10px;
    margin-right: -10px;
    padding-top: 6px;
}
.exercise_line_item_full .cf_input{
    height: 50px;
    font-size: 20px;
}
.exercise_line_item_full{
    margin-top: 30px;
}
.exercise_line_item_full .exercise_item_title{
    padding-top: 0;
}
.exercise_item_pole .contacts_form_check a{
    display: inline;
}
.exercise_item_pole .contacts_form_check input[type='checkbox'] + label:before{
    top: 5px;
}
.quiz_tabs a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 60px;
    border-radius: 10px;
    font-size: 25px;
    border: 1px solid #B0734A;
    box-shadow: 0 0 10px 0 rgba(31,36,90,0.3);
    background: #fff;
}
.quiz_tabs a.active{
    background: #FFEEDE;
}
.quiz_tabs{
    margin-top: 50px;
}
.content + .publications_wp h2{
    text-align: left;
}
.comment_wp + .pagination_wp{
    margin-top: 27px;
}
.compare_wp + .main_info_wp{
    margin-top: 70px;
    padding-top: 18px;
    border-top: 1px solid #666666;
}
.main_info_wp h2{
    font-size: 25px;
}
.requests_table + .request_btn{
    margin-top: 30px;
}
.request_btn + .plugin_wp{
    padding-top: 0;
    border: none;
    margin-top: 38px;
}
.modal .contacts_form_full{
    max-width: 100%;
}
.modal .save_btn{
    width: 500px;
}
.contacts_form_btn_fill{
    background: #fff;
    color: #005780;
}
.contacts_form_btn_fill svg{
    fill: #005780;
}
.plugin_mob_select{
    display: none;
}
.plugin_mob_select .msb_select_top{
    height: 26px;
    background: #F3F7F9;
    text-align: center;
}
.plugin_mob_select .msb_select_top div{
    width: calc(100% - 20px);
    text-align: center;
}
.mob_result_info{
    display: none;
}
.mob_add_img{
    display: none;
    flex-wrap: wrap;
}
.pole_m_db{
    display: none;
    width: 100%;
    padding: 0;
}
#modal6 .contacts_form_btn_fill{
    background: #005780;
    color: #fff;
}
#modal6 .contacts_form_btn_fill svg{
    fill: #fff;
}
.cbt_right_mob{
    display: none;
    margin-top: 5px;
}
.img_prop_form {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    display: inline-block;
    box-sizing: border-box;
    background-size: cover;
    background-position: center center;
    position: relative;
    margin: 0px 10px 7px 0px;
}

.img_prop_form div.img_prop_form_del {
    width: 20px;
    height: 20px;
    background-color: #000;
    right: 0px;
    position: absolute;
    background-image: url(/delta-app/core/assets/img/white_close.png);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 99;
}
.img_form_description {
    opacity: 0.7;
    padding: 5px !important;
    position: absolute;
    width: 180px !important;
    box-sizing: border-box;
    bottom: 0px;
    left: 0px;
    z-index: 998;
}

.form_error {
    color: #ff8989;
    border: 2px solid #ff8989;
    background-color: #fff4f4;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
}
.form_error p, .save_message p {
    margin: 0px;
}

.save_message {
    color: #50ac52;
    border: 2px solid #50ac52;
    background-color: #e6ffe6;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
}

.prop_image_container {
    width: 200px;
    height: 220px;
    background-image: url("/delta-app/core/assets/img/nophoto.svg");
    margin-top: 1rem;
}

.rating {
    display: inline-block;
    margin: 0px 0px 3px 10px;
}
.star {
    font-size: 25px;
    color: #ccc; /* Цвет неактивных звезд */
    cursor: pointer;
}
.contacts_form_item .star {
    font-size: 50px !important;
}
.star.hover,
.star.selected
{
    color: #d88e00; /* Цвет активных звезд */
}

.company_top_favourite {
    background: url("/images/ico-heart-orange.svg") no-repeat 0 6px;
    background-size: 25px auto;
    background-position: left center;
}
.company_top_favourite:has(.active) {
    background: url("/images/ico-heart-orange_.svg") no-repeat 0 6px;
    background-size: 25px auto;
    background-position: left center;
}

#di-preloader {
    opacity: 0.7;
    padding: 7px 6px 4px 6px;
    border-radius: 5px;
    width: 36px;
    position: fixed;
    top: 45%;
    left: 50%;
    margin-left: -19px;
    display: none;
    text-align: center;
    z-index: 999999;
    box-sizing: border-box;
}
.fancybox-container {
    z-index: 99999 !important;
}

/*23.07.2025*/
.cbt_reaction a.plus {
    background: url("/images/new/ico-like.svg") no-repeat center center;
    background-size: 16px auto;
    transform: rotate(0deg);
}
.cbt_reaction a.minus {
    background: url("/images/new/ico-like.svg") no-repeat center center;
    background-size: 16px auto;
    transform: rotate(-180deg);
}

/* Universal readonly field styles */
input:readonly, textarea:readonly {
    background-color: #f5f5f5 !important;
    border-color: #ddd !important;
    color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    position: relative;
}

input:readonly:hover, textarea:readonly:hover {
    background-color: #f0f0f0 !important;
}

/* Universal tooltip styles for data-tooltip attribute */
[data-tooltip] {
    position: relative;
    transition: all .3s ease;
}

[data-tooltip]::after, [data-tooltip]::before {
    transition: all .3s ease;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #005780;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.4;
    white-space: normal;
    z-index: 1000;
    max-width: 340px;
    word-wrap: break-word;
    pointer-events: none;
    width: 100%;
}

[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #005780;
    z-index: 1000;
    pointer-events: none;
}

/* Prefix block */

.prefix-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.prefix-text {
    position: absolute;
    left: 12px;
    color: #999;
    font: 22px 'Montserrat', sans-serif;
    z-index: 2;
    pointer-events: none;
    background: white;
    padding-right: 2px;
}

.prefix-input {
    padding-left: 0px !important;
    text-indent: 0px;
    position: relative;
    z-index: 1;
}

.prefix-input-wrapper .cf_input.prefix-input {
    padding-left: 150px !important;
}

.prefix-input-wrapper .prefix-text.whatsapp {
    width: 100px;
}

.prefix-input-wrapper .cf_input.prefix-input.whatsapp {
    padding-left: 170px !important;
}

/* Photo Upload Skeleton Loader */
.photo_skeleton_loader {
    display: inline-block;
    width: 180px;
    height: 180px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
    margin: 0px 10px 7px 0px;
    position: relative;
    overflow: hidden;
}

.photo_skeleton_loader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1098 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3EImage placeholder%3C/title%3E%3Cpath d='M365.714286 329.142857q0 45.714286-32.036571 77.677714t-77.677714 32.036571-77.677714-32.036571-32.036571-77.677714 32.036571-77.677714 77.677714-32.036571 77.677714 32.036571 32.036571 77.677714zM950.857143 548.571429l0 256-804.571429 0 0-109.714286 182.857143-182.857143 91.428571 91.428571 292.571429-292.571429zM1005.714286 146.285714l-914.285714 0q-7.460571 0-12.873143 5.412571t-5.412571 12.873143l0 694.857143q0 7.460571 5.412571 12.873143t12.873143 5.412571l914.285714 0q7.460571 0 12.873143-5.412571t5.412571-12.873143l0-694.857143q0-7.460571-5.412571-12.873143t-12.873143-5.412571zM1097.142857 164.571429l0 694.857143q0 37.741714-26.843429 64.585143t-64.585143 26.843429l-914.285714 0q-37.741714 0-64.585143-26.843429t-26.843429-64.585143l0-694.857143q0-37.741714 26.843429-64.585143t64.585143-26.843429l914.285714 0q37.741714 0 64.585143 26.843429t26.843429 64.585143z' fill='%23ccc'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.photo_upload_loading {
    opacity: 0.7;
    pointer-events: none;
}

.photo_upload_loading .photo_upload_button {
    background: #ccc;
    cursor: not-allowed;
}

/* Dropdown styles for import/export buttons */
.dropdown_container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown_container.open .button {
    border-radius: 10px 10px 0 0;
}

.dropdown_toggle {
    position: relative;
    cursor: pointer;
    border: none;
    outline: none;
}

.dropdown_arrow {
    transition: transform 0.3s ease;
}

.dropdown_toggle.active .dropdown_arrow {
    transform: rotate(180deg);
}

.dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #005780;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown_menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown_item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.dropdown_item:last-child {
    border-bottom: none;
}

.dropdown_item:last-child {
    border-radius: 0 0 10px 10px;
}

.dropdown_item:hover {
    background-color: #f8f9fa;
    color: #005780;
}

.dropdown_item svg {
    margin-right: 8px;
    fill: #005780;
}

.dropdown_item:hover svg {
    fill: #005780;
}