
.stomWAS-container-field {
	overflow: hidden;
    clear: both;
}

.stomWAS-container-field .stomWAS-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	width: auto;
	max-width: 350px;
	margin: 10px 0;
	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);
}

.stomWAS-container-field .stomWAS-description {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.stomWAS-container-field .stomWAS-changes {
	width: 25px;
	height: 25px;
	display: grid;
	grid-template-columns: 100%;
	align-items: center;
	justify-items: center;
}

.stomWAS-container-field .stomWAS-the-element,
.stomWAS-container-field .stomWAS-loader,
.stomWAS-container-field .stomWAS-complete {
	grid-column: 1/-1;
	grid-row: 1/-1;
	opacity: 0;
	transition: opacity 250ms;
}

.stomWAS-container-field .stomWAS-the-element {
	width: 25px;
	height: 25px;
	border: 2px solid #c1c1c1;
	border-radius: 2px;
	background-color: #fff;
}

.stomWAS-container-field:not(.stomWAS-challenge):not(.stomWAS-validated) .stomWAS-the-element {
	opacity: 1;
}

.stomWAS-container-field .stomWAS-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;
}

.stomWAS-container-field.stomWAS-challenge .stomWAS-loader {
	opacity: 1;
}

@keyframes rotateSpinner {
	from {
		transform: rotate(0deg) scale(1.4);
	}
	to {
		transform: rotate(359deg) scale(1.4);
	}
}

.stomWAS-container-field .stomWAS-complete {
	color: #468769;
	font-size: 25px;
	line-height: 0;
	transform: scale(1.2);
	pointer-events: none;
}

.stomWAS-container-field .stomWAS-complete svg path {
	fill: currentColor !important;
}

.stomWAS-container-field.stomWAS-validated .stomWAS-complete {
	opacity: 1;
}

.stomWAS-container-field .stomWAS-label {
	color: #202d35;
	line-height: 1;
	cursor: default;
}

.stomWAS-container-field .stomWAS-badge {
	display: block;
	line-height: 0;
}

.stomWAS-container-field .stomWAS-icon {
	position: relative;
	display: block;
	font-size: 30px;
	font-family: serif;
	font-style: italic;
	pointer-events: none;
}

.stomWAS-container-field .stomWAS-icon path:last-child {
	opacity: 0;
	transition: opacity 250ms;
}

.stomWAS-container-field.stomWAS-validated .stomWAS-icon path:last-child {
	opacity: 1;
}



.stomWAS-container-field.stomWAS-blocked .stomWAS-inner {
	max-width: 550px;
	flex-direction: row-reverse;
}

.stomWAS-container-field.stomWAS-blocked .stomWAS-description {
	display: block;
}

.stomWAS-container-field.stomWAS-blocked .stomWAS-icon path:last-child {
	opacity: 1;
}

.stomWAS-container-field.stomWAS-blocked .stomWAS-icon {
	color: #de4343;
}

.stomWAS-container-field.stomWAS-blocked .stomWAS-icon path {
	fill: currentColor;
}



.stomWAS-container-field.stomWAS-error .stomWAS-inner {
	max-width: 100%;
}

.stomWAS-container-field.stomWAS-error .stomWAS-changes,
.stomWAS-container-field.stomWAS-error .stomWAS-badge {
	display: none;
}

.stomWAS-container-field.stomWAS-error .stomWAS-label {
	line-height: 1.4;
}

.stomWAS-container-field.stomWAS-error .stomWAS-label strong {
	display: block;
	margin-bottom: .5em;
}
