:root, .light{
    --bg-color: #f6f6f6;
    --b-g-color: #fff;
    --color-text: #282828;
    --header-color: rgba(255, 255, 255, 0.9);
    --button-color: #282828;
    --tx-color: #fff;
    --active-color: #f6f6f6;
    --scrollbar-color: #cccccc;
    --disabled-button: #d3d3d3;
    --disabled-button-text: #8f8f8f;
    --company-logo-color: #d3d3d3;
}
.dark{
    --bg-color: #0f0f0f;
    --b-g-color: #1a1a1a;
    --color-text: #fff;
    --header-color: rgb(26, 26, 26, 0.9);
    --button-color: #fff;
    --tx-color: #282828;
    --active-color: #242526;
    --scrollbar-color: #242526;
    --disabled-button: #303030;
    --disabled-button-text: #8f8f8f;
    --company-logo-color: #303030;
}
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    border: 0;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border-spacing: 0;
}
.is_not_mac > ::-webkit-scrollbar{
    width: 7px;
    height: 7px;
}
.is_not_mac > ::-webkit-scrollbar-track{
    border-radius: 6px;
}
.is_not_mac > ::-webkit-scrollbar-thumb{
    border-radius: 5px;
    background-color: var(--scrollbar-color);
}
html {
    scroll-behavior: smooth;
}
html.search-mobile{
    overscroll-behavior: none;
}
body{
    font-family: Raleway;
    overflow-x: hidden;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}
