/* Variables */
:root {
    --base-font-size: 17px;

    --body-background-color: #88BBDD;
    --body-foreground-color: #262425;

    --primary-color: #0088DD;
    --primary-contrast-color: #222222;
    --primary-highlight-color: #0099EE;
    --primary-accent-color: #0077CC;
    --primary-accent-contrast-color: #F0EADF;

    --secondary-color: #555;
    --secondary-contrast-color: #FFF;
    --secondary-highlight-color: #666;
    --secondary-accent-color: #A4A3A3;
    --secondary-accent-contrast-color: #FFF;

    --panel-background-color1: #FFFFFF;
    --panel-background-color2: #FFFFFF; 
    --panel-background-filter: blur(40px);
    --panel-foreground-color: #37474F;

    --field-background-color: #FFFFFF;
    --field-foreground-color: #37474F;
    --field-border-color: #446688;
    --field-border-radius: 3px;
    --field-padding: 10px 8px;
    --field-select-padding: 8px 4px;
    --field-font-size: 15px;
    --field-invalid-color: #FFCCCC;

    --button-padding: 10px 30px;
    --button-padding-small: 8px 26px;
    --button-border-radius: 10px;
    --button-min-width: 145px;
    --button-outline-background-color: transparent;
    --button-outline-hover-color: #EEEEFF;
  
    --dialog-background-color: #FFF;
    --dialog-background-filter: blur(40px);
    --dialog-foreground-color: black;
    --dialog-header-foreground-color: #ffffff;
    --dialog-header-background-color: #0088DD;
    --dialog-header-background-filter: blur(40px);

    --shade-10: rgba(0,0,0,0.1);
    --shade-20: rgba(0,0,0,0.2);
    --shade-30: rgba(0,0,0,0.3);
    --shade-40: rgba(0,0,0,0.4);
    --shade-50: rgba(0,0,0,0.5);
    --shade-60: rgba(0,0,0,0.6);
    --shade-70: rgba(0,0,0,0.7);
    --shade-80: rgba(0,0,0,0.8);
    --shade-90: rgba(0,0,0,0.9);

    --glass-10: rgba(127,127,200,0.1);
    --glass-20: rgba(127,127,200,0.2);
    --glass-30: rgba(127,127,200,0.3);
    --glass-40: rgba(127,127,200,0.4);
    --glass-50: rgba(127,127,200,0.5);
    --glass-60: rgba(127,127,200,0.6);
    --glass-70: rgba(127,127,200,0.7);
    --glass-80: rgba(127,127,200,0.8);
    --glass-90: rgba(127,127,200,0.9);

    --highlight-10: rgba(255,255,255, 0.1);
    --highlight-20: rgba(255,255,255, 0.2);
    --highlight-30: rgba(255,255,255, 0.3);
    --highlight-40: rgba(255,255,255, 0.4);
    --highlight-50: rgba(255,255,255, 0.5);
    --highlight-60: rgba(255,255,255, 0.6);
    --highlight-70: rgba(255,255,255, 0.7);
    --highlight-80: rgba(255,255,255, 0.8);
    --highlight-90: rgba(255,255,255, 0.9);
}

@font-face {
    font-family: 'Walkway Black';
    font-style: normal;
    font-weight: normal;
    src: local('Walkway Black'), url('/Content/Fonts/Walkway_Black.woff') format('woff');
}

html, body {
    overscroll-behavior: none;
    scroll-behavior: smooth;
}

body {
    background-color: var(--body-background-color);
    background: linear-gradient(145deg, #99CCEE, #77AACC);
    /* background-image: url('/Content/Images/background.png'); */
    color: var(--body-foreground-color);
    font-size: var(--base-font-size);
    /* font-family: 'Quicksand', sans-serif; */

    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-weight: 300;
    font-style: normal;


    line-height: 25px;

    margin: 0;
}

body.dark {
    background-color: #333344;
    background-image: none;
    color: #888899;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 5px;
}

h2 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 10px;
}

.contrast {
    color: var(--primary-accent-contrast-color);
}


.fixed-content-width {
    display: inline-block;
    width: 1000px;
    text-align: left;
}


.loading-div {
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

    .loading-div .loading-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 15px;
        border-radius: 3px;
        color: white;
    }

