body.rt-hide-overflow {
    overflow: hidden !important;
}

body .rt-modal-container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    padding: 20px;
    background-color: #000000cc;
    width: 100vw;
    height: 100vh;
}

body .rt-modal-container .rt-modal-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: var(--rt-btn-border-radius);
    width: 100%;
    max-width: 460px;
}

body .rt-modal-container .rt-modal-header {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

body .rt-modal-container .rt-response-message {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 2.2rem;
    text-align: center;
    text-transform: var(--rt-btn-text-transform);
}

body .rt-modal-container .rt-modal-wrapper .rt-dismiss-button{
    position: relative;
    background: transparent;
    border: 0px;
    padding: 0px;
    width: 1em;
    height: 1em;
}

body .rt-modal-container .rt-modal-wrapper .rt-popup-dismiss-icon:after,
body .rt-modal-container .rt-modal-wrapper .rt-popup-dismiss-icon:before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: auto;
    right: 0;
    height: 2px;
    width: 1em;
    background: var(--rt-btn-bg-color);
    border-radius: 1px;
}
body .rt-modal-container .rt-modal-wrapper .rt-popup-dismiss-icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

body .rt-modal-container .rt-modal-wrapper .rt-popup-dismiss-icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

body .rt-modal-container .rt-modal-wrapper .rt-action-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

body .rt-action-buttons .rt-ghost:hover {
    color: var(--rt-btn-bg-hover-color);
}

body .rt-action-buttons .rt-ghost {
    cursor: pointer;
    padding: 0px;
    background: transparent;
    box-shadow: initial;
    border: 0px;
    color: var(--rt-btn-bg-color);
    text-transform: var(--rt-btn-text-transform);
}

body .rt-action-buttons .rt-ghost:hover {
    color: var(--rt-btn-bg-hover-color);
}

.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item input.wc-grouped-product-add-to-cart-checkbox {
    display: none;
}

.woocommerce .woocommerce-grouped-product-list-item button.button.alt.rt-add-to-cart-btn {
    margin: 0px 5px;
}

.woocommerce .woocommerce-grouped-product-list-item button.button.alt.rt-add-to-cart-btn,
body .rt-action-buttons .rt-add-to-cart-btn {
    background-color: var(--rt-btn-bg-color) !important;
    border-radius: var(--rt-btn-border-radius) !important;
    color: var(--rt-btn-text-color) !important;
    text-transform: var(--rt-btn-text-transform);
}

.woocommerce .woocommerce-grouped-product-list-item button.button.alt.rt-add-to-cart-btn:hover,
body .rt-action-buttons .rt-add-to-cart-btn:hover {
    background-color: var(--rt-btn-bg-hover-color) !important;
    color: var(--rt-btn-text-hover-color) !important;
}

