#Capa_1 {
    width: 200px;
    height: 300px;
    top: 20px;
    position: relative;
}
.hover {
    fill: #111;
    transition: all 1.5s;
    transform: rotate(0deg);
    transform-origin: center;
}
.hover:hover {
    fill: red;
    transition: all 1.5s;
    transform: rotate(5deg);
    transform-origin: center;
}

.wheel__inner::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 10px solid white;
    border-radius: 100%;
    position: absolute;
}

.pag-promos {
    width: 100%;
    height: auto;
    padding: 0 32px;
    min-height: 500px;
    max-width: 1280px;
    margin: auto;
}

.pag-promos .flex {
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}
.detaliipromo {
    width: 100%;
    display: block;
    height: 0px;
    overflow-y: hidden;
    padding: 30px 30px 40px 30px;
    line-height: inherit;
    font-weight: 500;
    font-size: var(--text);
    opacity: 0;
}

.detaliipromo a {
    margin-top: -10px;
    display: block;
}

.activepromo .detaliipromo {
    display: block;
    height: auto;
    opacity: 1;
}

.promodiv {
    cursor: pointer;
    width: 370px;
    margin: 0 1% 30px 1%;
    height: 260px;
    border-radius: 10px;
    background: var(--background2);
    position: relative;
    transition: all 0s;
    list-style: none;
    box-shadow: var(--shadow);
}

.activepromo {
    box-shadow: 0 0px 3px 0px var(--maincolor);
    height: auto !important;
}

.readpromo {
    color: var(--textcolor);
    font-size: var(--text);
    background-color: transparent;
    position: absolute;
    bottom: 20px;
    margin: auto;
    padding: 0;
    left: 0;
    right: 0;
}

.promodiv h4 {
    height: 50px;
    display: block;
    text-align: center;
    padding-top: 10px;
}

.promodiv img {
    width: 100%;
    filter: hue-rotate(-21deg);
    display: block;
}

@-webkit-keyframes heartbeat {
    from {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }
    100% {
        scale: 1;
    }
}
@keyframes heartbeat {
    from {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }
    100% {
        scale: 1;
    }
}

.head {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    width: 250px;
    height: 250px;
    position: relative;
}

.imgwin {
    width: 100%;
    margin: auto;
    display: block;
    max-width: 300px;
}
.dolarwin {
    position: relative;
    font-size: 70px;
    font-weight: 700;
    font-family: arial;
    color: #444;
    display: block;
    width: 100px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    height: 100px;
    margin: auto;
    margin-left: 50%;
    line-height: 100px;
    top: 0px;
    text-align: center;
    transform: translateX(-50%);
    margin-bottom: -100px;
    margin-top: 20px;
    left: 0px;
    z-index: 1;
}
.roatap {
    font-size: var(--text);
}

.face {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    width: 250px;
    height: 250px;
    position: relative;
}

.face__happy {
    animation: happy-look 5s infinite;
}

.face__sad {
    margin-top: -50px;
    animation: sad-look 5s infinite;
}

.face__happy .eye-left {
    width: 25px;
    height: 25px;
    background-color: #000;
    border-radius: 50%;
    top: 75px;
    left: 45px;
    position: absolute;
    animation: blink 5s infinite;
}

.face__happy .eye-right {
    width: 25px;
    height: 25px;
    background-color: #000;
    border-radius: 50%;
    top: 75px;
    right: 45px;
    position: absolute;
    animation: blink 5s infinite;
}

.face__happy .mouth {
    width: 100px;
    height: 50px;
    border-style: solid;
    border-radius: 50%;
    border-width: 8px;
    border-color: transparent transparent #000 transparent;
    left: 68px;
    top: 75px;
    position: absolute;
    animation: happy-mouth 5s infinite;
}

.face__sad .eye-left {
    width: 25px;
    height: 25px;
    background-color: #000;
    border-radius: 50%;
    top: 150px;
    left: 45px;
    position: absolute;
    animation: blink 5s infinite;
    animation-delay: 3.7s;
}

.face__sad .eye-right {
    width: 25px;
    height: 25px;
    background-color: #000;
    border-radius: 50%;
    top: 150px;
    right: 45px;
    position: absolute;
    animation: blink 5s infinite;
    animation-delay: 3.7s;
}

.face__sad .mouth {
    width: 100px;
    height: 50px;
    border-style: solid;
    border-radius: 50%;
    border-width: 8px;
    border-color: #000 transparent transparent transparent;
    left: 68px;
    top: 186px;
    position: absolute;
    animation: sad-mouth 5s infinite;
}

@keyframes blink {
    0% {
        transform: scale(1, 1);
    }
    10% {
        transform: scale(1, 1);
    }
    12% {
        transform: scale(1, 0.1);
    }
    14% {
        transform: scale(1, 1);
    }
    30% {
        transform: scale(1, 1);
    }
    32% {
        transform: scale(1, 0.1);
    }
    34% {
        transform: scale(1, 1);
    }
    60% {
        transform: scale(1, 1);
    }
    62% {
        transform: scale(1, 0.1);
    }
    64% {
        transform: scale(1, 1);
    }
}

