:root, .light{
  --bg-color: #f6f6f6;
  --b-g-color: #fff;
  --color-text: #282828;
  --header-color: rgba(255, 255, 255, 0.9);
  --tx-color: #fff;
  --button-color: #282828;
  --active-color: #f6f6f6;
  --scrollbar-color: #cccccc;
}
.dark{
  --bg-color: #181818;
  --b-g-color: #242526;
  --color-text: #fff;
  --header-color: rgb(36, 37, 38, 0.9);
  --tx-color: #282828;
  --button-color: #fff;
  --active-color: #2c2d2e;
  --scrollbar-color: #2c2d2e;
}
::-webkit-scrollbar{
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track{
  border-radius: 6px;
}
::-webkit-scrollbar-thumb{
  border-radius: 5px;
  background-color: var(--scrollbar-color);
}
html{
  scroll-behavior: smooth;
}
body{
  padding: 0;
  margin: 0;
  font-family: Raleway;
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
}
body.nav-open{
  overflow: hidden;
}
.bi-logo-wrapper{
  width: 57px;
  margin: 0;
  position: absolute;
  padding-top: 2px;
  z-index: 1;
}
.bi-logo{
  display: block;
  height: 100%;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
.bi-logo:hover{
  opacity: 0.9;
} 
header{
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 50px;
  background-color: var(--header-color);
  width: 100%;
  box-sizing: border-box;
  height: 61px;
  backdrop-filter: saturate(180%)blur(10px);
  -webkit-backdrop-filter: saturate(180%)blur(10px);
}

header nav{
  float: left;
  position: absolute;
  top: 5px;
  right: 50px;
  display: flex;
}
header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
header nav ul li {
  list-style: none;
  margin: 0px 2px;
}
header nav ul li::after{
  content: "";
  display: block;
  background-color: var(--color-text);
  height: 2px;
  width: 0%;
  border-radius: 20px;
  transition: width 0.3s, opacity 0.3s;
  transform: translateY(3px);
  opacity: 0;
}
header nav ul li:hover::after{
  width: 100%;
  opacity: 1;
}
header nav ul li:nth-child(2)::after{
  content: "";
  display: none;
}
header nav ul li a{
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: var(--color-text);
  text-decoration: none;
  display: block;
  font-size: 13px;
  -webkit-tap-highlight-color: transparent;
}
.active-line{
  background-color: var(--color-text);
  height: 2px;
  width: 100%;
  border-radius: 20px;
  transform: translateY(3px);
}
.menu__toggler{
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 9999;
  height: 28px;
  width: 28px;
  outline: none;
  cursor: pointer;
  display: none;
  justify-content: center;
  padding-top: 14px;
  -webkit-tap-highlight-color: transparent;
}
span.menu,
span.menu::after,
span.menu::before{
  position: absolute;
  content: '';
  width: 23px;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 20px;
  transition: 500ms cubic-bezier(0.77,0,0.175, 1);
}
span.menu::before{
  top: -8px;
}
span.menu::after{
  top: 8px;
}
.menu__toggler.active > span.menu{
  background: transparent;

}
.menu__toggler.active > span.menu::after,
.menu__toggler.active > span.menu::before{
  top: 0;
}
.menu__toggler.active > span.menu::before{
  transform: rotate(-225deg);
}
.menu__toggler.active > span.menu::after{
  transform: rotate(225deg);
}
@media (max-width: 600px){
  .menu__toggler{
    display: flex;
  }
  .bi-logo-wrapper{
    width: 42px;
    padding-top: 3px;
  }
  .logo{
    height: 42px;
    width: 42px;
  }
   header{
   position: relatieve;
   height: 50px;
 }

   .menu-toggle{
    display: block;
    position: absolute;
    top: 0px;
    left: 20px;
 }

   .menu-toggle:hover{
    opacity: 0.8;
 }

   header nav{
   position: absolute;
   width: 60%;
   height: calc(100vh - 0px);
   background: var(--b-g-color);
   top: 0px;
   left: -45%;
   transition: 0.5s;
   text-align: left;
   opacity: 0;
  }

   header nav.active{
   transform: translateX(75%);
   opacity: 1;
   }
   header nav ul{
    display: block;
    padding-top: 70px;
    transform: translateY(80px);
    opacity: 0;
    width: 100%;
  }
  header nav.active ul{
    transform: translate(0px);
    transition: transform 1s, opacity 1s;
    opacity: 1;
    transition-delay: 0.2s;
    padding-left: 10px;
    padding-right: 10px;
  }
  header nav ul li a{
    font-size: 16px;
  }
  header nav ul li a.active{
    background-color: var(--active-color);
    border-radius: 10px;
  }
  .active-line{
    display: none;
  }
  header nav ul li::after{
    display: none;
    content: "";
  }
}
.menu-toggle{
  color: #fff;
  float: left;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  -webkit-tap-highlight-color: transparent;
 }
 .listings-text{
  width: 100%;
  background-color: transparent;
 }
 .listings-text h1{
  font-size: 70px;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 10px;
 }
 .line{
  width: 90px;
  height: 3px;
  background-color: var(--color-text);
  border: 1px solid var(--color-text);
 }
.places{
  width: 100%;
  display: block;
  text-align: center;
}
.places h1{
  font-size: 47px;
  color: var(--color-text);
  margin: 0px;
  padding-top: 20px;
  padding-bottom: 0px;
  font-weight: normal;
}
.listings-info{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0px 30px;
}
@media (min-width: 1900px){
  .listings-info{
    padding: 0px 10vw;
  }
}
.company-info{
  width: 440px;
  border-radius: 20px;
  background-color: var(--b-g-color);
  /*box-shadow: 0px 4px 10px 5px rgba(190, 190, 190, 0.15);*/
  margin: 10px;
}
.new-text{
  position: absolute;
  padding-top: 9px;
  font-size: 12px;
  padding-left: 12px;
  color: #f56300;
}
.address-info{
  padding-left: 15px;
  padding-bottom: 5px;
  padding-top: 10px;
}
.address-icon, .phonenumber-icon{
  font-size: 18px;
  color: var(--color-text);
}
.mail-icon{
  font-size: 16px;
  color: var(--color-text);
}
.address-text, .phonenumber-text, .email-text{
  padding-left: 10px;
  color: var(--color-text) !important;
}
.phonenumber-text{
    text-decoration: none;
    display: inline-block;
}
.phonenumber-info{
  padding-left: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.email-info{
  padding-left: 14px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.email-link{
  text-decoration: none;
  color: var(--color-text);
}
.email-link:hover{
  text-decoration: underline;
}
.address-link:hover, .phonenumber-link:hover{
  text-decoration: underline;
}
.company-info h2{
  padding-top: 15px;
  padding-left: 40px;
  font-size: 20px;
  color: var(--color-text);
  margin: 0px;
  font-weight: 700;
}
.company-category-wrapper {
  padding-left: 40px;
}
.company-category {
  color: #929292;
  font-size: 15px;
}
span.social{
  float: right;
  font-size: 22px;
  padding-top: 15px;
  padding-right: 15px;
}
span.social a{
  color: var(--color-text);
}
.open-closed-wrapper{
  float: right;
  padding-top: 15px;
  padding-right: 15px;
}
.closed{
  font-weight: 600;
  color: #d93025;
  }
.open{
  font-weight: 600;
  color: green; 
}
.closes-opens-soon{
    font-weight: 600;
    color: #f56300;
}
.ads{
  color: var(--color-text);
  font-size: 17px;
  font-weight: 800;
  padding-left: 5px;
}
.fa-instagram{
  font-size: 23px;
}
.content-wrapper{
  padding-left: 15px;
  padding-bottom: 15px;
  padding-top: 10px;
}
.callnow-wrapper, .getdirections-wrapper, .sendemail-wrapper, .visit-profile-wrapper{
  display: inline-block;
  margin-right: 10px;
}
.callnow, .getdirections, .sendemail, .visit-profile{
  display: block;
  color:  var(--tx-color);
  background-color: var(--button-color);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  -webkit-tap-highlight-color: transparent;
}
.visit-profile{
  display: block;
  color:  var(--color-text);
  background-color: var(--active-color);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  -webkit-tap-highlight-color: transparent;
}
.edit-button-wrapper{
  float: right;
  display: inline-block;
  padding-right: 20px;
  opacity: 0;
  visibility: hidden;
}
.company-info:hover > .content-wrapper .edit-button-wrapper{
    opacity: 1;
    visibility: visible;
}
.edit-button{
  padding: 6px;
  display: block;
  color: var(--button-color);
  font-size: 18px;
}
.next-previous-button-wrapper{
    width: 100%;
    max-width: 1000px;
    padding-top: 15px;
}
@media (max-width: 1100px){
    .next-previous-button-wrapper{
        padding-right: 30px;
    }
}
.next-previous-button{
    float: right;
    display: flex;
}
.previous-button{
   width: 130px !important; 
}
.next-button, .previous-button{
    display: block;
    background: var(--button-color);
    padding: 10px;
    border-radius: 99999px;
    text-align: center;
    color: var(--b-g-color);
    text-decoration: none;
    width: 115px;
    font-size: 15px;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
}
.next-button{
    margin-left: 15px;
}
.total-items h2{
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  color: var(--color-text);
  padding-left: 100px;
  padding-right: 100px;
  margin: 0px;
  padding-top: 10px;
  padding-bottom: 20px;
}
.no-result{
  color: var(--color-text);
  font-size: 25px;
  text-align: center;
}
@media (max-width: 450px){
  .listings-info h2{
    width: 215px;
  }
}
@media (max-width: 600px){
  .listings-text h1{
    font-size: 47px;
    margin-bottom: 25px;
    margin-top: 15px;
  }
  .places h1{
    font-size: 36px;
    padding-top: 15px;
  }
  .total-items h2{
    padding-left: 25px;
    padding-right: 25px;
  }
  .no-result{
    font-size: 20px;
  }
  .edit-button-wrapper{
      opacity: 1;
      visibility: visible;
  }
  .next-button, .previous-button{
      font-size: 14px;
      padding: 9px;
      width: 105px;
  }
}
@media (max-width: 1200px){
  .listings-info{
    padding-left: 0px;
    padding-right: 0px;
  }
}
form{
  width: 100%;
  display: flex;
}
.form-control{
  border: none;
  outline: none;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 8px;
  height: 32px;
  background-color: var(--b-g-color);
  font-family: Raleway;
  color: var(--color-text);
  font-size: 14px;
  width: 75%;
  display: inline-block;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
::placeholder{
    color: #929292;
    font-size: 14px;
}
button{
  background: none;
  border: 0;
  outline: none;
  box-sizing: content-box;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  overflow: visible;
  padding: 0;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}
.search-bar-wrapper{
  width: 100%;
  height: 42px;
  padding-top: 90px;
}
.search-bar{
  width: 260px;
  height: 100%;
  background-color: var(--b-g-color);
  border-radius: 9999px;
  float: right;
  margin-right: 100px;
}
.search-button{
  display: inline-block;
  height: 42px;
  justify-content: center;
  padding-left: 10px;
}
.search-icon{
  display: block;
  height: 22px;
  width: 22px;
}
.clear-button{
  display: inline-block;
  height: 42px;
  justify-content: center;
  padding-right: 10px; 
}
.clear-icon{
  display: block;
  height: 20px;
  width: 20px;
}
@media (max-width: 600px){
  .search-bar{
    margin: 0;
    float: none;
  }
  .search-bar-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 80px;
    height: 100%;
  }
  .form-control{
    height: 33px;
  }
}
footer{
  display: block;
  width: 100%;
}
.copyright-text{
  display: block;
  padding: 0px 80px;
  height: 100px;
  background-color: var(--b-g-color);
}
.copyright-text h1{
  font-size: 16px;
  font-weight: normal;
  float: left;
  margin-top: 40px;
  color: var(--color-text);
}
.social-bar{
  display: block;
  padding-top: 40px;
  float: right;
  -webkit-tap-highlight-color: transparent;
}
.social-bar a{
  color: var(--color-text);
}
@media (max-width: 600px){
  .copyright-text{
    padding: 0px 80px;
    justify-content: center;
    float: none;
    text-align: center;
    padding: 0px;
    height: 125px;
  }
  .copyright-text h1{
    margin-top: 0px;
    position: relative;
    top: 80px;
    float: none;
  }
  .social-bar{
    float: none;
    font-size: 23px;
    padding: 0px;
  }
}
.social-bar a i.fab.fa-facebook::before{
  padding: 0px 10px;
  -webkit-tap-highlight-color: transparent;
}
.social-bar a i.fab.fa-twitter::before{
  padding: 0px 10px;
  -webkit-tap-highlight-color: transparent;
}
.theme-switch-wrapper {
  position: fixed;
  top: 75px;
  width: 300px;
  border-radius: 20px;
  right: 10px;
  background-color: var(--b-g-color);
  box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.04);
  transition: 0.2s opacity cubic-bezier(0.4, 0, 0.2, 1), 0.2s transform cubic-bezier(0.4, 0, 0.2, 1), 0.2s visibility cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.6);
  transform-origin: top right;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.theme-switch-wrapper h3{
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: 10px;
  padding-top: 5px;
}
.appearance-section{
  cursor: pointer;  
  padding: 12px 0px;
  margin: 0px 12px;
  border-radius: 8px;
}
.appearance-section:hover{
  background-color: var(--active-color);
}
.appearance-section h2{
  font-weight: normal;
  font-size: 15px;
  margin-left: 50px;
  margin-bottom: 0px;
  margin-top: 0px;
  color: var(--color-text);
}
#default-mode.appearance-section{
  margin-bottom: 10px;
}
.check-wrapper{
  position: absolute;
  padding-left: 15px;
  display: none;
}
.check-line{
  fill: var(--color-text);
}
.theme-switch-wrapper.active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.dots{
  position: absolute;
  right: 20px;
  float: right;
  width: 20px;
  height: 50px;
  -webkit-tap-highlight-color: transparent;
  color: var(--color-text);
}
.dots.color-change{
  color: var(--color-text);
}
.dots i.fas.fa-ellipsis-v{
  position: absolute;
  cursor: pointer;
  font-size: 22px;
  padding: 20px 6px;
  -webkit-tap-highlight-color: transparent;
}
.theme-switch-wrapper h1{
  font-size: 15px;
  font-weight: normal;
  position: absolute;
  left: 25px;
  width: 120px;
  top: 33px;
  color: var(--color-text);
}
@media (max-width: 600px){
  .theme-switch-wrapper {
    width: 250px;
  }
  .theme-switch-wrapper h1{
    top: 22px;
  }
  .theme-switch-wrapper{
    top: 60px;
  }
  .dots i.fas.fa-ellipsis-v{
    padding: 14px 6px;
    -webkit-tap-highlight-color: transparent;
  }
  .appearance-section:hover{
    background-color: unset;
  }
}
.category-wrapper{
  position: relative;
  height: 100%;
}
.category-items{
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  list-style: none;
  display: inline-block;
  margin: auto;
  width: 100%;
  padding: 0;
}
.category-items li{
  display: inline-block;
  vertical-align: top;
  margin: 0 -.11765em;
  padding: 0 5px;
}
.category{
  padding: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.category-items a {
  text-decoration: none;
  background-color: var(--b-g-color);
  border-radius: 20px;
  color: var(--color-text);
  display: block;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 15px;
  -webkit-tap-highlight-color: transparent;
}
.category-items a:hover{
  background-color: var(--button-color) !important;
  color: var(--tx-color) !important;
}
.category-items li:first-child{
  margin-left: 10px;
}
.category-items li:last-child{
  margin-right: 10px;
}
.category-items::-webkit-scrollbar {
  display: none;
}
.category-active{
  background-color: var(--button-color) !important;
  color: var(--tx-color) !important;
}
.list-company{
  padding-top: 7px;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
}
.list-button {
  display: inline-block;
  color: var(--tx-color);
  background-color: var(--button-color);
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-weight: 700;
}
@media (max-width: 780px){
  .list-company{
    display: none;
  }
}
@media (max-width: 600px){
  .list-company{
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }
  .list-button{
    font-size: 10px;
    padding: 14px 0px;
    width: 100%;
  }
}
@media (max-width: 340px) {
  .list-button{
    font-size: 8px;
  }
}
.list-company-wrapper{
  position: fixed;
  bottom: 0px;
  width: 100%;
  justify-content: center;
  text-align: center;
  height: 120px;
  background-image: linear-gradient(0.1deg, rgba(0, 0, 0, 0.20) 40.94%, rgba(24, 25, 26, 0) 99.85%);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
.list-company-content-mobile{
  padding-top: 50px;
  padding-left: 35px;
  padding-right: 35px;
}
.list-company-button{
  display: inline-block;
  color: var(--tx-color);
  background-color: var(--button-color);
  text-decoration: none;
  padding: 15px 0px;
  border-radius: 30px;
  font-size: 12px;
  width: 100%;
  font-weight: 700;
  -webkit-tap-highlight-color: transparent;
}
.search-button-bottom{
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 0px;
  height: 0px;
  padding-bottom: 25px;
  padding-right: 25px;
  opacity: 0;
  transition: 0.3s ease;
  visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}
.search-button-bottom.show{
  width: 50px;
  height: 50px;
  opacity: 1;
  visibility: visible;
}
.search-button-icon{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--button-color);
  border-radius: 9999px;
  box-shadow: 0px 4px 10px 4px rgb(0 0 0 / 4%);
  cursor: pointer;
}
.search-button-icon svg{
  width: 28px;
  height: 28px;
  fill: var(--tx-color);
  transform: scale(0);
  transition: 0.3s transform ease;
}
.search-button-bottom.show > .search-button-icon svg{
  transform: scale(1);
}
@media(max-width: 600px){
  .list-company-wrapper.change{
      visibility: unset;
      opacity: 1;
  }
  .list-company-wrapper.change.fadeOut{
      visibility: hidden;
      opacity: 0;
  }
  .search-button-bottom{
    padding-bottom: unset;
    padding-right: 35px;
    bottom: 80px;
    height: 50px;
    width: 50px;
  }
}
.backdrop-background{
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
  z-index: 2;
  visibility: hidden;
}
.backdrop-background.active{
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.3);
  visibility: visible;
}
/*box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.15);*/