
.apart__selected {
    opacity: 0.8;
}

.floor_selected {
    opacity: 0.8 !important;
}

.floor1__popup {
    display: none;
}

.floor1__popup_selected {
    display: flex;
}

.blue {
    background-color: #323E5D;
}
.floor {
    padding-top: 40px;
    padding-bottom: 75px;
}

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

.floor__hover {
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    opacity: 0.6;
}
.floor__status-head {
    margin-bottom: 10px;
}

.floor__status {
    display: flex;
}
.floor__status-item:not(:last-child) {
    margin-right: 75px;
}
.floor__status-item {
    display: flex;
    align-items: center;
}

.floor__status-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
}

.floor__status-color {
    width: 18px !important;
    height: 18px !important;
    margin-right: 10px !important;
}

.floor__status-color.green {
    display: inline-block;
    background-color: #3AC070;
}
.floor__status-color.red {
    display: inline-block;
    background-color: #9B2D30;
}
.floor__status-color.yellow {
    display: inline-block;
    background-color: #FFBA3E;
}

.more__btn-order {
    display: inline-block;
    padding: 22px 55px;
    background-color: #9B2D30;
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    color: #C9BE9E;
  border-radius: 5px;
      overflow: hidden;
          position: relative;
}
.more__btn-order:hover{
    background: #f7c551;
}

.more__btn-order:after {
    content: "";
    margin-left: 60px;
    width: 30px;
    height: 300px;
    background: rgba(255, 255, 255, 0.86);
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    position: absolute;
    left: -40px;
    top: -150px;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 0;
}
@keyframes slideme {
    0% {
        left: -30px;
        margin-left: 0;
    }
    100%, 30% {
        left: 110%;
        margin-left: 80px;
    }
}

.more__btns {
    display: flex;
    gap: 20px;
}

.more__btn-order {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #252527;
  padding: 26px 55px;
  background-color: #FBD784;
  
  text-align: center;
display: inline-block;
}

.chess {
    overflow-x: auto;
    margin-bottom: 0;
}

.chess__content {
    width: 968px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    margin: auto;
}

.chess__content ul {
    list-style: none;
    padding: 0;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
    text-align: center;
    margin: 0 10px;
}
.more__size-box {
    display: grid;
    grid-template-columns: 30% 60%;
    column-gap: 50px;
}

.more__head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.more__status {
    margin-bottom: 0 !important;
}

@media (max-width: 576px) {
    .more__size-box {
        grid-template-columns: 1fr;
    }
    .more__size:nth-child(3) {
        grid-row: 2 / 3;
    }
}

.chess__content ul li:not(:last-child) {
    margin-bottom: 35px;
}

.chess__title-row {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
}

.chess__house {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin: 0;
}

.chess__section {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

.chess__apart-content {
    margin-top: 25px;
    margin-bottom: 0;
}


.chess__apart-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
}
.chess__apart-row:not(:last-child) {
    margin-bottom: 6px;
}

.chess__apart {
    width: 59px;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    text-transform: uppercase;
    color: #FFFFFF;
    border-radius: 5.5px;
    transition: all 0.2s ease;
}

#scroll-box .chess__apart {
    width: 48px;
    height: 48px;
}


.chess__apart:hover {
    color: #ffffff;
    border: 6.67617px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 9.34664px 32.0456px rgba(50, 62, 93, 0.46);
}


.chess__apart.red {
    background-color: #9B2D30;
}
.chess__apart.red:focus {
    background-color: #ffffff;
    color: #9B2D30;
    border: 6.67617px solid #9B2D30;
}

.chess__apart.green {
    background-color: #3AC070;
}
.chess__apart.green:focus {
    background-color: #ffffff;
    color: #3AC070;
    border: 6.67617px solid #3AC070;
}

.chess__apart.yellow {
    background-color: #FFBA3E;
}
.chess__apart.yellow:focus {
    background-color: #ffffff;
    color: #FFBA3E;
    border: 6.67617px solid #FFBA3E;
}

.chess__apart.blue {
    background-color: #323E5D;
}
.chess__apart.blue:focus {
    background-color: #ffffff;
    color: #323E5D;
    border: 6.67617px solid #323E5D;
}

.more {
    padding-top: 0 !important;
    align-items: flex-start;
}

#scroll-box::-webkit-scrollbar {
    width: 15px;
    height: 10px;
    border-radius: 16px;
    background-color: #F5F5F5;
}

#scroll-box::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #f7f7f7;
    margin-right: 20px;
}

#scroll-box::-webkit-scrollbar-thumb {
    border-radius: 16px;
    background-color: #9B2D30;
}
#scroll-box-2::-webkit-scrollbar {
    width: 15px;
    height: 10px;
    border-radius: 16px;
    background-color: #F5F5F5;
}

#scroll-box-2::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #f7f7f7;
    margin-right: 20px;
}

#scroll-box-2::-webkit-scrollbar-thumb {
    border-radius: 16px;
    background-color: #9B2D30;
}

.more__title {
    font-size: 30px !important;
    margin-bottom: 0 !important;
}

