* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    min-height: 100vh;
    height: 100vh;
}

body {
    min-height: 100vh;
    height: 100vh;
}

body {
    background-color: #fff;
    padding: 24px;
    font-family: 'Roboto', sans-serif;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body {
    max-width: 460px;
    width: 100%;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
    position: relative;
}

.body>svg {
    margin-bottom: 24px;
}

.content {
    border-radius: 12px;
    background: #F8F8F8;
    padding: 24px;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 24px;
}

.content p {
    margin-bottom: 8px;
}

.content ul {
    padding-left: 22px;
}

button {
    width: 100% !important;
}

#payment-container {
    width: 100%;
    height: 48px;
}

#payment-empty {
    text-align: center;
    color: red;
}

#payment-empty span {
    margin-top: 24px;
    display: none;
}

@media screen and (max-width: 767px) {
    body {
        padding: 0;
    }

    .body {
        box-shadow: none;
        height: 100vh;
    }

    #payment-container {
        margin-top: auto;
    }
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #EB7353;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 32px auto;
}

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

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

#content {
    display: none;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    margin-bottom: 24px;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    background-color: #F8F8F8;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark {
    background-color: #EB7353;
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

#fetch {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}