.mw-custom-modal-add-to-cart {
    display: none;
    position: fixed;
    z-index: 350;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.mw-modal-content-cart {
    background-color: #fff;
    border: 1px solid #888;
    width: 100%;
    border-radius: 15px 15px 0 0;
    position: absolute;
    bottom: 74px;
}
.mw-modal-info-box {
    display: flex;
	align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 1rem 1rem 1rem;
}

.mw-wd-tools-icon:before {
    content: "\f123";
    font-family: "woodmart-font";
    color: #fe8600;
    font-size: 1.5rem;
}

.mw-custom-modal-close {
    font-size: 1rem;
    font-weight: bold;
    color: #00a900;
    cursor: pointer;
	margin-bottom: -10px !important;
}

.mw-modal-product-top-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.mw-modal-product-top-box h3 {
    font-size: 1rem;
    color: #797979;
	margin-bottom: 0 !important;
}

#mw_custom_modal_body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
	gap: 5px;
}

.mw-modal-product {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mw-modal-product-img {
    max-width: 100px;
    border-radius: 20px;
}

.mw-modal-product-price {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 0.5rem;
    color: #010101;
}

.mw-modal-quantity-product-name {
    color: #010101;
}

.mw-modal-qty {
	display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 10px 0;
    font-size: 1.2rem;
}

.mw-modal-qty-plus,
.mw-modal-qty-minus {
    background: #ff8600;
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.mw-modal-qty-minus {
	font-size: 1.5rem;
}

.mw-modal-quantity-add-to-cart {
    min-height: 40px !important;
    width: 100%;
    background: #08a900 !important;
    color: #fff !important;
    border-radius: 12px !important;
    cursor: pointer !important;
}

.mw-modal-qty-number {
	width: 40% !important;
    border-radius: 12px !important;
}

.mw-modal-suggestion {
    background: #ff8600;
    padding: 10px;
    border-radius: 20px;
}

.mw-modal-suggestion-title {
    text-align: center;
	font-size: 12px;
    color: #ffffff;
	padding: 0;
    margin: 0 0 10px 0;
}

.mw-modal-suggestion-numbers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    text-align: center;
}

.mw-modal-suggestion-number {
    background: #ffff;
	font-size: 12px;
    border-radius: 12px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.mw-custom-modal-trigger {
    outline: none !important;
    border: none !important;
    background: #ff8600 !important;
    cursor: pointer !important;
    color: #ffffff !important;
    font-size: 2rem !important;
    width: 40px;
    height: 40px;
    border-radius: 12px !important;
}

.mw-single-add-to-cart {
    width: 100%;
    font-size: 1rem;
}

.mw-loading-spinner {
    position: unset !important;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
}

.disabled {
    opacity: .5;
    cursor: not-allowed;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.mw-show-categories {
    width: 100%;
    padding: 0.3rem;
    margin-bottom: 0rem;
}

.mw-show-categories-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0rem;
}

.mw-show-categories-list.dragging {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.mw-show-category-list-link {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.2rem;
    border-radius: 8px;
    font-size: 0.8rem;
    justify-content: center;
    width: 100%;
}

.mw-show-category-active {
    background: #ff8600;
    color: #ffffff;
}

.owl-dots {
    display: none !important;
}

.mw-custom-order {
	margin: 0 !important;
	color: #333;
	font-size: 12px;
    font-weight: 700;
}

@media (min-width: 992px) {
	.mw-custom-order {
		display: none;
	}
	
    .mw-custom-modal-add-to-cart {
        left: 0;
        top: 0;
    }

    .mw-modal-content-cart {
        margin: 20% auto;
        width: 40%;
        border-radius: 15px;
        position: relative;
        bottom: 0;
    }
	
	.mw-modal-suggestion-title {
		font-size: 1rem;
	}
	
	.mw-modal-qty-plus,
	.mw-modal-qty-minus {
        background: #ff8600;
        color: #fff;
        padding: 8px 17px;
        border-radius: 12px;
        font-size: 1rem;
        cursor: pointer;
	}
	
	.mw-modal-suggestion-number{
		font-size: 1.2rem;
		padding: 0.5rem;
	}
	
	#mw_custom_modal_body {
   		padding: 1rem;
		gap: 10px;
	}
	
	.mw-modal-qty-number {
	width: 90% !important;
    border-radius: 12px !important;
}
}