*::before,
*::after {
    box-sizing: border-box;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: 1.4rem;
    line-height: inherit;
}

.left-sec {
    width: 40%;
    display: inline-block;
    margin-right: 60px;
}

.right-sec {
    width: 53%;
    display: inline-block;
    vertical-align: top;
}

@media screen and (max-width: 872px) {

    body .right-sec,
    body .left-sec {
        width: 100%;
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .left-sec {
        order: 1;
    }

    .right-sec {
        order: 2;
    }
}

.right-sec p,
.left-sec p {
    font-size: 1.5rem;
    color: #474747;
    margin-bottom: 10px;
}

.anthemCricketForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width: 540px) {
    .anthemCricketForm {
        padding: 20px;
        border: 1px solid grey;
        border-radius: 10px;
    }
}

.form-field-box {
    position: relative;
    margin-bottom: 30px;
}

.form-field {
    color: #000000;
}

.form-field:not(input[type="checkbox"]) {
    width: 100%;
    min-height: 48px;
    border: none;
    box-shadow: none;
    border-bottom: 2px solid #d3d3d3;
    resize: none;
}

.form-field:not(input[type="checkbox"]):-webkit-autofill {
    -webkit-box-shadow: 0 0 2px 66px #FFFFFF inset !important;
}

.half-form-field {
    width: 49%;
    flex: 0 0 auto;

    @media screen and (max-width: 540px) {
        width: 100%;
    }
}

.full-form-field {
    width: 100%;
    flex: 0 0 auto;
}

.form-field:disabled {
    opacity: 0.5;
}
.form-field-box:not(.label-form-field) label {
    position: absolute;
    top: 14px;
    left: 3px;
    color: #1b1b1b;
    transition: 0.2s all;
    cursor: text;
    font-size: 16px;

    @media screen and (max-width: 1100px) {
        font-size: 14px;
    }
}

.countryCode-form-field {
    width: 100px;
    float: left;
    @media screen and (max-width: 540px){
        width: 100%;
        margin-bottom: 30px;
    }
}

.mobileNo-form-field {
    position: relative;
    width: calc(100% - 100px);
    float: left;
    @media screen and (max-width: 540px){
        width: 100%;
    }
}

.form-field-box .dropdown.bootstrap-select.form-field {
    width: 100%;
}

.form-field-box:has([style="display: none;"]) label,
.form-field-box input[type="text"]:focus~label,
.form-field-box input[type="text"]:valid~label,
.form-field-box input[type="text"]:disabled~label {
    font-size: 14px;
    top: -12px;
}

.form-field-box textarea.form-field {
    margin-top: 40px;
}
@media screen and (max-width: 1100px) {
    .form-field-box textarea.form-field {
        margin-top: 55px;
    }
}

.form-field-box textarea.form-field~label {
    top: 0;
}

.form-field-box.label-form-field {
    margin-bottom: 10px;
    position: relative;
}

.form-field-box.label-form-field input[type="checkbox"] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: hidden;
}

.form-field-box.label-form-field input[type="checkbox"]+label:before {
    content: '';
    background-color: transparent;
    border: 2px solid #802625;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    position: absolute;
    cursor: pointer;
    border-radius: 5px;
    left: 0;
    width: 22px;
    height: 22px;
    top: -2px;
    margin: auto;
}

.form-field-box.label-form-field input[type="checkbox"]:checked+label:after {
    content: '';
    background-color: #802625;
    position: absolute;
    cursor: pointer;
    border-radius: 5px;
    left: 4px;
    width: 14px;
    height: 14px;
    top: 2px;
    margin: auto;
}

.form-field-box.label-form-field label {
    overflow: hidden;
    display: block;
    margin-bottom: 0;
    padding-left: 35px;
}

.form-field-box.label-form-field label p {
    margin-bottom: 0;
}

