.registration {
  display: flex;
  margin: 20px auto 0;
  width: 1300px;
  max-width: 100%;
  padding: 10px;
}
.registration .box {
  width: 60%;
  display: flex;
}
.registration .box img {
  width: 100%;
}
.registration .box:last-of-type {
  width: 40%;
  padding: 0 0 0 30px;
}
.registration .box:last-of-type form {
  background: #fff;
  width: 100%;
  padding: 25px 15px 15px;
}
.registration .box:last-of-type form h2 {
  text-align: center;
}
.registration .box:last-of-type form .row, .registration .box:last-of-type form p.data, .registration .box:last-of-type form .reg_information {
  padding: 15px 0 0;
}
.registration .box:last-of-type form .reg_information p {
  font-size: 14px;
}
.registration .box:last-of-type form .row {
  display: flex;
  flex-direction: column;
}
.registration .box:last-of-type form .row label {
  padding: 0 0 4px;
}
.registration .box:last-of-type form .row label span {
  color: red;
}
.registration .box:last-of-type form .row input {
  outline: none;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid #666;
}
.registration .box:last-of-type form .row .canvasHolder {
  border-radius: 4px;
  width: 100%;
  height: 100px;
  border: 1px solid #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.registration .box:last-of-type form .row .canvasHolder p {
  color: #888;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.4s ease;
}
.registration .box:last-of-type form .row .canvasHolder:hover p {
  color: #222;
}
.registration .box:last-of-type form .row .canvasHolder img {
  display: none;
}
.registration .box:last-of-type form .row .canvasHolder.filled p {
  display: none;
}
.registration .box:last-of-type form .row .canvasHolder.filled img {
  display: block;
}
.registration .box:last-of-type form .row.radio .option {
  padding: 5px 0 0;
}
.registration .box:last-of-type form .row.radio .option input {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 0 5px 0 0;
}
.registration .box:last-of-type form .row.double_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.registration .box:last-of-type form .row.double_row .option {
  width: 48%;
}
.registration .box:last-of-type form .row.double_row .option input {
  width: 100%;
  margin: 5px 0 0;
}
.registration .box:last-of-type form .row select {
  outline: none;
  -webkit-appearance: none;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid #666;
  background: #fff;
}
.registration .box:last-of-type form .row.row_events .option {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 5px 0 0;
}
.registration .box:last-of-type form .row.row_events .option input {
  margin: 0 5px 0 0;
}
.registration .box:last-of-type form .row textarea {
  width: 100%;
  height: 75px;
  resize: none;
  outline: none;
  padding: 5px;
}
.registration .box:last-of-type form .row.row_terms p {
  font-size: 14px;
}
.registration .box:last-of-type form a.termsBtn {
  text-decoration: none;
  color: #c3265a;
  font-weight: bold;
  cursor: pointer;
}
.registration .box:last-of-type form a.termsBtn:hover {
  color: #a82652;
}
.registration .box:last-of-type form button {
  background: #45a1fc;
  color: #fff;
  padding: 10px 16px;
  margin: 10px 0 0;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.registration .box:last-of-type form button.disabled {
  background: #64b0fc;
  opacity: 0.7;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.registration .box:last-of-type form button ~ span#termsDisc {
  display: block;
  padding: 10px 0 0 0;
  font-size: 12px;
}
.registration .box:last-of-type .map {
  width: 100%;
}

.boxes {
  display: flex;
  margin: 20px auto 0;
  width: 980px;
  max-width: 100%;
  padding: 10px;
  justify-content: space-between;
}
.boxes .box {
  width: 49%;
  border: 2px solid #000;
  padding: 20px 20px 80px;
  position: relative;
  z-index: 1;
}
.boxes .box h2 {
  font-size: 28px;
  text-align: center;
  padding: 0 0 20px;
}
.boxes .box ul {
  padding: 0 0 0 5px;
}
.boxes .box ul li {
  font-size: 18px;
  font-weight: bold;
  padding: 5px 0 0;
}
.boxes .box a {
  display: block;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 10px 16px;
  background: #000;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  font-weight: bold;
}

.signHolder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.signHolder canvas {
  margin: 15px 0;
  border: 1px solid #aaa;
  background-color: #fff;
}
.signHolder button {
  padding: 10px 25px;
  background: #000;
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.signHolder button:last-of-type {
  background: #64b0fc;
}

@media screen and (max-width: 800px) {
  .registration {
    flex-direction: column;
  }
  .registration .box {
    width: 100%;
  }
  .registration .box:last-of-type {
    width: 100%;
    padding: 0;
    margin: 10px 0 0;
  }
  .registration .box:last-of-type .map {
    margin: 10px 0 0;
  }
  .boxes {
    flex-direction: column;
  }
  .boxes .box {
    width: 100%;
  }
  .boxes .box:last-of-type {
    margin: 10px 0 0;
  }
}
.terms_conditions {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow: auto;
  padding: 30px 20px;
  background: #fff;
  border: 2px solid #000;
  font-size: 14px;
}
.terms_conditions .btns {
  padding: 30px 0 0;
}
.terms_conditions button {
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}
.terms_conditions button:first-of-type {
  background: #000;
  margin: 0 10px 0 0;
}
.terms_conditions button:last-of-type {
  background: #45a1fc;
}
.terms_conditions button:hover {
  opacity: 0.8;
}


.check_ts{
    margin:20px 0;
}

.check_ts {
    display:flex;
}

.check_ts input{
    cursor:pointer;
    margin-right:10px;
}

.check_ts label{
    -webkit-user-select: none;
    -ms-user-select: none; 
    user-select: none;
    font-size:14px;
}

.check_ts label a{
    cursor:pointer;
    color:#c3265a;
    font-weight:600;
}



@media screen and (max-width: 960px) {
  .terms_conditions {
    max-height: 60vh;
  }
}/*# sourceMappingURL=registration.css.map */