: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;
  --note-message-text: #ff0000;
  --note-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;
  --note-message-text: #fff;
  --note-message-bg: #4a0106;
}
::-webkit-scrollbar{
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track{
  border-radius: 6px;
}
::-webkit-scrollbar-thumb{
  border-radius: 5px;
  background-color: var(--scrollbar-color);
}
body{
    padding: 0;
    margin: 0;
    font-family: Raleway;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-hightlight-color: transparent;
}
body.open{
    overflow: hidden;
}
.nav-open{
    position: fixed;
}
.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(--b-g-color);
    width: 100%;
    box-sizing: border-box;
    height: 61px;
    opacity:;
    backdrop-filter: saturate(180%)blur(10px);
    -webkit-backdrop-filter: saturate(180%)blur(10px);
}
.current-user-wrapper{
    float: right;
    height: 100%;
}
.current-user{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 14px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.current-user h1{
    margin: 0px;
    font-size: 16px;
    color: var(--color-text);
}
.user-section{
    padding-left: 10px;
    font-size: 30px;
    color: var(--color-text);
}
.user-settings-wrapper{
    position: absolute;
    right: 30px;
    margin-top: 15px;
    visibility: hidden;
}
.user-settings-wrapper.show{
    visibility: visible;
}
.user-settings-section{
    background: var(--b-g-color);
    padding: 25px 30px;
    border-radius: 20px;
    width: 230px;
    box-shadow: 0px 4px 10px 4px rgb(0 0 0 / 4%);
}
.account-setting-button-wrapper{
    padding-bottom: 15px;
}
.account-setting-button{
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    border-radius: 12px;
    color: var(--color-text);
    font-size: 15px;
}
.menu{
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    border-radius: 12px;
    color: var(--color-text);
    font-size: 15px;
    -webkit-tap-highlight-color: transparent;
}
.user{
    padding-left: 20px;
    font-weight: 700;
    font-size: 20px;
    padding-bottom: 10px;
    color: var(--color-text);
}
.menu:hover{
    background-color: var(--active-color);
}
.account-setting-button:hover{
    background-color: var(--active-color);
}
.logout-button{
    display: block;
    color: var(--tx-color);
    background-color: var(--button-color);
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 12px;
    -webkit-tap-highlight-color: transparent;
    font-weight: 700;
    text-align: center;
}
.main-dashboard-section{
    padding-top: 70px;
}
.main-dashboard{
    padding: 0px 50px;
}
.main-dashboard h1{
    font-size: 35px;
    color: var(--color-text);
}
.go-back-wrapper {
    position: absolute;
    font-size: 18px;
    text-decoration: none;
    color: var(--color-text);
    transform: translateY(-22px);
    font-weight: 500;
    -webkit-tap-highlight-color: transparent;
}
.tab-list-section{
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    position: relative;
}
.tab-list-section::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 60px;
    background-color: var(--b-g-color);
    border-radius: 99999px;
    transition: 0.3s ease-in-out transform, 0.3s ease-in-out width;
}
.tab-list-section.active-tab::before{
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 82px;
    background-color: var(--b-g-color);
    border-radius: 99999px;
    transform: translateX(64px);
    transition: 0.3s ease-in-out transform, 0.3s ease-in-out width;
}
.tab-list{
    position: relative;
    padding: 8px 15px;
    border-radius: 9999px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.dashboard, .edit-company-dashboard{
    background-color: var(--b-g-color);
    border-radius: 30px;
    padding: 0px 40px;
    max-width: 800px;
    margin-bottom: 60px;
}
.company-info, .edit-company{
    padding-bottom: 30px;
}
.company-info h1, .edit-company h1{
    font-size: 35px;
    padding-top: 30px;
    margin-bottom: 10px;
    margin-top: 0px;
    color: var(--color-text);
}
.company-icon, .address-icon, .phonenumber-icon, .facebook-icon, .site-icon, .openhours-icon{
    font-size: 20px;
}
.contact-info-icon{
    font-size: 20px;
    color: var(--color-text);
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phonenumber-icon{
    padding-left: 2px;
}
.mail-icon{
    font-size: 18px;
}
.instagram-icon{
   font-size: 22px; 
}
.contact-info{
    padding: 4px 0px;
    color: var(--color-text);
    display: flex;
    align-items: center;
}
.contact-info-text, .open-closed-wrapper{
    padding-left: 10px;
}
.contact-info-text.add-info{
    cursor: pointer;
}
.contact-info-text.add-info:hover{
    text-decoration: underline;
}
.email-text, .instagram-text, .facebook-text, .site-text{
    word-break: break-all;
}
.closed{
    font-weight: 600;
    color: #d93025;
}
.open{
    font-weight: 600;
    color: green; 
}
.closes-opens-soon{
    font-weight: 600;
    color: #f56300;
}
.status{
    color: var(--color-text);
}
.description-section{
    padding-top: 15px;
}
.description-section h1{
    font-size: 25px;
    margin: 0px;
    padding: 0px;
}
.description, .no-description{
    padding: 25px;
    border-radius: 20px;
    background: var(--active-color);
    margin-top: 5px;
}
.description p, .no-description p{
    margin: 0px;
    color: var(--color-text);
}
.description p{
    line-height: 1.5em;
}
.description-url{
    color: var(--color-text);
}
.no-description p{
    display: flex;
}
.no-description{
    cursor: pointer;
}
.add{
    padding-right: 10px;
}
.date-added-wrapper{
    padding-top: 10px;
}
.date-added p{
    margin: 0px;
    font-size: 15px;
    color: #929292;
}
.edit-button-wrapper{
    float: right;
    padding-top: 30px;
}
.edit{
    padding-right: 5px;
}
.edit-button{
    font-weight: 600;
    cursor: pointer;
    color: var(--color-text);
    -webkit-tap-highlight-color: transparent;
}
.edit-button:hover{
    text-decoration: underline;
}
.company-category{
    color: #929292;
}
.no-authorization-wrapper{
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
}
.no-authorization-section{
    background-color: var(--b-g-color);
    max-width: 600px;
    position: absolute;
    border-radius: 30px;
    top: 40%;
    margin-top: -50px;
    padding: 30px 40px;
    margin-left: 10px;
    margin-right: 10px;
}
.no-authorization-section h1{
    margin-top: 0px;
    color: var(--color-text);
}
.no-authorization-section p{
    color: var(--color-text);
}
.mail{
   color: var(--color-text);
   text-decoration: none;
}
.mail:hover{
   text-decoration: underline;
}
.edit-company-dashboard{
   display: none; 
}
.form-control{
    font-family: Raleway;
    border: 2px solid var(--active-color);
    background-color: var(--b-g-color);
    color: var(--color-text);
    outline: none;
    border-radius: 10px;
    padding: 15px;
    margin: 5px 0px;
    width: 300px;
    font-size: 15px;
    -webkit-appearance: none;
}
.add-hours, .form-control.category{
    cursor: pointer;
}
.form-control.category.empty{
    color: #757575;
}
.form-textbox{
    padding-bottom: 10px;
}
.form-textbox.address{
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.form-textbox.address.show{
    height: unset;
}
.important-note{
    display: block;
    font-size: 14px;
    color: var(--note-message-text);
    font-weight: 500;
    margin-bottom: 10px;
    background: var(--note-message-bg);
    padding: 12px 15px;
    border-radius: 10px;
}
.form-textbox:nth-child(1){
    padding-top: 20px;
}
.empty-field{
    border: 2px solid red;
}
.empty-text{
    max-width: 396px;
    color: red;
    font-size: 14px;
    display: block;
}
.description-wrapper{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 50px !important;
}
.form-control.description{
    width: 100%;
}
.remove-hours-text-wrapper{
    margin-top: 10px;
}
.remove-hours-text{
    cursor: pointer;
    color: red;
    font-weight: 600;
}
.remove-hours-wrapper{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    visibility: hidden;
}
.remove-hours-wrapper.show{
    visibility: visible;
}
.remove-hours-section{
    background-color: var(--b-g-color);
    width: 450px;
    position: absolute;
    border-radius: 30px;
    top: 45%;
    margin-top: -50px;
    padding: 10px;
    text-align: left;
    transform: scale(1.2);
    opacity: 0;
    transition: 0.3s transform ease-in-out, 0.3s opacity ease-in-out;
}
.remove-hours-wrapper.show > .remove-hours-section{
    transform: scale(1);
    opacity: 1;
}
.remove-hours-section h2{
    font-size: 25px;
    padding: 0px 25px;
    color: var(--color-text);
}
.remove-hours-section p{
    padding: 0px 25px;
    padding-bottom: 10px;
    color: var(--color-text);
}
.no-yes-wrapper{
    float: right;
    padding-right: 20px;
    padding-bottom: 15px;
    display: flex;
}
.cancel-report{
    padding: 6px 30px;
    background: #e6e6e6;
    border-radius: 20px;
    color: #282828;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.remove-wrapper{
    display: inline-block;
    margin-left: 10px;
}
.yes-report{
    padding: 6px 30px;
    border-radius: 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    color: var(--tx-color);
    background-color: var(--button-color);
    margin-left: 10px;
}
.yes-button{
    color: var(--tx-color);
    background-color: var(--button-color);
    border-radius: 20px;
    padding: 6px 30px;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    font-family: Raleway;
}
.visible-explanation{
    padding-top: 10px;
    display: block;
    font-size: 15px;
    color: var(--color-text);
}
.company-info-edit{
    font-weight: 600;
    font-size: 18px;
    color: var(--color-text);
}
.phone{
    border-radius: 0px 10px 10px 0px;
    width: 247px;
}
.phone-number-section{
    display: flex;
    align-items: center;
}
.area-code-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--active-color);
    border-right: none;
    padding: 15px 9px;
    border-radius: 10px 0px 0px 10px;
    font-size: 15px;
    color: var(--color-text);
}
.cancel-save-wrapper{
    display: flow-root;
}
.cancel-save{
    float: right;
}
.cancel-edit{
    display: inline-block;
    padding: 10px 30px;
    background: #e6e6e6;
    border-radius: 20px;
    color: #282828;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    -webkit-tap-highlight-color: transparent;
}
.save-button{
    color: var(--tx-color);
    background-color: var(--button-color);
    border-radius: 20px;
    padding: 11px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: 15px;
    -webkit-tap-highlight-color: transparent;
}
.save-button:disabled{
    background-color: var(--disabled-button);
    color: var(--disabled-button-text);
    cursor: unset;
}
.changes-saved-wrapper, .error-message-wrapper{
    position: fixed;
    bottom: 0px;
    float: left;
    transform: translateX(-100%);
    transition: 0.3s ease-in-out;
}
.changes-saved-wrapper.show, .error-message-wrapper.show{
    transform: translateX(0px);
}
.changes-saved-section, .error-message-section{
    background-color: var(--b-g-color);
    box-shadow: 0px 4px 10px 4px rgb(0 0 0 / 4%);
    border-radius: 15px;
    margin-left: 30px;
    margin-bottom: 30px;
}
.error-message-section{
    width: 400px;
}
.message{
    padding: 25px;
    color: #34a777;
}
.error-message{
    padding: 25px;
    color: red;
    display: flex;
}
.check, .exclamation{
    padding-right: 10px;
}
.exclamation-logo{
    padding-right: 10px;
}
.add-opening-hours-wrapper, .choose-category-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;
    visibility: hidden;
}
.add-opening-hours-wrapper.show, .choose-category-wrapper{
    visibility: visible;
}
.add-opening-hours-wrapper.hidden{
    display: none;
}
.add-opening-hours-section, .choose-category-section{
    display: flex;
    flex-direction: column;
    margin: 40px;
    background: var(--b-g-color);
    border-radius: 30px;
    overflow-y: hidden;
    max-height: 85%;
    height: 700px;
    width: 530px;
}
.add-opening-hours, .choose-category{
    overflow-y: scroll;
    padding: 40px 60px;
    height: 100%;
}
.add-opening-hours-content.hidden{
    display: none;
}
.always-open-content, .hours-options-content, .categories-options-content{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.always-open-checkbox, .hours-options-checkbox, .categories-options-checkbox{
    position: relative;
}
.always-open-text, .hours-options-text, .categories-options-text{
    padding-left: 10px;
    font-weight: 600;
    color: var(--color-text);
}
.checkbox-input, .categories-checkbox-input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    top: 1px;
    width: 125px;
    -webkit-tap-highlight-color: transparent;
}
.categories-checkbox-input{
    width: unset !important;
}
.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;
}
.add-opening-hours h2, .choose-category h2{
    margin-top: 0px;
    color: var(--color-text);
    font-size: 30px;
}
.days-section, .add-hours-text-wrapper{
    display: flex;
    align-items: center;
    text-align: left;
}
.add-hours-text-wrapper.hidden{
    display: none;
}
.days-section.hidden{
    display: none;
}
.day, .spacer{
    width: 120px;
    color: var(--color-text);
    font-weight: 600;
}
.divider{
    color: var(--color-text);
}
.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-icon{
    height: 22px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.line-color{
    fill: var(--color-text);
}
.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;
}
.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;
}
.choose-category h2{
    margin: 0px;
}
.choose-category p{
    margin: 0px;
    color: var(--color-text);
    padding-top: 10px;
}
.choose-category-content{
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}
.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;
}
@media(max-width: 610px) {
    .add-opening-hours-section{
        width: 495px;
    }
    .add-opening-hours, .choose-category{
        padding: 40px;
    }
    .done-button{
        margin: 0px 30px;
    }
}
@media(max-width: 600px){
    header{
        height: 50px;
    }
    bi-logo-wrapper {
        width: 42px;
        padding-top: 3px;
    }
    .logo {
        height: 42px;
        width: 42px;
    }
    .current-user{
        padding-top: 8px;
    }
    .main-dashboard {
        padding: 0px 15px;
    }
    .main-dashboard h1{
        font-size: 30px;
    }
    .company-info h1{
        font-size: 24px;
    }
    .description-section h1{
        font-size: 22px;
    }
    .dashboard, .edit-company-dashboard{
        padding: 0px 30px;
    }
    .add-more{
        width: 320px;
    }
    .day, .spacer{
        width: 85px;
        font-size: 14px;
    }
    .add-hours-text{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .remove-hours-section{
        width: 85%;
    }
    .remove-hours-section h2{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .remove-hours-section p{
        font-size: 14px;
        margin: 5px 0px;
    }
}
@media(max-width: 550px) {
    .add-opening-hours-section, .choose-category-section{
        max-height: 100%;
        width: 100%;
        border-radius: 0px;
        margin: 0px;
        height: 100%;
    }
}
@media(max-width: 500px){
    header{
        padding: 0px 25px;
    }
}
@media (max-width: 460px){
    .company-info-display-section{
        width: 100%;
    }
    .days-section{
        display: block;
    }
    .day{
        font-size: 16px;
    }
    .time, .divider{
        display: inline-block;
    }
    .hours{
        width: 33vw;
        min-width: 95px;
    }
    .clear-hours-wrapper{
        display: inline-block;
    }
    .add-opening-hours{
        padding: 40px;
    }
}
@media(max-width: 450px){
    .form-control{
        width: 85%;
    }
    .phone{
        width: 68%;
    }
    .cancel-edit, .save-button{
        font-size: 12px;
    }
    .company-info-edit{
        font-size: 16px;
    }
    .changes-saved-wrapper, .error-message-wrapper{
        top: 65px;
        bottom: unset;
        width: 100%;
        transform: translateY(-100px);
    }
    .changes-saved-wrapper show, .error-message-wrapper show{
        transform: translateY(0px);
    }
    .changes-saved-section, .error-message-section{
        margin: 0px 30px;
    }
    .error-message-section{
        width: auto;
    }
    .message, .error-message{
        font-size: 14px;
    }
}
@media (max-width: 360px){
    .account-settings-button{
        margin-bottom: 10px;
    }
    .authorization-logout-button-wrapper{
        margin-left: 0px;
    }
}