:root {
    --payment-button-height: 50px;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #222222;
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
}

h1 {
    font-weight: 700;
    font-size: 1.5rem;
}

h2 {
    font-weight: 700;
    margin-block: 0.5rem;
}

a {
    color: #E94057;
    text-decoration: none;
    font-weight: 600;
}

.horizontal-separator {
    border-bottom: 1px solid #c9c9c9;
    margin-block: 1rem;
}

button:not(:disabled) {
    cursor: pointer;
}

button:disabled {
    opacity: 0.5;
}

input[type=radio] {
    border: 0.15em solid #c9c9c9;
    width: 1.15em;
    height: 1.15em;
}

apple-pay-button {
    --apple-pay-button-width: 100%;
    --apple-pay-button-height: var(--payment-button-height);
    --apple-pay-button-border-radius: 5px;
}

#apple-pay-container,
#google-pay-container {
    width: 100%;
    height: var(--payment-button-height);
}

.gpay-card-info-container {
    min-width: unset !important;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #E94057;
    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);
    }
} 
