/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* import files */
@import url("../css/auth.css");

@font-face {
  font-family:'Knicknack';
  src: url('../font/Knicknack-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-00FE;
}

@font-face {
  font-family:'Knicknack';
  src: url('../font/Knicknack-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-00FE;
}
@font-face {
  font-family:'Knicknack Medium';
  src: url('../font/Knicknack-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-00FE;
}
@font-face {
  font-family:'Knicknack Heavy';
  src: url('../font/Knicknack-Heavy.woff') format('woff');
  font-weight: 950;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-00FE;
}
@font-face {
  font-family:'Knicknack Black';
  src: url('../font/Knicknack-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-00FE;
}
html {
  scroll-behavior: smooth;
}
body{
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #19204C;
}
a:hover{
  color: #009eff;
}
a, a:hover{
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
/* admin flow */
#wrapper {
    display: flex;
}
#sidebar-wrapper {
    min-height: 100vh;
    transition: margin 0.25s ease-out;
    background: linear-gradient(180deg, #01A5BF 0%, #014481 100%);
    max-width: 270px;
    width: 100%;
    transform: translateX(0px);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.sidebar-brand{
    display: block;
    text-align: center;
    padding: 0;
    background: #fff;
    margin: 0 auto;
}
.sidebar-brand img{
    height: 90px;
    object-fit: contain;
}
#sidebar-wrapper .list-menu{
    padding: 20px 10px;
    position: relative;
}
#sidebar-wrapper .list-menu > a{
    padding: 15px 20px;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #E9E9E9;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    text-decoration: none;
    border: none;
    margin-bottom: 10px;
}
#sidebar-wrapper .list-menu > a span{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
}
#sidebar-wrapper .list-menu > a:hover, #sidebar-wrapper .list-menu > a.active{
    background: #FFFFFF;
    color: #19204C;
    font-weight: 700;
}
#sidebar-wrapper .list-menu > a:hover svg path, #sidebar-wrapper .list-menu > a.active svg path{
    fill: #19204C;
    stroke: transparent;
}
.bottom_menu{
    padding: 0 0 20px;
}
.bottom_menu button{
    display: flex;
    align-items: center;
    gap: 14px;
    color: #FF6969;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 16px;
    background: transparent;
    border: none;
    padding: 20px 10px;
}
.bottom_menu button:hover{
    color: #FFF;
    font-weight: 700;
}
.bottom_menu button:hover svg path{
    stroke: #FFF;
}
#page-content-wrapper {
    width: 100%;
    margin-left: 270px;
    padding-bottom: 0px;
    transition: margin 0.25s ease-out;
}
.sidenav-toggled #page-content-wrapper {
    margin-left: 0;
    transition: margin 0.25s ease-out;
}
.sidenav-toggled #sidebar-wrapper {
    transform: translateX(-270px);
    transition: margin 0.25s ease-out;
}
#page-content-wrapper .navbar{
    background: #fff;
    height: auto;
    display: flex;
    align-items: center;
    padding: 23px 30px 23px 5px;
    border-bottom: 1px solid #CDDAEB;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 0 0 270px;
    z-index: 1;
}
.sidenav-toggled #page-content-wrapper .navbar {
    margin: 0;
}
#sidebarToggle {
    background: transparent;
    display: inline-block;
    border: 1px solid #19204C1A;
    border-radius: 8px;
    padding: 2px 8px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    gap: 5px;
}
#sidebarToggle span {
    width: 21px;
    height: 2px;
    background: #19204C;
    border-radius: 3px;
    display: block;
}
#sidebarToggle span:nth-child(2) {
    width: 14px;
}
.navbarmenu{
    display: flex;
    align-items: center;
    gap: 23px;
}
.add-restrnt-btn{
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #FFF;
    background: #FF4500;
    border: 1px solid #FF4500;
    border-radius: 29px;
    padding: 11px 20px;
}
.add-restrnt-btn:hover{
    color: #FF4500;
    background: transparent;
}
.add-restrnt-btn:hover svg path{
    stroke: #FF4500;
}
.profile-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid #19204C1A;
    border-radius: 29px;
    padding: 6px 15px 6px 6px;
}
.profile-btn:hover{
    border: 1px solid #FF4500;
}
.profile-btn div{
    display: flex;
    align-items: center;
    gap: 12px;
}
.profile-btn div img{
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #19204C1A;
    padding: 1px;
}
.profile-btn span{
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.03em;
    color: #19204C;
}
#content_container{
    margin: 90px 0 0;
    padding: 30px 30px 20px;
    position: relative;
}
/* My Restaurants */
.rstrnt-list-box{
    background: #FFFFFF;
    border: 1px solid #19204C33;
    border-radius: 20px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.rstrnt-nm{
    display: flex;
    align-items: center;
    gap: 20px;
}
.rstrnt-nm img{
    border-radius: 10px;
    object-fit: cover;
}
.rstrnt-nm h3, .rstrnt-nm a{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #19204C;
    margin-bottom: 0;
    display: block;
}
.rstrnt-edit-btn{
    display: flex;
    align-items: center;
    gap: 22px;
}
.rstrnt-edit-btn button, .rstrnt-edit-btn a{
    background: transparent;
    border: none;
}
.rstrnt-edit-btn button:hover svg path, .rstrnt-edit-btn a:hover svg path{
    stroke: #FF4500;
}
/* modal */
.admin-modal .modal-content{
    background: #FFFFFF;
    border-radius: 28px;
}
.admin-modal .modal-body{
    padding: 30px;
}
.delete-area{
    text-align: center;
}
.delete-area img{
    object-fit: contain;
    margin-bottom: 30px;
}
.delete-area h4{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 24px;
    color: #19204C;
}
.modal-btn-grp{
    display: flex;
    align-items: center;
    gap: 25px;
}
.modal-btn-grp button{
    display: inline-block;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #FFF;
    width: 100%;
    border-radius: 12px;
    padding: 12px 30px;
}
.orng-btn{
    background: #FF4500;
    border: 1px solid #FF4500;
}
.blue-btn{
    background: #19204C;
    border: 1px solid #19204C;
}
.orng-btn:hover{
    background: transparent;
    color: #FF4500;
}
.blue-btn:hover{
    background: transparent;
    color: #19204C;
}
/* ------------ add New Resaturant ------------ */
.add-restaurant-blog h1{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
}
.form-area{
    border: 1px solid #19204C33;
    border-radius: 20px;
    padding: 20px;
}
.form-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.form-title h2{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    color: #01A1BD;
}
.add-location{
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #19204C;
    transition: all .5s ease-in-out;
}
.add-location:hover{
    color: #FF4500;
}
.add-location:hover svg path{
    stroke: #FF4500;
}
.add-restaurant-blog .login-form h5{
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #19204C;
    margin-bottom: 14px;
}
/* admin footer */
.admin-footer{
    border: 1px solid #19204C33;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    margin: 20px 0 0;
    position: fixed;
    bottom: 0;
    width: calc(100% - 270px);
}
.admin-footer p{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(25, 32, 76, 0.6);
    margin-bottom: 0;
}
/* ------------ Restaurant Details --------------------- */
.restrnt-details-blog h1, .edit-restrnt-blog h1{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.02em;
    color: #19204C;
    margin-bottom: 30px;
}
.restrnt-dtls-bx, .edit-rstrnt-box{
    border: 1px solid #19204C33;
    padding: 20px;
    position: relative;
    border-radius: 14px;
}
.quick-rstrnt-dtls{
    display: flex;
    align-items: center;
    gap: 14px;
}
.quick-rstrnt-rvw{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(25, 32, 76, 0.12);
}
.wd-brdr-botm{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(25, 32, 76, 0.12);
}
.rstrnt-img img{
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 14px;
    object-fit: cover;
}
.rstrnt-dtls-txt h2{
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: #19204C;
    margin-bottom: 12px;
}
.rstrnt-dtls-txt p{
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: rgba(25, 32, 76, 0.5);
    margin-bottom: 12px;
}
.rstrnt-dtls-txt p:last-child{
    margin-bottom: 0;
}
.rstrnt-rvw{
    display: flex;
    align-items: center;
    gap: 10px;
}
.wd-rvw-star{
    display: flex;
    align-items: center;
    gap: 3px;
}
.rstrnt-rvw span{
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #19204C;
    margin: 0;
}
.special-bx{
    border: 1px solid #19204C1A;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    width: 100%;
}
.wd-specl-restrnt img{
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 10px;
}
.specl-restrnt-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.specl-rstrnt-dtls{
    width: 100%;
}
.spcl-restrnt-title h3{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: #19204C;
    margin-bottom: 0px;
}
.spcl-restrnt-title span{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #01A1BD;
}
.spcl-discount p{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #01A1BD;
    margin-bottom: 0;
}
.spcl-discount p strike{
    font-weight: 600;
    color: rgba(25, 32, 76, 0.4);
}
.spcl-rstrnt-txt p{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: rgba(25, 32, 76, 0.7);
    display: inline;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    margin-bottom: 0;
}
.restrnt-time-dtls{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(25, 32, 76, 0.12);  
}
.restrnt-time-dtls .accordion-button{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    color: #01A1BD; 
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
}
.spcl-rstrnt-txt a{
    font-weight: 700;
    color: #19204C;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    display: inline-block;
}
.spcl-rstrnt-txt a:hover{
    color: #01A1BD;
}
.restrnt-time-list{
  margin: 0;
  padding: 0;
  list-style: none;
}
.restrnt-time-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.restrnt-time-list li h4{
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #19204C;
  margin-bottom: 0;
}
.restrnt-time-list li span{
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: rgba(25, 32, 76, 0.6);
}
.accordion-button .accord-arrow svg {
  transition: transform 0.3s ease;
}

/* Rotate arrow when expanded */
.accordion-button[aria-expanded="true"] .accord-arrow svg {
  transform: rotate(180deg);
}
/* special restaurants details modal */
.specl-restrnt-img img{
    border-radius: 20px;
    /* height: 188px; */
    object-fit: cover;
    margin-bottom: 16px;
    width: 100%;
}
.restrnt-modal-txt p{
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: rgba(25, 32, 76, 0.7);
    margin-bottom: 20px;
}
.special-restrnts-modal .spcl-restrnt-title h3, .special-restrnts-modal .spcl-discount p{font-size: 20px;}
.special-restrnts-modal .spcl-restrnt-title span{font-size: 18px;}
.admin-modal .modal-header{
    padding: 20px 20px 0;
    border-bottom: 0;
    justify-content: center;
}
.admin-modal .modal-title{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #19204C;
    margin-bottom: 0;
}
.btn-close{
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px 20px 0 0;
    background: transparent;
    border: none;
    padding: 0;
}
@media (min-width: 1025px) {
    #editItem .modal-dialog, #addItem .modal-dialog{
        max-width: 1012px;
    }
}
/* Edit item image */
.avatar-upload {
  position: relative;
  max-width: 110px;
  margin: 0 auto 35px;
}
.avatar-upload .avatar-edit {
    position: absolute;
    left: 50%;
    z-index: 1;
    bottom: 0;
    transform: translate(-50%, 50%);
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  width: 36px;
  height:36px;
  margin-bottom: 0;
  border-radius: 100%;
  background: linear-gradient(180deg, #01A5BF 0%, #014481 100%);
  border: 3px solid #FAFAFA;
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-upload .avatar-preview {
  width: 110px;
  height: 110px;
  position: relative;
  border-radius: 14px;
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* ----------------- my profile --------------- */
.profile-sidemenu{
    background: #FFFFFF;
    border: 1px solid #19204C33;
    border-radius: 18px;
    padding: 28px 16px;
    height: 100%;
}
.profile-sidemenu ul li{
    margin-bottom: 6px;
}
.profile-sidemenu ul li a{
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #19204C;
    padding: 12px 20px;
    display: block;
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease-in;
    white-space: nowrap;
}
.profile-sidemenu ul li.active a,
.profile-sidemenu ul li a:hover{
    background: linear-gradient(180deg, #01A5BF 0%, #014481 100%);
    color: #FFF;
}
.profile-details{
    background: #FFFFFF;
    border: 1px solid #E3EDF0;
    padding: 20px;
    border-radius: 18px;
}
.my-profile-area{position: relative;}
.my-profile-bg{
    background: rgba(1, 161, 189, 0.06);
    height: 160px;
    border-radius: 18px;
}
.profile-details .avatar-upload .avatar-preview{
    border: 3px solid #014481;
    border-radius: 50%;
}
.profile-details .avatar-upload .avatar-preview > div{
    border-radius: 50%;
}
.profile-details .avatar-upload .avatar-edit{
    position: absolute;
    left: 80%;
    z-index: 1;
    bottom: 0;
    transform: translate(-50%, 30%);
}
.profile-img{
    margin: -54px auto 20px;
    text-align: center;
}
.profile-img img{
    width: 108px;
    height: 108px;
    border-radius: 50%;
    border: 3px solid #014481;
}
.edit-profile-btn{
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    background: #FF4500;
    border: 1px solid #FF4500;
    border-radius: 14px;
    padding: 12px 24px;
    width: fit-content;
    margin: 60px auto;
}
.my-profile-area{
    text-align: center;
}
.edit-profile-btn:hover{
    background: transparent;
    color: #FF4500;
}
.edit-profile-btn:hover svg path{
    stroke: #FF4500;
}
.modal-open .modal{padding-right: 0;}
.my-profile-area h3{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: #19204C;
    margin-bottom: 8px;
}
.my-profile-area p{
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: rgba(25, 32, 76, 0.7);
    margin-bottom: 0;
}