: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;
    --error-message-color: #ff0000;
    --error-message-bg: #ffe8e8;
}
.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;
    --error-message-color: #ffffff;
    --error-message-bg: #4a0106;
}
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);
}
body{
    font-family: Raleway;
    overflow-x: hidden;
    background-color: var(--bg-color);
}
.nav-open{
    overflow: hidden;
}
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;
}
.list-company-content-section{
    display: flex;
    max-width: 1650px;
    margin: auto;
    padding: 0px 50px;
}
.list-company-information-section{
    flex: 0 0 45%;
}
.list-company-information{
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}
.list-company-information h1, .received-submission-message-wrapper h1{
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text);
}
.list-company-information p{
    padding-top: 15px;
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.5em;
}
.list-company-form-wrapper{
    width: 100%;
}
.list-company-form-section h2{
    font-size: 40px;
    color: var(--color-text);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.list-company-form{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-content-section{
    padding-top: 25px;
}
.form-content-text{
    font-weight: bold;
    font-size: 25px;
    color: var(--color-text);
}
.content-name{
    color: var(--color-text);
    font-weight: 600;
    padding-top: 10px;
}
.personal-info-wrapper{
    padding: 35px 0px;
}
.personal-info-section{
    text-align: center;
}
.personal-info-section h2{
    padding-bottom: 15px;
}
.submit-button{
    color: var(--tx-color);
    background-color: var(--button-color);
    border-radius: 9999px;
    padding: 12px 0px;
    width: 140px;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 8px;
    -webkit-appearance: none;
    font-family: Raleway;
}
.submit-button:disabled {
    background-color: var(--disabled-button);
    color: var(--disabled-button-text);
    cursor: unset;
}
.form-textbox {
    display: flex;
    flex-direction: column;
}
.form-control{
    font-family: Raleway;
    border: 2px solid transparent;
    background-color: var(--b-g-color);
    color: var(--color-text);
    border-radius: 10px;
    padding: 15px;
    margin: 5px 0px;
    width: 320px;
    font-size: 15px;
    outline: none;
    -webkit-appearance: none;
}
.empty-field {
    border: 2px solid red;
}
.empty-text {
    color: red;
    font-size: 14px;
    text-align: left;
}
.form-control.category, .form-control.add-hours{
    cursor: pointer;
}
.form-control.category.empty, .form-control.add-hours.empty{
    color: #929292;
}
.form-control::placeholder{
    color: #929292;
}
.choose-category-wrapper, .add-opening-hours-wrapper{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.add-opening-hours-wrapper{
    visibility: hidden;
}
.choose-category-section, .add-opening-hours-section{
    display: flex;
    flex-direction: column;
    margin: 40px;
    background: var(--b-g-color);
    border-radius: 30px;
    overflow-y: hidden;
    max-height: 85%;
    width: 530px;
}
.choose-category, .add-opening-hours{
    overflow-y: scroll;
    padding: 40px 60px;
    height: 100vh;
}
.choose-category h2, .add-opening-hours-content h2{
    color: var(--color-text);
    font-size: 30px;
    font-weight: 700;
}
.add-opening-hours-content h2{
    margin-bottom: 25px;
}
.choose-category p{
    color: var(--color-text);
    padding-top: 10px;
}
.search-bar-wrapper{
    margin-top: 20px;
    width: 99%;
}
.search-bar-section{
    border-radius: 25px;
    border: 2px solid var(--active-color);
}
.search-bar{
    width: 100%;
    display: flex;
}
.search-button-section{
    padding-left: 12px;
}
.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: 24px;
}
.search-icon svg, .icon-color{
    fill: var(--color-text);
}
.search-form-control{
    border: none;
    outline: none;
    padding: 7px;
    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{
    padding-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.clear-button{
    height: 22px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.no-result-text{
    font-weight: 600;
}
.choose-category-content{
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}
.categories-options-content, .hours-options-content{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.categories-options-content{
    margin-top: 15px;
    margin-bottom: 0px !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.categories-options-checkbox, .hours-options-checkbox{
    position: relative;
}
.categories-checkbox-input, .checkbox-input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    top: 1px;
    -webkit-tap-highlight-color: transparent;
}
.checkbox{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 16px;
    width: 16px;
    border: 2px solid var(--color-text);
    border-radius: 50%;
}
.checkbox::after {
    content: "";
    position: absolute;
}
.checkbox-input:checked ~ .checkbox::after, .categories-checkbox-input:checked ~ .checkbox::after{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-text);
    display: block;
}
.categories-options-text, .hours-options-text{
    padding-left: 10px;
    font-weight: 600;
    color: var(--color-text);
}
.done-button{
    padding-bottom: 30px;
    margin: 0px 40px;
}
.done{
    padding: 12px 30px;
    background: var(--button-color);
    border-radius: 30px;
    font-weight: 600;
    color: var(--tx-color);
    cursor: pointer;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.loading-animation-section{
    padding-top: 20px;
}
.loading-icon.category {
    height: 35px;
    width: 35px;
    animation: loading-content .75s linear infinite;
    -webkit-animation: loading-content .75s linear infinite;
}
.loading-icon-color{
    fill: var(--color-text);
}
.opening-hours-content{
    padding-top: 15px;
}
.hours-options-content {
    margin-bottom: 10px !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.edit-custom-hours-section{
    padding-bottom: 15px;
}
.edit-custom-hours-text{
    color: var(--color-text);
    font-weight: 700;
    font-size: 20px;
}
.days-wrapper{
    display: flex;
}
.day{
    width: 120px;
    color: var(--color-text);
    font-weight: 600;
}
.days-content{
    display: flex;
    flex-direction: column;
}
.days-section, .add-hours-text-wrapper{
    display: flex;
    align-items: center;
    text-align: left;
}
.hours{
    font-family: Raleway;
    border: 2px solid var(--active-color);
    background: var(--b-g-color);
    color: var(--color-text);
    outline: none;
    border-radius: 10px;
    padding: 15px;
    margin: 5px;
    width: 120px;
    font-size: 15px;
    -webkit-appearance: none;
}
.add-hours-text{
    font-weight: 600;
    padding-left: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    color: var(--color-text);
    -webkit-tap-highlight-color: transparent;
}
.clear-hours-wrapper{
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.clear-hours-icon{
    height: 22px;
}
.categories-error{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.categories-error-text{
    color: var(--color-text);
    font-weight: 500;
    text-align: center;
}
@keyframes loading-content {
    0%{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes loading-content {
    0%{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
.submitting-form{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    background-color: var(--header-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
}
.loading-icon{
    height: 40px;
    width: 40px;
    animation: loading-content .75s linear infinite;
    -webkit-animation: loading-content .75s linear infinite;
}
.error-message-text-section{
    max-width: 355px;
    margin: auto;
}
.error-message-text{
    display: block;
    font-size: 14px;
    color: var(--error-message-color);
    font-weight: 500;
    margin-bottom: 10px;
    background: var(--error-message-bg);
    padding: 12px 15px;
    border-radius: 10px;
}
.received-submission-message-wrapper{
    max-width: 1000px;
    margin: auto;
    height: calc(100vh - 215px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.received-submission-message-section h1{
    text-align: center;
}
.received-submission-message-section h2{
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    color: var(--color-text);
    padding-top: 10px;
}
.received-submission-message{
    padding-top: 25px;
}
.received-submission-message p{
    font-size: 18px;
    color: var(--color-text);
    text-align: left;
    line-height: 1.5em;
}
.return-home-button-wrapper{
    text-align: center;
    height: 100%;
    margin: 50px 0px;
}
.return-home-button{
    background: var(--button-color);
    color: var(--tx-color);
    text-decoration: none;
    padding: 12px 35px;
    display: inline-block;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
}
.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: 850px) {
    .list-company-content-section{
        display: block;
    }
    .list-company-information{
        position: unset;
        transform: unset;
    }
    .list-company-information h1{
        text-align: center;
    }
    .list-company-information p{
        padding-top: 25px;
    }
    .list-company-form-wrapper{
        padding-top: 25px;
    }
}
@media(max-width: 700px) {
    .list-company-button-section{
        display: none;
    }
}
@media (max-width: 610px) {
    .add-opening-hours-section {
        width: 495px;
    }
    .choose-category, .add-opening-hours{
        padding: 40px;
    }
    .done-button {
        margin: 0px 30px;
    }
}
@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;
    }
    .list-company-content-section{
        padding: 0px 25px;
    }
    .list-company-information h1, .received-submission-message-wrapper h1{
        font-size: 45px;
    }
    .line{
        width: 107px;
    }
    .list-company-form-section h2{
        font-size: 35px;
    }
    .form-content-text{
        font-size: 22px;
    }
    .form-control{
        width: 280px;
    }
    .day{
        width: 85px;
        font-size: 14px;
    }
    .add-hours-text {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .received-submission-message p{
        font-size: 16px;
    }
    .received-submission-message-section h2{
        font-size: 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-height: 580px) {
    .received-submission-message-wrapper{
        height: auto;
    }
}
@media (max-width: 550px) {
    .choose-category-section, .add-opening-hours-section{
        max-height: 100%;
        width: 100%;
        border-radius: 0px;
        margin: 0px;
        height: 100%;
    }
}
@media (max-width: 460px) {
    .days-wrapper {
        display: block;
    }
    .day {
        font-size: 16px;
    }
    .hours {
        width: 33vw;
        min-width: 95px;
    }
}
@media (max-width: 350px) {
    .form-control {
        width: 240px;
    }
}