span.alert{
    text-align: center;
}

.show-bar{
    width: 40%;
    top: 3%;
    left: 3%;
    background-color: rgba(0, 0, 0, .5);
    font-weight: italic;
    color: #FFF;
    position: absolute;
    min-height: 70px;
    display: none;
    z-index: 1;
    padding: 3px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;    
    
}

span.author {
    font-weight: bold;
}

.card-footer.legend,
.card-footer.legend i,
span.author,
span.description {
    font-size: 11px;
    color: #FFF;
}

span.simplequote::before {
    font-family: Arial;
    content: "\201C";
    color: #FFF;
    font-size: 4em;
    position: relative;
    left: 10px;
    top: -10px;
}



#loader-msg{
    text-align: center;
}
#loader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #444444;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;

}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.container {
    opacity: 0;
    max-width: 100vw !important
}

.h-85{
    height: 85%;
}

div.container > div > div > div.card-body > form > div.input-group{
    display: none;
}

div.container.show > div > div > div.card-body > form > div.input-group{
    display: flex;
}

/* .container.show > div.input-group{
    display: block;
} */

.container.show {
    opacity: 1;
    transition: 2s linear;
    animation: fade;
}


@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body {
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
}



#hide-back i,
#down-back i,
#show-back i{
    font-size: 25px;
    color: #FFC312;
    position: absolute;
}
#hide-back,
#down-back{
    width: 100%;
    height: 25px;
    padding: 10px;
    display: inline-block;
    
}

.bar-tools{
    width: 10%;
    float: left;
}
.bar-text{
    float: left;
    width: 90%;
    height: 70px;
    padding: 25px;
}


#show-back{
    display: block;
    max-width: 40px;
    float: right;
    position: relative;
    top: 20px;
    right: 20px
}