html, body{
    height:100%;
    

}
.custom-move-t-150 {
    top: 200px;
}
.custom-table-container {
height: 470px;
overflow-y: scroll;
overflow-x: hidden;
}
.h-150 {
    height: 200px;
}
/* Sacados de Plugins */
.min-vh-10 {min-height: 10vh !important;}
.min-vh-80 {min-height: 80vh !important;}
.min-vh-90 {min-height: 90vh !important;}
.min-vh-89 {min-height: 89vh !important;}
.mx-h-100 {
    max-height: 220px;
}
.mx-h-25 {
    max-height: 25px;
}
.mx-h-12 {
    max-height: 12.5px;
}
.mx-h-420 {
    max-height: 420px;
}
.celda {
    display: flex;
    border: none !important;
    justify-content: center;
}

.rounded-custom {
    border-radius: 1rem !important;
}

.custom-move-l-10 {
    left: 20px;
}
.custom-move-r-20 {
    right: 20px;
}
.custom-p-top {
    top: 10px;
    position: relative;
    
}
.h-custom-200 {
    height: 200px;
}
.custom-p-bot {
    top: -45px;

    position: relative;
}
.container-height-10 {
    height: 100%;
}
/* animaciones y especiales */
.hover-scale-1 {
    transition: all 300ms;
}
.hover-color-1 {
    transition: all 300ms;
}
.hover-color-1:hover {
    background-color: #ee4f898a;
    color: #a25656;
    text-shadow:0 0 0 .2rem rgb(50, 100, 192);
}
.no-select-text {
    user-select: none !important;    
}
.hover-scale-1:hover {
    transform: scale(1.1);
    transition: all 300ms;
}
.transiton-all {
    transition: all 300ms;
}
.bg-footer {
    background-image: url("/./././assets/images/72ppi/Recurso_21.webp");
    background-repeat: no-repeat;
        background-size: cover;
        animation-name: move-bg-footer;
        animation-duration:40s;
        animation-direction: alternate;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
}
@keyframes move-bg-footer {
    0% {background-position-x: right;}
    100% {background-position-x: left;}
}
.bg-boals{
    background: url("/./././assets/images/Recurso7.webp"); 
    background-repeat: no-repeat;
    background-size: cover;
    animation-name: move-b;
    animation-duration:60s;
    animation-direction: alternate;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    
}
@keyframes move-b {
    0% {background-position-x: right;}
    100% {background-position-x: left;}
}
.color-transition {
    color: #40BFEF; /* valor inicial */
    animation: colorTransition; /* Nombre del keyframes */
    animation-duration: 20s; /* duración*/
    animation-timing-function: linear; /* con esto haces que que la animación sea continua y no sufra adelantos ni atrasos */
    animation-iteration-count: infinite; /* nunca se detiene */
    font-size: 50pt;
    text-shadow: 5px 4px 7px rgba(0,0,0,0.34);;
}

@keyframes colorTransition { /* los frames a tu gusto cada momento de la animación */
    0% {color: #40BFEF} /* inicio de la animación */
    20% {color: #578AC8} 
    40% {color: #9156A2}
    60% {color: #EE4F88}
    80% {color: #FCEE21}
    90% {color: rgb(115, 216, 177);}
    100% {color: #40BFEF} /* final de la animacion */
}

.scale-transition {
    transform: scale(1.0);
    animation: scaleTransition; /* Nombre del keyframes */
    animation-duration: 2s; /* duración*/
    animation-timing-function: linear; /* con esto haces que que la animación sea continua y no sufra adelantos ni atrasos */
    animation-iteration-count: infinite; /* nunca se detiene */
}
@keyframes scaleTransition {
    0% {transform: scale(1.0);}
    50% {transform: scale(1.2);}
    100% {transform: scale(1.0);}

}

@media (min-width: 768px){
    .footer-espaciador {
        min-height: 46px;
    }
    .bg-desktop{
        min-height: 500px;
        background: url("/./././assets/images/Recurso7.webp"); 
        background-repeat: no-repeat;
        background-size: cover;
        animation-name: move-bg;
        animation-duration:40s;
        animation-direction: alternate;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        
    }
    @keyframes move-bg {
        0% {background-position-x: right;}
        100% {background-position-x: left;}
    }
}

@media (max-width: 768px) {
    .present {
        display: none !important;
    }
}

/* Cursor */
.cursor-arrow-fucsia {
    cursor: url("/assets/images/flecha-pink.webp"), auto !important;
}

.cursor-arrow-amarillo {
    cursor: url("/assets/images/flecha-yellow.webp"), auto!important;
    transition: 0.3s ease !important;
}

.cursor-arrow-fucsia {
    cursor: url("/assets/images/flecha-pink.webp"), auto !important;
    transition: 0.3s ease !important;
}

.cursor-arrow-amarillo label {
    cursor: url("/assets/images/flecha-pink.webp"), auto !important;
    transition: 0.3s ease !important;
}

.cursor-arrow-amarillo input[type="radio" i] {
    cursor: url("/assets/images/flecha-pink.webp"), auto !important;
    transition: 0.3s ease !important;
    color: #EE4F88 !important;
}
/* fin estilos de cursor*/