@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
}

.hero {
    background-image: url("http://roulette-cichy.local/content/uploads/2025/10/header.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 70vh;
}
.wheel-section {
    margin-top: 90px;
    position: relative;
    isolation: isolate;
    background-color: #e1221b;
    padding: 64px 0;
}
.wheel-section:before {
    background-image: url("./images/wheel/wheel-top.png");
    content: "";
    position: absolute;
    width: 100%;
    top: -100px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100px;
}
.wheel-section:after {
    background-image: url("./images/wheel/wheel-bottom.png");
    content: "";
    position: absolute;
    width: 100%;
    bottom: -100px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100px;
}
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 10px;
    gap: 10px;
    background: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
h1 {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    flex: none;
    order: 0;
    flex-grow: 0;
    color: #141414;
    text-align: center;
}
h1 span {
    color: #e1221b;
}

/* 
.snowflake {
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px #000;
    pointer-events: none;
}
.snowflake.big {
    font-size: 2em;
}

.snowflake,
.snowflake .inner {
    animation-iteration-count: infinite;
    animation-play-state: running;
}
@keyframes snowflakes-fall {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(110vh);
    }
}
@keyframes snowflakes-shake {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(80px);
    }
}
.snowflake {
    position: fixed;
    top: -10%;
    z-index: 9999;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    animation-name: snowflakes-shake;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
}
.snowflake .inner {
    animation-duration: 10s;
    animation-name: snowflakes-fall;
    animation-timing-function: linear;
}
.snowflake:nth-of-type(0) {
    left: 1%;
    animation-delay: 0s;
}
.snowflake:nth-of-type(0) .inner {
    animation-delay: 0s;
}
.snowflake:first-of-type {
    left: 10%;
    animation-delay: 1s;
}
.snowflake:first-of-type .inner,
.snowflake:nth-of-type(8) .inner {
    animation-delay: 1s;
}
.snowflake:nth-of-type(2) {
    left: 20%;
    animation-delay: 0.5s;
}
.snowflake:nth-of-type(2) .inner,
.snowflake:nth-of-type(6) .inner {
    animation-delay: 6s;
}
.snowflake:nth-of-type(3) {
    left: 30%;
    animation-delay: 2s;
}
.snowflake:nth-of-type(11) .inner,
.snowflake:nth-of-type(3) .inner {
    animation-delay: 4s;
}
.snowflake:nth-of-type(4) {
    left: 40%;
    animation-delay: 2s;
}
.snowflake:nth-of-type(10) .inner,
.snowflake:nth-of-type(4) .inner {
    animation-delay: 2s;
}
.snowflake:nth-of-type(5) {
    left: 50%;
    animation-delay: 3s;
}
.snowflake:nth-of-type(5) .inner {
    animation-delay: 8s;
}
.snowflake:nth-of-type(6) {
    left: 60%;
    animation-delay: 2s;
}
.snowflake:nth-of-type(7) {
    left: 70%;
    animation-delay: 1s;
}
.snowflake:nth-of-type(7) .inner {
    animation-delay: 2.5s;
}
.snowflake:nth-of-type(8) {
    left: 80%;
    animation-delay: 0s;
}
.snowflake:nth-of-type(9) {
    left: 90%;
    animation-delay: 1.5s;
}
.snowflake:nth-of-type(9) .inner {
    animation-delay: 3s;
}
.snowflake:nth-of-type(10) {
    left: 25%;
    animation-delay: 0s;
}
.snowflake:nth-of-type(11) {
    left: 65%;
    animation-delay: 2.5s;
} */

#confetti-canvas {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

#wheel {
    position: relative;
    width: 600px;
    height: 600px;

    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
}

.inner {
    position: relative;
}
.bottom {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.arrow {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("./images/arrow.png");
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    width: 95px;
    height: 55px;
}

#spinButton {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: WHITE;
    color: white;
    border: none;
    font-weight: 800;
    width: 82px;
    height: 82px;
    text-transform: uppercase;
    cursor: pointer;
    isolation: isolate;
    background: #ffffff;
}
#spinButton:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #141414;
    z-index: -1;
}
#spinButton:after {
    content: "";
    position: absolute;
    top: -4%;
    left: -4%;
    right: 0;
    bottom: 0;
    width: 108%;
    height: 108%;
    border-radius: 50%;
    background: #5a5a5a;
    background: linear-gradient(320deg, rgba(90, 90, 90, 1) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: -2;
    transform: translate(-50% -50%);
}

