/* fondo negro */
body{
    background-color: #000000 !important;
}

/* estilo de los botones */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    background-color: #424242;
    border: none;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: #db0000;
}

.btn-primary:hover {
    background-color: #ff0000;
}

.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.loader {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 9999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.loader .spinner-grow {
    top: 50%;
    left: 50%;
    margin: -13px 0 0 -13px;
    position: absolute;
}

.no-loader .loader {
    visibility: hidden;
    opacity: 0;
}

/* Estilos para el contenedor de los íconos */
.icons-redeso {
    display: flex;
    /* Utiliza flexbox */
    justify-content: center;
    /* Centra los íconos horizontalmente */
}

/* Estilos para los íconos */
.icons-redeso i {
    margin: 0 2px;
    /* Espaciado horizontal entre los íconos */
    font-size: 22px;
    /* Tamaño de los íconos */
    color: #a9b1bc;
    /*#646c77; /* Color de los íconos */
}

.loaderMini {
    width: 48px;
    height: 48px;
    border: 5px solid #fff;
    border-bottom-color: #ff3d00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.swal-button {
    background-color: #db0000;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    font-weight: normal;
    text-shadow: 0px -1px 0px rgba(198, 23, 23, 0.3);
}

.swal-button:hover {
    background-color: #ff0000;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@font-face {
    font-family: robotoRegular;
    src: url(./../units/fonts/Roboto-Regular.ttf);
}

.w3-button{
    color: #fff !important;
}

.w3-red, .w3-hover-red:hover {
    color: #fff !important;
    background-color: #db0000 !important;
}

.w3-button:hover {
    color: #fff !important;
    background-color: #ff0000 !important;
}