/* fly cart */
.classic-header .navigation {
    position: relative;
    align-items: flex-start;
}
.classic-header .navigation > .mini-widgets {
	position: relative;
}

/* btn*/
a.fly-cart-btn {
    text-decoration: none !important;
    text-align: center;
    font-size: 24px;
    color: #000 !important;
}
a.fly-cart-btn:hover {
	color: var(--secondary) !important;
}
.fly-cart-btn .counter {
    top: -7px;
    right: -10px;
    width: auto;
    height: 15px;
    background: #fff;
    border-radius: 50px;
    color: #000;
    font-size: 11px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: -1px;
    position: absolute;
    padding: 0 3px;
    box-sizing: border-box;
    min-width: 15px;
    text-align: center;
}

/* window */
.fly-cart-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
	z-index: 99999999;
	display: none;
}
.fly-cart-clear {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
	opacity: 0;
	transition: .5s;
}
.fly-cart-container {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    background: #222;
	width: 300px;
	height: 100%;
	font-size: 18px;
	transform: translateX(100%);
	transition: .5s;
	color: #fff;
}
.fly-cart-wrapper.on .fly-cart-container {
	transform: translateX(0);
}
.fly-cart-wrapper.on .fly-cart-clear {
	opacity: 1;
	transition: .5s;
}
.fly-cart-title {
    border-bottom: 2px solid #ccc;
    padding: 5px 10px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
	justify-content: space-between;
    font-size: 20px;
    font-weight: 500;
}
.fly-cart-title i {
    font-size: 15px;
    cursor: pointer;
}
.fly-cart-inner {
    height: 100%;
    overflow: auto;
    position: relative;
    box-sizing: border-box;
    max-height: calc(100% - 135px);
}
.fly-cart-inner .empty-cart {
	display: block;
    margin-bottom: 10px;
	padding: 10px
}
.fly-cart-inner  .cart-item {
    display: flex;
    font-size: 15px;
    border-bottom: 1px solid #ececec;
	position: relative;
	align-items: flex-start;
	padding: 10px 10px;	
}
.cart-item.current {
	animation-name: lightoff;
	animation-duration: 7s;
	animation-delay: .5s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
@keyframes lightoff {
  0% {background-color: transparent;}
  10% {background-color: rgba(255, 255, 224, 0.11);}
  90% {background-color: rgba(255, 255, 224, 0.11);}
  100%% {background-color: transparent;}
}
.fly-cart-inner .cart-item img {
    width: 60px;
    height: 60px;
    margin-left: 10px;
}
.fly-cart-inner .cart-item:last-child {
    border-bottom: none;
}
.fly-cart-product-title {
    display: flex;
    flex-wrap: wrap;
    min-height: 60px;
    align-content: space-between;
	width: calc(100% - 70px);
    font-size: 0.9rem;
}
.fly-cart-product-title a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
    padding-left: 25px;
}
.fly-cart-product-title a span {
    display: block;
    line-height: 1;
    color: lightgray;
    font-size: 90%;
	margin-top: 3px;
}
.fly-cart-product-title a span {
    display: block;
    line-height: 1;
    color: gray;
    font-size: 90%;
	margin-top: 3px;
}
.fly-cart-product-title a span dl {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    line-height: 1.2;
	font-weight: 300;
}
.fly-cart-product-title a span dl > dt {
	display: none;
}
.fly-cart-product-title a span dl dd {
    margin: 0;
    line-height: 1;
    display: inline-flex;
}
.fly-cart-product-title a span dl dd:not(:last-child) {
	margin-inline-end: 3px;
}
.fly-cart-product-title a span dl dd:not(:last-child)::after {
    content: ",";
}
.fly-cart-product-title a span dl p {
    margin: 0;
}
.fly-cart-inner  .product-bottom {
    line-height: 1;
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 10px;
}
.fly-cart-inner .quantity {
    font-size: .9rem;
    line-height: 1;
    font-weight: 300;
    color: gray;
}
.fly-cart-inner  .woocommerce-Price-amount {
    font-weight: 500;
}
.fly-cart-inner .remove {
    text-decoration: none;
    position: absolute;
    width: 15px;
    height: 15px;
    display: flex;
    left: 10px;
    top: 13px;
    font-size: 12px;
    text-align: left;
    color: lightgray;
}
.fly-cart-inner .remove:hover {
	color: red;
}
.fly-cart-subtotal {
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    padding: 0 0 10px 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #ececec;
	line-height: 1.2;
    font-weight: 500;
    font-size: 22px;
}
.fly-cart-btns {
    display: flex;
    justify-content: space-between;
}
.fly-cart-btns a.button {
    font-weight: 500 !important;
    padding: 8px 10px;
    font-size: 1rem !important;
    width: calc(50% - 7.5px);
    text-align: center;
    color: #fff;
    box-sizing: border-box;
	text-align: center;
	justify-content: center;
}
.fly-cart-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background: #000;
    padding: 10px 10px 10px;
    height: 100px;
    border-top: 1px dotted lightgray;
    box-sizing: border-box;
}
.fly-cart-bottom small {
    display: none;
}
@media only screen and (max-width: 990px) {
	a.fly-cart-btn {
		color: #fff !important;
	}
	.fly-cart-btn .counter {
		background: var(--primary);
		color: #fff;
	}
}
@media only screen and (max-width: 480px) {
	.fly-cart-btn {
		height: 40px;
		width: 40px;
		font-size: 21px;
	}
}