.is-hidden {
    display: none;
}
.ajax-cart__modal {
	 position: fixed;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 z-index: 40;
	 max-width: 575px;
	 background: getColor('white', 'default');
	 border: 1px solid #e9e9e9;
	 padding: 50px 65px;
	 opacity: 0;
	 visibility: hidden;
	 will-change: opacity, visibility;
}
 .ajax-cart__modal.is-open {
	 opacity: 1;
	 visibility: visible;
}
 .ajax-cart__overlay {
	 position: fixed;
	 z-index: 30;
	 top: 0;
	 bottom: 0;
	 left: 0;
	 right: 0;
	 background-color: getColor('black-40', 'variations');
	 opacity: 0;
	 visibility: hidden;
	 will-change: opacity, visibility;
}
 .ajax-cart__overlay.is-open {
	 opacity: 1;
	 visibility: visible;
}
 .ajax-cart__drawer {
	 transition: getTransition();
	 position: fixed;
	 z-index: 40;
	 right: -400px;
	 top: 0;
	 width: 400px;
	 height: 100%;
	 background: #f6f6f6;
	 will-change: transform;
	 border-left: 1px solid #e9e9e9;
}
 .ajax-cart__drawer.is-open {
	 transform: translateX(-100%);
}
 .ajax-cart-modal {
	 position: relative;
}
 .ajax-cart-modal__close {
	 position: absolute;
	 right: 10px;
	 top: 10px;
}
 .ajax-cart-modal__content {
	 padding: 20px;
}
 .ajax-cart-drawer {
	 position: relative;
	 height: 100%;
}
 .ajax-cart-drawer__close {
	 position: absolute;
	 right: 10px;
	 top: 5px;
}
 .ajax-cart-drawer__content {
	 padding: 25px 25px 190px;
	 height: 100%;
	 overflow: hidden;
	 overflow-y: scroll;
}
 .ajax-cart-drawer__buttons {
	 position: absolute;
	 z-index: 10;
	 left: 0;
	 bottom: 0;
	 width: 100%;
	 height: 190px;
	 background: #f6f6f6;
	 padding: 20px;
	 display: flex;
	 flex-direction: column;
	 justify-content: flex-end;
}
 .ajax-cart-drawer__buttons .button:last-child {
	 margin-top: auto;
}
 .ajax-cart-item__single {
	 position: relative;
	 margin-bottom: 20px;
	 border-bottom: 2px solid red;
}
 .ajax-cart-item__image {
	 width: 100px;
}
 .ajax-cart-item__remove {
	 right: 5px;
	 width: 15px;
	 height: 15px;
	 background-color: '#000';
	 cursor: pointer;
}
 