#test .test-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#test .test-container form {
  width: 800px;
}

#test .test-container .card-test {
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.288);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.288);
  margin: 20px 0 20px 0;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#test .test-container .head-test {
  padding: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#test .test-container .head-test h1 {
  font-family: "Jost bold";
  padding-bottom: 5px;
  font-size: 40px;
  line-height: 50px;
  color: #242535;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#test .test-container .head-test p {
  font-family: "Jost bold";
  margin-top: 10px;
  font-size: 20px;
  color: rgba(36, 37, 53, 0.6);
  line-height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#test .test-container .body-test {
  color: #242535;
  border-left: 12px solid #242535;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 10px 20px 10px 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#test .test-container .body-test h1 {
  font-family: "Jost bold";
  margin-bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#test .test-container .body-test label {
  width: 100%;
  display: block;
  font-family: "Jost";
  font-size: 18px;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
  margin: 2px 0 2px 0;
}

#test .test-container .body-test label:hover {
  background-color: #242535bb;
  margin-left: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: white;
}

#test .test-container .submit-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#test .test-container .submit-card .submit {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: none;
  margin-top: 10px;
  margin-bottom: 20px;
  border: solid 1px #242535;
  background-color: white;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.205);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.205);
  color: #242535;
  font-family: "Jost";
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#test .test-container .submit-card .submit:hover {
  background-color: #242535;
  color: white;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#test .test-container .submit-card .submit:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.modal-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #242535c7;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  -webkit-animation: fade 0.5s forwards;
          animation: fade 0.5s forwards;
}

.modal-container .modal {
  background-color: white;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.281);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.281);
  width: 600px;
  margin: 10px;
  -webkit-filter: opacity(0);
          filter: opacity(0);
  -webkit-animation: translate_Y 1s forwards;
          animation: translate_Y 1s forwards;
}

.modal-container .modal .head-modal {
  font-family: "Roboto Condensed";
}

.modal-container .modal hr {
  border: solid 1px rgba(0, 0, 0, 0.164);
}

.modal-end {
  -webkit-animation: modal_end 1s forwards;
          animation: modal_end 1s forwards;
}

@-webkit-keyframes modal_end {
  0% {
    display: -webkit-box;
    display: flex;
    -webkit-filter: opacity(100%);
            filter: opacity(100%);
    z-index: 99999;
  }
  90% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    display: -webkit-box;
    display: flex;
    z-index: 99999;
  }
  95% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    display: -webkit-box;
    display: flex;
    z-index: -99999;
  }
  100% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    display: none;
    z-index: -99999;
  }
}

@keyframes modal_end {
  0% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-filter: opacity(100%);
            filter: opacity(100%);
    z-index: 99999;
  }
  90% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 99999;
  }
  95% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: -99999;
  }
  100% {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    display: none;
    z-index: -99999;
  }
}

@media (max-width: 500px) {
  #test .test-container {
    margin: 0;
    padding: 10px;
  }
  #test .test-container .card-test {
    margin: 0 0 15px 0;
  }
  #test .test-container .head-test h1 {
    font-size: 30px;
    line-height: 35px;
  }
  #test .test-container .head-test p {
    font-size: 15px;
    line-height: 20px;
  }
  #test .test-container .body-test h1 {
    font-size: 20px;
  }
  #test .test-container .body-test label {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  #test .test-container {
    margin: 0;
    padding: 10px;
  }
  #test .test-container .card-test {
    margin: 0 0 15px 0;
  }
  #test .test-container .head-test h1 {
    font-size: 22px;
    line-height: 30px;
  }
  #test .test-container .head-test p {
    font-size: 14px;
    line-height: 20px;
  }
  #test .test-container .body-test h1 {
    font-size: 18px;
  }
  #test .test-container .body-test label {
    font-size: 15px;
  }
  #test .test-container .submit-card .submit {
    font-size: 15px;
  }
}
/*# sourceMappingURL=test.css.map */