@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shine-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

:root {
    --purple-content-background-color: #7570B2;
    --blue-content-background-color: #00728C;
    --header-background-color: #292E3F;
    --calendar-door-color: #317039;
    --calendar-door-color-special: #C01413;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    background-color: #EBEDF5;
}

.mt-60 {
    margin-top: 60px;
}

.inline-text {
    display: inline-block;
}

.relative {
    position: relative;
}

.wrap {
    overflow: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

header.header {
    background-color: var(--header-background-color);
    padding: 10px 0;

    & > div {
        padding: 0 15px;

        a {
            display: block;
        }
    }
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: block;
    padding: 14px 30px;
    gap: 10px;
    border-radius: 40px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
    background-color: #94D14F;
    color: #000;
    text-decoration: none;

    @media screen and (max-width: 1023px) {
        max-width: 320px;
        width: 100%;
    }

    &:hover {
        background-color: #A1E456;
    }
}

.hero {
    position: relative;
    padding: 50px 85px 85px 85px;
    background: radial-gradient(51.79% 61.57% at 23.54% 36.3%, #B5ADF8 15.87%, #8A83C9 66.83%, #7570B2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 20px;

    @media screen and (max-width: 1023px) {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding: 23px 14px 0 14px;
    }

    & img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    & > .hero__col {
        position: relative;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        z-index: 1;
        width: 100%;

        @media screen and (min-width: 769px) and (max-width: 1023px) {
            max-width: 768px;
        }

        @media screen and (min-width: 601px) and (max-width: 768px) {
            max-width: 600px;
        }

        @media screen and (min-width: 481px) and (max-width: 600px) {
            max-width: 480px;
        }

        @media screen and (max-width: 480px) {
            max-width: 320px;
        }

        & .hero__e-ticket {
            display: block;

            @media screen and (max-width: 1023px) {
                display: none;
            }

            & > img {
                margin-right: 20px;
                display: inline-block;
                height: 32px;

                @media screen and (max-width: 1023px) {
                    display: none;
                }
            }
        }

        & .hero__e-ticket-mobile {
            display: none;

            @media screen and (max-width: 1023px) {
                display: block;
            }

            & > img {
                display: inline-block;
                margin-right: 20px;

                @media screen and (max-width: 600px) {
                    height: 23px;
                    margin: 0;
                }
            }
        }

        & .hero__col--image-text {
            flex-shrink: 0;
            flex-basis: auto;
            margin-bottom: 8px;

            @media screen and (max-width: 1023px) {
                display: none;
            }
        }

        &.hero__col--image {
            flex-shrink: 0;
            flex-basis: auto;
            max-width: 300px;

            @media screen and (max-width: 1023px) {
                display: none;
            }
        }

        &.hero__col--image-mobile {
            display: none;

            @media screen and (max-width: 1023px) {
                display: block;
            }

            & img {
                margin: 0 auto;
            }
        }
    }

    & p {
        color: #000;
        font-family: 'Roboto', sans-serif;
        font-size: 19px;
        font-style: normal;
        font-weight: 400;
        letter-spacing: 4%;

        @media screen and (max-width: 1023px) {
            font-size: 15px;
            font-weight: 500;
            line-height: 110%;
        }

        &.hero__text--big {
            text-shadow: 1px 3px 4px rgba(0, 0, 0, 0.50);
            font-size: 39px;
            font-weight: 700;
            letter-spacing: 2%;

            @media screen and (min-width: 1024px) {
                margin-bottom: 16px;
            }

            @media screen and (max-width: 1023px) {
                font-size: 28px;
                padding-bottom: 10px;
                line-height: 107%;
            }

            & span {
                display: inline-block;
            }

            & .hero__text--big--highlight {
                display: inline-block;
                color: #FFF;
                font-size: 49px;
                letter-spacing: 2%;

                @media screen and (max-width: 1023px) {
                    font-size: 24px;
                    letter-spacing: 0.48px;
                }
            }
        }
    }

    & .hero__buttons {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;

        @media screen and (min-width: 1024px) {
            margin-top: 40px;
        }

        @media screen and (max-width: 1023px) {
            margin-top: 19px;
            padding-bottom: 35px;
            justify-content: center;
            gap: 19px;
        }

        & * {
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: auto;
        }

        & img {
            @media screen and (max-width: 600px) {
                height: 40px;
            }
        }

        &.align-left {
            @media screen and (max-width: 480px) {
                justify-content: left;
            }
        }
    }
}

.game {
    padding: 60px 0 25px 0;
    background: url("/images/game-bg.png") no-repeat center top #9DC649;
    position: relative;

    @media screen and (max-width: 1023px) {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding: 40px 0;
    }

    @media screen and (min-width: 481px) and (max-width: 768px) {
        background: url("/images/game-bg-mobile.png") no-repeat center top #9DC649;
    }

    @media screen and (max-width: 480px) {
        background: url("/images/game-bg-mobile-0.png") no-repeat center top #9DC649;
    }

    & > .sky {
        display: flex;
        margin: 0 85px;

        @media screen and (max-width: 1023px) {
            display: block;
            margin: 0 14px 40px;
        }

        & img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        & > .sky__box {
            flex: 1 1 50%;

            @media screen and (min-width: 769px) and (max-width: 1023px) {
                max-width: 768px;
                margin: 0 auto;
            }

            @media screen and (min-width: 601px) and (max-width: 768px) {
                max-width: 600px;
                margin: 0 auto;
            }

            @media screen and (min-width: 481px) and (max-width: 600px) {
                max-width: 480px;
                margin: 0 auto;
            }

            @media screen and (max-width: 480px) {
                max-width: 320px;
                margin: 0 auto;
            }

            & p {
                font-family: 'Roboto', sans-serif;
                font-weight: 400;
                font-size: 23px;
                color: #000;
                line-height: 110%;
                letter-spacing: 4%;

                @media screen and (max-width: 1023px) {
                    font-size: 16px;
                }
            }

            &.sky__box--texts {
                @media screen and (max-width: 1023px) {
                    padding-bottom: 30px;
                    margin: 0 auto;
                }
            }

            & .sky__box--title {
                display: flex;
                gap: 10px;
                align-items: center;
                margin-bottom: 10px;

                @media screen and (max-width: 480px) {
                    gap: 8px;
                }

                & > p {
                    font-weight: 700;
                    font-size: 37px;
                    vertical-align: middle;

                    @media screen and (min-width: 481px) and (max-width: 1023px) {
                        font-size: 30px;
                    }

                    @media screen and (max-width: 480px) {
                        font-size: 25px;
                    }
                }

                & .sky__box--extra-chance {
                    flex-shrink: 0;
                }
            }

            & .sky__box--subtitle {
                font-weight: 700;
                font-size: 25px;
                margin-bottom: 12px;

                @media screen and (min-width: 481px) and (max-width: 1023px) {
                    font-size: 21px;
                }

                @media screen and (max-width: 480px) {
                    font-size: 16px;
                }
            }

            &.sky__box--cloud {
                text-align: -webkit-center;
            }
        }
    }

    & > .rabbit {
        margin-top: 65px;
        background: url("/images/rabbit.png") no-repeat center top;
        height: 450px;

        @media screen and (min-width: 481px) and (max-width: 1023px) {
            margin-top: 0;
            background: url("/images/rabbit-mobile.png") no-repeat center top;
            height: 326px;
        }

        @media screen and (max-width: 480px) {
            margin-top: 0;
            background: url("/images/rabbit-mobile-0.png") no-repeat center top;
            height: 350px;
        }

        & p {
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            font-size: 23px;
            color: #fff;
            line-height: 110%;
            letter-spacing: 4%;
            text-align: left;

            @media screen and (max-width: 1023px) {
                font-size: 16px;
            }
        }

        & > .rabbit--title {
            font-family: "Abhaya Libre", serif;
            font-weight: 500;
            font-size: 60px;
            line-height: 78%;
            letter-spacing: 0;
            padding-top: 25px;
            text-shadow: 1px 3px 4px rgba(0, 0, 0, 0.50);
            text-align: center;

            @media screen and (min-width: 481px) and (max-width: 1023px) {
                font-size: 30px;
                padding-top: 20px;
            }

            @media screen and (max-width: 480px) {
                font-size: 30px;
                padding-top: 15px;
            }

            & span {
                font-size: 68px;

                @media screen and (max-width: 1023px) {
                    font-size: 35px;
                }
            }
        }

        & > .rabbit--text {
            padding-top: 60px;
            width: 680px;
            margin: 0 auto;

            @media screen and (min-width: 481px) and (max-width: 1023px) {
                padding-top: 25px;
                max-width: 420px;
            }

            @media screen and (max-width: 480px) {
                padding-top: 30px;
                max-width: 292px;
            }
        }
    }

    & > .eggs {
        display: flex;
        flex-wrap: wrap;
        gap: 19px;
        padding: 9px;
        counter-reset: eggs-counter;
        counter-set: eggs-counter 0;
        user-select: none;
        max-width: 1024px;
        margin: 0 auto;

        @media screen and (min-width: 768px) and (max-width: 1023px) {
            max-width: 768px;
            gap: 15px;
            padding: 7.5px 14px;
        }

        @media screen and (min-width: 601px) and (max-width: 768px) {
            max-width: 601px;
            gap: 13px;
            padding: 7.5px 14px;
        }

        @media screen and (min-width: 481px) and (max-width: 600px) {
            max-width: 481px;
            gap: 17px;
            padding: 7.5px 14px;
        }

        @media screen and (max-width: 480px) {
            padding: 7.5px 14px;
            max-width: 320px;
            gap: 14px;
        }

        & .eggs__item {
            position: relative;
            aspect-ratio: 1/1;
            width: 100%;
            height: 100%;
            max-width: 185px;
            max-height: 185px;
            counter-increment: eggs-counter;

            @media screen and (min-width: 601px) and (max-width: 1023px) {
                max-width: 133px;
                max-height: 133px;
            }

            @media screen and (max-width: 600px) {
                max-width: 139px;
                max-height: 139px;
            }

            &.eggs__item--last {
                max-width: 590px;
                aspect-ratio: auto;
                height: 139px;

                @media screen and (max-width: 1023px) {
                    max-width: 380px;

                    & img {
                        max-width: unset;
                        width: 99%;
                    }
                }

                @media screen and (min-width: 769px) and (max-width: 1023px) {
                    max-width: 428px;
                    height: 133px;
                }

                @media screen and (min-width: 601px) and (max-width: 768px) {
                    max-width: 281px;
                    height: 133px;
                }

                @media screen and (min-width: 481px) and (max-width: 600px) {
                    max-width: 296px;
                }

                @media screen and (max-width: 480px) {
                    max-width: 292px;
                }
            }

            &.eggs__item--active {
                cursor: pointer;

                &:not(:hover) {
                    animation: pulse-animation 2s infinite;
                }
            }

            & a {
                position: absolute;
                display: block;
                width: 100%;
                height: 100%;
                z-index: 1;
                top: 0;
                left: 0;
            }

            & img {
                max-width: 100%;
                height: auto;
                display: block;
                width: 100%;
            }
        }

        & .fence {
            position: absolute;
            width: 901px;
            height: 214px;
            background: url('/images/fence.png?1') no-repeat center top;
            bottom: 0;
            right: 0;
            background-size: contain;

            @media screen and (min-width: 1101px) and (max-width: 1188px) {
                right: -100px;
            }

            @media screen and (min-width: 1024px) and (max-width: 1100px) {
                right: -180px;
            }

            @media screen and (min-width: 901px) and (max-width: 1023px) {
                height: 160px;
                right: -120px;
            }

            @media screen and (min-width: 769px) and (max-width: 900px) {
                height: 160px;
                right: -180px;
            }

            @media screen and (min-width: 601px) and (max-width: 768px) {
                height: 160px;
                right: -350px;
            }

            @media screen and (min-width: 481px) and (max-width: 600px) {
                display: none;
            }

            @media screen and (min-width: 320px) and (max-width: 480px) {
                background: url('/images/fence-mobile.png?1') no-repeat center top;
                width: 151px;
                height: 159px;
            }
        }
    }
}

.text__content--purple {
    background-color: var(--purple-content-background-color);
    color: #000;
    padding: 40px 14px 60px;

    & h2 {
        color: #000;
        text-align: center;
        font-family: 'Roboto', sans-serif;
        font-size: 38px;
        font-style: normal;
        font-weight: 700;
        line-height: 110%;
        letter-spacing: 1.52px;
        margin-bottom: 40px;

        @media screen and (max-width: 1023px) {
            font-size: 25px;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }
    }

    & p > a {
        color: #000;
        text-decoration: underline;
    }

    & > p {
        color: #000;
        font-family: 'Roboto', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        letter-spacing: 0.96px;
        margin-left: auto;
        margin-right: auto;
        max-width: 1027px;

        &:not(:last-child) {
            margin-bottom: 24px;
        }

        @media screen and (max-width: 1023px) {
            font-size: 15px;
            letter-spacing: 0.6px;

            &:not(:last-child) {
                margin-bottom: 15px;
            }
        }

        @media screen and (min-width: 768px) and (max-width: 1023px) {
            max-width: 768px;
        }

        @media screen and (min-width: 601px) and (max-width: 768px) {
            max-width: 601px;
        }

        @media screen and (min-width: 481px) and (max-width: 600px) {
            max-width: 481px;
        }

        @media screen and (max-width: 480px) {
            max-width: 320px;
        }
    }

    & .text__content--purple__content {
        display: flex;
        align-items: center;
        gap: 30px;
        max-width: 1024px;
        margin: 0 auto 40px;

        @media screen and (max-width: 1023px) {
            flex-direction: column;
            gap: 20px;
            margin: 0 auto 20px;
        }

        & > div {
            &:first-child {
                @media screen and (min-width: 1024px) {
                    flex: none;
                }
            }

            &:last-child {
                @media screen and (min-width: 768px) and (max-width: 1023px) {
                    max-width: 768px;
                }

                @media screen and (min-width: 601px) and (max-width: 768px) {
                    max-width: 601px;
                }

                @media screen and (min-width: 481px) and (max-width: 600px) {
                    max-width: 481px;
                }

                @media screen and (max-width: 480px) {
                    max-width: 320px;
                }
            }
        }

        & .text__content--purple__content__highlight {
            color: #FBD6DB;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.50);
            font-family: "Abhaya Libre", serif;
            font-style: normal;
            font-weight: 800;
            font-size: 70px;
            line-height: 110%;
            letter-spacing: 1.4px;

            @media screen and (max-width: 1023px) {
                font-family: "Abhaya Libre", serif;
                font-size: 52px;
                letter-spacing: 1.04px;
            }

            & span {
                font-size: 51px;
                letter-spacing: 1.02px;
                line-height: 100%;

                @media screen and (max-width: 1023px) {
                    font-family: "Abhaya Libre", serif;
                    font-size: 40px;
                    letter-spacing: 0.8px;
                }
            }
        }

        & .text__content--purple__content__simple {
            color: #000;
            font-family: 'Roboto', sans-serif;
            font-size: 21px;
            font-style: normal;
            font-weight: 400;
            line-height: 110%;
            letter-spacing: 0.84px;

            @media screen and (max-width: 1023px) {
                font-size: 15px;
                letter-spacing: 0.6px;
            }
        }
    }

    & .text__content--purple__grid_content {
        max-width: 1024px;

        @media screen and (min-width: 1024px) {
            gap: 93px;
            margin: 0 auto 60px auto;
        }

        @media screen and (max-width: 1023px) {
            margin: 0 auto 20px auto;
        }

        @media screen and (min-width: 700px) {
            gap: 34px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        & .text__content--purple__grid_content__item {
            max-width: 280px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 34px;
            margin: 0 auto;

            @media screen and (max-width: 1023px) {
                max-width: 188px;
                gap: 12px;
            }

            @media screen and (max-width: 700px) {
                &:not(:last-child) {
                    margin-bottom: 20px;
                }
            }

            & p {
                color: #000;
                text-align: center;
                font-family: 'Roboto', sans-serif;
                font-size: 22px;
                font-style: normal;
                font-weight: 500;
                line-height: 110%;
                letter-spacing: 0.44px;

                @media screen and (max-width: 1023px) {
                    font-size: 15px;
                    letter-spacing: 0.3px;
                }

                &.text__content--purple__grid_content__item__title {
                    color: #000;
                    text-align: center;
                    font-family: 'Roboto', sans-serif;
                    font-size: 26px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 110%;
                    letter-spacing: 0.52px;
                    border-radius: 8px;
                    background: #FFF;
                    padding: 10px;

                    @media screen and (max-width: 1023px) {
                        font-size: 18px;
                        letter-spacing: 0.36px;
                    }
                }
            }
        }
    }

    & .text__content--purple__cta {
        display: flex;
        place-content: center;
        margin-bottom: 124px;

        @media screen and (max-width: 1023px) {
            margin-bottom: 40px;
        }
    }

    & .text__content--purple__buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 80px;
        justify-content: center;
        align-items: center;

        @media screen and (max-width: 1023px) {
            gap: 20px;
        }
    }
}

footer {
    font-family: 'Roboto', sans-serif;
    color: #FFF;

    a {
        display: inline-block;
        white-space: nowrap;
        color: #FFF;
        text-decoration: none;
        font-weight: bold;
    }

    & .footer__top {
        background-color: #2a2e3f;
        padding: 35px 0;

        & .footer__top__inner {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            justify-content: space-between;

            @media screen and (max-width: 1023px) {
                flex-direction: column;
                gap: 20px;
                align-items: center;
                text-align: center;
            }

            & > div {
                flex: 1 1 100%;

                &.footer__top__left {
                    & ul {
                        margin: 0;
                        padding: 0;
                        list-style: none;
                        display: flex;
                        align-items: center;
                        gap: 30px;


                        @media screen and (max-width: 1023px) {
                            flex-direction: column;
                            gap: 20px;
                            align-items: center;
                            text-align: center;
                        }

                        & li {
                            & a {
                                text-decoration: none;
                                color: #FFF;
                                display: flex;
                                align-items: center;

                                img {
                                    margin-right: 6px;
                                    filter: brightness(0) saturate(100%) invert(94%) sepia(9%) saturate(3559%) hue-rotate(24deg) brightness(88%) contrast(82%);
                                    max-height: 20px;
                                }
                            }
                        }
                    }
                }

                &.footer__top__right {
                    text-align: right;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-end;


                    @media screen and (max-width: 1023px) {
                        flex-direction: column;
                        align-items: center;
                        text-align: center;
                    }

                    ul {
                        margin: 0;
                        padding: 0;
                        list-style: none;
                        display: flex;
                        align-items: center;
                        gap: 10px;

                        & li {
                            & a {
                                text-decoration: none;
                                display: block;

                                img {
                                    filter: brightness(0) saturate(100%) invert(94%) sepia(9%) saturate(3559%) hue-rotate(24deg) brightness(88%) contrast(82%);
                                    height: 28px;
                                }
                            }
                        }
                    }
                }
            }
        }

        & p {
            font-family: 'Oswald', sans-serif;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
    }

    & .footer__bottom {
        background: #93cf2c;
        text-align: center;
        padding: 40px 0;

        p {
            text-align: left;
            font-size: 12px;
        }

        & .footer__bottom__inner {
            max-width: 1200px;
            padding: 0 15px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;

            @media screen and (max-width: 1023px) {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 30px;
            }
        }

        & .footer__bottom__item {
            display: flex;
            align-items: center;
            gap: 10px;

            @media screen and (max-width: 1023px) {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                gap: 0;

                p {
                    text-align: center;
                }
            }

            & .footer__bottom__item__logo--18 img {
                width: 56px;
                height: 56px;
            }
        }
    }
}

.egg-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;

    & img {
        max-width: 100%;
        height: auto;
    }

    &.egg-modal--visible {
        display: flex;
    }

    & .egg-modal__overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    & .egg-modal__content {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 1024px;
        margin: 0 16px;
        padding: 24px 20px 20px;
        border-radius: 16px;
        background-image: url("/images/modal-bg.png");
        background-repeat: repeat;
        background-size: auto;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
        box-sizing: border-box;

        @media (max-width: 480px) {
            padding: 20px 16px 16px;
            border-radius: 12px;
        }

        & .egg-modal__scroll {
            max-height: calc(90vh - 40px);
            overflow-y: auto;
        }

        & .egg-modal__close {
            position: absolute;
            top: -14px;
            right: -12px;
            width: 32px;
            height: 32px;
            padding: 0;
            border: none;
            background: transparent url("/images/close.png") no-repeat center center;
            background-size: contain;
            cursor: pointer;
        }

        & .egg-modal__body {
            font-family: 'Roboto', sans-serif;
            color: #000;
            text-align: center;
        }

        & .egg-modal__title {
            margin: 0 0 16px;
            font-weight: 700;
            font-size: 45px;
            line-height: 110%;
            letter-spacing: 4%;

            @media screen and (max-width: 634px) {
                font-size: 20px;
            }
        }

        & .egg-modal__text {
            margin-bottom: 20px;
            font-size: 26px;
            line-height: 110%;
            letter-spacing: 4%;

            @media screen and (max-width: 634px) {
                font-size: 15px;
            }
        }

        & .egg-modal__egg {
            width: 100%;
            height: 375px;
            max-width: 400px;
            margin: 0 auto 20px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            cursor: pointer;
            overflow: hidden;
            position: relative;
            user-select: none;

            @media screen and (max-width: 448px) {
                max-width: 256px;
                margin-bottom: 0;
                height: 268px;
            }

            & .egg-modal__e-ticket {
                max-width: 400px;
                margin: 0 auto;

                @media screen and (max-width: 448px) {
                    margin-bottom: 20px;
                }

                & img {
                    opacity: 0;
                    transition: opacity 1.2s ease-out;
                }
            }

            & > .egg-modal__shine {
                width: 100px;
                height: 100px;
                position: absolute;
                top: 60px;
                left: 105px;

                @media screen and (max-width: 448px) {
                    width: 50px;
                    height: 50px;
                    top: 65px;
                    left: 80px;
                }

                & img {
                    width: 100%;
                    opacity: 0;
                }
            }

            & > .egg-modal__logo,
            & > .egg-modal__golden_logo {
                width: 50%;
                float: left;

                & img {
                    max-height: 100px;
                    width: auto;
                    position: relative;
                    top: 180px;
                    opacity: 0;
                    transition:
                        top 1.2s ease-out,
                        opacity 1.2s ease-out;

                    @media screen and (max-width: 448px) {
                        max-height: 70px;
                    }
                }

                & .egg-modal__logo_animation {
                    top: 35px;
                    opacity: 1;

                    @media screen and (max-width: 448px) {
                        top: 20px;
                    }
                }
            }

            & > .egg-modal__cta {
                width: 100%;
                float: left;
                display: none;

                & > .btn {
                    background: #FFAF1C;
                    color: #000;
                    width: 100%;
                    max-width: 300px;
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    bottom: 0;

                    @media screen and (max-width: 448px) {
                        margin-top: 30px;
                    }

                    &:hover {
                        background: #FFCE1C;
                    }
                }
            }

            & > .egg-modal__egg--shine {
                & img {
                    animation: shine-pulse 3.5s ease-in-out infinite;
                }
            }
        }
    }
}

.gtmBanner  {
	display: none;
}
