:root{
    --extended_wrapper_width: 1425px;
    --container_width: 1050px;
    --extended_wrapper_padding: 0 20px;
}

.head_section{
    padding-top: 1px;
    background-color: var(--main-gray7-color);
    padding-bottom: 35px;
}
.title_container{
    font-family: var(--second_font_family);
    text-align: center;
}
.title_container h2{
    font-weight: 500;
    color: var(--main-dark-gray-color);
}

.head_section__controls{
    max-width: 370px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
}
.custom_multiselect .multiselect__input{
    margin: 0;
}
.custom_multiselect .multiselect__input::placeholder{
    color: var(--main-dark-gray-color);
}
.custom__vue_tree_select_control {
    --treeselect-control-height: 60px;
    --treeselect-control-border-color: transparent;
    --treeselect-control-border-radius: 5px;
    --treeselect-control-border-color-hover: var(--main-dark-gray-color);
    --treeselect-control-border-color-active: var(--main-blue-color);
    --treeselect-control-border-color-focus: var(--main-blue-color);
    --treeselect-control-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.14);
    --treeselect-transition-duration: 0.2s;
    --treeselect-arrow-color: var(--main-dark-gray-color);
    --treeselect-control-padding: 12px;
    --treeselect-narrow-cell-width: 25px;
    --treeselect-menu-line-height: 32px;
    --treeselect-multi-value-item-bg: var(--main-gray4-color);
    --treeselect-multi-value-item-border-width: 1px;
    --treeselect-multi-value-item-border-color: var(--main-gray6-color);
    --treeselect-multi-value-remove-size: 12px;
    --treeselect-multi-value-font-color: var(--main-black-color);
    --treeselect-multi-value-font-size: 14px;
    --treeselect-multi-value-margin-y :5px;
    --treeselect-placeholder-font-color: var(--main-dark-gray-color);
    /* max-width: 370px; */
}
.vue3-treeselect__value-remove>svg{
    fill: var(--main-darknest-gray-color);
}

.custom__vue_tree_select_control.invalid{
    --treeselect-control-border-color: var(--main-error-color);
    --treeselect-control-border-color-hover: var(--main-error-color);
    --treeselect-control-border-color-active: var(--main-error-color);
}
.custom__vue_tree_select_control:after{
    color: var(--controls-border-placeholder-color);
    position: absolute;
    content: attr(topplaceholder);
    background: white;
    left: 12px;
    top: -6px;
    font-size: 14px;
    padding: 0 6px;
    line-height: 100%;
    background: var(--controls-background-color);
    background: linear-gradient(180deg, var(--color-background) 50%, var(--controls-background-color) 50%);
}
.vue3-treeselect--open-above.vue3-treeselect--open .vue3-treeselect__control{
    position: relative;
    z-index: 2;
}

.vue3-treeselect__label{
    color: var(--main-black-color);
    font-size: 16px;
}

.head_section__radio_group{
    margin-top: 5px;
    justify-content: center;
    display: flex;
    gap: 15px;
}
.head_section__radio_group [type="radio"].black_radio_button:not(:checked) + label{
    color: var(--main-black-color);
}

/* --------------------------------------------- */
.ac_type{
    --ac_type_section_background: #fff;
    background-color: var(--ac_type_section_background);
    overflow: auto;
}
.ac_type__container{
    max-width: var(--extended_wrapper_width);
    padding: var(--extended_wrapper_padding);
    margin: 25px auto 30px;
}
.show_values_checkbox_holder label{
    color: var(--main-darknest-gray-color)!important;
}
/* ------------------------------------------------- */

.ac_type__table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    display: flex;
    --main-col-width: 200px;
    --other-col-width: calc((100% - var(--main-col-width)) / 7);
}

.ac_type__sticky-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 100%;
    /* table-layout: fixed; !* so that all right columns share space *! */
}
.ac_type__sticky-table thead{
    border: none;
}
.ac_type__sticky-table thead th:not(.ac_type--main_col),
.ac_type__sticky-table tbody tr:not(:last-child){
    border-bottom: 1px solid var(--main-gray6-color);
}

.ac_type__sticky-table th,
.ac_type__sticky-table td {
    padding: 10px;
    text-align: center;
}

.ac_type__sticky-table th {
    font-size: 14px;
    color: var(--main-dark-gray-color);
    font-weight: 400;
}

