body::-webkit-scrollbar {
    width: 8px;
    /* Tamaño del scroll en vertical */
    height: 8px;
    /* Tamaño del scroll en horizontal */
}


/* Ponemos un color de fondo y redondeamos las esquinas del thumb */

body::-webkit-scrollbar-thumb {
    padding: 1px;
    background: grey;
    border-radius: 5px;
}


/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */

body::-webkit-scrollbar-thumb:hover {
    background: grey;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}


/* Cambiamos el fondo cuando esté en active */

body::-webkit-scrollbar-thumb:active {
    background-color: grey;
}

body::-webkit-scrollbar {
    width: 8px;
    /* Tamaño del scroll en vertical */
    height: 8px;
    /* Tamaño del scroll en horizontal */
}

.bg-premium {
    /*color de premium center*/
    background-color: #003371;
    color: white;
}

.float {
    /* boton whatsapp */
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 10px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.float:hover {
    /* boton whatsapp */
    text-decoration: none;
    color: #25d366;
    background-color: #fff;
}

.my-float {
    /* boton whatsapp */
    margin-top: 16px;
}


/* Small devices (landscape phones, 576px and up) */

@media (max-width: 809px) {
    .pic-1 {
        height: 100px;
    }
    .pic-2 {
        height: 100px;
    }
    .pc {
        display: none;
    }
}


/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */

@media (min-width: 768px) {}


/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) {}


/* Extra large devices (large desktops, 1200px and up) */

@media (min-width: 812px) {
    .cel {
        display: none;
    }
}

.index_1000{
    z-index: 1000;
}

.border_parpadeo {
    border: 4px solid;
    animation: border-blink 1s linear infinite;
}

@keyframes border-blink {
0% {
    border-color: rgb(244, 240, 240);
}
50% {
    border-color: rgb(241, 80, 80);
}
100% {
    border-color: rgb(240, 232, 232);
}
}


/* From https://css.glass */
.glass{
    /* From https://css.glass */
    background: rgba(45, 72, 156, 0.77);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(45, 72, 156, 0.49);
}