body {
    background: #2d243b;
    /* fallback for old browsers */
    font-family: 'Abel', sans-serif;
    color: rgb(213, 175, 225);
    font-size: 1.0em;
}

a:hover,
a:visited,
a:link,
a:active {
    text-decoration: none;
}

.bg-dark2 {
    background-color: #996fdd;
}

.bg-azul {
    background-color: #26518b;
}

.miSelect {
    background-color: #26518b;
    color: aliceblue;
    border: 1px solid #2e2e2e;
    border-radius: 5px;
    padding: 5px;
    font-size: 1.0em;
    font-family: 'Abel', sans-serif;
}

#cwfApp {
    margin-top: 80px;
}

#cwfBuy {
    margin-top: 0px;
}

section {
    margin-top: 40px;
}

.bordeado {
    border: black 1x solid;
    border-radius: 15px;
}

.colorNaranja {
    color: #ff8f48;
}

/* SCROLLBAR-------------------- */

/* width */

::-webkit-scrollbar {
    width: 10px;
}

/* Track */

::-webkit-scrollbar-track {
    background: #818181;
}

/* Handle */

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*----------------- */

.fondoTransClaro {
    background-color: #1f253f;
    /* RGBA color con opacidad del 50% */
}

.fondoTransOscuro {
    background-color: rgba(0, 0, 0, .4);
}

.fondoTransVerde {
    background-color: rgba(0, 255, 0, .2);
}

.fondoTransRojo {
    background-color: rgba(255, 0, 0, .4);
}

.fondoNegro {
    background-color: rgba(0, 0, 0, .8);
}

.blob {
    background: black;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    /* height: 45px;
    width: 45px;
    padding: 5px; */
    transform: scale(1);
    animation: pulse-black 2s infinite;
    /* border-radius: 50%; */
}

.blob.red {
    background: rgb(220, 53, 69, 1);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 1);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}

/* OCULTA SI ES MODO MOBIL */

.desk {
    width: 400px;
}

.div-only-mobile {
    width: 400px;
}

@media screen and (max-width: 1920px) {
    .div-only-mobile {
        visibility: hidden;
    }
}

@media screen and (max-width: 906px) {
    .desk {
        visibility: hidden;
        width: 0px;
    }
    .div-only-mobile {
        visibility: visible;
    }
}

/* *************** */

.divBlur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.divBlur2 {
    -webkit-filter: blur(13px);
    -moz-filter: blur(13px);
    -o-filter: blur(13x);
    -ms-filter: blur(13x);
    filter: blur(13px);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.divBlur3 {
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -o-filter: blur(20px);
    -ms-filter: blur(20x);
    filter: blur(20px);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}