﻿.red-sign {
    color: red;
}
/*alert design*/
#pageMessages {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 30%;
    margin-bottom: 5rem;
}

.alert {
    position: relative;
    
}

    .alert .close {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 1em;
    }

    .alert .fa {
        margin-right: .3em;
    }


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

    #loader i {
        color: white;
        animation: spin 1s infinite linear;
    }

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

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




.main_img_wrapper img {
    width: 70px;
}
.mainSidebar_wrapper .nav-item .active {
    background-color: #d98d67 !important;
    border-radius: 0px;
}
.page-item.active .page-link {
    background-color: #d98d67;
    border-color: #d98d67;
}
.page-link, a {
    color: #343a40;
}
.signBtn {
    background-color: #d98d67;
    border-color: #d98d67;
    border-radius: 0px;
}
    .signBtn:hover, .signBtn:focus {
        background-color: #343a40;
        border-color: #343a40;
    }