#catp-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.catp-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    display:flex;
    overflow: hidden;
    max-width: 650px;
    width: 90%;
    flex-wrap: wrap;
}

.catp-content .alert {
    background: whitesmoke;
    width: 100%;
    margin: auto;
    padding: 10px;
    text-align: left;
}

.catp-content img {
    max-width: 30%;
    max-height: 100%;
    height: auto;
    width: 200px;
    object-fit: cover;
    background: #804EAF;
}

.catp-content .inner-content hr{
    margin-top: 20px;
    margin-bottom: 10px;
}

.catp-content .inner-content {
    text-align: left;
    padding: 20px;
    width: 70%;
}

.catp-content .inner-content h2{
    font-size: 22px;
    line-height: 1.2;
}

.catp-add-to-cart,
.catp-close {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    margin-right: 5px;
}


.catp-add-to-cart.btn,
.catp-close.btn,
.catp-go-to-cart.btn{
    display: inline-block;
    background: #804EAF;
    border: 1px solid #804EAF;
    border-radius: 24px;
    color: #fff;
    padding: 10px 29px;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
}

@media only screen and (max-width: 600px) {
  .catp-content {
    flex-direction: column;
  }
  .catp-content img, .catp-content .inner-content{
    width: 100%;
  }
}