/* START: BODY AND VARIABLES */
body {
    margin:0;
    padding:0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    background:var(--background-color-1);
    font-style: normal;
    color:var(--text-color-4);
}
.two-split {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}
h2 {
    margin:0 0 25px;
    font-size:20px;
}
h2.outside-box {
    margin-top:25px;
    margin-left:25px;
    font-size:20px;
}
a.nav {
    color: var(--text-color-2);
    text-decoration: none;
    display: inline-block;
    margin-bottom:25px;
}
.print-show {
    display:none;
}
@media print {
    header#app-header,
    .extra-top-menu,
    .extra-top-menu-mobile-pusher,
    .print-hide {
        display:none !important;
    }
    .print-show {
        display:block !important;
    }
    body.app > div:nth-child(2) {
        margin-left: 0 !important;
        max-width: 100% !important;
        padding-top:0 !important;
    }
}
/* Remove Safari search input styling */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
/* END: BODY AND VARIABLES */


/* START: APP HEADER */
body.app {
    display:flex;
}
body.app > div:nth-child(2) {
    margin-left:200px;
    flex:1;
    max-width:calc(100vw - 200px);
}
header#app-header {
    position:fixed;
    display: block;
    overflow:scroll;
    width:200px;
    height:100vh;
    padding:0;
    box-sizing: border-box;
    top: 0;
    background: var(--special-app-header-color);
    z-index:9999999;
}
header#app-header #logo {
    font-size:18px;
    text-transform:uppercase;
}
header#app-header a {
    transition:background var(--transition-1);
    text-decoration:none;
    font-size: 15px;
    color: var(--text-color-11);
    font-weight: 700;
    padding:0 15px;
    display: block;
    width:100%;
    box-sizing:border-box;  
    border-bottom:1px solid var(--special-app-header-border-color);
    line-height:70px;
    height:70px;
}
header#app-header a .fa-solid {
    margin-right:5px;
}
header#app-header #app-header-two {
    position:absolute;
    bottom:0;
    width:100%;
}
@media(max-height:775px) and (min-width:751px) {
    header#app-header #app-header-two {
        position:relative;
    }
}
header#app-header a:hover {
    background: var(--special-app-header-hover);
}
header#app-header a.current {
    background: var(--special-app-header-current);
}
header#app-header a.unavailable {
    opacity:0.35;
    pointer-events:none;
}
header#app-header a#mobile-hamburger, #mobile-menu {
    display:none;
}
@media(max-width:750px) {
    header#app-header {
        position: fixed;
        width: 100%;
        height: 60px;
        display: flex;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }
    body.app {
        display:block;
    }
    body.app > div:nth-child(2) {
        margin-left:0;
        flex: none;
        max-width:100vw;
        overflow:scroll;
        padding-top:60px;
    }
    header#app-header a#logo, header a#mobile-hamburger {
        padding: 0 10px;
        height:60px;
        line-height: 60px;
        border-bottom:none;
    }
    header#app-header a:not(#logo):not(#mobile-hamburger):not(#mobile-menu a) {
        display:none;
    }
    header#app-header a#mobile-hamburger {
        display:block;
        width:fit-content;
    }
    #mobile-menu {
        position: fixed;
        width: 100%;
        top: 60px;
        height: calc(100vh - 60px);
        margin-left: -15px;
        z-index:9999999;
        background: var(--special-app-header-color);
        overflow:scroll;
    }
    header#app-header #mobile-menu a {
        padding:0 25px;
    }
    header#app-header #mobile-menu a:last-child {
        margin-bottom:60px;
    }
}
/* END: APP HEADER */


/* START: SIDEMENU LAYOUT */
section.sidemenu-layout {
    height:100vh;
    display:flex;
}
section.sidemenu-layout > nav {
    background: var(--background-color-4);
    top:0;
    position: fixed;
    overflow:scroll;
    width: 250px;
    z-index:9999999;
    box-sizing: border-box;
    border-right: 1px solid var(--border-color-1);
    height: 100vh;
}
section.sidemenu-layout > nav a, section.sidemenu-layout > nav > span {
    transition: background var(--transition-1);
    text-decoration: none;
    font-size: 15px;
    color: var(--text-color-1);
    display: flex;
    padding: 0 25px;
    align-items: center;
    height: 70px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--border-color-1);
}
section.sidemenu-layout > nav > span {
    text-transform:uppercase;
    font-weight:700;
}
section.sidemenu-layout > nav a:hover {
    background: var(--accent-color-3-light);
    color:var(--text-color-11);
}
section.sidemenu-layout > nav a.current {
    background: var(--accent-color-3);
    color:var(--text-color-11);
    font-weight:700;
}
section.sidemenu-layout section.main-page {
    flex:1;
    height:fit-content;
    padding-bottom:25px;
    margin-left: 250px;
}
@media (max-width:1000px) {
    section.sidemenu-layout > nav {
        height:60px;
        position:fixed;
        top:0;
        width:calc(100% - 200px);
        z-index:999999;
        display:flex;
        overflow:scroll;
    }
    section.sidemenu-layout > nav.scroll-indicator-right::after {
        content: '';
        position: fixed;
        right: 0;
        width: 25px;
        height: 60px;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, var(--background-color-4) 100%);
        pointer-events: none;
    }
    section.sidemenu-layout > nav.scroll-indicator-left::before {
        content: '';
        position: fixed;
        margin-left: 0;
        width: 25px;
        height: 60px;
        background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, var(--background-color-4) 100%);
        pointer-events: none;
    }
    section.sidemenu-layout > nav a, section.sidemenu-layout > nav > span {
        min-width:fit-content;
        height:60px;
        white-space:nowrap;
        line-height:60px;
        padding:0 15px;
    }
    section.sidemenu-layout {
        display: block;
    }
    section.sidemenu-layout section.main-page {
        margin-left:0;
        padding-top:60px;
    }
}
@media (max-width:750px) {
    section.sidemenu-layout > nav {
        top:60px;
        width:100%;
    }
}
/* END: SIDEMENU-LAYOUT */


