:root {
    /**
       * PRIMARY COLORS
       */
    --primary: #1a1a1a;
    --secondary: #343434;
    --tertirary: #666666;
    --quertanary: #808080;
    --inverse: #fafafa;
    --error: #6b1518;
    --warning: #665100;
    --success: #1a6641;

    --primary-blue: #0000cc;
    --dark-blue: #001680;
    --light-blue: #e6ebfe;

    --border-primary: #e5e5e5;
    --border-secondary: #cccccc;
    --border-subtle: #f2f2f2;
    --border-strong: #1a1a1a;

    --icons-primary: #272727;

    /**
       * NEUTRAL COLORS
       */

    --white: #ffffff;
    --neutral-01: #fafafa;
    --neutral-02: #f2f2f2;
    --neutral-03: #e5e5e5;
    --neutral-04: #d9d9d9;
    --neutral-05: #cccccc;
    --neutral-06: #bfbfbf;
    --neutral-07: #b3b3b3;
    --neutral-08: #a5a5a5;
    --neutral-09: #999999;
    --neutral-10: #8d8d8d;
    --neutral-11: #808080;
    --neutral-12: #737373;
    --neutral-13: #666666;
    --neutral-14: #595959;
    --neutral-15: #4d4d4d;
    --neutral-16: #404040;
    --neutral-17: #343434;
    --neutral-18: #272727;
    --neutral-19: #1a1a1a;
    --neutral-20: #0d0d0d;
    --black: #000000;

    /**
       * SEMANTIC COLORS
       */

    --red-01: #df3a3f;
    --red-02: #b92c31;
    --red-03: #951d21;
    --red-04: #6b1518;

    --yellow-01: #e5b800;
    --yellow-02: #b28f00;
    --yellow-03: #806600;
    --yellow-04: #665100;

    --green-01: #2eb875;
    --green-02: #29a368;
    --green-03: #248f5b;
    --green-04: #1a6641;

    --light: 300;
    --regular: 400;
    --medium: 500;
    --semiBold: 600;
    --bold: 700;
    --extraBold: 800;

    /**
       * Filters COLORS
       */
    --filter-inverse: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7483%) hue-rotate(276deg) brightness(108%) contrast(95%);
    --filter-primary: brightness(0) saturate(100%) invert(7%) sepia(1%) saturate(184%) hue-rotate(314deg) brightness(103%) contrast(93%);
    --filter-neutral-05: brightness(0) saturate(100%) invert(84%) sepia(18%) saturate(35%) hue-rotate(316deg) brightness(89%) contrast(109%);
    --filter-neutral-08: brightness(0) saturate(100%) invert(59%) sepia(95%) saturate(0%) hue-rotate(161deg) brightness(93%) contrast(94%);
    --filter-neutral-15: brightness(0) saturate(100%) invert(22%) sepia(54%) saturate(0%) hue-rotate(173deg) brightness(113%) contrast(91%);
    --filter-primary-blue: brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(5123%) hue-rotate(245deg) brightness(72%) contrast(141%);
    --filter-red-03: brightness(0) saturate(100%) invert(17%) sepia(80%) saturate(2852%) hue-rotate(343deg) brightness(77%) contrast(95%);
}

/*PREMADE DESIGNS*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--primary);
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: var(--regular);
    font-style: normal;
}

body {
    background-color: var(--white);
    color: var(--primary);
    overflow-x: hidden;
}



fieldset{
    border: none;
}

button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 16px;
    border-radius: 24px;
    background-color: var(--primary);
    border: none;
    transition: 0.3s ease;
}

.site-preloader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader .preloader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.site-preloader .preloader-logo {
    width: 160px;
    height: auto;
}

.site-preloader .preloader-spinner {
    width: 56px;
    height: 56px;
    border: 3px solid var(--border-primary);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: preloader-spin 0.9s linear infinite;
}

@keyframes preloader-spin {
    to {
        transform: rotate(360deg);
    }
}

.overview-button-a {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 16px;
    border-radius: 24px;
    background-color: var(--primary);
    border: none;
    transition: 0.3s ease;
    text-decoration: none;
    color: #000000;
}

.overview-button-a .btn-text {
    color: #000000;
}

.overview-button-a .btn-icon {
    filter: var(--filter-primary);
}

.overview-button-a:is(:hover, :focus-visible) {
    background-color: var(--inverse);
    border: solid 1px var(--primary);
    transition: 0.3s ease;
    box-shadow: 0 4px 4px rgba(112, 112, 112, 0.4);
}

/* .overview-button-a:is(:hover, :focus-visible) .btn-text {
  color: var(--primary);
}

.overview-button-a:is(:hover, :focus-visible) .btn-icon {
  filter: var(--filter-primary);
} */

.btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: var(--filter-inverse);
}

.btn-text {
    color: var(--inverse);
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--semiBold);
}

button:is(:hover, :focus-visible) {
    background-color: var(--inverse);
    border: solid 1px var(--primary);
    transition: 0.3s ease;
    box-shadow: 0 4px 4px rgba(112, 112, 112, 0.4);
}

button:is(:hover, :focus-visible) .btn-text {
    color: var(--primary);
}

button:is(:hover, :focus-visible) .btn-icon {
    filter: var(--filter-primary);
}

button:active {
    background-color: var(--neutral-15);
    transform: scale(0.95);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    border: none;
    transition: 0.1s ease;
}

button:active .btn-text {
    color: var(--inverse);
}

button:active .btn-icon {
    filter: var(--filter-inverse);
}

button.white {
    background-color: var(--white);
    border: solid 1px var(--border-primary);
}

button.white .btn-icon {
    filter: var(--filter-primary);
}

button.white .btn-text {
    color: var(--primary);
}

button.white:is(:hover, :focus-visible) {
    background-color: var(--primary);
    border: none;
}

button.white:is(:hover, :focus-visible) .btn-text {
    color: var(--inverse);
}

button.white:is(:hover, :focus-visible) .btn-icon {
    filter: var(--filter-inverse);
}

.icon16 {
    width: 16px;
    height: 16px;
}

.icon20 {
    width: 20px;
    height: 20px;
}

.icon24 {
    width: 24px;
    height: 24px;
}

.icon32 {
    width: 32px;
    height: 32px;
}

address {
    font-style: normal;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body.loaded {
    overflow: overlay;
}

.biz-label {
    font-size: 16px;
    line-height: 16px;
    font-weight: var(--semiBold);
    color: #7b7b7b;
}

.biz-value {
    font-size: 16px;
    line-height: 16px;
    font-weight: var(--semiBold);

}

.location-switcher {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-weight: var(--semiBold);
}

.location-form {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.biz-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-business-info {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.location-selector {
    border-radius: 12px;
    width: 320px;
    padding: 8px 0 8px 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.location-selector.choose {
    width: fit-content;
}

.location-selector:hover, .location-selector.active {
    background-color: #EFEFF5;
}

.location-selector-img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 1px var(--neutral-06);
    object-fit: cover;

}

.location-selector-img.small {
    width: 28px;
    height: 28px;
}

.location{
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

.location-name {
    display: flex;
    gap: 4px;
}

.business-name, .loc-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

.location-selector.choose .business-name, .location-selector.choose .location-name {
    width: fit-content;
    flex-shrink: 0;
}

.location-selector.choose .location-name{
    gap: 4px;
}

.arrow-icon{
    rotate: 180deg;
}

.location-dropdown{
    display: flex;
    flex-direction: column;
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #F2F5F7;
    background-color: var(--white);
    width: 320px;
}

.location-container{
    display: flex;
    padding: 6px 0 6px 44px;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.location-container:hover{
    background-color: #BEBEDA40;
}

.location-container.selected{
    padding: 6px 0 6px 12px;

}

.location-check{
    display: none;
}

.location-container.selected .location-check {
    display: flex;
}

.dropdown-location-name{
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
}

.location-selector.readonly{
    cursor: unset;
}

.location-selector.readonly:hover{
    background-color: transparent;
}

#noAccessWidgetTitle, #noAccessTitle{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.location-info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 760px) {
    .location-selector {
        width: 40px;
        gap: 6px;
        padding: 0;
    }
    
    .location-selector:hover{
        background-color: unset;
    }
    .location-info{
        width: 100%;
        display: flex;
    }
    
    .location-name{
        width: 100%;
        flex-shrink: 0;
        display: flex;
    }
    
    .location{
        display: none;
    }
    
    .business-name{
        display: none;
    }
    
    .loc-name {
        display: none;
    }
    
    .arrow-icon{
        display: none;
    }
}
