footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 20px 30px;
}
.help-block {
    color: #dc3545 !important;
    font-size: 0.8rem;
    font-weight: 500;
}
ul {
    list-style: none;
}
.has-error > input, .has-error > div > input {
    border: 1px #ff0000 solid;
}

.snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 99999;
    bottom: 30px;
    font-size: 17px;
    left: 50%;
    white-space: nowrap;
    overflow: hidden;
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 4s;
    animation: fadein 0.5s, fadeout 0.5s 4s;
}
#FrameDecoderJS {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: none;
    z-index: 999;
}

/******** LOADING  ********/
#loadinglayer:active {
    overflow-x: scroll;
    overflow-y: hidden;
}

#loadinglayer {
    left: 0;
    overflow: hidden;
    top: 0;
    z-index: 9999999;
    height: 100%;
    position: fixed;
    width: 100%;
    background: #fff;
    opacity: 0.9;
    display: none;
    margin: 0px auto;
    text-align: center;
    color: #9e1c63 !important;
}

    #loadinglayer div {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
    }

.spin-container {
    text-align: center;
    margin-top: 100px;
}

.spin {
    border: 5px solid #868589;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate 2s cubic-bezier(0.26, 1.36, 0.74, -0.29) infinite;
}

#loader2 {
    border: 3px solid #E0EDFF;
    width: 220px;
    height: 220px;
    position: relative;
    top: -210px;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: rotate2 2s cubic-bezier(0.26, 1.36, 0.74, -0.29) infinite;
}

@keyframes rotate {
    0% {
        transform: rotateZ(-360deg)
    }

    100% {
        transform: rotateZ(0deg)
    }
}

@keyframes rotate2 {
    0% {
        transform: rotateZ(360deg)
    }

    100% {
        transform: rotateZ(0deg)
    }
}
/*********************/
.bg-red {
    background-color: #D92C27;
}
.navbar-light .navbar-brand {
    color: #FBFBFB;
}
.navbar-light .navbar-nav .nav-link {
    color: #FBFBFB;
}
.logo-img {
    width:200px;
}
body {
    position:relative;
    background-image: url('../img/background-3.png'),url('../img/background-1.png'),url('../img/background-2.png');
    background-repeat: no-repeat;
    background-size: auto,auto,auto;
    background-position: top left, bottom left,center right;
    min-height: 100vh;
}