.popupBox {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffffff8c;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
}

.popupContent {
    background: #FAFFF9;
    overflow: hidden;
}

.popupContent {
    width: 950px;
    padding: 0px;
    max-width: 950px;
    border: 2px solid #006405;
    -webkit-box-shadow: 0px 0px 29px 0px #006405;
    -moz-box-shadow: 0px 0px 29px 0px #006405;
    box-shadow: 0px 0px 29px 0px #006405;
    border-radius: 20px;
}

.popupLeftText {
    width: 100%;
    position: relative;
}

.popupMainContent {
    align-items: center;
}

.popup-image {
    display: flex;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 350px;
    justify-content: center;
    background-color:#c3ecc5;
}

.popup-image img {
    max-width: 90%;
    object-fit: contain;
    object-position: left;
}

.popup-content-desc {
    text-align: center;
    padding: 35px;
    width: calc(100% - 350px);
    margin-left: auto;
}
span.closePopup {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.popup-content-desc .pp-headline {
    color: #006405;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 25px;
}

.popup-content-desc p {
    font-size: 26px;
    line-height: 34px;
    font-family: 'LatoBo';
    margin: 10px 0px;
}
.red {
    color: #ce2729;
}
span.otherStyle {
    background: #f9cb37;
    padding: 5px 10px;
    font-weight: 900;
    color: #000;
}

.popup-go-to-order {
    background: #006405;
    border: 2px solid #006405;
    border-radius: 12px;
    color: white;
    padding: 25px 30px;
    display: inline-block;
    font-size: 23px;
    font-family: 'LatoR';
    margin: 10px 0px;
    text-transform: uppercase;
}


@media screen and (max-width: 1000px){
    .popupContent {
        width: 95%;
    }
}
@media screen and (max-width: 900px){
    .popup-image {
        width: 270px;
    }
    .popup-content-desc {
        width: calc(100% - 270px);
        margin-left: auto;
        padding: 25px;
    }
}
@media screen and (max-width:800px){
    .popup-image{
        width:260px;
    }
    .popup-content-desc {
        width: calc(100% - 260px);
        margin-left: auto;
    }
}
@media screen and (max-width:700px){
    .popup-image{
        display:none;
    }
    .popup-content-desc {
        margin-left: 0px;
        width: 100%;
    }
}
@media screen and (max-width: 680px){
    .popupLeftText {
        height: auto;
        max-height: 100%;
        overflow: auto;
    }
}
