@import url('./fonts.css');

html {
    font-size: 10px;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background-color: #EB3986;
    overflow-x: hidden;
    height: 100vh;
    width: 100%;
}

.main {
    width: 100%;
}

.min_height {
    min-height: calc(100vh - 200px);
}

header {
    height: 100px;
    width: 100%;
}

footer {
    height: 100px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 231px;
    max-height: 40px;
    height: 100px;
    margin: 0 auto;
    padding: 40px 0 30px;
    display: block;
    z-index: 1;
    position: relative;

}

.lip-hunt {
    max-width: 302px;
    max-height: 432px;
    margin: 0 auto;
    padding: 40px 0 30px;
    display: block;
    z-index: 1;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 1s;
}

#winners_success .content h2 {
    color: #FFF;
    text-align: center;
    font-family: "Review Wide Bold", sans-serif;
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 4.2rem;
    /* 93.333% */
    letter-spacing: -0.09rem;
    text-transform: uppercase;
}

#winners_success .content h4 {
    color: #FFF;
    text-align: center;
    font-family: "Review Condensed Bold", sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.1rem;
    /* 116.667% */
    letter-spacing: 0.036rem;
    text-transform: uppercase;
}

.winners_success_lip_hunt {
    max-width: 302px;
    max-height: 432px;
    margin: 0 auto;
    padding: 40px 0 30px;
    display: block;
    z-index: 1;
    position: relative;
}

/* .background-lip-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 200px;
} */

.background-lip {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    max-width: 88rem;
    /* height: 55rem; */
    z-index: 0;
    opacity: 0;
    animation: slideUp 1.4s ease-out forwards;
    animation-delay: 1s;
    pointer-events: none;
}

p {
    text-align: center;
    position: relative;
    z-index: 1;
    color: #FFF;
    width: 66%;
    margin: 0 auto;
}

.bottom-text p {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Review Wide Medium", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 30rem;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 1s;
}

.copyright-text p {
    color: #FFF;
    text-align: center;
    font-family: "Review Wide Light", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    /* 150% */
    margin-top: 2rem;
    width: 100%;
}

.terms-and-conditions {
    color: #FFF;
    font-family: "Review Wide Light", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
}

#full-form {
    display: none;
}

#message {
    color: #C8102E;
}

.fadeIn {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

/* Fade-in animation for lip-hunt */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Slide-in animation for background-lip */
@keyframes slideUp {
    to {
        transform: translate(-50%, 20%);
        opacity: 1;
    }
}

#step-1 {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    overflow-x: clip;
}

#step-2,
#step-2-single {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Step 1 fades out */
#step-1 {
    z-index: 2;
    animation: fadeOutStep1 1s ease-in 10s forwards;
}

/* Step 2 starts transparent but stays interactive */
#step-2 {
    opacity: 0;
    z-index: 1;
    animation: fadeInStep2 1s ease-in 11s forwards;
}

/* Fade animations */
@keyframes fadeOutStep1 {
    to {
        opacity: 0;
        z-index: 1;
        pointer-events: none;
    }
}

@keyframes fadeInStep2 {
    to {
        opacity: 1;
        z-index: 2;
    }
}

.success_message {
    color: green;
}

.error_message {
    color: red;
}

.content {
    width: 100%;
    /* max-width: 350px; */
    text-align: center;
    margin-bottom: 4rem;
}

.content h2 {
    color: #FFF;
    text-align: center;
    font-family: "Review Poster Bold", sans-serif;
    font-size: 9rem;
    font-style: normal;
    font-weight: 700;
    line-height: 7.7rem;
    /* 85.556% */
    margin: 2rem 1rem;
}

.content p {
    color: #FFF;
    text-align: center;
    font-family: "Review Condensed Medium", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.7rem;
    /* 108% */
    letter-spacing: -0.05rem;
    text-transform: uppercase;
    width: 80%;
}

.tel-field {
    margin: 0 auto 2rem;
    width: 90%;
}

#phone-check {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

#winners-full-form .content h2 {
    color: #FFF;
    text-align: center;
    font-family: "Review Poster Bold", sans-serif;
    /* font-size: 7.9rem; */
    font-size: clamp(3rem, 17vw, 7.9rem);
    font-style: normal;
    font-weight: 700;
    line-height: 7.7rem;
    /* 97.468% */
    text-transform: uppercase;
}

#winners-full-form form .checkbox-label {
    margin: 2rem auto;
}

#winners-full-form,
#phone-check,
#full-form {
    width: 100%;
    max-width: 36.2rem;
}

#winners-full-form .p-full-form,
#full-form .p-full-form {
    color: #FFF;
    text-align: center;
    font-family: "Review Condensed Medium", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.7rem;
    /* 108% */
    letter-spacing: -0.05rem;
    text-transform: uppercase;
}

