.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: normal;
}

.roboto-regular {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}

.roboto-medium {
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: normal;
}

.roboto-bold {
font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: normal;
}

.roboto-black {
font-family: "Roboto", sans-serif;
font-weight: 900;
font-style: normal;
}

.roboto-thin-italic {
font-family: "Roboto", sans-serif;
font-weight: 100;
font-style: italic;
}

.roboto-light-italic {
font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: italic;
}

.roboto-regular-italic {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: italic;
}

.roboto-medium-italic {
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: italic;
}

.roboto-bold-italic {
font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: italic;
}

.roboto-black-italic {
font-family: "Roboto", sans-serif;
font-weight: 900;
font-style: italic;
}

html {
scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
}

img#logo {
    width: 80px;
}

.hero-section {
    background-color: #f0f0f0; 
    padding: 2rem;
    text-align: center;
    padding-bottom: 250px;
    position: relative;
    overflow: hidden;
}

.vapour {
    position: absolute;
    top: 40px;
    left: 57%;
    display: flex;
    z-index: 1;
    padding: 0 20px;
    justify-content: center;
}

.vapour span {
    position: relative;
    bottom: 50px;
    display: block;
    margin: 0 2px 50px;
    min-width: 8px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    animation: animate 5s linear infinite;
    opacity: 0;
    filter: blur(10px);
    animation-delay: calc(7s + var(--v) * -0.5s);
}

@keyframes animate {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    50% {
        transform: translateY(-150px) scaleX(5);
    }
    95% {
        opacity: 0;
    }
    100% {
        transform: translateY(-300px) scaleX(10);
    }
}

.prize-section {
    background-color: white;
    padding: 2rem;
    text-align: center;
    padding-bottom: 90px;
}

.coming-soon-section {
    background-color: #d0d0d0;
    padding: 2rem 2rem 4rem;
    text-align: center;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

img#elfbar {
    width: 150px;
    position: absolute;
    bottom: 0;
    left: 57%;
    animation: slideInFromBottom 1s ease-out forwards;
}

@keyframes popAndWobble {
0% {
    transform: translate(-50%, 0) scale(0.5); 
}
25% {
    transform: translate(-50%, 0) scale(1.1);
}
50% {
    transform: translate(-50%, 0) scale(0.9); 
}
75% {
    transform: translate(-50%, 0) scale(1.05);
}
100% {
    transform: translate(-50%, 0) scale(1); 
}
}

img#winLogo {
    width: 200px; 
    position: absolute;
    top: calc(-5% - 100px);
    left: 50%;
    transform: translate(-50%, 0);
    animation: popAndWobble 2s ease-in-out forwards;
}

div#formSection {
    position: relative;
}

.bg-custom {
    background-color: #c65aff;
}

.form-section-inner {
    padding: 2rem;
}

#formSection:before, #comingSoon:before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background-color: #c65aff;
    position: absolute;
    bottom: 99%;
    left: 0;
    clip-path: polygon(0 85%, 100% 15%, 100% 100%, 0 100%);
}

div#vipZoneMessage p, #successMsg, #errorMsg {
    text-align: center;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
    color: black;
}

div#successMsg, #errorMsg {
    padding: 80px 0px;
    max-width: 600px;
    margin: 0 auto;
}

div#vipZoneLink {
    text-align: center;
}

.custom-button {
    color: white;
    background-color: black;
    font-size: 18px;
    padding: 5px 12px;
    border-radius: 5px;
    line-height: 1;
    border: none;
    text-transform: uppercase;
}

#contestForm {
    background-color: white;
    padding: 20px;
}

#contestForm, #termsCheck {
    max-width: 600px;
    margin: 0 auto;
}

.form-check-input[type="checkbox"] {
    min-width: 25px;
    height: 30px;
}

.form-check-input {
    position: initial;
    margin-top: 0px;
    margin-left: 0px;
}

.form-check {
    padding-left: 0;
}

.form-group.custom {
    position: relative;
}

.form-group.custom label {
    position: absolute;
    top: -7px;
    left: 6px;
    background-color: white;
    padding: 0 6px;
    line-height: .7;
}

label.form-check-label {
    color: white;
    padding-top: 4px;
}

label.form-check-label a {
    color: white;
    text-decoration: underline;
}

label.form-check-label a:hover {
    opacity: .8;
}

.prize-section h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.prize-section p {
    max-width: 445px;
    margin: 0 auto 40px;
}

input {
    accent-color: black;
}

.form-control {
    background-color: rgba(242, 242, 242, .2);
}

.form-control::placeholder {
color: #bfbfbf;
}

.custom-control-label::before {
    background-color: rgba(242, 242, 242, .2);
}

a:hover {
    color: white;
    text-decoration: none;
    opacity: .8;
}

/* .modal-dialog.modal-dialog-centered {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
} */

/* .modal-dialog.modal-bottom {
transform: translateY(100vh);
transition: transform 0.3s ease-out;
} */

/* .modal-dialog {
    transform: translateY(100vh);
    transition: transform 0.3s ease-out;
    }

.modal.show .modal-dialog.modal-bottom {
transform: translateY(0)!important;
}

.modal.fade:not(.in) .modal-dialog {
-webkit-transform: translate(0, 100vh);
-moz-transform: translate(0, 100vh);
-o-transform: translate(0, 100vh);
transform: translate(0, 100vh);
} */

div#ageVerificationModal .modal-header {
    border-bottom: 1px solid transparent;
}

div#ageVerificationModal .modal-footer {
    border-top: 1px solid transparent;
}

.modal-body ol {
    padding-left: 1.5rem;
}

.modal-body ol li {
    margin-bottom: 20px;
}

.modal-body a {
    color: black;
}

img#comingSoonImg {
    max-width: 600px;
    width: 100%;
}

.form-control:focus {
    border-color: #c65aff;
    box-shadow: 0 0 0 0.2rem rgba(198, 90, 255, .25);
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: black;
    background-color: black;
}

.form-control {
    height: calc(1.5em + 0.75rem + 10px);
    border-radius: 0;
}

.close {
    color: #c65aff;
    opacity: 1;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    opacity: .75;
    border: 0;
    outline: 0;
}

div#saluRadios {
margin-bottom: 25px;
}

@media (min-width: 576px) {
    .modal-dialog.modal-bottom {
        max-width: 1000px;
    }
    .modal-dialog.modal-dialog-centered {
        max-width: 500px;
    }
}


/* RESPONSIVE */
@media only screen and (max-width: 425px) {
    div#saluRadios {
        display: flex;
        /* justify-content: start;
        flex-wrap: wrap; */
    }

    div#saluRadios .custom-radio {
    margin-bottom: 10px;
    flex-basis: 100%;
}

    div#saluRadios .custom-radio:last-child {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 375px) {
    div#vipZoneMessage p, #successMsg, #errorMsg {
        font-size: 14px;
        margin-bottom: 25px;
    }
}