
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}

#adsArea {
    width: 300px;
    height: 250px;
    overflow: hidden;
    position: relative;
    color: #fff;
    background-clip: content-box;
    background-color: #bb2a2f;
    cursor: pointer;
}


#preloader {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 101;
    width: 300px;
    height: 250px;
    background: #bb2a2f;
}

.linePreloader {
    width: 150px;
    height: 10px;
    background: linear-gradient(to right, #8a2024, #a1191d);
    background-color: #fff;
    margin: auto;
    border-radius: 10px;
    background-size: 20%;
    background-repeat: repeat-y;
    background-position: -20% 0;
    animation: scroll 1.2s ease-in-out infinite;
    position: relative;
    top: 48%;
}

@keyframes scroll {
    50% {
        background-size: 80%;
    }
    100% {
        background-position: 125% 0;
    }
}

.abs {
    position: absolute;
}

.banner {
    width: 300px;
    height: 250px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 12px;
}


.screen-1, .screen-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.screen-1::before {
    display: block;
    position: absolute;
    top: 70%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: url(../img/hand.png) no-repeat center / 100%;
    content: '';
    transform: translate(-50%,-40%);
    z-index: 15;
    /* animation: swipe 1s infinite; */
    pointer-events: none;
    transition: opacity 0.2s;
}


.banner_start .screen-1::before {
    opacity: 0;
    display: none;
}

.screen-1 {
    z-index: 2;
}

.screen-2 {
    background: url(../img/bg.png) no-repeat center;
    z-index: 1;
    opacity: 0;
}

.scratch-container {
    width: 100%;
    height: 100%;
}

.sc__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@keyframes swipe {
    0% {
        transform: translate(-10%,-40%) rotate(-20deg);
    }
    50% {
        transform: translate(-90%,-40%) rotate(-20deg);
    }
    100% {
        transform: translate(-40%,-40%) rotate(-20deg);
    }
}

#logo {
    position: absolute;
    left: 10px;
    top: 0;
    z-index: 15;
    max-width: 50px;
}


.banner_start #wipeText {
    display: none;
}

#wipeText {
    position: absolute;
    width: 300px;
    left: 0;
    top: 47%;
    z-index: 15;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #cf2531;
    text-shadow: 1px 1px 1px white;
    transition: 0.35s;
    pointer-events: none;
}

#weather {
    top: 5px;
    right: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

#weatherIcon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 24px;
    margin-left: 5px;
    background-position: center center;
    background-size: 120%;
    background-repeat: no-repeat;
    background-image: url(../img/cloud.png);
}

#weatherIcon.icon-01d {
    background-image: url(../img/icons/01d@2x.png);
}

#weatherIcon.icon-02d {
    background-image: url(../img/icons/02d@2x.png);
}

#weatherIcon.icon-03d {
    background-image: url(../img/icons/03d@2x.png);
}

#weatherIcon.icon-04d {
    background-image: url(../img/icons/04d@2x.png);
}

#weatherIcon.icon-09d {
    background-image: url(../img/icons/09d@2x.png);
}

#weatherIcon.icon-10d {
    background-image: url(../img/icons/10d@2x.png);
}

#weatherIcon.icon-11d {
    background-image: url(../img/icons/11d@2x.png);
}

#weatherIcon.icon-13d {
    background-image: url(../img/icons/13d@2x.png);
}

#weatherIcon.icon-50d {
    background-image: url(../img/icons/50d@2x.png);
}

#product {
    left: 110px;
    top: 19px;
}

#cta {
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    padding: 6px 15px;
    width: 140px;
    margin-left: -70px;
    border-radius: 15px;
    border: 1px solid #ff0;
    background-color: red;
    cursor: pointer;
    animation-delay: -.6s;
    color: #fff;
    bottom: 10px;
    left: 50%;
    text-transform: uppercase;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 50%);
    font-weight: 700;
    animation: pulseItem 1.2s linear infinite;
    text-align: center;
}

@keyframes pulseItem {
    0%,
    100%,
    50% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(0, 0) scale(0.95);
    }
    75% {
        transform: translate(0, 0) scale(1.05);
    }
}

.opacity0 {
    opacity: 0;
}

#insect {
    bottom: 40px;
    right: 90px;
}

#logo2 {
    position: absolute;
    right: 10px;
    bottom: 15px;
    z-index: 15;
    animation: pulseItem 1.2s linear infinite;
}

#alertText {
    top: 50px;
    left: 65px;
    width: 230px;
    height: 95px;
    background-position: left top;
    background-size: contain;
    background-repeat: no-repeat;
}

.rainAlert {
    background-image: url(../img/rain-alert.png);
}

.rainNow {
    background-image: url(../img/rain-now.png);
}