.redondel {
    width: 3.5rem;
    height: 3.5rem;
    /* background-color: #8d0024; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #8d0024;
    font-size: 15px;
    border: 2px solid #8d0024;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-10-10 13:53:13
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.pulsate-fwd {
    -webkit-animation: pulsate-fwd 2s infinite forwards;
    animation: pulsate-fwd 2s infinite forwards;

}

.card {
    width: 3.2rem;
    padding: 7px 5px;
    margin-right: 5px;
    border-radius: 5px;
    font-weight: 800;
}

.empty {
    outline: 2px solid grey;
}

.amarilla {
    background-color: #ffd83f;
    color: black;
}

.roja {
    background-color: #ff6464;
    color: white;
}

.verde {
    background-color: #1dbf57;
    color: white;
}

/*
.card:not(.empty):hover{
    -webkit-animation: pulsate-fwd 2s infinite forwards;
            animation: pulsate-fwd 2s infinite forwards;

  transition: 0.5s;
} */
.content-menu {
    margin-bottom: 0 !important;
}

.content-body {
    padding: 0;
    margin: 0;
}

.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;

    &>thead {
        background-color: var(--componet-primary-color);
        color: var(--componet-primary-color-text);

        &>tr {

            &>th {
                padding: 18px 36px !important;
                border-left: 1px solid #fff;

                &>div {

                    display: flex;
                    justify-content: space-around;
                }
            }
        }
    }

    &>tbody {
        &>tr {
            padding: 18px 36px;

            &>td {
                padding: 18px 36px;
                vertical-align: middle;
                color: #050505;
                border-left: 1px solid #fff;
                /* Font-Caption */
                font-family: "DM Sans";
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 20px;
                /* 142.857% */
                letter-spacing: -0.028px;
                text-align: left;
            }

            &>.boton-col {
                display: flex;
                justify-content: space-around;
            }
        }

        &>tr:nth-child(odd) {
            background-color: var(--main-bg-color);
        }

        &>tr:nth-child(even) {
            background-color: var(--main-content-color);
        }

    }

    &>tfoot {
        background-color: #F9F9F9;

        &>tr {
            &>th {
                position: relative;

                &>input {
                    width: 100%;
                    padding-right: 40px;
                    /* Espacio para el ícono */
                    box-sizing: border-box;
                    padding: 10px;
                    border-radius: 50px;
                    background: #FFF;
                    border-color: transparent;
                }

                &>.icon {
                    position: absolute;
                    right: 10px;
                    top: 50%;
                    transform: translateY(-50%);
                    font-size: 18px;
                    color: #999;
                    padding-top: 6px;

                }

                &>input::placeholder {
                    color: #888;
                    /* Cambia el color del placeholder */
                    font-style: italic;
                    /* Estilo de fuente en cursiva */
                    font-size: 14px;
                    /* Cambia el tamaño de la fuente */
                    opacity: 1;
                    /* Asegura que sea visible en todos los navegadores */
                }

                &>input::-ms-input-placeholder {
                    color: #888;
                }

                &>input::-webkit-input-placeholder {
                    color: #888;
                }

                &>input::-moz-placeholder {
                    color: #888;
                }

                &>input:-ms-input-placeholder {
                    color: #888;
                }

                &>input:-moz-placeholder {
                    color: #888;
                }

            }
        }
    }
}

.dt-buttons {
    display: flex;

    &>a {
        background: #F9F9F9;
        margin: 0 10px;
    }
}

.botones {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
}

.input-container {
    position: relative;
    width: 100%;
}

.input-container input {
    width: 100%;
    padding-right: 40px;
    /* Espacio para el ícono */
    box-sizing: border-box;
    padding: 10px;
    border-radius: 50px;
    background: #FFF;
    border-color: transparent;
}

.input-container .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
    padding-top: 6px;

}

.input-container input::placeholder {
    color: #888;
    /* Cambia el color del placeholder */
    font-style: italic;
    /* Estilo de fuente en cursiva */
    font-size: 14px;
    /* Cambia el tamaño de la fuente */
    opacity: 1;
    /* Asegura que sea visible en todos los navegadores */
}

/* Estilos específicos para navegadores antiguos */
.input-container input::-ms-input-placeholder {
    color: #888;
}

.input-container input::-webkit-input-placeholder {
    color: #888;
}

.input-container input::-moz-placeholder {
    color: #888;
}

.input-container input:-ms-input-placeholder {
    color: #888;
}

.input-container input:-moz-placeholder {
    color: #888;
}

input:focus,
a:focus {
    outline: none;
    /* Elimina el borde del enfoque */
}

.datatables_filter {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 80px;
    border-radius: 50px;
    background: #F9F9F9;
    max-height: 40px;

    &>input {
        background: #F9F9F9;
        border: none;
        color: #666;
        max-height: 40px;
        /* Font-Caption */
        font-family: "DM Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        /* 142.857% */
        letter-spacing: -0.028px;
    }
}

.dataTables_info {
    padding: 28px 24px !important;
    color: #666;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Syne;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 128.571% */
    letter-spacing: -0.084px;
    text-transform: uppercase;
}

.dataTables_paginate {
    display: flex;
    justify-content: end;
    gap: 10px;
    padding: 10px;
    background: #F9F9F9;
    border-radius: 50px;

    &>span {
        display: none;
    }
}

.btn-navigate svg path {
    stroke: black;
}

.disabled svg path {
    stroke: #666;
}