/* Fonts */
.material-symbols-outlined.filled {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


/* Default HTML tags */

button {
    background-color: transparent;
    padding: 5px 10px;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: var(--glass-10);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    margin-top: 2px;
    margin-bottom: 2px;
    background-color: white;
    outline: 2px solid white;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 1px;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #BBB;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--primary-color);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--primary-color);
}

.radio-label {
    display: flex;
    align-items: center;
}

    .radio-label > input[type="radio"] {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .radio-label > span {
        padding-top: 4px;
    }

ul {
    list-style-type: none;
    margin-block-start: 0px;
    padding-inline-start: 0px;
}


/* Backgrounds */

.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0, 0.5);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Animations */

.spin {
    animation: spin 4s linear infinite;
}

@keyframes spin { 
    100% { 
        transform: rotate(360deg); 
    } 
}


/* Positioning & Alignment */

.fill-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.center-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.align-content-left {
    display: flex;
    justify-content: left;
}

.align-content-right {
    display: flex;
    justify-content: right;
}

.align-right {
    text-align: right;
}


/* Sizing */
.min-form-width {
    width: 800px;
    max-width: 100%;
}

.size-xxs .min-form-width, .size-xs .min-form-width, .size-sm .min-form-width {
    min-width: auto;
}



/* Dividers */
.divider-horizontal {
    height: 1px;
    border-top: 1px solid var(--shade-20);
    border-bottom: 1px solid var(--highlight-60);
}

.divider-horizontal.spaced {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Fields */

.field {
    padding: 10px 0;
    min-width: 130px;
    position: relative;
}

.size-xs .field {
    min-width: 50px;
}


.field.small {
    min-width: 50px;
}

.field label {
    display: flex;
    margin-bottom: 3px;
    font-size: var(--field-font-size);
    font-weight: 600;
    align-items: center;
}

.field label.caption-label input {
    margin-top: 0;
}

.field label.caption-label span {
    display: flex;
    font-weight: 100;
    align-items: center;
}

.field input {
    background-color: var(--field-background-color);
    color: var(--field-foreground-color);
    border: 1px solid var(--field-border-color);
    padding: var(--field-padding);
    font-size: var(--base-font-size);
    border-radius: var(--field-border-radius);
    font-size: var(--field-font-size);
    width: 100%;
}

.dark .field input {
    color: #DDDDDD;
    background-color: #33333388;
}

.field input.invalid {
    background-color: var(--field-invalid-color);
}

.field textarea {
    background-color: var(--field-background-color);
    color: var(--field-foreground-color);
    border: 1px solid var(--field-border-color);
    padding: var(--field-padding);
    font-size: var(--base-font-size);
    border-radius: var(--field-border-radius);
    font-size: var(--field-font-size);
    width: 100%;
}

.dark .field textarea {
    color: #DDDDDD;
    background-color: #33333388;
}

.field textarea.invalid {
    background-color: var(--field-invalid-color);
}

.field input.password {
    padding-right: 30px;
}

.field input.color  {
    padding: 2px 4px;
    max-width: 200px;
    height: 50px;
}

.field input[type=checkbox] {
    box-shadow: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin-left: 0;
    margin-right: 10px;
}

.field input[type=radio] {
    box-shadow: none;
    width: 20px;
    height: 20px;
    margin: 0;
    margin-right: 5px;
}

.field select {
    background-color: var(--field-background-color);
    color: var(--field-foreground-color);
    border: 1px solid var(--field-border-color);
    padding: var(--field-select-padding);
    font-size: var(--base-font-size);
    border-radius: var(--field-border-radius);
    width: 100%;
    box-sizing: border-box;
}

.dark .field select {
    color: #DDDDDD;
    background-color: #33333388;
}

.field select.invalid {
    background-color: var(--field-invalid-color);
}

.field.single-image-field {
    display: inline-block;
    width: 300px;
    text-align: center;
}

.field.single-image-field .image-preview {
    min-height: 200px;
    width: 100%;
    margin-bottom: 15px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
}

.field.file-field .file-preview {
    background-color: #EEE;
    color: #888;
    padding: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.field.date-field select {
    width: 70px;
    padding-left: 2px;
    padding-right: 2px;
    text-align: center;
}

    .field.date-field select.day {
        width: 70px;
        margin-right: 10px;
    }

    .field.date-field select.month {
        width: 120px;
        margin-right: 10px;
        text-align: left;
    }

    .field.date-field select.hours {
        width: 60px;
        margin-left: 10px;
    }

    .field.date-field select.minutes {
        width: 60px;
    }

.field.choice-field .choices label {
    display: flex;
    align-items: center;
    font-weight: 100;
}

.field.choice-field .choices.invalid {
    background-color: var(--field-invalid-color);
}

.field.choice-field .scrollbox {
    background-color: var(--highlight-50);
    border: 1px solid var(--glass-30);
    border-radius: 3px;
    padding: 10px;
    max-height: 120px;
    overflow-y: auto;

}

.field.choice-field .dropdown {
    position: absolute;
    width: 100%;
    z-index: 1;
    background-color: white;
}

.field .group {
    break-inside: avoid;
    margin-bottom: 15px;
}

.field .group-header {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.field .search-results {
    position: absolute;
    left: 0px;
    right: 0px;
    background-color: white;
    z-index: 1;
    border: var(--glass-50);
    box-shadow: 2px 2px 2px rgba(0,0,0, 0.5);
    border-radius: 0 0 10px 10px;
    max-height: 175px;
    overflow-y: auto;
}

    .field .search-results .search-results-item {
        cursor: pointer;
        padding: 10px 5px;
        font-size: 12px;
    }

        .field .search-results .search-results-item:hover {
            background-color: var(--glass-10);
        }

    .field .field-icon {
        position: absolute;
        bottom: 17px;
        right: 5px;
        cursor: pointer;
    }

    .field .search-input {
        padding-right: 30px;
    }

/* Boxes & Containers */

.currency-box {
    display: flex;
    justify-content: space-between;
    width: 250px;
}

.property-box {
    display: flex;
    width: 300px;
}

    .property-box div:nth-child(1) {
        font-weight: 600;
        flex: 0.5;
    }

    .property-box div:nth-child(2) {
        flex: 1;
    }


.button-box {
    padding: 25px 0 10px 0;
}

.button-box .left {
    
    text-align: left;
}
 
.button-box .right {
    float: right;
    text-align: right;
}

.size-xs .button-box .right {
    float: none;
    text-align: left;
}

    .button-box .left .btn-primary, .button-box .right .btn-primary, .button-box .left .btn-outline-primary, .button-box .right .btn-outline-primary {
        width: auto;
        display: inline-block;
    }

.size-xs .button-box .left .btn-primary, .size-xs .button-box .right .btn-primary, .size-xs .button-box .left .btn-outline-primary, .size-xs .button-box .right .btn-outline-primary {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background-color: var(--primary-color);
    background: linear-gradient(145deg, #1199EE, #0066BB);

    border-radius: 15px;
    color: white;
}

    .header .header-content {
        padding: 30px 30px;
    }

        .size-xs .header .header-content {
            padding: 30px 15px;
        }

    .header h1 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .header .header-controls {
        background-color: var(--shade-10);
        padding: 10px 15px;
        border-radius: 0 0 15px 15px;
        display: flex;
        gap: 5px;
    }

        .size-xs .header .header-controls {
            padding: 10px 15px;
        }

        .header .header-controls .btn-header-primary {
            background-color: transparent;
            border: 1px solid var(--primary-accent-contrast-color);
            color: var(--primary-accent-contrast-color);
            display: flex;
            align-items: center;
            padding: 10px 20px;
            gap: 10px;
            border-radius: 10px;
            cursor: pointer;
        }

            .size-xs .header .header-controls .btn-header-primary {
                padding: 7px 10px;
            }

            .header .header-controls .btn-header-primary:hover {
                background-color: var(--highlight-20);
            }

        .header .header-controls .btn-header-secondary {
            background-color: transparent;
            border: 1px solid transparent;
            color: var(--primary-accent-contrast-color);
            display: flex;
            align-items: center;
            padding: 10px 25px;
            gap: 10px;
            cursor: pointer;
            border-right: 1px solid white;
            border-radius: 0;
            height: 36px;
            margin-top: 4px;
        }

            .size-xs .header .header-controls .btn-header-secondary {
                padding: 10px 15px;
            }

            .header .header-controls .btn-header-secondary:hover {
                color: var(--highlight-70);
            }

            .header .header-controls .btn-header-secondary:last-child {
                border-right: none;
            }

/* Shadows */

.shadow {
    box-shadow: 0 0 40px rgba(0,0,0, 0.3);
}


/* Chips and tags */
.chip {
    display: inline-block;
    border: 1px solid white;
    border-radius: 15px;
    margin-right: 5px;
    padding: 0 7px;
    font-size: 15px;
}

.chip.on-white {
    background-color: #DDD;
    padding: 5px 15px;
}

.chip.large {
    font-size: 18px;
    margin-right: 10px;
}


.tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

    .tag {
        background-color: var(--primary-color);
        color: white;
        clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
        padding: 10px 30px;
        font-weight: 600;
        font-style: italic;
    }


/* Toast notifications */

#toast-area {
    position: fixed;
    bottom: 100px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100000;
}

.toast-notification-row {
    margin-bottom: 10px;
}

.toast-notification {
    display: inline-block;
    max-width: 60vw;
    padding: 10px 30px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 3px 3px 9px rgba(0,0,0, 0.3);
}

    .toast-notification.warning {
        background-color: yellow;
        color: black
    }

    .toast-notification.error {
        background-color: #CC4444;
    }

    .toast-notification.success {
        background-color: #1fad1f;
    }

    .toast-notification .material-symbols-outlined {
        margin-right: 10px;
        font-size: 32px;
    }


/* Banners */

#banner-area {
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
}

.banner-notification {
    position: relative;
    text-align: center;
    background-color: red;
    color: white;
}

    .banner-notification .banner-notification-icon {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .banner-notification .banner-notification-icon ion-icon {
            font-size: 48px;
        }

    .banner-notification .banner-notification-content {
        min-height: 60px;
        margin-left: 80px;
        margin-right: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
    }



    .banner-notification .banner-notification-close {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .banner-notification button {
        background-color: transparent;
        color: white;
        cursor: pointer;
        border: none;
    }

        .banner-notification button:hover {
            background-color: var(--glass-20);
        }

        .banner-notification button ion-icon {
            font-size: 28px;
        }

    .banner-notification a {
        text-decoration: underline;
        cursor: pointer;
        font-weight: 600;
    }


/* Buttons */

.btn-icon {
    transition: 0.5s;
    padding: 10px 15px;
    color: var(--primary-accent-contrast-color);
    background-color: var(--primary-accent-color);
    border-radius: var(--button-border-radius);
    border: 1px solid var(--primary-accent-color);
    cursor: pointer;
}

    .btn-icon:hover {
        color: var(--primary-accent-contrast-color);
        background-color: var(--primary-highlight-color);
    }

.btn-icon.contrast {
    background-color: transparent;
    border: 1px solid var(--primary-accent-contrast-color);
}

    .btn-icon.contrast:hover {
        color: var(--primary-accent-contrast-color);
        background-color: var(--primary-highlight-color);
    }



.btn-primary {
    transition: 0.5s;
    padding: var(--button-padding);
    color: var(--primary-accent-contrast-color);
    background-color: var(--primary-color);
    border-radius: var(--button-border-radius);
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.size-xs .btn-primary, .size-sm .btn-primary, .size-md .btn-primary {
    padding: var(--button-padding-small);
}

.size-xxs .btn-primary, .size-xs .btn-primary {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}


.btn-primary:hover {
    color: var(--primary-accent-contrast-color);
    background-color: var(--primary-highlight-color);
}

.btn-primary .centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-primary .centered ion-icon {
        font-size: 28px;
    }

        .btn-primary .centered ion-icon.left {
            margin-right: 5px;
        }

        .btn-primary .centered ion-icon.right {
            margin-left: 5px;
        }

.btn-primary.wide {
    width: calc(2 * var(--button-min-width));
}

.btn-primary.fixed-width {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 240px;
}

.btn-primary.small {
    padding: 6px 15px;
    min-width: calc(var(--button-min-width) / 2);
}

.btn-primary.success {
    border: 1px solid #44AA44;
    background-color: #44AA44;
}

    .btn-primary.success:hover {
        background-color: #44FF44;
    }

.btn-primary.danger {
    border: 1px solid #AA4444;
    background-color: #AA4444;
    color: white;
}

    .btn-primary.danger:hover {
        background-color: #FF4444;
    }

.btn-primary:disabled {
    background-color: var(--glass-20);
    color: var(--glass-80);
}

.btn-primary.full-width, .size-xxs .btn-primary.full-width-mobile, .size-xs .btn-primary.full-width-mobile, .size-sm .btn-primary.full-width-mobile {
    width: 100%;
    margin-bottom: 10px;
}

.btn-primary .material-symbols-outlined {
    margin-left: -10px;
    margin-top: -1px;
    padding-right: 7px;
}

.dark .btn-primary {
    background-color: var(--primary-color);
    color: black;
}

.dark .btn-primary:disabled {
    background-color: var(--glass-20);
    color: black;
}


.btn-outline-primary {
    transition: 0.5s;
    padding: var(--button-padding);
    background-color: var(--button-outline-background-color);
    color: var(--primary-contrast-color);
    border: 1px solid var(--primary-contrast-color);
    border-radius: var(--button-border-radius);
    /* min-width: var(--button-min-width); */
    cursor: pointer;
}

.dark .btn-outline-primary {
    color: #DDDDDD;
    border: 1px solid #444455;
}

.size-xs .btn-outline-primary, .size-sm .btn-outline-primary, .size-md .btn-outline-primary {
    padding: var(--button-padding-small);
}

.size-xxs .btn-outline-primary, .size-xs .btn-outline-primary {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.btn-outline-primary:hover {
    background-color: var(--glass-60);
}

.dark .btn-outline-primary:hover {
    background-color: var(--glass-50);
}

.btn-outline-primary .centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-outline-primary .centered ion-icon {
        margin-left: -10px;
        font-size: 28px;
        margin-right: 5px;
    }

.btn-outline-primary.wide {
    width: calc(2 * var(--button-min-width));
}

.btn-outline-primary.fixed-width {
    width: 240px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.btn-outline-primary.full-width, .size-xxs .btn-outline-primary.full-width-mobile, .size-xs .btn-outline-primary.full-width-mobile, .size-sm .btn-outline-primary.full-width-mobile {
    width: 100%;
    margin-bottom: 10px;
}

.btn-outline-primary .material-symbols-outlined {
    margin-left: -10px;
    margin-top: -1px;
    padding-right: 7px;
}

.btn-outline-primary.contrast {
    color: var(--highlight-80);
    border: 1px solid var(--highlight-80);
}

.btn-link {
    font-weight: 600;
    display: flex;
    border: none;
    padding: 5px 0;
    background-color: transparent;
    color: var(--primary-color);
    font-size: var(--base-font-size);
    cursor: pointer;
    align-items: center;
}

    .btn-link:hover {
        color: var(--primary-highlight-color);
    }

    .btn-link ion-icon {
        margin-right: 10px;
    }

    .btn-link.light {
        color: white;
    }

        .btn-link.light:hover {
            color: var(--primary-accent-color);
        }

.link {
    display: inline-block;
    font-weight: 600;
    border: none;
    background-color: transparent;
    color: var(--primary-color);
    font-size: var(--base-font-size);
    cursor: pointer;
}

    .link:hover {
        color: var(--primary-highlight-color);
    }


.btn-custom {
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

    .btn-custom.contrast {
        color: white;
    }

    .btn-custom:hover {
        color: black;
    }

    .dark .btn-custom:hover {
        color: var(--primary-accent-color);
    }


/* Scrolling */
.scrollbox-vertical {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
}

.size-xs .scrollbox-vertical {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    overflow-y: auto;
}

.scrollbox-horizontal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: auto;
}

.scrollbox-both {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: auto;
    overflow-y: auto;
}


/* Text styles */

.bold {
    font-weight: 600;
}

.light {
    font-weight: 100;
}

.italic {
    font-style: italic;
}

.silver {
    color: #CCC;
}

.warning {
    font-weight: 600;
    color: blue;
}

.super {
    font-size: 20px;
}

.sub {
    font-size: 14px;
}

    .sub b {
        font-weight: 500;
    }

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}


/* Spacing */
.padded {
    padding: 15px;
}

    .size-xs .padded {
        padding: 8px;
    }

.padded-double {
    padding: 30px;
}

    .size-xs .padded-double {
        padding: 15px;
    }

.padded-above, .padded-top {
    padding-top: 15px;
}

.padded-double-top {
    padding-top: 30px;
}

.margin-left {
    margin-left: 8px;
}

.margin-right {
    margin-right: 8px;
}

.size-sm .padded-right-from-sm, .size-md .padded-right-from-sm, .size-lg .padded-right-from-sm, .size-xl .padded-right-from-sm, .size-xxl .padded-right-from-sm {
    padding-right: 8px !important;
}

.size-md .padded-right-from-md, .size-lg .padded-right-from-md, .size-xl .padded-right-from-md, .size-xxl .padded-right-from-md {
    padding-right: 8px !important;
}

.size-sm .padded-left-from-sm, .size-md .padded-left-from-sm, .size-lg .padded-left-from-sm, .size-xl .padded-left-from-sm, .size-xxl .padded-left-from-sm {
    padding-left: 8px !important;
}

.size-md .padded-left-from-md, .size-lg .padded-left-from-md, .size-xl .padded-left-from-md, .size-xxl .padded-left-from-md {
    padding-left: 8px !important;
}

.size-md .padded-double-right-from-md, .size-lg .padded-double-right-from-md, .size-xl .padded-double-right-from-md, .size-xxl .padded-double-right-from-md {
    padding-right: 15px !important;
}

.size-md .padded-double-left-from-md, .size-lg .padded-double-left-from-md, .size-xl .padded-double-left-from-md, .size-xxl .padded-double-left-from-md {
    padding-left: 15px !important;
}


/* Panels */
.panel {
    position: relative;
    background-color: var(--panel-background-color1);
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    max-width: 800px;

    max-height: 75vh;
    overflow-y: auto;
}

.dark .panel {
    background-color: #222233;
}

.option-panel {
    background-color: rgba(255,255,255, 0.5);
    border-radius: 15px;
    padding: 30px;
}

    .option-panel .btn-outline-primary {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

        .option-panel .btn-outline-primary:hover {
            border-color: var(--primary-highlight-color);
            color: var(--primary-highlight-color);
            background-color: var(--glass-10);
        }


.selection-panel {
    transition: 0.3s;
    display: flex;
    border: 1px solid #888888;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}

    .selection-panel .icon {
        transition: 0.3s;
        display: flex;
        flex: 90px 0 0;
        justify-content: center;
        align-items: center;
        color: var(--primary-color);
    }

        .selection-panel .icon .material-symbols-outlined {
            font-size: 40px;
        }

    .selection-panel .text {
        padding: 10px 10px 10px 0;
    }

    .selection-panel.selected, .selection-panel.selected:hover {
        background-color: var(--primary-highlight-color);
        color: var(--primary-accent-contrast-color);
    }

        .selection-panel.selected .icon {
            color: var(--primary-accent-contrast-color);
        }

    .selection-panel:hover {
        background-color: var(--primary-accent-color);
        color: var(--primary-accent-contrast-color);
    }

        .selection-panel:hover .icon {
            color: var(--primary-accent-contrast-color);
        }
 

.notification-panel {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    box-shadow: 3px 3px 6px rgba(0,0,0, 0.2);
    margin-bottom: 30px;
}

    .notification-panel .btn-outline-primary {
        color: white;
        border: 1px solid white;
    }

.tooltip {
    border: 1px solid rgba(0,0,0, 0.2);
    background-color: rgba(255,255,0, 0.3);
    border-radius: 10px;
    padding: 10px;
    display: flex;
}

.tooltip ion-icon {
    font-size: 22px;
    margin-right: 5px;
}


/* Headers */
.panel-header {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.size-xxs .panel-header, .size-xs .panel-header, .size-sm .panel-header {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}


.content-header {
    color: var(--shade-50);
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 5px;
    font-weight: 600;
}

.content-header.contrast {
    color: var(--panel-background-color1);
}

.modest-header {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Footers */
.panel-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #CCCCCC;
}

    .dark .panel-footer {
        border-top: 1px solid #333344;
    }

/* Columns */
.columns-2 {
    columns: 2;
}

.size-xs .columns-2 {
    columns: 1;
}

/* Nav Bar */
.navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: var(--body-foreground-color);  
    padding: 5px;
    box-sizing: border-box; 
}

    .navbar .btn-custom {
        color: white;
        height: 40px;
    }

    .navbar .btn-custom .material-symbols-outlined {
        font-size: 38px;
    }

.size-xs .mobile-sidebar, .size-sm .mobile-sidebar {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 90%;
    z-index: 1;
}

.size-xs .mobile-sidebar.open, .size-sm .mobile-sidebar.open {
    bottom: 50px;
    display: block;
}

.sidebar-panel {
    background-color: #FFF;
    position:absolute;
    top:30px;
    left:30px;
    right:30px;
    bottom:30px;
    overflow:hidden;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0, 0.3);
}

.size-xs .sidebar-panel, .size-sm .sidebar-panel {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
}


/* Side Navigator */
side-navigator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--shade-10);
}

.side-navigator {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-right: 1px solid var(--shade-10);
}

    .side-navigator .navigation-items {
        flex: 1;
    }

        .side-navigator .navigation-items .navigation-item {
            display: flex;
            background-color: transparent;
            border-bottom: 1px solid var(--glass-20);
            padding: 15px 20px;
            align-items: center;
            cursor: pointer;
        }

            .dark .side-navigator .navigation-items .navigation-item {
                color: #8888FF;
            }

            .side-navigator .navigation-items .navigation-item .navigation-item-icon {
                font-size: 32px;
                margin-right: 15px;
            }

            .side-navigator .navigation-items .navigation-item .material-symbols-outlined {
                font-size: 32px;
                margin-right: 15px;
            }

            .side-navigator .navigation-items .navigation-item .navigation-item-caption {
                font-size: 18px;
            }

            .side-navigator .navigation-items .navigation-item.selected {
                color: var(--primary-highlight-color);
                font-weight: 600;
            }

                .side-navigator .navigation-items .navigation-item.selected .navigation-item-icon {
                    color: var(--primary-highlight-color);
                }

            .side-navigator .navigation-items .navigation-item:hover {
                background-color: var(--glass-10);
            }

    .side-navigator .action-items {
        flex: 1;
        display: flex;
        flex-direction: column-reverse;
        padding: 10px;
        gap: 10px;
    }

        .side-navigator .action-items .action-item {
            display: flex;
            background-color: var(--highlight-20);
            border: 1px solid var(--shade-10);
            padding: 10px;
            align-items: center;
            cursor: pointer;
            border-radius: 5px;
        }

            .side-navigator .action-items .action-item .action-item-icon {
                font-size: 32px;
                margin-right: 15px;
            }

            .side-navigator .action-items .action-item .action-item-caption {
                font-size: 18px;
                font-weight: 600;
            }

            .side-navigator .action-items .action-item:hover {
                background-color: var(--highlight-30);
            }


/*
    Map element
*/

.mapbox-map {
    height: 100%;
    width: 100%;
    color: white;
}

    .mapbox-map .marker {
        width: 40px;
        height: 60px;
        background-color: black;
        clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 100%, 0% 50%);
        text-align: center;
    }

        .mapbox-map .marker ion-icon {
            font-size: 32px;
            margin-top: 3px;
        }


    .mapbox-map .round-marker {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: black;
        border-radius: 25px;
    }

        .mapbox-map .round-marker ion-icon {
            font-size: 30px;
        }

    .mapbox-map .square-marker {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: black;
    }

        .mapbox-map .square-marker ion-icon {
            font-size: 26px;
        }


/* 
    Dialogs 

*/

.dialogs-content {
    
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0, 0.3);
    backdrop-filter: blur(20px);

    justify-content: center;
    align-items: center;

    z-index: 100;
}

.app-body .dialogs-content {
    background-color: rgba(0,0,0, 0.8);
    backdrop-filter: none;

    z-index: 200;
}

.dialog-body {
    color: var(--panel-foreground-color);
    background-color: var(--dialog-background-color);
    background: linear-gradient(145deg, #EEEEEF, #EEEEFF);
}

.dialog-body.dark {
    background: none;
    background-color: #444444DD;
    color: #DDDDDD;
}

.dialog-div-body {
    width: 100%;
    color: var(--panel-foreground-color);
}

.dark .dialog-div-body {
    background: none;
    background-color: #444444DD;
    color: #DDDDDD;
}

dialog-frame {
    flex: 1;
    
    position: fixed;
    min-height: 200px;
    min-width: 300px;
    max-width: 100%;
    max-height: 100%;
    border: 1px solid var(--dialog--header-background-color);

    border-radius: 15px;

    box-shadow: 0px 0px 40px rgba(0,0,0, 0.7);
    overflow: hidden;
}

    .dialog-frame-header {
        position: relative;
        background-color: var(--dialog-header-background-color);

        backdrop-filter: var(--dialog-header-background-filter);
        -webkit-backdrop-filter: var(--dialog-header-background-filter);

        padding: 12px 15px;
        color: var(--dialog-header-foreground-color);
        font-weight: 600;
        height: 50px;
        box-sizing: border-box;

    }

    .dialog-frame-header .dialog-frame-header-controls {
        position: absolute;
        top: 0;
        right: 10px;
        bottom: 0;
    }

            .dialog-frame-header .dialog-frame-header-controls ion-icon {
                margin-left: 8px;
                margin-top: 7px;
                font-size: 24px;
                vertical-align: middle;
            }

    .dialog-frame-content-div {
        display: flex;
        top: 50px;
        left: 0;
        right: 0;
        bottom: 0;

        overflow: auto;
    }


    .dialog-frame-content {
        display: flex;
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .dialog-frame-content .dialog-frame-iframe {
        border: none;
        flex: 1;
    }


    .dialog-loading {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


.soft-dialog {
    background-color: white;
    padding: 50px 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
}

    .soft-dialog .soft-dialog-icon {
        margin-bottom: 30px
    }

        .soft-dialog .soft-dialog-icon.yellow {
            color: orange;
        }

        .soft-dialog .soft-dialog-icon.red {
            color: red;
        }

        .soft-dialog .soft-dialog-icon.green {
            color: green;
        }

        .soft-dialog .soft-dialog-icon .material-symbols-outlined {
            font-size: 128px;
        }

    .soft-dialog .soft-dialog-caption {
        font-weight: 600;
        font-size: 20px;
    }

    .soft-dialog .soft-dialog-text {
        margin-top: 5px;
    }

    .soft-dialog .soft-dialog-buttons {
        margin-top: 30px;
    }

    .soft-dialog button {
        border: none;
        font-size: 18px;
        padding: 15px 0 15px 0;
        text-transform: uppercase;
        font-weight: 600;
        background-color: transparent;
    }

        .soft-dialog button.danger {
            color: red;
        }

        .soft-dialog button.success {
            color: green;
        }

        .soft-dialog button:hover {
            background-color: transparent;
            color: var(--primary-color);
        }

    .size-xs .soft-dialog button {
        text-align: center;
        margin-right: 0 !important;
        display: block;
        width: 100%;
    }


    .loading-indicator {
        background-color: var(--primary-color);
        background: linear-gradient(145deg, #1199EE, #0066BB);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px;
        border-radius: 25px;
        box-shadow: 5px 5px 15px rgba(0,0,0, 0.4);
        gap: 15px;
    }

        .loading-indicator .material-symbols-outlined {
            font-size: 64px;
        }

        .loading-indicator .loading-indicator-message {
            font-weight: 600;
        }

/* 
    Toolbar
*/

.toolbar {
    background-color: var(--primary-accent-color);
    border: 1px solid var(--glass-30);
    padding: 10px 20px;
    box-shadow: 3px 3px 10px rgba(0,0,0, 0.2);
    border-radius: 0;
    color: white;
}

    .toolbar .field input[type="text"] {
        box-shadow: inset 0 0 3px rgba(0,0,0, 0.3);
        background-color: #FAFAFA;
        border: 1px solid #DDDDDD;
    }

    .toolbar .field input[type="text"]::placeholder {
        color: #AAAAAA;
    }

    .toolbar .field select {
        box-shadow: inset 0 0 3px rgba(0,0,0, 0.3);
        background-color: #FAFAFA;
        border: 1px solid #DDDDDD;
    }

    .toolbar .collapsible-panel-header .collapsible-panel-header-line {
        border-top: 1px solid white;
    }

    .toolbar .collapsible-panel-header .collapsible-panel-header-label {
        background-color: var(--primary-color);
        border: 1px solid white;
    }


    .toolbar h1 {
        margin-bottom: 0;
        margin-top: -5px;
    }



/* 
    Content panel
*/

.content-panel {
    position: relative;
    background-color: white;
    /*background: linear-gradient(45deg, rgba(255,255,255, 0.15), rgba(255,255,255, 0.8));*/

    border-radius: 15px;
    box-shadow: 3px 3px 6px rgba(0,0,0, 0.2);
    margin-bottom: 50px;
}
    .content-panel.highlighted {
        background-color: #FFFFBB;
    }

    .content-panel label {
        font-size: 14px;
        color: #444;
    }

    .content-panel .watermark {
        position: absolute;
        top: 0px;
        left: 10px;
        bottom: 0;
        width: 300px;
        color: rgba(0,0,0, 0.04);
        display: flex;
        align-items: center;
        
    }

        .content-panel .watermark .material-symbols-outlined {
            font-size: 200px;
        }

    .dark .content-panel {
        background-color: transparent;
        background: linear-gradient(45deg, rgba(200,200,200, 0.1), rgba(255,255,255, 0.2));
        color: #AAAAAA;
    }

    .content-panel .title {
        font-size: 36px;
        line-height: 40px;

        letter-spacing: 2px;

        text-transform: uppercase;
        font-weight: 600;
    }

        .size-xs .content-panel .title {
            font-size: 28px;
            line-height: 32px;
        }

    .content-panel .subtitle {
        font-size: 24px;
        line-height: 37px;

        letter-spacing: 1px;

        font-weight: 600;
    }

    .title-dialog {
        font-size: 36px;
        line-height: 37px;

        font-weight:normal;
        letter-spacing: 2px;
    }

    .content-panel-header {
        background-color: var(--secondary-color);
        color: white;
        padding: 15px 30px;
        display: flex;
        align-items: center;
        border-radius: 15px 15px 0 0;

        font-weight:600;

        letter-spacing: 2px;
        text-transform: uppercase;
    }

        .content-panel-header .material-symbols-outlined {
            margin-right: 15px;
        }


    .content-panel-header-title {
        flex: 2;
        display: flex;
        align-items: center;
    }

    .content-panel-header-controls {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: right;
    }

        .content-panel-header-controls button {
            padding: 5px;
            border-radius: 25px;
            background-color: #AADDFF;
            color: var(--secondary-color);
            border: none;
            cursor: pointer;
        }

        .content-panel-header-controls button:hover {
            background-color: #EEFFFF;
        }

        .content-panel-header-controls button .material-symbols-outlined {
            margin-right: 0;
        }


    .content-panel-content {
        padding: 25px;
    }

    .size-xs .content-panel-content {
        padding: 20px;
    }


    .content-panel-item {
        position: relative;
        padding-bottom: 15px;
        border-bottom: 1px solid #DDD;
        margin-bottom: 15px;
    }

    .content-panel-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }


    .content-panel-item:last-child {
        padding-bottom: 15px;
        border-bottom: 1px solid #BBB;
    }

    .content-panel-more {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #EEEEEE77;
        cursor: pointer;
        padding-top: 5px;
        padding-bottom: 5px;
        font-weight: 600;
    }

        .content-panel-more:hover {
            background-color: #DDD;
        }


/* 
    Collapsible panel
*/

.collapsible-panel-header {
    position: relative;
    cursor: pointer;
    height: 36px;
}

    .collapsible-panel-header:hover {
        background-color: var(--glass-20);
    }



    .collapsible-panel-header .collapsible-panel-header-line {
        position: absolute;
        top: 18px;
        left: 0;
        right: 0;
        height: 2px;
        border-top: 1px solid var(--glass-50);
    }

    .collapsible-panel-header .collapsible-panel-header-label {
        background-color: #EEEEEE;
        padding: 2px 15px;
        padding-right: 20px;
        position: absolute;
        left: 15px;
        border: 1px solid var(--glass-50);
        border-radius: 3px;
        font-size: 14px;
        font-weight: 600;
        margin-top: 2px;
        display: flex;
        align-items: center;
        
    }

    .collapsible-panel-header .collapsible-panel-header-label ion-icon {
        margin-right: 5px;
    }

.collapsible-panel-content {
    padding-top: 30px;
    padding-bottom: 30px;
}



/* 
    Items
*/

.item-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

    .item-container.tight {
        gap: 15px;
    }


.item {
    transition: 0.5;
    background-color: white;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 3px 3px 10px rgba(0,0,0, 0.2);
    border: 1px solid #AAAAAA;
}

    .item label {
        font-size: 14px;
        color: #CCCCCC;
    }

    .item.clickable {
        cursor: pointer;
    }

    .item.clickable:hover {
        background-color: rgba(220,245,255);
        color: black;
    }

    .item.selected {
        background-color: var(--primary-accent-color);
        color: var(--primary-accent-contrast-color);
    }

.dark .item {
    background-color: #222222;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.dark .item.selected {
    background-color: var(--primary-accent-color);
    color: var(--primary-accent-contrast-color);
}

.item .divider-horizontal {
    height: 15px;
    border-top: 1px solid #DDD;
    margin-top: 15px;
}

.action-item {
    transition: 0.5s;
    display: flex;
    padding: 10px;
    background-color: white;
    /* background: linear-gradient(45deg, rgba(255,255,255, 0.4), rgba(255,255,255, 0.6)); */
    cursor: pointer;
    align-items: center;
    border: 1px solid #CCC;
    margin-bottom: 10px;
}

    .action-item:hover {
        transform: scale(1.03);
        box-shadow: 12px 6px 10px rgba(0,0,0, 0.1);
    }

    .action-item .material-symbols-outlined {
        font-size: 28px;
        color: var(--primary-accent-color);
        margin-right: 20px;
    }

    .dark .action-item {
        background: linear-gradient(45deg, rgba(255,255,255, 0.1), rgba(255,255,255, 0.2));
        color: #AAA;
        border: 1px solid black;
    }


.icon-item {
    display: flex;
    align-items: center;
    line-height: 30px;
}

    .icon-item .material-symbols-outlined {
        margin-right: 8px;
    }


/*
    Property table
*/

.property-table {
    font-size: 14px;
}

    .property-table .property-table-row {
        display: flex;
        
    }

        .property-table-row .property-header {
            font-weight: 600;
            flex: 1;
        }
        
        .property-table-row .property-value {
            flex: 1;
        }


/*
    Logo
*/

.logo {
    display: flex;
    height: 160px;
    justify-content: center;
    align-items: center;
    color: black;
    flex-direction: column;
}

    .logo-header {
        font-weight: 900;
        font-size: 28px;
        font-weight: 900;
        font-family: sans-serif;
    }

    .logo-footer {
        font-weight: 900;
        text-transform: uppercase;
        margin-top: 5px;
    }

    .logo img {
        height: 100px;
    }




/*
    Map markers
*/

.company-map-marker {
    color: black;
    background-color: white;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
}



    .company-map-marker .title {
        color: black;
        font-size: 12px;
        text-align: center;
        padding: 5px;
        box-sizing: border-box;
        width: 120px;
    }

    .company-map-marker .company-logo {
        width: 120px;
        height: 120px;
        background-color: black;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }



/*
    Page elements
*/

.user-display {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background-color: #747373;
    color: #FFF;
    cursor: pointer;
}

    .user-display:hover {
        background-color: #444444;
    }

    .user-display .material-symbols-outlined {
        margin-right: 5px;
    }

.dark .user-display {
    background-color: #333344;
}

.user-display.impersonated {
    background-color: red;
}



/* 
    Metro line 
*/

.metroline-control {
    padding-top: 35px;
    margin-bottom: 25px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 12px;
}


    .size-xxs .metroline-control, .size-xs .metroline-control, .size-sm .metroline-control {
        padding-left: 10px;
        padding-right: 35px;
        margin-bottom: 10px;
        padding-top: 50px;
    }

    .metroline-stations {
        display: flex;
        justify-content: space-between;
    }

        .metroline-stations .metroline-item {
            flex: 16px 0 0;
            position: relative;
        }

            .metroline-stations .metroline-item-caption {
                position: absolute;
                top: -25px;
                width: 160px;
                text-align: center;
                left: -70px;
                color: black;
            }

            .size-xxs .metroline-stations .metroline-item-caption, 
            .size-xs .metroline-stations .metroline-item-caption, 
            .size-sm .metroline-stations .metroline-item-caption {
                text-align: left;
                left: -22px;
                top: -78px;
                font-size: 10px;
                transform: rotate(-50deg);
            }

            .metroline-stations .metroline-item-station {
                width: 16px;
                height: 16px;
                border-radius: 8px;
                border: 1px solid var(--glass-50);
                background-color: white;
            }



        .metroline-stations .metroline-item.active .metroline-item-caption {
            font-weight: 600;
            color: var(--body-text-color);
        }

        .metroline-stations .metroline-item.passed .metroline-item-caption {
            font-weight: 600;
            color: var(--body-text-color);
        }

        .metroline-stations .metroline-item.active .metroline-item-station,
        .metroline-stations .metroline-item.passed .metroline-item-station {
            border: 1px solid var(--primary-color);
            background-color: var(--primary-color);
        }



    .metroline-lines {
        display: flex;
        justify-content: space-between;
    }

        .metroline-line {
            height: 1px;
            border-bottom: 1px solid var(--glass-50);
            flex: 1;
            margin-top: -10px;
        }

            .metroline-line.passed {
                height: 3px;
                border-bottom: 3px solid var(--primary-color);
                margin-top: -13px;
            }



/* 
    Tab control
*/

.tab-control {
    position: relative;
}

    .tab-control .tab-control-header {
        display: flex;
        align-items: center;
        gap: 45px;
        margin-top: 35px;
        margin-bottom: 30px;
        margin-left: 15px;
    }

        .tab-control .tab-control-header .tab-control-header-item {
            color: var(--body-foreground-color);
            transition: 0.25s;
            font-weight: 600;
            font-size: 18px;
            border-bottom: 3px solid transparent;
            cursor: pointer;
        }

        .tab-control .tab-control-header .tab-control-header-item:hover {
            border-bottom: 3px solid var(--primary-color);
        }

        .tab-control .tab-control-header .tab-control-header-item.selected {
            color: var(--primary-color);
        }



.hexagon {
    position: relative;
    width: 200px; /* Adjust to your desired size */
    height: 200px;
    background-color: transparent;
    margin: 0 0;
    display: inline-block;
    
}

    .hexagon-out {
        padding-left: 5px;
        padding-top: 5px;
        width: 200px;
        height: 200px;
        background-color: white;
        clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    }

    .hexagon-in {
        width: 195px;
        height: 195px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    }


.contract-scrollbox {
    width: auto;
    height: 500px;
    max-width: 700px;
    background-color: white;
    padding: 30px;
    overflow-y: auto;
}


/* 
    Logo's
*/

.holding-logo-area {
    background-color: black;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .holding-logo-area.dwb {
        background-color: #025328;
    }

    .holding-logo-area.stella {
        background-color: #15465c;
    }

    .holding-logo-area.aenf {
        background-color: #ffde00;
    }

    .holding-logo-area .holding-logo {
        width: 90%;
    }




/* 
    Animations
*/

.anim-start-on-visible {
    opacity: 0;
}

    .anim-start-on-visible.anim-start-slide-left {
        animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    .anim-start-on-visible.anim-start-slide-right {
        animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    .anim-start-on-visible.anim-start-grow-vertical {
        animation: growVertical 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

.anim-appear {  
    animation: appear 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

.anim-disappear {  
    animation: disappear 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-slide-up {  
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

.anim-slide-down {  
    animation: slideInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

.anim-slide-left {  
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

.anim-slide-right {  
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

.anim-grow-vertical {  
    animation: growVertical 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: scaleY(0);
}

.anim-shrink-vertical {  
    animation: shrinkVertical 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: scaleY(1);
}

.anim-order-1 {
    animation-delay: 0.1s;
}

.anim-order-2 {
    animation-delay: 0.2s;
}

.anim-order-3 {
    animation-delay: 0.3s;
}

.anim-order-4 {
    animation-delay: 0.4s;
}

.anim-order-5 {
    animation-delay: 0.5s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes growVertical {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

@keyframes shrinkVertical {
    from {
        transform: scaleY(1);
    }
    to {
        transform: scaleY(0);
    }
}

@keyframes appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes disappear {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}