* {
    --bonusSection-color-start: #2f4066;
    --bonusSection-color-end: #46568b;
}

.section01 {
    width: 100%;
    position: relative;
    display: block;
    padding-top: 50px;
    padding-bottom: 170px;

    margin-top: 180px;

    min-height: 650px;
    background: linear-gradient(to bottom, var(--bonusSection-color-start) 0px, var(--bonusSection-color-end) 1000px);
}

.section01::after {
    position: absolute;
    content: '';
    left: 0;
    top: -120px;
    height: 120px;
    width: 100%;
    background-color: var(--bonusSection-color-start);

    clip-path: polygon(
        0 98%, /* left top */
        100% 0, /* right top */ 
        100% 100%, /* right bottom */
        0 100% /* left bottom */
    );
}

.section01::before {
    position: absolute;
    content: '';
    left: 0;
    top: -120px;
    height: 120px;
    width: 100%;
    background-color: var(--bonusSection-color-start);
    opacity: 0.6;

    clip-path: polygon(
        0 0, /* left top */
        100% 100%, /* right top */ 
        100% 100%, /* right bottom */
        0 100% /* left bottom */
    );
}

@media (max-width: 1200px) {
    .section01 {
        margin-top: 80px;
        padding-top: 0px;
    }

    .section01::after {
        top: -50px;
        height: 50px;
    }

    .section01::before {
        top: -40px;
        height: 40px;
    }

    .quickFilter {
        margin-top: 25px;
    }
}


.offer-container .offer {
    margin-bottom: 24px !important;
}

.offer-container .offer .mainInfos .infos {
    flex-direction: column;
    justify-content: center;
    /*padding: 10px 0;*/
}

.offer-container .offer .mainInfos .infos .mainText {
    font-size: 36px;
    white-space: nowrap;
    width: 100%;
    margin: 0;
}

.offer-container .offer .mainInfos .infos .mainText .bigText {
    color: #FFD700;
    font-weight: bold;
    font-size: 54px;
}

.offerDetails .bodyContainer .bonusInfos {
    display: flex;
    flex-direction: column;
}

.offer-list .offer .infos p.subText, .offerDetails .bodyContainer .bonusInfos p.subText {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-shadow: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-list .offer .infos span, .offerDetails .bodyContainer .bonusInfos span {
    font-size: 16px;
}

.offer-list .offer .infos p.subText .xbold, .offerDetails .bodyContainer .bonusInfos p.subText .xbold {
    font-size: 18px;
    font-weight: 500;
}

.offer-container .offer .bottomSection1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    /*gap: 8px;*/
    padding: 12px 14px;
    color: #fff;
    border-top: 2px solid #FFD700;
}

.offer-container .offer .bottomSection1 .subText {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    width: 100%;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-container .offer .bottomSection1 .subText .xbold {
    font-weight: 600;
    font-size: 20px;
}

.offer-container .offer .bottomSection1 .benefitsList {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #fff;
    justify-content: center;
}

.offer-container .offer .bottomSection1 .benefitsList > span {
    display: flex;
    align-items: center;
}

.offer-container .offer .bottomSection1 .benefitsList > span .xicon {
    color: #FFD700;
    margin-right: 4px;
    font-weight: bold;
}

.offer-container .offer .bottomSection1 .benefitsList > span img {
    height: 1.6em;
    margin-left: 6px;
}

.offer-container .offer .bottomSection2 {
    background-color: #1a1c20;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 0 0 10px 10px;
}

.offer-container .offer .bottomSection2 p {
    width: 100%;
    text-align: center;
    color: #fff;
}

.offer-container .offer .bottomSection2 p .goldText {
    color: #FFD700;
    font-weight: bold;
    font-size: 18px;
}

@media (min-width: 950px) {
    .noDesktop {
        display: none;
    }
}

@media (max-width: 950px) {
    .noMobile {
        display: none;
    }

    .offer-container .offer .mainInfos .infos .mainText {
        white-space: normal;
        font-size: 25px;
    }

    .offer-container .offer .mainInfos .infos .mainText .bigText,
    .offerDetails .bonusInfos .mainText .bigText {
        color: #FFD700;
        font-weight: bold;
        font-size: 36px !important;
    }

    .offer-container .offer .toggleDetails {
        width: 100%;
        text-align: center;
    }
}