/*
----------------------------------------------------------------------------
Copyright (c) Microsoft Corporation.
Licensed under the MIT license.
----------------------------------------------------------------------------
*/

.button-container {
    padding-top: 2.31vh;
}

.config-container {
    font-size: 1.85vh;
    padding-bottom: 0.93vh;
    padding-top: 0.93vh;
}

button {
    background-color: #2A22F0;
    border: none;
    border-radius: 3.7vh;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1.39vh;
    font-family: 'Segoe UI Semibold', arial, sans-serif;
    padding: 0.93vh 3.24vh;
}

.heading {
    color: #53424b;
    overflow-wrap: anywhere;
    font-size: large;
    font-weight: 400;
}

.outer-div {
    padding: 2.78vh 13.05vh 4.63vh 13.05vh;
    font-size: 2.5vh;
}

.centered {
    position: absolute;
    color: #ffffffa6;
    font-size: xx-large;
    font-weight: 700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overlay {
    background-color: #FCFCFC;
    height: 100%;
    display: flex;
    min-height: 93vh;
    z-index: 2;
}

.report-display-text {
    color: #6E6E6E;
    font: 3.7vh "segoe ui light", arial, sans-serif;
    left: 50%;
    margin: auto;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}

.report-container {
    height: 100%; /* 16:9 aspect ratio */

    padding: 0;
}

.report-wrapper {
    background-color: #EAEAEA;
    height: 100%; /* 16:9 aspect ratio */
    max-height: 80vh;
    padding: 0;
}

.sign-in {
    font-size: 2.58vh;
    background-color: #a6387f;
}

.sign-in-abg {
    font-size: 2.58vh;
    background-color: #e34a1f;
}


.signin-container {
    left: 50%;
    place-content: center;
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.signin-text {
    font-size: xx-large;
    text-align: center;
    font-weight: 400;
}

.spinner {
    animation: rotation 1s infinite linear;
    left: 50%;
    top: 50%;
    width: auto;
}


body {
    background: #FCFCFC;
    opacity: 1;
}


button:disabled {
    background-color: #5C5C5F;
    cursor: default;
}

button:focus {
    outline: none;
}

main {
    margin: 0 auto;
    width: 100%;
}

iframe {
    border: none;
}

.colored-bg {
    background-color: #EAEAEA;
}

.transparent-bg {
    background-color: transparent;
}

@keyframes rotation {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(359deg);
    }
}

/* Sidebar container */
#sidebar {
    overflow-y: auto;
    max-height: 70vh;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #999 transparent; /* Firefox: thumb and track */
}

/* WebKit (Chrome, Edge, Safari) custom scrollbar */
#sidebar::-webkit-scrollbar {
    width: 6px;
}

/* Track */
#sidebar::-webkit-scrollbar-track {
    background: lightgrey;
    border-radius: 10px;
}

/* Handle */
#sidebar::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

/* Optional: Hover effect */
#sidebar::-webkit-scrollbar-thumb:hover {
    background: #666;
}

#sidebar li a {
    padding: 10px 0;
    display: block;
    color: black;
    font-size: small;
    word-break: break-all;
    padding-left: 5px;
    margin-left: 5px;
    margin-right: 5px;
    white-space: normal;
}

#open-nav-button {
    display: none;
}


#sidebar li a:hover {
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

    #sidebar li a:hover .fa-caret-down {
        color: white;
    }

.aeon-retail-link:hover {
    background-color: #a6387f;
}

.aeon-big-link:hover {
    background-color: #f15a24;
}

.aeon-retail-color {
    color: #a6387f;
}

.aeon-big-color {
    color: #f15a24;
}

.footer {
    bottom: 0;
    width: 100%;
}

.row {
    margin: 0;
}

.footer-text {
    font-size: 2.1vh;
}

.banner-lg {
    display: block;
    width: 100%;
    height: 95%;
    object-fit: cover;
}

.banner-sm {
    display: none;
}

#header-home {
    cursor: pointer;
}

.report-line {
    border-left: solid;
    border-left-width: 1.5px;
    border-left-color: #d5d5d5;
}

@media (min-width: 992px) {
    nav {
        max-width: 20% !important;
    }
}

@media screen and (min-width: 0px) and (max-width: 575.9px) {

    .footer-text {
        font-size: 1.5vh
    }

    .banner-lg {
        display: none;
    }

    .banner-sm {
        display: block;
        width: 100%;
        height: 95%;
        object-fit: cover;
    }

    .nav-container {
        display: none !important;
    }

    #content-container {
        display: block;
    }

    .content-container {
        display: none !important;
    }

    #sidebar {
        overflow-y: scroll;
        max-height: 70vh;
        min-height: 70vh;
        display: none;
    }

    #open-nav-button {
        display: block;
    }

    .heading {
        font-size: larger;
        margin: 0;
    }

    .signin-text {
        font-size: x-large;
        text-align: center;
        font-weight: 400;
    }

    .fav-btn, .remove-fav-btn, #right-corner-btn {
        padding: 0px;
    }

    .custom-center-xs {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        min-height: calc(100% - 1rem);
    }
   
}

@media screen and (min-width: 576px) {
}
