.form-group-input.code-input-block {
	display: flex;
	width: 272px;
	margin: 16px auto;
}

#inline-form-code-confirm .one-symbol-input {
	width: 50px;
	height: 50px;
	margin: 0 9px;
	padding: 7px;
	font-size: 21px;
	text-align: center;
	border-radius: 7px;
	border: 1px solid gray;
	-moz-appearance: textfield;
}

#inline-form-code-confirm .one-symbol-input::-webkit-outer-spin-button,
#inline-form-code-confirm .one-symbol-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

#inline-form-code-confirm .text-center {
	text-align: center;
}

#inline-form-code-confirm .code-note.code-errors {
	color: red;
}

.loader-box {
	width: 100%;
	height: auto;
	justify-content: center;
	align-items: center;
	display: none;
}

.loader-box.active {
	display: flex;
}

.container-box {
	height: 15px;
	width: 105px;
	display: flex;
	position: relative;
}

.container-box .circle {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #151928;
	animation: move 500ms linear 0ms infinite;
	margin-right: 30px;
}

.container-box .circle:first-child {
	position: absolute;
	top: 0;
	left: 0;
	animation: grow 500ms linear 0ms infinite;
}

.container-box .circle:last-child {
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 0;
	animation: grow 500ms linear 0s infinite reverse;
}

@keyframes grow {
	from {
		transform: scale(0, 0);
		opacity: 0;
	}
	to {
		transform: scale(1, 1);
		opacity: 1;
	}
}

@keyframes move {
	from {
		transform: translateX(0px)
	}
	to {
		transform: translateX(45px)
	}
}

.btn--dark {
	padding: 10px
}

.btn--dark img {
	height: 100%;
}