.wc_bis_wrapper {
	.grid_row {
		display: grid;
		grid-template-columns: 1fr 180px;
		grid-gap: 8px;
		
		@media (max-width: 767px) {
			grid-template-columns: 100%;
		}
	}
	
	.wc_bis_form {
		position: relative;
		margin: 0;
		
		&.loading {
			&:before {
				content: "";
				position: absolute;
				inset: 0;
				background-color: #000;
				opacity: .3;
				z-index: 1;
			}
			
			&:after {
				z-index: 1;
			}
		}
	}
	
	button[type="submit"] {
		width: 100%;
	}
	
	.wc_bis_out {
		color: green;
		
		&.error {
			color: red;
		}
		
		&:not(:empty) {
			margin-top: 8px;
			padding-left: 16px;
		}
	}
}