form.form .form-control {
    padding: 5px;
    border-radius: 0;
  }

  form.form .form-lbl {
    position: relative;
    margin: 0 0 3px 0;
    color: #666 !important;
    text-transform: capitalize;
    font-size: 0.75rem;
    font-weight: 600;
    width: 100%;
  }

  form.form fieldset.form-group {
    margin-bottom: 0;
  }

  form.form .remove_file_space {
    padding: 7px 0 !important;
    border: transparent;
    background: transparent;
  }

  form.form .select2-container--default .select2-selection--single .select2-selection__rendered,
  form.form .select2-container--default .select2-selection--single .select2-selection__arrow,
  form.form .select2-container .select2-selection--single {
    height: calc(2.25rem + 2px);
    line-height: calc(2.25rem + 2px);
  }

  form.form .select2-container .select2-selection--multiple {
    min-height: calc(2.25rem + 2px);
  }

  form.form .select2-container--default.select2-container--focus .select2-selection--multiple {
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
  }

  form.form .select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
  }

  form.form .select2 img {
    width: 20px;
    position: relative;
    top: -2px;
    margin-right: 5px;
  }

  .password_eye {
    position: relative;
  }

  .icon-view {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #202020;
    font-size: 12px
  }

  .radioeffect {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
  }

  /*radio button stype*/
  [type="radio"]:checked,
  [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
  }

  [type="radio"]:checked+label,
  [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    display: inline-block;
  }

  [type="radio"]:checked+label:before,
  [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 1px;
    top: 4px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
  }

  [type="radio"]:checked+label:after,
  [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: currentColor;
    position: absolute;
    top: 7px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }


  /*Checkboxe style*/
  input[type="checkbox"] {
    display: none;
  }

  input[type="checkbox"]+label {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

  input[type="checkbox"]+label:last-child {
    margin-bottom: 0;
  }

  input[type="checkbox"]+label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #797979;
    position: absolute;
    left: 0;
    top: 2px;
    opacity: 1;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
  }

  input[type="checkbox"]:checked+label:before {
    width: 10px;
    top: 0;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .date-icon,
  .time-icon {
    position: relative;
  }

  .date-icon i,
  .time-icon i {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }

  .custom-file-uploader {
    position: relative;
  }

  .custom-file-uploader input[type=file] {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: default;
  }