p {
    font-size: 18px !important;
}

    p.small-text {
        font-size: 14px !important;
    }

@media (min-width: 768px) {
    h1 {
        font-size: 48px !important;
    }

    span.custom-text {
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 36px !important;
    }

    span.custom-text {
        font-size: 14px !important;
    }
}

.continue-margin-top {
    margin-top: calc(68 * (100vw / 2020));
}

@media only screen and (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}
@media(min-width: 768px) {
    .hide-on-desktop {
        display: none;
    }
}


.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.spinner {
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 5px solid #000;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.standard-separator {
    width: auto;
    height: 0px;
    border: 1px solid #91919A;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin-top: 25px;
    margin-bottom: 25px;
}

.first-name-width {
    width: 61.44%;
}

.last-name-width {
    width: 61.5%;
}

.email-width {
    width: 73.1%;
}

.address1-width {
    width: 100%;
}

.address2-width {
    width: 100%;
}

.postalcode-width {
    width: 43.47%;
}

.city-width {
    width: 61.44%;
}

.country-width {
    width: 49.31%;
}


.btn-group-style-lg .btn:hover,
.btn-group-style-sm .btn:hover {
    transform: none !important;
    transition: transform 0.3s ease-in-out !important;
}

.btn-group-style-lg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 110px));
    grid-row-gap: 0px;
    grid-column-gap: 20px;
}

.btn-group-style-sm {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 85px));
    grid-row-gap: 0px;
    grid-column-gap: 10px;
}

    .btn-group-style-sm .btn {
        margin-top: 0.2rem !important;
        width: 80px !important;
        height: 80px !important;
        font-size: 1.5rem !important;
        line-height: 74px !important;
        margin-right: 1rem !important;
        justify-content: space-between;
    }

@media(max-width:400px) {
    .btn-group-style-sm {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(70px, 75px));
        grid-row-gap: 0px;
        grid-column-gap: 5px;
        justify-content: space-between;
    }

        .btn-group-style-sm .btn {
            margin-top: 0.2rem !important;
            width: 70px !important;
            height: 70px !important;
            font-size: 1.35rem !important;
            line-height: 64px !important;
            margin-right: 0.8rem !important;
        }
}

.continue-button {
    width: auto;
    max-width: none;
    display: block;
}

.alternate-continue-button {
    width: 100% !important;
    max-width: 400px !important;
    display: block;
}

@media(max-width: 768px){
    .continue-button {
        width: 100% !important;
        max-width: 400px !important;
    }
    .form-control{
        width: 100% !important;
    }

    .address1-width,
    .address2-width,
    .postalcode-width,
    .city-width,
    .country-width,
    .first-name-width,
    .last-name-width,
    .email-width {
        width: 100% !important;
    }
}

@media(min-width: 768px) {
    .second-row {
        margin-top: 20px;
    }
    .pay-now-button {
        width: 277px !important;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .continue-button {
        width: 100% !important;
    }
    .pay-now-button {
        width: 100% !important;
    }
}