   /* Basics define */
  :root {
    --primary: #00BDA3;
    --secondary: #212529;
    --light: #F8F8F6;
    --grey: #7F7F7F;
  }
  /* Carter one */
  @font-face {
    font-family: 'Carter One';
    src: url('../fonts/CarterOne.woff2') format('woff2'),
        url('../fonts/CarterOne.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  /* Mulish */
  @font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Bold.eot');
    src: url('../fonts/Mulish-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mulish-Bold.woff2') format('woff2'),
        url('../fonts/Mulish-Bold.woff') format('woff'),
        url('../fonts/Mulish-Bold.svg#Mulish-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Medium.eot');
    src: url('../fonts/Mulish-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mulish-Medium.woff2') format('woff2'),
        url('../fonts/Mulish-Medium.woff') format('woff'),
        url('../fonts/Mulish-Medium.svg#Mulish-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Regular.eot');
    src: url('../fonts/Mulish-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mulish-Regular.woff2') format('woff2'),
        url('../fonts/Mulish-Regular.woff') format('woff'),
        url('../fonts/Mulish-Regular.svg#Mulish-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }


  /* Website scroll */
  /* width */
  ::-webkit-scrollbar {
    width: 8px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    cursor: pointer;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--secondary);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #036e60;
  }

  /* Website scroll */
  html, body{
    font-family: 'Mulish', sans-serif;
    background: #f5f5f5;
    overflow-x: hidden;
  }

  body{
    display: flex;
    flex-direction: column;
  }


  a, a:hover{
    color: var(--primary);
    text-decoration: none;
  }
  p{
    font-size: 16px;
    line-height: 135%;
  }
  div:empty:not(.modal-backdrop), p:empty, label:empty, section:empty{
    display: none;
  }
  ::placeholder{
    font-size: 14px;
  }
  :focus{
    box-shadow: none !important;
    border-color: none;
  }
  button:focus {
    outline: none !important;
  }
  img{
    max-width: 100%;
  }
  h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{
    font-weight: 700;
    /* font-weight: 400; */
    color: var(--secondary);
    /* font-family: 'Carter One'; */
    font-family: 'Mulish';
  }
  .font-weight-bold{
    font-weight: 400 !important;
  }
  .fs-14{
    font-size: 14px;
    line-height: 120%;
  }
  label{
    color: #9a9a9a;
    font-size: 15px;
    margin-bottom: 0.4rem;
  }
  .badge-info {
    background-color: rgb(23 162 184 / 10%);
    color: #17a2b8;
  }
  /* .badge-dark {
    background-color: rgb(33 37 41 / 10%);
    color: #212529;
  } */
  .form-control:not(.form-control-sm) {
    min-height: 42px;
    color: #212529;
  }
  .form-control:not(textarea) {
    text-transform: capitalize;
  }
  .form-control[type="password"], .form-control[type="email"], .form-control[name="email"], .form-control[type="date"] {
    text-transform: none;
  }
  button.close {
    width: 24px;
    text-align: right;
  }
  .close:hover, .close:focus {
    outline: none;
  }
  .custom-control-input {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
  }
  ::placeholder{
    font-size: 15px;
    font-style: italic; 
    opacity: 0.5;
  }
  .btn:not(.btn-sm){
    min-height:42px;
    align-items: center;
  }
  .mapView_wrapper .view-map {
    min-height: 50px !important;
    display: flex;
    justify-content: center;
  }
  input[type="radio"], input[type="checkbox"] {
    cursor: pointer;
  }
  .form-control:focus {
    border-color: #2abda2;
  }
  .mx-w-100 {
    max-width: 100% !important;
  }
  button.swal2-confirm{
    background-color: #00BDA3 !important;
    font-size: 16px;
    border-color: #00BDA3 !important;
  }
  html.swal2-shown, body.swal2-shown {
    overflow: hidden;
  }
  .modal-open .modal {
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .modal-open .modal::-webkit-scrollbar{
    display: none;
  }
  .btn, button{
    font-family: 'Mulish', sans-serif;
  }
  /* Header starts */
  header{
    background-image: url('../images/header_bg.png');
    padding: 15px 0 ;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1001;
    width: 100%;
  }
  /*header.sticky-header{
    animation: smoothHeader 0.8s alternate;
    -webkit-animation: smoothHeader 0.8s alternate;
  }*/
  /* header.sticky-header .bottom-header, .homepage .bottom-header{
    display: none;
  } */
  body.homepage .navbar-toggler {
      display: none;
  }

  /* Logo Css */
  /*.logo-wrapper {
    padding: 0;
  }*/
  img.logo {
    max-height: 50px;
  }
  .kushSearch-wrapper {
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: end; 
  }
  .kushSearch-wrapper .mainSearch {
    width: 100%;
    max-width: 390px;
    margin-right: 0.5rem;
    position:relative;
  }
  .kushSearch-wrapper .kushSearch, .searchSide_header .kushSearch, .location_list .kushSearch {
    min-height: 50px;
    padding-left: 40px;
    background-image: url(../images/icons/searchIco.svg);
    background-repeat: no-repeat;
    background-position: 10px;
  }

  .location_list .kushSearch {
    min-height: 40px;
  }
  .kushSearch-wrapper .kushSearch::placeholder{
    font-size: 13px;
    font-style: normal;
  }
  .kushSearch-wrapper .showOnSearch{
    max-width: calc(100% - 10px);
    margin-left: 8px;
    display: none;
  }
  .kushSearch-wrapper .showOnSearch .kushSearch, .searchSide_header .kushSearch{
    background-image: url(../images/icons/locationIco.svg);
  }
  .account-list-item a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-left: 5px;
    padding-right: 5px;
    trasition: 0.3s ease-in-out;
    padding: 10px 40px;
  }
  .kushHeader_bottom .navbar-nav {
    flex-direction: row;
  }
  .kushHeader_bottom .navbar-nav .nav-item .nav-link{
    color: #fff;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
  }
  .kushHeader_bottom .navbar-nav .nav-item .nav-link img {
    margin-right: 0.3rem;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
  }
  .kushHeader_bottom .navbar-nav .nav-item .nav-link.active img, .kushHeader_bottom .navbar-nav .nav-item .nav-link:hover img {
    filter: brightness(1) invert(0);
    -webkit-filter: brightness(1) invert(0);
  }
  .kushHeader_bottom .navbar-nav .nav-item .nav-link.active, .kushHeader_bottom .navbar-nav .nav-item .nav-link:hover{
    color: var(--primary);
  }

  .error.not-found {
    color: #FF3535 !important;
    font-weight: 600;
    font-size: 14px;
    background: rgb(255 53 53 / 5%);
    padding: 20px 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
  }
  .error.not-found img {
    margin-right: 0.4rem;
  }
  .selectedLocation {
    white-space: nowrap;
  }
  /* Side Search */
  .searchSide_wrapper{
    display: none;
    position: fixed;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 99;
  }
  .searchSide_inner {
    width: 100%;
    max-width: 380px;
    padding-left: 15px;
    padding-right: 15px;
    height: 100%;
    background: #fff;
  }
  .close_side {
    padding: 10px 0 10px;
  }
  .close_side .close {
    font-size: 1.8rem;
    float: none;
  }
  .locateMe {
    margin-left: -15px;
    margin-right: -15px;
    border-bottom: 1px solid #ddd;
  }
  .location_list {
    padding: 10px 0;
  }
  .locate_btn {
    padding: 10px 15px;
    display: block;
    font-weight: 600;
  }
  .location_list .list-group-item {
    border: 0;
    padding: 0;
  }
  .list-group {
    overflow-x: auto;
  }



  .location_list .list-group-item a {
  padding: 12px 0;
  color: #212529;
  text-transform: capitalize;
  font-size: 1.25rem;
  display: block;
  transition: 0.3s all;
  }
  .location_list .list-group-item a:hover {
    transform: translateX(5px);
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .location_list {
    padding: 10px 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100vh - 155px);
  }
  .location_list::-webkit-scrollbar {
  display: none;
  }
  .account-list-item a.active {
    color: #2abda2; 
  }
  .loginDrop-down .dropdown-menu {
    padding: 6px 0 !important
  }
  .loginDrop-down .dropdown-menu.show{
    animation: smoothDrop 0.5s alternate ;
    -webkit-animation: smoothDrop 0.5s alternate ;
  }
  @keyframes smoothDrop {
    0%{
        opacity: 0;
  }
  100%{
    opacity: 1;
  }
  }
  /* Header ends */
  section.padding-wrapper-top {
    padding-top: 4rem;
  }
  /* 12-04-2023 */
  .list-inline-item a {
    color: #000;
    display: block;
    padding: 10px 15px;
  }
  .account-list-item.list-inline-item a:not(.viewMap_btn):hover {
      background: #00bda3;
      color: #fff;
      border-radius: 3px;
  }
  .list-inline-item.account-list-item.login_link {
      border-bottom: 1px solid #00bda3;
  }
  .user-image svg {
    fill: #fff;
    height: 30px;
    width: 30px;
  }
  .user-acc-deatils ul {
    position: absolute;
    /* display: none; */
    top: 62px;
    width: 167px;
    right: 15px;
    left: auto;
    background: #fff;
    box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 15%);
    border-radius: 5px;
    padding: 10px 10px;
    z-index: 999;
  }
  /* .user-acc-deatils .user-image:hover ul {
    display: block;
  } */

  .list-inline-item a:not(.viewMap_btn):hover {
    color: #00BDA3;
    trasition: 0.3s ease-in-out;
  }
  /* Hero section starts */
  .hero-section-wrapper{
    background-image: url('../images/header_bg.png');
    padding: 15px 0 ; 
    min-height: 220px;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 90px;
  }
  .hero-section-wrapper .hero-section .container{
    position: relative;
  }
  .hero-section-wrapper .hero-section .container::before{
    content: '';
    position: absolute;
    width: 189px;
    height: 110px;
    background-image: url('../images/icons/dots.svg');
    left: -8%;
    top: -28%;
    z-index: 0;
  }
  .hero-section-wrapper .hero-section{
    width: 100%;
    transform: translateY(70px);
    -webkit-transform: translateY(70px);
    -moz-transform: translateY(70px);
    -ms-transform: translateY(70px);
    -o-transform: translateY(70px);
  }
  .hero-section-wrapper .hero-section-content{
    background: #FFFFFF;
    box-shadow: 4px 10px 30px 3px rgba(0, 0, 0, 0.09);
    border-radius: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;

  }
  .hero-section-content .hero-section-item{
    display: block;
    text-align: center;
    padding: 8px;
    position: relative;
    z-index: 1;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
  }
  .hero-section-content .hero-section-item:hover{ transform: translateY(-10px); -webkit-transform: translateY(-10px); -moz-transform: translateY(-10px); -ms-transform: translateY(-10px); -o-transform: translateY(-10px);
  }
  .hero-section-content .hero-section-item .hsi-img{
    margin-bottom: 0.5rem;
  }
  .hero-section-content .hero-section-item .hsi-title{
    color: var(--secondary);
  }
  /* Hero section ends */

  /*  section starts */
  .section-wrapper {
    margin-bottom: 15px;
    position: relative;

  }
  .dots-right::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 60px;
    background-image: url(../images/icons/dots_colored.svg);
    top: -50px;
    right: -120px;
  }
  .section-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .section-heading h3{
    margin-bottom: 0;
  }
  .section-heading .section-link{
    font-weight: 600;
  }
  .swiper-wrapper{
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .slider12 .swiper-wrapper .swiper-slide {
    height: auto;
  }

  .section-slider .slider-item {
    /* display: block; */
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    box-shadow: -1px 5px 20px -6px rgb(0 0 0 / 9%);
    /* border: 1px solid var(--light); */
    border-radius: 20px;
    padding: 20px;
    color: var(--secondary);
    text-align: center;
    border: 1px solid #eee;
    /* min-height: 300px; */
    height: 100%;
  }

  .section-slider .slider-item hr {
      width: 100%;
  }

  .slider-item-content .item-title {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slider-item-content .item-title h6 {
    font-size: 1.25rem;
    text-overflow: ellipsis;
    overflow: hidden;
  /*  height:20px;*/
    white-space: nowrap;
  }

  .section_privacy_policy {
      background: #fff;
  }

  .section_privacy_policy .inner-content.privacy_policy {
      max-width: 100%;
  }

  .item-title h6 {
    line-height: 120%;
  }
  .slider-item .slider-item-img {
    width: 100%;
    height: 110px;
    margin-bottom: 0.875rem;
    position: relative;
  }
  .slider-item .slider-item-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  }
  .slider-item .item-location {
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .slider-item .item-rating{
    font-size: 14px;
  }
  .item-rating .fa-star, .rating-stars .fa-star{
    color:#F2C94C ;
  }
  .item-rating .fa-star-o{
    color:var(--grey) ;
  }
  .slider-item .item-tag .badge{
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2px;
  }
  /*  section ends */
  /* Customize slider */
  .section-slider {
    position: relative;
  }
  .slider-control {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    box-shadow: 4px 12px 40px 6px rgb(0 0 0 / 9%);
    border-radius: 20px;
    padding: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 44;

    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
  }

  .slider-control:focus{
    box-shadow: 4px 12px 40px 6px rgb(0 0 0 / 9%) !important;
  }
  .slider-control-prev{
    left: -20px;
    right: auto;
  }
  .slider-control-next{
    right: -20px;
    left: auto;
  }
  #share_link {
    position: absolute;
  }
  /*Deals */

  .swiper-slide .deals-item {
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 30px;
    /*height: 340px;*/
    background-size: contain !important;
    aspect-ratio: 4/ 3;
  }

  .deals-item .deals-content{
    width: 100%;
    color: #fff;
  }

  .deals-content .deals-title h3{
    margin-bottom: 1rem;
    color: #fff;
  }
  /* About us starts */
  #aboutSection {
    background-image: url(../images/icons/weed_bg.png);
    background-repeat: no-repeat;
    background-position: 50% 11%;
    background-size: 56%;
    background-color: #fff;
    padding: 40px 0 0;
  }
  #aboutSection .section-content {
    margin-bottom: 50px;
  }
  .fullWidth_images img {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
    max-width: 33.333%;
  }
  /* Blogs starts */
  .blog-item {
    background: #FFFFFF;
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
    height: 100%;

  }
  .blog-title h5, .blog-item{
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
  }
  .blog-item:hover{
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }

  .blog-item:hover .blog-title h5{
    color: var(--primary);
  }
  .blog-item .blog-item-image {
    height: 200px;
    width: 100%;
  }
  .blog-item-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: top;
  }
  .blog-item .blog-item-content {
    /* padding: 15px; */
    padding: 24px 24px 32px;
  }
  .blog-desc p {
    margin-bottom: 0rem;
  }
  .blog-item .blog-tags{
    margin-bottom: 0.5rem;
  }
  .blog-item .blog-author {
    display: flex;
    justify-content: space-between;
  }
  .blog-item .blog-author .bold{
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    color: #7F7F7F;

  }
  .assignListing .card-body {
    height: 100%;
    max-height: 350px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  /* Blogs ends */

  /* Join section starts */
  .joinContent{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .joinTitle::before{
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background-color: var(--primary);
    margin-bottom: 0.875rem;
  }

  /* .joinTitle .h1{
    font-weight: 700 !important;
  } */
  .joinForm h5{
    margin-bottom: 1rem;

  }
  .joinForm .form-control {
    min-height: 50px;
    padding-left: 40px;
    background-image: url(../images/icons/email.svg);
    background-repeat: no-repeat;
    background-position: 10px;
    background-color: rgb(0 189 163 / 10%);
  }
  /* Footer starts */
  footer{
    background: #212529;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: auto;
  }
  .footer-heading::before{
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background-color: var(--primary);
    margin-bottom: 0.875rem;
  }
  .footer-content .list-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-content .list-group .list-group-item {
    background-color: transparent;
    padding-left: 0;
    border: 0;
    width: 100%;
    padding-top: 0;
    padding-right: 0;
  }
  .footer-content .list-group.flex-column .list-group-item {
    width: 100%;
  }
  .footer-content .list-group .list-group-item a{
    color: #fff;
  }
  /* Footer ends */
  /* Copyright */
  .copyright{
    padding: 10px 15px;
    background-color: #181818;
    color: #fff;
    text-align: center;
  }
  .copyright small{
    color: #fff;
  }

  /* Account pages start */
  .account_wrapper {
    /* padding-top: 160px; */
    padding-top: 199px;
    padding-bottom: 50px;
  }
  /* Account pages ends */

  /* map-view css start */
  .map-section-wrapper {
    padding-top: 160px;
  }
  .deals-wrapper{
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
  }
  .deals-wrapper .deals-wrapper-heading .deals-heading {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
  }
  .deals-wrapper .deals-rating-content h4 {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 5px;
  }
  .deals-wrapper .deals-rating-content a {
    display: flex;
    padding-bottom: 1rem;
  }
  .deals-rating-wrapper {
    margin-bottom: 1rem;
  }
  .deals-rating-section .deals-rating-wrapper:not(:last-child) {
    border-bottom: 1px solid #E0E0E0;
  }
  .deals-wrapper .deals-rating-content:not(:last-child) {
    border-bottom: 1px solid;
  }
  .deals-wrapper .deals-rating-content .rating-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 5px;
  }
  .deals-wrapper .deals-rating-content .rating-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform .2s ease-out;
    /* transform-origin: 50% 65%;
  transition: transform .2s ease-in-out;
  filter: brightness(150%); */
  }
  .rating-content-footer {
    line-height: 18px;
    font-size: 14px;
    color: #7F7F7F;
  }
  .rating-content-footer strong {
    color: #212529;
  }
  .rating-content {
    padding-left: 10px;
    width: calc(100% - 100px);
  }
  .deals-heading h4 {
    font-size: 20px;
  }
  .deals-wrapper-heading {
    position: sticky;
    top: 0px;
    background: #f5f5f5;
    z-index: 888;
  }
  .star-rating i {
    color: #F2C94C;
  }
  .deals-wrapper span.rate-count {
    color: #212529;
    font-size: 14px;
  }
  .deals-wrapper {
    /* height: 600px; */
    height: calc(-119px + 100vh);
    overflow-y: auto;
    padding: 0px 10px;
  }
  .deal-mapping iframe {
    width: 100%;
    max-height: 100%;
    height: 100%;
  }
  .deal-mapping {
    height: 100%;
  }
  .rating-content-body .star-rating {
    margin-bottom: 0.4rem;
  }
  .deals-rating-content a:hover h4 {
    color: #00bda3;
    transition: 0.3s all;
  }
  .deals-rating-content a:hover .rating-image img {
    transform: scale(1.2);
    /*filter: brightness(100%);
    transform: scale(3);
    */
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
  /* .rating-content a :hover {
    color: #00bda3;
  }  */
  /* map-view css end */
  /* header-view start */
  .header-categorey-content ul.navbar-nav.ml-auto li {
    display: flex;
  }
  .header-categorey-content ul.navbar-nav.ml-auto li img {
    padding-right: 5px;
  }
  .header-categorey-content ul {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .header-categorey-content {
    padding: 8px 0px;
  }
  .header-categorey-content ul li a {
    color: #fff;
  }
  /* end */
  /* signle-detail start */
  .detail-heading {
    background: #f2f8f7;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0px 20px 0px;
  }
  .detail-heading h5{
    margin-bottom: 0;
  }
  .opening-hours dl {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    margin-bottom: -1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.opening-hours dl dt {
    font-weight: 400;
}
  .about-brand-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .about-brand-wrapper .brand-details {
    display: flex;
    align-items: flex-start;
    margin-right: 1rem;
    border-right: 1px solid #cbf0ea;
    padding-right: 16px;
    height: 100%;
    max-width: 300px;
  }
  .brand-details .brand-image {
    width: 80px;
    height: 55px;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    margin-right: 0.875rem;
  }
  .brand-details .brand-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* .single-detail-header {
    padding-top: 2rem;
  } */
  .uploadedImg {
    width: 100px;
    height: 80px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }
  .uploadedImg a {
    position: absolute;
    right: -1px;
    top: -1px;
    color: #ff3434;
    background: #ffd3d3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-weight: 100;
    border-radius: 50%;
  }
  .uploadedImg img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
  }
  .product-favorites {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 30px;
  }
  .product-favorites a {
    color: #7F7F7F;
    font-weight: 600;
  }
  .product-favorites a > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    background: #fff;
    border-radius: 50%;
    box-shadow: -1px 5px 20px -6px rgb(0 0 0 / 27%);
  }
  .product-favorites a .fa-heart {
    color: #2abda2;
    animation: zoomIn 0.3s alternate;
    -webkit-animation: zoomIn 0.3s alternate;
  }
  .product-wrapper {
    margin-bottom: 2rem;
  }
  .single-detail-header ul.breadcrumb li+li:before {
    padding: 8px;
    color: #212529;
    content: "/\00a0";
  }
  .single-detail-header ul.breadcrumb li.active a {
    color: #212529;
  }
  .single-detail-header ul.breadcrumb li a {
    color: #7F7F7F;
  }
  .single-detail-header ul.breadcrumb {
    background: transparent;
    padding: 12px 0px;
    margin-bottom: 0px;
  }
  .single-detail-bg {
    background: #f2f8f7;
    margin-bottom: 30px;
  }
  .card-header {
    background-color: rgb(242 248 247);
  }
  /* .product-favorites {
    text-align: right;
  } */
  /*.product-rate i {
    color: #F2C94C;
  }*/
  .product-rate span {
    font-size: 14px;
  }
  .product-wrapper .rating-head h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .product-wrapper .badge-dark {
    font-size: 12px;
    line-height: 15px;
  }
  .product-wrapper .product-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }
  .product-wrapper .product-image img {
    height: auto;
    width: 100%;
    object-fit: Contain;
  }
  .rating-body a {
    margin-left: 20px;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
  }
  .rating-footer button {
    height: 40px;
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #333333;
    color: #333333;
    margin-bottom: 0.775rem;
  }
  .rating-footer button img{
    margin-right: 0.5rem;
  }
  .shareOn-wrapper {
    display: block;
    background: #FFFFFF;
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    box-shadow: -1px 5px 20px -6px rgb(0 0 0 / 9%);
    border-radius: 10px;
    padding: 15px;
    color: var(--secondary);
    border: 1px solid #eee;
    width: 100%;
    max-width: 280px;
    position: absolute;
    top: 42px;
    left: 0;
    z-index: 88;
    animation:slowmode 0.5s alternate;
    -webkit-animation:slowmode 0.5s alternate;
  }
  .shareOn-wrapper .shareOn-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
    margin-bottom: 5px;
  }
  .shareOn-list {
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
    flex-wrap: wrap;
  }
  .shareOn-list .shareOn-item {
    width: 33.333%;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    font-size: 13px;
    /* font-weight: 600; */
    margin-bottom: 10px;
    color: #212529;
  }
  .shareOn-list .shareOn-item:hover .icon{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .shareOn-list .shareOn-item .icon {
    display: flex;
    width: 30px;
    height: 30px;
    margin: 0 auto 4px;
    align-items: center;
    justify-content: center;
    background: #2abda2;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
  }

  .shareOn-body .icon svg {
      width: 14px;
      fill: #fff;
  }

  .shareOn-header .shareOn-close {
    color: #212529;
    font-weight: 200;
    opacity: 0.6;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
  }
  .shareOn-header .shareOn-close:hover{
    opacity: 1;
  }
  .shareOn-list {
    padding-top: 10px;
  }
  .rating-head,
  .rating-body {
    margin-bottom: 10px;
  }
  .buy-heading h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
  }
  .product-contact:not(:last-child) {
    margin-bottom: 10px;
  }
  .product-socials li.list-inline-item {
    border: 1px solid #00bda3;
    border-radius: 5px;
    background: #00bda3;
  }
  .product-socials li.list-inline-item a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-socials li.list-inline-item.disabled {
    background: #7F7F7F;
    border-color: #7F7F7F;
    pointer-events: none;
  }
  .product-contact p {
    font-weight: 600;
  }
  /* tab view start*/
  .single-tab-list ul.nav.nav-tabs {
    justify-content: flex-start;
    border-bottom-color: transparent;
  }

  .single-tab-list ul.nav.nav-tabs li a.nav-link.active {
    color: #00bda3;
    border-bottom: 2px solid #00bda3;
  }
  .single-tab-list ul.nav.nav-tabs li a.nav-link {
    color: #7F7F7F;
    background: transparent;
    border: 0px;
    font-weight: 600;
  }
  .active-tab-inner .active-tab-header h4 {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 0;
  }
  .active-tab-header {
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
    position: unset;
  }
  .active-tab-body .active-tab-body-item h6 {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
  }
  .active-tab-body .active-tab-body-item {
    margin-bottom: 1.5rem;
  }
  .prod-chkbox .custom-checkbox:not(:last-child) {
    margin-bottom: 0.3rem;
  }
  /* .single-detail-tabpane-wrapper.mb-3 {
    height: 100vh;
  } */
  .active-tab-inner .active-tab-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .active-tab-inner .sort-wrapper select {
    border: 0;
    outline: none;
    font-size: 16px;
    background: transparent;
    line-height: 24px;
    width: auto;
  }
  .product-content-wrapper {
    display: block;
    background: #f2f8f7;
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    box-shadow: -1px 5px 20px -6px rgb(0 0 0 / 9%);
    border-radius: 20px;
    padding: 20px;
    color: var(--secondary);
  }
  /* About */
  .des-map-wrapper {
    display: block;
    border-radius: 15px;
    overflow: hidden;
  }
  .opening-hours .list-group-item {
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .opening-hours .list-group-item:first-child{
  border-top: 0;
  padding-top: 0;
  }
  .opening-hours .list-group-item:last-child{
    border-bottom: 0;
    padding-bottom: 0;
  }
  .current-day {
    color: #2abda2;
    font-weight: 600;
  }
  /* review tab */
  .review-profile-icon h5 {
    display: inline-block;
    text-transform: capitalize;
  }
  .review-profile-icon a h5 {
    display: inline-block;
    font-size: 20px;
    line-height: 25px;
  }
  .review-rating-side ul {
    margin-bottom: 0px;
  }
  .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  .review-header .review-profile-icon a {
    display: inline-flex;
    align-items: flex-start;
  }
  .review-profile-icon p {
    color: #7F7F7F;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
  }
  .review-body {
    padding-left: 40px;
  }
  .review-wrapper-content .review-body p {
    margin: 0;
  }
  .profile-content {
    padding-left: 6px;
  }
  .review-profile-icon i {
    font-size: 28px;
    padding-right: 6px;
    color: #212529;
  }
  .review-wrapper-content {
    padding: 20px;
    margin-bottom: 1rem;
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    border-radius: 12px;
    background: #fff;
  }
  /* end */
  /* deal tab */

  .deal-image img {
    display: inline-block;
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 5px;
  }
  .deal-right-head h4 {
    font-size: 24px;
    line-height: 30px;
  }
  .deal-right-head span {
    font-size: 12px;
    line-height: 15px;
  }
  .deal-right-body p {
    font-size: 14px;
    margin-bottom: 0.8rem;
  }
  /* .deal-right-body button {
    background: #00BDA3;
    color: #fff;
  } */

  .deal-right-content {
    width: calc(100% - 170px);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    padding: 0 15px 20px;
  }
  .deal-content {
    background: #FFFFFF;
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    border-radius: 15px;
    margin-bottom: 16px;
    border: 1px solid #eee;
    overflow: hidden;
    padding: 20px;
  }
  .deal-right-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: .8rem;
    flex-wrap: wrap;

  }
  /* end */
  /* product  */
  .product-description .prod-img img {
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 5px;
  }
  .product-description .prod-cont {
    width: calc(100% - 170px);
  }
  .prod-cont-wrapper:last-child {
    border-bottom: 0 !important;
  }
  .prod-cont-body .prod-price {
    display: flex;
  }
  .prod-price p:not(:first-child) ,.prod-cont-type p:not(:first-child)  {
    margin-left: 40px;
  }
  .product-content-rating .prod-cont-body {
    border-top: 1px solid #e0f2ef;
    border-bottom: 1px solid #e0f2ef;
  }

  .prod-search {
    position: relative;
  }

  .prod-search input {
    background: #F8F8F6;
    border: 1px solid #E4E7E7;
    padding-left: 2.375rem;
    position: relative;
  }
  .prod-search span {
    position: absolute;
    top: 23px;
    z-index: 1;
    left: 30px;
    color: #7F7F7F;
  }

  .active-tab-header .prod-search span {
    top: 14px;
    left: 16px;
  }
  .pagination a {
    height: 30px; 
    width: 30px;
    text-align: center;
    color: #7F7F7F;
    line-height: 1.9;
    border-radius: 5px;
    margin: 0px 8px;
  }
  .pagination a.active {
    background: #00bda3;
    color: #fff;
  }
  /* tab view end */


  /* Mobile Sec CSS */
  /*.overflow_sec {
    background: url(/frontend/images/bg-leafs-d_big.png) no-repeat;
    background-size: 100% 100%;
  }*/
  .overflow_sec::before, .overflow_sec::after {
      content: "";
      background: url(/frontend/images/bg-leafs-top.png) no-repeat;
      background-size: 100% auto;
      position: absolute;
      top: 0;
      left: 0;
      height: 200px;
      width: 100%;
      z-index: 4;
      display: block;
  }

  .overflow_sec::after {
      top: auto;
      bottom: 0;
      background: url(/frontend/images/bg-leafs-bottom.png) no-repeat bottom left;
      background-size: 100% auto;
  }


  .overflow_secBody {
      padding-top: 58px;
      padding-bottom: 45px;
  }

  .overflow_sec .container, .overflow_sec .container .section-content_main, .overflow_sec .container .section-content_main .overflow_secBody, .overflow_sec .container .section-content_main .overflow_secBody .row {
      height: 100%;
  }

  .mobile_img {
      width: auto;
      height: 100%;
      object-fit: contain;
      max-height: 480px;
  }
  .comin_soonModal 
 .close {
    position: absolute;
    right: 10px;
    top: 24px;
    color: #ffffff;
    opacity: 1;
    border-radius: 50%;
    background: #00BCD4;
    padding: 0;
    display: flex;
    line-height: 18px;
    align-items: center;
    justify-content: center;
    padding: 4px 15px 9px;
    /* padding-bottom: 9px; */
}




  /* login wrapper & signup */

  .login-inner, .signup-inner {
    background: #FFFFFF;
    box-shadow: 3px 8px 27px -1px rgb(0 0 0 / 9%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    max-width: 450px;
    width: 100%;
    margin: 0px auto;
  }
  .signup-inner {
    max-width: 600px;
  }
  .login-subtitle {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }
  .login-subtitle p, .register-actions p {
    font-size: 15px;
    line-height: 1.4;
  }
  .register-actions p {
    color: #5a5b5a;
  }
  /* .google_btn, .facebook_btn {
    border: 1px solid #cccccc;
    background-color: #f5f5f5;
  } */
  .splitter {
    position: relative;
    text-align: center;
    margin-bottom: 5px;
  }
  .splitter::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #272727;
    mix-blend-mode: normal;
    opacity: 0.3;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block; 
    position: absolute;
  }
  .splitter span {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #929292;
    mix-blend-mode: normal;
    background: #fff;
    position: relative;
    padding: 10px;
  }
  .terms-options strong {
    margin-bottom: 0.5rem;
    display: inline-block;
  }

  .signup-socials a {
    padding: 5px 10px;
    background: #00bda3;
    color: #fff;
    border-radius: 5px;
  }
  .login-title {
    margin-bottom: 1rem;
    text-align: center;
  }

  .signup-title h3 {
    text-align: center;
  }
  .login-actions {
    margin-bottom: 2rem;
  }
  /* .signup-terms .form-group:nth-child(1) {
    align-items: baseline;
    display: flex;
  }
  .signup-terms .form-group:nth-child(1) input {
    margin-right: 5px;
    margin-left: 0px;
    position: relative;
  } */

  .register-actions {
    display: flex;
    align-items: center;
  }


  .login-actions a.active {
    background: #00bda3;
    color: #fff;
  }

  .register-actions a {
    color: #2abda2;
    font-weight: 600;
  }
  .skip a {
    color: #9a9a9a;
  }


  .login-title h3 {
    font-size: 24px;
  }

  .register-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .register-actions h3 {
    font-size: 20px;
    margin-bottom: 1.5rem; 
  }
  #receive_offers {
    background-color: #f4f4f4;
    padding: 15px 15px 0;
    border-radius: 10px;
  }
  #receive_offers > strong {
    margin-bottom: 5px;
    display: block;
  }
  #receive_offers.animate {
    animation: slowDown 0.3s linear alternate;
    -webkit-animation: slowDown 0.3s linear alternate;
  }
  .assign_business > .row {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  /*dashboard view-start*/
  .profile_image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 1px solid #ddd;
  }
  .profile_name h5 {
    text-transform: capitalize;
  }
  .profile_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .dashboard-tab .nav-tabs .nav-link:hover,
  .dashboard-tab .nav-tabs .nav-link:focus {
    border-color: transparent;
  }
  .dashboard-content {
    background: #FFFFFF;
    height: 100%;
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    border-radius: 20px;
    padding: 24px 18px;
  }
  .acount-save-button {
    text-align: center;
  }
  /*dashboard view-end*/
  /* dashboard-new css */
  .dashboard-tab {
    background: #FFFFFF;
    height: 100%;
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    border-radius: 20px;
    padding: 24px 18px;
  }
  .dashboard-inner .dashboard-tab .nav-tabs li.nav-item .active {
    color: #212529;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
  }
  .dashboard-inner .dashboard-tab .nav-tabs li.nav-item .active path {
    fill: #212529;
  }
  .dashboard-tab .nav-tabs li.nav-item a.nav-link {
    border: 0px;
    padding: 0px;
    display: flex;
    color: #7F7F7F;
    font-weight: 600;
  }
  .dashboard-tab .nav-tabs li.nav-item a.nav-link path {
    fill: #7F7F7F;
  }
  .dashboard-tab .nav-tabs li.nav-item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 14px 10px;
  }
  .dashboard-tab .nav-tabs li.nav-item span {
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 0.875rem;
    font-size: 18px;
  }
  .form-group label {
    color: #77797a;
    font-size: 16px;
    line-height: 140%;
  }
  label.pswd-error {
    font-size: 14px;
    color: #E74F48;
    font-weight: 400;
  }
  .modal-content {
    border: 0px;
  }
  /* revire poup */
  .popup-review-for {
    display: flex;
    align-items: center;
    background: #f2f8f7;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  .popup-review-wrapper {
    padding: 0 15px 15px;
  }
  .popup-review-for .icon {
    width: 100px;
    height: 60px;
    background: #fff;
    border-radius: 10px;
    margin-right: 1rem;
  }
  .popup-review-for .icon img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .rate {
    float: left;
    height: 46px;
    padding: 0 10px 0 0;
  }
  .rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
  }
  .rate:not(:checked) > label {
    float: right;
    width: 0.875em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
  }
  .rate:not(:checked) > label:before {
    content: "★";
  }
  .rate > input:checked ~ label {
    color: #F2C94C;
  }
  .rate:not(:checked) > label:hover,
  .rate:not(:checked) > label:hover ~ label {
    color: #deb217;
  }
  .rate > input:checked + label:hover,
  .rate > input:checked + label:hover ~ label,
  .rate > input:checked ~ label:hover,
  .rate > input:checked ~ label:hover ~ label,
  .rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
  }
  a.disabled {
    pointer-events: none;
    color: #7f7f7f;
  }
  /* .account-wrapper .form-group input[type=text], .account-wrapper .form-group input[type=date], .account-wrapper .form-group input[type=select]{
    background: whitesmoke;
    height: 38px;
    width: 100%;
    padding: 0.375rem 0.75rem;
    border: 0px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
  } */
  .signup-terms .form-group:nth-child(2) {
    background: #F8F8F6;
    border-radius: 5px;
    padding: 14px 12px;
  }
  .account-wrapper .custom-ctrl-chkbox label {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
  }
  .account-wrapper .signup-terms label {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #212529;
  }
  /* pswd-reset start  */
  /* .modal-header {
    background: #212529;
  } */
  button.close.reset-btn {
    background: #00bda3;
    color: #fff;
    height: 30px;
    width: 30px;
    font-size: 14px;
    padding: 0px;
    border-radius: 50%;
  }
  /* .modal-title {
    color: #fff;
  } */
  button.close.reset-btn {
    background: #00bda3;
    color: #fff;
    height: 25px;
    width: 25px;
    font-size: 14px;
    padding: 0px;
    border-radius: 50%;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    line-height: 2.5px;
  }
  .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgb(42 189 162 / 20%);
  }
  /* .modal {
    top: 150px;
  } */
  .reset-pswd-body .form-group .text-center p {
    font-size: 14px;
  }
  /* .modal-open .modal {
    overflow: hidden;
  } */
  #createDeal,
  #prodBody-wrapper,
  .business-body {
    display: none;
  }
  /* .custom-control-label::after {
    cursor: pointer;
  } */
  .custom-checkbox label.custom-control-label:hover {
    cursor: pointer;
  }
  /* end */
  /* deal wrapper start */
  .form-group p,
  .form-group span {
    font-size: 14px;
    font-weight: 500;
  }
  .form-group label span {
    font-size: 16px;
  }
  .form-group .Prod {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .form-group .Prod small {
    color: #7F7F7F;
  }
  .alert {
    padding: 6px;
  }
  .custom-checkbox label.custom-control-label {
    font-weight: 500;
    margin-bottom: 0.3rem;
  }
  .dashboard-tab .nav-tabs li.nav-item span svg {
    height: 20px;
    width: 20px;
  }
  .Image-upload {
    position: relative;
    width: 180px;
    height: 80px;
    border: 2px dotted #00bda3;
    border-radius: 5px;
    display: inline-block;
    background-color: #00bda31c;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Image-upload input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    left: 0px;
    top: 0px;
    cursor: pointer;
    z-index: 10;
  }
  .Image-upload:before {
    content: "\f0ee";
    font-family: 'FontAwesome';
    font-size: 24px;
    color: #00bda3;
    margin-bottom: -0.2rem;
    display: block;
    z-index: 5;
  }
  .Image-upload:after {
    content: 'Upload Here';
    width: 100%;
    text-align: center;
    color: #00bda3;
    font-weight: 500;
    z-index: 5;
  }
  /* .upload_wrapper .Image-upload label.error {
    position: absolute;
    width: 104%;
    font-size: 0 !important;
    height: 105%;
    border: 1px dashed #f00;
    left: -2px;
    top: -2px;
    margin: 0;
    background: #ffe3e3;
    border-radius: 5px;
  } */
  /* .upload_wrapper .Image-upload label.error::before{
    content: "\f06a";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    font-size: 20px;
    margin-bottom: 0.5rem;

  } */
  .upload_wrapper .Image-upload label.error {
    position: absolute;
    width: 114%;
    left: -2px;
    top: 90%;
    padding: 3px 5px 3px 5px;
    margin: 0;
    border-radius: 0;
    white-space: nowrap;
    background: #fff;
  }

  .upload_wrapper {
    display: flex;
  }
  .upload_wrapper img{
    margin-left: 1rem;
    object-fit: cover;
    width: auto;
    height: 80px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  .dealHome-page .form-group {
    background: whitesmoke;
    padding: 10px;
    border-left: 6px solid #00bda3;
  }
  /* end */
  /* dashboard-business */
  .businessList-Item {
    background: #FFFFFF;
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    border-radius: 20px;
    padding: 14px 16px;
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid #f5f5f5;
  }
  .businessList-wrapper {
    max-height: 600px;
    overflow-x: visible;
    overflow-y: auto;
    padding-bottom: 20px;
  }
  .businessList-wrapper .selectAll {
    position: sticky;
    top: 0;
    z-index: 8;
    background: #fff;
    padding-bottom: 1px;
  }
  /* .businessList-body
  {
    display: flex;
  } */
        /*New css*/
  .businessList-body .business-Image {
    width: 150px;
    height: 120px;
  }
  .businessList-body .business-Image img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    width: 100%;
  }
  .businessList-body .business-Image p {
    height: 100%;
  }
  .businessList-body .business-Content {
    width: 100%;
  }
  .business-Content .businessTitle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 5px;
  }
  /* .business-Content .businessTitle h4 {
    max-width: 65%;
    font-size: 1.25rem;
    margin: 0;
  } */
  .business-Content .businessTitle h4 {
    font-size: 1.25rem;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .cursor-pointer{
    cursor: pointer;
  }
  .collapse-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0;
    color: #2abda2;
    background: #f5f5f5;
  }
  .collapse-card .card-header h6{
    color: #2abda2;
  }
  .collapse-card .card-header:not(.collapsed) span::before {
    content: '\f068';
  }
  .dropdown-divider {
    margin: 0.2rem 0;
  }
  .dropdown-item {
    font-size: 14px;
  }
  .hr {
    border-bottom: 1px solid #b9baba4d;
    width: 100%;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
  }
  .businessList-head .form-group {
    display: flex;
    justify-content: space-between;
  }
  .businessReview p {
    font-size: 14px;
  }
  .accordion .card-header {
    padding: 0px;
    background: whitesmoke;
    border-bottom: 0px;
  }
  .accordion .card {
    border-radius: 5px;
    margin-bottom: 0.5rem;
    border: 1px solid whitesmoke;
  }
  .accordion .card .card-body {
    font-size: 16px;
    padding: 15px;
    /* text-align: justify; */
  }
  .accordion .card-header h6 {
    font-weight: 600;
    color: #1e2a1e;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    padding: 15px;
    padding-right: 30px;
  }
  .accordion .card-header button:hover,
  .accordion .card-header button:focus {
    text-decoration: none;
  }
  .accordion .card-header h6:before {
    content: "\f068";
    font-family: 'FontAwesome';
    font-weight: lighter;
    position: absolute;
    right: 15px;
  }
  .accordion .card-header h6.collapsed:before {
    content: "\f067";
    font-weight: lighter;
  }
  /* menu login */
  .loginDrop-down button span i {
    font-size: 24px;
    padding-right: 5px;
  }
  .loginDrop-down button span {
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
  }
  .loginDrop-down .dropdown-toggle::after {
    vertical-align: -1px;
  }
  .dropdown-menu.show {
    background: #FFFFFF;
    box-shadow: 4px 10px 30px 3px rgb(0 0 0 / 9%);
    right: 0px;
    top: 53px !important;
    border-radius: 5px;
    padding: 0px;
    left: auto !important;
    transform: none !important;
  }
  /* end */
  /* featured list */
  .listing-section .list-heading {
    padding: 20px 0px;
  }
  /* 6-2-23  start*/
  .feature-section.listing-section {
    margin-top: 50px;
  }
  /* 6-2-23 */
  .listing-section .list-heading h2,
  .single-detail-header .detail-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .listing-section .list-heading small {
    font-size: 16px;
    line-height: 24px;
    color: #7F7F7F;
  }
  .featured-sec2:before {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    background-image: url(../images/icons/dots_colored.svg);
    top: -7px;
    right: 0px;
    z-index: 999;
  }
  section.featured-sec2 {
    position: relative;
  }
  .top-section {
    padding-top: 136px;
    background: #F8F8F6;
    margin-bottom: 30px;
  }
  .featured-sec {
    background-color: transparent;
  }
  .featured-sec1 .swiper-slide .slider-item:before {
    content: "";
    background-image: url(../images/listing/label.svg);
    position: absolute;
    height: 76px;
    width: 76px;
    background-repeat: no-repeat;
    top: 0px;
    left: 0px;
  }
  .featured-sec1 a.slider-item {
    position: relative;
  }
  /* end */
  /* Overwite Css starts */
  .dashboard-wrapper{
    padding: 160px 0 50px;
  }
  .pop-wrapper {
    position: relative;
    max-width: 240px;
  }
  .pop-wrapper .pop-header {
    display: flex;
    margin-bottom: 0.5rem;
  }
  .pop-header img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 0.5rem;
  }
  .pop-header h5 a {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 15px;
    color: #F8F8F6;
  }
  .pop-wrapper .pop-body {
    color: #fff;
    font-size: 14px;
  }
  .pop-body b {
    font-weight: 500;
    display: block;
    margin-bottom: 0.2rem;
    opacity: 0.9;
  }
  .pop-wrapper > a {
    position: absolute;
    background: #00BDA3;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
    top: 50%;
    transform: translate(85%, -50%);
    right: 0;
  }
  .pop-wrapper .pop-body p {
    font-size: 14px;
    line-height: 1.3;
  }
  .toggle-trigger , .toggle-trigger:hover{
    position: absolute;
    right: -50px;
    top: 60px;
    background: #00BDA3;
    color: #fff;
    width: 50px;
    height: 50px;
    z-index: 66;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 0px 5px 5px 0;
    box-shadow: 2px 4px 15px #00000021;
  }
  #listingSide, #mapSide{
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
  }
  #listingSide.hideMe {
    width:0;
    max-width: 0;
    flex: 0 0 0;
    padding: 0;
    animation: slightlyHide 0.5s alternate;
    -webkit-animation: slightlyHide 0.5s alternate;
  }
  #listingSide.hideMe .deals-wrapper{
    opacity: 0;
  }
  #mapSide.fullView {
    width:100%;
    max-width: 100%;
    flex: 0 0 100%;
    animation: slightlyshow 0.5s alternate;
    -webkit-animation: slightlyshow 0.5s alternate;
    padding-left: 15px !important;
  }
  .toggle-trigger.rotate180{
    right: -65px;
  }
  .toggle-trigger.rotate180 i{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  /* map classes */
  .gm-style-iw.gm-style-iw-c, .gm-style-iw-c > .gm-style-iw-d {
    padding: 0 !important;
    overflow: visible !important;
  }
  body .gm-style-iw.gm-style-iw-c {
    background-color: #3A3A3A;
    padding: 15px !important;
  }
  body .gm-style-iw.gm-style-iw-c button {
    background: #ffffff !important;
    border-radius: 50%;
    width: 24px !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    opacity: 1 !important;
  }
  body .gm-style-iw.gm-style-iw-c button img {
    margin: 0 !important;
    width: 10px !important;
  }
  .swiper{
    opacity: 0;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
  }
  .swiper.swiper-initialized{
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  .slider-control.btn:disabled {
    opacity: 0 !important;
  }
  /* Dashboard listing reviews */
  .listing_header{
    margin-bottom: 1rem;
  }
  .listing_header .nav-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 14px;
    font-weight: 500;
  }
  .prod-cont-type .prod-type {
    padding-top: 5px;
  }
  .prod-cont-body .prod-price p span {
    display: block;
    margin-top: 3px;
    color: #2abda2;
  }
  /* Adding edit icon on dashboard */
  .profile_img-icon input[type="file"] {
    position: absolute;
    height: 40px;
    width: 40px;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    right: 0px;
    top: 0px;
    padding: 0px;
  }
  .profile_img-icon 
  {
  position: relative;
  }
  .profile_img-icon  span{
  position: absolute;
  right: 5px;
  height: 30px;
  width: 30px;
  background: #00bda3;
  top: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  }
  .verifiedEmail {
    display: inline-block;
    height: 33px;
    margin: 0;
    transform: translateY(1px);
    padding: 5px 12px;
    margin-left: 3px;
  }
  .modal-header .close {
    margin: -1rem -0.1rem -1rem auto;
  }
  .reviewAction {
    text-align: right;
    margin-top: 4px;
  }
  .reviewAction .deleteMyReview {
    color: #ff5252;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -ms-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
  }
  .reviewAction .deleteMyReview span {
    margin-left: 0.3rem;
  }
  .reviewAction .deleteMyReview:hover {
    color: #888;
  }
  /* Hits table */
  .hitsTable {
    position: relative;
    min-height: 340px;
    display: flex;
  }
  .hitsTable::-webkit-scrollbar{
    height: 8px;
  }
  .hitsTable .fixedHits_table {
    position: sticky;
    background: #fff;
    left: 0;
    top: 0;
    width: 65px;
    z-index: 99;
  }
  .hitsTable .variableHits_table {
    margin-left: 0;
  }
  .hitsTable .variableHits_table th, .hitsTable .variableHits_table td {
    min-width: 125px;
  }
  .fixedHits_table .icon svg {
    height: 22px;
    width: auto;
  }
  .business-head .business-filter .nav-item .nav-link {
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    outline: none;
    border: 0;
    cursor: pointer;
  }
  .business-head .business-filter .nav-item .nav-link:not(.active) {
    background-color: #efefef;
    color: #212529;
  }
  .business-head .business-filter {
    border: 0px solid #2abda2;
    padding: 0;
    border-radius: 5px;
    background-color: #e9ecef;
  }
  .business-head .business-filter .nav-item:first-child .nav-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .business-head .business-filter .nav-item:last-child .nav-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  /* Overwite Css ends */
  /* Inner pages */
  .hero-section-wrapper.inner {
    margin-bottom: 30px;
  }
  .hero-section-wrapper.inner .container::before {
    top: auto;
    bottom: -58px;
    left: auto;
    right: 100%;
  }
  .hero-section-wrapper.inner .hero-section{
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
  .hero-section-wrapper.inner .hero-section-heading {
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 100%;
    top: auto;
    text-align: center;
  }
  .hero-section-wrapper.inner .hero-section-heading h2{
    color: #fff;
  }
  /* Onload modal starts */
  #onloadModal .modal-dialog {
    max-width: 400px;
  }
  .onload-inner {
    padding: 20px;
  }
  .onload-header .onload-img, .onload-header .onload-title {
    margin-bottom: 1rem;
  }
  .onload-header .onload-subtitle p {
    margin: 0 0 0.5rem 0;
    font-size: 14px;
  }
  .onload-header .onload-subtitle {
    background: #f5f5f5;
    padding: 10px 10px 1px 10px;
    border-radius: 5px;
  }
  .onload-inner .onload-body {
    padding-top: 14px;
    margin-top: 20px;
    border-top: 1px solid #e7e7e7;
  }
  .onload-inner .onload-body p {
    line-height: 1.1;
  }
  .onload-footer {
    margin-left: -16px;
    margin-right: -16px;
  }

  .onload-footer .cookie-wrapper {
    padding: 15px;
    background: #00bda3; 
    display: flex;
    align-items: center;
    border-radius: 0 0 5px 5px;
  }
  .cookie-wrapper .cookie-img, .cookie-wrapper .cookie-img svg {
    width: 80px;
    height: 80px;
  }
  .cookie-wrapper .cookie-content {
    width: calc(100% - 80px);
    padding-left: 15px;
    font-size: 12px;
    color: #ffffff;
  }
  .section-wrapper .inner-content{
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
  }
  /* contact page */
  .select_enquiry {
    position: relative;
  }
  .select_enquiry .enquiry_input {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
  }
  .select_enquiry .enquiry_input + span {
    display: block;
    padding: 10px;
    border-radius: 5px;
    background: #efefef;
    color: #787878;
  }
  .select_enquiry .enquiry_input + span i {
    margin-right: 0.2rem;
  }
  .select_enquiry .enquiry_input:checked + span {
    color: #fff;
    background: #2abda2;
  }
  /* Keyframes start here */
  @keyframes zoomIn {
    0%{
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
  }
  75%{
    opacity: 1;
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
  100%{
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  }
  @keyframes smoothHeader {
    0% {
        transform: translateY(-100px);
        -webkit-transform: translateY(-100px);
        -moz-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
    }
    100% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
  }

  @keyframes slightlyHide {
        0%{
            -webkit-box-flex: 0;
            -ms-flex: 0 0 25%;
            flex: 0 0 25%;
            max-width: 25%;
        }
        100%{
            width:0;
            max-width: 0;
            flex: 0 0 0;
            padding: 0;
        }
  }

  @keyframes slightlyShow {
    0%{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    100%{
        -webkit-box-flex: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
  }

  @keyframes slowDown {
        0%{
            transform: translateY(-50px);
            -webkit-transform: translateY(-50px);
            -moz-transform: translateY(-50px);
            -ms-transform: translateY(-50px);
            -o-transform: translateY(-50px);
            opacity: 0;
  }
        100%{
            transform: translateY(0px);
            -webkit-transform: translateY(0px);
            -moz-transform: translateY(0px);
            -ms-transform: translateY(0px);
            -o-transform: translateY(0px);
            opacity: 1;
  }
  }

  /* @keyframes slowmode {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
  } */
  /* button css previous next 9 october */
  .button-products {
    margin-left: auto;
    margin-top: 20px;
  }

  .button-products button.btn.previous-btn:hover {
    color: #fff;
    background-color:#00BDA3;
    border-color: #00BDA3;
  }
  .button-products button.btn.next-btn:hover {
    color: #fff;
    background-color: #00BDA3;
    border-color: #00BDA3;
  }
  .button-products button.btn.previous-btn {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
    padding: 10px 23px;

  }
  .button-products button.btn.next-btn {
    color: #fff;
    background-color: #212529;
    border-color: #212529;
    padding: 10px 23px;

  }


  /*  detail.blade page  */
  .listing-table{
    padding:15px 0px;
    overflow-y: auto;
  }

  .listing-table::-webkit-scrollbar{
    width:0;
    height: 0;
  }




  .listing-table .delivery-table:hover,
  .listing-table .Orders-table:hover,
  .listing-table .dispensary-table:hover
  {
  background-color: #39d1bcf2;
  /* color:#212529; */
  font-weight: 600;
  }

  .listing-table .All-table{
    background-color: #39d1bcf2;
    font-weight: 600;
  }


  .dispensary-table,.delivery-table,.Orders-table,.All-table{
  border-radius: 15px;
    cursor:pointer;
    color:#ffff;
    background-color: #212529;
  }

  /* .dispensary-table{
    background-color:#39d1bcf2;
    margin-left: 0px !important;
  } */
  .listing-table .btn{
    max-width: 140px;
    min-width: 120px;
    margin: 5px;
  }

  .blog-item-content {
    /* max-height: 400px; */
    min-height: 210px;
  }

  /* @media screen and (max-width: 992px) and (min-width:660px){
    .single-detail-header{
        margin-top:60px;}
  } */

  @media screen and (min-width: 767px){
    .account-list-item.list-inline-item a {
          padding: 10px 40px;
    }
    /*  .user-acc-deatils .user-image:hover ul {
          display: block;
      }*/
        header.sticky-header{
      animation: smoothHeader 0.8s alternate;
      -webkit-animation: smoothHeader 0.8s alternate;
        }
  }

  /* @media screen and (max-width: 660px){
    .single-detail-header{
        margin-top:35px;}

  } */

  div#blogs {
    padding-bottom:25px;
  }


  /* end */
  /* search suggestion start */
  .kushSearch-wrapper .mainSearch .autocom-box {

    background: #ffff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: absolute;

    right: -1px;
    border-left: 1px solid #ebebeb!important;
    border-right: 1px solid #ebebeb!important;
    top: calc(100% + 1px);
    padding: 18px 14px;
    z-index: 2;
    box-shadow: 0 28px 40px rgb(0 0 0 / 12%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 16px;
    min-height: 165px;
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    display:none;
    overflow-x: hidden;
  }


  .kushSearch-wrapper .mainSearch .autocom-box .list-head h6 {
    color: #00BDA3;
    font-size: 18px;
    text-transform: capitalize;
  }
  .kushSearch-wrapper .mainSearch .autocom-box .list-head a p {
    color: #000;
    font-size: 16px;
  }

  .kushSearch-wrapper .mainSearch .autocom-box .list-head a p:hover {
    color: #00BDA3;
  }
  .kushSearch-wrapper .mainSearch .autocom-box .list-headd h6 {
    color: #00BDA3;
    font-size: 18px;
    text-transform: capitalize;
  }
  .kushSearch-wrapper .mainSearch .autocom-box .list-headd a p {
    color: #000;
    font-size: 16px;
  }

  .kushSearch-wrapper .mainSearch .autocom-box .list-headd a p:hover {
    color: #00BDA3;
  }
  /*  */
  .listings-serch-main ul{
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .listings-serch-main ul li a {
    display: flex;
    align-items: flex-start;
    width: calc(100% - 28px);
    padding: 6px 8px;
    cursor: pointer;
  }

  .mainSearch .listings-serch-main ul li a  {
    width: 100%;
  }

  .listings-serch-main ul  li a img {
    border-radius: 6px;
    flex: 0 0 100px;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
  }
  .listings-serch-main img.align-self-start.mr-3 {
    width: 50px;
    height: 50px;
  }
  /* .listings-serch-main ul:not(#SearchProducts) .media {
    position: relative;
  } */
  .listings-serch-main ul:not(#SearchProducts) .media-body {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color:#000;
    font-size: 12px;
    margin-bottom: 15px;
  }
  .listings-serch-main ul .media .media-body h5 {
    color: #000;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    margin-bottom: 4px;
    -webkit-box-orient: vertical;
  }
  .listings-serch-main ul .media .media-body p {
    color: #000;
    font-size: 12px;
    line-height: 1.2em;
    height: 2.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 1px;
  }
  .listings-serch-main li:hover {
    background: #e7ebea;
  }
  /*  */
  /* close code */
  .kushSearch-wrapper .mainSearch span {
    position: absolute;
    right: 10px;
    bottom: 14px;
    color: #00BDA3;
    display:none;
  }
  .listings-serch-main .location-see {
    font-size: 12px;
    margin-bottom: 10px;
    color: #000;
    /* position: absolute; */
    /* margin-left: -4px; */
    margin-left: 2px;
    bottom: -14px;
  }
  .listings-serch-main .media {
    margin: 10px 0px;
    align-items: center;
    width: 100% !important;
  }

  .listings-serch-main .media .media-body {
      font-size: 12px;
      font-weight: 400;
      color: #000;
  }

  h6.no-result {
    padding: 60px 0;
  }
  .listings-serch-main li:not(:last-child) {
    border-bottom: 1px solid #e9e9e9 ;
  }
  /* close end */
  /* search suggestion end  */


  #products .col-md-4 .active-tab-header.fixed {
    overflow-y: scroll;
    height: 100%;
    max-height: 80vh;
  }

  /* Blog Page CSS */
  .post-inner .entry-content h3 {
      margin: 3rem auto 1rem;
  }

  /* footer-logo start */
  @media only screen and (min-width: 768px) and (max-width: 1020px){
    .Home_Url .footer-logo {
        width: 32%;
    }
    }
  @media only screen and (min-width: 440px) and (max-width: 765px){
        .Home_Url .footer-logo {
            width: 25%;
        }
        
        }
  @media only screen and (max-width: 440px) {
        .Home_Url .footer-logo {
            width: 20%;
        }
      
  }
  /* footer-logo end */
  /* @media only screen and (max-width: 990px) {
    .login-wrapper {
        margin-top: 50px;
    }
  } */
  @media only screen and (max-width: 880px) {
  .Home_Url.header-logo {
    width: 170px;
  }
  }

  /* <----- footer menus 10-04-23-----> */

  .footer-social-menus {
    padding-top: 20px;
  }
  .footer-menu-item {
    width: 50px;
  }

  .footer-menu-item svg {
    width: 23px;
    fill: #00bda3;
    margin-top: 2px;
  }

  .place-icons {
    padding: 0px !important;
  }

  .testimonial-slider{
  padding: 30px 20px!important;
  }

  .testimonial_profileImg {
      width: 60px;
      border: 4px solid #fff;
      box-shadow: 0px 2px 26px 0px rgb(0 0 0 / 15%);
      border-radius: 50%;
  }

  /* 30-05-23 */
  body .gm-style-iw.gm-style-iw-c button span {
    margin: 0 !important;
  }
  img.user-db {
    width: 34px;;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #fff;
  }

  img.Icon-image {
      width: 22px !important;
      position: absolute;
      right: 1px;
      top: -42px;
      z-index: 99;
      display: none;
  }


 /* View All Listing page CSS */

.Listing_cardWrapper .listing_card {
    max-width: 90%;
    width: 100%;
}

.Listing_cardWrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 15px;
}

.pac-container {
  z-index: 99999;
}

/*.google_searchBox img {
    width: 24px;
    font-size: 16px;
    color: #00bdb8;
}*/

.google_searchBox img {
    width: 20px;
    font-size: 16px;
    filter: grayscale(1) invert(1) brightness(2.5);
    margin-right: 4px;
}

.google_searchBox .clr_green {
    color: #00bda3;
}

.countryModal 
 .modal-body .map_image {
    max-width: 65%;
    margin-bottom: 30px;
    margin-top: -10px;
}

.countryModal .modal-body h4 {
    font-size: 24px;
    margin-top: 18px;
}

.countryModal .modal-body  {
    font-size: 14px;
}

.countryModal 
 .modal-content {
    border: 1px solid #626262;
    background-image: linear-gradient(355deg, #effffd, transparent);
    border-radius: 22px;
}

.select_country 
 .country_item {
    border: 2px solid #f3f3f3;
    padding: 15px 12px;
    display: flex;
    color: #fff;
    align-items: center;
    flex-direction: column;
    row-gap: 15px;
    transition: 0.3s ease-in-out;
    width: 25%;
    border-radius: 8px;
    box-shadow: 7px 7px 40px 0px rgba(0 0 0 / 10%);
}

.imp_infoAlert {
    box-shadow: 3px 9px 40px -10px #10101029;
/*    background-color: #60efdb;
    border-color: #ffeeba;*/
    POSITION: fixed;
    bottom: -16px;
    z-index: 99999;
}

body:has(.imp_infoAlert) #google_translate_element select {
    bottom: 69px;
    right: 16px;
}

body:has(.imp_infoAlert) .copyright {
    margin-bottom: 124px;
}

body:has(.imp_infoAlert) .hero-section-content .row {
    justify-content: center;
}

.select_country .country_item img {
    width: 40px;
}

.select_country {
    column-gap: 2%;
    justify-content: center;
    margin-top: 22px;
}

.country_item.thai_fs {
    background: #c7c8c9;
}

.country_item.thai_fs {
    background: #2d2a4a3d;
}

.select_country .country_item:hover , .select_country .country_item.active{border-color: #00cbb0;}

.countryModal {
    transform: translateY(-226px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-226px) rotate3d(0, 1, 1, 45deg);
    transition: 0.6s ease-in-out;
}

.countryModal.show {
    transform: translateY(0px) rotate3d(0, 0, 0, 0deg);
    opacity: 1;
    visibility: visible;
}

.country_flags {
    column-gap: 12px;
}

.country_flags .flag_image {
    width: 100%;
    max-width: 34px;
}

.country_flags 
 .flag_icon.active::after {
    content: "";
    height: 3px;
    width: 101%;
    position: absolute;
    left: 0px;
    bottom: -9px;
    background: #00bda3;
}

.country_flags 
 .flag_icon {
    display: inline-block;
    position: relative;
}

.prod-typee p {
    font-size: 14px;
}

.chosen-select, .chosen-select:focus, .chosen-select:focus-visible {
    border: 0;
    background: none;
    -webkit-appearance: none;
    outline: none;
}

#recmendations {
  font-weight:700;
}

.filter_op.collapsed .fa.fa-minus, .filter_op .fa.fa-plus {
    display: none;

}

.filter_op .fa.fa-minus, .filter_op.collapsed .fa.fa-plus {
    display: block;
    opacity: 0.7;
}

.filter_op {
    border-bottom: 1px solid #e4e7e7;
    padding-bottom: 15px;
    padding-top: 15px;
    margin-bottom: 20px;
}

.filter_op.collapsed {
    margin-bottom: 0;
}

.filter_op h5 {
    font-size: 18px;
}

.filter_check .custom-control-input {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
}

.filter_check .custom-control-label::before, .filter_check .custom-control-label::after {
    display: none;
}

.filter_check {
    position: relative;
    padding: 0 5px;
    max-width: 33%;
    width: 100%;
}

.filter_check.custom-control label{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #e4e7e7;
    padding: 10px 5px;
    border-radius: 5px;
    flex-wrap: wrap;
}

.custom-checkbox.filter_check .custom-control-label {
    font-weight: 700;
    color: #212529;
}

.filter_check label {
    opacity: 0.8;
}

.filter_check .custom-control-input:checked + label {
    border-color: #00bda3;
    opacity: 1;
}

.cc_Text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.filter_selected_list {
    gap: 10px;
}

.filter_ss {
    background: #00bda3;
/*        background: #161d17;*/
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    padding-left: 11px;

}

.filter_ss .close {
    padding: 0px;
    padding-right: 7px;
    font-size: 18px;
    top: 5px;
}

/*.filter_options {
    max-height: 400px;
    overflow: auto;
}*/

.sa_btn {
    font-weight: 700;
    margin-top: 10px;
    display:block;
}

.prod-search.st_pro span {
    top: 14px;
    z-index: 1;
    left: 19px;
}

.show_all_ef {
    max-height: 320px;
    overflow: hidden;
}

.show_all_ef.overflow_ef {
    overflow: auto;
}

.columns_g .product-favorites {
    right: 15px;
}

/*.columns_g .slider-item .slider-item-img {
    height: auto;
    width: 172px;
}*/

.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.coor_pill {
    padding-left: 4px;
    padding-right: 4px;
    background: #000;
    border-radius: 32px;
}

.myrcene {
  background: #5c068c;
}

.caryophyllene {
  background: #aa0061;
}

.limonene {
  background: #eedc00;
}

.terpinolene {
  background: #ff671f;
}

.pinene {
  background: #00af66;
}

.ocimene {
  background: #e0004d;
}

.linalool {
  background: #5c068c;
}

.slider-item-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    justify-content: end !important;
}

.strain_read_m {
    align-items: flex-end;
    background-image: linear-gradient(hsla(0, 0%, 100%, .3), #f8f8f6 40%);
    cursor: pointer;
    display: flex;
    font-weight: 600;
    height: 48px;
    justify-content: flex-start;
    margin-bottom: 24px;
    margin-top: -24px;
    position: relative;
    transition: background-image .2s ease-in-out;
    width: 100%;
    z-index: 10;
}

.strains_header {
    height: 85px;
    overflow: hidden;
}

.strains_header.show_full {
    height: auto;
    overflow: visible;
}

.sh_box {
    font-size: 14px;
}

.bar_bg {
    background-color: #d9d9d9 !important;
    border-radius: 12px;
    margin-top: 8px;
    position: relative;
}

.bar_bg_point {
    background: #00bda3;
    display: block !important;
    border-radius: 12px;
}

.bottom-1 {
    bottom: 2px;
}

.tooltip_dropdown.show, .tooltip_dropdown {
    width: 300px;
    right: 0;
    left: auto;
    background: #000000b8;
    color: #fff;
    font-size: 9px;
    top: 19px;
}

.tooltip_dropdown p {
    font-size: 14px;
}

.tooltip_hover:hover .tooltip_dropdown {
    display: block !important;

}

/*.close_btn {
    right: -10px;
    top: -10px;
    opacity: 0.6;
}*/

/*.reported_box {
    background: #abddd6;
    border-radius: 32px;
    padding: 10px;
}*/

.btn_effect {
    width: 100%;
    color: #00bda3;
    font-weight: 700;
    background: #fff;
    box-shadow: 7px 7px 47px #0000001c;
}

.btn_effect svg {
    margin-right: 10px
}

.effects_link {
    text-decoration: underline;
    color: #212529;
}

.reported_list li {
    margin-bottom: 24px;
}

.reported_list li p {
    font-size: 14px;
}

.reported_list li p a {
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.text_green {
    color: #00bda3;
}

.list-inline-item .strain_btn_review {
    border: 1px solid #00bda3;
    color: #00bda3;
    border-radius: 4px;
}

.list-inline-item .strain_btn_review:hover {
    color: #fff !important;
    background: #00bda3;
}

.related_products_video tr:first-child td, .related_products_video tr:nth-child(2) td, .related_products_video tr th:first-child {
    width: 145px;
}

.related_products_video tr .slider-item-content h6 {
    white-space: unset;
    font-size: 16px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.related_products_video tr th, .related_products_video tr td {
    width: 167px;
}

.related_products_video tr td p {
    margin-bottom: 0;
}

.effects_in_re {
    column-gap: 15px;
}

.like_for {
    color: #212529;
    margin-top: 5px;
    display: block;
}

.caryophyllene_svg {
    fill: #aa0061;
    margin-right: 6px;
}

.related_products_video tr.heading_row th:first-child {
    width: fit-content;
}

.heading_row {
    background: #00bda31f;
}

.single-detail-wrapper .product-content-wrapper {
    box-shadow: none;
    background: transparent;
}

.underline_link {
    text-decoration: underline;
    font-weight: 600;
    text-underline-position: under;
    text-decoration-thickness: 2px;
}

.strain_highlithes .title {
    min-width: 75px;
}

.hw_values {
    display: flex;
    flex-wrap: wrap;
}

.top-1 {
    margin-top: 3px;
}

.listings-serch-main ul .media .media-body {
    max-height: 80px;
}


/* Browse By Category sections CSS */
.category-wrapper {
    padding: 60px 0;
    background: #f9fafc;
}

.category-card {
    display: block;
    padding: 25px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    text-decoration: none;
}

/*.category-card {
    display: block;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}
*/
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.category-image-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 15px;
}

/*.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}*/

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

/*.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    aspect-ratio: 1 / 1;
}*/

.category-card:hover img {
    transform: scale(1.08);
}

/* Gradient Ring Effect */
.category-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6f42c1, #20c997, #ff7f50);
    z-index: 1;
    filter: blur(6px);
    opacity: 0.7;
}

/*.category-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    transition: color 0.3s ease;
}*/

.category-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    transition: color 0.3s ease;
    position: absolute;
    z-index: 2;
    bottom: 2px;
    left: 10px;
    width: calc(100% - 20px);
    background: #ffffffd1;
    padding: 8px;
    border-radius: 10px;
}

.category-card:hover .category-title {
    color: #00bda3;
}

/* Arrows modern style */
.category-prev,
.category-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.category-prev:hover,
.category-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.category-prev { left: -20px; }
.category-next { right: -20px; }



.blog-read-more .btn {
    background-color: #2bb673;
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.blog-read-more .btn:hover {
    background-color: #239a60;
}