/*Style Login  */

.contbody {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-image: url("../../assets/img/backlogin.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
}

.backwhite{
    background-image: url("../../assets/img/backwhite.jpg");
    background-repeat: no-repeat;
    background-size: cover;

}

.my-swal-z {
  z-index: 2000 !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
      font-size: 1.3em; /* Adjust the font-size as needed */
      cursor: pointer;
  }

.login-box{
    margin-bottom: 40px;
    background-color: rgb(0, 0, 0, 0.4);
    border: 1px solid white;
    border-radius: 10px; 
}

.login-box p:first-child {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}

.login-box .user-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #fff;
  font-size: 12px;
}

.login-box a {
  position: relative;
  display: inline-block;
  padding: 20px;
  font-weight: bold;
  color: white !important;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  letter-spacing: 3px
}

.login-box a:hover {
  background: rgb(0, 0, 0, 0.6);
  color: #272727;
  border-radius: 5px;
  cursor: pointer;
}

.login-box a span {
  position: absolute;
  display: block;
}

.login-box a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff);
  animation: btn-anim1 1.5s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }

  50%,100% {
    left: 100%;
  }
}

.login-box a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #fff);
  animation: btn-anim2 1.5s linear infinite;
  animation-delay: .375s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }

  50%,100% {
    top: 100%;
  }
}

.login-box a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #fff);
  animation: btn-anim3 1.5s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }

  50%,100% {
    right: 100%;
  }
}

.login-box a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #fff);
  animation: btn-anim4 1.5s linear infinite;
  animation-delay: 1.125s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }

  50%,100% {
    bottom: 100%;
  }
}

.login-box p:last-child {
  color: #aaa;
  font-size: 14px;
}

.login-box a.a2 {
  color: #fff;
  text-decoration: none;
}

.login-box a.a2:hover {
  background: transparent;
  color: #aaa;
  border-radius: 5px;
}


/*Titulos*/
.title {
    font-size: 20px;
    color: #2471A3;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 0px;
    
  }

.title::before, .title::after {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 50%;
    left: 0px;
    background-color: #2471A3;
}

.title::before {
    width: 14px;
    height: 14px;
    background-color: #2471A3;
}

.title::after {
    width: 14px;
    height: 14px;
    animation: pulse 2s linear infinite;
}
@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

.title_sub {
    font-size: 16px;
    color: #2471A3;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 0px;
    
  }

.title_sub::before, .title_sub::after {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 50%;
    left: 0px;
    background-color: #2471A3;
}

.title_sub::before {
    width: 14px;
    height: 14px;
    background-color: #2471A3;
}

.title_sub::after {
    width: 14px;
    height: 14px;
    animation: pulse 2s linear infinite;
}

.title_text{
  text-align:right;
  font-size:14px;
  font-weight: bold
}
/*FIN  Titulos Empieza inputs*/

.form_style{
  margin-top: 8px !important;
  margin-right: 0px !important;
  margin-bottom: 2px !important;
  padding-right: 0px !important;
}

.labelTittle{
  font-size: 1.1em;
  font-weight: bold;
  color: #2471A3;
  padding: 0px !important;

}
.labelTittleBlack{
  font-size: 1.1em;
  font-weight: bold;
  color: black;
  padding: 0px !important;

}


.borderRep{
  border: 1px solid gray;
}
/*COLORES  #2c3e50 #2471A3   #00bfff*/
.form_style label .input {
  background-color: transparent;
  color: black;
  width: 100%;
  padding: 20px 05px 0px 00px;
  outline: 0;
  /*border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;*/
  border: none;
  border-bottom: 1px solid rgba(105, 105, 105, 0.397) !important;
  font-size: 16px;
  font-weight: bold;
}

.form_style label .input + span {
  color: gray; /*#1abc9c;*/
  position: absolute;
  left: 1px;
  padding-left: 10px;
  font-size: 1.2em;
  cursor: text;
  transition: 0.3s ease;
}

.form_style label .input:placeholder-shown + span {
  top: 11.5px;
  font-size: 1.2em;
  font-weight: bold;
}

.form_style label .input:focus + span,
.form_style label .input:not(:placeholder-shown) + span{
  color: #2471A3;
  top: 2px;
  padding-left: 0px;
  font-size: 1.1em;
  font-weight: 600;
}

.form_style label .input::placeholder {
  color: #00FF00 !important;  /* Green color for the placeholder text, adjust as needed */
}

