#store-popup {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    text-align: center;
    z-index: 1111;
    min-height: 100vh;
    display: none;
}
.popup-store {
    width: 60%;
    margin: 5% auto;
    max-width: 600px;
    position: relative;
	background: #fff;
	border:1px solid #000;
    font-size: 1.5em;
    line-height: 1.2em;
}
.popup-store-close{
    cursor:pointer;
    position:absolute;
    right:-20px;
    top:-20px;
    background:#fff;
    padding:10px 19px;
    border-radius:100%;
    font-weight:bold;
    font-size: 18px;
}
.popup-store-content{
    padding: 20px;
}
.popup-store-description{
    color: #1e293b!important;
}
.popup-store .popup-store-image img {
    max-height: 30vh;
}
.popup-store .popup-store-description {
    padding-top: 20px;
}

@media (min-width: 991px) and (max-width: 1280px) {
    .popup-store {
        width: auto;
        display: inline-block;
        max-width: 90%;
    }
    .popup-laptop-width{
        max-width: 50%;
    }
    .popup-store img {
        max-height: 50vh;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    .popup-store .popup-store-image {
        width: 30%;
        float: left;
        padding-bottom: 20px;
    }
    .popup-store .popup-store-description-text {
        padding-top: 0;
        width: 70%;
        float: right;
        padding-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .popup-store {
        width: 90%;
        margin: 20% auto;
    }
    .popup-full-fields .main-title-wrapper h3{
        font-size: 2.0rem;
        line-height: 1.1;
    }
    .popup-full-fields .popup-store-description {
        font-size: 1.3rem;
        line-height: 1.2;
    }
}