@media (min-width:320px) and (max-width:360px) {
    #toggleButtons label {
        font-size: 11px !important;
        padding-inline: 0.45rem !important;
    }
}

@media (min-width:360px) and (max-width:444px) {
    #toggleButtons label {
        font-size: 12px !important;
        padding-inline: 0.45rem !important;
    }
}

.btn-black {
    background-color: black !important;
    color: white !important;
    font-weight: bold !important;
}

    .btn-black:hover {
        background-color: white !important;
        color: black !important;
        border-color: black !important;
    }

.popAnimation {
    animation: 1s cubic-bezier(.165,.84,.44,1) forwards blowUpContent
}

@keyframes blowUpContent {
    from {
        transform: scale(0);
        opacity: 1;
    }

    to {
        transform: scale(1);
    }
}

.underlineHover {
    color: black;
    font-weight: bold;
}

    .underlineHover:hover {
        color: #21264e;
        border-bottom: 2px solid #21264e;
    }

.border-red {
    border: 1px solid red !important;
}

/* Btn -toogle radio buttons */
.btn-group-toggle label {
    border: 1px solid #21264e !important;
    padding: 2px 0.45rem !important;
}

    .btn-group-toggle label.active {
        background-color: #21264e !important;
        color: white !important;
    }

/* Styles for the preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Style for the image */
#preloaderImg {
    max-width: 100%;
    max-height: 100%;
    animation: wobble 0.5s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px) rotate(-5deg);
    }

    50% {
        transform: translateX(10px) rotate(5deg);
    }

    75% {
        transform: translateX(-10px) rotate(-5deg);
    }
}


.bg-black {
    background-color: #000;
}

@media (max-width:450px) {
    .navbar {
        padding: 0px !important;
    }
}

@media(max-width:500px) {
    #lblDashboardHeader {
        font-size: 13px !important;
    }
}


@media (max-width:665px) {
    .btnSettingSelection .nav {
        flex-direction: column !important;
    }
}

@media (max-width:366px) {
    .shiftSettings h4 .badge {
        font-size: 54%;
    }
}

.text-white {
    color: #fff !important;
}

.bg-primary {
    background-color: #21264e !important;
}

.btn-white {
    background-color: #fff !important;
    color: #21264e !important;
    font-weight: 600 !important;
}
 