/* START: EXTRA-TOP-MENU */
nav.extra-top-menu {
    position:sticky;
    box-sizing: border-box;
    background:var(--background-color-4);
    z-index:99999;
    width:100%;
    max-width:calc(100vw - 200px);
    height:60px;
    display:flex;
    /*border-bottom:1px solid var(--border-color-1);*/
    box-shadow:var(--box-shadow-1);
    padding:0 25px;
    justify-content:space-between;
    align-items: center;
    top:0;
    column-gap:20px;
}
nav.extra-top-menu.scroll {
    overflow:scroll;
}
.sidemenu-layout nav.extra-top-menu {
    max-width:calc(100vw - 450px);
}
nav.extra-top-menu > * {
    white-space: nowrap;
    width:fit-content;
}
nav.extra-top-menu .extra-top-menu-group {
    display:flex;
    justify-content:space-between;
    align-items: center;
    column-gap:10px;
}
.extra-top-menu-mobile-pusher {
    display: none;
    height:60px;
    width:100%;
}
nav.extra-top-menu .extra-top-menu-mobile-show {
    display:none;
}
nav.extra-top-menu a:not(.none):not(a a), nav.extra-top-menu button {
    padding: 5px 10px;
    cursor:pointer;
    border-radius:7.5px;
    border: 1px solid var(--border-color-2);
    text-decoration: none !important;
    font-size: 13px;
    font-weight:700;
    display:inline-block;
    color: var(--text-color-2);
}
nav.extra-top-menu a:not(.none).disabled, nav.extra-top-menu button.disabled {
    pointer-events:none;
    opacity:0.35;
    cursor:default;
}
nav.extra-top-menu button {
    height:31.5px;
    font-family:'Poppins', sans-serif;
}
nav.extra-top-menu a:not(.none):not(a a):hover, nav.extra-top-menu button:hover {
    background:var(--background-color-2);
}
nav.extra-top-menu a:not(.none).primary, nav.extra-top-menu button.primary {
    background: var(--accent-color-1) !important;
    border: 1px solid var(--accent-color-1) !important;
    color: var(--text-color-5) !important;
}
nav.extra-top-menu a:not(.none).primary:hover, nav.extra-top-menu button.primary:hover {
    background: var(--accent-color-1-light) !important;
    border: 1px solid var(--accent-color-1-light) !important;
}
nav.extra-top-menu a:not(.none).pink {
    background: var(--accent-color-3) !important;
    border: 1px solid var(--accent-color-3) !important;
    color: var(--text-color-5) !important;
}
nav.extra-top-menu a:not(.none).pink:hover {
    background: var(--accent-color-3-light) !important;
    border: 1px solid var(--accent-color-3-light) !important;
}
nav.extra-top-menu a:not(.none).red {
    background: var(--negative-color) !important;
    border: 1px solid var(--negative-color) !important;
    color: var(--text-color-5) !important;
}
nav.extra-top-menu a:not(.none).red:hover {
    background: var(--negative-color-light) !important;
    border: 1px solid var(--negative-color-light) !important;
}
nav.extra-top-menu .filter {
    color: var(--text-color-2);
    padding: 0;
    cursor: pointer;
    background:none;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    border: none !important;
    min-width: fit-content;
}
nav.extra-top-menu .filter:hover {
    color:var(--text-color-4);
}
nav.extra-top-menu .heading {
    font-size: 24px;
    font-weight: 700;
}
nav.extra-top-menu input[type='text'], nav.extra-top-menu select {
    height: 31.5px; 
    border: 0; 
    margin-top: 20px;
    margin-bottom:20px;
    outline:none !important;
    background:var(--background-color-3);
    border-radius: 0;
    padding: 0 15px;
    min-width:100px;
    border-radius:7.5px;
}
nav.extra-top-menu #extra-top-menu-mobile-menu {
    display:none;
    position: absolute;
    white-space:normal;
    width: 375px;
    border: 1px solid var(--border-color-2);
    box-sizing: border-box;
    background: var(--background-color-4);
    padding: 20px 20px 15px 20px;
    color: var(--text-color-2);
    box-shadow: rgba(45, 45, 48, 0.12) 0px 2px 10px 0px;
    overflow-y: scroll;
    overflow-x: hidden;
    right: 25px;
    top: 45px;
    max-width: calc(100vw - 50px);
    border-radius:7.5px;
}
nav.extra-top-menu #extra-top-menu-mobile-menu input[type='text'], nav.extra-top-menu #extra-top-menu-mobile-menu select {
    margin-top: 0;
}
nav.extra-top-menu #extra-top-menu-mobile-menu > * {
    margin-right:10px;
    margin-bottom:10px;
}
nav.extra-top-menu #extra-top-menu-mobile-menu > *:last-child {
    margin-right:0;
}
nav.extra-top-menu #extra-top-menu-mobile-menu-button {
    display:none;
}
@media (max-width:1000px) {
    .sidemenu-layout nav.extra-top-menu {
        max-width:calc(100vw - 200px);
    }
}
@media (max-width:750px) {
    nav.extra-top-menu {
        position: fixed;
        top:60px;
        width:100% !important;
        padding:0 15px;
        max-width:100vw !important;
    }
    nav.extra-top-menu #extra-top-menu-mobile-menu {
        right:15px;
        max-width: calc(100vw - 30px);
    }
    .sidemenu-layout nav.extra-top-menu {
        top:120px;
    }
    .extra-top-menu-mobile-pusher {
        display:block !important;
    }
}
/* END: EXTRA-TOP-MENU */


