
.partialContents > svg.loading {
    width: 100px;
    margin: auto;
    display: block;
}
.dropdown-toggle:after {
    border-top: none !important;
    border-right: none !important;
}
/* loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(255,255,255,0.7);
}

.page-loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

    .page-loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;
        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    .page-loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;
        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

.autocomplete-suggestions {
    position: absolute;
    top: -17px;
    z-index: 10000;
    right: 0;
    left: 0;
    box-shadow: rgba(0,0,0,0.3) 1px 3px 4px;
}

.autocomplete-suggestion:hover {
    background-color: rgba(0,0,0,0.1);
    cursor: pointer;
}
.block-box {
    background: #e6eef6;
    padding: 7px 5px 0;
    border-radius: 7px;
    margin-bottom: 15px;
}

.table a.delete-item i.fa {
    color: red;
}
.navbar-login a{
    color:initial
}
.navbar-login{
    margin:0;
}
.loginerrors{
    color:red;
}
button span.xicon{
    margin-right:5px;
}
.docs-table .table-responsive {
    min-height: 270px;
}
.docs-table .table-responsive + .card-footer{
    padding:0;
}

.btn-abs{
    position:absolute;
    top:0;
    right:0;
}

.ahref{
    text-decoration:underline;
}

.modal-body .row-table {
}
.modal-body .row-header {
    border-bottom: 1px solid rgba(0,0,0,0.3);
    font-weight: bold;
    padding: 10px 0;
}

.modal-body .row-item {
}
.modal-body .row-item a {
    text-decoration: none;
    color: #212121;
}
.modal-body .row-item:hover {
    background-color: rgba(0,0,0,0.1);
    cursor: pointer;
}
.modal-body .row-item label {
    cursor: pointer;
}
.modal-body .row-item.cursor-default {
    cursor: default;
}
.modal-body .row-header {
    line-height: 14px;
}

.autocomplete-suggestions-footer{

}
.autocomplete-suggestions-footer hr {
    margin:5px 0;
}
.autocomplete-suggestions-footer-box{
    margin:0 5px;
}
.row.block-box hr {
    margin: 20px 0 10px 0;
}
@media only screen and (max-width: 800px) {
    /* Force table to not be like tables anymore */
    #no-more-tables table, #no-more-tables thead, #no-more-tables tbody, #no-more-tables th, #no-more-tables td, #no-more-tables tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        #no-more-tables thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    #no-more-tables tr {
        border: 1px solid #ccc;
    }

    #no-more-tables td {
        /* Behave like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

        #no-more-tables td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 33%;
            left: 10px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
            text-align: left;
            font-weight: bold;
/*            margin: 14px 0 0 5px;
*/            text-transform: uppercase;
            color: #545454;
        }

        /*
        Label the data
        */
        #no-more-tables td:before {
            content: attr(data-title);

        }
}
#sidebar-menu .dropdown-item.active {
    color: #fff;
    background: #354b66;
}
#sidebar-menu .dropdown-item:hover, #sidebar-menu .nav-link:hover {
    color: #fff;
    background: #354b66;
}