@media (max-width: 1200px) {
    .floor__title {
        text-align: center;
    }

    .more__title {
        padding-left: 20px;
    }

    .chess__inner-2 {
        display: none;
    }
    .toggle {
        display: none;
    }
}

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


@media (max-width: 992px) {
   .floor__status  {
    display: block;
   }
   .chess-container {
    padding-right: 0;
   }
   .floor__status-head {
    display: block;
   }
   .more__img {
    width: 100%;
    text-align: center;
   }
   .more__title {
    padding-left: 0;
   }
   .more__head {
    padding-right: 15px;
   }
}

@media (max-width: 650px) {
    .more__btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .more__btn-order {
        margin-left: 15px;
    }
    .floor__title {
        text-align: center;
        font-weight: 600;
        font-size: 36px;
        line-height: 140%;
        margin-bottom: 5px;
    }
    .floor .floor__hover {
        display: flex;
        justify-content: center;
        font-weight: 600;
        font-size: 16px;
        line-height: 40px;
    }
    .chess__content {
        width: 1100px;
    }
    .more__btn-order {
        margin-left: 0;
    }
    .more__box {
        padding-right: 15px;
        padding-left: 15px !important;
    }
    .more__btn-order {
    
        padding: 17px 20px;
    
        font-size: 18px;
        line-height: 25px;
        letter-spacing: 3px;
        font-weight: 600;
    }
}

@media (max-width: 550px) {
    .more__price {
        display: block;
    }
}

@media (max-width: 450px) {
    .more__head {
        flex-direction: column;
        row-gap: 15px;
    }
}

@media (max-width: 412px) {
    .more__img img {
        width: 100%;
    }
}

@media (max-width: 374px) {
    .floor__title {
        font-size: 30px;
    }
}


/* Toggle bar */


.theme {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.theme input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: none;
}
.theme--text {
    user-select: none;
}

.theme--btn {
    position: relative;
    pointer-events: none;
    width: 37px;
    height: 19px;
    border-radius: 12px;
    background-color: #CECECD;
    transition: background-color 0.2s ease;
}
.theme--btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translate3d(0, -50%, 0);
    transition: transform 0.2s cubic-bezier(0.96, -0.11, 0, 1.12);
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: #fff;
}

.theme--black {
    color: #9B2D30;
}

.theme input:checked ~ .theme--btn {
    background-color: #FFBA3E;
}
.theme input:checked ~ .theme--btn::after {
    transform: translate3d(100%, -50% , 0);
}
.theme input:checked ~ .theme--text.theme--red {
    color: #9B2D30;
}

.toggle__title {
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 5px;
}

.theme--text {
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
}

.chess__inner-1.hidden {
    display: none;
}
.chess__inner-2.hidden {
    display: none;
}


.chess__inner-2-content {
    display: flex;
    justify-content: space-between;
}

.chess-small-row a {
    width: 34px;
    height: 40px;
    font-size: 13px;
    line-height: 16px;
}
.chess-small .chess__content {
    width: 777px;
}

.chess-small .chess__content ul {
    font-size: 13px;
    line-height: 16px;
}

.chess-small .chess__content ul li:not(:last-child) {
    margin-bottom: 30px;
}

.chess-small .chess__section {
    font-size: 13px;
    line-height: 15px;
}

.chess-small .chess__apart-content {
    margin-top: 20px;
    margin-bottom: 20px;
}

.chess-small .chess__title-row {
    row-gap: 5px;
}

.chess-small-right .more {
    display: block;
}

.chess-small-right {
    max-width: 325px;
}
.chess-small-right .more__head {
    display: block;
}
.chess-small-right .more__box {
    background-color: #fff;
    padding: 0;
    margin-bottom: 20px;
}
.chess-small-right .more__size-box {
    display: block;
}
.chess-small-right .more__price {
    display: block;
}
.chess-small-right .more__btns {
    display: block;
}
.chess-small-right .more__btns a {
    display: inline-block;
}
.chess-small-right .more__btns .more__btn-order {
    margin-bottom: 15px;
}
.chess-small-right .more__title {
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 140%;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
}
.chess-small-right .more__price-full {
    margin-bottom: 20px;
}
.chess-small-right .more__size {
    font-size: 13px;
    line-height: 20px;
    padding: 8px 0;
}
@media (max-width: 1200px) {
    .chess__inner-2-content {
        display: block;
    }
}

@media (max-width: 992px) {
    .chess-small {
        overflow-x: auto;
        margin-bottom: 30px;
    }
    .chess-small-right {
        margin:  0 auto;
    }
}

@media (max-width: 768px) {
    .toggle-container {
        margin-bottom: 15px;
    }
    .floor__status-head {
        margin-bottom: 15px;
    }
    .chess__inner-2 .container {
        padding-right: 0;
    }
    .chess-small-right {
        padding-right: 20px;
    }
    .chess-small .chess__content {
        padding-right: 20px;
    }
}


.chess-btnf{
	width: 100% !important;
}

.chess-btnh{
	width: 100% !important;
}

@media (max-width: 768px) {
	.chess-btnh{
		width: 100% !important;
		margin: 0;
	}
}

