.cart {
	float: left;
	width: 100%;
	padding: 50px 0;
	display: flex;
    justify-content: center;
}
.cart-main {
    width: 100%;
    max-width: var(--rootWidth);
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}
.cart-head {
	width: 100%;
	display: flex;
	align-items: center;
}
.cart-head i {
	width: 24px;
	height: 24px;
	margin-right: 10px;
	display: flex;
	align-items: center;
}
.cart-head i svg {
    width: 100%;
    height: 100%;
}
.cart-head span {
	font-size: 18px;
	color: #515151;
	letter-spacing: 2px;
}
.cart-box {
	width: 100%;
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}

.cart-list {
	float: left;
	width: calc(100% - 400px);
}


.cart-item {
	width: 100%;
	margin-bottom: 20px;
    border-bottom: #DDD 1px solid;
    padding: 10px 0;
	position: relative;
	display: flex;
	flex-direction: column;
}
.cart-item:last-child {
	margin: 0;
}
.slidercart-item {
	background: #FFF !important; 
	padding: 10px !important;
}

.cart-item-soldout .cart-item-price, .cart-item-soldout .cart-item-qty, .cart-item-failure .cart-item-price, .cart-item-failure .cart-item-qty {
	display: none;
}
.cart-item-soldout .cart-item-img::after, .cart-item-failure .cart-item-img::after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.6);
	border-radius: 8px;
}
.cart-item-failure, .cart-item-soldout {
	font-family: 'sf-compact-text-medium';
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.cart-item-title {
	width: 100%;
	padding-bottom: 10px;
	font-family: 'sf-compact-text-medium';
    font-weight: 500;
	font-size: 13px;
	color: #000;
}
.cart-item-box {
	width: 100%;
	display: flex;
}
.cart-item-img {
	width: 100px;
	border-radius: 8px;
	position: relative;
}
.cart-item-img img {
	width: 100%;
	border-radius: 4px;
}
.cart-item-img span {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	position: absolute;
	right: 0;
	top: 0;
	transform: translate(50%, -50%);
	background: #000;
	color: #FFF;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cart-item-info {
	width: calc(100% - 100px);
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    gap: 10px;
}

/* variants */
.cart-item-variant {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.cart-item-variant-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.cart-item-variant-item:last-child {
    margin: 0;
}
.cart-item-variant-imageorcolor {
    width: 24px;
    height: 24px;
    border-radius: 2px;
    margin-right: 10px;
    display: flex;
}
.cart-item-variant-imageorcolor div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #EEE;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-variant-imageorcolor div::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.8), inset 0px -1px 2px rgba(255, 255, 255, 0.5);
}
.cart-item-variant-imageorcolor div img {
    min-width: 100%;
    min-height: 100%;
}
.cart-item-variant-imageorcolor span {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.8), inset 0px -1px 2px rgba(255, 255, 255, 0.5);
}
.cart-item-variant-value {
    font-family: 'sf-compact-text-medium';
    font-weight: 500;
	font-size: 13px;
    color: #000;
}

/* options */
.cart-item-option {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.cart-item-option-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
	justify-content: space-between;
}
.cart-item-option-item:last-child {
    margin: 0;
}
.cart-item-option-item_textarea {
	flex-direction: column;
}

.cart-item-option-label {
	font-family: sf-compact-text;
	font-weight: 300;
	margin-right: 10px;
}
.cart-item-option-box {
	display: flex;
	align-items: center;
}
.cart-item-option-imageorcolor {
    width: 24px;
    height: 24px;
    border-radius: 2px;
    margin-right: 10px;
    display: flex;
}
.cart-item-option-imageorcolor div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #EEE;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-option-imageorcolor div::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.8), inset 0px -1px 2px rgba(255, 255, 255, 0.5);
}
.cart-item-option-imageorcolor div img {
    min-width: 100%;
    min-height: 100%;
}
.cart-item-option-imageorcolor span {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.8), inset 0px -1px 2px rgba(255, 255, 255, 0.5);
}
.cart-item-option-value {
    font-family: 'sf-compact-text-medium';
    font-weight: 500;
	font-size: 13px;
    color: #000;
}
.cart-item-option-textarea {
	margin-top: 10px;
	width: 100%;
	overflow: hidden;
    text-overflow: ellipsis;
	line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
	background: #EEE;
	padding: 5px 8px;
	border-radius: 4px;
	font-family: 'sf-compact-text';
    font-weight: 300;
	font-size: 13px;
    color: #444;
}

