
:focus {
    outline: none;
  }
  input[type="text"] {
    color: #333;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
  }
  .input-effect {
    float: left;
    position: relative;
    width: 100%;
    min-height: 80px;
  }
.effect {
  border: 0;
  padding: 4px 0;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
}
.effect ~ .focus-border {
    position: absolute;
    bottom: 51px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #4caf50;
    transition: 0.4s;
  }
  .effect:focus ~ .focus-border,
  .has-val.effect ~ .focus-border {
    width: 100%;
    transition: 0.4s;
    left: 0;
  }
  .effect ~ label {
    position: absolute;
    left: 0;
    width: 100%;
    top: 9px;
    color: #000;
    transition: 0.3s;
    z-index: -1;
    letter-spacing: 0.5px;
    font-weight: normal;
  }
  .effect:focus ~ label,
  .has-val.effect ~ label {
    top: -16px;
    font-size: 12px;
    color: #4caf50;
    transition: 0.3s;
  }
  /*Select Start*/
  .select {
    position: relative;
    width: 100%;
    min-height: 80px;
  }
  
  .select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 4px 10px 4px 4px;
    font-size: 15px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
  }
  
  /* Remove focus */
  .select-text:focus {
    outline: none;
    border-bottom: 1px solid rgba(0,0,0, 0);
  }
  
    /* Use custom arrow */
  .select .select-text {
    appearance: none;
    -webkit-appearance:none
  }
  
  .select:after {
    position: absolute;
    top: 10px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
  }
  
  
  /* LABEL ======================================= */
  .select-label {
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 6px;
    transition: 0.2s ease all;
    margin-bottom: 0px;
  }
  
  /* active state */
  .select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
    color: #4caf50;
    top: -16px;
    transition: 0.2s ease all;
    font-size: 14px;
  }
  
  /* BOTTOM BARS ================================= */
  .select-bar {
    position: relative;
    display: block;
    width: 100%;
  }
  
  .select-bar:before, .select-bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #4caf50;
    transition: 0.2s ease all;
  }
  
  .select-bar:before {
    left: 50%;
  }
  
  .select-bar:after {
    right: 50%;
  }
  
  /* active state */
  .select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after {
    width: 50%;
  }
  
  /* HIGHLIGHTER ================================== */
  .select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
  }
  /*Select End*/
  /*Textarea Start*/
  .form__group {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
    margin-bottom: 40px;
  }
  
  .form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    outline: 0;
    font-size: 16px;
    color: #212121;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
    resize: none;
    overflow-y: auto;
  }
  
  .form__field::placeholder {
    color: transparent;
  }
  
  .form__field:placeholder-shown ~ .form__label {
    font-size: 13px;
    cursor: text;
    top: 20px;
    font-weight: normal;
  }
  
  .form__group label,
  .form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: #000;
  }
  
  .form__field:focus ~ .form__label {
    color: #4caf50;
  }
  
  .form__field:focus {
    padding-bottom: 6px;
    border-bottom: 1.5px solid #4caf50;
  }
  /*Textarea End*/
  /*Checkbox & Radio Start*/
  .checkbox .form-help, .form-radio .form-help, .form-group .form-help {
    position: absolute;
    width: 100%;
  }
  .checkbox .form-help {
    position: relative;
    margin-bottom: 1rem;
  }
  .form-radio .form-help {
    padding-top: 0.25rem;
    margin-top: -1rem;
  }
  .checkbox label,
.form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 2rem;
  text-align: left;
  color: #333;
  display: block;
}
.checkbox input,
.form-radio input {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
}

