@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

.widget--btn {
	-webkit-transition: box-shadow .15s ease-in-out;
	transition: box-shadow .15s ease-in-out;
	box-sizing: border-box;
	display: block;
	width: 100%;
	color: #fff;
	border: none;
	padding: 0;
	font: 400 12px/1.2 "Montserrat", Arial, Helvetica, sans-serif;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
}

.widget--btn:hover {
	box-shadow: 0 0 5px rgba(33, 33, 33, .5);
}

.widget--btn:hover .widget--btn__body {
	background-color: #3b3a3a;
}

.widget--btn:focus {
	outline: none;
}

.widget--btn * {
	box-sizing: border-box;
	display: block;
}

.widget--btn__body {
	-webkit-transition: background-color .15s ease-in-out;
	transition: background-color .15s ease-in-out;
	text-align: center;
	padding: 6px 0 9px;
	background-color: #212121;
}

.widget--btn__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 0 6px;
}

.widget--btn__col {
	padding: 0 10px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.widget--btn__col .widget--btn__text {
	padding-bottom: 7px;
}

.widget--btn__text {
	display: block;
	color: #808080;
	font-size: 11px;
}

.widget--btn__price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
}

.widget--btn__price-sup {
	-ms-flex-item-align: start;
	align-self: flex-start;
	display: inline-block;
	font-size: 14px;
	line-height: 1;
}

.widget--btn__price-sub {
	-ms-flex-item-align: end;
	align-self: flex-end;
	display: inline-block;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.4;
}

.widget--btn__footer {
	background-color: #d71921;
	padding: 9px 13px;
	text-transform: uppercase;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 12px;
	line-height: 1;
}

.widget--btn__footer-icon {
	width: 17px;
	height: auto;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 10px;
}

