/* Popup-Stile */

#lmtPopupButton {
    width:50px;
    height:50px;
    position: fixed;
    z-index: 1000;
    bottom: 60px;
    left: 10px;
    background-color: #BABB97;
    border-radius: 50px;
    border: 1px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lmtPopupButton svg {
    fill: #000000;
    width: 30px;
    height: 30px;
}

#lmtPopupButton span {
    display: block;
    text-indent: -99999px;
}

#lmtPopup {
    position: relative;
    z-index: 100001;
}

.popup {
    display: none;
}

.popup-content {
    position: fixed;
    bottom: 50px;
    left: 0;
    width: auto;
    max-width: 340px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup .popup_inner {
    max-height: 75vh;
    width: 100%;
    overflow-y: hidden;
}

.popup h3.custom_h3 {
    margin-top: 10px;
}

.popup h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.popup .wp-block-button {
    display: inline-block;
    margin-top: 5px;
    margin-right: 10px;
}

.popup .wp-block-button button.wp-block-button__link {
    padding: calc(.667em + 2px) calc(1.333em + 2px);
}

.popup .wp-block-button__link {
    min-width: auto;
    border: 2px solid #ff0000;
    background-color: #ff0000;

}

.popup .wp-block-button__link:hover,
.popup .wp-block-button__link:active {
    background-color: #ff0000 !important;
}

#voucherCode {
    display: none;
}

.popup .textzusatz {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1;
}

.popup .close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 0;
}

.popup .close-button:hover,
.popup .close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#lmtCountdown {
    display: flex;
    justify-content: space-between;
}

#lmtCountdown .counter_col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lmtCountdown .counter_col .counter_number {
    font-size: 40px;
}

@media (min-width: 500px) {
    .popup-content {
        padding: 20px;
        overflow-y: hidden;
    }

    .popup .popup_inner {
        max-height: auto;
        overflow-y: hidden;
    }

    .popup h2 {
        margin-top: 20px;
    }

    .popup h3.custom_h3 {
        margin-top: 20px;
    }

    #lmtCountdown {
        justify-content: space-evenly;
    }
}

@media (min-width: 992px) {
    #lmtPopupButton {
        width:70px;
        height:70px;
        left: auto;
        right: 150px;
        bottom: 20px;
    }

    #lmtPopupButton svg {
        width: 40px;
        height: 40px;
    }

    .popup-content {
        right: 220px;
        left:auto;
        max-width: 480px;
        bottom: 10px;
    }
}