* {
    font-family: sans-serif;
}

.socks * {
    padding: 0 !important;
    margin: 0 !important;
}

.socks {
    max-width: 471px;
    width: 100%;
    /* height: 554px; */
    margin: 0 auto !important;
}

.socks__title {
    width: 100%;
    height: 127px;
    background: url(../images/bsck-title.png), no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    text-align: center !important;
    font-size: 30px !important;
    font-weight: 600;
    margin: 0 auto !important;
    transition: 0.2s;
    padding: 10px !important;
    box-sizing: border-box;
}

.sock__win__title {
    border-radius: 17px;
    border: 3px solid #cf0c11;
    height: 154px;
    max-width: 404px;
    width: 100%;
    margin: 0 auto !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px !important;
    font-weight: 700;
    margin-top: 40px !important;
}

.sock__win__title p {
    margin-bottom: 20px !important;
    text-align: center !important;
}

.socks__win__btn {
    border-radius: 11px;
    background: #cf0c11;
    cursor: pointer;
    width: 87.888px;
    height: 26.271px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    border: none;
}

.socks__gradient {
    width: 100%;
    height: 43px;
    background: linear-gradient(180deg,
            #fff 40.21%,
            rgba(255, 255, 255, 0) 100%);
}

.socks__draw {
    width: 100%;
    height: 351px;
    background: url(../images/back-socks.webp), lightgray 50% / cover no-repeat;
    background-blend-mode: luminosity;
    overflow: hidden;
}

.socks__items {
    padding-top: 60px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.socks__item {
    width: 144px;
    cursor: pointer;
    animation: tilt-shaking 1s linear infinite;
}

@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0eg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.socks__prizes {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: 0.2s;
}

.socks__prizes img {
    position: relative;
}

.socks__prizes img:first-child {
    top: -80px;
}

.socks__prizes img:nth-child(2) {
    left: -60px;
}

.socks__product {
    background: url(../images/back-socks.webp), lightgray 50% / cover no-repeat;
    background-blend-mode: luminosity;
    height: 219px;
    padding-top: 24px !important;
}

.socks__gradient__reverse {
    width: 100%;
    height: 70px;
    background: linear-gradient(180deg,
            #fff 40.21%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(180deg);
    position: relative;
}

.socks__product-block {
    width: 168px;
    height: 171px;
    margin: auto !important;
}

p.order__title {
    padding-top: 20px !important;
    color: #000 !important;
    text-align: center !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
}

.input-roulette {
    max-width: 358.311px !important;
    width: 100% !important;
    height: 41.253px !important;
    border-radius: 8px !important;
    background: #e7a3a5 !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
    border: none !important;
    color: #000 !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    padding-left: 20px !important;
}

.input-roulette::placeholder {
    color: #000 !important;
}

.submit-roulette {
    width: 221px !important;
    height: 41px !important;
    border-radius: 14px !important;
    background: #cf0c11 !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
    color: #fff !important;
    text-align: center !important;
    font-size: 20px !important;
    border: none !important;
    margin-top: 10px !important;
    cursor: pointer !important;
}

.order__form {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding-bottom: 50px !important;
    padding: 0 10px !important;
}

.close__draw {
    visibility: hidden;
    height: 0;
    opacity: 0;
    padding: 0 !important;
}

.socks__order {
    transition: 0.2s;
}

.socks__item.active {
    animation: tilt-shaking-active 1s linear;
}

@keyframes tilt-shaking-active {
    0% {
        transform: translate(0%, 0%) rotate(0deg);
    }

    100% {
        transform: translate(100%, 150%) rotate(360deg);
    }
}

.hi {
    width: 158px;
    height: 158px;
    background: radial-gradient(50% 50% at 50% 50%,
            #fff 37.6%,
            rgba(255, 255, 255, 0) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    position: absolute;
    top: 20%;
}

.hi p {
    color: #000;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    transition: 1s;
}

.not-active {
    visibility: hidden;
}

.hi p.active {
    color: #c64833;
    transform: scale(1.3);
}

@media screen and (max-width: 500px) {
    .socks__block {
        padding: 0 10px !important;
    }

    .socks__item {
        width: 120px;
    }

    .socks__prizes img:first-child {
        width: 100px;
    }

    .socks__prizes img:nth-child(2) {
        width: 80px;
    }

    .socks__prizes img:nth-child(3) {
        width: 138px;
    }

    .hi {
        width: 120px;
        height: 120px;
        top: 55px;
    }

    .hi p {
        font-size: 30px;
        font-weight: 700;
    }

    .socks__draw {
        height: 300px;
    }

    .sock__win__title {
        margin-top: 0 !important;
        position: relative;
        top: 40px;
    }
}

@media screen and (max-width: 374px) {
    .socks__item {
        width: 100px;
    }

    .hi {
        width: 100px;
        height: 100px;
    }
}

div.eu-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    font-size: 22px;
    font-weight: 700;
    font-family: sans-serif;
    margin: 20px auto 0 !important;
    z-index: 99999;
}

div.eu-prices-old {
    position: relative
}

div.eu-prices-old::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    top: 40%;
    left: 0;
    background: #000
}

div.eu-prices-new span {
    color: #f80000
}