.nav-open{
    overflow: hidden;
}
.search-mobile{
    margin: 0;
    position: relative;
    overflow: auto !important;
    height: 100% !important;
}
html.search-mobile{
    margin-top: 0!important;
    overscroll-behavior: none;
}
header{
    display: flex;
    position: fixed;
    top: 0px;
    left: 0px;
    padding-left: 50px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
    height: 60px;
    z-index: 10;
    background-color: var(--header-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.menu-toggle-section{
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.menu-toggle{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    height: 28px;
    width: 28px;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
span.menu,
span.menu::after,
span.menu::before{
    position: absolute;
    content: '';
    width: 23px;
    height: 1.5px;
    background-color: var(--color-text);
    border-radius: 20px;
    transition: 500ms cubic-bezier(0.77,0,0.175, 1);
}
span.menu::before{
    margin-top: -8px;
}
span.menu::after{
    margin-top: 8px;
}
.menu-toggle.active > span.menu{
    background: transparent;
}
.menu-toggle.active > span.menu::after,
.menu-toggle.active > span.menu::before{
    margin-top: 0px;
}
.menu-toggle.active > span.menu::before{
    transform: rotate(-225deg);
}
.menu-toggle.active > span.menu::after{
    transform: rotate(225deg);
}
.bi-logo-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.bi-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
}
.bi-logo:hover{
    opacity: 0.9;
}
header nav{
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    flex-grow: 1;
}
header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
nav ul li {
    list-style: none;
    height: 100%;
    margin: 0px 2px;
    position: relative;
}
nav ul li::after{
    position: absolute;
    bottom: 1px;
    content: "";
    display: block;
    background-color: var(--color-text);
    height: 2px;
    width: 0%;
    border-radius: 20px;
    transition: width 0.3s, opacity 0.3s;
    opacity: 0;
}
nav ul li:hover::after{
    width: 100%;
    opacity: 1;
}
nav ul li a{
    text-decoration: none;
    color: var(--color-text);
    padding: 0px 20px;
    font-size: 14px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}
.active-line{
    position: absolute;
    bottom: 1px;
    background-color: var(--color-text);
    height: 2px;
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s;
}
.list-company-button-section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 15px;
}
.list-company-button{
    font-size: 12px;
    color: var(--tx-color);
    background-color: var(--button-color);
    font-weight: 600;
    text-decoration: none;
    border-radius: 99999px;
    padding: 11px 25px;
}
header.active .list-company-button{
    color: var(--tx-color);
    background-color: var(--button-color);
}
.options-wrapper{
    display: flex;
}
.dots{
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text);
    cursor: pointer;
    padding: 0px 10px;
    -webkit-tap-highlight-color: transparent;
}
.main-content{
    padding-top: 110px;
}
.listings-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.listings-section h1{
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text);
}
.line{
    margin-top: 15px;
    height: 4px;
    width: 143px;
    background-color: var(--color-text)
}
.listings{
    padding-top: 25px;
    width: 100%;
}
.search-bar-wrapper{
    width: 100%;
    box-sizing: border-box;
    padding: 0px 25px;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.search-bar-section{
    background-color: var(--b-g-color);
    border-radius: 25px;
    width: 100%;
    max-width: 550px;
}
.search-bar form {
    padding: 0px 15px;
    display: flex;
}
.close-search-bar-button-section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.close-search-bar-button{
    height: 24px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.search-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-icon{
    display: block;
    height: 22px;
    width: 22px;
}
.icon {
    fill: var(--color-text);
}
.search-form-control{
    border: none;
    outline: none;
    padding: 10px;
    height: 28px;
    font-size: 15px;
    background-color: transparent;
    font-family: Raleway;
    color: var(--color-text);
    width: 100%;
    display: inline-block;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}
.clear-button-section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.clear-button{
    height: 22px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.icon-color{
    fill: var(--color-text);
}
.search-suggestions-wrapper{
    position: absolute;
    max-width: 550px;
    width: calc(100% - 50px);
}
.search-suggestions-section{
    background-color: var(--b-g-color);
    padding: 15px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.04)
}
.search-bar-wrapper.mobile{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 0px;
    z-index: 10;
    padding: 0px;
    display: flex;
}
.search-bar-wrapper.mobile .search-bar-section{
    height: 100%;
    width: 100%;
    border-radius: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: unset;
}
.search-bar-wrapper.mobile .search-suggestions-wrapper{
    height: 100%;
    width: 100%;
    position: unset;
    overflow-y: scroll;
    max-width: unset;
}
.search-bar-wrapper.mobile .search-suggestions-section{
    box-shadow: unset;
    position: unset;
    background-color: transparent;
    padding: 0px 20px;
    margin-top: 15px;
}
.search-bar-wrapper.mobile .search-bar{
    margin: 10px;
    background-color: var(--active-color);
    border-radius: 999px;
}
.search-background{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.companies {
    list-style: none;
    display: flex;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}
.companies:hover{
    background-color: var(--active-color);
}
.search-icon-suggestions {
    width: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.search-icon-suggestions > .icon {
    height: 20px;
    width: 20px;
}
.building-icon{
    color: #929292;
}
.items {
    color: var(--color-text);
    padding-left: 10px;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
}
.items-text {
    font-weight: 600;
}
.ligt-text{
    font-weight: normal;
}
.category{
    font-size: 12px;
    color: #929292;
}
.categories-wrapper{
    display: flex;
    text-align: center;
    padding-top: 20px;
}
.categories-section{
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: inline-block;
    width: 100%;
    padding: 0;
}
.categories-section::-webkit-scrollbar {
    display: none;
}
.categories{
    display: inline-flex;
    margin: 0 -0.11765em;
    padding: 0px 5px;
}
.categories:first-child {
    margin-left: 10px;
}
.categories:last-child {
    margin-right: 10px;
}
.category-url{
    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;
    font-weight: 500;
    -webkit-tap-highlight-color: transparent;
}
.category-url:hover, .category-url.category-active {
    background-color: var(--button-color) !important;
    color: var(--tx-color) !important;
}
.listings-info-wrapper{
    padding: 15px 0px;
}
.top-results{
    text-align: center;
}
.top-results h2{
    margin: 0px;
    font-weight: 600;
    font-size: 25px;
    color: var(--color-text);
}
.listings-info{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px 30px;
    max-width: 1600px;
    margin: auto;
}
.no-result-wrapper{
    height: calc(100vh - 510px);
}
.no-result{
    font-size: 20px;
    margin-top: 50px;
    text-align: center;
    padding: 0px 20px;
    color: var(--color-text);
}
.company-info-wrapper, .company-info-loading-wrapper{
    border-radius: 25px;
    background-color: var(--b-g-color);
    margin: 10px;
    width: 500px;
}
.company-info-loading-wrapper{
    height: 175px;
    animation: loading 1.5s ease-in-out infinite;
}
.company-info-section, .company-info-loading-section{
    display: flex;
    padding: 20px;
}
.company-info{
    padding-left: 20px;
    width: 100%;
}
.company-info-loading{
    padding-left: 20px;
}
.photo-content-loading{
    height: 135px;
    width: 135px;
    background-color: var(--active-color);
    border-radius: 12px;
}
.content-loading:nth-child(1){
    background: var(--active-color);
    height: 30px;
    border-radius: 8px;
    width: 220px;
}
.content-loading:nth-child(2), .content-loading:nth-child(3){
    background: var(--active-color);
    height: 25px;
    border-radius: 6px;
    margin-top: 15px;
    width: 180px;
}
@keyframes loading {
    0%{
        opacity: .5;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: .5;
    }
}
@-webkit-keyframes loading {
    0%{
        opacity: .5;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: .5;
    }
}
.open-closed-wrapper{
    float: right;
}
.open{
    font-weight: 600;
    color: green;
}
.closed{
    font-weight: 600;
    color: #d93025;
}
.closes-opens-soon{
    font-weight: 600;
    color: #f56300;
}
.spacer {
    padding: 0px 4px;
}
.status, .spacer {
    color: var(--color-text);
}
.hours-differ-section{
    display: flex;
    font-size: 15px;
}
.hours-differ-reason{
    font-weight: 600;
}
.hours-differ-message{
    font-weight: 600;
    color: #f56300;
}
.company-profile-image-section{
    position: relative;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}
.company-profile-image{
    object-fit: cover;
    -webkit-touch-callout: none;
}
.loading-photo{
    position: absolute;
    top: 0px;
}
.company-profile-image, .no-profile-image-section, .loading-photo{
    height: 135px;
    width: 135px;
    min-width: 135px;
    border-radius: 12px;
    border: 1px solid var(--active-color);
}
.no-profile-image-section{
    background-color: var(--active-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    color: var(--company-logo-color);
}
.new-text-section{
    color: #f56300;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    bottom: 0px;
    padding: 5px 8px;
    background-color: var(--b-g-color);
    border-radius: 0px 8px 0px 0px;
}
.company-name{
    font-size: 20px;
    color: var(--color-text);
    margin: 0px;
    font-weight: 700;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.company-category{
    color: #929292;
    font-size: 15px;
}
.address-info, .phonenumber-info{
    padding: 5px 0px;
    display: flex;
}
.address-icon, .phonenumber-icon {
    font-size: 18px;
    color: var(--color-text);
}
.address-text, .phonenumber-text, .email-text {
    padding-left: 10px;
    color: var(--color-text);
}
.content-wrapper{
    padding-top: 10px;
    display: flex;
}
.callnow-wrapper, .getdirections-wrapper, .visit-profile-wrapper {
    margin-right: 10px;
}
.callnow, .getdirections{
    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;
}
.next-previous-button-wrapper {
    width: 100%;
    max-width: 1000px;
    padding-top: 15px;
}
.next-previous-button {
    float: right;
    display: flex;
}
.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-wrapper{
    width: 100%;
}
.total-items{
    color: var(--color-text);
    padding: 0px 100px;
    margin: 10px 0px;
}
.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-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 {
    width: 50px;
    height: 50px;
    opacity: 1;
    visibility: visible;
}
.search-button-bottom.show > .search-button-icon svg {
    transform: scale(1);
}
.theme-switch-wrapper{
    position: fixed;
    top: 75px;
    width: 300px;
    border-radius: 20px;
    right: 0px;
    margin-right: 10px;
    background-color: var(--b-g-color);
    box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.04);
    transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1), 0.3s transform cubic-bezier(0.4, 0, 0.2, 1), 0.3s 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-section{
    padding-top: 25px;
    margin-bottom: 15px;
}
.theme-switch-section h3{
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-text);
}
.theme-switch{
    padding-top: 10px;
}
.appearance-wrapper{
    cursor: pointer;
    padding: 12px 0px;
    margin: 0px 12px;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
}
.appearance-wrapper:hover{
    background-color: var(--active-color);
}
.appearance-section{
    display: flex;
    margin-left: 12px;
}
.check-arrow-section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
}
.check-color{
    fill: var(--color-text);
}
.appearance-text{
    margin-left: 12px;
    color: var(--color-text);
}
.backdrop-background{
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
    z-index: 2;
}
@media (max-width: 1200px) {
    .listings-info {
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media (max-width: 1100px) {
    .next-previous-button-wrapper {
        padding-right: 30px;
    }
}
@media(max-width: 700px) {
    .list-company-button-section{
        display: none;
    }
}
@media(max-width: 600px) {
    header{
        height: 50px;
        padding: 0px 20px;
    }
    .menu-toggle-section{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menu-toggle.active > span.menu::after,
    .menu-toggle.active > span.menu::before{
        background: var(--color-text);
    }
    .bi-logo-wrapper{
        margin-left: 5px;
    }
    .logo{
        height: 42px;
        width: 42px;
    }
    header nav{
        display: block;
        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;
        visibility: hidden;
    }
    header nav.active{
        transform: translateX(75%);
        -webkit-transform: translateX(75%);
        opacity: 1;
        visibility: visible;
    }
    header nav ul{
        display: block;
        padding-top: 70px;
        padding-left: 10px;
        padding-right: 10px;
        transform: translateY(80px);
        -webkit-transform: translateY(80px);
        opacity: 0;
    }
    header nav.active ul{
        transform: translate(0px);
        -webkit-transform: translateY(0px);
        transition: transform 1s, opacity 1s;
        opacity: 1;
        transition-delay: 0.2s;
    }
    header nav ul li::after{
        display: none;
        content: "";
    }
    header nav ul li a{
        padding: 15px 20px;
        justify-content: left;
        font-size: 16px;
        color: var(--color-text);
    }
    header nav ul li a.active{
        background-color: var(--active-color);
        border-radius: 10px;
    }
    .active-line{
        display: none;
    }
    .list-company-button-section{
        display: flex;
        padding: 0px 20px;
    }
    .list-company-button{
        width: 100%;
        text-align: center;
    }
    .options-wrapper {
        display: flex;
        -webkit-box-pack: end;
        justify-content: flex-end;
        -webkit-box-flex: 1;
        flex-grow: 1;
    }

    .listings-section h1{
        font-size: 45px;
    }
    .line{
        width: 107px;
    }
    .top-results h2{
        font-size: 20px;
    }
    .no-result{
        font-size: 16px;
    }
    .company-profile-image{
        height: 100px;
        width: 100px;
        min-width: 100px;
    }
    .company-info-loading-wrapper{
        height: 150px;
    }
    .loading-photo, .photo-content-loading, .no-profile-image-section{
        height: 100px;
        width: 100px;
        min-width: 100px;
    }
    .no-profile-image-section{
        font-size: 55px;
    }
    .next-button, .previous-button {
        font-size: 14px;
        padding: 9px;
        width: 105px;
    }
    .total-items{
        padding: 0px 25px;
    }
    .theme-switch-wrapper{
        top: 60px;
        width: 250px;
    }
    .theme-switch-section{
        padding-top: 20px;
        margin-bottom: 10px;
    }
    .appearance-text{
        margin-left: 15px;
    }
    .appearance-wrapper:hover{
        background-color: transparent;
    }
}
@media(max-width: 500px) {
    .company-info-section, .company-info-loading-section{
        padding:15px;
    }
    .company-info, .company-info-loading{
        padding-left: 15px;
    }
    .company-name{
        font-size: 18px;
    }
    .callnow-wrapper, .getdirections-wrapper{
        display: none;
    }
    .visit-profile{
        color: var(--tx-color);
        background-color: var(--button-color);
    }
}
@media(max-width: 420px) {
    .content-loading:nth-child(1) {
        width: 150px;
    }
    .content-loading:nth-child(2), .content-loading:nth-child(3){
        width: 120px;
    }
}