.btn-none{
    border: none;
    background: none;
}

.dataTable-info{
    color: #8392ab;
    font-size: .875rem;
    float: left;
}

.dataTable-bottom{
    padding: 1.5rem;
}

.badge-danger {
    color: #bd0000;
    background-color: #fc9797;
}

.badge-success {
    color: #67b108;
    background-color: #cdf59b;
}

.badge-secondary {
    color: #5974a2;
    background-color: #e4e8ed;
}

.badge-info {
    color: #08a1c4;
    background-color: #abe9f7;
}

.badge-warning {
    color: #fbc400;
    background-color: #fef5d3;
}

.badge-light {
    color: #c7d3de;
    background-color: #fff;
}

.badge-dark {
    color: #1e2e4a;
    background-color: #8097bf;
}

.badge-sm {
    padding: 0.45em 0.775em;
    font-size: .65em;
    border-radius: 0.25rem;
}

.choices {
    position: relative;
    margin-bottom: 24px;
    font-size: 16px;
}

.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px;
}

.choices__inner {
    display: flex;
    align-items: center;
    vertical-align: top;
    width: 100%;
    padding: 0px;
    border: 1px solid #d2d6da;
    border-radius: 0.5rem;
    font-size: 14px;
    min-height: 40px;
    overflow: hidden;
    background: none;
}

.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 0.5rem;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #3a416f;
    border: 1px solid #3a416f;
    color: #fff;
    word-break: break-all;
    box-sizing: border-box;
}

.choices {
    margin-bottom: 0!important;
}

.choices__list--multiple .choices__item[data-deletable] {
    padding-right: 5px;
}

.is-focused .choices__inner , .is-open .choices__inner{
    box-shadow: 0 0 0 2px #e9aede;
    border-color: #e293d3;
}

.choices__list--dropdown{
    visibility:hidden;
    z-index:1;
    position:absolute;
    width:100%;
    background-color:#fff;
    border:1px solid #ddd;
    top:100%;
    margin-top:-1px;
    border-bottom-left-radius:2.5px;
    border-bottom-right-radius:2.5px;
    word-break:break-all;
    will-change:visibility
}

.bg-none{
    background: none !important;
}

.nav.nav-pills .nav-link.active {
    color: #344767;
}

.nav.nav-pills .nav-link{
    color: #fff;
}

.multisteps-form__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
  .multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    color: #dee2e6;
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
  }
  @media (min-width: 500px) {
    .multisteps-form__progress-btn {
      text-indent: 0;
    }
  }
  .multisteps-form__progress-btn:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 13px;
    height: 13px;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.15s linear 0s,
      -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s,
      transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s,
      transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s,
      -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    border: 2px solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3;
  }
  .multisteps-form__progress-btn:after {
    position: absolute;
    top: 5px;
    left: calc(-50% - 13px / 2);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-color: currentColor;
    z-index: 1;
  }
  .multisteps-form__progress-btn:first-child:after {
    display: none;
  }
  .multisteps-form__progress-btn.js-active {
    color: #98ec2d;
  }
  .multisteps-form__progress-btn.js-active span {
    color: #81c529;
  }
  .multisteps-form__progress-btn.js-active:before {
    -webkit-transform: translateX(-50%) scale(1.2);
    transform: translateX(-50%) scale(1.2);
    background-color: currentColor;
  }
  .multisteps-form__form {
    position: relative;
  }
  .multisteps-form__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
  .multisteps-form__panel.js-active {
    height: auto;
    opacity: 1;
    visibility: visible;
  }
  .multisteps-form__panel[data-animation="scaleIn"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  .multisteps-form__panel[data-animation="scaleIn"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .table-bordered>:not(caption)>*{
    border-width: 1px;
  }

  .table-bordered tbody tr:last-child td{
    border-width: 1px;
  }

  [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled)

  .multisteps-form__progress-btn{
    cursor: auto;
  }

  .table-datos{
    table-layout: fixed;
  }

  .overflow-clip{
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card .overlay.dark{
    background-color: rgba(0,0,0,.5);
  }

  .card .overlay{
    border-radius: 0.25rem;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255,255,255,.7);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 50;
  }

  .card>.overlay{
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .overflow-visible{
    white-space: initial;
    max-width: 200px;
  }

  .text-right {
    text-align: right !important;
  }
  