.input_padd{
  padding-left: 0px !important;
  padding-top: 2px !important;
}

.input_margin_b{
  margin-bottom: 0px !important;
  
}


/*-------------------------Formulario modal------------------------------ form_style label .input:valid + span */

.modal-w {
    max-width: 70% !important;
    width: 100% !important;
}

.modal-w50 {
    max-width: 50% !important;
    width: 100% !important;
}
.modal-shortcut {
    max-width: 60% !important;
    width: 100% !important;
}

.modal_border{
  border: 1px solid #2c3e50;
  border-radius: 10px;
}


.form_style_M label .input {
  background-color: transparent;
  color: black;
  width: 100%;
  padding: 20px 05px 0px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
}

.form_style_M label .input + span {
  color: gray; /*#1abc9c;*/
  position: absolute;
  left: 1px;
  padding-left: 10px;
  font-size: 1.2em;
  cursor: text;
  transition: 0.3s ease;
}

.form_style_M label .input:placeholder-shown + span {
  top: 11.5px;
  font-size: 1.2em;
  font-weight: bold;
}

.form_style_M label .input:focus + span,
.form_style_M label .input:not(:placeholder-shown) + span{
  color: #2471A3;
  top: 2px;
  padding-left: 5px;
  font-size: 1.1em;
  font-weight: 600;
}

.form_style_M label .inputMon {
  background-color: transparent;
  color: black;
  width: 100%;
  padding: 05px 05px 3px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
}

.form_style_M label .input:read-only {
  background-color: #F2F4F4;
}
.form_style_M label .inputMon:read-only {
  background-color: #F2F4F4;
}
/*---------------------------Radio button----------------------------------*/

.radio-button-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 5px;
}

.radio-button-container-2 {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 5px;
}


.radio-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.radio-button__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-button__label {
  display: inline-block;
  padding-left: 30px;
  margin-bottom: 2px;
  position: relative;
  font-size: 15px;
  color: black;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.radio-button__custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #555;
  transition: all 0.3s ease;
}

.radio-button__input:checked + .radio-button__label .radio-button__custom {
  background-color: #08bb68;/*#4c8bf5;*/
  border-color: transparent;
  transform: scale(0.8);
  box-shadow: 0 0 10px #08bb68;
}

.radio-button__input:checked + .radio-button__label {
  color: #08bb68;
}

.radio-button__label:hover .radio-button__custom {
  transform: scale(1.2);
  border-color: #08bb68;/*#4c8bf5;*/
  box-shadow: 0 0 10px #08bb68;
}

/*----------------------------------------------checkbox--------------------------------*/

.checkmark {
 display: block;
 width: 25px;
 height: 25px;
 background-color: #ddd;
 border-radius: 8px;
 position: relative;
 transition: background-color 0.4s;
 overflow: hidden;
 cursor: pointer;
}

.check_class:checked ~ .checkmark {
 background-color: #08bb68;
}

.checkmark::after {
 content: "";
 position: absolute;
 width: 8px;
 height: 13px;
 border-right: 3px solid #fff;
 border-bottom: 3px solid #fff;
 top: 44%;
 left: 50%;
 transform: translate(-50%, -50%) rotateZ(40deg) scale(10);
 opacity: 0;
 transition: all 0.4s;
}

.check_class:checked ~ .checkmark::after {
 opacity: 1;
 transform: translate(-50%, -50%) rotateZ(40deg) scale(1);
}

/* ------------------------------BUTTON disable and grayed----------- */

                  
.btn_disable {
  text-decoration: none;
  cursor: not-allowed;
  opacity: 0.2 !important;
  pointer-events: none; 
}

/* ------------------------------BUTTON next----------- */

.btn_next {
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
}

/* ------------------------------BUTTON SAVE----------- */

.btn_save {
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;

}

/*-------------------------------BUTTON EXPORTAR-------------*/

.btn_export {
 /* background-color: #2471A3;*/
  color: white;
  font-family: inherit;
  font-size: 17px;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  letter-spacing: 0.05em;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 2.1em;
  cursor: pointer;
  justify-content: center;
}

/* -------------------------------BUTTON NUEVO -----------------*/

