



* {
    color: #ffffff;
    font-family: Nunito;
 
}

body {
    background: linear-gradient(-45deg, #ff0098, #ff68c2, #f7b5cd);
    background-size: 1600% 1600%;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

h1, h2 {
    display: block;
    margin: 20px 10px 30px 10px;

}

h1.left, h2.left {
    display: block;
    text-align: left;

}

p {
    display: block;
    text-align: center;
    margin: 20px 10px 30px 10px;

}

    p.justify {
        display: block;
        text-align: justify;

    }

li {
    display: block;
    text-align: center;
    margin: 20px 10px 30px 10px;
    list-style-position: inside;

}

    li.justify {
        display: block;
        text-align: justify;

    }

a {
    color: #ffffff;

}

a:link {
    color: #ffffff;

}

a:visited {
    color: #ffffff;

}

a:hover {
    color: #000000;

}

.center-column-img {
    width: 100%;

}

.center-column-img-show {
    width: 100%;
    padding: 20px;

}

.center-column-sub {
    text-align: center;
    margin: 20px 20px 50px 20px;

}

.center-column-min {
    text-align: center;
    margin: 20px 20px 20px 20px;

}

.center-column-iframe {
    width: 100%;
    height: 300px;
    padding: 20px;

}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 50px;

}

.payment-icon {
    height: 30px;

}

.social-paths {
    margin-top: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    height: 60px;
}

.footer-bottom {    
    display: block;
    padding-bottom: 50px;

}

input {
    font-size: larger;
    text-align: center;
    border: 0;
    border-radius: 16px;
    background-color: white;
    padding: 20px 20px 20px 20px;
    z-index: 1;

}

input:focus {
    outline: none;

}

.input-normal {
    color: #808080;

}

.input-error {
    color: #ff0000;

}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-window {
    position: relative;
    border-radius: 30px;
    text-align: center;
    border: 0px solid #FFFFFF;
    background-color: #ff68c2;
    padding: 40px 20px 60px 20px;
    margin: 40px 40px 40px 40px;
    max-width: 600px;
}

.modal-close-btn {
    position: absolute;
    top: -24px;
    right: -7px;
    height: 55px;

}

.modal-open-btn {
    height: 80px;

}

.checkout-interstitial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff68c2;
    z-index: 9999;
    pointer-events: auto;

}

.checkout-interstitial-img {
    width: 80vw; 
    max-width: 330px; 
    height: auto; 
    
}

.fade-in {
    opacity: 0;
    animation: fadein 0.7s ease-out forwards; 
}

@media (max-width: 576px) {
    .center-column {
        display: block;
        text-align:center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        
    }

    .scroll {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .scroll::-webkit-scrollbar {
        display: none;
    }

    .scroll-item {
        flex: 0 0 auto;
        margin: 10px;
        max-width: 350px;
        max-height: 350px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .center-column {
        display: block;
        text-align: center;
        max-width: 577px;
        margin-left: auto;
        margin-right: auto;
    }

    .scroll {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: nowrap;
        animation: scrollanim 20s infinite alternate linear;
    }

    .scroll-item {
        flex: 0 0 auto;
        margin: 10px;
        max-width: 350px;
        max-height: 350px;
    }
}

@media (min-width: 993px) {
    .center-column {
        display: block;
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .scroll {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: nowrap;
        animation: scrollanim 20s infinite alternate linear;
    }

    .scroll-item {
        flex: 0 0 auto;
        margin: 10px;
        max-width: 350px;
        max-height: 350px;

    }
}

@keyframes scrollanim {
    from {
        transform: translateX(0%);

    }

    to {
        transform: translateX(-50%);

    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;

    }

    50% {
        background-position: 100% 50%;

    }

    100% {
        background-position: 0% 50%;

    }
}

@keyframes fadein {
    to {
        opacity: 1;
    }
}

