.slider_ds_wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.slider_ds {
    width: 100%;
    height: 500px;
    max-height: 500px;
    position: relative;
    overflow: hidden;
}

.slider_ds_slide {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    background-color: var(--background-color);
    background-size: cover;
    background-image: var(--background);
    background-position: center;
}

.slide_content_wrapper {
    width: 1400px;
    overflow: hidden;
    display: flex;
    height: 500px;
}

.slide_content {
    flex: 0 0 50%;
    display: flex;
    align-items: center;

}

.slide_content_left {
    color: #000;
    font-size: 1.4em;
    flex-direction: column;
    align-items: normal;
    justify-content: center;
    padding-left: 30px;
}

.slide_content_headline {
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--custom-font-color);
}

.slide_content_textbox {
    width: 90%;
    color: var(--custom-font-color);
}

.slide_content_textbox_coupon_value {
    color: var(--custom-font-color);
    font-weight: 900;
}

.slide_content_textbox_coupon_products {
    font-weight: 900;
}

.slide_content_actions {
    margin-top: 20px;
}

.slide_content_actions .slide_content_action {
    display: inline-block;
    margin-bottom: 10px;
    user-select: initial;
}

.slide_content_actions .slide_content_action.slide_content_action_link {
    background-color: #fff;
    margin-right: 20px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 0.7em;
}

.slide_content_actions .slide_content_action.slide_content_action_link:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slide_content_action_link > a, .slide_content_action_link > span{
    display: inline-block;
    color: #000000;
    text-decoration: none;
    padding: 12px 30px;
    color: var(--custom-font-color);
    background-color: var(--background-color);
}

.slide_content_actions .slide_content_action.slide_content_action_coupon_code {
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-right: 20px;
    cursor: text;
    user-select: text;
    color: var(--custom-font-color);
}

.slide_content_right img {
    width: 100%;
}

.slide-smooth {
    transition: ease-in-out 1s;
}

.slide2 {
    background-color: rgb(107, 154, 168);
}

#sliderDsBtnPrev, #sliderDsBtnNext {
    width: 60px;
    height: 100%;
    border: none;
    background-color: rgba(66, 66, 66, 0);
    font-size: 30px;
    color: rgb(255, 255, 255);
    position: absolute;
    z-index: 10;
    cursor: pointer;
    transition: ease-in-out .1s;
    padding: 0;
}

#sliderDsBtnPrev:hover, #sliderDsBtnNext:hover {
    /*background-color: rgba(66, 66, 66, 0.1);*/
}

#sliderDsBtnPrev {
    left: 0;
}

#sliderDsBtnNext {
    right: 0;
}

#sliderDsBtnPrev span, #sliderDsBtnNext span{
    width: 30px;
    height: 46px;
    background-color: rgba(66, 66, 66, 0.1);
    display: inline-block;
    border-radius: 6px;
}

#sliderDsBtnPrev:hover span, #sliderDsBtnNext:hover span {
    background-color: rgba(66, 66, 66, 0.4);
}


.slider-navbar {
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-navbar button {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 1);
    border: none;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 6px;
    flex: 0 0 12px;
    padding: 0;
}

.slider-navbar button.slider-navbar_cur-btn {
    background-color: #777;
}

.slider-navbar_autoplay button.slider-navbar_cur-btn {
    animation: 3s linear autoSlideFill;
}

.slider-navbar button:not(.slider-navbar_cur-btn):hover {
    background-color: rgb(255, 255, 255);
}

#block {
    width: 100px;
    height: 100px;
    position: absolute;
    background-color: rgb(141, 99, 99);
    right: 50px;
    bottom: 50px;
}

#btn {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 50px;
    bottom: 150px;
}

.slide_content_countdown {
    display: flex;
    margin-bottom: 20px;
}

.slide_content_countdown > div {
    color: var(--custom-font-color);
    background: var(--background-color);
    padding: 5px;
    margin-right: 15px;
    text-align: center;
    border-radius: 5px;
}

.slide_content_countdown > div .value {
    font-size: 24px;
    font-weight: 600;
}
.slide_content_countdown > div .label {
    font-size: 10px;
}

.coupon-teaser-more-info-link {
    padding: 12px 30px;
}

@media screen and (max-width: 940px) {
    .slider_ds_slide {
        background-image: var(--mobile-background);
    }

    .slide_content_action_link > a, .slide_content_action_link > span{
        color: var(--custom-font-color-mobile);
        background-color: var(--background-color-mobile);
    }

    .slide_content_headline {
        color: var(--custom-font-color-mobile);
    }


    .slide_content_textbox {
        color: var(--custom-font-color-mobile);
    }

    .slide_content_textbox_coupon_value {
        color: var(--custom-font-color-mobile);
    }

    .slide_content_actions .slide_content_action.slide_content_action_coupon_code {
        color: var(--custom-font-color-mobile);
    }
}


@media screen and (max-width: 768px) {

    .slider_ds_slide {
        background-image: var(--mobile-background);
    }

    .slide_content_wrapper {
        flex-direction: column-reverse;
        height: auto;
        align-self: end;
        padding-bottom: 40px;
    }

    .slide_content {
        flex: 0 0 100%;
        font-size: 1em;
    }
    .slide_content.slide_content_left {
        padding-left: 20px;
    }

    .slide_content_actions .slide_content_action.slide_content_action_link {
        font-size: 1em;
        font-weight: normal;
        margin-right: 5px;
    }
    .slide_content_textbox {
        width: 95%;
        color: var(--custom-font-color-mobile);
    }

    .slide_content_textbox_coupon_value {
        color: var(--custom-font-color-mobile);
    }

    .slide_content_right {
        text-align: center;
        justify-content: center;
    }

    .slide_content_right img {
        width: auto;
        height: 300px;
    }

    .slide_content_actions {
        margin-top: 15px;
    }

    #sliderDsBtnPrev, #sliderDsBtnNext {
        visibility: hidden;
    }

    .slide_content_action_link > a, .slide_content_action_link > span{
        color: var(--custom-font-color-mobile);
        background-color: var(--background-color-mobile);
    }

    .slide_content_headline {
        color: var(--custom-font-color-mobile);
    }

    .slide_content_actions .slide_content_action.slide_content_action_coupon_code {
        color: var(--custom-font-color-mobile);
        margin-right: 0;
    }

}