/* Global buttons with icons */
.btn-buy {
	display: inline-block;
}
.btn-buy a,
input[type="submit"]  {
	display: flex;
	gap: 1ch;
	align-items: center;
	transition: all .2s;
	box-sizing: border-box;
	padding: 0.5rem 1rem;
	color: var(--secondary-light);
	background: var(--tertiary-base);
	
    box-shadow: 0 2.6rem 1.3rem -1.3rem var(--tertiary-dark) inset; 
	font-size: 1.6rem;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
}
.btn-buy a:hover,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: var(--tertiary-light);
}

/* Global Icons */
.btn-buy a:after {
	content: '';
	width: 1.8rem;
	height: 1.8rem;
	display: inline-block;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: 50%;
}

/* Icons */
.btn-buy a:after {
	background-image: url(../images/icon-buy.svg);
}

/* Btn CSS */
.btn-wrapper {
	flex: 0 0 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: flex-start;
	align-items: center;
	padding: 2rem 2rem 0 2rem;
}
.btn-back {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.4rem;
}
.main a[class*="btn-back"] {
position: relative;
	font-family: Arial, Helvetica, sans-serif;
}
[class*="btn-back"]:before {
content:'';
display: inline-block;
width: 0;
height: 0;/*
position: absolute;
top:50%;
right:0;
margin-top:-0.4rem;*/
border-style: solid;
border-width: .4rem .8rem .4rem 0;
border-color: transparent var(--tertiary-light) transparent transparent;
transition: all .2s;
} 

.btn-back-history:before {
	margin-right: 0.8rem;
} 
.btn-back-history:after {
content:'';
display: inline-block;
width: 0;
height: 0;
position: absolute;
top:50%;
left:0.4rem;
margin-top:-0.4rem;
border-style: solid;
border-width: .4rem .8rem .4rem 0;
border-color: transparent var(--tertiary-light) transparent transparent;
transition: all .2s;
} 
