@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100vh;
}

body {
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    font-family: 'Calibri';
    font-size: 14px;
    font-weight: 400;
    color: var(--gs-font-color);
    position: relative;
}

:root {
    --gs-border-color: solid 1px rgba(0, 0, 0, 0.2);
    --gs-navigator-bg: #f0f0f0;
    --gs-navigator-bg-2: #d8d8d8;
    --gs-navigator-bg-fm: #fdfdfd;

    --gs-primary-color: #D6BF82;
    --gs-secondary-color: #D6BF82;
    --gs-accent-color: #CAC4B9;
    --gs-font-color: #231F20;

    --gs-dostepny-color: #82f263;
    --gs-rezerwacja-color: #f2cc63;
    --gs-sprzedany-color: #e02222;
    --gs-neutral-color: #b7e022;

    --gs-dostepny-status: #50A52A;
    --gs-rezerwacja-status: #F2B100;
    --gs-sprzedany-status: #B43636;
    
    --gs-font-family: 'Montserrat';
}

.gs__input_group {
    position: relative;
    left: 0;
    right: 0;
    width: calc(100% - 30px);
}

.group_center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
}

input[type="search"], select {
    width: 100%;
    border: solid 1px rgba(0,0,0,0.3);
    height: 36px;
    padding-inline: 10px;
    background-color: #ffffff;
    -webkit-appearance: none;
    font-family: var(--gs-font-family) !important;
    font-size: 13px;
    font-weight: 400;
    outline: none;
}

.gs__input_available {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #ffffff;
    padding: 0 10px;
    border: solid 1px rgba(0,0,0,0.3);
    gap: 10px;
}

select::placeholder {
    text-indent: 10px;
}

option {
    font-family: var(--gs-font-family);
}

.circle-normal {
    position: relative;
    z-index: 9999;
}

select::-ms-expand {
    display: none !important;
}

label {
    font-size: 15px;
}

button {
    border: none;
    outline: none;
}

a {
    text-decoration: none;
}

.gs__input_group i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gs-font-color);
}

