.error-feedback {
    font-size: 80%;
    width: 100%;
    margin-top: .25rem;
    color: #fb6340;
}

.sk-cube-background {
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.3);
    position: absolute;
    left: 0%;
    top: 0%;
}

.sk-cube-grid {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50vh;
    transform: translate(-50%, 0%);
    /* margin: 100px auto; */
}

.sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: #5e72e4;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

.scrollable {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

/* Oh Snap Alert */

.snap {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #eed3d7;
    border-radius: 4px;
    background-color: white;
}

.snap-red {
    color: white;
    background-color: #DA4453;
}

.snap-green {
    color: white;
    background-color: #37BC9B;
}

.snap-blue {
    color: white;
    background-color: #4A89DC;
}

.snap-yellow {
    color: white;
    background-color: #F6BB42;
}

.snap-orange {
    color: white;
    background-color: #E9573F;
}

.ohsnap {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0%);
}