/* START: FORMS */
.label, label {
    font-size: 13px;
    color: var(--text-color-1);
    margin-bottom:15px;
    display: block;
    font-weight:700;
}
input[type=text], input[type=email], input[type=password], select, textarea, input[type=number], input[type=time], .custom-select {
    transition: border .2s ease-in-out, outline .2s ease-in-out, background .2s ease-in-out;
    border: 1px solid var(--border-color-4);
    padding: 10px;
    background:var(--background-color-4);
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    display: block;
    width: 100%;
    color:var(--text-color-4);
    border-radius:7.5px;
    margin-bottom: 20px;
    appearance:none;
}
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, select:focus, textarea:focus, input[type=number]:focus, input[type=time]:focus {
    outline:1px solid var(--accent-color-2-light);
}
form a {
    color: var(--text-color-1);
    text-decoration: none;
}
form a:hover {
    text-decoration: underline;
}
label:has(input[type="checkbox"]) > input[type="checkbox"], label:has(input[type="radio"]) > input[type="radio"] {
    display: none;
}
label:has(input[type="checkbox"]), label:has(input[type="radio"]) {
    display: flex;
    width:fit-content;
    align-items: center;
    cursor: pointer;
    font-size:16px;
    font-weight:400;
    margin-bottom:0;
}
label.marginBottom:has(input[type="checkbox"]), label.marginBottom:has(input[type="radio"]) {
    margin-bottom:15px;
}
label:has(input[type="checkbox"])::before, label:has(input[type="radio"])::before {
    content: '';
    display: inline-block;
    width: 20px;
    min-width:20px !important;
    height: 20px;
    margin-right:10px;
    border:1px solid var(--special-checkbox-border-color);
    box-sizing: border-box;
    font-family: "Font Awesome 6 Free"; /* Specify Font Awesome */
    font-weight: 900; /* Specify the weight for solid icons */
}
label:has(input[type="checkbox"])::before {
    border-radius:7.5px;
}
label:has(input[type="radio"])::before {
    border-radius:25px;
}
label:has(input[type="checkbox"]:checked)::before, label:has(input[type="radio"]:checked)::before {
    background-color: var(--accent-color-3);
    border-color: var(--accent-color-3);
    text-align: center;
    color:var(--text-color-5);
    line-height: 20px;
}
label:has(input[type="checkbox"].primary:checked)::before, label:has(input[type="radio"].primary:checked)::before {
    background-color: var(--accent-color-1);
    border-color: var(--accent-color-1);
}
label:has(input[type="checkbox"]:disabled)::before, label:has(input[type="radio"]:disabled)::before, label:has(input[type="checkbox"].disabled)::before, label:has(input[type="radio"].disabled)::before {
    opacity:0.35;
}
label:has(input[type="checkbox"]:disabled), label:has(input[type="radio"]:disabled), label:has(input[type="checkbox"].disabled), label:has(input[type="radio"].disabled) {
    pointer-events:none;
    cursor:default;
}
label:has(input[type="checkbox"]:checked)::before {
    content: '\f00c'; /* Unicode for the FontAwesome check icon */
}
label.small:has(input[type="checkbox"]), label.small:has(input[type="radio"]) {
    font-size:13px;
}
label.small:has(input[type="checkbox"])::before, label.small:has(input[type="radio"])::before {
    width: 15px;
    height: 15px;
    min-width:15px !important;
}
label.small:has(input[type="checkbox"])::before {
    border-radius:5px;
}
label.small:has(input[type="checkbox"]:checked)::before, label.small:has(input[type="radio"]:checked)::before {
    line-height: 15px;
}
.right-symbol, .left-symbol {
    position:relative;
    display:block;
}
.right-symbol > input {
    padding-right:40px !important;
}
.left-symbol > input {
    padding-left:40px !important;
}
.right-symbol .symbol, .left-symbol .symbol {
    position: absolute;
    font-size:16px;
    color:var(--text-color-7);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-weight: normal;
}
.right-symbol .symbol {
    right: 10px;
}
.left-symbol .symbol {
    left: 10px;
}
.small-input-label {
    position:absolute;
    z-index:99999;
    color:var(--text-color-10);
    font-size:9px;
    right:10px;
    top:1px;
}
a.button, input[type=submit], button.button, label.button {
    width: fit-content;
    max-width: 100%;
    text-align:center;
    overflow:hidden;
    display: block;
    cursor: pointer;
    background: var(--background-color-4);
    border: 1px solid var(--border-color-2);
    color: var(--text-color-2);
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 10px;
    font-size: 16px !important;
    box-sizing: border-box;
    white-space:nowrap;
    border-radius: 7.5px !important;
    
    border-radius:150px !important;
    padding:10px 20px;
    font-size: 15px !important;
    user-select: none;
}
a.button i, input[type=submit] i, button.button i, label.button i {
    font-size: 16px !important;
    
    font-size: 15px !important;
}
a.button.disabled, input[type=submit].disabled, button.button.disabled, input[type=submit]:disabled, label.button.disabled {
    pointer-events:none;
    opacity:0.35;
    cursor:default;
}
h2 > .button {
    margin-left: 10px;
}
a.button:hover, input[type=submit]:hover, button.button:hover, label.button:hover {
    background: var(--background-color-2);
}
a.button.active, input[type=submit].active, button.button.active, label.button.active {
    background: var(--background-color-2);
}
a.button.inline, input[type=submit].inline, button.button.inline, label.button.inline {
    display:inline;
}
a.button.slim, input[type=submit].slim, button.button.slim, label.button.slim {
    padding: 5px 10px;
}
a.button.wide, input[type=submit].wide, button.button.wide, label.button.wide {
    padding: 15px 15px;
}
a.button.small, input[type=submit].small, button.button.small, label.button.small {
    font-size: 13px !important;
    
    font-size:12px !important;
}
a.button.small i, input[type=submit].small i, button.button.small i, label.button.small i {
    font-size: 13px !important;
    
    font-size:12px !important;
}
a.button.grey, input[type=submit].grey, button.button.grey, label.button.grey {
    background:var(--background-color-3);
}
a.button.grey:hover, input[type=submit].grey:hover, button.button.grey:hover, label.button.grey:hover {
    background:var(--background-color-4);
}
a.button.grey.active, input[type=submit].grey.active, button.button.grey.active, label.button.grey.active {
    background:var(--background-color-4);
}
a.button.primary, input[type=submit], button.button.primary, label.button.primary {
    background: var(--accent-color-1);
    border: none;
    color: var(--text-color-5) !important;
}
a.button.primary:hover, input[type=submit]:hover, button.button.primary:hover, label.button.primary:hover {
    background:var(--accent-color-1-light);
}
a.button.primary.active, input[type=submit].active, button.button.primary.active, label.button.primary.active {
    background:var(--accent-color-1-light);
}
a.button.blue, input[type=submit].blue, button.button.blue, label.button.blue {
    background: var(--neutral-color);
    border: none !important;
    color: var(--text-color-5);
}
a.button.blue:hover, input[type=submit].blue:hover, button.button.blue:hover, label.button.blue:hover {
    background:var(--neutral-color-light);
}
a.button.blue.active, input[type=submit].blue.active, button.button.blue.active, label.button.blue.active {
    background:var(--neutral-color-light);
}
a.button.red, input[type=submit].red, button.button.red, label.button.red {
    background: var(--negative-color);
    border: none !important;
    color: var(--text-color-5);
}
a.button.red:hover, input[type=submit].red:hover, button.button.red:hover, label.button.red:hover {
    background:var(--negative-color-light);
}
a.button.red.active, input[type=submit].red.active, button.button.red.active, label.button.red.active {
    background:var(--negative-color-light);
}
a.button.green, input[type=submit].green, button.button.green, label.button.green {
    background: var(--positive-color);
    border: none !important;
    color: var(--text-color-5);
}
a.button.green:hover, input[type=submit].green:hover, button.button.green:hover, label.button.green:hover {
    background:var(--positive-color-light);
}
@keyframes flickerGreen {
    0%, 100% { background-color: var(--positive-color); }
    50% { background: var(--positive-color-light); }
}