.gs__input_group span {
    opacity: 0.5;
    font-size: 12px;
    font-family: var(--gs-font-family);
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.gs__ap_loader {
    position: absolute;
    z-index: 99999;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    display: none;
    flex-direction: column;
    gap:10px;
    justify-content: center;
    align-items: center;
}

.gs__ap_loader.loading {
    display: flex;
}

.gs__ap_loader img {
    margin-bottom: 24px;
}

.gs__ap_loader .spin-it{
    animation: spin-load 2s linear infinite;
}

@keyframes spin-load {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container {
    box-sizing: border-box;
    max-width: 1920px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    position: relative;
}

.btn__primary {
    background-color: var(--gs-secondary-color);
    color:white;

}

.btn__secondary {
    background-color: var(--gs-primary-color);
    color: white;
}

.gs__header {
    background: var(--gs-primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}

.gs__header img {
    height: 30px;
    width: auto;
}

.gs__header_item {
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.gs__header_item > * {
    width: 100%;
}

.gs__header i {
    font-size:  26px;
    color: white;
    width: max-content;
}

.gs__heading {
    width: max-content;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.gs__navigator {
    display: flex;
    max-width: 1920px;
    width: 100%;
    height: auto;
    max-height: 866px;
    background: var(--gs-navigator-bg);
    border-radius: 0 0 8px 8px;
    position: relative;
}

.gs__navigation_img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 3;
}

.modal {
    position: fixed;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    z-index: 100;
}

#navigation-container {
    cursor: url('360.png') 25 10, auto;
    overflow: hidden;
    position: relative;
}

.gs__navigation_container {
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    display: flex;
    justify-content: center;
}

.gs__zoom {
    position: absolute;
    top: 20px;
    right: 20px;
        z-index: 5;
}

.gs__zoom_conteiner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    gap: 6px;

}

.gs__zoom_button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.gs__zoom_button:hover {
    background: rgba(255, 255, 255, 0.65);
}


.gs__navigation_buttons {
    width: max-content;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    z-index: 5;

}

.gs__navigation_buttons.hide {
    display: none !important;
}

.gs__navigation_buttons span {
    font-weight: 600;
}

.gs__navigation_logo {
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 5%;
    z-index: 9999;
}

.gs__navigation_logo .gs__brand_logo {
    width: 100%;
    height: auto;
    opacity: 0.5;
}

.nav-img-parent {
    opacity: 1;
    display: none;
    transition: all 0.2s ease-in-out;
}

.nav-img-parent.display {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    display: block;
    animation: fade-in 1 0.5s;
}

.gs__button_desc {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes fade-in {
    0% {
        display: none;
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.gs__navigation_buttons > .gs__navigation_button {
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
}

.gs__navigation_buttons > .gs__navigation_button:hover {
    background-color: var(--gs-primary-color);
    color: white;
}

.gs__navigation_img img {
    border-radius: 0 0 0 8px;
    vertical-align: top;
    width: 100%;
    height: auto;
}

.gs__navigation_img svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.gs__navigation_img svg polygon {
    cursor: pointer;
    fill-opacity: 0.4;
    stroke-width: 2;
    stroke-opacity: 1;
  }

.gs__navigation_img svg a:hover, .gs__navigation_img svg a:hover polygon {
    opacity: 0.9;
    fill-opacity: 0.4 !important;
    fill: rgb(255, 255, 255) !important;
}

.gs__navigation_img svg polygon.selected, .gs__navigation_img svg circle.selected {
    fill: rgb(255, 255, 255) !important;
    stroke: rgb(255, 255, 255) !important;
} 

.gs__navigation_img svg text.selected {
    stroke: var(--gs-font-color);
    fill: var(--gs-font-color);
}

.gs__navigation_img svg polygon.dostepny {
    fill: var(--gs-dostepny-color);
    stroke: var(--gs-dostepny-color);

}

.gs__navigation_img svg polygon.rezerwacja {
    fill: var(--gs-rezerwacja-color);
    stroke: var(--gs-rezerwacja-color);

}

.gs__navigation_img svg polygon.sprzedany {
    fill: var(--gs-sprzedany-color);
    stroke: var(--gs-sprzedany-color);

}

.gs__navigation_img svg polygon.neutral {
    fill: rgb(240, 188, 111);
    stroke: rgba(255,255,255,1);

}

.gs__modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 2px);
    z-index: 1;
}

.gs__modal_overlay {
    box-sizing: border-box;
    position: relative;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
}

.gs__modal_content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: white;
}

.gs__modal_btn {
    height: 30px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
    background: var(--gs-accent-color);
    color: white;
    font-weight: 500;
    font-family: var(--gs-font-family);
}

.gs__modal_btn:hover, .modal__head_exit:hover {
    cursor: pointer;
    opacity: 0.9;
}


.modal__head_exit {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 20;
    width: 126px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--gs-primary-color);
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.gs__modal_body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

/* --- MODAL RIGHT ---*/
.modal__body_right {
    box-sizing: border-box;
    height: 100%;
    width: 520px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--gs-font-color);
    background: var(--gs-navigator-bg-fm);
    border-left: var(--gs-border-color);
}

.modal__body_right > *:last-child {
    align-items: flex-end;
}

.body__right_info {
    width: 100%;
    height: 100%;
    padding: 0 0 10px 0;
    overflow: auto;
}

.info__information {
    margin-top: 20px;
    padding-inline: 10px;
}

.info__information p {
    font-size: 12px;
    text-align: center;
}


.right__info_local {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: var(--gs-border-color);
    width: calc(100% - 20px);
    border-top: var(--gs-border-color);
}

.right__info_local .modal__head_exit {
    position: relative;
    top:0;left:0;right:0;bottom: 0;
    border-radius: 0;
}

.right__info_accordion {

    display: flex;
    flex-direction: column;
}

.info__accordion_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: var(--gs-border-color);
    width: calc(100% - 20px);
    padding: 10px;
}

.info__rec_heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: solid 1px rgba(0,0,0,0.2);
    width: calc(100% - 20px);
    padding: 10px;
    gap: 5px;
}

.accordion__body {
    width: calc(100% - 20px);
    height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    gap: 10px;
    
}

.accordion__body.show {
    height: 120px;
    padding: 10px;
    border-bottom: var(--gs-border-color);
}

.info__accordion_heading.show i {
    transform: rotate(180deg);
}

.accordion__body_item {
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background: #f0f0f0;
    border-radius: 4px;
    border: solid 1px rgba(0,0,0,0.3);
    font-size: 14px;
}

.accordion__body_value {
    font-weight: 600;
}

.info__rec_items {
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 10px;
    flex-wrap: wrap;
}

.info__rec_item {
    width: 100%;
    background: #f0f0f0;
    flex-basis: calc(50% - 5px);
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    flex-direction: column;
        cursor: pointer;
}

.rec__heading, .accordion__heading {
    font-weight: 500;
}

.rec__item_throw {
    width: calc(100% - 20px);
    padding: 10px;
}

.rec__item_throw img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.rec__item_name {
    text-align: center;
    font-weight: 600;
}

