#summary-today .font-size-20,
#summary-yesterday .font-size-20,
#summary-week .font-size-20,
#summary-previous-week .font-size-20 {
    color: #f95d6a;
}

/* Outdate browser message */
#outdated-browser {
    z-index         : 999999;
    display         : none;
    position        : fixed;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 100%;
    background-color: #222222;
}

#outdated-browser div {
    padding: 20px;
    color: #fff;
}

/* Initial Page Loading Overlay and Loader */
#loader {
    z-index         : 99999;
    display         : block;
    position        : fixed;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.loading-msg {
    display: inline-block;
    margin: 0 auto;
    font-size: 2em;
}

.loader,
.loader:after {
    border-radius: 50%;
    width        : 10em;
    height       : 10em;
}

.loader {
    margin           : 60px auto;
    font-size        : 10px;
    position         : relative;
    text-indent      : -9999em;
    border-top       : 1.1em solid rgba(255, 255, 255, 0.2);
    border-right     : 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom    : 1.1em solid rgba(255, 255, 255, 0.2);
    border-left      : 1.1em solid #d45087;
    -webkit-transform: translateZ(0);
    -ms-transform    : translateZ(0);
    transform        : translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation        : load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform        : rotate(0deg);
    }

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

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform        : rotate(0deg);
    }

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

/* Footer */
.custom-footer {
    background-color   : rgba(0, 0, 0, 0.025);
    border             : 1px solid rgba(0, 0, 0, 0.1);
    border-left-color  : transparent;
    border-right-color : transparent;
    border-bottom-color: transparent;
}

.dark-mode .custom-footer {
    background-color: #111417;
}

.custom-footer a.custom-footer-link {
    color: rgba(0, 0, 0, 0.65);
}

.dark-mode .custom-footer a.custom-footer-link {
    color: rgba(255, 255, 255, 0.65);
}

.custom-footer a.custom-footer-link:hover,
.dark-mode .custom-footer a.custom-footer-link:hover {
    color          : #1890ff;
    text-decoration: none;
}

.custom-footer .btn-scroll-to-top {
    border-radius: 3rem;
}


/* Sortable */
.sortable th {
    cursor: pointer;
}

.sortable th:hover::after {
    color    : inherit;
    font-size: 1.2em;
    content  : "  \025B8";
}

.sortable th::after {
    font-size: 1.2em;
    color    : transparent;
    content  : "  \025B8";
}


.sortable th.dir-d::after {
    color  : inherit;
    content: "  \025BE";
}

.sortable th.dir-u::after {
    color  : inherit;
    content: "  \025B4";
}