/* Спиннер на кнопке при ожидании ответа сервера */

@keyframes rc-spin {
	to {
		transform: rotate(360deg);
	}
}

.rc-spinner {
	display: inline-block;
	width: 26px;
	height: 26px;
	border: 3px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: rc-spin 0.7s linear infinite;
	vertical-align: middle;
	box-sizing: border-box;
}

.rc-anchor-loading {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 10em;
	min-height: 44px;
	box-sizing: border-box;
}

.modal-dialog .rc-anchor-loading.btn-nb {
	line-height: 1.2;
}

.rc-submit-loading-wrap {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

.rc-submit-loading-overlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.rc-submit-loading-input {
	opacity: 0.75;
}
