.pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 90;
    display: none;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transform: translate(-50%, -50%);
}

.pop-up-close-button {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 1;
    background: transparent;
}

.pop-up-close-button:after {
    content: '';
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    background: url('../../images/icons/icon-times-dark.svg') no-repeat center;
    z-index: 10;
}

.pop-up-close-button:before {
    content: '';
    display: block;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    z-index: 5;
    transition: 0.36s all;
}

.pop-up-close-button:hover:before{
    background: #f0efef;
}

.pop-up-overlay,
.gallery-pop-up-overlay,
.quick-order-pop-up-overlay,
.customer-address-pop-up-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 200%;
    height: 200%;
    background: rgba(37, 35, 36, 0.9);
    transform: translate(-50%, -50%);
}

.has-opened-pop-up,
.has-opened-gallery-pop-up {
    overflow: hidden;
}