.separador:before {
    content: "";
    display: block;
    border-top: solid 1px rgba(0,0,0,0.25);
    width: calc(100% - 30px);
    height: 1px;
    position: absolute;
    top: 50%;
    z-index: 1;
  }
.separador span {
    background: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.modal-content{
    border-radius: 10px;
}

.thead-clippers{
    background-color: #0D1A29;
    color: #fff;
}

.form-row.collapse.show{
    display: flex;
}

.page-container {
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
}

.cargando{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #0D1A29 solid;
    border-radius: 50%;
    animation: sp-anime 1s infinite linear;
}

@keyframes sp-anime {
    100% { 
        transform: rotate(360deg); 
    }
}
.is-hide{
    display:none;
}

@media (min-width:992px){
    .modal-xl{
        max-width: 1200px;
    }
}

/* INICIO Estilos de Tablas con menos padding */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 3px 12px;
}
.dataTables_wrapper .dataTables_filter input {
    padding: 1px 6px;
}
.dataTables_wrapper .dataTables_length select {
    padding: 1px 4px;
}
.dataTables_wrapper {
    font-size: 14px;
}
.dataTables_scrollHead .dataTables_scrollHeadInner .dataTable thead tr th {
    padding-top: 6px;
    padding-bottom: 6px;
}
.dataTables_scrollHead .dataTables_scrollHeadInner .dataTable thead tr th button {
    padding: 1.5px 6px;
}
.dataTables_scrollHead .dataTables_scrollHeadInner .dataTable thead tr th a {
    padding: 1.5px 6px;
}
.dataTables_scrollHead .dataTables_scrollHeadInner .dataTable thead tr th input {
    font-size: 14px;
    line-height: 15px;
}
.dataTables_scrollBody .dataTable tbody tr td {
    padding-top: 3px;
    padding-bottom: 3px;
}
.dataTables_scrollBody .dataTable tbody tr td button{
    padding: 1.5px 6px;
}
.dataTables_scrollBody .dataTable tbody tr td a{
    padding: 1.5px 6px;
}
/* FIN Estilos de Tablas con menos padding */

/* switch para stock por deposito */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30.6px;
    margin-bottom: 0;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 23px;
    width: 23px;
    left: 5px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(27px);
    -ms-transform: translateX(27px);
    transform: translateX(27px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }