#toast-container .toast {
    border: none;
    background-color: #00a8ff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    opacity: 0.9;
    -webkit-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out
}

#toast-container .toast .toast-message {
    font-weight: normal
}

#toast-container .toast:hover {
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
    opacity: 1
}

#toast-container .toast-success {
    background-color: #20bf6b
}

#toast-container .toast-error {
    background-color: #e84118
}

#toast-container .toast-warning {
    background-color: #ffa801
}

.text-discord {
    color: #7289DA
}

.main-wrapper {
    min-height: 90vh
}

.bee_fly {
    -webkit-animation: bee_fly 5s ease-in-out 0s infinite;
    animation: bee_fly 5s ease-in-out 0s infinite
}

@-webkit-keyframes bee_fly {
    0% {
        -webkit-transform: translate(20px, 0px) rotate(-5deg);
        transform: translate(20px, 0px) rotate(-5deg)
    }

    50% {
        -webkit-transform: translate(-20px, 0px) rotate(5deg);
        transform: translate(-20px, 0px) rotate(5deg)
    }

    to {
        -webkit-transform: translate(20px, 0px) rotate(-5deg);
        transform: translate(20px, 0px) rotate(-5deg)
    }
}

@keyframes bee_fly {
    0% {
        -webkit-transform: translate(20px, 0px) rotate(-5deg);
        transform: translate(20px, 0px) rotate(-5deg)
    }

    50% {
        -webkit-transform: translate(-20px, 0px) rotate(5deg);
        transform: translate(-20px, 0px) rotate(5deg)
    }

    to {
        -webkit-transform: translate(20px, 0px) rotate(-5deg);
        transform: translate(20px, 0px) rotate(-5deg)
    }
}

.nl2br {
    white-space: pre-line
}

.loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 9999
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: white
}

.product-feed-image {
    position: relative;
    overflow: hidden
}

.product-feed-image.aspect-ratio-1-1 {
    padding-bottom: 100%
}

.product-feed-image.aspect-ratio-16-9 {
    padding-bottom: 56.25%
}

.product-feed-image.aspect-ratio-4-5 {
    padding-bottom: 125%
}

.product-feed-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.code-block {
    font-family: Arial, sans-serif;
    background-color: #222;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    white-space: pre-wrap;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #444;
    overflow-x: auto
}

#barCodeScanner {
    width: 100%;
    max-width: 100%;
    margin: auto;
    position: relative
}

#barCodeScanner video {
    max-width: 100%;
    width: 100%;
    height: 100%
}

canvas.drawing,
canvas.drawingBuffer {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
    height: 100%
}



/*# sourceMappingURL=main.css.map */

table.dataTable {
    font-size: 9pt;
    color:#000;
  }
  
  table.dataTable tr.dtrg-level-0 td {
    font-size: 9.5pt;
  }
  
  table.dataTable.dataTable_width_auto {
    width: auto;
  }  
  
  
  /*ESTILOS CSS PARA SWEETALERT */

  .colored-toast.swal2-icon-success {
    background-color: #7bcb4d !important;
  }
  
  .colored-toast.swal2-icon-error {
    background-color: #f27474 !important;
  }
  
  .colored-toast.swal2-icon-warning {
    background-color: #f8bb86 !important;
  }
  
  .colored-toast.swal2-icon-info {
    background-color: #3fc3ee !important;
  }
  
  .colored-toast.swal2-icon-question {
    background-color: #87adbd !important;
  }
  
  .colored-toast .swal2-title {
    color: white;
  }
  
  .colored-toast .swal2-close {
    color: white;
  }
  
  .colored-toast .swal2-html-container {
    color: white;
  }
  
  #image-container {
    background-image: url('../images/bg.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /*filter: blur(0.9px);*/
    height: 100vh;
   
}

#login-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    opacity: 1.2;  /* Nivel de transparencia */
    text-align: center;

}

input[type="search"] {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  width: 250px;
}

/* Estilos para el botón de búsqueda */
input[type="search"]::search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 10px;
  width: 10px;
  background: url('https://cdn.jsdelivr.net/gh/google/material-design-icons/action/svg/production/ic_clear_24px.svg') no-repeat;
  background-size: contain;
  cursor: pointer;
}