.cssbuttons-io-button {
  background: #2ecc71;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #28BB2F;
  overflow: hidden;
  position: relative;
  height: 2.1em;
  padding-right: 3.3em;
  cursor: pointer;
  justify-content: center;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.8em;
  width: 1.8em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #28BB2F;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
 /* width: 1.1em;*/
  transition: transform 0.3s;
  color: #28BB2F;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}


/* -------------------------------EDIT BTN TABLES ----------------------------*/

.editBtn {
  width: 40px;
  height: 27px;
  border-radius: 10px;
  border: none;
  background-color: #F8C471;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.123);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.editBtn:hover {
  background-color: #F5B041;
}  
.editBtn svg {
  height: 17px;
  fill: white;
  z-index: 3;
  transition: all 0.2s;
  transform-origin: bottom;
}
.editBtn:hover svg {
  transform: rotate(-15deg) translateX(5px);
}
.editBtn::after {
  content: "";
  width: 20px;
  height: 1.5px;
  position: absolute;
  bottom: 5px;
  left: -5px;
  background-color: white;
  border-radius: 2px;
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-out;
}
.editBtn:hover::after {
  transform: scaleX(1);
  left: 0px;
  transform-origin: right;
}
/* ------------------------BTN COPY TABLE ----------------------*/


.copyBtn {
  width: 40px;
  height: 27px;
  border-radius: 10px;
  border: none;
  background-color: #28B463;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.123);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.copyBtn:hover {
  background-color: #1D8348;
}  
.copyBtn svg {
  height: 17px;
  fill: white;
  stroke: white; /* Set the color of the stroke */
  stroke-width: 1px;
  z-index: 3;
  transition: all 0.2s;
  transform-origin: bottom;
}


/* ------------------------BTN COPY TABLE ----------------------*/


.FileBtn {
  width: 40px;
  height: 27px;
  border-radius: 10px;
  border: none;
  background-color: #285EB4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.123);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.FileBtn:hover {
  background-color: #214D91;
}  
.FileBtn svg {
  height: 17px;
  fill: white;
  stroke: white; /* Set the color of the stroke */
  stroke-width: 1px;
  z-index: 3;
  transition: all 0.2s;
  transform-origin: bottom;
}
/* -------

/* ----------------------BTN DELETE TABLES --------------------- */

.bin-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 27px;
  border-radius: 10px;
  background-color: rgb(255, 95, 95);
  cursor: pointer;
  border: 2px solid rgb(255, 95, 95);
  transition-duration: 0.3s;
  position: relative;
  overflow: hidden;
}
.bin-bottom {
  width: 9px;
  z-index: 2;
}
.bin-top {
  width: 12px;
  transform-origin: right;
  transition-duration: 0.3s;
  z-index: 2;
}
.bin-button:hover .bin-top {
  transform: rotate(45deg);
}
.bin-button:hover {
  background-color: rgb(255, 0, 0);
}
.bin-button:active {
  transform: scale(0.9);
}
.garbage {
  position: absolute;
  width: 14px;
  height: auto;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}
.bin-button:hover .garbage {
  animation: throw 0.4s linear;
}
@keyframes throw {
  from {
    transform: translate(-400%, -700%);
    opacity: 0;
  }
  to {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}

/*------------------------------button close modal-----------------------------*/

.btnclose{
   border-radius: 8px;
   background-color: red;
   font-weight: bold;
   color: white;
}
.btnclose:hover{
  color: white;
  opacity: .6;
}

.btnCloseModal {
    position: relative;
    width: 2em;
    height: 2em;
    border: none;
    background: rgba(255, 0, 0, 0.11);
    border-radius: 5px;
    transition: background 0.5s;
}

.X {
    content: "";
    position: absolute;
    font-weight:bold;
    top: 50%;
    left: 50%;
    width: 2em;
    height: 1.5px;
    background-color: rgb(255, 255, 255);
    transform: translateX(-50%) rotate(45deg);
}

.Y {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2em;
    height: 1.5px;
    background-color: #fff;
    transform: translateX(-50%) rotate(-45deg);
}

.closeModal {
    position: absolute;
    display: flex;
    padding: 0.8rem 1.5rem;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    top: -70%;
    left: 50%;
    width: 3em;
    height: 1.7em;
    font-size: 12px;
    background-color: rgb(19, 22, 24);
    color: rgb(187, 229, 236);
    border: none;
    border-radius: 3px;
    pointer-events: none;
    opacity: 0;
}

.btnCloseModal:hover {
    background-color: rgb(255, 0, 0);
}

.btnCloseModal:active {
    background-color: rgb(255, 0, 0);
}

.btnCloseModal:hover > .closeModal {
    animation: close 0.2s forwards 0.25s;
}

@keyframes close {
    100% {
        opacity: 1;
    }
}

/*----------------------------BUTTON SELECT SHORCUT---------------------*/

.Selectbutton {
  display: flex;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  padding: 0.2em .5em 0.2em 0.5em;
  color: white;
  background: #ad5389;
  background: linear-gradient(0deg, rgba(20,167,62,1) 0%, rgba(102,247,113,1) 100%);
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
  letter-spacing: 0em;
  border-radius:10px;
}

.Selectbutton svg {
  margin-right: 0px;
}

.Selectbutton:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
   background: linear-gradient(0deg, rgba(20,167,62,1) 0%, rgba(102,247,113,1) 50%);
}

