.btn-promocode {
	position: relative;
	width: 100%;
	display: flex;
	gap: 6px;
	align-items: center;
	text-transform: uppercase;
	background: #22AB00;
	color: #fff;
	border: none;
	padding: 6px 12px;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	line-height: 1.1;
	box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.14);
	transition: background ease .15s;
}

.btn-promocode::after {
	content: '';
	position: absolute;
	top: 21px;
	right: 33px;
	width: 30px;
	height: 30px;
	background-image: url(../../images/cursor-bg.svg);
	background-size: 30px;
}

.btn-promocode:hover {
	background: #25bc00;
}

.btn-promocode__caption {
	display: block;
	color: rgba(255, 255, 255, .4);
	font-size: 10px;
	font-weight: normal;
	margin-bottom: 3px;
}

.btn-promocode svg:not([class]) {
	display: none;
}

.btn-promocode svg {
	width: 24px;
	height: 26px;
	margin-left: auto;
}