html,
body {
    height: 100%;
    /* overflow: hidden !important; */
}
.page-contentClass{
    flex: 1 0 auto;
}

#sticky-footer {
    flex-shrink: none;
}

.border-template{
    border: 2px solid #2c3e50;
    /* border: 2px solid #196979; */
    border-radius: 5px;
}

.background-template-color{
    background-color: #264357;
    /* background-color: #196979; */
}

.background-template-color2{
    background-color: #ecf0f1;
}

.background-template-text{
    background-color: #bdc3c7;
}

.text-template-background{
    color: #2c3e50;
}

.text-template-color{
    color:  #bdc3c7;
}

.progressBar{
  animation-name: loadProgress;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
}

.card{
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 5px 5px 5px lightblue;
}

thead tr > th, tfoot {
    /* background-color:lightblue !important; */
    background-color: #264357 !important;
}

col.fixed-width {
    min-width: 70px; /* Set the fixed width for the column */
    max-width: 70px; /* Set the fixed width for the column */
}

tfoot {
    height: 50px !important;

    /* display: table-footer-group;
    vertical-align: middle;
    border-color: inherit; */
}

/* thead, tfoot {position:fixed;}
thead {top:80px; width: 100%;}
tfoot {bottom:90px;} */

@keyframes loadProgress{
  from {
    width: 0%;
}
to {
    width: 100%;
}
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #264357;
    border-radius: 50%;
    border-top-color: #0001;
    display: inline-block;
    animation: loadingspinner .7s linear infinite;
}

@keyframes loadingspinner {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

#tabla-historial td, #tabla-historial-head th{
    padding: 0.5rem !important;
}

.action :hover {
    scale: 1.5;
    transition: 0.4s;
}

.input-group-append{
    display: flex;
    align-items: center;
}

.containerSwitch {
    top: 0; right: 0; bottom: 0; left: 0;
    height: 40px;
    margin: auto;
    text-align: center;
}

.switch {
    display: inline-block;
    font-size: 20px;
    height: 1em;
    width: 2em;
    background: #f24d4d;
    border-radius: 1em;
    cursor: pointer;
}

.checkbox {
    display: none;
}

.switch div {
    height: 1em;
    width: 1em;
    border-radius: 1em;
    background: #FFF;
    box-shadow: 0 0.1em 0.3em rgba(0,0,0,0.3);
    transition: all 300ms;
}

.switch input:checked + div {
    transform: translate3d(100%, 0, 0);
}

.switch:has(.checkbox:checked) {
    background-color: #4caf50; /* Change this to your desired color */
}

.box{
    cursor: pointer;
    border-style: solid;
    border-radius: 0.5rem;
    border-width: 2px;
    border-color: #c7c7c7;
}

#agenteFiltro, #juegoFiltro{
    cursor:pointer;
}

#agenteFiltro[data-state="true"]:hover, #juegoFiltro[data-state="true"]:hover{
    scale: 1.2;
    
}