
@import url('https://fonts.googleapis.com/css2?family=Share+Tech&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cascadia+Mono:ital,wght@0,200..700;1,200..700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=WDXL+Lubrifont+TC&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Gulzar&family=Katibeh&family=Mirza:wght@400;500;600;700&family=Rakkas&family=Readex+Pro:wght@160..700&display=swap');


* {
    /* outline: 1px solid red; */
    box-sizing: border-box;
}

:root{
    --primary-color: #6a0084;
    --nav-bar-background: #EEEEEE69;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

.col-2p5{
    flex: 0 0 auto;
    width: 20%;
}

.font-rakkas{
    font-family: "Rakkas";
}
.font-pt{
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.font-lelezar{
    font-family: 'Lalezar';
}
.font-tech{
    font-family: 'Share Tech';
}
.font-eulogy{
    font-family: 'Eulogy Demo';
}
.font-bell{
    font-family: "Bell MT";
}
.font-alaq{
    font-family: 'alaq dimashq font';
}
.font-bahij{
    font-family: 'Bahij Helvetica Neue 45';
}

.container{
    display: flex;
    width: 100%; 
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
    color: var(--primary-color);
    font-family: 'Eulogy Demo';
    font-size: 45px;
}

.side-bar-normalized {
    transition: all 0.5s ease-in-out;
    height: 100vh;
    /* Make sidebar a flex column */
    display: flex;
    flex-direction: column;
    position: fixed; /* fix sidebar on left */
    top: 0;
    left: 0;
    background-color: var(--nav-bar-background);
    z-index: 10;
    overflow: hidden;
}

/* Sidebar open state */
.side-bar {
    width: 20%; /* 20% width */
}

/* Sidebar collapsed state */
.side-bar-toggled {
    position: fixed;
    width: 5%; /* narrow */
    background-color: var(--nav-bar-background);
    z-index: 15;
}

/* Sidebar toggle button fixed position */
.side-bar-toggle-btn {
    position: absolute;
    top: 10px;
    right: -16px;
    background-color: var(--primary-color);
    padding: 0;
    margin: 10px;
    color: white;
    font-size: 15px;
    border-radius: 25px;
    height: 30px; /* increased for easier click */
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    z-index: 20;
}

/* Hide texts in toggled state */
.side-bar-toggled .navigation-title,
.side-bar-toggled .nav-item-before,
.side-bar-toggled .nav-item-after,
.side-bar-toggled .logo-part {
    display: none;
}

/* Content area */
.content {
    /* To avoid overlap, give left margin equals sidebar width */
    margin-left: 20%; 
    padding: 1.5rem;
    height: 100vh;
    overflow-y: auto;
    transition: margin-left 0.5s ease-in-out;
    box-sizing: border-box;
}

/* When sidebar collapsed, reduce content margin */
.side-bar-toggled ~ .content {
    margin-left: 5%;
}

/* Navigation items vertical stack */
.items-list, .b-nav-bar-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    margin: 0;
}

/* Navigation item */
.navigation-item {
    font-family: "Share Tech";
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    font-size: 20px;
    white-space: nowrap;
    cursor: pointer;
    justify-content: center;
}

/* Hover and active styles */
.navigation-item.nav-active {
    color: var(--primary-color);
    background-color: white;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

/* Hover without overflow */
.navigation-item:not(.nav-active):hover {
    color: var(--primary-color);
    background-color: white;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

/* Fix overflow caused by pseudo elements - hide by default */
.navigation-item .nav-item-before,
.navigation-item .nav-item-after {
    display: none;
}

/* Show pseudo elements only on active */
.navigation-item.nav-active .nav-item-before,
.navigation-item.nav-active .nav-item-after {
    display: block;
    position: absolute;
    right: 0;
    width: 20px;
    height: 15px;
    background-color: white;
}

/* Add border radius to pseudo elements */
.navigation-item.nav-active .nav-item-before::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 15px;
    background-color: var(--nav-bar-background);
    border-bottom-right-radius: 20px;
}

.navigation-item.nav-active .nav-item-after::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 15px;
    background-color: var(--nav-bar-background);
    border-top-right-radius: 20px;
}


.b-nav-bar-container {
    position: fixed;
    bottom: 10px; /* slight margin from bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 500px;
    z-index: 1000; /* high enough to be above most content */
    pointer-events: auto;
    user-select: none;
    display: flex;
    justify-content: center;
    background-color: transparent; /* no blocking bg */
}

.b-nav-bar-container {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 500px;
    z-index: 1000;
    pointer-events: auto;
    user-select: none;
    display: flex;
    justify-content: center;
    background-color: transparent;
}

.b-nav-bar {
    width: 100%;
    background-color: #F8F9FA;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    font-size: 25px;
    display: flex;
    justify-content: center;
    padding: 12px 0; /* top and bottom padding */
}

.b-nav-bar-items {
    list-style: none;
    margin: 0;
    padding: 0 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.b-nav-bar-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.b-nav-bar-item a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.b-nav-bar-item.special {
    background-color: var(--primary-color);
    border-radius: 25px;
    color: white;
}

.b-nav-bar-item.special a {
    color: white;
}

.b-nav-bar-item.b-active a,
.b-nav-bar-item:not(.special):hover a {
    color: var(--primary-color);
    background-color: white;
    border-radius: 11px;
}

.b-nav-bar-item.b-active {
/* border: 1px solid #00000015; */
    background-color: white;
    border-radius: 20px;
}

/* Add enough padding to content to prevent overlap */
.content-area {
    padding-bottom: 90px; /* increased due to nav bar padding */
}

.logo-container-content .advertising-logo{
    font-family: 'Eulogy Demo';
    font-size: 65px;
    color: var(--primary-color);
}
.logo-container-content .advertising-title{
    font-size: 18px;
}
.banner-card{
    background-color: #F8F9FA;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.search-bar-container{
    padding-block: 10px;
    margin-block: 20px;
    display: flex;
    justify-content: center;
    font-family: 'Share tech' !important;
}

.search-bar{
    border-radius: 15px;
}

.search-button{
    background-color: var(--primary-color);
    color: white;
    height: 48px;
    padding: 0px;
}


.banner-card{
    background-color: #F8F9FA;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

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

.categories{
    height: 10vh;
    width: 16vw;
    background-color: #F8F9FA;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navigation-title, .category {
    word-break: break-word;
}

.category{
    width: calc(15vw / 2);
    text-align: center;
    font-family: 'Eulogy Demo';
}
.category.nav-link.active, .category.nav-link:not(.active):hover{
    background-color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 35px;
    color: white;
    font-weight: bold;
    border: 0px;
}
.navigation-item a{
    text-decoration: none;
    color: black;
}

.navigation-item.nav-1-active a{
    color: var(--primary-color);
}
.navigation-item.nav-1-active, .navigation-item:hover{
    background-color: white;
    color: var(--primary-color);
    margin: 0px 7px;
    border-radius: 12px;
}

.profile-area, .reservation-card, .main-wallet-info, .wallet-transaction-row{
    background-color: #f8f9fa;
}


.prfile-area .table tbody tr {
    border-radius: 10px;
    overflow: hidden;
    display: table;
    width: 100%;
    table-layout: fixed;
}

.prfile-area .table tbody tr:not(:last-child) {
    margin-bottom: 10px;
}

.prfile-area .table tbody {
    display: block;
}

.prfile-area .table thead, .table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.profile-area a{
    text-decoration: none;
    color: black;
}

.profile-area .active-tab a,.profile-area .p-tab:hover a{
    color: var(--primary-color);
}

.profile-area .active-tab ,.profile-area .p-tab:hover{
    background-color: white;
    border-radius: 9px;
}
.prfile-area .table {
    border-collapse: separate;
    border-spacing: 0 10px;
}
.reservation-id-badge{
    background-color: #dfd6ff87;
    padding: 7px;
    font-size: 13px;
    border-radius: 7px;
    color: #0000ffa8;
}
.payment-status-badge.success, .booking-status-badge.active, .booking-status-badge.completed{
    background-color: #EDF9F7;
    color: #1AB397;
    padding: 4px 16px;
    border-radius: 5px;
}

.booking-status-badge.reviewed{
    color: #ffffff;
    background-color: #80006a7a;
    padding: 4px 16px;
    border-radius: 5px;
}

.booking-status-badge.pending{
    color: #ffa500;
    background-color: #fff79db4;
    padding: 4px 16px;
    border-radius: 5px; 
}

.payment-status-badge.fail, .booking-status-badge.canceled{
    color: #FF0707;
    background-color: #FF07071A;
    padding: 4px 16px;
    border-radius: 5px;
}

.main-wallet-info, .wallet-transaction-row{
    border-radius: 10px;
}
.gray-area{
    background-color: #dfd6ff87;
    border-radius: 15px;
}




.zn_category_toggle {
  position: relative;
  display: flex; 
  align-items: center; 
  justify-content: center;  
  margin: 0 auto;
  width: 28%;
  height: 60px;
  outline: 0;
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid #F8F9FA; 
  background-color: white; 
  transition: all 500ms ease-in-out; 
  overflow: hidden; 
  padding: 0 10px; 
}

.zn_toggle_knob { 
  display: flex; 
  justify-content: center;
  align-items: center;
  position: absolute; 
  top: 4px;
  bottom: 4px;
  left: 4px; 
  width: calc(50% - 4px); 
  text-transform: uppercase;
  font-size: 20px;
  color: white; 
  background-color: #6a0084; 
  border: 2px solid #6a0084; 
  border-radius: 5px 50px 50px 5px; 
  transition: all 500ms ease-in-out; 
  z-index: 1; 
}


.zn_toggle_label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem; 
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none; 
  transition: color 300ms ease-in-out, opacity 300ms ease-in-out;
  color: #263238; 
  opacity: 1;
  z-index: 0; 
}

.zn_toggle_label--on {
  left: 45px; 
}

.zn_toggle_label--off {
  right: 55px; 
}

.zn_category_toggle--on .zn_toggle_label--on {
  color: lighten(#263238, 20%); 
  opacity: 0.7;
}

.zn_category_toggle--on .zn_toggle_label--off {
  color: #263238; 
  opacity: 1;
}


.zn_category_toggle--off .zn_toggle_label--on {
  color: #263238; 
  opacity: 1;
}

.zn_category_toggle--off .zn_toggle_label--off {
  color: lighten(#263238, 20%); 
  opacity: 0.7;
}



.zn_category_toggle:active {
  background-color: darken(white, 5%); 
  border-color: darken(#F8F9FA, 10%); 
}


.zn_category_toggle:hover:not(.zn_category_toggle--moving) > .zn_toggle_knob { 
  background-color: lighten(#6a0084, 15%); 
  border-color: lighten(#6a0084, 15%); 
}


.zn_category_toggle--on > .zn_toggle_knob { 
  border-radius: 50px 5px 5px 50px; 
  transform: translate(0, 0); 
  background-color: #6a0084; 
  border-color: #6a0084; 
}


.zn_category_toggle--off > .zn_toggle_knob { 
  border-radius: 5px 50px 50px 5px; 
  transform: translate(100%, 0); 
  background-color: #6a0084; 
  border-color: #6a0084; 
}


.zn_category_toggle--moving {
  background-color: darken(white, 5%); 
  border-color: darken(#F8F9FA, 10%);
}

.zn_category_toggle--moving > .zn_toggle_knob { 
  color: transparent; 
  background-color: darken(#6a0084, 10%); 
  border-color: darken(#6a0084, 10%); 
  transition: color 0s,
              transform 500ms ease-in-out,
              border-radius 500ms ease-in-out,
              background-color 500ms ease-in-out,
              border-color 500ms ease-in-out;
}



/* Provider page */
.breadcrumb {
  color: #555;
}
.breadcrumb a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}
.breadcrumb a:hover {
  color: black;
}
.breadcrumb .title {
  color: black;
}



.provider-opened{
    color: rgb(0, 225, 0);
}

.provider-closed{
    color: orangered;
}

.service-details {
  background-color: #1918182c;
}


.dot-weekday, .dot-weekend {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 6px;
}

.dot-weekday{
    background-color: limegreen;
}

.dot-weekend{
    background-color: orange;
}



.provider-tags{
  margin-bottom: 14px;
}
.provider-tag{
    padding: 8px 17px;
    border-radius: 8px;
    font-size: 12px;
    margin-left: 5px;
    font-weight: bold;
}
.tag-primary{
  background-color: #e9e9ff;
  color: #4a4acf;
}

.tag-success{
  background-color: #d6f5d6;
  color: #2e7d32;
}

.service-tab{
    padding: 8px 20px;
    border-radius: 25px;
}
.service-tab.tab-active,
.service-tab:not(.tab-active):hover{
    background: var(--nav-bar-background);
    color: var(--primary-color);
    cursor: pointer;
}

.service-tab-item{
  border-radius: 10px;
  border: 1px solid #c5c5c52d;
  cursor: pointer;
  background-color: #F8F9FA;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.service-tab-item:hover{
    background-color: #f5f5f5;
}

.service-tab-item-info-duration{
    color: #9c9c9c;
}

.service-add-button{
    border-radius: 8px;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.452);
}

.service-item-selected,
.professional-card:hover,
.professional-card-selected{
    border: 1px solid #6a0084d1;
}

.service-add-button:hover,
.service-item-selected > .service-tab-item-booking button{
    background-color: #6a0084d1;
    color: white;
}


.professional-card:hover,
.professional-card-selected{
    cursor: pointer;
}

.sticky-panel {
  position: sticky;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sticky-panel .score {
  color: #000;
  font-size: 14px;
}

.sticky-panel .reviews {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.sticky-panel .book-btn {
  width: 100%;
  background-color: var(--primary-color-opacity-6);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 15px;
}

.team-area-content .team-members {
  gap: 40px;
  flex-wrap: wrap;
}

.team-area-content .member {
  position: relative;
  text-align: center;
}

.team-area-content .circle,
.team-area-content .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  margin: auto;
  cursor: pointer;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.team-area-content .circle {
  background-color: #f0eeff;
  color: var(--primary-color);
}
.team-area-content .circle:hover {
  background: var(--primary-color-opacity-2);
  color: white;
}

.team-area-content .avatar {
  object-fit: cover;
}

.team-area-content .rating {
  position: absolute;
  top: 70px;
  right: -10px;
  background-color: white;
  padding: 3px 7px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.team-area-content .name {
  margin-top: 10px;
  font-size: 16px;
}

.service-tab-content{
    transition: all 0.5s;
}

.book-btn{
  width: 100%;
  background-color: var(--primary-color-opacity-6);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: all 0.5s;
}

.book-btn:disabled{
    background-color: #6a00844d;
}



.calendar-day-card {
    padding: 10px;
    margin-right: 10px;
    max-height: 75px;
    height: 75px;
    border-radius: 15px;
    width: 70px; /* Set a consistent width */
    flex-shrink: 0; /* Prevent cards from shrinking */
    display: flex;
    flex-direction: column; /* Stack text vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    background-color: white; /* Ensure consistent background */
    overflow: hidden; /* Hide any overflow */
    text-align: center; /* Center text */
    box-sizing: border-box; /* Include padding in width/height */
}

.calendar-day-card.calendar-day-off,
.calendar-day-slot.calendat-slot-off{
    background-color: #eee;
}

.calendar-day-slot{
    padding: 1rem;
    background: white;
    border-radius: 11px;
    margin-block: 5px;
    font-weight: bold;
    border: 1px solid #00000015;
}


.calendar-day-slot.calendar-day-slot-selected,
.calendar-day-card.calendar-day-card-selected,
.payment-method-selected{
    border: 1px solid var(--primary-color);
}

.carousel-wrapper {
    position: relative; /* Ensure the wrapper remains in the document flow */
    width: 100%; /* Use full width of its parent */
    overflow-x: hidden; /* Only hides horizontal overflow */
    padding: 0 15px; /* Add padding to prevent content clipping */
    box-sizing: border-box; /* Ensure padding is included in width */
}

#calendar-day-carousel {
    display: flex; /* Ensure items are arranged horizontally */
    flex-wrap: nowrap; /* Prevent items from wrapping */
    gap: 10px; /* Add consistent spacing between items */
    width: auto; /* Let the carousel size itself based on its contents */
}




.review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.review-item{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-top{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background-color: #eee6ff;
  color: #6633cc;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-reply .review-avatar {
  width: 50px;
  height: 50px;
  background-color: #c9c9c9;
  color: #6633cc;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-info strong {
  color: #000;
}

.review-info .review-date {
  color: #666;
}

.review-stars {
  color: var(--primary-color);
}

.review-text {
  color: #333;
  line-height: 1.4;
}

.w-40{
    width: 40% !important;
    max-width: 450px; /* Added max-width for consistency and responsiveness */
    border-radius: 1rem; /* Added for overall form container rounded corners */
}


.form-control.flatpickr-input{
    border-radius: 0px !important;
}


.coupon-button{
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    background-color: var(--primary-color);
    box-shadow: none;
}

.coupon-input{
    border: 1px solid #e9e9e9;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    outline: 0px;
    box-shadow: none;
}

.coupon-input:focus,.coupon-button:focus{
    outline: 0px;
    box-shadow: none;
}


.coupon-card-title{
    width: 20%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-right: 2px dashed white;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: sideways-lr;
    position: relative;
    background-color: rgb(118 0 128);
}

.coupon-circle-1, .coupon-circle-2{
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 15px;
    background-color: white;
}

.coupon-circle-1{
    top: -7px;
    right: -8px;
}
.coupon-circle-2{
    bottom: -7px;
    right: -8px;
}

.coupon-card-content{
    width: 80%;
    background-color: #82007cde;
    color:white;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.coupon-provider{
    font-size: 12px;
}


.reviews-area-content .reviews .review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-area-content .reviews .review-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 16px;
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews-area-content .reviews .review-top {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.reviews-area-content .reviews .avatar {
  width: 50px;
  height: 50px;
  background-color: #eee6ff;
  color: #6633cc;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews-area-content .reviews .info {
  display: flex;
  flex-direction: column;
}

.reviews-area-content .reviews .info strong {
  font-size: 15px;
  color: #000;
}

.reviews-area-content .reviews .info .date {
  font-size: 13px;
  color: #666;
}

.reviews-area-content .reviews .stars {
  font-size: 15px;
  color: var(--primary-color);
}

.reviews-area-content .reviews .review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.about-area-content {
  margin-top: 40px;
}
.about-area-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.about-area-content .map-image {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.about-area-content .map-image:hover {
  transform: scale(1.02);
}

.opening-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
  max-width: 900px;
  margin: 30px auto;
}
.opening-info h2 {
  font-size: 25px;
  margin-bottom: 20px;
}
.opening-info .left {
  flex: 0 0 auto; 
  min-width: 300px;
}

.opening-info table{
  padding: 0;
  margin: 0;
  font-size: 20px;
}

.opening-info td{
  padding: 5px;
}

.opening-info .time {
  font-size: 18px;
  color: #333;
}

.opening-info .bold {
  font-weight: bold;
}

.opening-info .check {
  color: black;
  margin-right: 5px;
}


@media (max-width: 768px) {
    .side-bar-normalized {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--nav-bar-background);
        z-index: 20;
    }
    .reviews-area-content .reviews .review-item {
        flex: 1 1 100%;
    }

    .side-bar-open{
        left: 0;
    }

    .b-nav-bar-container{
        width: 100%; 
    }
    .b-nav-bar{
        width: 95%;
    }
    .logo-container-content .advertising-logo{
        font-size: 50px;
    }
    .logo-container-content .advertising-title{
        font-size: 13px;
    }
    .search-bar{
        justify-content: center;
    }
    .categories{
        height: 8vh;
        width: 60vw;
    }
    .category{
        width: calc(56vw / 2);
    }

    .col-2p5{
        flex: 0 0 auto;
        width: 95%;
    }
    .zn_category_toggle{
        width: 100%;
    }
    .w-40{
        width: 90% !important;
    }
    .content{
        margin: 0px !important;
    }

    .zn_toggle_label--off{
        right: 53px;
    }
    .zn_toggle_label--on{
        right: 47px;
    }
    .btn.search-button{
      height: 50px;
    }
}