.inner-instructions {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    gap: 32px;

    background: #141414;
    border: 1px solid #e1221b;
    border-radius: 16px;
}
.inner-instructions h3 {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 121.13%;
    /* identical to box height, or 39px */
    text-align: center;
    color: #ffffff;
}
.inner-instructions ul {
    padding-left: 0;
}
.inner-instructions ul li {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.inner-instructions ul li .number {
    width: 51px;
    min-width: 51px;
    height: 51px;
    aspect-ratio: 1;
    left: 0px;
    top: 0px;
    border-radius: 50%;
    background: #e1221b;
    color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-instructions ul li .number span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #141414;
}
.inner-li {
    display: flex;
    flex-direction: column;
}
.inner-li span {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    display: flex;
    align-items: center;
    color: #e1221b;
}
.inner-li p {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;

    color: #ffffff;
}
.popup,
#popupreglement {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(1, 1, 1, 0.5);
}
.popup.active,
#popupreglement.active {
    display: block;
    z-index: 10;
}
.popup-inner {
    width: 40%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 40px 64px;
    gap: 10px;
    background: #fdc209;
    /* Primaire couleur/Bleu Primaire Fraikin */
    border-left: 6px solid #143778;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}
.popupreglement-inner {
    width: 70%;
    height: 80%;
    overflow-y: scroll;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 40px 64px;
    gap: 10px;
    background: #fdc209;
    /* Primaire couleur/Bleu Primaire Fraikin */
    border-left: 6px solid #143778;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}
.popupreglement-inner {
    text-align: left;
    color: #143778;
}
#popupreglement-close {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}
.popup-inner img {
    height: 90px;
}
.popup-inner h2,
.popupreglement-inner h2 {
    
    font-weight: 400;
    font-style: normal;
    font-weight: 800;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0.07em;
    color: #000000;
    margin-bottom: 40px;
   
    text-align: left: 0;;
}
.popupreglement-inner h3 {
    font-family: "Crete Round", serif;
    font-weight: 400;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.07em;
    color: #143778;
    margin-bottom: 30px;
}
.popup-inner p,
.popupreglement-inner p,
.popupreglement-inner li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.07em;
    color: #000000;
    text-align: left;
    margin: 10px;
    padding: 0;
}
.popup-inner p span {
    font-weight: 700;
}
.winning-loose-body{
    background-color: #e1221b;
        height: 60vh;
    justify-content: center;
    align-items: center;
    display: flex;
}

form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}
.winner-form-popup form p{
    display: flex;
    gap: 1rem;
}
.mid-label{
    display: flex;
    flex-direction: column;
    width: 45%;
}
.mid-label input{
    width: 100%;
    padding: 0.5rem;
}
.wpcf7-acceptance label{
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;


}
.screen-reader-response{
    display:none;
}
.wpcf7-acceptance label input{
    width: auto;
}
.wpcf7-submit{
    background-color: #e1221b;
    color: white;
    border: none !important;
}
.winner-form-static form p {
    display: flex;
    justify-content: space-between;
}
.winner-form-static form .wpcf7-submit{
  background: white;
    color: black;
    width: 100%;
    padding: 0.5rem;
    margin-top: 1rem;
}

.winner-pop .size-mid {
    width: 42%;
    padding: 16px;
    background-color: transparent;
    border: 1px solid #143778;
    color: #143778;
    margin-bottom: 16px;
}

.winner-pop .size-mid::placeholder {
    font-size: 12px;
    color: #143778;
    opacity: 1;
}
.winner-pop .size-full {
    width: 100%;
    padding: 16px;
    background-color: transparent;
    border: 1px solid #143778;
    color: #143778;
    margin-bottom: 16px;
}
.winner-pop .size-full::placeholder {
    font-size: 12px;
    color: #143778;
    opacity: 1;
}