.rec__item_details {
    width: calc(100% - 20px);
    margin: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 4px;
    background: var(--gs-navigator-bg-fm);
    border: solid 1px rgba(0,0,0,0.3);
}

.item__detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

.item__detail:not(:last-child) {
    border-right: solid 1px rgba(0, 0, 0, 0.2)
}

.item__detail_name {
    font-size: 12px;
    color: #666;
}

.item__detail_value {
    font-size: 14px;
    font-weight: 500;
}


/* --- MODAL LEFT ---*/
.modal__body_left {
    width: 100%;
    height: 100%;
    background: #ddd;
    position: relative;
}

.modal__body_right  .status.sprzedany, .accordion__body_value.sprzedany {
    color: var( --gs-sprzedany-status);
}

.modal__body_right  .status.dostepny, .accordion__body_value.dostepny{
    color: var( --gs-dostepny-status);
}

.modal__body_right  .status.rezerwacja, .accordion__body_value.rezerwacja {
    color: var( --gs-rezerwacja-status);
}

.body__left_levels {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 300px;
    height: auto;
}

.left__levels_container {
    width: 100%;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gs-accent-color);
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0,0,0,0.1), inset 0 0 8px rgba(0,0,0,0.05);
}

.left__level {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.left__level.current {
    background: var(--gs-primary-color);
    border-radius: 4px;
    color: #ffffff;
    font-weight: 600;
}

.media_show {
    display: block !important;
}

.media_img {
    display: none;
}

.left__level.current:first-child {
    box-shadow: 2px 0px 4px rgba(0,0,0,0.2);
}

.left__level.current:last-child {
    box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.2);
}

.body__left_tabs {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.tabs__buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: flex-end;
}