a.button.green.attention {
    animation: flickerGreen 1s infinite;
}
a.button.green.active, input[type=submit].green.active, button.button.green.active, label.button.green.active {
    background:var(--positive-color-light);
}
a.button.pink, input[type=submit].pink, button.button.pink, label.button.pink {
    background: var(--accent-color-3);
    border: none !important;
    color: var(--text-color-5);
}
a.button.pink:hover, input[type=submit].pink:hover, button.button.pink:hover, label.button.pink:hover {
    background:var(--accent-color-3-light);
}
a.button.pink.active, input[type=submit].pink.active, button.button.pink.active, label.button.pink.active {
    background:var(--accent-color-3-light);
}
a.button.sand, input[type=submit].sand, button.button.sand, label.button.sand {
    background: #dcc6a9;
    border: none !important;
    color: var(--text-color-5);
}
a.button.sand:hover, input[type=submit].sand:hover, button.button.sand:hover, label.button.sand:hover {
    background:#ebd4b5;
}
a.button.sand.active, input[type=submit].sand.active, button.button.sand.active, label.button.sand.active {
    background:#ebd4b5;
}
a.button.gravel, input[type=submit].gravel, button.button.gravel, label.button.gravel {
    background: #cbcac9;
    border: none !important;
    color: var(--text-color-5);
}
a.button.gravel:hover, input[type=submit].gravel:hover, button.button.gravel:hover, label.button.gravel:hover {
    background:#d4d2d1;
}
a.button.gravel.active, input[type=submit].gravel.active, button.button.gravel.active, label.button.gravel.active {
    background:#d4d2d1;
}
a.button.gradient-four, input[type=submit].gradient-four, button.button.gradient-four, label.button.gradient-four {
    background:var(--gradient-box-4);
    border: none !important;
    color: var(--text-color-5);
}
a.button.gradient-four:hover, input[type=submit].gradient-four:hover, button.button.gradient-four:hover, label.button.gradient-four:hover {
    filter:brightness(1.05);
}
a.button.gradient-four.active, input[type=submit].gradient-four.active, button.button.gradient-four.active, label.button.gradient-four.active {
    filter:brightness(1.05);
}
a.button.gradient-two, input[type=submit].gradient-two, button.button.gradient-two, label.button.gradient-two {
    background:var(--gradient-box-2);
    border: none !important;
    color: var(--text-color-5);
}
a.button.gradient-two:hover, input[type=submit].gradient-two:hover, button.button.gradient-two:hover, label.button.gradient-two:hover {
    filter:brightness(1.05);
}
a.button.gradient-two.active, input[type=submit].gradient-two.active, button.button.gradient-two.active, label.button.gradient-two.active {
    filter:brightness(1.05);
}
a.button.purple, input[type=submit].purple, button.button.purple, label.button.purple {
    background: var(--accent-color-2);
    border: none !important;
    color: var(--text-color-5) !important;
}
a.button.purple:hover, input[type=submit].purple:hover, button.button.purple:hover, label.button.purple:hover {
    background:var(--accent-color-2-light);
}
a.button.purple.active, input[type=submit].purple.active, button.button.purple.active, label.button.purple.active {
    background:var(--accent-color-2-light);
}
input[type=submit].normal {
    background:var(--background-color-4);
    border: 1px solid var(--border-color-2);
    color: var(--text-color-2) !important; 
}
input[type=submit].normal:hover {
    background: var(--background-color-2);
}
input[type=submit].normal.active {
    background: var(--background-color-2);
}
textarea {
  resize: none;
}
.dialog-datepicker {
    z-index:999999999 !important;
}
input.invalid, textarea.invalid, select.invalid, label:has(input[type="checkbox"].invalid)::before, label:has(input[type="radio"].invalid)::before {
    border:1px solid var(--negative-color);
}
@media(max-width:1250px) {
    a.button.inline:not(.button-group > a.button.inline):not(.grid-item > a.button.inline), input[type=submit].inline:not(.button-group > input[type=submit].inline):not(.grid-item > input[type=submit].inline), button.button.inline:not(.button-group > button.button.inline):not(.grid-item > button.button.inline) {
        display:block;
        margin-bottom:10px;
    }
    h2 > .inline.button {
        margin-left:0 !important;
    }
    .button-group {
        margin-top:10px;
        margin-bottom:10px;
        display: block;
    }
}
div.clr-field button {
    border-top-right-radius: 7.5px;
    border-bottom-right-radius: 7.5px;
}
.locationSwitcher {
    width: fit-content;
    height: 31.5px;
    border: 0;
    margin-top: 5px;
    outline: none !important;
    background: var(--background-color-3);
    padding: 0 15px;
    min-width: 100px;
    margin-bottom:0;
}
/* END: FORMS */


/* START: BOXES */
section.box {
    overflow: scroll;
    box-shadow:var(--box-shadow-1);
    background: var(--background-color-4);
    padding: 25px;
    margin:25px;
    box-sizing: border-box;
    border-radius:15px;
    position:relative;
}
.box#extraextratopmenu, .box#editorBox {
    border-radius:0;
}
section.box.negative {
    background:var(--negative-color);
    color:#fff;
}
section.box.disabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(1px);
    background-color: rgb(255 255 255 / 72%);
}
section.box.no-padding {
    padding: 0;
}
section.small.box {
    margin:25px auto 25px;
    width:500px;
    max-width: calc(100vw - 30px);
}
section.medium.box {
    margin:25px auto 25px;
    max-width:900px;
    width:calc(100% - 50px);
    box-sizing: border-box;
}
@media(max-width:750px) {
    section.box {
        margin:25px 15px;
    }
    h2.outside-box {
        margin-left:15px;
    }
    section.medium.box {
        width:calc(100% - 30px);
    }
}
@media(max-width:1000px) {
    section.box.no-padding:has(div.grid) { 
        margin-top:0; 
    }
}
h2.center-heading {
    margin-top: 50px;
    text-align: center;
    width: calc(100vw - 450px);
    box-sizing: border-box;
    padding:0 15px;
}
@media(max-width:1000px) {
    h2.center-heading {
         width: calc(100vw - 200px);
    }
}
@media(max-width:750px) {
    h2.center-heading {
        width:100vw;
    }
}
/* END: BOXES */


/* START: DIALOGS */
.overlay {
    width:100%;
    height:100%;
    background:var(--overlay-color);
    z-index:99999999;
    position:fixed;
    top:0;
    left:0;
    opacity: 0;
    transition:opacity .2s ease-in-out;
}
.overlay.visible {
  opacity: 1;
}
.dialog {
    z-index:999999999;
    display: block;
    width: 500px;
    max-height:calc(100vh - 100px);
    max-width:calc(100% - 30px);
    left: 50%;
    transform:translateX(-50%);
    top: 50px;
    position: fixed;
    background: var(--background-color-4);
    overflow:scroll;
    box-sizing:border-box;
    padding:0;
    border-radius:15px;
    opacity: 0;
    transition:opacity .2s ease-in-out;
}
.dialog.visible {
  opacity: 1;
}
.dialog.full-height {
    top:15px;
    max-height:calc(100vh - 30px);
}
.dialog > div, .dialog > form > div {
    padding:15px;
    max-height:calc(100vh - 100px);
    box-sizing:border-box;
    overflow:scroll;
    overflow-x:hidden;
}
.dialog.full-height > div, .dialog.full-height > form > div {
    max-height:calc(100vh - 30px);
}
.dialog .two-split:has(h2) {
    background:var(--gradient-box-4) !important;
    color:var(--text-color-11);
    font-size:20px;
    position: sticky; top: -15px; margin-left: -15px; margin-top: -15px; width: 100%; padding: 15px;
    box-shadow:var(--box-shadow-1);
    margin-bottom:15px;
    z-index:99;
}
.dialog .two-split:has(h2) h2 {
    margin-bottom:0;
}
.dialog .two-split:has(h2) a:not(.button) {
    color:var(--text-color-11) !important;
}
.dialog .two-split span {
    cursor:pointer;
}
.dialog .two-split.neutral {
    background:var(--background-color-4) !important;
    color:var(--text-color-4) !important;
}
.dialog .two-split.neutral a:not(.button) {
    color:var(--text-color-4) !important;
}
/* END: DIALOGS */


