
/* -------------------main media component ---------------------- */
:root{
    --transition-duration: 0.3s;
    --transition-timing-function: ease-in-out;
    --max-height-holder: 550px;
    --custom_wrapper_width: 1980px;
    --wrapper_padding: 20px;
}
.holder{
    line-height: 160%;
}
.main_main_media__container{
    width: 100%;
}
.main_media__inner{
    position: relative;
    overflow: hidden;
    max-height: var(--max-height-holder);
}
.main_media__image{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    max-height: var(--max-height-holder);
    cursor: pointer;
    transition: height var(--transition-duration) var(--transition-timing-function), ;
}
.main_media__inner.opened{
    max-height: unset;
}
.main_media__inner.opened .main_media__image{
    max-height: unset;
    aspect-ratio: unset;
}

.main_media__video__holder{
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

#main_media__video{
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.main_media__video__hover_shield{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.catalogue__description{
    padding: 0 20px;
}

.jvm-tooltip {
  background-color: var(--main-black-color); /* Задаем нужный цвет фона */
  color: white; /* Цвет текста */
}

/* -------------------main panel ---------------------- */

.directory_panel{
    padding: 25px 20px 30px;
    border-bottom: 2px solid var(--main-light-gray-color);
    background-color: #fff;
}
.directory_panel__center_content h1{
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    line-height: 130%;
}
.directory_panel__center_content h2{
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    line-height: 120%;
    font-family: var(--second_font_family);
    text-align: center;
}
.directory_panel__inner__grid{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: center;
    max-width: var(--custom_wrapper_width);
    margin: 0 auto;
    gap: 10px;
}
.directory_panel__right_content {
    text-align: right;
}
/* ---------------------------------------------------- */


/* ---------------------sticky panel---------------------------- */

.directory_sticky_panel{
    display: flex;
    position: sticky;
    bottom: 0;
    background-color: var(--main-gray4-color);
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.14);
    min-height: 100px;
    align-items: center;
    z-index: 2;
}
.directory_sticky_panel__container{
    /* display: flex; */
    /* justify-content: space-between; */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    gap: 10px;
    max-width: var(--custom_wrapper_width);
    padding: 10px 45px;
    margin: 0 auto;
}
/* .directory_sticky_panel__container > div{ */
/*     flex: 1; */
/* } */
.back_link__container{
    display: flex;
    align-items: center;
    margin-right: auto;
}
.back_link{
    color: var(--main-darknest-gray-color);
}
.back_link__desktop{
   display: flex;
    align-items: center;
    gap: 3px;
    line-height: 120%;
    transition: color var(--transition-duration) var(--transition-timing-function);
}
.back_link__desktop:hover{
    color: var(--main-dark-gray-color);
}
.directory_sticky_panel__buttons_container{
    display: flex;
    gap: 15px;
    align-items: center;
}

.directory_sticky_panel__service_button{
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: var(--main-blue-color);
    font-size: 18px;
    cursor: pointer;
    transition: background-color var(--transition-duration) var(--transition-timing-function);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.14);
}
.directory_sticky_panel__service_button:hover{
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.09);

}
.directory_sticky_panel__service_button.active{
    background-color: var(--main-light-gray-color);
}
.directory_sticky_panel__service_button.active svg path{
     fill: var(--main-dark-gray-color);
}


.directory_sticky_panel__favorite_button.selected svg path{
    fill: #EB5293;
}

.directory_sticky_panel__favorites_list{
    display: flex;
    gap: 3px;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -8px;
}
.directory_sticky_panel__favorites{
    position: relative;
}

