/* Image With Text */
.dashboard-img-container {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: .5s ease;
}

.dashboard-img-text {
    color: white;
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-weight: bold;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .dashboard-img-text {
        font-size: 16px;
    }

    .btn-xs {
        padding: .175rem .75rem;
        font-size: .8rem;
    }
}