* {
    box-sizing: border-box;
}
.qo-popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Hide initially */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.qo-popup-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}
.qo-popup-content {
    background: white;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}
.qo-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
.qo-popup-content img {
    max-width: 100%;
    border-radius: 5px;
}
.qo-popup-content h2 {
    margin: 10px 0;
}
.qo-popup-content p {
    margin-bottom: 15px;
}
.half{
  width: 49%;
  float:left;
	margin:2px;
}
.full{
  clear: both;
}
/* chat styling */
.qo_offer_field_container.qo_last {
    display: flex;
}
.qo-submitter {
    text-align: right;
    margin-top: 10px;
	overflow: hidden;
    width: 100%;
}
span.qo_validation_error, span.qo_ajax_error {
    text-align: left;
    display: none;
    color: #d00;
    float: left;
}
.qo-submitter button.button {
    float: right;
    display: inline-block;
}
.qo_offer_conversion {
    max-height: 500px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    padding: 15px;
    background: #f5f5f5;
	max-height: 500px;
    overflow-y: scroll;
}
p.qo_customer_message, p.qo_merchant_message {
    padding: 5px;
    border: 1px solid #ccc;
    background: #fff;
    position: relative;
}
p.qo_customer_message {
	background: #ebfff9;
}
p.qo_customer_message:after {
    content: ' ';
    background: #ebfff9;
    border: 1px solid #fff;
    border-bottom-left-radius: 100%;
    height: 15px;
    width: 15px;
    display: block;
    position: absolute;
    right: 5px;
    bottom: -17px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
p.qo_merchant_message:after {
    content: ' ';
    background: #fff;
    border: 1px solid #fff;
    border-top-left-radius: 100%;
    height: 15px;
    width: 15px;
    display: block;
    position: absolute;
    left: 5px;
    top: -17px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
}
.qo_loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: qospin 1s linear infinite;
    display: none;
    margin-left: 10px;
}
@keyframes qospin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}