/* Popup Styles */
.popup {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease-in;
}

.popup__content {
    width: 300px;
    background-color: rgb(0, 0, 0);
    text-align: center;
    position: relative;
    margin: 20vh auto;
    padding: 10px;
}

.popup__image {
    width: 100%;
    margin-bottom: 5px;
}

.popup__dismiss {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    cursor: pointer;
}

.popup__shop {
    position: Bottom;
    bottom: 100px;
    width: 300px;
    height: 50px;
    cursor: pointer;
}

.popup--show {
    opacity: 1;
    pointer-events: auto;
    z-index: 9999;
}

.popup--close {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: all .2s ease-out;
}