.winner-pop #acceptance {
    font-family: "proxima-nova", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.07em;
    color: #143778;
    text-align: left;
    display: flex;
    align-items: flex-start;
}
.winner-pop #acceptance input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.winner-pop #acceptance span {
    min-width: 20px;
    height: 20px;
    border-radius: 4px;
    background-color: white;
    margin-right: 12px;
}
.winner-pop #acceptance input:checked + span {
    background-image: url("images/check.svg");
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center;
}
#winner.hide {
    display: none;
}
.winner-form-popup input{
    border: 1px solid #3c3434 !important;
}
.winner-form-popup .wpcf7-acceptance span{
    font-weight: 400;
    color: black;
}
.popup-win .sentence{
    justify-content: flex-start !important;
    gap: 10px;
}
#sendMail {
    padding: 8px 24px;
    width: 134px;
    background: #143778;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 45px;
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    border: none;
    color: #fdc209;
    line-height: 1;
    margin: auto;
    margin-top: 16px;
    cursor: pointer;
    pointer-events: all;
}
#sendMail:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.how-to-play {
    background-color: white;
    position: relative;
    min-height: 50vh;
    padding: 220px 0;
}
.how-to-play:before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    background-image: url("images/htp/top.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 220px;
}
.how-to-play:after {
    content: "";
    position: absolute;
    width: 100%;
    bottom: -1px;
    background-image: url("images/htp/bottom.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 220px;
}

.how-to-play h2 {
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    color: #143778;
}

.how-to-play ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin: 0;
    padding: 0;
}
.how-to-play li {
    align-items: center;
    padding: 21px 18px;

    width: 220px;
    height: 240px;
    border: 2px solid #143778;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(7px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 43px;
}

.how-to-play li h3 {
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #fdc209;
    text-align: center;
}
.how-to-play li p {
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    text-align: center;

    color: #143778;
}
.how-to-play li .number {
    background-color: #fdc209;
    border-radius: 50%;

    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Primaire couleur/Bleu Primaire Fraikin */
    color: #143778;
    margin: auto;
}
.winnings-section {
    margin: auto;
    margin-bottom: 200px;
    max-width: 1440px;
    position: relative;
    isolation: isolate;
}
.winnings-section:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("./images/decoration2.png");
}
.winnings-section h3 {
    font-family: "Crete Round";
    font-style: normal;
    font-weight: 900;
    font-size: 64px;
    color: #fdc209;
    text-align: center;
}
.winnings-section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 120px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 80%;
    margin: auto;
    justify-content: center;
}
.winnings-section ul li {
    width: 270px;
    position: relative;
}
.winnings-section ul li .winnings-round {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    position: relative;
}
.winnings-section ul li .winnings-round img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
}

.winnings-details-more {
    border: 1px solid #fdc209;
    border-radius: 16px;
    padding: 70px 28px;
    text-align: center;
}
.winnings-details-link {
    text-decoration: none;
}

.winnings-details-more h4 {
    text-align: center;
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 800;
    font-size: 32px;
    color: #fdc209;
    margin: 0;
}
.winnings-details-more p {
    text-align: center;
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    color: #fdc209;
    margin: 0;
}

.winnings-section ul li .winnings-round:before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    box-shadow:
        0px 0px 5px #ffffff,
        0px 0px 5px #ffffff,
        0px 0px 5px #ffffff,
        0px 0px 5px #ffffff,
        0px 0px 5px #ffffff,
        0px 0px 5px #ffffff,
        0px 0px 5px #ffffff,
        0px 0px 5px #ffffff,
        inset 0px 0px 23px #ffffff,
        inset 0px 0px 23px #ffffff,
        inset 0px 0px 23px #ffffff,
        inset 0px 0px 23px #ffffff;
    z-index: 1;
}
.winnings-section ul li .winnings-round:after {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    background-image: url("images/lots/glob.png");
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 1;
}

.winnings-details {
    position: absolute;
    bottom: -10px;

    align-items: center;
    padding: 12px 24px 8px 24px;
    left: 0;
    right: 0;

    background: #fdc209;
    /* inner shadow */
    box-shadow: inset 0px 6px 6px rgba(255, 255, 255, 0.1);
    border-radius: 58px 58px 10px 10px;
    z-index: 1;
}

.winnings-details h4 {
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    line-height: 29px;
    text-align: center;
    text-transform: capitalize;
    color: #143778;
    margin: 0;
    padding: 0;
}
.winnings-details p {
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #143778;
    margin: 0;
    padding: 0;
}