/* START: NOTIFICATIONS */
.notification {
    position: fixed;
    bottom: 15px;
    border-radius:15px;
    right: 15px;
    z-index:2000000001;
    width: 400px;
    max-width:calc(100vw - 30px);
    opacity:0;
    background: var(--neutral-color);
    box-sizing: border-box;
    box-shadow: var(--box-shadow-1);
    padding: 20px;
    transition:all .2s ease-in-out;
    height:fit-content !important;
    color:var(--text-color-5);
}
.notification.positive {
    background:var(--positive-color);
    color:var(--text-color-5);
}
.notification.negative {
    background:var(--negative-color);
    color:var(--text-color-5);
}
/* END: NOTIFICATIONS */


/* START: LISTS */
.list {
    overflow: hidden;
}
.list > .list-item {
    border-bottom:1px solid var(--border-color-2);
    padding:25px;
    display: flex;
    justify-content: space-between;
    column-gap:25px;
    align-items:center;
}
.list > .list-item:last-child {
    border-bottom:none;
}
@media(max-width:750px) {
    .list > .list-item {
        flex-direction:column;
        padding:25px 15px;
        align-items:flex-start;
    }
    .list > .list-item > div:first-child {
        margin-bottom:10px;
        flex-direction: column;
        row-gap: 10px !important;
        align-items: flex-start !important;
    }
}
.list-grid {
    display: grid;
    gap:25px;
    grid-template-columns: repeat(3, 1fr);
}
.list-grid > .list-item {
    padding: 25px;
    border-radius: 15px;
    font-weight:700;
    background: var(--background-color-1);
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}
.list-grid > .list-item .sub {
    font-weight: 400;
    font-size: 13px;
    display: block;
    color: var(--text-color-7);
}
@media(max-width:1300px) {
    .sidemenu-layout .list-grid {
        grid-template-columns: repeat(2, 1fr);
    } 
}
@media(max-width:550px) {
    .sidemenu-layout .list-grid {
        grid-template-columns:1fr;
    } 
}
/* END: LISTS */


/* START: BADGES */
.badge {
    color: var(--text-color-5);
    font-size:12px;
    display: inline-block;
    padding: 2px 10px;
    border-radius:7.5px;
    background:var(--neutral-color);
    font-weight: 700;
    vertical-align: top;
    line-height:initial;
}
.badge.blue {
    background:var(--neutral-color);
}
.badge.green {
    background:var(--positive-color);
}
.badge.red {
    background:var(--negative-color);
}
.badge.black {
    background:var(--background-color-7);
}
.badge.gradient-three {
    background:var(--gradient-box-3);
}
.badge.gradient-four {
    background:var(--gradient-box-4);
}
.badge.small {
    font-size:10px;
}
/* END: BADGES */


/* START: INFO */
p.errorMessage {
    display:none;
}
p.info, p.errorMessage {
    color:var(--special-social-and-design-text);
    box-shadow:var(--box-shadow-1);
    padding: 10px;
    background:var(--gradient-box-5);
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 13px;
    border-radius:7.5px;
}
p.info a {
    color:var(--special-social-and-design-text);
    text-decoration: underline;
}
p.info.white  {
    background: var(--background-color-4);
}
p.info.red, p.errorMessage  {
    background: var(--negative-color);
    color:var(--text-color-5);
}
p.info.gradient-two {
    background: var(--gradient-box-2);
    color:var(--text-color-5);
}
p.info.gradient-three {
    background: var(--gradient-box-3);
    color:var(--text-color-11);
}
p.info.gradient-four {
    background: var(--gradient-box-4);
    color:var(--text-color-11);
}
p.info.gradient-six {
    background: var(--gradient-box-6);
    color:var(--special-social-and-design-text);
}
p.info.gradient-six a {
    color:var(--special-social-and-design-text);
}
p.info.gradient-seven {
    background: var(--gradient-box-7);
    color:var(--special-social-and-design-text);
}
p.info.gradient-seven a {
    color:var(--special-social-and-design-text);
}
p.info.green {
    background: var(--positive-color);
    color:var(--text-color-5) !important;
}
p.info.red a, p.info.green a, p.info.gradient-three a, p.info.gradient-four a, p.info.red a, p.errorMessage a {
    color:var(--text-color-5) !important;
    text-decoration: underline;
}
p.info.wide {
    box-shadow:var(--box-shadow-1);
    padding: 25px;
    margin:0;
    font-size: 13px;
    border-radius:0;
}
p.info.medium {
    font-size:14px;
}
p.info.large {
    font-size:15px;
}
/* END: INFO */


/* START: TOOLTIPS */
.tooltip {
    position: relative;
}
.tooltip-content {
    font-size: 13px !important;
    visibility:hidden;
    opacity:0;
    color:var(--text-color-4) !important;
    display: block;
    background: var(--background-color-4) !important;
    padding: 20px;
    font-weight: 400;
    white-space: normal;
    text-align: left;
    line-height: 2;
    border-radius:15px;
    transition:0.2s opacity ease-in-out;
    box-shadow:var(--box-shadow-1);
    width:400px;
    max-width:calc(100vw - 175px);
    z-index:99;
    position: absolute;
}
.tooltip.up .tooltip-content {
    transform:translateY(calc(-100% - 30px));
}
.tooltip-content a {
    color: var(--text-color-4) !important;
    text-decoration:underline;
}
.tooltip.small .tooltip-content {
    width:200px;
}
.tooltip:hover .tooltip-content {
    visibility: visible;
    opacity:1;
    display:block !important;
}
/* END: TOOLTIPS */


/* START: GRIDS */
.grid {
    border-radius:15px;
    overflow: hidden;
    background:var(--background-color-3);
    display:grid;
    column-gap:1px;
    font-size:13px;
    grid-auto-rows: 60px;
    min-width:fit-content;
}
.grid .grid-heading, .grid .grid-item {
    background:var(--background-color-4);
    padding:0 20px;
    overflow-x:scroll;
    overflow-y:hidden;
    white-space: nowrap;
    display: block;
    line-height:60px;
    border-bottom:1px solid var(--border-color-3);
}
.grid .grid-heading {
    background:var(--background-color-5);
    font-weight:700;
    font-size:16px;
    z-index:3;
}
.grid.gradient-four .grid-heading {
    background:var(--gradient-box-4);
    color:var(--text-color-11);
}
.grid .grid-heading.small {
    font-size:13px;
}
.grid .grid-heading.sticky {
    /*position:sticky;*/
    top:60px;
}
.grid .grid-item.hidden {
    display: none;
}
div.grid-scroll-indicator {
    display: none;
    font-size: 13px;
    right: 25px;
    opacity: 0.33;
    font-style: italic;
    text-align: right;
    padding-right: 25px;
    height: 40px;
    line-height: 40px;
}
@media(max-width:750px) {
    div.grid-scroll-indicator {
        padding-right: 15px;
    }
}
div.grid-scroll-indicator.left {
    text-align:left;
    padding-right:0;
}
@media(max-width:1000px) {
    .grid .grid-heading, .grid .grid-item {
        min-width:min-content;
    }
    div.grid-scroll-indicator {
        display: block;
    }
}
.grid.break {
    grid-auto-rows:unset;
}
.grid.break .grid-heading, .grid.break .grid-item {
    line-height:normal;
    padding:20px;
    white-space: normal;
}
/* END: GRIDS */