.directory_sticky_panel__favorites_list__item,
.directory_sticky_panel__show_count_favorites{
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #182340;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
}
.directory_sticky_panel__favorites_list__item__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directory_sticky_panel__show_count_favorites{
    background-color: var(--main-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.directory_sticky_panel__show_count_favorites svg{
    margin-left: -3px;
}

.list-enter-active,
.list-leave-active {
  transition: all 0.5s ease;
}
.list-enter-from,
.list-leave-to {
  opacity: 0;
  transform: translateX(30px);
}

/* ------------------------------------------------------------- */
.directory_sticky_panel__share_list {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 22px;
}

.directory_sticky_panel__share_button{
    position: relative;
}
.share_button__list{
    display: flex;
    gap: 5px;
}
.share_button__list li{
    display: inline-block;
}
.share_button{
    height: 45px;
    width: 45px;
    border-radius: 50%;
    box-shadow: 0px 1px 3px rgba(0,0, 0, 0.14);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color var(--transition-duration) var(--transition-timing-function), box-shadow var(--transition-duration) var(--transition-timing-function);
}
.share_button:hover{
    background-color: var(--main-blue-color);
    box-shadow: 0px 3px 9px rgba(0,0, 0, 0.09);
}
.share_button:hover svg path{
    fill: #fff;
}
.share_button__mail{
    background-color: #CF5444;
}
.share_button__linkedin{
    background-color: #0A66C2;
}
.share_button__telegram{
    background-color: #33ABE0;
}
.share_button__whatsapp{
    background-color: #29A71A;
}
.share_button__twitter{
    background-color: #000000;
}
.share_button__facebook{
    background-color: #1877F2;
    border: 2px solid #1877F2;
}
.share_button__copy{
    background-color: #fff;
}

.show_email_button{
    height: 30px;
    line-height: 30px;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
    border: 1px solid var(--main-gray4-color);
}
.show_email_button:hover{
    transform: none;
    background-color: var(--main-gray4-color);
}
.truncate{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
/* ----------------------see also section------------------------- */

/* ---------------------------------------------------- */

.see_also{
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #fff;
    display: block;
}
.see_also__title{
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 20px;
    line-height: 120%;
    font-family: var(--second_font_family);
    text-align: center;
}

.see_also__card{
    max-width: 440px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}
.see_also__card__image_holder{
    position: relative;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.see_also__card__image{
    max-width: 100%;
    width: 100%;
    transition: transform var(--transition-duration) var(--transition-timing-function);
    display: block;

}
.see_also__card__image__dummy{
    width: 440px;
}
.see_also__card:hover{
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
    transition: box-shadow var(--transition-duration) var(--transition-timing-function);
    background-color: rgba(249, 251, 255, 1);
}
.see_also__card:hover .see_also__card__image:not(.see_also__card__image__dummy){
    transform: scale(1.15);
}
.see_also__card__manufacturer{
    font-size: 16px;
}
.see_also__card__description{
    padding: 10px 20px 20px;
    /* background-color: #fff; */
    text-align: left;
    font-size: 18px;
}
.carousel__slide {
  padding: 0 2px;
    align-items: flex-start!important;
    font-size: 0;

}

.carousel{
    height: auto;
}
.carousel__viewport{
    padding-bottom: 10px;
}
/* -------------------certificates--------------------- */

.certificates{
    background-color: #fff;
    padding: 40px 0 100px;
}
.certificates__title{
    font-size: 30px;
    font-weight: 500;
    font-family: var(--second_font_family);
    text-align: center;
    margin: 0 10px 40px;
}

.certificates__holder{
    display: inline-table;
    text-align: center;
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}

.certificates__header{
    display: table-row;
    height: 43px;
    border-bottom: 2px solid var(--main-light-gray-color);
}
.certificates__header__cell{
    display: table-cell;
    padding: 5px 0;
    font-size: 14px;
    color: var(--main-darknest-gray-color);
    white-space: nowrap;
}
.certificates__body__cell__mobile_header{
    display: none;
    color: var(--main-darknest-gray-color);
}

.certificates__body__row{
    display: table-row;
    height: 43px;
    border-bottom: 2px solid var(--main-light-gray-color);
}
.certificates__body__cell{
    display: table-cell;
    padding: 5px;
    vertical-align: middle;
}

.authority_header__cell,
.authority__cell{
    text-align: left;
}

.certificates__body__cell__link{
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    word-break: break-all;
}

.authority__icon{
    max-height: 35px;
    max-width: 35px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
.certificates__header{
    display: table-row;
    height: 43px;
    border-bottom: 2px solid var(--main-light-gray-color);
}

.certificates__cell{
    text-align: left;
}


/* ---------------------------------------------------------------------- */

.api__container{
    padding: 200px 20px 170px;
    background-color: var(--main-gray6-color);
    text-align: center;
}
.api__title{
    font-size: 30px;
    font-family: var(--second_font_family);
    font-weight: 600;
    margin: 0;
    text-align: center;
}
.api__title span{
    color: var(--main-accent-color);
}
.api__sub_title{
    font-size: 16px;
    font-family: var(--second_font_family);
    font-weight: 500;
    margin: 0 0 20px 0;
    text-align: center;
}
.api__button{
    color: var(--main-black-color);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09);
    border: none;
    width: 290px;
    height: 55px;
    padding: 0;
    line-height: 55px;
}
/* ----------------------------------------------- */

/*--------------------------------------------*/

.tags_cloud {
    max-width: var(--wrapper_width);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    row-gap: 10px;
    column-gap: 5px;
    flex-wrap: wrap;
    padding: 0px;
}
.tags_cloud__tag {
    font-size: 14px;
    line-height: 30px;
    padding: 0 15px;
    background-color: var(--main-gray-color);
    color: white;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.tags_cloud__tag:hover{
    background-color: var(--main-darknest-gray-color);
}
.tags_cloud__tag.selected{
    background: var(--main-blue-color);
}
.tags_cloud__tag.disabled{
    color: var(--main-gray-color);
    background-color: var(--main-light-gray-color);
    cursor: auto;
}

/* ---------------map ------------------ */

.map_section{
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.map{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.map__no_premium {
    filter: blur(4px) grayscale(2%);
}

.premium_button__holder{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.premium_button__wrapper {
    position: absolute;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    top: 50%;
    right: 0;
    z-index: 1;
    text-align: center;
}
.premium_button .price_text{
    color: var(--main-warning-color);
}

/* --------------------------------------------- */



.vue-treeselect__menu{
    line-height: 210%;
}
.vue-treeselect__menu-container label.vue-treeselect__label{
    font-size: 16px;
    color: var(--main-darknest-gray-color);
}
.vue-treeselect__placeholder, .vue-treeselect__single-value{
    padding-left: 15px;
}


/* --------------------------------------API-------------------- */

/*--------------gallery preloader --------*/
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*display: none;*/
        z-index: 5;
    }
    #loader {
        display: block;
        position: relative;
        left: 50%;
        top: 50%;
        width: 150px;
        height: 150px;
        margin: -75px 0 0 -75px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #9370DB;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
    }
    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #BA55D3;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }
    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #FF00FF;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }
    @-webkit-keyframes spin {
        0%   {
            -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        100% {
            -webkit-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
    @keyframes spin {
        0%   {
            -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        100% {
            -webkit-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
/*-------------------------------------------------*/
.person{
    display: flex;
    gap: 17px;
}
.person__image_holder{
    --person-image-size: 115px;
    width: var(--person-image-size);
    height: var(--person-image-size);
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}
.person__dummy{
    width: 100%;
    height: 100%;
    background-color: var(--main-gray6-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-gray-color);
    font-size: 30px;
}
.person__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.person__description{
    padding-top: 7px;
}
.person__name{
    font-size: 18px;
    font-weight: 500;
}
.person__position{
    font-size: 14px;
    color: var(--main-dark-gray-color);
}
.person__contacts{
    margin-top: 10px;
}
.person__contact_button{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.14);
    height: 32px;
    min-width: 85px;
}
.person__contact_button a{
    color: var(--main-blue-color);
    display: flex;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--second_font_family);
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.person__contact_button a:hover,
.person__contact_button a:hover path {
    color: var(--main-accent-color);
    fill: var(--main-accent-color);
}
.person__contact_button__phone{
    transform: translateY(-1px);
}
/* --------------------------------------------------------- */
.request_component__success{
    padding: 60px 20px 85px;
    text-align: center;
}
.request_component__success__title{
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}
.request_component__success__button{
    min-width: 160px;
}
/* --------------------------------------------------------------- */


/* -------------------- request form---------------- */
.request_component__container{
    padding: 0 var(--wrapper_padding);
    max-width: var(--wrapper_width);
    margin: 0 auto;
}
.request_component__holder{
    --legs-column-gap: 5px;
    --legs-row-gap: 17px;
    width: 100%;
    /* padding: 55px 20px 30px; */
    padding: 90px 20px 100px;
    background-color: var(--main-gray6-color);
}
.request_component__title{
    font-size: 30px;
    font-weight: 500;
    font-family: var(--second_font_family);
    margin: 0 0 40px 0;
    text-align: center;
}
.request_component__legs{
    display: flex;
    column-gap: var(--legs-column-gap);
    row-gap: var(--legs-row-gap);
    justify-content: center;
    align-items: flex-start;
}
.request_component__legs:not(:first-child){
    margin-top: 20px;
}
.leg__control{
    flex-grow: 1;
}
.leg__arr_control,
.leg__dep_control{
    width: 100%;
    max-width: calc( 100% - (var(--legs-column-gap) * 4) );
}
.leg__control small{
    color: var(--main-error-color);
    padding-left: 15px;
}
.leg__pax_control{
    width: 100%;
    max-width:110px;
}
.leg__date__request_control{
    width: 100%;
    max-width:330px;
    display: flex;
    column-gap: var(--legs-column-gap);
}

.dp_wrapper{
    width: 100%;
}
.request_quote_btn,
.send_quote_btn{
    white-space: nowrap;
    padding: 12px 25px;
    height: var(--controls-height);
    min-width: 150px;
}
.mobile_request_btn{
    display: none;
}
.leg__index{
    font-size: 14px;
    color: var(--main-gray-color);
    text-align: center;
    display: none;
}
.leg__controls{
    margin-top: 10px;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.leg__controls__left_section,
.leg__controls__right_section{
    display: flex;
    gap: 25px;
}
.leg__controls__right_section{
    padding-top: 5px;
}

.leg__controls__left_section{
    padding-left: 20px;
}
.leg__controls__add_leg,
.leg__controls__remove_leg,
.leg__controls__add_leg:focus,
.leg__controls__remove_leg:focus{
    color: var(--main-dark-gray-color);
    background-color: transparent;
    font-size: 14px;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* .leg__controls__current_link, */
/* .leg__controls__quote_request_link{ */
/*     color: var(--main-darknest-gray-color); */
/*     background-color: transparent; */
/*     font-size: 14px; */
/*     border: none; */
/*     display: flex; */
/*     align-items: center; */
/*     gap: 5px; */
/* } */
/* .leg__controls__quote_request_link{ */
/*     color: var(--main-dark-gray-color); */
/* } */

/* --------------------------------- */
.request_component__second_form{
    display: flex;
    column-gap: var(--legs-column-gap);
    margin-top: 30px;
}
.request_component__second_form small{
    color: var(--main-error-color);
    padding-left: 15px;
}
.second_form__col{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.second_form__col input{
    width: 100%;
}
.request_component__second_form__submit{
    flex-grow: 0;
}
/* ---------------------------------------- */
.autocomplete__holder{
    position: relative;
    width: 100%;
}
.autocomplete__dropdown{
    --controls-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.14);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 330px;
    max-height: 500px;
    background-color: #fff;
    box-shadow: var(--controls-box-shadow);
    margin-bottom: 20px;
    z-index: 3;
    overflow-y: auto;
}
.autocomplete__option{
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.1s var(--transition-timing-function);
    line-height: 1.5rem;
}
.autocomplete__option:hover{
    background-color: var(--main-gray6-color);
}


footer{
    padding-top: 100px;
}

/* ------------------------------------------------- */


/* --------------------achievements------------------------- */
.achievements{
    background-color: #fff;
    padding: 40px 0 50px;
}
.achievements__holder{
    display: flex;
    row-gap: 60px;
    column-gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.achievements__holder.row_structure .achievements__item{
    max-width: 100%;
    flex-direction: row;
    align-items: flex-start;
    display: grid;
    grid-template-columns: auto auto 1fr;
    width: 100%;
}

.achievements__holder.row_structure .achievements__item .achievements__item__name{
    --achivement-padding: 40px;
    border-bottom: none;
    width: auto;
    white-space: nowrap;
    padding-left: 25px;

}
.achievements__holder.row_structure .achievements__item .achievements__item__description {
    padding-top: 0;
}
.achievements__holder.row_structure .achievements__item .achievements__item__icon__holder {
    align-items: flex-start;
}

.achievements__title{
    font-size: 30px;
    font-weight: 500;
    font-family: var(--second_font_family);
    margin: 0 0 50px 0;
    text-align: center;
    padding: 0;
}
.achievements__item{
    --achivement-padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(100% / 4 - 20px);
}
.achievements__item__icon__holder{
    text-align: center;
    height: 85px;
    display: flex;
    align-items: center;
}
.achievements__item__icon__holder > span{
    vertical-align: middle;
    color: var(--main-error-color);
    font-size: 25px;

}
.achievements__item__icon__holder span.years_count{
    font-size: 37px;
    font-weight: 500;
}
.achievements__item__icon{
    max-height: 100%;
}
.achievements__item__name{
    font-size: 18px;
    border-bottom: 2px solid var(--main-light-gray-color);
    padding: 0 var(--achivement-padding) 25px var(--achivement-padding);
    text-align: center;
    width: 100%;
}
.achievements__item__description{
    text-align: left;
    padding: 25px var( --achivement-padding);
}
.achievements__item__title{
    margin-top: 15px;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--main-darknest-gray-color);
}
.achievements__item__value{
    font-weight: 500;
}

/* --------------------------------------------------- */
.company_update{
    padding: 40px 0 60px;
    background-color: #fff;
}
.company_update__label{
    font-size: 18px;
    margin: 0 0 20px;
    line-height: 120%;
    text-align: center;
}
.company_update__label span{
    color: var(--main-darknest-gray-color);
}
.company_update__request{
    text-align: center;
}
.company_updated__request__btn{
    border-color:  #000;
    color: var(--main-black-color);
    height: 60px;
    line-height: 60px;
    width: 180px;
    padding: 0;
}
.company_update__success{
    padding: 14px 0;
}
.company_update__success__title{
    font-size: 24px;
    margin: 0;
    text-align: center;
    font-weight: 500;
}
.company_update__success__subtitle{
    text-align: center;
    font-size: 18px;
}
.company_update__preloader_container_for_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

}
.company_update__preloader_container_for_btn .preloader-wrapper .spinner-layer{
    border-color: var(--main-black-color)!important;
}

/* ------------------------------------------------- */
.directories_description{
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #f4f4f4 470px, #ffffff 470px);
}
.directories_description .section__container {
    padding: 0 var(--wrapper_padding);
}

.directories_description__content{
    display: flex;
    column-gap: 35px;
    row-gap: 45px;
}
.directories_description__title{
    font-size: 30px;
    font-weight: 500;
    font-family: var(--second_font_family);
    margin: 0 0 40px 0;
    text-align: center;
    padding: 0;
}
.directories_description__detailed_information{
    padding-top: 50px;
    min-width: 320px;
}
.detailed_information__title{
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 15px;
}
.directories_description__detailed_information__list{
    margin-bottom: 40px;
}
.directories_description__detailed_information__list li{

}
.directories_description__image{
    max-width: 100%;
}
.directories_description__image.mobile_image{
    display: none;
}
.explore_directories_btn{
    height: 60px;
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.directories_description__info{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}
.info__card{
    max-width: 270px;
}
.info__card__count{
    font-size: 45px;
    line-height: 65px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    font-family: var(--second_font_family);
}

/* ------------------------------------------------- */
.pointer-events-none {
    pointer-events: none;
}


@media only screen and (max-width: 992px) {

    @media (max-width: 768px) {
        .directory_panel__inner__grid {
            grid-template-columns: 1fr;
        / grid-template-rows: auto auto auto;
        }

        .directory_panel__right_content {
            text-align: center;
            padding: 25px 10px 10px;
        }
    }
        /* -------------------------------------------- */
    .certificates{
        padding: 20px 0 35px;
    }

    .certificates__title {
        margin: 0 10px 25px;
    }
    .certificates__header {
        display: none;
    }
    .certificates__body__cell__mobile_header{
        display: block;
    }

    .certificates__body__row {
        display: flex;
        border-bottom: none;
        height: unset;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
    /* .certificates__body__cell{ */
    /*     display: block; */
    /*     !* flex-grow: 1; *! */

    /* } */
    .authority__cell{
        background-color: var(--main-gray7-color);
        padding: 15px 10px;
        flex-basis: 100%;
        text-align: center;
    }
    .approval__cell,
    .certificates__cell{
        flex-basis: 50%;
        max-width: 50%;
    }
    .authority__cell__abbreviation{
        display: inline-block;
    }
    .approval__cell{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

/* --------------------------------------------------- */
    .request_component__legs{
        flex-wrap: wrap;
    }
    .leg__arr_control,
    .leg__dep_control{
        width: calc(50% - (var(--legs-column-gap) / 2) );
    }
    .leg__pax_control{
        max-width: 30%;
    }
    .leg__date__request_control{
        max-width: calc(70% - var(--legs-column-gap)  );
    }

    /* ----------------------------------------------------- */
    .directories_description__content{
        flex-direction: column;
    }

}

@media only screen and (max-width: 600px) {
     .request_component__container {
        padding: 0;
    }

    .request_component__legs:not(:first-child) {
        margin-top: 40px;
    }

    .leg__arr_control,
    .leg__dep_control {
        width: 100%;
        max-width: 100%;
    }

    .leg__pax_control {
        max-width: calc(50% - var(--legs-column-gap) / 2);
    }

    .leg__date__request_control {
        max-width: calc(50% - var(--legs-column-gap) / 2);
    }

    .leg__controls {
        display: flex;
        flex-direction: column;
        row-gap: 25px;
    }

    .leg__controls__right_section {
        justify-content: center;
        gap: 15px;
    }

    .request_quote_btn {
        display: none;
    }

    .leg__index {
        display: block;
    }

    .mobile_request_btn,
    .send_quote_btn {
        display: block;
        margin-top: 5px;
        width: 100%;
    }

    .send_quote_btn {
        margin-top: 10px;
    }

    .request_component__second_form {
        flex-direction: column;
        row-gap: var(--legs-row-gap);
    }

    /* ----------------------------------- */

    .directory_sticky_panel{
        --sticky_panel-height: 90px;
        min-height: 90px;
    }
    .directory_sticky_panel__container{
        padding-left: 20px;
        padding-right: 20px;
    }
    .back_link{
        width: 30px;
        display: inline-block;
    }

    .directory_sticky_panel__share_list{
        bottom: calc(-1 * var(--sticky_panel-height));
        right: -5px;
        left: unset;
        top: unset;
    }
    .share_button__list{
       flex-direction: column;
    }
    .directory_sticky_panel__favorites_list{
        position: absolute;
        bottom: 25px;
    }

    footer {
        padding-top: 50px;
    }

/* ----------------------------------- */
    .achievements{
        padding: 20px 0 40px;
    }
    .achievements__item,
    .achievements__holder.row_structure .achievements__item{
        display: flex;
        align-items: center;
        max-width: 100%;
        flex-direction: column !important;
        --achivement-padding: 5px;
    }
    .achievements__item__name {
        border-bottom: 2px solid var(--main-light-gray-color)!important;
        width: 100%!important;
    }
/* -------------------------------------------- */
    .directories_description{
        padding: 60px 0 100px;
        background: linear-gradient(180deg, #f4f4f4 50%, #ffffff 50%);
    }

    .directories_description__detailed_information{
        padding-top: 0;
    }

    .directories_description__image.mobile_image{
        display: inline-block;
    }
    .directories_description__image:not(.mobile_image){
        display: none;
    }
    .explore_directories_btn{
        max-width: unset;
    }
    .directories_description__info{
        flex-direction: column;
        align-items: center;

    }

}
