@import url('https://use.typekit.net/qlp0ljz.css');
@import url('base.css');
@import url('layout.css');
@import url('module.css');
@import url('state.css');
@import url('forms.css');

/* Global Variables */
:root {
    --clr-bs-opaque-primary: rgba(37,44,51, 0.7);
    --clr-bs-opaque-secondary: rgb(74,80,86);
    --clr-bs-input-fill-primary: rgba(56,63,69,0.8);
    --clr-bs-input-border: rgb(81,87,92);
    --clr-bs-input-text: rgb(211, 211, 211);
    --clr-bs-component-border: rgb(74, 80, 86);
    --clr-ody-yellow: rgb(209, 164, 99);
    --clr-ody-orange: rgb(209, 67, 39);
    --clr-ody-light-grey: rgb(200, 202, 189);
    --clr-bs-btn-grey: rgb(175, 173, 174);
    --clr-ody-med-grey: rgb(108, 112, 100);
    --clr-bs-dark-blue: rgb(37, 45, 51);
    --clr-ody-med-blue: rgb(60, 71, 83);
    --clr-white: rgb(255, 255, 255);
    --clr-white-opaque: rga(255,255,255,0.05);
    --clr-black: rgb(0, 0, 0);
    --clr-error: rgba(209, 67, 39);
    --clr-fnt-primary: rgb(0, 0, 0);
    --fnt-primary: var(--fnt-weight-regular) 1rem/1.5 'proxima-nova', 'Arial', sans-serif;
    /*Responsive Font*/
    --current-device-width: 100vw;
    --ideal-viewport-width: 1920;
    --ideal-font-size: 16;
    --info-font-size: 14px;
    --fnt-weight-regular: 400;
    --fnt-weight-medium: 550;
    --fnt-weight-thick: 700;
    --fnt-weight-thin: 200;
    --border-radius: 20px;
    --transition: 0.2s ease-in-out all;
    --blur: blur(20px);
}

*, *::before, *::after {
    box-sizing: border-box;
}

.auto-save-wrapper-ta {
    height: 100% !important;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: center;
    flex-flow: row nowrap;
    height: fit-content;
    padding: .25rem;
    border: 1px solid var(--clr-bs-input-border);
    border-radius: 30px;
    position: relative;
    width: fit-content;
}

.container {
    border-radius: var(--border-radius);
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 0;
}

/*Side Menu*/
.side-menu {
    display: flex;
    width: 115px;
    flex-direction: column;
    color: white;
    justify-content: center;
    align-items: center;
    background: var(--clr-bs-opaque-secondary);
    padding: 1rem 0;
}

    .side-menu .icon-label {
        margin: 0 auto;
        min-width: 100%;
        height: 50px;
        display: flex;
        white-space: nowrap;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

        .side-menu .icon-label:hover {
            z-index: 1;
            padding-left: 15px;
            margin-left: 30px;
            border-radius: 15px;
            background-color: var(--clr-bs-opaque-secondary);
            box-shadow: -1px 2px 5px -1px rgba(0,0,0,0.31);
            transform: scale(1.05);
        }

            .side-menu .icon-label:hover label {
                display: flex;
                margin-left: 12px;
                margin-right: 65px; /*this margin fixes the width of the labels*/
            }

            .side-menu .icon-label:hover i {
                flex-shrink: 0;
            }

    .side-menu i {
        margin: auto auto;
    }

    .side-menu label {
        display: none;
    }

        .side-menu label:hover {
            display: block;
            cursor: pointer;
        }

.active-icon {
    color: var(--clr-ody-yellow);
    border: none;
    background: none;
}

.content-wrapper {
    padding: 1em 2em;
    width: calc(100% - 115px);
    height: 100%;
    color: white;
    border: solid 4px var(--clr-bs-opaque-secondary);
    border-left: 0;
    border-radius: 0 20px 20px 0;
}

fa-lg {
    line-height: normal;
}

i:hover {
    cursor: pointer;
}

.valid.modified:not([type=checkbox]) {
    outline: none;
}

.horizontal {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.error-message::placeholder {
    color: var(--clr-ody-yellow) !important;
    opacity: 1;
}

#insurance.blueshift-card-active {
    max-height: 25vh;
}

/* Utilities */
.no-display {
    display: none;
}

.inactive {
    background-color: none;
    border: 2px solid white;
    color: white;
}

.select-carousel .active {
    background-color: var(--clr-ody-yellow);
    color: black;
}

.active {
    color: var(--clr-bs-dark-blue);
    color: white;
}

.error-circle {
    transform: translateX(5px) translateY(-10px) scale(1.2);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #D14227;
}

.nav-mask {
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    border-radius: 20px;
    z-index: 50;
    justify-content: center;
    background-color: var(--clr-bs-opaque-primary);
    backdrop-filter: blur(1rem);
}

    .nav-mask.active {
        visibility: visible;
    }

.popup-container {
    overflow: hidden;
    border: 2px solid var(--clr-ody-yellow);
    border-radius: var(--border-radius);
    width: 70%;
    z-index: 100;
    justify-self: center;
    background-color: var(--clr-bs-opaque-primary);
    backdrop-filter: none;
    margin: auto auto;
    padding: 1rem;
}

sup {
    color: var(--clr-ody-yellow);
    font-weight: var( --ideal-font-size);
}

/* mobile specific global styling*/
@media screen and (max-width: 992px) {
    ::-webkit-scrollbar {
        display: none;
    }
}

/* Desktop Global Styles */
@media screen and (max-width: 992px) {
    ::-webkit-scrollbar {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    ::-webkit-scrollbar-button {
        display: none;
    }

    .blueshift-card :hover {
        cursor: pointer;
    }

    .inactive-text {
        line-height: 1.2rem;
    }

    .blueshift-card-active-error {
        display: flex;
        flex-direction: row;
        gap: 25px;
        width: 100%;
        border-radius: 20px;
        margin-bottom: 28px;
        padding: 23px 0 10px 50px;
        flex-flow: row nowrap;
        justify-content: space-between;
        color: white;
        background-color: #444B52;
        min-height: 160px;
        border: 1px solid #D14227;
    }

    .delete-icon i:hover {
        transform: scale(1.1);
        transition: all 0.15s ease-in-out;
    }

    /* white box at bottom of scroll */
    ::-webkit-scrollbar-corner {
        background-color: transparent;
    }
}

@media screen and (max-width: 1500px) and (min-width: 992px) {
    .inactive-text {
        line-height: 1rem;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
