body {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 18px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #3D3465;
    font-weight: 400;
    overflow-x: hidden;
}

@media (prefers-color-scheme: dark) {
    body {
        color: #FFFFFF;
    }
}

.logo {
    max-height: 30px;
}

.bg-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.space {
    padding-top: 8%;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

@media (prefers-color-scheme: dark) {
    ::-webkit-scrollbar-track {
        color: #3D3465;
    }
}

::-webkit-scrollbar-thumb {
    background: #DADADE;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFAB5B;
}

@media (max-width: 767px) {
    .border-end {
        border: none !important;
    }

    .fa-arrow-left {
        font-size: 22px;
    }
}

.main-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (prefers-color-scheme: dark) {
    .main-wrapper {
        background-color: #281F4D;
    }
}

.main-container {
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    height: calc(100vh);
    position: relative;
}

@media (max-height: 450px) {
    .main-container {
        height: 100%;
    }

    .main-container .carousel.slide {
        height: calc(100vh - 80px);
    }
}

.banner {
    height: 100%;
    background-size: contain !important;
}

@media (min-width: 1000px) {
    .banner {
        height: calc(100% - 85px);
    }
}

.banner-header {
    background: #fff;
    font-weight: bold;
    padding: 15px;
    display: block;
    max-width: 470px;
    margin: 0 auto;
    margin-bottom: -48px;
    z-index: 100;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.5);
    border-radius: 0 0 20px 20px;
}

@media (prefers-color-scheme: dark) {
    .banner-header {
        background-color: #211A40;
    }
}

.form-container {
    height: calc(100% - 85px);
    display: flex;
    flex-wrap: wrap;
    padding-left: 140px;
    padding-right: 140px;
}

@media (max-width: 767px) {
    .form-container {
        padding: 60px 20px;
    }
}

.form-container .btn-submit {
    position: absolute;
    right: 15px;
    font-size: 40px;
    top: 15px;
}

@media (max-width: 767px) {
    .form-container .btn-submit {
        font-size: 30px;
    }
}

@media (prefers-color-scheme: dark) {
    .form-container {
        background-color: #211A40;
    }
}

.order-details {
    height: calc(100% - 320px);
    overflow-y: scroll;
}

@media (max-width: 767px) {
    .order-details {
        height: calc(100% - 250px);
    }
}

@media (max-height: 450px) {
    .order-details {
        height: 100%;
    }
}

@media (prefers-color-scheme: dark) {
    .order-details {
        color: #3D3465;
    }
}

.checkout-option {
    height: calc(100% - 116px);
}

@media (max-height: 450px) {
    .checkout-option {
        padding-bottom: 50px;
    }
}

.qr-wrapper {
    margin: 40px auto;
    display: inline-block;
    background-color: #fff;
    padding: 6px;
}

.footer {
    bottom: 0px;
    left: 0px;
    width: 100%;
    position: fixed;
    height: 85px;
    background-color: #fff;
    z-index: 100;
}

@media (prefers-color-scheme: dark) {
    .footer {
        background-color: #211A40;
    }
}

@media (max-width: 767px) {
    .footer {
        height: 65px;
    }
}

@media (max-height: 450px) {
    .footer {
        position: static;
    }
}

.footer .btn {
    height: 100%;
    border-radius: 0px;
    padding: 28px 0;
    font-size: 18px;
    box-shadow: 0 -10px 20px 0 rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 767px) {
    .footer .btn {
        height: 65px;
        padding: 20px 0;
        font-size: 15px;
    }
}

.footer img {
    max-height: 45px;
    width: auto;
}

.text-sm {
    font-size: 12px;
}

.text-bold {
    font-weight: bold;
}

.display-2 {
    font-size: 60px;
}

.display-3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

@media (max-width: 767px) {
    .display-2 {
        font-size: 40px;
    }

    .display-3 {
        font-size: 28px;
    }

    h4 {
        font-size: 20px;
    }
}

.bg-dark {
    background-color: #3D3465 !important;
}

@media (prefers-color-scheme: dark) {
    .bg-dark {
        background-color: #211A40 !important;
    }
}

.bg-danger {
    background-color: #FF895B !important;
}

.bg-warning {
    background-color: #FFAB5B !important;
}

.bg-white {
    background-color: #fff !important;
}

@media (prefers-color-scheme: dark) {
    .bg-white {
        background-color: #211A40 !important;
    }
}

.bg-light {
    background-color: #FBFBFC !important;
}

@media (prefers-color-scheme: dark) {
    .bg-light {
        background-color: #281F4D !important;
    }
}

.bg-primary {
    background-color: #281F4D !important;
}

.text-dark {
    color: #3D3465 !important;
}

@media (prefers-color-scheme: dark) {
    .text-dark {
        color: #FFFFFF !important;
    }
}

.text-danger {
    color: #0AA3EB !important;
}

.text-light {
    color: #B5B1CB !important;
}

@media (prefers-color-scheme: dark) {
    .text-light {
        border-color: #817B9C !important;
    }
}

.text-warning {
    color: #0AA3EB !important;
}

.border-light {
    border-color: #DADADE !important;
}

@media (prefers-color-scheme: dark) {
    .border-light {
        border-color: #281F4D !important;
    }
}

.border-dark {
    border-color: #B5B1CB !important;
}

.border-warning {
    border-color: #0AA3EB !important;
}

.display-picture {
    width: 100px;
    height: 100px;
    background-color: #281F4D;
    background-size: contain;
    border: 3px solid #fff;
    border-radius: 2px;
    box-shadow: 0px 0px 0px 1px #DADADE;
    margin: 0 auto;
    margin-top: -45px;
    margin-bottom: 45px;
    position: relative;
}

@media (max-width: 767px) {
    .display-picture {
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

@keyframes in-out {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.carousel-progress {
    height: 3px;
    width: 0;
    position: absolute;
    top: 0px;
    z-index: 100;
    left: 0px;
    background: #FF895B;
    animation-delay: 0.5s;
    animation: 5s in-out infinite;
}

table thead th {
    border-bottom: none !important;
}

.table-striped>tbody>tr td {
    border: none !important;
    color: #3D3465;
}

.table-striped>tbody>tr:nth-of-type(odd) td {
    border: none !important;
    background: #FBFBFC !important;
    box-shadow: none !important;
}

.btn {
    outline: none !important;
    box-shadow: none !important;
    font-size: 14px;
    padding: 10px 15px;
}

.btn-xl {
    font-size: 60px;
}

@media (max-width: 767px) {
    .btn-xl {
        font-size: 40px;
    }
}

.btn-danger {
    background: #0AA3EB !important;
    border-color: #0AA3EB !important;
}

.btn-outline-primary {
    border-color: #DADADE !important;
    color: #281F4D !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
    opacity: 0.8;
}

@media (prefers-color-scheme: dark) {
    .btn-outline-primary {
        border-color: #281F4D !important;
        color: #FFFFFF !important;
    }
}

.form-control {
    border: none;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0px;
    border-bottom: 1px solid #3D3465 !important;
    color: #3D3465 !important;
    font-weight: bold;
}

.form-control::placeholder {
    color: #B5B1CB !important;
}

.form-control-xl {
    font-size: 60px;
    line-height: 60px;
    -moz-appearance: textfield !important;
}

@media (max-width: 767px) {
    .form-control-xl {
        font-size: 35px;
        line-height: 35px;
    }
}

@media (prefers-color-scheme: dark) {
    .form-control {
        color: #FFFFFF !important;
        background-color: #211A40 !important;
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media(max-width: 500px) {
    .simulate-payment-main-container {
        height: auto;
        padding-bottom: 65px;
    }
}