.bg-gradient-primary {
    /* background-image: linear-gradient(195deg, #EC407A 0%, #D81B60 100%);  */
    background-image: linear-gradient(195deg, #4b65dc 0%, #ed4264 100%); 
}
.has-error{
    color: red;
    margin-bottom: 10px;
}
.cls-checkbox-label{
    padding-right: 10px;
}
.cls-capitalize {
    text-transform: capitalize;
}
.cls-show-role{
    font-weight: 600;
}

/*Multistep form*/
.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: rgba(255,255,255,.4);
    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;
  }
  .bg-gradient-primary .multisteps-form__progress-btn:before {
    background-color: #cfbbd3 ;
}
  .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: #fff;
  }
  .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);
  }

  .navbar-vertical.navbar-expand-xs .navbar-collapse {   
    height: calc(100vh - 150px) !important;
}

.drop-container {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding: 20px;
  border-radius: 10px;
  border: 2px dashed #555;
  color: #444;
  cursor: pointer;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container:hover {
  background: #eee;
  border-color: #111;
}

.drop-container:hover .drop-title {
  color: #222;
}

.drop-title {
  color: #444;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: color .2s ease-in-out;
}

input[type=file] {
  width: 350px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #555;
}

input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  background: #084cdf;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
  background: #0d45a5;
}

#content-error{
  color: red;
  width: 50%;
}

.cls-word-wrap{
  word-break: break-word;
  white-space: pre-wrap;
}

.dataTable-wrapper .dataTable-container .table tbody tr td {
  padding: 0.75rem 0.5rem;
}
.cls-material-form{
  margin: 0 25px;
}

.cls-material-form .choices .choices__inner{
  border: 1px solid #dee2e6;
  border-width: 2px;   
}

.cls-material-form .choices .choices__input, .choices__list--single{
  background-image: none !important;
  background-size: 0;
  padding: 0 10px;
}
.cls-material-form .cls-multiple-options .choices .choices__inner{
  padding: 10px 10px; 
}

.cls-material-form .multisteps-form__panel .multisteps-form__content .btn i {
  font-size: 1rem;
}
.cls-phase-profile .choices .choices__list{
  padding: 0 10px;
}

.cls-material-form .choices .choices__list.choices__list--dropdown{
  height: 200px;
  overflow: auto;
  z-index: 999;
}