.btn {
	font-weight: 400;
	padding: 0 22px;
	font-family: var(--font);
	color: black;
	cursor: pointer;
	line-height: 45px;
	opacity: 1;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	display: inline-block;
	font-size: 16px;
	border: unset;
	background: var(--background);
	opacity: 1;
	transform: scale(1);
	position: relative;
	border-radius: var(--border-radius);
	text-align: center;
	font-weight: 500;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
	/* border: var(--border); */
	font-weight: 700;
	color: #121017;
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}



.btn:after {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	content: "";
	width: 0;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.15);
}


.btn:hover:after {
	width: 100%;
}

.btn img {
	height: 18px;
	margin-right: 5px;
	position: relative;
	top: 3px;
	width: 18px;
	object-fit: contain;
	/* filter: invert(1); */
	/* opacity: 0.5; */
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.btn:hover img {
	opacity: 1
}



.btn.btn-s {
	line-height: 34px;
	padding: 0 14px;
	font-size: 15px;
}

.btn.btn-xs {
	line-height: 25px;
	padding: 0 10px;
	font-size: 14px;
}

.btn.btn-l {
	line-height: 48px;
	padding: 0 20px;
	font-size: 18px;
}

.btn.btn-l img {
	height: 20px;
	width: 18px;
	top: 1px;
}

.btn.btn-xl {
	line-height: 48px;
	padding: 0 20px;
	font-size: 20px;
}

.btn.btn-xl img {
	height: 20px;
	width: 18px;
	top: 1px;
}


/*
.btn.btn-gradient1 {


	color: black;
	background: linear-gradient(221deg, var(--color) 0%, var(--color3) 100%);

	background: linear-gradient(90deg, #fc466b 0%, #3f5efb 100%);
}

.btn.btn-border-gradient1 {
	box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
	border: solid 1px transparent;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(221deg, var(--color), var(--color3));
	background-origin: border-box;
	background-clip: content-box, border-box;
	box-shadow: 2px 1000px 1px #ffffff inset;
}


body.dark .btn.btn-border-gradient1 {
	color: white;
	box-shadow: 2px 1000px 1px #000000 inset;
}



.btn.btn-black {
	background: black;
	color: white !important;
} */