:root {
    --background-color: #28282c;
    --text-color: #fff;
    --placeholder-color: #ffffff;
    --border-color: #ffffff4c;
    --detail-secondary-color: #5c5c5c;
    --detail-color: #00753a;
    --detail-color-hover: #27743a6b;
}

@media (max-width: 565px) {
    .welcomeDiv {
        flex-basis: 100% !important;
    }
}

html {
    position: relative;
    font-family: "Inter", serif;
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 16px;
    background-color: var(--background-color);
}

body {
    font-family: "Inter", serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    color: var(--text-color);
}

.body-content {
    width: 100%;
    height: 100%;
}

.colorChanger {
    background-color: #f5f5f5;
    color: var(--background-color);
}

.colorBacker {
    background-color: var(--background-color);
    color: var(--text-color);
}

.blueBtn {
    background-color: var(--detail-color);
    color: var(--text-color);
    border-radius: 18px;
}
    .blueBtn:hover {
        background-color: var(--detail-color-hover);
        color: var(--text-color);
        border-radius: 18px;
    }

.shapeBtn {
    border-radius: 18px;
}

.textcolorDetail {
    color: var(--detail-color);
}

.greyBtn {
    background-color: var(--detail-secondary-color);
    color: var(--text-color);
    border-radius: 18px !important;
}

.actionLinksLogin a {
    color: var(--placeholder-color) !important;
    font-size: 13px;
    text-decoration: none;
}

.group {
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
}

.input {
    width: 100%;
    height: 45px;
    padding-left: .5rem;
    box-shadow: 0 0 0 1.5px var(--background-color), 0 0 25px -17px #000;
    border: 0;
    border-radius: 12px;
    outline: none;
    color: var(--text-color);
    transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: text;
    z-index: 0;
    border: 1px solid var(--border-color);
    -webkit-text-fill-color: var(--text-color);
    -webkit-box-shadow: 0 0 0px 1000px var(--background-color) inset;
    transition: background-color 5000s ease-in-out 0s;
}

    .input::placeholder {
        color: var(--text-color);
    }

    .input:hover {
        box-shadow: 0 0 0 2.5px #2f303d, 0px 0px 25px -15px #000;
        border: 1px solid var(--border-color);
        -webkit-text-fill-color: var(--text-color);
        -webkit-box-shadow: 0 0 0px 1000px var(--background-color) inset;
        transition: background-color 5000s ease-in-out 0s;
    }

    .input:active {
        transform: scale(0.95);
    }

    .input:focus {
        box-shadow: 0 0 0 2.5px #2f303d;
        border: 1px solid var(--border-color);
        -webkit-text-fill-color: var(--text-color);
        -webkit-box-shadow: 0 0 0px 1000px var(--background-color) inset;
        transition: background-color 5000s ease-in-out 0s;
    }

.search-icon {
    position: absolute;
    left: 1rem;
    fill: #bdbecb;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    z-index: 1;
}

.fontsizeSmall {
    font-size: small;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid var(--border-color);
    -webkit-text-fill-color: var(--text-color);
    -webkit-box-shadow: 0 0 0px 1000px var(--background-color) inset;
    transition: background-color 5000s ease-in-out 0s;
}

.logoProvider {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(56deg) brightness(102%) contrast(103%);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(86%) sepia(7%) saturate(344%) hue-rotate(198deg) brightness(91%) contrast(84%);
}

.flatpickr-day.selected {
    background-color: var(--detail-color) !important;
    color: #fff !important;
    border: var(--detail-color) !important;
}

input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
}

input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    cursor: pointer;
    display: grid;
    place-content: center;
}

    input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--detail-color);
        background-color: CanvasText;
    }

    input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

.greyNavText {
    color: #9b9b9b;
    font-size: 12px;
}

.linkNav {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px 10px;
    cursor: pointer;
}

.linksNav .selected {
    background: var(--detail-color);
    border-radius: 7px;
}

.itemNav {
    margin-bottom: 25px;
}

.smallerInput {
    min-width: 12rem;
    width: 38%;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table > tbody {
    vertical-align: middle !important;
}

.dropdown .blueBtn {
    width: 3rem;
}

.welcomeDiv {
    box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
    padding: 2rem 1.5rem;
    border-radius: 3rem;
    margin-bottom: 2rem;
}

.choiceButton {
    width: 100%;
    align-self: center;
    text-align: center;
}

.selectInput {
    
}

    .selectInput option {
        background: var(--background-color) !important;
    }
    .selectInput option:hover {
        background: var(--detail-color) !important;
    }
    .selectInput option:active {
        background: var(--detail-color) !important;
    }
    .selectInput option:focus {
        background: var(--detail-color) !important;
    }


.select2-search {
    background-color: var(--background-color) !important;
}

    .select2-search input {
        background-color: var(--background-color) !important;
    }

        .select2-search input:hover {
            background-color: var(--background-color) !important;
        }

        .select2-search input:active {
            background-color: var(--background-color) !important;
        }

        .select2-search input:focus {
            background-color: var(--background-color) !important;
        }

.select2-results {
    background-color: var(--background-color) !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--background-color-select) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--detail-color) !important;
    color: white !important;
}

.select2-container--default .select2-selection--single {
    background-color: var(--background-color-select) !important;
    border: 1px solid #aaa !important;
    border-radius: 4px;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #fff !important;
        line-height: 28px;
    }

.select2-selection__rendered {
    line-height: 3rem !important;
}

.select2-container .select2-selection--single {
    height: 3rem !important;
}

.select2-selection__arrow {
    height: 3rem !important;
}

.select2-selection--single[role=combobox] {
    border-radius: 1rem !important;
}

.select2-search__field {
    border-radius: 1rem !important;
    color: white !important;
    padding-left: 16px !important;
}