/* START: AUTH */
.auth-box {
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: calc(100vw - 50px);
    box-shadow: rgb(6 3 20 / 20%) 0 0px 30px;
    max-height: calc(100vh - 125px);
    overflow: scroll;
    background: var(--background-color-4);
    padding: 50px;
    top: 50%;
    border-radius: 25px;
    box-sizing: border-box;
}
.auth-box h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}
.auth-box p.info:not(.gradient-four):not(.red) {
    margin-bottom:30px;
    line-height:2;
    color:var(--special-normal-box-text);
}
.auth-box p a {
    color:var(--special-normal-box-text);
}
.auth-box p.errorMessage {
    color:var(--text-color-5);
}
.auth-box p.signup {
    text-align: center;
}
.auth-box p.signup .checks {
    display: block;
    text-align: center;
    margin-top:10px;
    font-size:11px;
}
.auth-box p.signup .checks .check {
    white-space: nowrap;
}
.auth-box p.signup .checks .check:not(.check:last-child) {
    margin-right:20px;
}
.auth-box p.signup .checks .check i {
    margin-right:7px;
    color:var(--positive-color);
}
@media(max-width:800px) {
    .auth-box {
        padding:25px;
    }
    .auth-box h2 {
        font-size:30px;
        margin-bottom: 25px;
    }
}
@media(max-width:400px) {
    .auth-box {
        max-width: calc(100vw - 20px);
        max-height:calc(100vh - 80px);
        transform:translate(-50%, 0);
        top:65px;
        padding:20px;
    }
}
.preview-background {
    background-image: var(--auth-preview-background-xxl); 
    background-size: cover;
}
@media(max-width:1439px) {
    .preview-background {
        background-image: var(--auth-preview-background-xl);
    }
}
@media(max-width:1270px) {
    .preview-background {
        background-image: var(--auth-preview-background-l);
    }
}
@media(max-width:1111px) {
    .preview-background {
        background-image: var(--auth-preview-background-m);
    }
}
@media(max-width:773px) {
    .preview-background {
        background-image: var(--auth-preview-background-s);
    }
    .auth-box {
        background:var(--auth-box-color-mobile);
    }
}
@media(max-width:700px) {
    .preview-background {
        background-image: var(--auth-preview-background-xs);
    }
}
@media(max-width:498px) {
    .preview-background {
        background-image: var(--auth-preview-background-xxs);
    }
}
@media(max-width:378px) {
    .preview-background {
        background-image: var(--auth-preview-background-xxxs);
    }
}

.preview-background > div:has(.auth-box) {
    height: 100vh;
    overflow: scroll;
}
#passwordCriteria {
    display: none;
    width:fit-content;
    width:250px;
    max-width;100%;
    color:var(--special-social-and-design-text);
}
#passwordCriteria span {
    display:block;
    line-height:1.75;
}
/* END: AUTH */