#full-form .p-full-form {
    width: 95%;
}

.btn-pink {
    background: #EB3986 !important;
    color: #FFF !important;
}

#winners-full-form label,
#submitted-check label,
#full-form label,
#phone-check label {
    display: block;
    color: #FFF;
    font-family: "Review Wide Medium", sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 1rem;
}

#winners-full-form .iti,
#phone-check .iti {
    width: 100%;
    max-width: 36.2rem;
    height: 4.5rem;
}

#winners-full-form .iti input,
#phone-check .iti input {
    width: 100%;
    max-width: 36.2rem;
    height: 4.5rem;
    color: #000;
    font-family: "Review Trial Regular", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    line-height: normal;
    outline: none;
    border: none;
}

.iti__selected-dial-code {
    color: #000;
    font-family: "Review Trial Regular", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    line-height: normal;
    outline: none;
    border: none;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -2px !important;
}

#winners-full-form .iti input::placeholder,
#phone-check .iti input::placeholder,
#full-form input::placeholder {
    color: #000;
    font-family: "Review Trial Regular", sans-serif;
    font-size: 1.6rem;
    opacity: 0.5;
}

input {
    box-sizing: border-box;
}

#winners-full-form input[type="text"],
#winners-full-form input[type="email"],
#full-form input[type="text"],
#full-form input[type="email"] {
    width: 100%;
    max-width: 36.2rem;
    height: 4.5rem;
    flex-shrink: 0;
    border-radius: 0.1rem;
    background: #FFF;
    border: none;
    outline: none;
    padding: 1.5rem;

    color: #000;
    font-family: "Review Trial Regular", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.032rem;

}

#winners-full-form p,
#full-form p {
    color: #FFF;
    text-align: center;
    font-family: "Review Wide Medium", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 73%;
}

#winners-full-form .checkbox-label,
#submitted-check .checkbox-label,
#full-form .checkbox-label {
    display: flex;
    width: 73%;
    margin: 1rem auto 0;
}

#winners-full-form .checkbox-label p,
#submitted-check .checkbox-label p,
#full-form .checkbox-label p {
    color: #FFF;
    font-family: "Review Wide Medium", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: none;
    margin: 0.5rem 0 0;
    text-align: left;
    width: 100%;
}

input[type="checkbox"] {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
    margin-left: 0;
    height: 15px;
    width: 15px;
}

input[type="checkbox"]:before {
    content: " ";
    margin-left: 0;
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 0.1rem;
    border: 0.5px solid #FFF;
    background: #cc838c;
}


input[type="checkbox"]:checked:before {}

input[type="checkbox"]:disabled {
    cursor: auto;
}

input[type="checkbox"]:disabled:before {
    box-shadow: none;
}

input[type="checkbox"]:checked:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    -webkit-box-shadow: 1.9px 0 0 #ffffff, 3.8px 0 0 #ffffff, 3.8px -1.9px 0px #ffffff, 3.8px -3.8px 0 #ffffff, 3.8px -5.7px 0 #ffffff, 3.8px -7.6px 0 #ffffff;
    box-shadow: 1.9px 0 0 #ffffff, 3.8px 0 0 #ffffff, 3.8px -1.9px 0px #ffffff, 3.8px -3.8px 0 #ffffff, 3.8px -5.7px 0 #ffffff, 3.8px -7.6px 0 #ffffff;
    background: #ffffff !important;
    width: 2px;
    height: 2px;
    transform: rotate(45deg);
}

#phone-check .iti .iti__flag {}

.messages {
    display: none;
    padding: 1rem 0.75rem;
    background: white;
    width: -webkit-fill-available;
}

.messages p {
    font-family: "Review Wide Medium", sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    margin: 0;
    overflow-wrap: break-word;
    width: 100%;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 7.05rem;
    background: #FFF;
    width: 25.3151rem;
    height: 5.3726rem;
    flex-shrink: 0;
    margin: 2rem auto 0;
    border: none;
    cursor: pointer;

    color: #000;
    text-align: center;
    font-family: "Review Wide Bold", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.btn:hover {
    opacity: 0.8;
    scale: 0.98;
    transition: all 0.2s ease-in-out;
}

.steps_wrapper,
.steps_wrapper_already {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.steps_wrapper_single {
    display: flex;
}

.fully_checked_in_single {
    display: block;
}

.steps_wrapper_error {
    display: flex;
}

.steps_wrapper .clue_wrapper,
.steps_wrapper_already .oops_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
    height: 100%;
    background-image: url('../svg/step_background.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.steps_wrapper .clue_wrapper .clue,
.steps_wrapper_already .oops_wrapper .oops {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    max-width: 42.5rem;
    margin: 0 auto;
    padding: 3rem 0;
}

#clue_text {
    color: #000;
    font-family: "Review Wide Regular", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3.7rem;
    /* 148% */
    letter-spacing: -0.05rem;
    width: 90%;
    margin-bottom: 4rem;
}

#clue_text span {
    font-family: "Review Wide Medium", sans-serif;
    font-weight: 500;
}

#oops_text span {
    color: #000;
    text-align: center;
    font-family: "Review Wide Bold", sans-serif;
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.7rem;
    /* 60% */
    letter-spacing: -0.09rem;
    text-transform: uppercase;
}

