/*---Inicio carga index--*/

#contenedor_carga{
  background-color: rgba(17, 56, 100,0.9);
  height: 100%;
  width: 100%;
  position: fixed;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 10000;
}

.btn-carga{
  background-color: rgba(17, 56, 100,0.9);
  border: none;
}
/*---Fin carga index--*/



/*inicio degradado */
.bg-nav-blue-degraded{
    background: linear-gradient(135deg, #0B2A4A 0%, #123B6B 50%, #1E6FB8 100%);
    background-size: 500%;
    animation: nav-blue-degraded 10s infinite;
}

@keyframes nav-blue-degraded{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 30%;
    }
}
/*fin degradado*/



/*inicio degradado */
.bg-body-blue-degraded{
    background-image: linear-gradient(135deg, #0B2A4A 0%, #123B6B 50%, #1E6FB8 100%);
    background-size: 2000%;
    animation: body-blue-degraded 10s infinite;
}

@keyframes body-blue-degraded{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 30%;
    }
}
/*fin degradado*/

/*inicio degradado*/
.bg-card-white-degraded{
    background-color: rgba(255, 255, 255, 0.7);
}

/*fin degradado*/

a{
    text-decoration: none;
}
.text-blue-teal{
    color: #77ffff;
}

.my-margin{
    margin: 50px;
}

.my-margin2{
    margin: 100px;
}

.text-small{
    font-size: 12px;
}

.text-small-2{
    font-size: 9px;
}

/*Inicio fondo*/
.bg-orange{
    background-color: #FF9A2F;
}

/*Fin fondo*/


.box-shadow {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.box-shadow:hover{
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}

.box-shadow:active{
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}


/*Inicio desactivar botón canjear por WhatsApp*/
.disabled{
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}
/*Fin desactivar botón canjear por WhatsApp*/


.text-center{
    text-align: center;
}


/**/

.btn-foto{
    display:block;
    width:100%;
    padding:12px;
    background:#0d6efd;
    color:white;
    text-align:center;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}

.btn-foto:hover{
    opacity:0.9;
}

/*-----------------------btn-primary--------------------------------*/
/*.btn-primary{
    background-color: #77ffff;
    border-color: #77ffff;
    color: #fff;
    font-weight: bold;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #1dd2d2 !important;
    border-color: #1dd2d2 !important;
    color: #fff !important;
    font-weight: bold !important;
}*/

/*-----------------------btn-secondary--------------------------------*/
/*.btn-secondary{
    background-color: #5c8093;
    border-color: #5c8093;
    color: #fff;
    font-weight: bold;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #557586 !important;
    border-color: #557586 !important;
    color: #fff !important;
    font-weight: bold !important;
}*/

/*-------------------Inicio Footer nav-----------------------*/

    .mobile-footer{
        margin-top: 75px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: #fff;
        border-top: 1px solid #e5e5e5;
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 1050;
        box-shadow: 0 -2px 10px rgba(0,0,0,.08);
    }

    .footer-item{
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        color: #6c757d;
        font-size: 12px;
        transition: .2s;
    }

    .footer-item i{
        font-size: 22px;
        margin-bottom: 3px;
    }

    .footer-item:hover,
    .footer-item.active{
        color: #0d6efd;
    }

    .footer-avatar{
        width: 30px;
        height: 30px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 2px;
    }

    /* Para que el footer no tape el contenido */
    /*body{
        padding-bottom: 60px;
    }*/
/*-----------------Fin footer nav-------------------*/