.error {
    display: none;
    color: #802625;
    font-size: 1.2rem;
    margin-top: 5px;
    float: left;
}
.error p {
    color: #802625;
    font-size: 1.2rem;
    margin-bottom: 0;
}
.form-field-box:has([style="display: inline;"]):not(:has(.form-field-child)) input, 
.form-field-box:has([style="display: inline;"]) textarea,
.form-field-box:has([style="display: inline;"]):not(:has(.form-field-child)) select,
.form-field-child:has([style="display: inline;"]) select, 
.form-field-child:has([style="display: inline;"]) input{
    border-color: #802625;
}

.enterOtparea {
    margin-top: 10px;
    display: none;
}
#otpField {
    letter-spacing: 5px;
}
.submitBtnT20,
.otpBtn {
    background-color: #ffffff;
    border: 1px solid #802625;
    color: #802625;
    padding: 6px 25px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    margin-right: 5px;
    padding: 9px 14px;
}
#timer {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #a5a5a5;
    font-size: 1.4rem;
}
.OtpArea button.disabled,
.OtpArea button:disabled {
    opacity: 0.5;
}
.generateOtpArea #reSendOtpBtn {
    display: none;
}

select.form-field {
    font-size: 16px;
    color: #1b1b1b;
}

@media screen and (max-width: 1100px) {
    select.form-field {
        font-size: 14px;
    }
}

.t20ServletJson {
    display: none;
}

.form-field option {
    color: #000000;
}

option[disabled] {
    color: grey;
}

@media screen and (max-width: 767px) {
    .overviewContent {
        display: block;
    }
}

.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: hidden;
    outline: 0
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -25%)
}


.modal.show .modal-dialog {
    transform: translate(0, 0)
}

.modal:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: black;
    opacity: 0.3;
    pointer-events: none;
}

.modal-dialog {
    width: 100%;
    height: 100%;
}

.modal-content {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: fixed;
    z-index: 99;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
}

.close {
    padding: 4px 9px;
    border-radius: 23px;
    color: black;
}

.modalTerms .modal-body {
    background: #802625;
    max-width: 600px;
    width: 98%;
    margin: auto;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .25rem;
    outline: 0;
    background-clip: padding-box;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .5);
    position: relative;
    padding: 15px 15px 5px;
}
.modal-body {
    background: #802625;
    max-width: 500px;
    width: 98%;
    margin: auto;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .25rem;
    outline: 0;
    background-clip: padding-box;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .5);
    position: relative;
    padding: 15px 15px 5px;
}
.modalTerms {
    display: none;
}
.termclose {
    padding: 4px 9px;
    border-radius: 23px;
    color: black;
}
.termclose {
    float: right;
    position: absolute;
    right: 5px;
    top: 4px;
    font-size: 16px;
    cursor: pointer;
}

.modalTerms .modal-body { max-height: 77vh; }
.modalTerms .modal-body .termsText { 
    font-size: 14px; 
            line-height: 22px; 
            overflow:auto;
    padding-right:10px;
    margin: 20px 0 0 10px;
        }

.sloganError {
    display: block;
    color: grey;
    float:right;
}
#termsKnowMore{
    color: blue;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}
::-webkit-scrollbar {
    width: 5px;
      border-radius:10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
      border-radius:10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
      border-radius:10px;
}

.modal-backdrop{
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
}

.modal-backdrop.show {
    opacity: .5;
    z-index: 12;
}

.form-field-box textarea{
    height: 0;
}
.form-field-box.label-form-field input[type="checkbox"]:checked ~ .error{
    display:none !important;
}
.parentHeading{
    font-weight: bold;
    color:white;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}
.parentLi{
    font-size: 1.35rem;
    color: white;
}
.childLi{
    font-size: 1.35rem;
    margin-left: 4%;
    color: white;
    list-style: disc;
}
.childHeading{
    font-weight: medium;
    color: white;
    font-size: 1.45rem;
}
.swiper-pagination-lock {
    display: none;
  }
.oneThird-form-field {
    width: 30%;
}
.oneThird-form-field-city {
    width: 36%;
}
@media screen and (max-width: 540px) {
    .oneThird-form-field {
        width: 49%;
    }
    .oneThird-form-field-city {
        width: 100%;
    }
}