/*~~~~~~~~~~~~~~~~~~ General Pop-up ~~~~~~~~~~~~~~~~~~*/

.popUp-font {
    color: #fff;
}

.popUp-btn {
    padding: 8px 70px 3px 70px;
    border: 1px solid var(--secondary-border-colors);
}

a.popUp-btn {
    font-family: var(--primary-font-family);
}

.icon-popUpClose {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 30px;
    right: 30px;
}

    .icon-popUpClose .st0 {
        stroke: #fff;
    }

    .icon-popUpClose:hover .st0 {
        stroke: var(--tertiary-font-color);
    }

.popUp-text,
.large-newsletter-container .digitalshowroom {
    margin-bottom: 34px;
}

/*~~~~~~~~~~~~~~~~~~ Small Pop-up ~~~~~~~~~~~~~~~~~~*/

.corner-newsletter-PopUp {
    background: #000;
    position: fixed;
    bottom: 50px;
    right: -180%;
    width: 384px;
    max-width: calc(100% - 40px);
    height: 269px;
    z-index: 99;
    transition: 1s all ease-in-out;
}

    .corner-newsletter-PopUp.show {
        right: 97px;
        transition: 1s all ease-in-out;
    }

.corner-newsletter-container {
    position: relative;
    padding: 30px 30px;
}

@media (max-width: 500px) {
    .corner-newsletter-PopUp.show {
        right: 0px;
        max-width: 100%;
        bottom: 0px;
    }
}

/*~~~~~~~~~~~~~~~~~~ Large Pop-up ~~~~~~~~~~~~~~~~~~*/

.large-newsletter-PopUp {
    background: #000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 900px;
    max-width: calc(100% - 40px);
    height: auto;
    z-index: 9999;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    border-radius: 6px;
}

    .large-newsletter-PopUp.show {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
    }

.large-newsletter-container {
    position: relative;
    padding: 70px 70px;
}

.large-newsletter-container .popUp-font {
    max-width: 70%;
    justify-self: center;
    text-align: center;
}