/* START: PROMOTIONS */
.box.gradient-heading-box {
    text-align: center;
    color: var(--text-color-11);
    font-size:16px;
    line-height: 1.75;
    padding: 50px;
}
.box.gradient-heading-box a {
    color: var(--text-color-11);
}
.box.gradient-heading-box.slim {
    padding: 25px;
    font-size:14px;
    text-align: left;
}
.box.gradient-heading-box.pageEditor {
    margin:0;
    margin-bottom:25px;
}
.box.gradient-heading-box.green {
    background: var(--gradient-box-4);
}
.box.gradient-heading-box.marketing-tools {
    background: var(--special-marketing-tools);
    color:var(--special-marketing-tools-text);
}
.box.gradient-heading-box.marketing-tools h2 {
    color:var(--text-color-4);
}
.box.gradient-heading-box.social-and-design {
    background: var(--special-social-and-design);
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.social-and-design h2, .box.gradient-heading-box.social-and-design strong {
    color:var(--special-social-and-design-heading);
}
.box.gradient-heading-box.webstore {
    background: var(--special-webstore);
    color:var(--special-marketing-tools-text);
}
.box.gradient-heading-box.webstore h2 {
    color:var(--text-color-4);
}
.box.gradient-heading-box.yellow {
    background: var(--gradient-box-2);
}
.box.gradient-heading-box.purple {
    background: var(--gradient-box-3);
}
.box.gradient-heading-box.purple-darker {
    background: var(--gradient-box-3-darker);
}
.box.gradient-heading-box.browngradient {
    background: var(--special-brown-gradient);
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.browngradient h2 {
    color:var(--special-social-and-design-heading);
}
.box.gradient-heading-box.lightpinkyellow {
    background: var(--special-lightpinkyellow-gradient);
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.lightpinkyellow h2 {
    color:var(--special-social-and-design-heading);
}
.box.gradient-heading-box.lightgreenblue {
    background: var(--special-lightgreenblue-gradient);
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.lightgreenblue h2 {
    color:var(--special-social-and-design-heading);
}
.box.gradient-heading-box.offpeak {
    background: var(--special-offpeak-gradient);
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.offpeak h2 {
    color:var(--special-social-and-design-heading);
}
.box.gradient-heading-box.lastminute {
    background: var(--special-lastminute-gradient);
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.lastminute h2 {
    color:var(--special-social-and-design-heading);
}
.box.gradient-heading-box.blueyellow {
    background:var(--gradient-box-6);
    color:var(--text-color-4);
}
.box.gradient-heading-box.blueyellow a {
    color:var(--text-color-4);
}
.box.gradient-heading-box.pinkblue {
    background:var(--gradient-box-5);
    color:var(--text-color-4);
}
.box.gradient-heading-box.pinkblue a {
    color:var(--text-color-4);
}
.box.gradient-heading-box.normal {
    background:var(--gradient-box-5);
    color:var(--special-normal-box-text);
}
.box.gradient-heading-box.normal a {
    color:var(--special-normal-box-text);
}
.box.gradient-heading-box.normal.soft {
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.normal.soft a {
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.gradient-six {
    background:var(--gradient-box-6);
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.gradient-six a {
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.gradient-seven {
    background:var(--gradient-box-7);
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box.gradient-seven a {
    color:var(--special-social-and-design-text);
}
.box.gradient-heading-box h2 {
    color: var(--text-color-11);
    font-size: 36px;
}
.box.marketing-tools-box {
    background:var(--gradient-box-10);
    color:var(--special-marketing-tools-text);
}
.box.marketing-tools-box h2 {
    color:var(--text-color-4);
}
.box.marketing-tools-box a:not(.button) {
    color: inherit;
}
.box.feature {
    display: flex;
    padding: 50px;
    line-height: 1.75;
    align-items: center;
    gap: 50px;
    font-size:16px;
}
.box.feature.right {
    flex-direction:row-reverse;
}
.box.feature img, .box.feature > div.img {
    width: 380px;
    aspect-ratio: 6 / 5;
    object-fit: cover;
    border-radius: 25px;
    max-width:calc(100vw - 60px);
}
.box.feature > div.img img {
    box-shadow: rgb(45 45 48 / 20%) 0px 2px 10px 0px;
    max-width: 85%;
    max-height: 85%;
    border-radius: 7.5px;
}
.box.feature h2 {
    font-size:30px;
}
.box.gradient-heading-box .partoflabel {
    position: absolute;
    border: 1px solid;
    padding: 5px;
    border-radius: 5px;
    line-height: 1;
    font-size: 13px;
    font-weight: 700;
    right: 15px;
    top: 15px;
    pointer-events: none;
}
.box.feature.short {
    gap:25px;
}
.box.feature.short h2 {
    font-size: 20px;
    width: 225px;
    margin: 0;
}
.box.feature.short > span {
    flex:1;
}
@media(max-width:1300px) {
    .box.feature {
        padding:25px;
    }
    .box.feature img, .box.feature > div.img {
        width:320px;
    }
}
@media(max-width:1200px) {
    .box.feature h2 {
        font-size:24px;
    }
    .box.feature img, .box.feature > div.img {
        width:280px;
    }
}
@media(max-width:1100px) {
    .box.gradient-heading-box {
        padding:25px;
    }
    .box.gradient-heading-box:has(.partoflabel) {
        padding-top:50px;
    }
    .box.feature {
        flex-direction:column !important;
    }
}
@media(max-width:1000px) {
    .box.feature {
        flex-direction:row !important;
    }
    .box.feature.right {
        flex-direction:row-reverse !important;
    }
}
@media(max-width:875px) {
    .box.feature, .box.feature.right {
        flex-direction:column !important;
    }
}
@media(max-width:750px) {
    .box.gradient-heading-box h2 {
        font-size:32px;
    }
    .box.feature {
        flex-direction:row !important;
    }
    .box.feature.right {
        flex-direction:row-reverse !important;
    }
}
@media(max-width:650px) {
    .box.feature, .box.feature.right {
        flex-direction:column !important;
    }
    .box.feature img, .box.feature > div.img {
        width:100%;
    }
}
/* END: PROMOTIONS */


/* START: WEBSITES */
.theme-customizer {
    display: flex;
}
.theme-customizer > section:first-child {
    width: 325px;
    margin: 0;
    border-radius: 0;
    position: sticky;
    overflow-x: hidden;
    top: 60px;
    height: calc(100vh - 60px) !important;
}
.theme-customizer > section:last-child {
    flex:1;
}
.theme-customizer #preview {
    min-height:0 !important;
    height: calc(100vh - 120px);
}
@media(max-width:1175px) {
    .theme-customizer {
        display: block;
    }
    .theme-customizer #preview {
        height:800px !important;
    }
    .theme-customizer > section:first-child {
        border-radius: 15px;
        max-height: 400px !important;
        margin: 25px;
        height: fit-content;
        width: auto;
        position: relative;
        top: 0;
    }
}
strong.customizer-divider {
    margin-bottom: 15px;
    margin-top:30px;
    display: block;
    margin-left: -25px;
    padding: 25px;
    width: calc(100% + 50px);
    box-sizing: border-box;
    background: var(--background-color-2);
}
.customizer.collapsable-title {
    text-decoration: none;
    background: var(--background-color-1);
    color: var(--text-color-4);
    width: calc(100% + 50px);
    padding: 25px;
    box-sizing: border-box;
    font-weight: bold;
    display: flex;
    font-size:14px;
    margin-bottom: 15px;
    margin-left: -25px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap:10px;
}
.customizer.collapsable-content {
    display:none;
}
strong.customizer-divider.pageEditor {
    margin-left: -15px;
    padding: 15px;
    width: calc(100% + 30px);
}
strong.customizer-divider.pageEditor.flex {
    margin-left: 0;
    width: 100%;
}
.pageEditor.collapsable-title {
    text-decoration: none;
    background: var(--background-color-1);
    color:var(--text-color-4);
    width: calc(100% + 30px);
    padding: 25px;
    box-sizing: border-box;
    font-weight: bold;
    display: flex;
    font-size:14px;
    margin-bottom: 15px;
    margin-left: -15px;
    margin-top:25px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap:10px;
}
.flex.pageEditor.collapsable-title {
    width: 100%;
    margin-left:0;
}
.pageEditor.collapsable-content {
    display:none;
}
.box.collapsable-title {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap:10px;
    margin:0;
}
.box.collapsable-content {
    display:none;
    margin-top:25px;
}
.box:has(#preview) {
    border-radius:0;
}
.preview-divider-text {
    display:none;
    font-size: 13px;
    opacity: 0.33;
    font-style: italic;
}
#styling-editor-preview-warning {
    font-size: 10px;
    color: var(--special-social-and-design-text);
}
#styling-editor-preview-warning-two {
    margin-top:25px;
    font-size:13px;
    opacity: 0.33;
    font-style: italic;
}
@media(max-width:1175px) {
    #styling-editor-preview-warning, #styling-editor-preview-warning-two {
        display:none;
    }
    .preview-divider-text {
        display:block;
    }
}
/* END: WEBSITES */


/* START: OTHER */
.hide {
    display: none;
}
#locationSelector {
    border-radius:7.5px !important;
}
#floatingFooterBox {
    position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);opacity: 0.9; z-index: 99999999; overflow: scroll; box-shadow: var(--box-shadow-1); background: var(--accent-color-2); color:var(--text-color-5); padding: 15px 30px; margin: 15px; box-sizing: border-box; border-radius: 25px; min-width: fit-content; max-width: calc(100vw - 30px);
}
#floatingFooterBox i {
    position: absolute;
    right: 11px;
    top: 7px;
    cursor:pointer;
}
.item-box {
    border-radius:15px;
    border: 1px solid var(--border-color-3);
    padding: 25px;
    margin-bottom: 25px;
    background: var(--background-color-4);
}
.container {
    margin-left:25px !important;
    margin-right:25px !important;
}
@media (max-width:750px) {
    .container {
        margin-left:15px !important;
        margin-right:15px !important;
    }
}
.expandable-content { display: none; }
.expanded .expandable-content { display: block; }
.print-container {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--background-color-4);
    width: 100vw;
    height: 100vh;
    z-index: 9999999999;
    padding: 25px;
    box-sizing: border-box;
}
.dialog:has(.glass) {
    background: var(--background-color-8); 
    backdrop-filter: blur(15px); 
    box-shadow: var(--box-shadow-1); 
}
/* END: OTHER */


/* START: CALENDAR-DIALOG */
#calendar-dialog {
    position: fixed;
    background: var(--background-color-4);
    box-shadow: var(--box-shadow-1);
    padding: 10px;
    z-index: 999999999;
    border-radius:7.5px;
    border:1px solid var(--border-color-2);
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 5px;
  font-weight: bold;
}
.calendar-arrow {
  cursor: pointer;
  user-select: none;
}
select.month-select,
select.year-select {
    border: none;
    background: none;
    appearance: none; /* Hide native arrows in some browsers */
    font-weight: bold;
    cursor: pointer;
    margin:0;
    padding:0;
    width:auto;
    font-size: 14px;
}
table {
  border-collapse: collapse;
  margin: 0 auto;
}
thead {
    color:var(--text-color-6);
}
th,td {
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 13px;
    padding: 2px;
}
button.calendar-day {
    width: 100%;
    color:var(--text-color-2);
    height: 100%;
    border: none;
    background: var(--background-color-3);
    cursor: pointer;
    border-radius: 7.5px;
}
.calendar-dialog-current-day {
  color: var(--accent-color-2) !important;
}
.calendar-dialog-selected-day, button.calendar-day:hover {
    background: var(--accent-color-2) !important;
    color: var(--text-color-5) !important;
}
/* END: CALENDAR-DIALOG */


