
.stomGFAS-container-field .stomGFAS-inner {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	width: auto;
	max-width: 350px;
	padding: 10px 10px 10px 15px;
	background-color: #f8f8f8;
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	-webkit-box-shadow: 0 4px 6px -3px rgba(0, 0, 0, .09);
	-moz-box-shadow: 0 4px 6px -3px rgba(0, 0, 0, .09);
	box-shadow: 0 4px 6px -3px rgba(0, 0, 0, .09);
}

.stomGFAS-container-field .stomGFAS-description {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.stomGFAS-container-field .stomGFAS-changes {
	width: 25px;
	height: 25px;
	display: grid;
	grid-template-columns: 100%;
	align-items: center;
	justify-items: center;
}

.stomGFAS-container-field .stomGFAS-the-element,
.stomGFAS-container-field .stomGFAS-loader,
.stomGFAS-container-field .stomGFAS-complete {
	grid-column: 1/-1;
	grid-row: 1/-1;
	opacity: 0;
	transition: opacity 250ms;
}

.stomGFAS-container-field .stomGFAS-the-element {
	width: 25px;
	height: 25px;
	border: 2px solid #c1c1c1;
	border-radius: 2px;
	background-color: #fff;
}

.stomGFAS-container-field:not(.stomGFAS-challenge):not(.stomGFAS-validated) .stomGFAS-the-element {
	opacity: 1;
}

.stomGFAS-container-field .stomGFAS-loader {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 3px solid rgba(0, 0, 0, .2);
	border-right-color: currentColor;
	animation: rotateSpinner 800ms linear infinite;
	pointer-events: none;
}

.stomGFAS-container-field.stomGFAS-challenge .stomGFAS-loader {
	opacity: 1;
}

@keyframes rotateSpinner {
	from {
		transform: rotate(0deg) scale(1.4);
	}
	to {
		transform: rotate(359deg) scale(1.4);
	}
}

.stomGFAS-container-field .stomGFAS-complete {
	color: #468769;
	font-size: 25px;
	line-height: 0;
	transform: scale(1.4);
	pointer-events: none;
}

.stomGFAS-container-field .stomGFAS-complete svg path {
	fill: currentColor !important;
}

.stomGFAS-container-field.stomGFAS-validated .stomGFAS-complete {
	opacity: 1;
}

.stomGFAS-container-field .stomGFAS-label {
	color: #202d35;
	line-height: 1;
	cursor: default;
}

.stomGFAS-container-field .stomGFAS-badge {
	display: block;
	line-height: 0;
}

.stomGFAS-container-field .stomGFAS-icon {
	position: relative;
	display: block;
	font-size: 50px;
	font-family: serif;
	font-style: italic;
	pointer-events: none;
}

.stomGFAS-container-field .stomGFAS-icon path:last-child {
	opacity: 0;
	transition: opacity 250ms;
}

.stomGFAS-container-field.stomGFAS-validated .stomGFAS-icon path:last-child {
	opacity: 1;
}



.stomGFAS-container-field.stomGFAS-blocked .stomGFAS-inner {
	max-width: 550px;
	flex-direction: row-reverse;
}

.stomGFAS-container-field.stomGFAS-blocked .stomGFAS-description {
	display: block;
}

.stomGFAS-container-field.stomGFAS-blocked .stomGFAS-icon path:last-child {
	opacity: 1;
}

.stomGFAS-container-field.stomGFAS-blocked .stomGFAS-icon {
	color: #de4343;
}

.stomGFAS-container-field.stomGFAS-blocked .stomGFAS-icon path {
	fill: currentColor;
}



.stomGFAS-container-field.stomGFAS-error .stomGFAS-inner {
	max-width: 100%;
}

.stomGFAS-container-field.stomGFAS-error .stomGFAS-changes,
.stomGFAS-container-field.stomGFAS-error .stomGFAS-badge {
	display: none;
}

.stomGFAS-container-field.stomGFAS-error .stomGFAS-label {
	line-height: 1.4;
}

.stomGFAS-container-field.stomGFAS-error .stomGFAS-label strong {
	display: block;
	margin-bottom: .5em;
}
