
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
	top: 5px;
	width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 18px;
    height: 18px;
    background: url('images/check-mark.png') no-repeat center center #25ae88;
    background-size: 10px;
    position: absolute;
    top: 5px;
    left: 0;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.registration-copy {
    padding: 110px 10px 0;
}
.common-header.left-aligned:before{
    right: auto;
}
.registration-copy p {
    margin: 25px 0;
    text-align:center;
}
.reg-content input[type="checkbox"],.reg-content input[type="radio"]{
	display: none;
}
.registration-copy img{
    margin: 0 0 55px auto;
}
.register-method {
    padding: 40px 10px;
}
.reg-copy span {
    display: block;
}
.registration-copy p.reg-copy {
    font-size: 26px;
    color: #2d2d2d;
    text-align: center;
    padding: 35px 10px 0;
    margin: 0;
}
.reg-box {
    background: #fff;
    margin: 0 30px;
    height: 400px;
    padding: 20px;
    position: relative;
    width: calc(50% - 60px);
}
.reg-box > p {
    font-size: 24px;
    color: #000;
}
.reg-box p{
    margin: 0;
}
.radio-container p {
    color: #2d2d2d;
    font-size: 14px !important;
    font-family: poppinsregular !important;
}
.small {
    display: block;
    color: #000;
    font-size: 14px;;
}
.smaller{
    color: #9e9e9e;
    font-size: 11px;
    display: block;
}
.reg-box .commonBtn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 0;
    padding: 15px 10px;
    background: #434343;
}
.reg-box .commonBtn:hover {
    background:#f89c3a;
}
.reg-content {
    width: 60%;
    margin: 50px auto 80px auto;
    flex-wrap: wrap;
}
.pay-opt {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}
.pay-opt:last-of-type{
    border: none;
}
.reg-box:first-child > p {
    margin-bottom: 39px;
}
.margauto0{
    margin: 0 auto;
}
.viewAll.margauto0 {
    margin: 0 auto;
    display: block;
    max-width: 240px;
}
.registration-copy p.reg-copy:last-of-type:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 65%;
    margin: 0 auto;
    background: #dad4d4;
    left: 0;
    right: 0;
    top: 0;
}
.registration-copy p.reg-copy:last-of-type {
    position: relative;
}

/* Pop css */
.form-group {
    display: block;
    margin-bottom: 15px;
  }
  
  .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  
  .form-group label {
    position: relative;
    cursor: pointer;
  }
  
  .form-group label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #fba148;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    margin-bottom: 7px;
  }
  
  .form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #fba046;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .form-group a {
    color: #000;
    font-weight: bold;
}
.dates img {
    margin-right: 10px;
}
.dates {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0;
}
/* Media queries start here */
@media screen and (max-width:1024px){
    .reg-content {
        width: 100%;
    }
}

@media screen and (max-width:991px){
    .reg-box {
        margin: 30px 30px;
        width: calc(100% - 60px);
    }
}
@media screen and (max-width:767px){
    .registration-copy p.reg-copy {
        font-size: 18px;
        padding: 0;
    }
    .reg-box {
        margin: 30px 10px;
        width: calc(100% - 20px);
        padding: 20px 20px 70px;
        min-height: auto;
    }
    .reg-content {
        margin: 10px auto;
    }
    .registration-copy p.reg-copy:last-of-type:before {
        width: 90%;
        top: -8px;
    }
}