/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 28 2026 | 19:41:21 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Registration Form  */
#ctm-registration-form {
  margin-top: 60px;
}
#ctm-registration-form .registration-form .form-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
#ctm-registration-form .registration-form .left-wrapper{
  display: flex;
  flex-direction: column;
}
#ctm-registration-form .registration-form .left-wrapper,
#ctm-registration-form .registration-form .right-wrapper {
  flex: 1;
}
#ctm-registration-form .left-wrapper .registrationType .radio input,#ctm-registration-form .right-wrapper .payment .radio input{
  display: none;
}
#ctm-registration-form .left-wrapper .registrationType .radio .label,#ctm-registration-form .right-wrapper .payment .radio .label{
  padding-inline-start: 30px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
#ctm-registration-form .left-wrapper .registrationType .radio .label::before,#ctm-registration-form .right-wrapper .payment .radio .label::before{
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 999px;
  border: 1px solid #31373D;
  position: absolute;
  top: 0;
  left: 0;
}
#ctm-registration-form .left-wrapper .registrationType .radio .label::after,#ctm-registration-form .right-wrapper .payment .radio .label::after{
  content: "";
  height: 14px;
  width: 14px;
  border-radius: 999px;
  background: #31373D;
  position: absolute;
  top: 4px;
  left: 4px;
  opacity: 0;
}
#ctm-registration-form .left-wrapper .registrationType{
  border-bottom: 2px dashed #787878;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
#ctm-registration-form .left-wrapper .registrationType .radio input:checked ~ .label::after,#ctm-registration-form .right-wrapper .payment .radio input:checked ~ .label::after{
  opacity: 1;
}
#ctm-registration-form .left-wrapper .registrationSummary table{
  width: 100%;
  /* border-collapse: collapse; */
}
#ctm-registration-form .left-wrapper .registrationSummary table tbody th{
  color: #31373d;
  font-size: 20px;
}
#ctm-registration-form .left-wrapper .registrationSummary table .summary-row input{
  padding: 10px 15px;
  text-align: center;
  border: 1px solid #31373d;
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
  outline: 0;
}
#ctm-registration-form .left-wrapper .registrationSummary table .summary-row #unitPrice{
  color: #31373d;
  font-size: 20px;
  font-weight: 500;
}
#ctm-registration-form .left-wrapper .registrationSummary table .additional-donation td,#ctm-registration-form .left-wrapper .registrationSummary table .cannot-attend-donation td{
  padding-block: 15px;
}
#ctm-registration-form .left-wrapper .registrationSummary table #additional-donation-amount, #ctm-registration-form .left-wrapper .registrationSummary table #cannot-attend-amount{
  padding: 10px 15px;
  font-size: 16px;
  color: #31373d;
  font-weight: 500;
  border: 1px solid #31373d;
  outline: 0;
}
#ctm-registration-form .left-wrapper .registrationSummary table .summary-total td{
  padding-block: 15px;
  color: #31373d;
}
#ctm-registration-form .left-wrapper .true-impact input{
  display: none;
}
#ctm-registration-form .left-wrapper .true-impact .label{
  color: #31373d;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}
#ctm-registration-form .left-wrapper .true-impact .label::before{
  content:'';
  position: absolute;
  height: 16px;
  width: 16px;
  border: 1px solid #31373d;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#ctm-registration-form .left-wrapper .true-impact .label::after{
  content:'';
  position: absolute;
  height: 20px;
  width: 8px;
  border: 1px solid #31373d;
  border-top: 0;
  border-left: 0;
  top: 50%;
  left: 8px;
  transform: translateY(-80%) rotate(45deg);
  opacity: 0;
}
#ctm-registration-form .left-wrapper .true-impact input:checked ~ .label::after{
  opacity: 1;
}

#ctm-registration-form .right-wrapper .field > label:not(:has(input[type="radio"]), label[for="card-element"], .payment label){
    /* display: none;*/
    visibility: hidden;
}
#ctm-registration-form .right-wrapper .field > input:not(input[type="radio"]),#ctm-registration-form .right-wrapper .field select,#ctm-registration-form .right-wrapper .field textarea{
    outline: 0;
    padding-block: 10px;
    padding-inline-end: 10px;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #31373d;
    font-size: 1rem;
    color: #31373d;
}
#ctm-registration-form .right-wrapper .payment .routingNumber,#ctm-registration-form .right-wrapper .payment .sample-check{
	margin-top: 20px;
}
#ctm-registration-form .right-wrapper .btn-submit{
	margin-top: 20px;
	padding: 15px 30px;
	background: #31373d;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: all 300ms;
	border: 1px solid #31373d;
}
#ctm-registration-form .right-wrapper .btn-submit:hover{
	background: #fff;
	color: #31373d;
}

@media (max-width: 768px) {
  #ctm-registration-form .registration-form .form-wrapper {
    flex-direction: column;
  }
}