.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 #4f4f59;
    -webkit-box-shadow: 0px 0px 29px 0px #4f4f59;
    -moz-box-shadow: 0px 0px 29px 0px #4f4f59;
    box-shadow: 0px 0px 29px 0px #4f4f59;
    border-radius: 20px;
}

.popupContent .errors2 {
    line-height: 16px;
    font-size: 14px;
  }
  
  .popupContent .errors2:empty {
    display: none;
  }
  
  .popupContent .successMsg {
    line-height: 16px;
    font-size: 14px;
    margin-top: 15px;
  }
  
  .popupContent .successMsg:empty {
    display: none;
  }
  
.prices{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size:26px;
    margin:10px 0px;
}
.prices .old-price{
    text-decoration: line-through;
    font-weight: bold;
}
.prices .new-price{
    font-weight: bold;
    color:#28a745;
    margin-left:10px;
}
.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;
    align-items: center;
    background:#fff;
}

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

.popup-content-desc {
    text-align: center;
    padding: 15px 35px;
    width: calc(100% - 350px);
    margin-left: auto;
}
span.closePopup {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.popup-content-desc .pp-headline {
    color: #4f4f59;
    font-size: 40px;
    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: #4f4f59;
    border: 2px solid #4f4f59;
    border-radius: 12px;
    color: white;
    padding: 25px 30px;
    display: inline-block;
    font-size: 23px;
    line-height: 33px;
    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{
        display:none;
    }
    .popup-content-desc {
        width: 100%;
        margin-left: 0px;
        padding: 15px 25px;
    }
}


@media screen and (max-width: 680px){
    .popupLeftText {
        height: auto;
        max-height: 100%;
        overflow: auto;
    }
}