.cart-item-price {
	width: 100%;
	font-family:'Polaris-Book';
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.cart-item-price-now {
	font-size: 12px;
	color: #000;
    font-family: 'Bebas';
	font-weight: 500;
	margin-right: 20px;
}
.cart-item-price-retail {
    font-family: 'Bebas';
	font-weight: 500;
	font-size: 12px;
	color: #555;
	text-decoration: line-through;
	margin-right: 20px;
}
.cart-item-price-save {
    font-family: 'Bebas';
	font-weight: 500;
	font-size: 12px;
    background: #000;
    color: #FFF;
    padding: 1px 10px;
    border-radius: 4px;
    text-align: center;
}



.cart-item-action {
	width: 100%;
	height: 28px;
	margin-top: 9px;
	display: flex;
	justify-content: flex-end;
}

.cart-item-qty { 
    width: 80px;
    height: 100%;
    border: #f6f6f6 1px solid;
    background: #f6f6f6;
	border-radius: 6px;
	overflow: hidden;
    user-select: none;
	margin-left: 25px;
}
.cart-item-qty:hover {
	border-color: #000;
    box-shadow: 0 0 0px 4px rgb(0 0 0 / 34%);
}
.cart-item-qty-minus, .cart-item-qty-plus {
    float: left; 
    width: 28px; 
    height: 100%;
    position: relative; 
    cursor: pointer;
    user-select: none;
}
.cart-item-qty-minus:after, .cart-item-qty-plus:after { 
    content: ""; 
    position: absolute; 
    left: 10px; 
    top: 12px; 
    width: 10px; 
    height: 1px;
    background: #333;
}

.cart-item-qty-plus:before { 
    content:""; 
    position:absolute; 
    left: 13.5px; 
    top: 8px; 
    width: 1px; 
    height: 10px;
    background: #333;
}
.cart-item-qty-minus:hover::after, .cart-item-qty-plus:hover::after, .cart-item-qty-plus:hover::before {
	background: #000;
}
.cart-item-qty-num { 
    float:left; 
    width: calc(100% - 56px); 
    height: 100%; 
	border: none;
	outline: none;
	background: none;
    text-align:center; 
    font-size:13px; 
    padding: 0;
    color: #000;
}
.cart-item-remove {
    height: 100%;
    margin-left: 20px;
    padding: 0 5px;
    background: #f6f6f6;
	border: #f6f6f6 1px solid;
    color: #33333361;
    border-radius: 6px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.cart-item-remove:hover {
	border-color: #000;
    box-shadow: 0 0 0px 4px rgb(0 0 0 / 34%);
	color: #333;
}

.cart-sm {
	width: 350px;
	display: flex;
	flex-direction: column;
}
.cart-sm-head {
	width: 100%;
	font-family: 'Polaris-Bold';
	font-size: 16px;
	font-weight: 600;
	color: #333;
	padding-bottom: 10px;
	border-bottom: #333 1px solid;
	margin-bottom: 10px;
}
.cart-sm-box {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.cart-sm-box-retail {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.cart-sm-box-retail label {
	font-size: 13px;
    color: #888;
}
.cart-sm-box-retail span {
    font-size: 13px;
    font-family: 'Bebas';
    font-weight: 500;
    color: #000;
    text-decoration: line-through;
}
.cart-sm-box-total {
	width: 100%;
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
}
.cart-sm-box-total label {
	font-size: 13px;
    color: #888;
}
.cart-sm-box-total span {
    font-size: 20px;
    font-family: 'Bebas';
    font-weight: 500;
    color: #000;
}
.cart-sm-box-reward {
	width: 100%;
	margin-top: 20px;
	font-size: 12px;
	display: flex;
	justify-content: flex-end;
}
.cart-sm-box-reward strong {
	color: #000;
	font-family: 'Polaris-Bold';
	margin: 0 5px;
}
.cart-sm-box-reward a {
	color: #000;
	text-decoration: underline;
}
.cart-sm-box-txt {
	width: 100%;
	font-family: 'Polaris-Book';
	margin: 0 5px;
	margin-top: 20px;
	text-align: right;
}
.cart-sm-checkout {
	width: 100%;
	height: 54px;
	margin-top: 20px;
	border-radius: 8px;
	background: var(--buttonBackgroundColor);
    color: var(--buttonFontColor);
}
.cart-sm-checkout .button-text span {
    font-family: sf-compact-text;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
}
.cart-sm-checkout-disabled, .slidercart-checkout-disabled {
	background: #ccc !important;
}
.cart-sm-checkout-disabled::after, .slidercart-checkout-disabled::after {
	content: "";
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #FFF;
	opacity: 0;
	cursor: not-allowed;
}

.cart-empty {
	float: left;
	width: 100%;
	padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-empty-ico {
	width: 100px;
	height: 100px;
    color: var(--buttonBackgroundColor);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-empty-ico svg {
	width: 100%;
	height: 100%;
}

.cart-empty-title {
	font-size: 20px;
	color: #555;
	margin-top: 10px;
}

.cart-empty-content {
	font-size: 13px;
	color: #555;
	margin-top: 20px;
}

.cart-empty-content a {
	color: #000;
	font-weight: bold;
}

.cart-empty-link {
	width: 100%;
	margin-top: 50px;
    display: flex;
    justify-content: center;
}

.cart-empty-link a {
	height: 38px;
    padding: 0 10px;
	font-weight: bold;
	text-align: center;
    background: var(--buttonBackgroundColor);
    color: var(--buttonFontColor);
	border-radius: 6px;
	transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-empty-link a:hover {
	background: rgba(0,0,0,0.7);
}

@media only screen and (max-width: 767px){
	.cart-box {
		flex-direction: column;
	}
	.cart-list, .cart-sm {
		width: 100%;
	}
	.cart-sm {
		margin-top: 20px;
	}
}

/*-------------------slidercart-------------*/
.slidercart {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1001;
	visibility: hidden;
}
#slidercart {
	visibility: visible;
}
.slidercart-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0/0.8);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.slidercart-main {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
	width: 100%;
    max-width: 400px;
    height: 100%;
    background: #FFF;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: -webkit-transform .3s;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    opacity: 0;
    z-index: 1011;
    user-select: none;
}
#slidercart .slidercart-main {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
.slidercart-head {
    float: left;
    width: 100%;
    height: 50px;
    border-bottom: #DDD 1px solid;
}
.slidercart-head-title {
    float: left;
	width: 100%;
	height: 100%;
	padding: 0 15px;
	display: flex;
}
.slidercart-head-title-name {
	height: 100%;
	color: #000;
	display: flex;
	align-items: center;
}
.slidercart-head-title-name i {
    width: 24px;
	height: 24px;
	margin-right: 5px;
	display: flex;
	align-items: center;
}
.slidercart-head-title-name i svg {
    width: 100%;
    height: 100%;
}
.slidercart-head-title-name span {
	font-family: sf-compact-text-bold;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}
.slidercart-head-title-count {
	height: 100%;
	display: flex;
	align-items: center;
	font-family: Circular;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
	color: #000;
	margin-left: 5px;
}

.slidercart-close {
    position: absolute;
    width: 50px;
    height: 50px;
	top: 0;
    right: 0;
	z-index: 1;
    cursor: pointer;
	user-select: none;
}
.slidercart-close::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	overflow: hidden;
	top: 24px;
	left: 16px;
	background: #000;
	transform: rotate(45deg);
}
.slidercart-close::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	overflow: hidden;
	top: 24px;
	left: 16px;
	background: #000;
	transform: rotate(-45deg);
}
.slidercart-close:hover {
	background: #000;
}
.slidercart-close:hover::after, .slidercart-close:hover::before {
	background: #FFF;
}

.slidercart-box {
	float: left;
	width: 100%;
	height: calc(100% - 50px);
	position: relative;
}
.slidercart-data {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
	display: none;
}

.slidercart-empty {
    position: absolute;
	z-index: 2;
    width: 100%;
    height: 100%;
	left: 0;
    top: 0;
    background: #FFF;
	display: none;
}
.slidercart-empty-main {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slidercart-empty-box {
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
.slidercart-empty-ico {
	width: 40px;
    height: 40px;
    color: var(--buttonBackgroundColor);
	display: flex;
	align-items: center;
	justify-content: center;
}
.slidercart-empty-ico svg {
	width: 100%;
	height: 100%;
}
.slidercart-empty-title {
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    color: var(--buttonBackgroundColor);
    padding: 20px 0 30px 0;
}
.slidercart-empty-btn {
	height: 40px;
	padding: 0 20px;
	background: var(--buttonBackgroundColor);
	color: var(--buttonFontColor);
    text-transform: uppercase;
    font-family: sf-compact-text-bold;
    font-weight: 600;
    font-size: 14px;
	cursor: pointer;
	user-select: none;
    border-radius: 4px;
    overflow: hidden;
	display: flex;
	align-items: center;
}
.slidercart-empty-btn:hover {
    box-shadow: var(--buttonFocusShadow);
}

.slidercart-loading {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	display: none;
}
.slidercart-loading div {
    position: absolute;
	z-index: 3;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #f8f9fb;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slidercart-loading div i {
	width: 50px;
    height: 50px;
    color: #000;
    vertical-align: middle;
    pointer-events: none;
    border: 6px solid transparent;
    border-top-color: currentcolor;
    border-radius: 50%;
    -webkit-animation: 1s loading linear infinite;
    animation: 1s loading linear infinite;
    position: relative;
}
.slidercart-loading div i::before {
    content: '';
    display: block;
    width: inherit;
    height: inherit;
    position: absolute;
    top: -6px;
    left: -6px;
    border: 6px solid currentcolor;
    border-radius: 50%;
    opacity: .5;
}


.slidercart-list {
    float: left;
    width: 100%;
    height: calc(100% - 54px);
    background: #e6e6e6;
    padding: 12px;
    overflow-y: scroll;
    overflow-y: overlay;
}

.slidercart-list::-webkit-scrollbar {
	width: 7px;
	height: 7px;
	cursor: pointer
}
  
.slidercart-list::-webkit-scrollbar-track {
	background:#f1f1f1;
}

.slidercart-list::-webkit-scrollbar-thumb {
	background:#000;
}


.slidercart-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 54px;
	background: #FFF;
    display: flex;
}
.slidercart-bottom-total {
    width: 50%;
    height: 100%;
    font-family: sf-compact-text-bold;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slidercart-checkout {
    width: 50%;
	height: 100%;
	background: var(--buttonBackgroundColor);
	color: var(--buttonFontColor);
}
.slidercart-checkout .button-text span {
	font-family: sf-compact-text;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
}