.steps_wrapper_already .oops_wrapper .oops #oops_text span {
    color: #000;
    text-align: center;
    font-family: "Review Wide Bold", sans-serif;
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.7rem;
    letter-spacing: -0.09rem;
    text-transform: uppercase;
}

.steps_wrapper_already .oops_wrapper .oops #oops_text {
    color: #000;
    font-family: "Review Wide Medium", sans-serif;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.7rem;
    letter-spacing: -0.044rem;
    text-transform: uppercase;
    width: 80%;
    margin-bottom: 4rem;
}

#clue_dont_forget {
    color: #A31D2E;
    text-align: center;
    font-family: "Review Condensed Bold", sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.1rem;
    /* 116.667% */
    letter-spacing: 0.036rem;
    width: 90%;
    text-transform: uppercase;
}

#fully_checked_in {
    display: none;
    width: 100%;
}

#fully_checked_in .content {
    width: 90%;
    margin: 0 auto;
}

#fully_checked_in .content h2 {
    color: #FFF;
    text-align: center;
    font-family: "Review Poster Medium", sans-serif;
    /* font-size: 7.9rem; */
    font-size: clamp(3rem, 17vw, 7.9rem);
    font-style: normal;
    font-weight: 700;
    line-height: 7.7rem;
}

#fully_checked_in .content h3 {
    color: #FFF;
    text-align: center;
    font-family: "Review Wide Bold", sans-serif;
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 4.7rem;
    letter-spacing: -0.09rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

#fully_checked_in .content h4 {
    color: #FFF;
    font-family: "Review Wide Bold", sans-serif;
    font-size: 2.2rem;
    font-style: normal;
    /* margin-top: 0; */
    font-weight: 700;
    line-height: 2.7rem;
    letter-spacing: -0.044rem;
    text-transform: uppercase;
}

#fully_checked_in .content p {
    color: #FFF;
    text-align: center;
    font-family: "Review Condensed Bold", sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.1rem;
    letter-spacing: 0.036rem;
    text-transform: uppercase;
    margin-bottom: 6rem;
    width: 90%;
}

#fully_checked_in .content .small-text-congrats-page {
    margin-bottom: 2rem;
    text-transform: none;
    font-family: "Review Wide Medium", sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.7rem;
    /* 141.667% */
    letter-spacing: 0.024rem;
}

.ambassador_wrapper {
    width: 100%;
    max-width: 60rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 9rem;
}

.ambassador_wrapper h3 {
    width: 32.6rem;
    height: 5.4rem;
    border-radius: 7.05rem;
    border: 1px solid #FFF;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #FFF;
    text-align: center;
    font-family: "Review Wide Regular", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.ambassador_wrapper h2 {
    color: #FFF;
    text-align: center;
    font-family: "Review Poster Medium", sans-serif;
    /* font-size: 7.9rem; */
    font-size: clamp(3rem, 17vw, 7.9rem);
    font-style: normal;
    font-weight: 700;
    line-height: 7.7rem;
    text-transform: uppercase;
    margin-top: 0;
}

.ambassador_wrapper h4 {
    color: #FFF;
    text-align: center;
    font-family: "Review Condensed Medium", sans-serif;
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 3.7rem;
    text-transform: uppercase;
}

.ambassador_wrapper #phone-check {
    max-width: unset;
    width: 90%;
}

.ambassador_wrapper #phone-check .iti {
    max-width: unset;
}

.ambassador_wrapper #phone-check .iti input {
    max-width: unset;
}

#submitted-check {
    display: none;
    width: 100%;
}

.tcs_wrapper {
    width: 95%;
    /* max-width: 60rem; */
    height: 100%;
    margin: 9rem auto;

    color: #fff;
    font-family: "Review Wide Regular", sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 3.7rem;
}

.tcs_wrapper h1 {
    /* color: #d4548e; */
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.tcs_wrapper h2 {
    /* color: #d4548e; */
    margin-top: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
}

.tcs_wrapper p {
    text-align: left;
    margin: 0;
    width: auto;
}

.tcs_wrapper a {
    color: #fff;
    text-decoration: underline;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.highlight {
    background-color: #fff4f8;
    padding: 2px 4px;
    border-radius: 3px;
}

.note {
    font-style: italic;
    color: #666;
}

.flex_1 {
    flex: 1;
}