footer {
    border-top: 7px solid #fdc209;
    position: relative;
}
footer:before {
    position: absolute;
    content: "";
    top: -48px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 48px;
    background-image: url("./images/decoration-footer.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}
.footer-inner {
    display: flex;
    max-width: 1440px;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
}
.footer-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.footer-socials {
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
}
.footer-socials ul {
    display: flex;
    padding: 0;
    list-style: none;
    gap: 16px;
}
.footer-socials ul img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-reglement button {
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
}

.popup-inner {
    width: 40%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 40px 64px;
    gap: 10px;
    background: white;
    /* Primaire couleur/Bleu Primaire Fraikin */
    border-left: 6px solid #e1221b;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}
.popup-inner img {
    height: 90px;
}
.popup-close{
    position: absolute;
    right: 2REM;
    TOP: 2rEM;
    BACKGROUND: TRANSPARENT;
    BORDER: NAVAJOWHITE;
    cursor: pointer;
}
.winning-form {
    width: 40%;
    margin: auto;
    text-align: center;
    margin-bottom: 100px;
}

.winning-form h2 {
    font-family: "Crete Round", serif;
    font-weight: 400;
    font-style: normal;
    font-weight: 800;
    font-size: 27px;
    line-height: 32px;
    letter-spacing: 0.07em;
    color: white;
    margin-bottom: 40px;
    text-decoration: underline;
    text-align: center;
}

.winning-form img {
    height: 130px;
    margin: auto;
    margin-top: 20px;
    text-align: center;
}
.winning-form p {
    font-family: "proxima-nova", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.07em;
    color: white;
    text-align: left;
    margin: 10px;
    padding: 0;
}
.winning-form p span {
    font-weight: 700;
}
form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}
.size-mid {
    width: 42%;
    padding: 16px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    margin-bottom: 16px;
}

.size-mid::placeholder {
    font-size: 12px;
    color: white;
    opacity: 1;
}
.size-full {
    width: 100%;
    padding: 16px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    margin-bottom: 16px;
}
.size-full::placeholder {
    font-size: 12px;
    color: white;
    opacity: 1;
}
#acceptance {
    font-family: "proxima-nova", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.07em;
    color: white;
    text-align: left;
    display: flex;
    align-items: flex-start;
}
#acceptance input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
#acceptance span {
    min-width: 20px;
    height: 20px;
    border-radius: 4px;
    background-color: white;
    margin-right: 12px;
}
#acceptance input:checked + span {
    background-image: url("images/check.svg");
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center;
}

button[type="submit"] {
    padding: 8px 24px;
    width: 134px;
    background: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 45px;
    font-family: "proxima-nova";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    border: none;
    color: #fdc209;
    line-height: 1;
    margin: auto;
    margin-top: 16px;
}
.cichy-text-video{
    padding: 128px 0 64px 0;
}
.cichy-text-video h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    color: #141414;
}
.cichy-text-video p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #141414;
    margin: 32px 0;
}
.cichy-text-video a {
    display: block;
}
.cichy-form-image {
    background-color: #e1221b;
    padding: 36px 0;
}
.cichy-form-image img {
    width: 100%;
    aspect-ratio: 1;
}
.cichy-form-image .form-template-one {
    padding: 20px 40px;
    z-index: 10;
    position: relative;
}
.cichy-form-image .form-template-one p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
}
.cichy-form-image .form-template-one label {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}
.cichy-form-image .form-template-one label textarea {
    width: 100%;
    resize: none;
    background: transparent;
    border: 1px solid white;
    font-family: var(--font-body);
    background-color: #fff;
}
.cichy-form-image .form-template-one label input {
    font-family: var(--font-body);
    padding: 8px;
    height: 40px;
    background: transparent;
    border: 1px solid white;
    width: 100%;
    background-color: #fff;
    color: #000;
}
.cichy-form-image .form-template-one .mid-label {
    width: 47%;
}
.cichy-form-image .form-template-one .full-label {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.cichy-form-image .form-template-one .wpcf7-acceptance span {
    padding: 0;
    margin: 0;
}
.cichy-form-image .form-template-one .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-small);
    line-height: 16px;
    color: #fff;
}
.cichy-form-image .form-template-one .wpcf7-acceptance label input {
    height: unset;
    width: unset;
}
.cichy-form-image .form-template-one input[type="submit"] {
    margin: auto;
    padding: 10px;
    border: none;
    background: #141414;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}
.cichy-reassurances {
    background-color: #f5f5f5;
    padding: 36px 0;
}
.cichy-reassurances .cichy-reassurances__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cichy-reassurances .cichy-reassurances__inner img {
    width: 120px;
    aspect-ratio: 1;
    object-fit: contain;
    margin-bottom: 16px;
}
.cichy-reassurances .cichy-reassurances__inner span {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: #141414;
}
.cichy-reassurances .cichy-reassurances__inner p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #141414;
}
.cichy-agencies {
    padding: 32px 0;
}
.cichy-agencies img {
    width: 100%;
}
.cichy-agencies ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
}
.cichy-agencies ul li {
    width: 306px;
    padding: 36px 32px;
    text-align: center;
    background-color: #f5f5f5;
}
.cichy-agencies ul li img {
    width: 120px;
    aspect-ratio: 1;
}
.cichy-agencies ul li p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #141414;
    text-decoration: none;
}
.cichy-agencies ul li p span {
    color: #e1221b;
}
.cichy-agencies ul li .agency-card__address p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #141414;
}
.cichy-agencies ul li .agency-card__address a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #141414;
}
.cichy-footer {
    background-color: #141414;
    padding: 45px 0;
}
.cichy-footer .row {
    justify-content: space-between;
    align-items: center;
}
.cichy-footer img {
    width: 280px;
    aspect-ratio: unset;
    height: auto;
}
.cichy-footer .cichy-footer-p p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    text-align: left;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 20px;
}
.cichy-footer .cichy-footer-p .cichy-footer_flex {
    display: flex;
    align-items: center;
    gap: 32px;
}
.cichy-footer .cichy-footer-p .cichy-footer_flex a img {
    width: 181px;
}
.cichy-form__image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cichy-form__image .flex-images {
    position: absolute;
    width: 80%;
}
.cichy-form__image .flex-images p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.02em;
    color: #fff;
}
.cichy-form__image .flex-images .cichy-small {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 32px;
    text-align: center;
    color: #fff;
}
.cichy-footer-two {
    padding: 10px 0;
}
.cichy-footer-two .col-12 {
    text-align: center;
}
.cichy-footer-two a {
    text-decoration: none;
    font-size: 10px;
    color: #141414;
    margin-right: 10px;
}


