body {
    background-color: #000;
}

.wecheer-page.ar label.error,
.wecheer-page.ar label.custom-error {
    left: 0 !important;
    right: initial !important;
}

.wecheer-form-wrap label.error,
.wecheer-form-wrap label.custom-error {
    color: #fff;
    font-weight: normal;
    text-transform: initial;
    position: absolute;
    bottom: -12px;
    right: 0;
    margin: 0;
}

.wecheer-form-wrap .form-item label.error,
.wecheer-form-wrap .form-item label.custom-error {
    position: absolute;
    bottom: -25px;
    right: 0;
    color: red;
    font-weight: normal;
    font-size: 12px;
}

.wecheer-form-wrap label.error {
    color: #fff;
    font-weight: normal;
    text-transform: initial;
    position: absolute;
    bottom: -12px;
    right: 0;
    margin: 0;
}

.wecheer-form-wrap .form-item label.error {
    position: absolute;
    bottom: -25px;
    right: 0;
    color: red;
    font-weight: normal;
    font-size: 12px;
}

.wecheer-form-wrap .form-item .gender-wrap .error {
    bottom: -5px;
}

.language-choose {
    position: absolute;
    top: 0;
    right: 8px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 16px;
    line-height: 24px;
    direction: inherit;
    z-index: 2;
}

.language-choose select {
    color: #fff;
    background: transparent;
    padding: 4px;
    border: none;
    font-size: 18px;
}

.language-choose .divider {
    height: 20px;
    width: 1px;
    background: #fff;
    margin-right: 8px;
}


.wecheer-form {
    padding: 16px 0px;
    padding-bottom: 0;
    text-align: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wecheer-form-img {
    margin-bottom: 24px;
}

.wecheer-form h1 {
    font-size: 24px;
    line-height: 30px;
    margin: 0;
    text-align: center;
}

.wecheer-form p {
    font-size: 14px;
    text-align: left;
    padding: 0px 12px;
    margin-bottom: 10px;
}

.wecheer-form-wrap {
    width: 90%;
}

.wecheer-form-wrap .form-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 13px;
    font-size: 14px;
    color: #074f89;
}

.wecheer-form-wrap .form-item label.checkbox {
    display: flex;
    font-weight: normal;
    font-size: 14px;
    position: relative;
    align-items: start;
}

.wecheer-form-wrap .form-item label.checkbox input {
    margin: 0 8px;
    margin-right: 12px;
    flex: 0;
    width: auto;
    height: 0;
    appearance: none;
    border: none;
    position: relative;
}

.wecheer-form-wrap .form-item label.checkbox input[type="checkbox"]::after {
    position: absolute;
    top: 0;
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #074f89;
    font-size: 24px;
    line-height: 20px;
    padding-left: 2px;
}

.en .wecheer-form-wrap .form-item label.checkbox input[type="checkbox"]::after {
    right: 5px;
}

.ar .wecheer-form-wrap .form-item label.checkbox input[type="checkbox"]::after {
    left: 5px;
}

.wecheer-form-wrap .form-item label.checkbox input[type="checkbox"]:checked::after {
    content: "\2713";
    color: #074f89;
}

.wecheer-form-wrap .form-item label {
    font-weight: normal;
}

.wecheer-form-wrap .form-item .float-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.en .wecheer-form-wrap .form-item .float-label {
    right: 10px;
}

.ar .wecheer-form-wrap .form-item .float-label {
    left: 10px;
}

.wecheer-form-wrap .form-item input {
    width: 100%;
    border: 1px solid #00a1dc;
    color: #000;
    background-color: transparent;
    border-radius: 55px;
    padding: 8px 8px;
    box-shadow: none;
}

.wecheer-form-wrap .form-item input[name="email"] {
    padding-inline-end: 95px;
}

.en .wecheer-form-wrap .form-item input {
    font-weight: normal;
}


div.fixed-bottom-action {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(.9* 450px);
}


div.block-bottom-action {
    margin-top: 20px;
    margin-bottom: 15px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div.block-bottom-action p {
    padding: 0;
    font-size: 10px;
    color: #000;
    margin-top: 16px;
}

div.block-bottom-action.has-loading a.bottom-float-button {
    color: transparent;
}

a.bottom-float-button {
    text-transform: uppercase;
    background-color: #ed712e;
    padding: 8px;
    padding-top: 8px;
    text-align: center;
    color: #fff;
    max-width: 100%;
    width: 80vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: normal;
    /* border: 2px solid #fff; */
}

.lock-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 50px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.has-loading .lock-layer {
    visibility: visible;
}

.loader {
    width: 32px;
    height: 32px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.wecheer-form-wrap .form-item.gender {
    padding-bottom: 12px;
}

.wecheer-form-wrap .form-item input[name='gender'] {
    padding: 0;
    width: 10px;
}

.wecheer-form-wrap .form-item.gender .gender-wrap label {
    margin-bottom: 0;
    margin-left: 4px;
    margin-right: 4px;
}

.wecheer-form-wrap .form-item.gender .gender-wrap span {
    display: flex;
    align-items: center;
    padding: 5px 0px;
}

.wecheer-form-wrap .form-item label {
    margin-bottom: 5px;
    padding: 0;
    text-transform: initial;
    font-weight: normal;
}

.wecheer-form-wrap .form-item label.error {
    text-transform: initial;
}

.wecheer-form-wrap div.gender-wrap {
    display: flex;
    padding: 2px 16px;
    border: 1px solid #002b99;
    border-radius: 3px;
}

.gender-wrap span:nth-child(2) {
    flex: 1;
    display: flex;
    justify-content: center;
}

.gender-wrap input {
    padding: 0;
}

#dateOfBirth-error {
    font-size: 9px;
}

.wecheer-page-wrap .wecheer-sec.tc-page {
    background-color: #fff;
    padding: 12px;
}

.wecheer-page-wrap .wecheer-sec.tc-page .wecheer-sec-wrap {
    color: #00a1dc;
}

.wecheer-form-area {
    position: relative;
}

.wecheer-form-area .wecheer-form {
    padding: 16px;
    position: absolute;
    top: 110px;
    left: 0;
}

.wecheer-page-terms {
    color: #000;
}

#bottom-area p {
    font-size: 12px;
    font-weight: normal;
    padding: 16px 16px;
    margin: 0;
}