.radio {
  margin-bottom: 1rem;
}
.radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #999;
}
.radio .helper::before, .radio .helper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1.5rem;
    height: 1.5rem;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
}
.radio .helper::after {
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: #337ab7;
  border-color: #337ab7;
}
.radio label:hover .helper {
  color: #337ab7;
}
.radio input:checked ~ .helper::after {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
.radio input:checked ~ .helper::before {
  color: #337ab7;
}

.checkbox {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.checkbox .helper {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  -webkit-transition: border-color 0.28s ease;
  transition: border-color 0.28s ease;
}
.checkbox .helper::before, .checkbox .helper::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #337ab7;
  display: block;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  border-radius: 0.25rem;
  content: '';
  -webkit-transition: opacity 0.28s ease, height 0s linear 0.28s;
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
}
.checkbox .helper::before {
  top: 0.85rem;
  left: 0.75rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  box-shadow: 0 0 0 0.0625rem #fff;
}
.checkbox .helper::after {
  top: 0.45rem;
    left: 0.3rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.checkbox label:hover .helper {
  color: #337ab7;
}
.checkbox input:checked ~ .helper {
  color: #337ab7;
}
.checkbox input:checked ~ .helper::after, .checkbox input:checked ~ .helper::before {
  opacity: 1;
  -webkit-transition: height 0.28s ease;
  transition: height 0.28s ease;
}
.checkbox input:checked ~ .helper::after {
  height: 0.5rem;
}
.checkbox input:checked ~ .helper::before {
  height: 1.5rem;
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: 1rem;
}

  /*Checkbox & Radio End*/
  /* Ripple effect */
.ripple {
  border: none;
  border-radius: 2px;
  padding: 6px 18px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  color: white;
  background-color: #2196f3;
  box-shadow: 0 0 4px #999;
  outline: none;
  background-position: center;
  transition: background 0.8s;
  min-width: 100px;
  margin:15px 15px;
  }
  .ripple:hover {
    background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
  }
  .ripple:active {
    background-color: #6eb9f7;
    background-size: 100%;
    transition: background 0s;
  }
  .cancel {
    background-color: #ff3500;
  }
  .cancel:hover {
    background: #fc5f36 radial-gradient(circle, transparent 1%, #fc5f36 1%) center/15000%;
  }
  .cancel:active {
    background-color: #f87f5f;
    background-size: 100%;
    transition: background 0s;
  }
   .upload_btn {
    background-color: #ffb700;
  }
  .upload_btn:hover {
    background: #ffc533 radial-gradient(circle, transparent 1%, #ffc533 1%) center/15000%;
  }
  .upload_btn:active {
    background-color: #ffe9b2;
    background-size: 100%;
    transition: background 0s;
  }
  /*Image Upload Start*/
  .avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 15px auto;
  }
  .avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
  }
  .avatar-upload .avatar-edit input {
    display: none;
  }
  .avatar-upload .avatar-edit input + label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
  }
  .avatar-upload .avatar-edit input + label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
  }
  .avatar-upload .avatar-edit input + label:after {
    content: "\f030";
    font-family: 'Font Awesome 5 Free';
    color: #757575;
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    text-align: center;
    font-style: normal;
    font-weight: 900;
    margin: auto;
  }
  .avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  }
  .avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
/*Image Upload End*/
  
  /*Multi select Start*/
  
        .multi_select {
          width:100%;
          border-bottom:1px solid #ccc;
        }
        .multi_select.open .dropdown-toggle {
          box-shadow: none;
        }
        .multi_select .btn {
          box-shadow: none;
          background: transparent;
          border-radius: 0px; 
          width: 100%;
          text-align: left;
          padding:3px;
        }
        .multi_select:after {
          position: absolute;
          top: 12px;
          right: 10px;
          width: 0;
          height: 0;
          padding: 0;
          content: '';
          border-left: 6px solid transparent;
          border-right: 6px solid transparent;
          border-top: 6px solid rgba(0, 0, 0, 0.12);
          pointer-events: none;
        }
        .multi_focus {
          position: absolute;
          bottom: -2px;
          left: 50%;
          width: 0;
          height: 2px;
          background-color: #4caf50;
          transition: 0.4s;
        }
        .multi_select .btn:focus ~ .multi_focus {
          width: 100%;
          transition: 0.4s;
          left: 0;
        }
        .multi_select .dropdown-menu {
          width: 100%;
        }
         /*Multi select End*/
       