

/*  */
/* Form Header */
.form_header_title h1,
.form_header_title h4{
  color: #13235e;
  margin: 20px 10px;
  padding: 10px;
  text-align: center;
  border: 2px solid #0a0a08;
}

/* Logo */
.logo{
  width: 200px
}
@media (max-width: 660px) {
  .logo{
    margin: auto;
  }
}

/* Form number */
@media (min-width: 660px) {
  .form_number_wrapper{
    display: flex;
  }
  .form_number_wrapper .form_number_field{
    margin-right: 5px
  }
}

.form_number_wrapper .form_number_field{
  margin-bottom: 5px;
}

.form_field{
  margin-top: 7px;
}

/* Image upload */
.box {
  display: block;
  min-width: 100%;
  height: 230px;
  margin: 10px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.upload-options {
  position: relative;
  height: 75px;
  background-color: $base-color;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  transition: background-color ease-in-out 150ms;
  &:hover {
    background-color: lighten($base-color, 10%);
  }
  & input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }
  & label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    &::after {
      content: "Add";
      font-family: "Material Icons";
      position: absolute;
      font-size: 2.5rem;
      color: rgba(230, 230, 230, 1);
      top: calc(50% - 2.5rem);
      left: calc(50% - 2.35rem);
      z-index: 0;
      color: rgb(19, 35, 94);
    }
    & span {
      display: inline-block;
      width: 50%;
      height: 100%;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      vertical-align: middle;
      text-align: center;
      &:hover i.material-icons {
        color: lightgray;
      }
    }
  }
}

.js--image-preview {
  height: 155px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url("");
  background-color: white;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  &::after {
    content: "Passport Size";
    font-family: "Material Icons";
    position: relative;
    font-size: 2em;
    color: rgba(230, 230, 230, 1);
    top: calc(50% - 2rem);
    left: calc(50% - 5.7rem);
    z-index: 0;
  }
  &.js--no-default::after {
    display: none;
  }
  &:nth-child(2) {
    background-image: url("http://bastianandre.at/giphy.gif");
  }
}

/* .js--image-preview:: */

i.material-icons {
  transition: color 100ms ease-in-out;
  font-size: 2.25em;
  line-height: 55px;
  color: white;
  display: block;
}

.drop {
  display: block;
  position: absolute;
  background: transparentize($base-color, 0.8);
  border-radius: 100%;
  transform: scale(0);
}

.animate {
  animation: ripple 0.4s linear;
}

@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}


/* form no */
.form_no_filed_wrapper table tbody tr td{
  height: 30px;
  width: 40px
}

/* Personal Information */
.personal_info table tbody tr td{
  height: 30px;
  width: 40px
  text-align:left;
}
