/* STYLES FOR PROMOTIONS LIST BLOCK */

.latest-promotions.container {
    max-width: 1142px;
    padding: 25px 0;
}

/* Promotion list section */

.promotion-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: flex-start;
    padding: 0 16px;
}

/* Promotion card section */

.promotion-card {
    width: 255px;
    height: 242px;
    margin: 15px;
    background: #FFFFFF;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.promotion-card:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.bs-promotion-card {
    width: 255px;
}
.timeicon {
    padding: 8px 8px 16px 8px;
    display: flex;
    gap: 8px;
}
.timeicon > div {
    height: 22px;
    background: #DDD6FE;
    box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
    border-radius: 36px;
    padding: 0 9px;
    color: #5B21B6;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 22px;
    display: flex;
    gap: 4px;
    justify-content: space-between;
}
.icon-date {
    width: 12px;
    background-image: url('../Images/icons/calendar.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 44%;
}
.icon-time {
    width: 12px;
    background-image: url('../Images/icons/clock.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.promotion-card__content {
    padding: 8px 8px 16px;
    height: 53px;
    overflow: hidden;
}
.promotion-card__content__static {
    padding: 8px 8px 16px;
    height: 90px;
    overflow: hidden;
}

.promotion-card__image {
    /* width: 100%; */
    width: 255px;
    height: 144px;
    object-fit: cover;
}

.promotion-card__title {
    font-weight: 900;
    font-size: 14px;
    line-height: 19px;
    color: #2F2F32;
}

.promotion-card__description {
    margin-top: 8px;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #2F2F32;
}

/* STYLES FOR SINGLE PROMOTION PAGE */

/* Hero block section */

.single-promotion-hero {
    padding: 0 0 40px;
    overflow: hidden;
}

.single-promotion-hero__wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.single-promotion-hero__wrapper .btn {
    margin-top: 32px;
}

.btn-optedIn {
    color: var(--system-green);
    padding-left: 40px;
    background-image: url(../Images/icons/success.svg);
    background-repeat: no-repeat;
    background-position: 7px center;
    background-color: #FFFFFF;
}
.btn-opt {
    display: block;
}

.btn-opted {
    display: none;
}

/* Single promotion image section */

.single-promotion-image {
    /* width: 100%; */
    /*height: 383px;*/
}

.single-promotion-image img {
    /* width: auto; */
    width: 1110px;
    height: 100%;
    object-fit: cover;
}

#drop-wins-img {
    /* object-fit: contain; */
}

/* Single promotion description section */

.single-promotion-description {
    display: flex;
    flex-direction: column;
    /* padding: 40px 16px; */
    padding: 40px 0;
}

.single-promotion-description.container {
    /* max-width: 1132px; */
    max-width: 1110px; 
}

.single-promotion-description .btn {
    margin: 26px auto;
}

.single-promotion-description__article h4 {
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    color: #2F2F32;
    margin: 0;
    padding: 0;
}

.single-promotion-description__article h5 {
    font-weight: 900;
    font-size: 20px;
    line-height: 32px;
    text-transform: capitalize;
    color: #2F2F32;
    margin: 0;
    padding: 0;
}

.single-promotion-description__article p, li {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: #2F2F32;
}

.single-promotion-description__article {
    font-size: 16px;
}

.single-promotion-description__article h3 {
    font-weight: bold;
}

.single-promotion-description__article p {
    line-height: 1.5;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.single-promotion-description__article ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 40px;
}

.single-promotion-description__article ul li {
    display: list-item;
    text-align: -webkit-match-parent;
}


/* STYLES FOR FAQ BLOCK */

.frequently-asked-questions .title h3,
.promotion-terms .title h3 {
    color: #000000;
    font-size: 24px;
    line-height: 32px;
}

.frequently-asked-questions .title,
.promotion-terms .title {
    justify-content: center;
}
.frequently-asked-questions .container {
    max-width: 1142px;
    margin: auto;
    padding: 0 16px;
}

/* FAQ list section */

.faq-list {
    margin: auto;
}

/* FAQ dropdown item section */

.faq-item {
    padding: 24px;
    background-color: #FFFFFF;
    margin-bottom: 8px;
}

.faq-item__opened .faq-item__description {
    display: block;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item__head {
    display: flex;
    justify-content: space-between;
}

.faq-item__title {
    width: calc(100% - 32px);
    font-weight: 900;
    font-size: 16px;
    line-height: 21px;
    display: flex;
    align-items: center;
    color: #2F2F32;
}

.faq-item__description {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    font-family: 'Poppins', 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    color: #2F2F32;
}

.faq-item__description p {
    margin: 16px 0 0 0;
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.faq-item__icon--plus {
    background-image: url("../Images/icons/icon-accordian-plus.svg");
}

.faq-item__icon--minus {
    background-image: url("../Images/icons/icon-accordian-minus.svg");
}


/* STYLES FOR TERMS AND CONDITIONS BLOCK */

.promotion-terms .container {
    padding: 0 16px;
    max-width: 1142px;
}

.terms-content ul {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #2F2F32;
    padding-left: 16px;
}

.terms-content li {
    list-style: none;
}

.terms-content li:before {
    content:"·";
    font-size: 32px;
    vertical-align: middle;
    line-height: 21px;
    margin: 0 4px 0 0;
}

/* Terms typography section */

.terms-content h4 {
    font-weight: 900;
    font-size: 20px;
    line-height: 32px;
    text-align: left;
    text-transform: capitalize;
    color: #2F2F32;
}

.terms-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #2F2F32;
    margin-bottom: 16px;
}

.terms-content p:last-child {
    margin-bottom: 0;
}

/* Different sizes to keep promotions list centered with paddings */

@media only screen and (max-width: 1200px) {
    .latest-promotions.container {
        max-width: 860px;
    }
}
@media only screen and (max-width: 1120px) {
    .single-promotion-description {
        padding: 40px 16px;
    }
}
@media only screen and (max-width: 900px) {
    .latest-promotions.container {
        max-width: 575px;
    }
}

@media only screen and (max-width: 744px) {
    .promotion-list {
        justify-content: center;
    }

    .promotion-terms,
    .frequently-asked-questions {
        padding: 16px 0;
    }

    .terms-content h4 {
        font-size: 16px;
        line-height: 20px;
    }

    .frequently-asked-questions .title h3,
    .promotion-terms .title h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .single-promotion-description__article h4 {
        font-size: 16px;
        line-height: 21px;
    }
    .single-promotion-description__article h5 {
        font-size: 12px;
        line-height: 21px;
    }
    .bs-container_hero {
        width: 100%;
        padding: 0 0 16px;
    }
}

@media only screen and (max-width: 320px) {
    .faq-list {
        padding: 0;
    }
}
