﻿/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    z-index: 999;
    /*background: #052b60;*/
    background: #1f1f1f; /*#a51e22;*/
    color: #fff;
    transition: all 0.3s;
    overflow-y: auto;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar {
    position: fixed;
    width: 250px;
    overflow-y: scroll;
    top: 0;
    bottom: 0;
}

    #sidebar.active {
        left: 0;
    }

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    /*background: #7386D5;*/
    position: absolute;
    top: 20px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    #dismiss:hover {
        /*background: #fff;*/
        color: #fff;
    }

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

    .overlay.active {
        display: block;
        opacity: 0.25;
    }

#sidebar .sidebar-header {
    padding: 20px;
    /*background: #052b60;*/
    padding-bottom: 0px;
}

#sidebar ul.components {
    padding: 15px 0;
    /*    border-bottom: 1px solid #47748b;*/
}



#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 14px;
    display: block;
}

    #sidebar ul li a:hover {
        /*color: #7386D5;
    background: #fff;*/
        color: #fff;
        background-color: rgba(200, 200, 200, 0.2);
        /* background: #02457e;*/
    }

/*chages By Sandeep */
/*#sidebar ul li.active > a,
a[aria-expanded="true"] {
    background: linear-gradient(#334556, #2C4257), #2A3F54;
    border-right: 5px solid #aa9136;

    color: #fff;*/
/*background: #02457e;*/
/*}*/

a[data-toggle="collapse"] {
    position: relative;
}


ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 5px;
        margin-bottom: 5px;
    }

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

select {
    -webkit-appearance: listbox !important
}

.profile {
    width: 20rem;
	min-width: 20rem;
    margin-left: -8rem;
}

.backcolor:hover {
    background-color: #98272B !important;
    
}

.colorname:hover {
    color: white
}

.colorname {
    color: black
}


/*.loader-wrapper {
    width: 20%;
    height: 20%;
    position: absolute;
    top: 35%;
    left: 35%;
    background: url('https://localhost:44337/images/Loader1.gif') no-repeat center;
    display: flex;
        justify-content: center;
    align-items: center;
}*/

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

.loader-img {
    width: 120px; /* Adjust size as needed */
    height: 120px; /* Adjust size as needed */
}
/*
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}
*/
/*.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;*/ /* Safari */
    /*animation: spin 2s linear infinite;
}*/

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

