/* This rule is global and can conflict with your theme. It is recommended to remove it. */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.go-vip-wrapper,
.go-vip-wrapper * {
    box-sizing: border-box;
}

.go-vip-wrapper {
    color: var(--light-brown);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: hsla(22, 31%, 76%, 1);
    background: linear-gradient(90deg, hsla(22, 31%, 76%, 1) 0%, hsla(60, 10%, 92%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(22, 31%, 76%, 1) 0%, hsla(60, 10%, 92%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(22, 31%, 76%, 1) 0%, hsla(60, 10%, 92%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#D5BDAF", endColorstr="#EDEDE9", GradientType=1 );
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* This is a global rule. It's better to move these variables into the .go-vip-wrapper rule. */
:root {
    --brown: #d5bdaf;
    --light-brown: #e3d5ca;
    --beige: #f5ebe0;
    --dark-beige: #d6ccc2;
    --off-white: #edede9;
}

/* SCOPED */
.go-vip-wrapper header {
    display: flex;
    justify-content: center;
}

/* SCOPED */
.go-vip-wrapper .alert {
    height: 170px;
    width: auto;
    margin-top: 20px;
}

/* SCOPED */
.go-vip-wrapper h1 {
    text-align: center;
    margin-top: 7vh;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    margin-bottom: 40px;
}

/* SCOPED */
.go-vip-wrapper h2, 
.go-vip-wrapper h3 {
    font-family: "Fraunces";
    font-weight: 600; 
    text-align: center;
}

/* SCOPED */
.go-vip-wrapper h2 {
    font-size: 40px;
}

/*Javascript/PHP early access countdown container*/
.go-vip-wrapper #countdown-container {
    display: flex;
    gap: 4vw;
    justify-content: center;
}

.go-vip-wrapper .child-container {
    background-color: hsla(0, 0%, 0%, 0.8);
    color: var(--light-brown);
    border-radius: 10px;
    padding: 10px 50px; 
    text-align: center;
}

.go-vip-wrapper .child-container h2,
.go-vip-wrapper .child-container h3 {
    color: var(--light-brown);
}

/*Early access text / countdown finished text*/
/* SCOPED */
.go-vip-wrapper .early-access-h3 {
    text-align: center;
}

/* SCOPED */
.go-vip-wrapper .finished-h3 {
    text-align: center;
}

/* SCOPED */
.go-vip-wrapper #countdown-finished {
    display: none;
}

/*Member page button*/
/* SCOPED */
.go-vip-wrapper .button-container {
    display: flex;
    justify-content: center;
}

/* SCOPED */
.go-vip-wrapper .member-button {
    border-radius: 20px;
    padding: 10px 30px;
    font-size: 16px;
    font-family: "Exo 2", sans-serif;
    font-weight: 800;
    cursor: pointer;
    color: var(--brown);
    background-color: hsla(0, 0%, 0%, 0.7);
    margin-top: 5vh;
}

/* SCOPED */
.go-vip-wrapper .member-button:hover {
    font-size: 18px;
    transition: 0.2s ease-in-out;
}

/*footer*/
/* SCOPED */
.go-vip-wrapper footer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    margin-top: 34vh;
}

/* SCOPED */
.go-vip-wrapper .footer-logo {
    height: 14px;
    width: auto;
    margin: 0;
    position: relative;
    top: 3px;
}

@media only screen and (max-width: 412px) {
    /* SCOPED */
    .go-vip-wrapper #countdown-container {
        gap: 6vw;
    }
}

@media only screen and (max-width: 840px) {
    .go-vip-wrapper #countdown-container {
        flex-wrap: wrap;
    }
}