/* START: PHONE DIALOG */
.phone-input {
    display:flex;
    gap:5px;
}
.phone-input .custom-select {
    flex: 0;
}
.phone-input .custom-select .custom-select-selected {
    font-size:16px;
}
.phone-input .custom-select .custom-select-items {
    width: min-content;
    white-space: nowrap;
}
.phone-input .custom-select .custom-select-item {
    font-size:16px;
}
/* END: PHONE DIALOG */


/* START: COLOR PICKER */
.color-picker-preview {
    width: 50px;
    height: 50px;
    border-radius: 7.5px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 20px;
    border:1px solid var(--border-color-2);
}
.hidden-color-input {
    opacity: 0;
    width: 50px;
    cursor:pointer;
    height: 50px;
    margin-left: -50px;
    vertical-align: top;
}
#options .hidden-color-input {
    height: 32px;
    margin-left: -55px;
}
/* END: COLOR PICKER */


/* START: PROGRESS LOADER */
#progress-loader {
    background: var(--accent-color-2-extra-light);
    height: 2px;
    top: 0;
    left: 0;
    transition:width 0.3s ease-out, opacity 0.3s;
    position: fixed;
    z-index: 9999999999;
}
/* END: PROGRESS LOADER */


/* START: FIND EXISTING CLIENT */
#find-existing-client-chosen-client {
    display: none;
    margin-bottom: 25px;
    background: var(--gradient-box-4);
    color: #fff;
    margin-top: 25px;
    padding: 20px;
    border-radius: 15px;
}
#find-existing-client-client-list {
    display:none;
    transition: all .2s ease-in-out;
    border: 1px solid var(--border-color-4);
    padding: 10px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    width: 100%;
    border-radius: 6px;
    font-style: normal;
    margin-bottom: 20px;
    margin-top: 10px;
    width: 100%;
    height: 150px;
    overflow-y: scroll;
    border: 1px solid var(--special-checkout-line-color);
    border-radius:7.5px;
    background: var(--background-color-4);
    color: var(--text-color-4);
}

.find-existing-client-client-item {
    padding: 8px;
    justify-content:space-between;
    display:flex;
    cursor: pointer;
    border-bottom: 1px solid var(--special-checkout-line-color);
}
.find-existing-client-client-item:hover {
    background:var(--background-color-3);
}
.find-existing-client-client-item.find-existing-client-chosen-client {
    background: var(--accent-color-3) !important;
    color: #fff !important;
}
/* END: FIND EXISTING CLIENT */

/* START: CUSTOM SELECT ELEMENT */
.custom-select {
    position:relative;
    padding:0;
    height:100%;
}
.custom-select:has(.custom-select-items:not(.custom-select-hide)) .custom-select-selected {
    outline:1px solid var(--accent-color-2-light);
}
.custom-select-selected {
    cursor:pointer;
    border-radius:7.5px;
    padding:10px;
    user-select:none;
    box-sizing:border-box;
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.custom-select-category {
    display: flex;
    user-select:none;
    align-items: center;
    gap: 10px;
    padding: 5px;
    font-size: 13px;
    color: var(--text-color-4);
    font-weight: 700;
}
.custom-select-category-dot {
    height: 10px;
    user-select:none;
    width: 10px;
    border-radius: 10px;
    display: inline-block;
}
.custom-select-items {
    position: absolute;
    background-color: var(--background-color-4);
    border: 1px solid var(--border-color-4);
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 7.5px;
    padding: 10px;
    box-sizing: border-box;
    z-index: 9;
    box-shadow:var(--box-shadow-1);
}
.custom-select-item {
    padding: 7.5px;
    user-select:none;
    cursor: pointer;
    font-size: 13px;
    display: block;
    align-items: center;
}
.custom-select-items:has(.custom-select-category) .custom-select-item {
    margin-left:20px;
}
.custom-select-item-meta {
    color: var(--text-color-7);
    font-size: 12px;
    display: flex;
    gap:5px;
}
@media(max-width:450px) {
    .custom-select-item-meta {
        display:inline-block;
    }
    .custom-select-item-meta > * {
        margin-right:5px;
    }
    .custom-select-item-meta > *:last-child {
        margin-right:0;
    }
}
.custom-select-item:hover, .custom-select-item.selected {
    background-color: var(--background-color-1);
}
.custom-select-hide {
    display: none;
}
/* END: CUSTOM SELECT ELEMENT */


/* START: EXAMPLE COLORS */
.example-color {
    cursor: pointer;
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius:100px;
    margin-right:5px;
    border:2px solid transparent;
}
.example-color:hover {
    border:2px solid var(--border-color-6)
}
/* END: EXAMPLE COLORS */


/* START: MAX LENGTH COUNTER */
.max-length-counter {
    margin-top: -42px;
    float: right;
    margin-right: 7px;
    font-size: 12px;
    line-height: 20px;
    height: 20px;
    display: block;
    pointer-events: none;
}
.max-length-counter.max {
    color:var(--neutral-color);
}
/* END: MAX LENGTH COUNTER */


/* START: STAT HIGHLIGHT */
.stat {
    flex:1;
    color:var(--text-color-11);
    padding: 50px 25px;
    border-radius:25px;
    text-align: center;
}
.stat .highlight {
    display: block;
    font-size:42px;
}
#stats {
    display:flex;
    gap:25px;
}
@media(max-width:1200px) {
    #stats {
        flex-direction: column;
    }
}
@media(max-width:1000px) {
    #stats {
        flex-direction: row;
    }
}
@media(max-width:925px) {
    #stats {
        flex-direction: column;
    }
}
/* END: STAT HIGHLIGHT */


/* START: INTERACTIVE OPTION */
.interactive-option {
    display:flex;
    column-gap:10px;
    align-items:center;
    font-size:13px;
    margin-bottom:10px;
}
.interactive-option input, .interactive-option select {
    margin-bottom:0;
}
/* END: INTERACTIVE OPTION */


/* START: COMMENT PHOTOS */
.comment-photo {
    position:relative;
    display:inline-block;
    margin:12.5px 25px 12.5px 0;
    border-radius:7.5px;
    overflow:hidden;
}
.comment-photo img {
    cursor:pointer;
    width: 150px;
    height: 150px;
    object-fit: cover;
    vertical-align:top;
}
.comment-photo i {
    position: absolute;
    padding: 6px;
    top: 0;
    border-bottom-left-radius: 7.5px !important;
    right: 0;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    background: var(--background-color-4);
}
/* END: COMMENT PHOTOS */