.wholesalex_add_to_quote_modal {
    text-align: left;
    display: none;
    z-index: 998;
}

.modal_content div,
.modal_content button {
    margin-top: 24px;
}
.modal_content div:first-child,
.modal_content button:first-child {
    margin-top: 0px;
}

.modal_content {
    border-radius: 6px;
    box-shadow: 0 0 40px 0 var(--color-shadow-primary);
    background-color: var(--color-base-one);
    z-index: 999999999994;
    width: 50%;
    min-height: 15%;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.close-modal-icon {
    font-size: 22px;
    line-height: 26px;
    color: var(--color-text-reverse);
    background-color: var(--color-tertiary);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    translate: 50% -50%;
    cursor: pointer;
}
.close-modal-icon:hover {
    background-color: var(--color-negative);
}

.wholesalex_add_to_quote_modal .wholesalex-field {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.wholesalex_conversation_notice {
    background-color: var(--color-notice);
    color: var(--color-text-reverse);
    padding: 20px;
    font-size: 18px;
    border-radius: var(--border-radius-sm);
    margin: 15px;
}

.raq-to-email {
    background-color: var(--color-primary);
    color: var(--color-text-reverse);
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 2.15384615;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius-sm);
    white-space: nowrap;
    box-sizing: border-box;
}

.raq-to-email:hover {
    background-color: var(--color-primary-hover);
}

.raq-to-message {
    background-color: #26a310;
    color: white;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 2.15384615;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
}

#wholesalex_reject_modal {
    display: none;
}

#reject_link a {
    color: white;
}

.wholesalex_loader {
    display: none;
}

.wsx-toast {
    position: fixed;
    z-index: 99999;
    top: 110px;
    right: 15px;
}

.wsx-toast-message-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 10px 30px;
    border-radius: 12px;
    color: #ffffff;
    background-color: #62C55A;
    box-shadow: 0 0 12px 0 rgba(7, 7, 7, 0.5);
    font-size: 14px;
    transition: opacity 0.5s ease-in-out;
}

.wsx-raq-close-icon {
    display: inline-block;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M14.95 6.46L11.41 10l3.54 3.54l-1.41 1.41L10 11.42l-3.53 3.53l-1.42-1.42L8.58 10L5.05 6.47l1.42-1.42L10 8.58l3.54-3.53z'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    height: 20px;
    width: 20px;
    background-color: white;

}

#wholesalex_quote_btn {
    display: none;
    flex: 1;
}

.wholesalex_request_custom_quote_btn {
    margin: 0px 5px;
}

.wsx-single-product {
    margin-bottom: 15px;
}

.wsx-quote-request-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.wsx-quote-request-heading .wsx-quote-heading {
    margin-bottom: 0px;
}

#quote_reject_button,
.rejected,
.expired,
#quote_accept_button,
.accepted {
    font-size: 12px;
    line-height: 14px;
    color: var(--color-base-one);
    font-weight: var(--font-weight-medium);
    padding: 7px 14px;
    border-radius: var(--border-radius-sm);
}
#quote_reject_button,
#quote_accept_button {
    cursor: pointer;
}
#quote_reject_button,
.rejected,
.expired {
    background-color: var(--color-reject);
}
#quote_accept_button,
.accepted {
    background-color: var(--color-mint);
}

#quote_reject_button:hover {
    background-color: var(--color-negative);
}
#quote_accept_button:hover {
    background-color: var(--color-positive);
}


#quote_reject_button a,
#quote_accept_button a {
    text-decoration: none;
    color: var(--color-text-reverse);
}

@media (max-width: 490px) {
    .wsx-quote-request-heading {
        flex-direction: column;
     }
 }