/*=====================
   2.6 Form CSS start
==========================*/
.form-control, .form-select {
  background-color: #ffffff;
  color: #222222; }
  .form-control:focus, .form-select:focus {
    background-color: #ffffff;
    border-color: #ced4da;
    color: #222222; }

.form-floating > .form-control {
  height: 42px; }

.radio_animated {
  position: relative;
  margin: 2px 1rem 0 1px;
  cursor: pointer; }
  [dir="rtl"] .radio_animated {
    margin: 2px 1px 0 1rem; }
  .radio_animated:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    content: "";
    position: absolute;
    top: 4px;
    left: 3px;
    z-index: 1;
    width: 0.55rem;
    height: 0.55rem;
    background: #FF4C3B;
    border-radius: 50%; }
    [dir="rtl"] .radio_animated:before {
      left: unset;
      right: 3px; }
  .radio_animated:after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 1.05rem;
    height: 1.05rem;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 50%; }
    [dir="rtl"] .radio_animated:after {
      left: unset;
      right: -1px; }
  .radio_animated:checked:before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); }
  .radio_animated:checked:after {
    border: 1px solid #FF4C3B; }

.checkbox_animated {
  padding-left: 0; }
  [dir="rtl"] .checkbox_animated {
    padding-right: 0; }
  .checkbox_animated input[type="checkbox"] {
    display: none; }
    .checkbox_animated input[type="checkbox"] + label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #777777;
      cursor: pointer; }
      .checkbox_animated input[type="checkbox"] + label:before {
        content: "\2714";
        border: 1px solid #c2c2c2;
        border-radius: 3px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 16px;
        height: 16px;
        padding-left: 0;
        padding-bottom: 0;
        margin-right: 10px;
        vertical-align: bottom;
        color: transparent;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        line-height: 1; }
        [dir="rtl"] .checkbox_animated input[type="checkbox"] + label:before {
          padding-right: 0;
          margin-right: 0;
          margin-left: 10px; }
      .checkbox_animated input[type="checkbox"] + label:active:before {
        -webkit-transform: scale(0);
                transform: scale(0); }
    .checkbox_animated input[type="checkbox"]:checked + label:before {
      background-color: #FF4C3B;
      border-color: #FF4C3B;
      color: #fff; }
    .checkbox_animated input[type="checkbox"]:checked:disabled _ label:before {
      -webkit-transform: scale(1);
              transform: scale(1);
      background-color: rgba(255, 76, 59, 0.2);
      border-color: rgba(255, 76, 59, 0.2); }
    .checkbox_animated input[type="checkbox"]:disabled _ label:before {
      -webkit-transform: scale(1);
              transform: scale(1);
      border-color: #aaa; }

.form-theme {
  background-color: rgba(237, 239, 244, 0.45);
  border: none;
  font-size: 12px;
  color: #777777; }
  .form-theme:focus {
    background-color: rgba(237, 239, 244, 0.45); }
  .form-theme::-webkit-input-placeholder {
    color: rgba(119, 119, 119, 0.9); }
  .form-theme::-moz-placeholder {
    color: rgba(119, 119, 119, 0.9); }
  .form-theme:-ms-input-placeholder {
    color: rgba(119, 119, 119, 0.9); }
  .form-theme::-ms-input-placeholder {
    color: rgba(119, 119, 119, 0.9); }
  .form-theme::placeholder {
    color: rgba(119, 119, 119, 0.9); }

.form-floating > label {
  padding: 2px 5px;
  background-color: #ffffff;
  height: auto;
  left: 16px;
  top: -15px;
  color: #777777;
  text-transform: capitalize; }

.form-floating > .form-select,
.form-floating > .form-control {
  padding: 5px 15px !important;
  height: 42px; }

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 1;
  transform: none; }

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 1;
  transform: none; }

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 1;
  -webkit-transform: none;
          transform: none; }

.form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #ced4da; }