#custom-add-to-cart-wrapper {
  	display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #eaeaea;
    min-width: 350px;
    max-width: 450px;
    border-radius: 16px;
  	z-index: 490;
  	-webkit-box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.2);
}

#custom-add-to-cart {
    display: flex;
    align-items: center;
    padding: 5px;
    gap: 10px;
}

.custom-product-image img {
    width: 135px;
    border-radius: 16px;
    display: block;
}

.custom-product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
  	gap: 3px;
    width: 230px;
}

.custom-product-details p {
    margin: 0 !important;
    color: #2e2e2e;
  	font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.custom-product-details .price {
    color: #5e5e4c;
	/*margin-top: -25px; */
}

#custom-add-to-cart-button {
    background-color: #5e5e4a;
    border: none;
    color: #ffffff;
  	font-size: 16px;
  	font-weight: 400;
  	text-transform: none;
    border-radius: .5rem;
  	padding: 0 !important;
    transition: all 200ms ease-in-out;
}

#custom-add-to-cart-button:hover {
    color: #333333;
    background-color: #afafa5;
}

/* Out Of Stock Product */

#custom-add-to-cart-wrapper.out-of-stock #custom-add-to-cart-button {
  	background-color: #afafa5;
  	pointer-events: none;
}

#custom-add-to-cart-wrapper.out-of-stock .custom-product-details .price {
	margin-top: 0;
}

/*Scroll To Top*/

.oh_scrolltotop {
  	bottom: 180px !important;
  	transform: none !important;
}

/* Add to cart Loader */

#custom-add-to-cart-button .loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

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

@media screen and (max-width: 667px) {
    .custom-product-details p,
    .custom-product-details .price,
    .custom-product-details .star-rating {
        display: none;
    }

    #custom-add-to-cart-wrapper {
        min-width: 95%;
        right: 2.5%;
        bottom: 10px;        
    }

    #custom-add-to-cart {
        padding: 0;
    }

    .custom-product-image img {
        width: 70px;
    }

    .custom-product-details {
        width: calc(100% - 130px);
    }
  
  .oh_scrolltotop {
    	bottom: 25px !important;
    	z-index: 491 !important;
    	right: 20px !important;
	}
  }