<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.callback-button__wrapper {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70px;
	z-index: 999;
}
.callback-button__wrapper:before,
.callback-button__wrapper:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: opacity .3s;
	will-change: opacity;
	background: center / contain no-repeat linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
.callback-button__wrapper:after {
	opacity: 0;
	background: center / contain no-repeat linear-gradient(180deg, rgba(45, 56, 69, 0) 0%, #2D3845 100%);
}
/*.callback-button__wrapper.dark-gradient:before {*/
	/*opacity: 0;*/
/*}*/
/*.callback-button__wrapper.dark-gradient:after {*/
	/*opacity: 1;*/
/*}*/
.callback-button {
	position: absolute;
	left: 0;
	bottom: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex !important;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 22px;
	background: #90AF38;
	color: #fff;
	max-width: 218px;
	height: 38px;
	padding: 0 25px 0 53px;
	box-shadow: 5px 5px 38px rgba(34, 36, 43, 0.3);
	border-radius: 0px 36px 0px 0px;
	text-decoration: none;
	z-index: 2;
}
a.callback-button:hover {
	color: #fff;
	text-decoration: none;
}
.callback-button__icon {
	position: absolute;
	left: 20px;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translate(0,-50%);
}
.callback-button__icon svg {
	fill: #fff;
	width: 100%;
	height: auto;
}
@media(max-width: 999px) {
	.callback-button__wrapper {
		display: block;
	}
}</pre></body></html>