.wc-atc-popup {
    position: fixed;
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
    box-sizing: border-box;
    visibility: hidden;
    z-index: 9999;
    right: 15px;
    pointer-events: none;
    transition: all 0.5s ease;
}

.wc-atc-popup-top {
    top: 35px;
}

.wc-atc-popup-bottom {
    bottom: 35px;
}

.wc-atc-popup-show .wc-atc-popup {
    visibility: visible;
    pointer-events: all;
}

.wc-atc-popup-content {
    position: relative;
    border: 2px solid #dcdce4;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 0px 7px rgba(95, 80, 135, 0.16);
}

.wc-atc-popup-content-bg {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.wc-atc-popup-content-bg:before {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.wc-atc-popup-content-inner {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.wc-atc-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    height: 20px;
    width: 20px;
}

.wc-atc-popup-close span {
    position: relative;
    height: 20px;
    width: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wc-atc-popup-close span::before,
.wc-atc-popup-close span::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: black;
}

.wc-atc-popup-close span::before {
    transform: rotate(45deg);
}

.wc-atc-popup-close span::after {
    transform: rotate(-45deg);
}

.wc-atc-popup-prod-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.wc-atc-popup h3 {
    margin: 0 0 10px;
}
