* {
    box-sizing: border-box;
  }
  
  button {
    font-family: "Open Sans", sans-serif;
    outline: none;
    box-shadow: none;
    border-width: 0px;
    border-style: outset;
    font-size: 0.8em;
    border-color: buttonface;
  }
  
  body {
    padding: 5em 3em;
  }
  
  .center {
    text-align: center;
  }
  
  .button {
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    text-align: center;
    padding: 1em 0px;
    width: 250px;
    background: #0b5cff;
    outline: none;
    color: #fff;
  }
  
  .modal-wrapper {
    width: 750px;
    background: #fff;
    margin: 0 auto;
    transform-origin: top left;
    border-radius: 15px 15px 0px 0px;
  }
  
  .modal-header {
    padding: 1em 0.5em;
    /* background: #fff;
    border: 1px solid #eee; */
    text-align: center;
  }
  .modal-header span {
    width: 50px;
    background: #eee;
    border-radius: 0.5em;
    margin: 0px 2px;
    display: inline-block;
    height: 15px;
  }
  .modal-header span.is-active {
    background: #0b5cff;
  }
  
  .modal-bodies {
    position: relative;
    perspective: 1000px;
  }
  
  .modal-body {
    background: #fff;
    display: none;
    box-shadow: 0px 35px 30px -30px;
    transform-origin: top left;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: auto;
    padding: 30px 20px;

    border-radius:0px 0px 15px 15px ;
  }
  .modal-body p {
    font-size: 0.85em;
    padding: 0px 0px 8px 0px;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
  }
  .modal-body label span {
    font-size: 0.8em;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    display: block;
    margin: 0px 0px 8px 0px;
  }
  /* .modal-body input, .modal-body select {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    padding: 0.8em;
    margin-bottom: 2em;
    transition: all 300ms ease-in-out;
  } */
  .modal-body input:focus, .modal-body select:focus {
    outline: none;
    border: 1px solid #0b5cff;
  }
  
  .is-showing {
    display: block;
  }
  
  .animate-out {
    transition: all 300ms ease-in-out;
    animation: out 600ms ease-in-out forwards;
  }
  
  .animate-in {
    transition: all 300ms ease-in-out;
    animation: in 600ms ease-in-out forwards;
    display: block;
  }
  
  .animate-up {
    transition: all 300ms ease-in-out;
    animation: up 600ms ease-in-out forwards;
  }
  
  @keyframes out {
    0% {
      transform: translateY(0px) translateX(0px);
    }
    33% {
      transform: translateY(200px);
    }
    100% {
      transform: rotate(0deg) translateX(-800px);
    }
  }
  @keyframes in {
    0% {
      opacity: 0;
      transform: rotateX(-90deg);
    }
    100% {
      opacity: 1;
      transform: rotateX(0deg);
    }
  }
  @keyframes up {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-800px);
    }
  }

  .register-tt {
    font-size: 28px;
    font-weight: 600;
    color: #0b5cff;
    text-decoration: underline;
    padding: 20px 0px 0px 0px;
}

.Answer-tt{
 padding: 10px ;
}
.form-check-input { padding: 0px !important;}

/* .form-check {
  display: flex;
  min-height: 1.5rem;
  margin-bottom: .125rem;
  background: #fbfbfb;
  padding: 10px 20px;
} */

/* .form-check .form-check-input {
  float: none;
  margin-left: 13px;
  margin-top: 5px;
} */


.modal-wrapper {
  /* margin-top: 50px !important; */
  border-top: 5px solid #0b5cff;
}

.modal-body{
  border-bottom: 5px solid #0b5cff;
}

.form-check {
  background: #fbfbfb;
  border-left: 5px solid #0b5cff;
  padding: 10px 20px;
  display: flex;
}
.form-check .form-check-input {
  float: left;
  margin-left: 0px;
  margin-top: 2px;
  margin-right: 15px;
}

.form-check:hover{
   background-color: #eaf0f1;
   transition: 0.3s;
   
}
.form-check:hover .form-check-label{
 color: #000;
}

/* .form-check:hover .form-check-input:checked {
  background-color: #fff;
  border-color: #a12424;

} */

.form-check-label {
   font-size: 16px;
   font-weight: 600;
}

.foll-tt {
   color: #000;
}

@media (max-width:991px){
  .modal-wrapper {
    width: 100%;
    background: #fff;
    margin: 0 auto;
    transform-origin: top left;
    border-radius: 15px 15px 0px 0px;
    /* padding: 0px 15px; */
}
body{
  padding:50px 15px;
}
}
@media (max-width:480px){
.modal-header span {
  width: 25px;
  background: #eee;
  border-radius: 0.5em;
  margin: 0px 2px;
  display: inline-block;
  height: 10px;
} 

.register-tt {
  font-size: 20px;
}

.foll-tt {
  color: #000;
  font-size: 16px;
}

.Answer-tt{
  font-size: 14px;
}
.form-check-label {
  font-size: 14px;
}

}