@keyframes happy-look {
    0% {
        transform: translate(0px, 0px);
    }
    10% {
        transform: translate(10px, 0px);
    }
    20% {
        transform: translate(10px, 0px);
    }
    30% {
        transform: translate(0px, 0px);
    }
    60% {
        transform: translate(0px, 0px);
    }
    70% {
        transform: translate(-10px, -15px);
    }
    80% {
        transform: translate(-10px, -15px);
    }
    90% {
        transform: translate(0px, 0px);
    }
}

@keyframes happy-mouth {
    0% {
        height: 50px;
    }
    10% {
        height: 50px;
    }
    20% {
        height: 50px;
    }
    30% {
        height: 50px;
    }
    60% {
        height: 50px;
    }
    70% {
        height: 40px;
    }
    80% {
        height: 40px;
    }
    90% {
        height: 50px;
    }
}

@keyframes sad-look {
    0% {
        transform: translate(0px, 0px);
    }
    15% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(0px, -25px);
    }
    35% {
        transform: translate(0px, -25px);
    }
    45% {
        transform: translate(0px, 0px);
    }
    70% {
        transform: translate(0px, 0px);
    }
    80% {
        transform: translate(-15px, -25px);
    }
    90% {
        transform: translate(-15px, -25px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes sad-mouth {
    0% {
        height: 25px;
    }
    15% {
        height: 25px;
    }
    25% {
        height: 50px;
    }
    35% {
        height: 50px;
    }
    45% {
        height: 25px;
    }
    70% {
        height: 25px;
    }
    80% {
        height: 50px;
    }
    90% {
        height: 50px;
    }
    100% {
        height: 25px;
    }
}

.rule {
    padding: 50px 0;
}
.rule__content {
    display: flex;
}
.rule__color {
    width: 50px;
    height: 50px;
    margin: 0 20px 20px 0;
}
.rule .color-1 {
    background-color: #16a085;
}
.rule .color-2 {
    background-color: #2980b9;
}
.rule .color-3 {
    background-color: #34495e;
}
.rule .color-4 {
    background-color: #f39c12;
}
.rule .color-5 {
    background-color: #d35400;
}
.rule .color-6 {
    background-color: #c0392b;
}
.rule .color-7 {
    background-color: #333;
}

.wheel {
    height: 250px;
    width: 250px;
    max-height: 309px;
    border: 5px solid var(--maincolor);
    margin: 0px auto;
    border-radius: 50%;
    box-shadow: 0 0 9px 0 #aaa;
    position: relative;
}
.wheel__inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: cubic-bezier(0.19, 1, 0.22, 1) 5s;
}
.wheel__sec {
    position: absolute;
    left: calc(50% - 74px);
    width: 0;
    z-index: 0;
    height: 0;
    top: -28px;
    border: solid;
    border-width: 150px 74px 0;
    border-color: transparent;
    transform-origin: 50% 100%;
}
.wheel__sec:nth-child(1) {
    border-top-color: #e6fdf7;
}
.wheel__sec:nth-child(2) {
    border-top-color: #d3faf0;
    transform: rotate(52deg);
}
.wheel__sec:nth-child(3) {
    border-top-color: #e6fdf7;
    transform: rotate(104deg);
}
.wheel__sec:nth-child(4) {
    border-top-color: var(--maincolor);
    transform: rotate(156deg);
}
.wheel__sec:nth-child(4)::before {
    position: relative;
    content: "$ 1";
    font-weight: 600;
    font-size: 25px;
    display: block;
    color: white;
    margin-top: -97px;
    margin-left: -20px;
    width: 40px;
    text-align: center;
}
.wheel__sec:nth-child(5) {
    border-top-color: #d3faf0;
    transform: rotate(208deg);
}
.wheel__sec:nth-child(6) {
    border-top-color: #e6fdf7;
    transform: rotate(260deg);
}
.wheel__sec:nth-child(7) {
    border-top-color: #d3faf0;
    transform: rotate(312deg);
}
.wheel__text {
    margin: 70px 0 0 70px;
}

.titlu-roata {
    color: var(--maincolor) !important;
    margin-bottom: 30px !important;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    padding-top: 30px;
    font-size: var(--title) !important;
}

.spinnow {
    font-size: 25px;
    width: 100%;
    border-radius: 10px;
    background: #e6fdf7;
    max-width: 300px;
    height: 80px;
    line-height: 80px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    margin: auto;
    position: relative;
    padding-left: 30px;
    color: var(--maincolor);
}

.bazap span {
    position: relative;
    width: 11px;
    display: inline-block;
    height: 11px;
    top: 1px;
    left: -3px;
    background: var(--maincolor);
    border-radius: 30px;
    color: white !important;
    font-weight: 900 !important;
    margin: 0px !important;
    text-align: center;
    padding: 0 !important;
}
.spinnow img {
    height: 40px;
    left: 5px;
    position: absolute;
    top: 5px;
}

.spinnow span {
    position: absolute;
    left: 50px;
    text-align: left;
    top: 27px;
    color: #fff;
    border-radius: 5px;
    background: #44b840;
    padding: 0 5px;
}
.wheel__arrow {
    width: 30%;
    height: 30%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Open sans", sans-serif;
}
.spinanim {
    transform: rotate(200deg) translateX(60%) !important;
    top: -110px !important;
}
.wheel__arrow img {
    position: absolute;
    width: 30px;
    left: 50%;
    top: -116px;
    z-index: 2;
    transition: 0.1s;
    transform: rotate(180deg) translateX(50%);
}
.wheel__button {
    width: 100%;
    padding: 0;
    height: 100%;
    background: var(--maincolor);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    font-size: 18px;
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

/* ----------------------------------------------
* Generated by Animista on 2023-4-19 0:21:15
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation heartbeat
* ----------------------------------------
*/
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}
@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.wheel__button:active {
    background: radial-gradient(circle, #5097db 0%, #2675aa 70%, #1e6492 100%);
}
.popup {
    position: fixed;
    width: 30vw;
    top: 0;
    left: 50%;
    transform: translate(-50%, -110%);
    background: #fff;
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    transition: all 0.5s;
    opacity: 0;
}
.popup.active {
    transform: translate(-50%, 0);
    opacity: 1;
}
.popup__emotion {
    color: #f39c12;
    text-align: center;
    font-size: 30px;
    margin: 0 0 25px 0;
}
.popup__note {
    text-align: center;
}
.congratulation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    display: none;
}
.congratulation__container {
    width: 40vw;
    padding: 30px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.congratulation__close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #c0392b;
    cursor: pointer;
    transition: all 0.5s;
}
.congratulation__close:hover {
    transform: rotate(360deg);
}
.congratulation__emotion {
    color: #f39c12;
    text-align: center;
    margin: 0 0 20px 0;
}
.congratulation__note {
    text-align: center;
}

.svgObj {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 212px;
    height: 60px;
    fill: #187199;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.arrow1 {
    position: absolute;
    top: 0px;
    left: 0px;
    scale: 0.6;
    width: 70px;
    height: 80px;
    -webkit-animation: arrow1 16s both infinite;
    animation: arrow1 16s both infinite;
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.arrow2 {
    position: absolute;
    top: 0px;
    left: 0px;
    scale: 0.6;
    width: 70px;
    height: 80px;
    -webkit-animation: arrow2 16s both infinite;
    animation: arrow2 16s both infinite;
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@keyframes arrow1 {
    0% {
        left: 0%;
        transform: rotate(0deg);
        opacity: 0;
    }
    13.25%,
    14.75% {
        opacity: 1;
    }
    13%,
    14%,
    15.5%,
    100% {
        left: 80%;
        transform: rotate(0deg);
    }
    45%,
    75% {
        left: 80%;
        transform: rotate(0deg);
    }
    45.5%,
    75.5% {
        left: 80%;
        transform: rotate(3deg);
    }
    46%,
    76% {
        left: 80%;
        transform: rotate(-3deg);
    }
    46.5%,
    76.5% {
        left: 80%;
        transform: rotate(3deg);
    }
    47%,
    77% {
        left: 80%;
        transform: rotate(0deg);
    }
    95% {
        opacity: 1;
        left: 80%;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0;
        left: 80%;
        transform: rotate(0deg);
    }
}

@keyframes arrow2 {
    0% {
        transform: rotate(0deg);
        left: 0;
        opacity: 0;
    }
    4% {
        transform: rotate(0deg);
        opacity: 0;
        left: 0;
    }
    13.25%,
    14.75% {
        opacity: 1;
    }
    13%,
    14%,
    15.5%,
    100% {
        transform: rotate(0deg);
        opacity: 1;
        left: 70%;
    }
    45%,
    75% {
        left: 70%;
        transform: rotate(0deg);
    }
    45.75%,
    75.75% {
        left: 70%;
        transform: rotate(3deg);
    }
    46.5%,
    76.5% {
        left: 70%;
        transform: rotate(-3deg);
    }
    48%,
    78% {
        left: 70%;
        transform: rotate(3deg);
    }
    49%,
    79% {
        left: 70%;
        transform: rotate(0deg);
    }
    95% {
        opacity: 1;
        left: 70%;
        transform: rotate(0deg);
    }
    100% {
        opacity: 0;
        left: 70%;
        transform: rotate(0deg);
    }
}

@media only screen and (max-width: 1024px) {
    .promodiv {
        width: 100%;
        height: 200px;
        margin: 0 1% 30px 1%;
    }
    .promodiv img {
        max-width: 400px;
        display: block;
        margin: auto;
    }
    .activepromo .detaliipromo {
        display: block;
        height: auto;
        opacity: 1;
    }
    .hide-on-mobile {
        display: none !important;
    }
    .activepromo {
        height: auto !important;
    }
}