/* fix the first column */
.ac_type__sticky-table .ac_type--main_col {
    position: sticky;
    left: 0;
    background: var(--ac_type_section_background); /* required, otherwise it will "shine through" */
    z-index: 1;
    min-width: var(--main-col-width); /* main column width */
    padding-left: 0;
    text-align: left;
}

/* divide the remaining space equally */
.sticky-table th:not(.ac_type--main_col),
.sticky-table td:not(.ac_type--main_col) {
    /* width: calc((100% - 500px) / 4); */
}

.sortable_th{
    cursor: pointer;
    white-space: nowrap;
}

/*  */
.ac_type__table-wrapper {
    margin-top: 15px;
}


/* ------------------------------------------- */
.ac_type__holder{
    display: flex;
    gap: 15px;
    align-items: center;
}
.ac_type__image-holder{
    --image-border-color:transparent;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;

}
.ac_type__image-holder:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--image-border-color);
    z-index: 1;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.ac_type__image{
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 5px;
}
.ac_type__name_holder{
    padding-right: 15px;
}
.ac_type__name{
    font-size: 18px;
}
.ac_type__manufacturer_name{
    color: var(--main-darknest-gray-color);
}
.ac_type--pax_icon{
    height: 13px;
}
.ac_type--cabin-values_wrapper{
    display: inline-block;
    text-align: left;
    font-size: 14px;
    white-space: nowrap;
}
/* --------------------------------------------- */
.ac_type__properties{
    display: flex;
    justify-content: space-between;
}

.units_switcher label{
    font-size: 14px;
}
/* --------------------------------------------- */
.stats{
    display: inline-flex;
    gap: 3px;
}
.stats .stat_box{
    height: 9px;
    width: 9px;
    border: 1px solid var(--main-black-color);
    background-color: transparent;
}
.stats .stat_box.selected{
    background-color: var(--main-gray-color);
}
/* --------------------------------------------- */
#map_canvas {
    height: 650px;
}
.ac_type--main_col_marker{
    background-color: #fff;
    min-width: 360px;
    border-radius: 5px;
}
.ac_type--main_col_marker .ac_type__image-holder{
    height: 64px;
    display: inline-block;
}
/* --------------------------------------------- */

.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__sub_title{
    font-size: 30px;
    font-family: var(--second_font_family);
    font-weight: 500;
    margin: 0 0 20px 0;
    text-align: center;
    color: var(--main-accent-color);
}
.api__button{
    color: var(--main-black-color);
    border: none;
    width: 290px;
    height: 55px;
    padding: 0;
    line-height: 55px;
}
.api__button:hover{
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09);
    color: #fff;
    background-color: var(--main-blue-color);
}
/* ----------------------------------------------- */
.aircraft__section{
    padding: 60px 0 50px;
    background-color: #fff;
}
.aircraft__section__title{
    font-size: 24px;
    text-align: center;
}
/* ----------------------------------------------- */
.description{
    padding: 50px 0 100px;
    background-color: #fff;
    line-height: 160%;
}
.description__container{
    max-width: var(--container_width);
    padding: var(--extended_wrapper_padding);
    margin: 0 auto;
}
.description__title{
    margin: 0;
    font-weight: 500;
    font-size: 24px;
}
.description___heading{
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 140%;
}
.ul_disk{
    color:#333;
    font-size:1.2em;
    vertical-align:middle;
    margin-right:0.5em;
}
.description__list{
   list-style-type: circle;
   list-style: inside;
    column-count: 4;
    display: inline-block;
}
.description__list li{
    padding-right: 50px;
}

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

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
}

@keyframes shimmer {
  from { background-position: -200% 0; }
  to { background-position: 200% 0; }
}
/* ---------------------------------------------- */

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

footer {
    background-color: var(--main-light-gray-color);
    padding-top: 100px;
}
@media only screen and (max-width: 992px) {
    .ac_type__sticky-table th:not(.ac_type--main_col),
    .ac_type__sticky-table td:not(.ac_type--main_col){
        background-color: var(--main-light-gray-color);
    }
    .ac_type__sticky-table .ac_type__holder{
        flex-direction: column;
        align-items: flex-start;
    }

    .description__list {
        column-count: 2;
    }

    footer {
        padding-top: 50px;
    }
}
@media only screen and (max-width: 601px) {
    .ac_type__sticky-table .ac_type--main_col    {
        min-width: 100px;
    }
    .ac_type__name{
        font-size: 16px;
    }
    .ac_type__manufacturer_name{
        font-size: 14px;
    }
    #map_canvas {
        height: 500px;
    }
    .description__list {
        column-count: 1;
      }



}