/* product listing page */
.close-designer-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    background-color: #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    padding: 0;
    border: 1px solid #dddddd;
}
.designer-popup-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 20;
}
.designer-popup-container.active{
   opacity: 1;
   visibility: visible;
}
.designer-popup-container #designer-popup-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
    transform: translateX(100%);
    transition: all 0.3s;
}
.designer-popup-container.active #designer-popup-content{
   transform: translateX(0);
}
body:has(.designer-popup-container.active) {
    overflow: hidden;
}
@media (min-width: 1025px){
    .designer-popup-container #designer-popup-content {
         width: calc(100% - 80px);
    }
}

