/** @format */

@import 'fonts.css';

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	font-family: 'Roboto-Regular';
	min-height: 100%;
	background-image: -o-radial-gradient(75% 0, circle, #F7F8FA, #C2C3CB);
	background-image: radial-gradient(circle at 75% 0, #F7F8FA, #C2C3CB);
	background-attachment: fixed;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#app {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}

.sm-container {
	min-width: 330px;
	max-width: 100%;
	color: #333645;
	margin: 0 auto;
	padding: 24px;
	overflow: hidden;
}

.sm-container__caption {
	display: block;
}

.sm-container__title {
	font: 20px 'Roboto-Medium';
	margin-bottom: 30px;
	text-align: center;
}

.sm-container__timer {
	font-size: 13px;
	padding: 15px 10px;
	background-color: #FFDC62;
	border-radius: 91px;
	margin-bottom: 30px;
	text-align: center;
	color: #666A7D;
}

.sm-container__error,
.sm-container__expired {
	font-size: 13px;
	padding: 15px 39px;
	background: #ef5454;
	border-radius: 91px;
	margin: 41px 0px 71px;
	text-align: center;
}

.sm-container__action {
	text-align: center;
}

.sm-container__action-title {
	font: 20px 'Roboto-Medium';
	text-align: center;
	min-height: 26px;
	margin-bottom: 30px;
}

.sm-container__action-loader {
	-webkit-animation: rotate 3s linear infinite;
	animation: rotate 3s linear infinite;
	height: 100%;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	z-index: 1;
}

.sm-container__wrapper-button {
	position: relative;
	width: 300px;
	height: 300px;
	margin: 0 auto;
}

.sm-container__button-shadow {
	position: absolute;
	width: 247px;
	height: 247px;
	z-index: -1;
	margin: 0 auto;
	background: -o-linear-gradient(
		283.45deg,
		#C2C3CB 8.98%,
		#C2C3CB 44.55%,
		#C2C3CB 67.03%,
		#C2C3CB 92.29%
	);
	background: linear-gradient(
		166.55deg,
		#C2C3CB 8.98%,
		#C2C3CB 44.55%,
		#C2C3CB 67.03%,
		#C2C3CB 92.29%
	);
	-webkit-filter: blur(42px);
	filter: blur(42px);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
}

.sm-container__push-button {
	position: absolute;
	width: 198px;
	height: 198px;
	border-radius: 50%;
	background: rgba(196, 196, 196, 0.01);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 3;
}

.sm-container__push-button:after,
.sm-container__push-button:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	z-index: -1;
}

.fake-button:before {
	background: rgba(196, 196, 196, 0.01);
	opacity: 0.7;
	-webkit-box-shadow: inset 0px 0px 50px #FFFFFF;
	box-shadow: inset 0px 0px 50px #FFFFFF;
}

.fake-button:after {
	background: rgba(196, 196, 196, 0.01);
	opacity: 0.3;
	-webkit-box-shadow: inset 3px 3px 4px #ffffff;
	box-shadow: inset 3px 3px 4px #ffffff;
}

.fake-button:active::before {
	opacity: 0.4;
	outline: none;
}

.send-button {
	pointer-events: none;
}

.send-button:before {
	background: rgba(196, 196, 196, 0.01);
	opacity: 0.7;
	-webkit-box-shadow: inset -5px 0px 31px #FFFFFF;
	box-shadow: inset -5px 0px 31px #FFFFFF;
}

.send-button:after {
	background: rgba(196, 196, 196, 0.01);
	opacity: 0.3;
	-webkit-box-shadow: inset 13px 13px 43px #ffffff;
	box-shadow: inset 13px 13px 43px #ffffff;
}

.sm-container__action-button {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	margin: 0 auto;
	background-color: transparent;
	border: none;
}

.sm-container__action-button img {
	vertical-align: middle;
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes rotate {
	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}
