a {
    color: #202020;
}
a:hover {
    color: #202020;
}
.theme-bg-dark {
    background: #282828;
}
.theme-icon-holder {
    background: #f4f4f4;
    color: #282828;
}
.card:hover {
    background: #f4f4f4 !important;
}
.form-control {
    border-color: #e0e0e0;
}
.social-list li {
    background: #f4f4f4;
}
.social-list li a {
    color: #3d3d3d;
    filter: invert(0%);
    transition: all 0.2s ease-in-out;
}
.social-list li a:hover {
    color: #282828;
    filter: invert(50%);
}
.quick-link-item {
    display: inline-block;
    padding-top: 1rem;
    padding-right: 1rem;
}
.app-container {
    display: inline-block;
    margin: 10px;
}
.app-container-item {
    position: relative;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: opacity 0.25s ease-out;
    -moz-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out;
    overflow: hidden;
}
.app-container-item:before {
    position: absolute;
    display: block;
    top: 0;
    left: -75%;
    z-index: 2;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    cursor: progress;
}
.app-container-item:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}
@keyframes shine {
    100% {
        left: 125%
    }
}
.mx-lg-5 {
    margin-right: 10px !important;
}
.hidden {
    display: none;
}