.inner-ajax{
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}
.inner-ajax h2{
    color: white;
}

@media screen and (max-width: 1460px) {
    .popup-inner {
        padding: 40px 15px;
    }
    .popup-inner img {
        height: 110px;
    }
    .popup-inner h2 {
        line-height: 1;
        margin-bottom: 20px;
        margin-top: 0;
    }
}

@media screen and (max-width: 1280px) {
    .popup-inner {
        padding: 40px 15px;
    }
    .popup-inner img {
        height: 110px;
    }
    .popup-inner h2 {
        line-height: 1;
        margin-bottom: 20px;
        margin-top: 0;
    }
}
@media screen and (max-width: 1200px) {
    .winning-form.without-popup {
        width: 60%;
    }
    .popup-inner {
        width: 70%;
        height: fit-content;
    }
    .popup-inner img {
        display: none;
    }
    .popup-inner h2,
    .popupreglement-inner h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
    h1 {
        font-size: 45px;
    }
    #wheel,
    #wheelCanvas {
        width: 500px !important;
        height: 500px !important;
    }
    .arrow {
        width: 80px;
        height: 61px;
    }
    #wheel:after {
        height: 230px;
    }
    .how-to-play ul {
        flex-wrap: wrap;
        gap: 0;
    }
    .how-to-play li {
        width: 45%;
        margin-bottom: 20px;
    }
    .winnings-section ul {
        width: 90%;
        gap: 20px;
    }
    .winnings-section ul li {
        width: 45%;
    }
    .winnings-section ul li .winnings-round {
        width: 100%;
        height: unset;
        aspect-ratio: 1;
        overflow: hidden;
    }
    .winnings-section ul li .winnings-round:before {
        width: 100%;
        height: unset;
        aspect-ratio: 1;
    }
    .winnings-section ul li .winnings-round:after {
        width: 100%;
        height: unset;
        aspect-ratio: 1;
    }
    .winnings-details {
        padding: 8px 20px;
    }
    .winnings-details h4 {
        font-size: 18px;
        line-height: 1;
    }
    .bottom {
        width: 65%;
    }
    .footer-inner {
        flex-direction: column;
    }
    .footer-socials ul {
        justify-content: center;
    }
    .popup-inner,
    .popupreglement-inner {
        width: 90%;
    }
    .winning-form {
        width: 90%;
    }
    .wheel-section {
        margin-top: 10px;
    }
    .size-mid {
        width: 37%;
    }
}
@media screen and (max-width: 568px) {
    h1 {
        font-size: 30px;
    }
    .arrow {
        width: 70px;
        height: 51px;
    }
    #wheel,
    #wheelCanvas {
        width: 400px !important;
        height: 400px !important;
    }
    #wheel:after {
        height: 230px;
    }
    .how-to-play ul {
        flex-wrap: wrap;
        gap: 0;
        width: 90%;
        margin: auto;
    }
    .how-to-play li {
        width: 100%;
        margin-bottom: 20px;
    }
    .winnings-section ul {
        width: 90%;
        gap: 20px;
    }
    .winnings-section ul li {
        width: 45%;
    }
    .winnings-section ul li .winnings-round {
        width: 100%;
        height: unset;
        aspect-ratio: 1;
        overflow: hidden;
    }
    .winnings-section ul li .winnings-round:before {
        width: 100%;
        height: unset;
        aspect-ratio: 1;
    }
    .winnings-section ul li .winnings-round:after {
        width: 100%;
        height: unset;
        aspect-ratio: 1;
    }
    .winnings-details {
        padding: 8px 20px;
    }
    .winnings-details h4 {
        font-size: 18px;
        line-height: 1;
    }
    .bottom {
        width: 90%;
    }
    .footer-inner {
        flex-direction: column;
    }
    .footer-socials ul {
        justify-content: center;
    }

    .popup-inner {
        width: 90%;
        padding: 5px;
        transform: unset;
        top: 0;
        left: 0;
        width: 100%;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    .winning-form {
        width: 90%;
    }
    .wheel-section {
        margin-top: 10px;
    }
}
@media screen and (max-width: 440px) {
    .winner-pop .size-mid,
    .winner-pop .size-full,
    .size-mid,
    .size-full {
        width: 85%;
        margin: auto;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 420px) {
    header {
        padding: 20px;
    }
    header img {
        width: 110px;
    }
    h1 {
        font-size: 24px;
    }
    #wheel,
    #wheelCanvas {
        width: 350px !important;
        height: 350px !important;
    }
    #wheel:before {
        width: 350px;
        height: 350px;
    }
    #wheel:after {
        height: 175px;
    }
    .how-to-play {
        padding: 100px 0;
    }
    .how-to-play:before,
    .how-to-play:after {
        height: 100px;
    }
    .how-to-play ul {
        flex-wrap: wrap;
        gap: 0;
    }
    .how-to-play li {
        width: 100%;
        height: unset;
        margin-bottom: 20px;
    }
    .winnings-section {
        margin-bottom: 40px;
    }
    .winnings-section h3 {
        font-size: 22px;
    }
    .winnings-section ul {
        width: 90%;
        gap: 20px;
    }
    .winnings-section ul li {
        width: 45%;
    }
    .winnings-section ul li .winnings-round {
        width: 100%;
        height: unset;
        aspect-ratio: 1;
        overflow: hidden;
    }
    .winnings-section ul li .winnings-round:before {
        width: 100%;
        height: unset;
        aspect-ratio: 1;
    }
    .winnings-section ul li .winnings-round:after {
        width: 100%;
        height: unset;
        aspect-ratio: 1;
    }
    .winnings-details {
        padding: 8px 20px;
    }
    .winnings-details h4 {
        font-size: 14px;
        line-height: 1;
    }
    .winnings-details p {
        font-size: 11px;
    }
    .bottom {
        width: 90%;
    }
    .footer-logo img {
        width: 140px;
        margin-top: 1rem;
    }
    .footer-inner {
        flex-direction: column;
    }
    .footer-socials ul {
        justify-content: center;
    }
    .popup-inner,
    .popupreglement-inner {
        width: 100%;
        padding: 5px;
    }

    .winner-pop .size-mid,
    .winner-pop .size-full {
        width: 85%;
        margin: auto;
        margin-bottom: 10px;
    }
    .winning-form {
        width: 90%;
    }
    .wheel-section {
        margin-top: 10px;
    }
    #acceptance {
        width: 85%;
        margin: auto;
    }
    .popup-inner img {
        height: 100px;
    }
    .popup-inner h2 {
        margin: 0;
        margin-bottom: 10px;
    }
}
