﻿.validation-message {
    /*border: double 2px red;*/
    padding-left: 5px;
    width: 100%;
    color: red;
    background-color: white;
    border-radius: 5px;
    line-height: 24px;
    margin: 5px 0 5px 0;
}

    .validation-message:before {
        content: "\f071";
        font-family: FontAwesome;
        top: 0;
        font-size: 20px;
        margin-right: 5px;
    }

/* Display toaster popups above the modal background*/
.blazored-toast-container.position-bottomright {
    z-index: 7000;
}

.blazored-toast-warning {
    background-color:orange;
}

.nav-tabs .nav-item .nav-link {
    text-decoration: none;
}

li[aria-disabled="true"] {
    opacity: 0.5;
    background-color: #e9ecef!important;
}

/* Spinner */
.spinner {
    background-color: lightgray;
    border: 1px solid grey;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    opacity: 0.5;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    top: 35%;
    left: 44%;
    z-index: 200;
    padding: 0;
    height: 80px;
    width: 80px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #2986cc;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}


/* Hide the hamburger icon on larger screens */
#hamburger-icon {
    display: none;
    font-size: 30px; /* Adjust size as needed */
    cursor: pointer;
    padding: 10px; /* Some padding around the icon */
}

/* Show the hamburger icon on mobile screens */
@media (max-width: 991.98px) {
    #hamburger-icon {
        display: block;
    }

    .sidebar {
        position: fixed;
        left: -240px; /* Sidebar is hidden by default */
        transition: left 0.3s ease; /* Smooth transition for showing the sidebar */
    }

    /* Optional: Adjust position or size of the icon */
    #hamburger-icon {
        top: 10px; /* Adjust as needed */
        left: 10px; /* Adjust as needed */
        z-index: 1000; /* Make sure the icon is above other content */
    }

    .section{ 
        padding:10px;

    }

    .item-list .item-col 
    {
        padding: 5px 5px 5px 0;
    }
}