.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    background-color: #435ebe;
    z-index: 999;
}

.loading-page .loading-content {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader > div {
    animation: is-rotating 1s infinite;
    animation-duration: 1.2s;
    animation-delay: 0;
    border: 4px solid #e5e5e5;
    border-radius: 50%;
    border-top-color: blue;
    height: 35px;
    width: 35px;
}

@keyframes is-rotating {
    to {
        transform: rotate(2turn);
    }
}

/**
 * LOADING SWEETALERT2
 */
.swal2-loading {
    padding-bottom: 20px !important;
}

*:focus, *:active {
    outline: 0 !important; 
}

.sweet-alert button.confirm {
    outline: none !important; 
}


.table-responsive {
    min-height: 500px;
}

.table-responsive .table {
    width: 99%;
}

.custom-file-input {
    color: transparent;
}

  .custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}
.custom-file-input::before {
    content: 'Select some files';
    color: black;
    display: inline-block;
    background: #435EBE;
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
  }
  .custom-file-input:hover::before {
    border-color: black;
  }
  .custom-file-input:active {
    outline: 0;
  }
  .custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9); 
  }

.boder-dashed {
    border-style: dashed !important;
}

/* PULSE JEFFERSON */

.pulse {
    animation: pulse 0.4s infinite;
    margin: 0 auto;
    display: table;
    margin-top: 50px;
    animation-direction: alternate;
    -webkit-animation-name: pulse;
    animation-name: pulse;
  }
  
  @-webkit-keyframes pulse {
    0% {
      -webkit-transform: scale(1);
      /* -webkit-filter: brightness(100%); */
    }
    100% {
      -webkit-transform: scale(1.008);
      /* -webkit-filter: brightness(200%); */
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      /* filter: brightness(100%); */
    }
    100% {
      transform: scale(1.008);
      /* filter: brightness(200%); */
    }
  }




  .btn-sm-s {
    width: 160px!important;
    --bs-btn-padding-y: 0.35rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.2rem;    
  }

  .btn-sm-m {
    width: 180px!important;
    --bs-btn-padding-y: 0.35rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.2rem;
  }

  .btn-sm-l {
    width: 200px!important;
    --bs-btn-padding-y: 0.35rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.2rem;
  }

body.theme-dark .btn-group-lg>.btn, body.theme-dark .btn-sm-s {
    width: 160px!important;
    --bs-btn-padding-y: 0.35rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.2rem;
}

body.theme-dark .btn-group-lg>.btn, body.theme-dark .btn-sm-m {
    width: 180px!important;
    --bs-btn-padding-y: 0.35rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.2rem;
}

body.theme-dark .btn-group-lg>.btn, body.theme-dark .btn-sm-l {
    width: 200px!important;
    --bs-btn-padding-y: 0.35rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.2rem;
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: var(--bs-border-width);
    min-height: 1em;
    background-color: currentcolor;
    opacity: .25;
}

.hover-icon {
  /* position: relative; */
  /* display: inline-block; */
  align-items: center !important;
  justify-content: space-between !important;
  display: flex !important;
}

.hover-icon .icon {
  /* position: absolute; */
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  padding: 7px!important;
  opacity: 0;
  transition: opacity 0.3s;
}

.hover-icon:hover .icon {  
  padding: 7px!important;
  opacity: 1;
}

.swal2-styled {
  border: 0;
  
  /* border-radius: .25em!important; */
  /* background: initial;
  background-color: initial;
  background-image: initial;
  background-color: #7066e0;
  color: #fff; */

  font-size: 1em;
  min-width: 150px;
  -webkit-border-radius: 25rem;
  border-radius: 25rem;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  min-width: 150px!important;
  /* margin: 0 1rem 17px; */
}