/*------------------------
   SHOPPING CART
------------------------*/

/* Cart dropdown */

/*#AIRvarukorg-Wrap .close-header:before {
	font-family: "Font Awesome 5 Pro";
	content: "\f07a";
	font-weight: 200;
}*/

#AIRvarukorg-Wrap .RowWrap {
	overflow-y: auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	padding-bottom: 1rem;
	height: calc(100% - calc(263px + 2rem)); /* Roughly equiv to top of header + fixed footer */
}

#AIRvarukorg-Wrap .RowWrap::-webkit-scrollbar {display: none;}

#AIRvarukorg-Wrap {
	overflow-y: hidden;
}

/* Btn */
.TxtWrap .Rem{
	position: absolute;
	right: 0;
	top: 0;
}

.TxtWrap .Sub:before,
.TxtWrap .Add:before,
.TxtWrap .Rem:before {
	font-family: "Font Awesome 5 Pro";
	font-weight: 200;
}

.TxtWrap .Sub:before {
	content: "\f068"
}

.TxtWrap .Add:before {
	content: "\f067"
}

.TxtWrap .Rem:before {
	content: "\f00d";
	margin-left: 1rem;
	font-size: 1.2rem;
	color: #999;
}

.Checkout {
	text-align: center;
	margin: 0 auto;
	width: 90%;
	position: relative;
	transition: filter 150ms ease;
}

.Checkout:hover {
	filter: brightness(1.06);
}

.Checkout:hover::after {
	transform: translate(8px, -50%);
}

.Checkout a {
	border-radius: 30px;
	font-size: 20px;
	letter-spacing: -1px;
	text-transform: uppercase;
	padding: 1.2em;
	font-weight: 600;
}

.Checkout::after{
    position: absolute;
    right: 20px;
    top: 50%;
    font-family: 'Font Awesome 5 Pro';
    content: '\f178';
    color: #fff;
    font-size: 22px;
    transform: translate(0, -50%);
    font-weight: 400;
	transition: transform 100ms ease-in;
}

/* txt */

.SumWrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	margin: 1em 0 1.5em;
}

.SumTxt {
	margin: 0 5px;
}


.BError {
	padding: var(--gutter);
}
.fraktfriinformation_header_text {display: none;}
.fraktfriinformation {display: block; text-align: center; padding: var(--gutter) var(--gutter) 0;}
.kvar_till_fraktfritt_uppnadd {color: var(--success-color);}
.kvar_till_fraktfritt_uppnadd::before {
	font-family: "Font Awesome 5 Pro";
    content: '\f48b';
	margin-right: 5px;
	font-weight: 300;
}
.kvar_till_fraktfritt_ej_uppnadd {color: var(--danger-color);}

.br-vk {
	display: none;
}

/* font weight / size */

.VarukorgVarum,
.DescrWrap .Descr {
	font-size: 14px;
}

.DescrWrap .Descr {
	font-weight: 400;
	font-size: 15px;
}

.SumTxt,
.Sum {
	font-size: 20px;
	font-weight: 600;
}

.TxtWrap .Price {
	font-weight: 600;
}

.TxtWrap .Rabatt,
.BError {
	color: var(--danger-color);
}
.BError {font-size: 0.8rem;}
/* Cart Row */
.BWrap .Row {
	/* border-bottom: 1px solid #f1f1f1; */
	padding: 0.5rem 1rem 0.5rem;
}

.BWrap .Row,
.BWrap .Row>div {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

}

.BWrap .Row .Img {
	justify-content: center;
	align-items: center;
	/* padding: 0 0.5rem; */
	/* flex: 0 1 20%; */
	flex-shrink: 0;
	position: relative;
	width: 90px;
	height: 90px;
	overflow: hidden;
}

.BWrap .Row .Img a {
	max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.BWrap .Row .Img a img {
	margin: auto;
    object-fit: scale-down;
    max-height: 75%;
    max-width: 75%;
}

.BWrap .Row .TxtWrap {
	position: relative;
	align-items: center;
	flex-wrap: wrap;
}

.BWrap .Row .Img::after {
	content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.05);
    position: absolute;
    pointer-events: none;
}

.BWrap .Row .TxtWrap {
	flex: 0 1 100%; /*80%*/
	margin-left: 15px;
}

.DescrWrap {
	flex: 100%;
	margin-bottom: 0.5rem;
}

.TxtWrap .Price {
	flex: 0 1 40%;
	text-align: right;
	margin-left: auto;
	font-size: 1rem;
}

input[type='text'].Qty {
	flex: 0 1 20%;
}

.TxtWrap .Sub,
.TxtWrap .Add,
.TxtWrap .Rem {
	flex: 0 1 10%;
	text-align: center;
	cursor: pointer;
}

.TxtWrap .Sub {
	order: 1;
}

input[type='text'].Qty, .TxtWrap .Sub + label {
	order: 2;
}

.TxtWrap .Sub + label > span {
	display:none;
}

.TxtWrap .Add {
	order: 3;
}

.TxtWrap .Rem {
	order: 4;
}

.TxtWrap .Price {
	order: 5;
}

input[type='text'].Qty {
	pointer-events: none;
	padding: 0;
	text-align: center;
	font-weight: 700;
	border: 0;
	height: 30px !important;
	font-size: 11px;
	margin: 0 5px;
}

.BWrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
}

.BWrap .Footer {
	position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 1px solid var(--border-color1);
	/* padding-top: 10px; */
}

/* Mobile adjustments */


@media only screen and (max-width: 48em) {
	.Varukorg {
		justify-content: center;
	}

	.Varukorg .AIRvarukorg-Qty {
        /*position: absolute;
        z-index: 1;
        top: -10px;*/
        right: 0;
	}

	.AIRvarukorg-Sum {
		display: none !important;
	}

	
	/*.BWrap .Footer {
		min-height: 25%;
	}*/
}

@media only screen and (max-width: 360px) {
	.TxtWrap .Price, .DescrWrap .Descr {font-size: 1em;}
}