:root {
    --modal-width: 400px;
    --toast-width: 375px;
}

 .jq-toast-wrap.top-right {
    right: 20px;
}

 .add-to-cart .loader {
    max-height: 24px;
    margin-right: 10px;
    margin-left: 0;
}

 button[disabled].loaderInBtn i.shopping-cart {
    opacity: 0;
}

 .pshowaddtocartmodal .modal-dialog {
    width: auto !important;
    max-width: min-content !important;
}

 .jq-toast-wrap {
    width: var(--toast-width);
}

 .jq-toast-single {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin: 0 0 10px;
}

 .jq-toast-single .toast-links {
    display: flex;
    align-items: center;
    justify-content: right;
}

 .jq-toast-single .toast-links a.close-link {
    border: none;
    padding-bottom: 0;
}

 .jq-toast-single .toast-links a.close-link:hover {
    text-decoration: underline;
}

 .toast-links .showcart-link {
    border: 1px solid;
    border-radius: 5px;
    padding: 5px 10px;
}

 .close-jq-toast-single {
    font-size: 20px;
    top: 5px;
    right: 5px;
}

 .jq-has-icon {
    padding: 1rem 1rem 1rem 25px;
}

 .toast-header {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    margin-bottom: 15px;
}

 .toast-header .material-icons {
    font-size: 1rem;
}

 .product-name-toast {
    margin-bottom: 10px;
}

 .jq-toast-loader {
    top: unset;
    bottom: -2px;
}

 .toast-body {
    display: flex;
    gap: 15px;
}

 .toast-body .cover-image-display-toast {
    max-width: 88px;
    min-width: 88px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

 .product-attributes-toast {
    font-size: 0.75rem;
    color: #ACACAC;
}

/*
** Popup/modal section
*/

 .modal.right {
    font-family: Manrope, sans-serif;
    z-index: 9001;
}

 .come-from-modal.left .modal-dialog,
 .come-from-modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: var(--modal-width);
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

 .come-from-modal.left .modal-content,
 .come-from-modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

 .come-from-modal.left .modal-body,
 .come-from-modal.right .modal-body {
    height: 100%;
    display: flex;
    gap: 15px;
}

 .come-from-modal.right.fade .modal-dialog {
    right: calc(-1 * var(--modal-width));
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

 .come-from-modal.right.fade.in .modal-dialog {
    right: 0;
    top: 0;
    margin-top: 0px!important;
}

 .modal-header {
    text-transform: uppercase;
    letter-spacing: 1px;
}

 .modal-container {
    display: flex;
    flex-flow: column;
    height: 100%;
}

 .modal-footer-summary {
    display: flex;
    margin-bottom: 30px;
    text-align: left;
    gap: 15px;
    justify-content: space-between;
}

 .modal-footer-links .btn.btn-primary {
    text-transform: none;
}

 .modal #cover-image-display-modal {
    opacity: 0;
    transition: opacity 0.3s ease;
}

 .modal .product-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

 .modal .product-info -attributes-modal {
    font-size: 0.75rem;
}

 .modal .product-info {
    color: #ACACAC;
}

  .loader {
    margin-right: 5px;
}

 .loading {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
}

@media (max-width: 576px) {
    :root {
        --modal-width: 90vw;
        --toast-width: calc(85vw - 20px);
    }
}