html, body {
    height: 100%;
    width: 100%;
    background: #FFFFFF;
    /*overflow-x: hidden;*/
    margin: 0;
    padding: 0;
}

.container-with-background {
    z-index: 1;
    height: 100%;
    width: 100%;
    background: url("https://littleimages.blob.core.windows.net/touristtap/Kenya/Bg/bg1.jpeg") no-repeat center/cover;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.main-container-2 {
    display: flex;
    /*flex-direction: column;*/
    /*justify-content: center;*/
    /*align-items: flex-end;*/
    height: 100%;
    width: 100%;
    z-index: 1;
    /*position: relative;*/
}

.content-container {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 10px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px 20px;
    width: 100%;
    background-color: #FFFFFF;
}

.content-container-2 {
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);*/
    transition: 0.3s;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-left: 0;
    margin-right: 0;
    margin-top: auto;
    padding: 50px 20px;
    width: 100%;
    background-color: #FFFFFF;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    width: 70px;
    height: 70px;
}

.apple-pay-logo-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.apple-pay-logo-container-2 {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.apple-pay-logo {
    width: auto;
    height: 40px;
}

.apple-pay-logo-2 {
    width: auto;
    height: 100px;
    border-radius: 50px;
    border: 1px solid #FFFFFF;
}

.amount-container {
    display: flex;
    justify-content: center;
    font-size: 18px;
    margin-top: 30px;
}

.amount-container-2 {
    display: flex;
    justify-content: center;
    font-size: 30px;
    margin-top: 30px;
}

#amount {
    font-weight: bold;
    margin-left: 5px;
    color: #3D82FD;
}

.label {
    margin-top: 30px;
    text-align: center;
}

.cancel-button {
    width: 100%;
    background: #F32C55;
    border-radius: 3px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    /*font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    outline: none;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: color 100ms;
    vertical-align: baseline;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: 20px 0 0;
    height: 50px;
}

.cancel-button:hover {
    background: #c22344;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

#paystack-apple-pay {
    margin-top: 30px;
    width: 100%;
}

.loader-container {
    display: none;
    justify-content: center;
    margin-top: 30px;
}

.text-color {
    color: #404040 !important;
}

.text-primary {
    color: #6A2E90 !important;
}

.img-background {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
}

.margin-left-0 {
    margin-left: 0 !important;
}

.apple-pay-button {
    width: 100% !important;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px dotted #6A2E90;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

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

@media (prefers-color-scheme: dark) {
    html, body {
        background: #18191A;
    }

    .content-container-2 {
        background: #121212;
    }

    .content-container {
        background: #3A3A3A;
    }

    .text-color {
        color: #FFFFFF !important;
    }

    .cancel-button {
        background: #370913;
    }
}