.orders-tabs {
    gap: 10px;
    margin-top: 15px;
}
.order-tab {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    background: #dbdbdb;
    border-radius: 10px;
}
.order-tab.tab-active {
    background: var(--theme-color);
    color: #fff;
}
.order-content {
    margin-top: 20px;
}
.order-product:not(:last-child) {
    margin-bottom: 15px;
}
.order-product {
    gap: 12px;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
}
.order-product-img {
    width: 25%;
    aspect-ratio: 1;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex: 0;
    flex-shrink: 0;
}
.order-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.order-product-info {
    position: relative;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex: 1;
    flex-grow: 1;
}
.order-product-title {
    color: var(--theme-color);
    text-decoration: none;
}
.order-product-remove {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    background-image: url(../images/icons/trash.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.order-product-actions {    
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
}
.order-total {
    position: relative;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.order-hidden-fields {
    position: absolute;
    width: 0px;
    height: 0px;
    overflow: hidden;
}
.order-total-info {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.order-total-item {
    position: relative;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.order-total-item:not(:last-child) {
    margin-bottom: 8px;
}
.order-total-item:after {
    content: '';
    border-bottom: 1px dotted #dbdbdb;
    height: 1px;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    z-index: 1;
}
.order-total-item > div {
    position: relative;
    background: var(--bg-color);
    z-index: 2;
}
.order-total-item > div:first-child {
    color: var(--alter-color);
    padding-right: 5px;
}
.order-total-item > div:last-child {
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex: 0;
    flex-shrink: 0;
    padding-left: 5px;
    font-size: 18px;
    font-weight: 600;
}
.order-total .field-item {
    margin-bottom: 10px;
    pointer-events: none;
}
.incart-container {
    line-height: 1;
}
.incart-wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.incart-btn {
    width: 20px;
    height: 20px;
    background-color: var(--theme-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    border-radius: 50%;
    border: none;
    padding: 0;
}
.incart-btn.btn-minus {
    background-image: url(../images/icons/minus.svg);
}
.incart-btn.btn-plus {
    background-image: url(../images/icons/plus.svg);
}
.incart-count {
    width: 30px;
    text-align: center;
    border: none;
    padding: 0;
}
.about-img {
    height: 280px;
    margin-bottom: 15px;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.content-gallery-wrap {
    margin-top: 20px;
}
.content-gallery-wrap .section-title {
    margin-bottom: 10px;
}
.gal-slider {
    height: 340px;
}
.gal-slider .gal-slide {
    width: 100%;
    height: 100%;
}
.gal-slider .gal-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    opacity: 0.6;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
.page-nocontent {
    padding: 10px;
    background: #dbdbdb;
    text-align: center;
    border-radius: 10px;
}
.serv-wrap > .inner-title {
    margin-bottom: 15px;
    text-align: center;
}
.serv-slide {
    display: block;
    height: 220px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    filter: blur(2px);
}
.serv-slide.swiper-slide-active {
    filter: none;
}
.serv-slide-img {
    height: 160px;
}
.serv-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.serv-slide-info {
    display: none;
}
.serv-label {
    display: block;
    height: 100%;
}
.serv-label > input {
    display: none;
}
.serv-slide-content {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s linear;
}
.serv-slide.swiper-slide-active .serv-slide-content {
    border-color: var(--theme-color);
}
.serv-slide-name {
    background: #fff;
    padding: 10px;
    flex-grow: 1;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
}
.serv-list .swiper-pagination {
    position: static;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}
.serv-list .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--theme-color);
    opacity: 0.6;    
}
.serv-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;   
}
.serv-more {
    margin-top: 20px;
}
.serv-content {
    margin-bottom: 15px;
}
.serv-content p:first-child {
    margin-top: 0;
}
.serv-content p:last-child {
    margin-bottom: 0;
}
.serv-more .field-block {
    margin-bottom: 15px;
}
.serv-more .field-block textarea {
    height: 80px;
}
.map-filters {
    flex-wrap: wrap;
    gap: 20px;
}
.map-filter-item {
    width: 100%;
}
.map-filter-current {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    width: fit-content;    
    color: var(--theme-color);
    border-bottom: 1px dashed var(--theme-color);
    transition: 0.3s ease;
}
.map-filter-current:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icons/arrow-up.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(180deg);
    flex-shrink: 0;
    transition: 0.3s ease;
}
.map-filter-current > span {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.map-filter-current.opened:after {
    transform: none;
}
.map-filter-dropdown {
    display: none;
}
.map-filter-values {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    background: #dbdbdb;
    border-radius: 10px;
    padding: 10px;
}
.map-filter-value {
    font-weight: 300;
    line-height: 1.3;
}
.map-filter-value.selected:not(.map-filter-object) {
    color: var(--theme-color);
    border-bottom: 1px dashed var(--theme-color);
}
.map-filter-value.map-filter-object {
    width: calc((100% - 20px) / 2);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
.obj-icon {
    flex-shrink: 0;
    width: 20px;
}
.obj-icon svg {
    display: block;
}
.map-filter-value.map-filter-object.selected {
    color: var(--theme-color);
}
.map-filter-value.map-filter-object.selected .obj-icon svg * {
    fill: var(--theme-color);
}
.obj-icon svg * {
    fill: var(--text-color);
}
.obj-icon svg * {
    fill: var(--text-color);
}
.obj-icon svg circle {
    fill: none;
}
.show-room-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    line-height: 1;
}
.show-room-btn > input {
    display: none;
}
.show-room-icon {
    width: 20px;
    height: 20px;
}
.show-room-icon svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.show-room-btn > input:checked + .show-room-icon svg * {
    fill: var(--theme-color);
}
.show-room-btn > input:checked ~ span {
    color: var(--theme-color);
}
.map-wrap {
    position: relative;
    margin-top: 20px;
    border: 1px solid var(--alter-color);
    border-radius: 10px;
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.map-viewer {
    width: 100%;
    height: 100%;
    overflow: auto;
}
.map-viewer::-webkit-scrollbar {
    display: none;
}
.map-viewer svg {
    display: block;
    transition: 0.3s ease;
}
.map-actions {
    position: absolute;
    z-index: 3;
    bottom: 10px;
    left: 10px;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    flex-direction: column;
    gap: 6px;
}
.map-btn {
    border: none;
    background: var(--bg-color);
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    opacity: 0.8;
    border-radius: 6px;
}
.map-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-btn.disabled {
    opacity: 0.2;
    pointer-events: none;
}
.map-item.fill-self.shown {
    fill: var(--theme-color);
}
.map-item.fill-child.shown * {
    fill: var(--theme-color);
}
.map-room.shown {
    fill: #99dd3f;
}