.Selectbutton:active {
  box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}

/***********************************BTN Generales IMPOEXPO ********************/

.btn_gral {
    background-image: linear-gradient(to right, #2c3e50 0%, #3498db  60%, #2c3e50  100%);
    margin: 5px;
    padding: 10px 5px;
    text-align: center;
    border: 2px solid #00acc1;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;  
    font-weight: bold;          
    box-shadow: 0 0 20px #eee;
    border-radius: 5px;
    display: block;
    position: relative;
    display: inline-block;
}

.btn_gral:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.btn_gral_doda {
    background-image: linear-gradient(to right, #2c3e50 0%, #7334DB  60%, #2c3e50  100%);
    margin: 5px;
    padding: 10px 5px;
    text-align: center;
    border: 2px solid #7334DB;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;  
    font-weight: bold;          
    box-shadow: 0 0 20px #eee;
    border-radius: 5px;
    display: block;
    position: relative;
    display: inline-block;
}

.btn_gral_doda:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}


.btn_gral_partida {
    background-image: linear-gradient(to right, #2c3e50 0%, #3498db  60%, #2c3e50  100%);
    margin: 5px;
    padding: 10px 5px;
    text-align: center;
    border: 2px solid #00acc1;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;  
    font-weight: bold;          
    box-shadow: 0 0 20px #eee;
    border-radius: 5px;
    display: block;
    position: relative;
    display: inline-block;
}

.btn_gral_partida:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.btn_gral_excel {
    background-image:  linear-gradient(to right, #2EC829 0%, #86DF17  51%, #2EC829  100%);
    margin: 5px;
    padding: 10px 5px;
    text-align: center;
    border: 2px solid #62DB34;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;  
    font-weight: bold;          
    box-shadow: 0 0 20px #eee;
    border-radius: 5px;
    display: block;
    position: relative;
    display: inline-block;
}

.btn_gral_excel:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

/*---------------------------------COMBO BOX -------------------*/

.box select {
  background-color: white;
  color: #2471A3;
  padding: 5px;  border: 1px solid #2471A3;
  border-radius: 5px;
  font-size: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  -webkit-appearance: button;
  appearance: button;
  outline: none;
}


.box select option {
  padding: 30px;
}

/*-----------------------------------datatable -------------------------*/
.hidden-column {
      display: none;
    }

.white-icon{
  color: white;
}
.table td {
    white-space: nowrap !important; /* You can also use 'normal' or 'pre-wrap' depending on your needs */
    overflow: hidden !important;
    text-overflow: ellipsis !important; /* Truncate text with an ellipsis (...) if it overflows */
}


.dataTables_filter input {
      width: 300px; /* Adjust the width as needed */
      border: 1px solid #2471A3;
      font-size: 14px;
      font-weight: bold;

}
.dataTables_filter label{
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 2px !important;
}

.dataTables_length label{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2px !important;
}

.dataTables_length select {
    font-size: 14px;
      font-weight: bold;
      color: #2471A3;
}


.dataTables_wrapper table.dataTable {
    width: 99%;
    border-collapse: collapse;
    margin: 0px;
}

.dataTables_wrapper table.dataTable th, .dataTables_wrapper table.dataTable td {
    padding: 4px;
    border: 1px solid #ddd;
}

.dataTables_wrapper table.dataTable thead th {
    background-color: #2471A3;
    font-weight: bold;
    padding: 4px;
    color: white;
}

.dataTables_wrapper table.dataTable tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.dataTables_wrapper table.dataTable tbody tr:hover {
    background-color: #e0e0e0;
}

.dataTableW {
    width: 100% !important;
}

table  td {
    max-width: 150px; /* Adjust the max-width as needed */
    overflow: hidden;
    text-overflow: ellipsis; /* Optional: Show ellipsis (...) for truncated text */
    white-space: nowrap; /* Optional: Prevent text from wrapping to the next line */
}

.dataTableActions {
    /* Set the width of the third column to 100px */
    width: 150px !important;
    max-width: 150px !important;
    white-space: nowrap !important; /* Prevent text wrapping */
    overflow: hidden !important; /* Hide overflow content */
    text-overflow: ellipsis !important; /* Display an ellipsis (...) for overflow text */
}

/* Contenedor de la parte superior (top) */
.top {
    display: flex;
    justify-content: space-between;  /* Esto distribuye el combo, botones y búsqueda */
    align-items: center;  /* Alinea verticalmente los elementos */
    width: 100%;
}

/* Los botones de exportación */
.dt-buttons {
    margin-left: 10px !important;  /* Añade algo de espacio a la izquierda de los botones */
    margin-right: 10px !important;  /* Añade algo de espacio a la derecha de los botones */
}

.dt-buttons .btn {
    background-color: #28a745; 
    color: white;  
    border: none;  
    padding: 8px 16px; 
    font-size: 14px;  
    border-radius: 5px; 
    margin: 0 5px;  /* Espacio entre los botones */
}



.dt-buttons .btn-excel {
    background-color: #28a745 !important;  
}

.dt-buttons .btn-exp {
    background-color: #00acc1 !important;  
}

/* Estilos adicionales para asegurar un buen espaciado */
.dataTables_wrapper {
    width: 100%;
}

/* Asegura que la barra de búsqueda se alinee correctamente */
.dataTables_filter {
    display: flex;
    justify-content: flex-end; /* Alínea la barra de búsqueda a la derecha */
}

/* --------------------SPINNER DATABLES ------------------------- */

.custom-spinner {
    display: inline-block;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (min-width: 992px) and (max-width: 1056px) {

}

@media (min-width: 641px) {
  #TableBultos_filter input {
     
      margin-right: 15px ;
  }
}


/* -----------------------------loader ---------------------------------*/
@keyframes square-animation {
    0% {
        left: 0;
        top: 0;
    }

    10.5% {
        left: 0;
        top: 0;
    }

    12.5% {
        left: 64px;
        top: 0;
    }

    23% {
        left: 64px;
        top: 0;
    }

    25% {
        left: 128px;
        top: 0;
    }

    35.5% {
        left: 128px;
        top: 0;
    }

    37.5% {
        left: 128px;
        top: 64px;
    }

    48% {
        left: 128px;
        top: 64px;
    }

    50% {
        left: 64px;
        top: 64px;
    }

    60.5% {
        left: 64px;
        top: 64px;
    }

    62.5% {
        left: 64px;
        top: 128px;
    }

    73% {
        left: 64px;
        top: 128px;
    }

    75% {
        left: 0;
        top: 128px;
    }

    85.5% {
        left: 0;
        top: 128px;
    }

    87.5% {
        left: 0;
        top: 64px;
    }

    98% {
        left: 0;
        top: 64px;
    }

    100% {
        left: 0;
        top: 0;
    }
}

.loader {
    position: relative;
    width: 192px;
    height: 192px;
    transform: rotate(45deg);
}

.loader-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    margin: 2px;
    border-radius: 0px;
    background: #86DF17; 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: square-animation 10s ease-in-out infinite both;
}

    .loader-square:nth-of-type(0) {
        animation-delay: 0s;
    }

    .loader-square:nth-of-type(1) {
        animation-delay: -1.4285714286s;
    }

    .loader-square:nth-of-type(2) {
        animation-delay: -2.8571428571s;
    }

    .loader-square:nth-of-type(3) {
        animation-delay: -4.2857142857s;
    }

    .loader-square:nth-of-type(4) {
        animation-delay: -5.7142857143s;
    }

    .loader-square:nth-of-type(5) {
        animation-delay: -7.1428571429s;
    }

    .loader-square:nth-of-type(6) {
        animation-delay: -8.5714285714s;
    }

    .loader-square:nth-of-type(7) {
        animation-delay: -10s;
    }


.dataTables_wrapper {
    width: 100% !important;
}

.disabled-radio {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}