:root {
    --promo-text-color: #fff;
    --promo-bg-color: linear-gradient(120deg, #64b5f6, #1e88e5);

    --promo-color-white: #fff;
    --promo-color-black: #000;
    --promo-color-blue: linear-gradient(120deg, #64b5f6, #1e88e5);
    --promo-color-orange: linear-gradient(120deg, #ff8a65, #f4511e);
    --promo-color-pink: linear-gradient(120deg, #f06292, #d81b60);
    --promo-color-indigo: linear-gradient(120deg, #8d70d4, #5a35af);
    --promo-color-red: linear-gradient(120deg, #fd676b, #e62323);
    --promo-color-teal: linear-gradient(120deg, #00d6d9, #0f8d98);
}

.frosted-noise:before {
    /*content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    height: 100%;
    background: url(https://arzancell.com/blog/wp-content/uploads/2023/11/noise.png) repeat fixed;
    background-size: 182px;
    opacity: .06;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;*/
}

/* Multi Promotion */
.multi-promo-block {
    position: relative;
    margin: 10px auto;
    direction: rtl;
    overflow: hidden;
}

.multi-promo-block.frosted-noise {
    background: #f6f6f6;
    border-radius: 15px;
    padding: 20px 0;
}

.multi-promo-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.multi-promo-slide-block {
    width: 13.7rem;
    margin: 10px auto;
}

.multi-promo-slide-box {
    position: relative;
    max-width: 300px;
    height: 270px;
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    background: #fff !important;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

.multi-promo-slide-box .multi-promo-header {
    position: relative;
    padding: 0 2px;
}

.multi-promo-slide-box .multi-promo-header::before {
    content: "";
    width: 100%;
    height: 180px;
    padding: 15px 5px;
    position: absolute;
    top: -40px;
    left: 0;
    transform: skewY(20deg);
    border-radius: 10px 10px 0 0;
    filter: brightness(0.9);
    background: inherit;
    box-shadow: 0 10px 10px rgb(0 0 0 / 15%);
}

.multi-promo-slide-box .multi-promo-header::after {
    content: "";
    width: 100%;
    height: 200px;
    padding: 15px 5px;
    position: absolute;
    top: -60px;
    left: 0;
    transform: skewY(-20deg);
    border-radius: 10px 10px 0 0;
    background: inherit;
    box-shadow: 0 10px 10px rgb(0 0 0 / 15%);
}

.multi-promo-title {
    position: relative;
    top: 10px;
    color: #fff;
    line-height: 1.6;
    font-weight: bold;
    z-index: 1;
    font-size: 1.25rem;
}

.multi-promo-subtitle {
    position: relative;
    top: 10px;
    color: #fff;
    line-height: 1.6;
    font-weight: bold;
    z-index: 1;
    font-size: 1rem;
}

.multi-promo-price {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75%;
    height: 80px;
    margin: 0 auto;
    font-size: 0.8rem;
    font-weight: bold;
    border: 6px solid #fff;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
    z-index: 1;
}

.multi-promo-price strong {
    font-size: 2.1rem;
    margin: 0 5px;
    font-family: "iranyekanwebregular", sans-serif;
}

.multi-promo-buy-button {
    position: relative;
    width: 80%;
    display: block;
    margin: 0 auto 20px;
    padding: 10px 16px;
    color: #fff !important;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: all 300ms ease-in;
    box-shadow: 0 10px 15px rgb(0 0 0 / 10%);
}

.multi-promo-buy-button:hover {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.social-promo-block[data-color="blue"],
.multi-promo-slide-box[data-color="blue"] :is(.multi-promo-price, .multi-promo-buy-button, .multi-promo-header) {
    background: var(--promo-color-blue);
}

.social-promo-block[data-color="red"],
.multi-promo-slide-box[data-color="red"] :is(.multi-promo-price, .multi-promo-buy-button, .multi-promo-header) {
    background: var(--promo-color-red);
}

.social-promo-block[data-color="pink"],
.multi-promo-slide-box[data-color="pink"] :is(.multi-promo-price, .multi-promo-buy-button, .multi-promo-header) {
    background: var(--promo-color-pink);
}

.social-promo-block[data-color="teal"],
.multi-promo-slide-box[data-color="teal"] :is(.multi-promo-price, .multi-promo-buy-button, .multi-promo-header) {
    background: var(--promo-color-teal);
}

.social-promo-block[data-color="orange"],
.multi-promo-slide-box[data-color="orange"] :is(.multi-promo-price, .multi-promo-buy-button, .multi-promo-header) {
    background: var(--promo-color-orange);
}

.social-promo-block[data-color="indigo"],
.multi-promo-slide-box[data-color="indigo"] :is(.multi-promo-price, .multi-promo-buy-button, .multi-promo-header) {
    background: var(--promo-color-indigo);
}

.multi-promo-block .slick-arrow {
    background: #83838366 !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50px !important;
    transition: all 200ms ease;
}

.multi-promo-block .slick-arrow:hover {
    background: rgb(255 255 255 / 70%) !important;
}

.multi-promo-block .slick-prev,
.multi-promo-block .slick-next {
    z-index: 1;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 10px !important;
    display: block;
    height: 20px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.multi-promo-block .slick-prev {
    right: 15px !important;
    left: auto !important;
}

.multi-promo-block.slick-next {
    right: auto !important;
    left: 15px !important;
}

.multi-promo-block .slick-prev::before {
    content: "❮";
    /*content: ""*/
}

.multi-promo-block .slick-next::before {
    content: "❯";
    /*content: ""*/
}

.multi-promo-block .slick-prev::before,
.multi-promo-block .slick-next::before {
    font-size: 20px;
    font-family: "slick", sans-serif;
    line-height: 1;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff !important;
}


/* Single Promotion */
.single-promo-block {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    padding: 30px;
    background: var(--promo-bg-color);
    box-shadow: 0 5px 15px rgb(0 0 0 / 35%);
    /*outline: 2px dashed #fff;*/
    /*outline-offset: -10px;*/
    border-radius: 15px;
    overflow: hidden;
}

.single-promo-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /*flex-direction: column;*/
}

.single-promo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.single-promo-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.single-promo-cta {
    position: relative !important;
    background: #fff !important;
    color: #1e88e5 !important;
    font-weight: bold !important;
    padding: 3px 8px !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 10px rgb(0 0 0 / 30%);
    animation: palse 4s infinite;
}

.single-promo-cta:hover, .single-promo-cta:focus {
    background: #1e88e5 !important;
    color: #fff !important;
    transform: translateY(-3px);
}

.single-promo-content {
    color: #fff;
    /*column-count: 2;
    column-gap: 20px;*/
}

.single-promo-content ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 0 !important;
    padding: 0 !important;

}

@media screen and (max-width: 768px) {
    .single-promo-block {
        padding: 15px !important;
    }

    .single-promo-box {
        flex-wrap: wrap;
    }

    .single-promo-title {
        text-align: center;
        line-height: 40px;
    }

    .single-promo-content ul {
        flex-direction: row !important;
        gap: 0 30px;
        margin-top: 20px !important;
    }
}

@keyframes palse {
    0% {
        box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.15);
        /*box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.15);*/
    }

    20% {
        box-shadow: 0 0 1px 8px rgba(255, 255, 255, 0.15);
        /*box-shadow: 0 0 1px 8px rgba(255, 255, 255, 0.15);*/
    }

    50% {
        box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.15);
        /*box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.15);*/
    }

    100% {
        box-shadow: 0 0 100px 2000px transparent
    }
}
