/* COMMON CSS */

html, body{
    height: 100%;
    background-color: #efefef;
}

h1, h2, h3{
    color: #272E40;
}

/* SPLASH CSS */
#bg_splash{
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(#024d91,#FFFFFF);
    opacity: 0.8;
}

#bg_splash p{
    font-size: 24px;
    font-weight: bold;
    color: white;
}

/* LOGIN CSS */
#bg_login {
    min-height: 100vh;
    background-color: #efefef;
}

.bg-topbar{
    background-color: #ffffff;
}

#form_login input[type="text"]{
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #272E40;
    outline: none;
}

#form_login input[type="text"]:focus{
    border: none;
    border-bottom: 2px solid #024d91;
    outline: none;
}

.btn-primary{
    background-color: #024d91;
    color: white;
    font-weight: bold;
    letter-spacing: 3px;
    box-shadow: #272E40;
    border-color: #024d91;
}

/*.btn-warning:hover, .btn-warning:focus,.btn-warning:active{
    background-color: #024d91;
    color: #272E40;
    font-weight: bold;
    letter-spacing: 3px;
    opacity: 0.7;
}*/

/* CATEGORY CSS */
#list_events .list-group-item{
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 0;
    border-bottom: 1px solid #dcdcdc;
}

.flotante {
    position: fixed;
    bottom: 30px ;
    right: 30px;
    border:1px solid #024d91;
    background: #024d91;
    color:#ffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 90090;
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
    align-items: center;
    cursor: pointer;
}

.subcategories .list-group-item{
    background-color: #024d91;
    color: white;
}

/*SPINNER*/

.spinner-layout{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lds-spinner {
    /*color: #FF6C0C;*/
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    /*background: #FF6C0C;*/
    background: white;
}
.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/*END SPINNER*/
