/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -34px;
    right: -2px;
    font-size: 12px !important;
    font-weight: 500;
    color: #B43333;
    line-height: 1.16em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: "Fira Sans" !important;
    font-weight: 500 !important;
}


.wpcf7-not-valid-tip::before {
    content: '!';
    position: absolute;
    top: -37px;
    right: 14px;
    font-weight: 400;
    width: 21px;
    height: 20px;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #B43333;
    color: #FFF;
    border-radius: 50%;
}

.wpcf7-not-valid-icon {
    position: absolute;
    bottom: 13px;
    right: 11px;
}

.choices + .wpcf7-not-valid-tip{
    bottom: -19px;
    right: 41px;
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

form.submitting .has-spinner {
    pointer-events: none;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}