.tabs__button {
    width: 60px;
    height: 60px;
    display: grid;
    place-content: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.tabs_button_group:hover .tabs__button {
    opacity: 0.5;
}

.tabs__button img {
    width: 45px;
    height: 45px;
}

.tabs_button_group {
    display: flex;
    align-items: center;
    gap: 5px
}



.tabs_button_group span.tabs__button_desc {
    width: 0;
    transition: all 0.3s ease-in-out;
    background: var(--gs-primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    position: relative;
    z-index: 55;
}

.tabs_button_group span.tabs__button_desc p {
    text-wrap: nowrap;
    overflow: hidden;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.tabs_button_group:hover span.tabs__button_desc {
    width: 180px;
    padding: 5px;
}

.body__left_throw {
    display: grid;
    place-content: center;
    width: 100%;
    height: calc(100% - 80px);
    padding: 40px 0;
}

.body__left_throw img {
    height: 100%;
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
    filter: drop-shadow(0px 0px 8px rgba(0,0,0,0.15));
}

.body__left_throw.hide {
    display: none !important;
}

#modal-send-email {
    width:100%;
    max-width: 1000px;
    height: 100%;
    max-height: 475px;
}

.gs__modal-card_overlay {
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    border-radius:  0 0 0 4px;
    display: grid;
    place-items: center;
}

.modal-card_content {
    width: 80%;
    max-width: 800px;
    height: 80%;
    background-color: white;
    border-radius: 4px;
    padding: 20px;

}

.modal-card-head {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: solid 1px var(--gs-border-color);
    font-size: 20px;
}

.modal-card-body {
    width: 100%;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.modal-card-body > * {
    margin-inline: 25px;
    text-align: center;
}

.modal-card-body h3 {
    font-size: 2em;
    color: #000;
    margin-bottom: 5px;
    margin-top: -33px; 
    background-color: white; 
    padding-inline: 10px;
}

.modal__send_h4 {
    font-size: 1.2em;
    color: #666666;
}

.modal-card-body p {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 14px;
}

.modal-card-body form {
    width: 50%;
}

#modal-detail {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.modal-card-group {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.modal-card-group input, .modal-card-group textarea {
    font-family: var(--gs-font-family);
    width: 100%;
    height: 26px;
    text-indent: 10px;
    outline: none;
    border: solid 1px var(--gs-primary-color);
    font-size: 14px;
    font-weight: 400;
        border-radius: 4px;
}

.modal-card-group textarea {
    min-height: 50px;
    max-height: 100px;
    max-width: calc(100% - 35px);
    min-width: calc(100% - 35px);
    padding-left: 10px;
    padding-right: 25px;
    text-indent: 0;
}


.modal-card-group i {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gs-primary-color);
}

.modal-card-agree {
    width: 100%;
    margin-bottom: 20px;
}

.modal-card-agree label {
    font-size: 12px;
}

.modal-card-agree input[type='checkbox'] {
    accent-color: var(--gs-primary-color);
}

.modal-card-form button {
    width: 100%;
    height: 40px;
    background: var(--gs-primary-color);
    color: white;
    font-weight: 500;
    font-family: var(--gs-font-family);
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.modal-card-form button:hover {
    opacity: 0.9;
}

.close-send {
    cursor: pointer;
}


/* --- Nawigacja --- */

.gs__navigation_menu {
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    border-left: var(--gs-border-color);
}

.gs__navigator_filter {
    width: 100%;
    min-height: 50px;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px; 
    border-bottom: solid 1px var(--gs-border-color); 
    background: var(--gs-navigator-bg-fm);
}

.gs__navigator_filter div:first-child {
    margin-left: 15px;
}

.gs__navigator_filter div:last-child {
    margin-right: 15px;
}

.gs__filter_inputs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs__filter_inputs.hide {
    display: none;
}

#filter-input {
    cursor: pointer;
}

.gs__filters {
    width: 100%;
    display: none;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 10px 5px;
    min-height: 139px;
    height: auto;
    background: var(--gs-navigator-bg-fm);
    padding: 10px 0;
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

.gs__filters.show {
    display: grid;
}

.gs__list_desctiption {
    font-size: 14px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    border-top: solid 1px rgba(0,0,0,0.2);
    padding: 10px;
    background: var(--gs-navigator-bg-fm);
}

#filter-input {
    background-color: var(--gs-secondary-color);
    width: 32px;
    height: 32px;
    display: grid;
    place-content: center;
    color: white;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.gs__navigator_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    
}

.gs__navigator_list.hide {
    display: none;
}

.gs__list_item {
    /*padding: 0 15px;*/
    font-size: 15px;
    display: grid;
    min-height: 200px;
    /*gap: 0 10px;*/
    grid-template-columns: 45% 55%;
    cursor: pointer;
    border-bottom: var(--gs-border-color);
    padding-bottom: 2px;
    transition: all 0.3s ease-in-out;
}

.gs__list_item.selected, .list__item_right.selected {
    background: rgb(200, 255, 198);
    transition: all 0.3s ease-in-out;
}

.gs__list_item.selected .list__item_left > * {
    background: rgb(200, 255, 198);
    transition: all 0.3s ease-in-out;
}

.gs__list_item:nth-child(odd) {
    background: var(--gs-navigator-bg-fm);
}

.gs__list_item > * {
    font-weight: 400;
}

.gs__list_item > * span:not(:first-child) {
    font-weight: 700;
}

.list__item_left {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: stretch;
    background: #fdfdfd;

}

.list__item_left > * {
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding-inline: 10px;
    background-color: #fdfdfd;
    
}

.list__item_left .gs__item_btn {
    max-height: 36px;
}


.list__item_left > *:nth-child(odd) {
    
}

.list__item_left>*:last-child {
    background-color: transparent;
    padding-inline: 0;
}

.list__item_right .status {
    font-size: 27px;
    font-weight: 500;
}


.list__item_right .status.dostepny {
    color: var( --gs-dostepny-status);
}

.list__item_right .status.rezerwacja {
    color: var( --gs-rezerwacja-status);
}

.list__item_right .status.sprzedany {
    color: var( --gs-sprzedany-status);
}

.status_position {
    position: absolute;
    right: 10px;
    top: 10px;
}

.list__item_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(200,200,200);
    position: relative;

}

.gs__list_throw {
    width: 100%;
    height: auto;
}

