.field-error, .field-error ~ .nice-select { border: 2px solid red !important; }

.has-error .chosen-single{border: 2px solid red !important; }
.form-group .has-error{ border: 2px solid red !important; }
.submitloader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 30px;
    height: 30px;
    display: inline-block;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .alert-success {
      background: #58af87 !important;
      color: #fff !important;
  }