:root {
    --primary-color-dark: #00A8A0;
    --primary-color: #1EC7C0;
    --primary-color-light: #83DBD6;
    --accent-red: #F12922;
    --accent-orange: #F15C22;
    --accent-yellow: #FDDF04;
    --other-a: #1C2C3D;
    --other-b: #253B53;
    --other-c: #415469;
    --other-d: #526981;
    --other-e: #728496;
    --other-f: #217380;
    --other-g: #1A998F;
    --seconday-accent: #AEAEAE;
}


html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.footer-bg-dark {
    background-color: rgb(var(--bs-dark-rgb)) !important;
    color: white;
}

.very-rounded {
    border-radius: 0.75rem !important;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn-bulk-primary {
    background-color: var(--primary-color-dark)
}

.bg-bulk-primary {
    background-color: var(--primary-color-dark)
}

.bg-bulk-secondary {
    background-color: var(--primary-color);
}

.bg-bulk-red {
    background-color: var(--accent-red);
}

.footer-container {
    margin-left: 10px;
    margin-right: 10px;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.edit-button {
    background-color: var(--other-f);
    color: white;
}

.list-item {
    background-color: var(--other-g);
    color: white;
}

.bulk-primary {
    background-color: var(--primary-color-dark)
}

.button-footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: white;
    line-height: 60px;
}

.form-control {
    font-size: 16px;
}

.is-invalid + .floating-label {
    display: none;
}



.label-input {
    display: none;
}

@keyframes slide-right {
    0% {
        transform: translateX(100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    95% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Apply the sliding animation to the toast */
.slide-toast {
    animation: slide-left 5s linear forwards;
}

.list-group-item + .list-group-item {
    border-top-width: 1px !important;
}