.list__item_button {
    width: 100%;
    padding-top: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gs__item_btn.btn__usekey {

    width: max-content;
    gap: 10px;
    padding-inline: 8px;
    font-size: 15px;
}

.gs__item_btn.btn__usekey i {
    font-size: 15px;
}


.gs__item_btn {
    width: calc(100% - 4px);

    height: 100%;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.list__item_right i {
    font-size: 22px;
}

.askforprice {
    cursor: pointer;
}

.gs__animation_container {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: auto;
    transform: translateY(-100%);
}

.gs__animation_container.active {
    z-index: 7;
}

.gs__animation_container img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}


.item__right_img {
    background: rgb(200,200,200); 
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

@media(max-width: 1450px) {
    .accordion__body_item {
        font-size: 12px;
    }
    
    .gs__navigation_buttons {
        padding: 5px 10px;
    }

    .gs__navigation_buttons > .gs__navigation_button {
        width: 35px;
        height: 35px;
    }

    .gs__button_desc {
        font-size: 16px;
    }

    .body__left_throw img {
        max-height: 560px;
    }
}

@media(max-width: 1376px) {
    .body__left_levels {
        width: 250px;
    }

    .left__level {
        height: 24px;
        font-size: 14px;
    }

    .tabs__button {
        width: 50px;
        height: 50px;
    }

    .tabs__button img {
        width: 30px;
        height: 30px;
    }
}

@media(max-width: 1200px) {
    .gs__button_left span, .gs__button_right span {
        display: none;
    }
    
    .modal__body_right {
        overflow-y: auto;
        min-height: 388px;
    }

    .modal-card-body {
        overflow-y: scroll;
 
    }

    .modal-card-body h3 {
        font-size: 1.5em;
        margin-top: 35px;
    }

    .modal-card-body p {
        font-size: 0.8em
    }

    .modal-card-body button {
        font-size: 0.8em;
        height: 32px;
        margin-bottom: 35px;;
    }
}


@media(max-width: 1000px) {
    .gs__navigator {
        flex-direction: column;
    }

    .gs__navigator > *{
        flex-basis: 100%;
        max-width: 100%;
    }

    .gs__navigator_list {
        height: 100% !important;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gs__navigator_list > * {
        border: var(--gs-border-color);
    }

    body {
        max-height: 800px;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .container {
        min-height: 500px;
    }

    .gs__navigator {
        height: auto;

    }

    .btn__usekey span{
        display: none;
    }

    .gs__heading {
        font-size: 18px;
    }

    .modal-card-body hr {
        display: none;
    }

    .modal-card-body h3 {
        font-size: 1.5em;
        margin-top: 45px;
    }

    .container {
        /*margin-inline: 20px;*/
    }
    
    .gs__navigation_img img {
        border-radius: 0;
    }

    .gs__navigation_menu {
        border-right: var(--gs-border-color);
        overflow-y: auto;
    }

    .gs__list_item {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 250px;
        height: 100%;
        min-height: 500px;
    }

    .gs__list_item > *:first-child {
        grid-row: 2 / 3;
    }

    .list__item_left {
        gap: 10px;
    }

    .gs__list_throw {
        height: 100%;
        width: 100%;
    }

    .gs__modal_body {
        flex-direction: column;
    }

    .modal__body_left {
        max-height: 350px;
        margin-top: -164px !important;
    }

    .body__left_levels {
        left: 20px;
        right: 0;
    }

    .tabs__button {
        width: 40px;
        height: 40px;
    }

    .tabs__button img {
        width: 25px;
        height: 25px;
    }

    .gs__navigation_logo {
        z-index: 555;
    }

    .modal__body_right {
        width: 100% !important;
        border-left: solid 2px rgba(0,0,0,0.2);
        border-top: solid 1px rgba(0,0,0,0.2);
    }

    .body__left_tabs {
        height: 310px;
    }

    .body__left_throw img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
    
    .body__left_throw img.media_img_3d {
        max-height: 220px;
    }

    .modal__body_right {
        max-height: 434px;
        overflow-y: auto;
        min-height: 0;
    }
}

@media(max-width: 800px) {
    .gs__modal_body {
        grid-template-columns: 1fr;

    }

    .modal__body_right {
        margin-top: -20px;
    }

    .gs__modal_overlay {
        height: 950px;
    }
    .modal__body_left, .modal__body_right {
        margin: 0;
        
    }

    .modal__body_left {
        border: var(--gs-border-color);
    }

    .gs__modal-card_overlay {
        height: 950px;
    }

    .modal-card-body {
        width: 100%
    }

    .modal-card-body > * {
        margin-inline: 5px;
    }

    .modal-card-body h3 {
        margin-top: 0;
    }

    .modal-card-body form {
        width: calc(100% - 40px);
    }

    .gs__navigation_buttons>.gs__navigation_button {
        width: 25px;
        height: 25px;
        
    }

    .gs__button_desc {
        font-size: 12px;
    }

    .gs__navigation_logo {
        left: 10px;
        bottom: 10px;
    }

}

@media(max-width: 590px)
{
    .gs__navigator_list {
        height: 100% !important;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        scroll-behavior: smooth;
    }

    .gs__navigator_list>* {
        border: none;
    }

    .body__left_throw {
        justify-content: flex-start;
        margin-left: 20px;
    }

    .body__left_throw img {
        max-height: 220px;
        max-width: 220px;
    }

    .body__left_throw img.media_img_3d {
        max-width: 250px;
    }

    .modal__head_exit {
        height: 28px;
        font-size: 12px;
    }

    .left__level {
        font-size: 12px;
    }

    .accordion__body {
        overflow-y: scroll;
    }
}