@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}
body {
    font-family: "Open Sans", sans-serif;
    position: relative;
    max-width: 100vw;
    margin: 0 auto !important;
    color: black !important;
    line-height: 1.6 !important;
    padding: 0 !important;
    font-weight: 500;
}

:root {
    --font-size-ten: 0.933rem;
    --font-size-eleven: 1.017rem;
    --font-size-twelve: 1.1rem;
    --font-size-eight: 0.767rem;
    --font-size-seven: 0.683rem;
    --font-size-fourteen: 1.267rem;
    --font-size-eighteen: 1.6rem;
    --font-size-sixteen: 1.5rem;
    --icon-size: 5.7rem;
    --primary-color: #76cc11;
    --warning-color: #ffc000;
    --secondary-color: #a6a6a6;
    --soft-gray: #fafafa;
    --bg-gray: rgb(217, 217, 217);
    --gray: rgb(191, 191, 191);
    --darker-gray: rgb(127, 127, 127);
    --red-color: #ff0000;
}

a:hover {
    color: inherit;
}

p {
    margin-bottom: 0;
}

h1,
h2 {
    line-height: 1.4;
}

h1,
h2,
p,
button,
a {
    word-wrap: break-word;
}

main {
    margin: auto;
    min-height: calc(100vh);
}

.sixteen-text {
    font-size: var(--font-size-sixteen);
}

.twelve-text {
    font-size: var(--font-size-twelve);
}

.eleven-text {
    font-size: var(--font-size-eleven);
}

.eightpx-text {
    font-size: var(--font-size-eight);
}

.fourteen-text {
    font-size: var(--font-size-fourteen);
}

.ten-text {
    font-size: var(--font-size-ten);
}

.gray-text {
    color: var(--darker-gray);
    line-height: 1.7;
}

.italic-text {
    font-style: italic;
}

.bold-text {
    font-weight: 700;
}
.extra-bold-text {
    font-weight: 800;
}

.font-w-500 {
    font-weight: 500;
}

main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.primary-color {
    color: var(--primary-color);
}

.error-color {
    color: var(--red-color);
}

.warning-color {
    color: var(--warning-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.secondary-btn {
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color);
    width: 100%;
    font-weight: 800 !important;
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn {
    background: var(--primary-color) !important;
    color: white;
    width: 100%;
    font-weight: 800 !important;
}

.mb-3-5 {
    margin-bottom: 1.25rem;
}

.mb-4-5 {
    margin-bottom: 2.5rem;
}

.mt-3-5 {
    margin-top: 1.25rem;
}

.mt-4-5 {
    margin-top: 2.5rem;
}

.rounded-elm {
    border-radius: 23px;
}

.primary-btn:hover {
    background-color: #71c215 !important;
    color: white;
}

.container {
    max-width: 535px;
    margin: 4rem auto;
}

.icon {
    font-size: var(--icon-size);
    line-height: var(--icon-size);
    margin-bottom: 1rem !important;
}

.w-90 {
    width: 95%;
}

footer {
    padding: 90px 0 136px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}
footer.hide {
    display: none;
}

footer a:hover {
    cursor: pointer;
}
a:hover {
    cursor: pointer;
}

footer a {
    color: var(--gray) !important;
}

footer a:hover {
    text-decoration: underline !important;
}

footer img {
    width: 12rem;
    margin-bottom: 30px !important;
    font-size: 1rem;
}
footer .copyright {
    color: rgba(255, 255, 255, 0.4);
}
footer h3 {
    margin-bottom: 18px;
    color: #fff;
}
footer .row:first-of-type::after {
    content: "";
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
}

.bg-dark {
    background-color: rgb(38, 38, 38) !important;
}

@media (min-width: 768px) {
    footer {
        padding: 90px 0 70px;
    }
}

.loading {
    height: 50px;
    width: 50px;
    border: 5px solid black;
    border-bottom: 5px solid transparent;
    border-radius: 50%;
    -webkit-animation: spin 900ms linear infinite forwards;
    animation: spin 900ms linear infinite forwards;
}

.loading-container {
    min-height: 100vh;
    min-width: 100vw;
    height: 100%;
    width: 100%;
    background-color: white;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card {
    border-radius: 15px;
}

.card img {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

#confirmation .card-body {
    padding: 1.25rem 2.5rem;
}

#confirmation .card-body p {
    line-height: 1.3;
}

#confirmation .icon {
    font-size: 5rem;
    line-height: 5rem;
}

.payment-logo {
    height: 75px;
    width: 100%;
}

.modal {
    padding-right: 0 !important;
}

.modal-dialog {
    max-width: 300px !important;
}

.modal-content {
    border-radius: 15px;
}

.modal-header {
    border: none !important;
    padding: 0;
}

.modal-header .close {
    padding: 0.5rem;
    margin: 0 0 0 auto;
    padding-bottom: 0;
}

.modal-body {
    padding: 1.5rem;
    padding-top: 0;
}

.text-dark {
    color: #595959 !important;
}

.otp-box {
    border: 2px solid var(--bg-gray);
    height: 35px;
    width: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0.15rem;
    border-radius: 7px;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.otp-box:focus {
    outline: none;
    border: 2px solid var(--primary-color);
}

.title {
    margin-bottom: 0.8rem !important;
}

.btn {
    padding: 11px 22px;
}

.desc {
    margin-bottom: 0.8rem !important;
}

.additional-desc {
    margin-bottom: 1.4rem !important;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media (max-width: 500px) {
    :root {
        --icon-size: 5rem;
        --font-size-ten: 0.833rem;
        --font-size-eleven: 0.917rem;
        --font-size-twelve: 1rem;
        --font-size-eight: 0.767rem;
        --font-size-seven: 0.683rem;
        --font-size-fourteen: 1.167rem;
        --font-size-eighteen: 1.5rem;
        --font-size-sixteen: 1.3rem;
    }

    .container {
        margin: 3rem auto;
    }

    .card img {
        height: 80px;
        width: 80px;
    }

    .w-90 {
        width: 100%;
    }

    .mb-3 {
        margin-bottom: 1.2rem !important;
    }

    #otpModal .mb-3 {
        margin-bottom: 1rem !important;
    }

    .card {
        margin-bottom: 1.7rem !important;
    }

    body {
        line-height: 1.7 !important;
    }

    .additional-desc {
        font-size: 0.9rem;
    }

    #confirmation .icon {
        font-size: 4.3rem;
        line-height: 4.3rem;
    }
}
