  .mr_box{
    background-color: #fff;
    padding: 10px 14px 20px;
    margin-top: 10px;
  }
  .mr_box h2{
    color: #FFF;
  }
  .mr_inner {
    margin: 17px;
    text-align: left;
  }
  .mr_inner p span{
    color: red;
  }
  .mr_input {
    text-align: left;
  }

  .mr_input .mandatory {
    color: red;
    font-size: 13px;
  }

  .mr_input dl {
    padding: 10px;
  }

  .mr_input dt {
    padding: 10px 0 2px;
  }

  .mr_input dd {
    line-height: 2.2;
  }
  .mr_input dt span{
    font-size: 10px;
  }
  input[type="text"],[type="email"],[type="number"]{
    width: 100%;
    height: 40px;
  }
  textarea{
    width: 100%;
  }
  input,textarea{
    padding: 0.5em 0.7em;
  }
  input[type="submit"]{
    width: 100%;
    background: #d76492;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 46px;
  }
  input[type="radio"],[type="checkbox"]{
    margin: 0 0px 3px;
    width: 17px;
    height: 17px;
    accent-color: #E83434;
  }
  label{
    margin-right: 27px;
  }
  #check_check{
    width: 0px;
  }
  ::placeholder{
    color: #ababab;
  }
  #gform input {
    appearance: auto;
  }

  @media screen and (max-width: 768px) {
    #gform input,#gform textarea{
      font-size:16px;
    }
  }


  @media screen and (min-width: 750px) {
    .mr_box{
      margin: 10px 20px;
      padding: 10px 27px 20px;
    }
    .mr_input dt span{
      font-size: 13px;
    }
  }

/* preload css */

.spinner {
  display: none;
  /* margin: 100px auto; */
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #333;
  height: 10%;
  width: 6px;
  display: inline-block;
  margin-top: 45vh;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

