/* Minify_CSS_UriRewriter::$debugText

*/

/* styles.css */

/* 1   */ .wpcf7 .screen-reader-response {
/* 2   */ 	position: absolute;
/* 3   */ 	overflow: hidden;
/* 4   */ 	clip: rect(1px, 1px, 1px, 1px);
/* 5   */ 	clip-path: inset(50%);
/* 6   */ 	height: 1px;
/* 7   */ 	width: 1px;
/* 8   */ 	margin: -1px;
/* 9   */ 	padding: 0;
/* 10  */ 	border: 0;
/* 11  */ 	word-wrap: normal !important;
/* 12  */ 	word-break: normal !important;
/* 13  */ }
/* 14  */
/* 15  */ .wpcf7 .hidden-fields-container {
/* 16  */ 	display: none;
/* 17  */ }
/* 18  */
/* 19  */ .wpcf7 form .wpcf7-response-output {
/* 20  */ 	margin: 2em 0.5em 1em;
/* 21  */ 	padding: 0.2em 1em;
/* 22  */ 	border: 2px solid #00a0d2; /* Blue */
/* 23  */ }
/* 24  */
/* 25  */ .wpcf7 form.init .wpcf7-response-output,
/* 26  */ .wpcf7 form.resetting .wpcf7-response-output,
/* 27  */ .wpcf7 form.submitting .wpcf7-response-output {
/* 28  */ 	display: none;
/* 29  */ }
/* 30  */
/* 31  */ .wpcf7 form.sent .wpcf7-response-output {
/* 32  */ 	border-color: #46b450; /* Green */
/* 33  */ }
/* 34  */
/* 35  */ .wpcf7 form.failed .wpcf7-response-output,
/* 36  */ .wpcf7 form.aborted .wpcf7-response-output {
/* 37  */ 	border-color: #dc3232; /* Red */
/* 38  */ }
/* 39  */
/* 40  */ .wpcf7 form.spam .wpcf7-response-output {
/* 41  */ 	border-color: #f56e28; /* Orange */
/* 42  */ }
/* 43  */
/* 44  */ .wpcf7 form.invalid .wpcf7-response-output,
/* 45  */ .wpcf7 form.unaccepted .wpcf7-response-output,
/* 46  */ .wpcf7 form.payment-required .wpcf7-response-output {
/* 47  */ 	border-color: #ffb900; /* Yellow */
/* 48  */ }
/* 49  */
/* 50  */ .wpcf7-form-control-wrap {

/* styles.css */

/* 51  */ 	position: relative;
/* 52  */ }
/* 53  */
/* 54  */ .wpcf7-not-valid-tip {
/* 55  */ 	color: #dc3232; /* Red */
/* 56  */ 	font-size: 1em;
/* 57  */ 	font-weight: normal;
/* 58  */ 	display: block;
/* 59  */ }
/* 60  */
/* 61  */ .use-floating-validation-tip .wpcf7-not-valid-tip {
/* 62  */ 	position: relative;
/* 63  */ 	top: -2ex;
/* 64  */ 	left: 1em;
/* 65  */ 	z-index: 100;
/* 66  */ 	border: 1px solid #dc3232;
/* 67  */ 	background: #fff;
/* 68  */ 	padding: .2em .8em;
/* 69  */ 	width: 24em;
/* 70  */ }
/* 71  */
/* 72  */ .wpcf7-list-item {
/* 73  */ 	display: inline-block;
/* 74  */ 	margin: 0 0 0 1em;
/* 75  */ }
/* 76  */
/* 77  */ .wpcf7-list-item-label::before,
/* 78  */ .wpcf7-list-item-label::after {
/* 79  */ 	content: " ";
/* 80  */ }
/* 81  */
/* 82  */ .wpcf7-spinner {
/* 83  */ 	visibility: hidden;
/* 84  */ 	display: inline-block;
/* 85  */ 	background-color: #23282d; /* Dark Gray 800 */
/* 86  */ 	opacity: 0.75;
/* 87  */ 	width: 24px;
/* 88  */ 	height: 24px;
/* 89  */ 	border: none;
/* 90  */ 	border-radius: 100%;
/* 91  */ 	padding: 0;
/* 92  */ 	margin: 0 24px;
/* 93  */ 	position: relative;
/* 94  */ }
/* 95  */
/* 96  */ form.submitting .wpcf7-spinner {
/* 97  */ 	visibility: visible;
/* 98  */ }
/* 99  */
/* 100 */ .wpcf7-spinner::before {

/* styles.css */

/* 101 */ 	content: '';
/* 102 */ 	position: absolute;
/* 103 */ 	background-color: #fbfbfc; /* Light Gray 100 */
/* 104 */ 	top: 4px;
/* 105 */ 	left: 4px;
/* 106 */ 	width: 6px;
/* 107 */ 	height: 6px;
/* 108 */ 	border: none;
/* 109 */ 	border-radius: 100%;
/* 110 */ 	transform-origin: 8px 8px;
/* 111 */ 	animation-name: spin;
/* 112 */ 	animation-duration: 1000ms;
/* 113 */ 	animation-timing-function: linear;
/* 114 */ 	animation-iteration-count: infinite;
/* 115 */ }
/* 116 */
/* 117 */ @media (prefers-reduced-motion: reduce) {
/* 118 */ 	.wpcf7-spinner::before {
/* 119 */ 		animation-name: blink;
/* 120 */ 		animation-duration: 2000ms;
/* 121 */ 	}
/* 122 */ }
/* 123 */
/* 124 */ @keyframes spin {
/* 125 */ 	from {
/* 126 */ 		transform: rotate(0deg);
/* 127 */ 	}
/* 128 */
/* 129 */ 	to {
/* 130 */ 		transform: rotate(360deg);
/* 131 */ 	}
/* 132 */ }
/* 133 */
/* 134 */ @keyframes blink {
/* 135 */ 	from {
/* 136 */ 		opacity: 0;
/* 137 */ 	}
/* 138 */
/* 139 */ 	50% {
/* 140 */ 		opacity: 1;
/* 141 */ 	}
/* 142 */
/* 143 */ 	to {
/* 144 */ 		opacity: 0;
/* 145 */ 	}
/* 146 */ }
/* 147 */
/* 148 */ .wpcf7 [inert] {
/* 149 */ 	opacity: 0.5;
/* 150 */ }

/* styles.css */

/* 151 */
/* 152 */ .wpcf7 input[type="file"] {
/* 153 */ 	cursor: pointer;
/* 154 */ }
/* 155 */
/* 156 */ .wpcf7 input[type="file"]:disabled {
/* 157 */ 	cursor: default;
/* 158 */ }
/* 159 */
/* 160 */ .wpcf7 .wpcf7-submit:disabled {
/* 161 */ 	cursor: not-allowed;
/* 162 */ }
/* 163 */
/* 164 */ .wpcf7 input[type="url"],
/* 165 */ .wpcf7 input[type="email"],
/* 166 */ .wpcf7 input[type="tel"] {
/* 167 */ 	direction: ltr;
/* 168 */ }
/* 169 */
/* 170 */ .wpcf7-reflection > output {
/* 171 */ 	display: list-item;
/* 172 */ 	list-style: none;
/* 173 */ }
/* 174 */
/* 175 */ .wpcf7-reflection > output[hidden] {
/* 176 */ 	display: none;
/* 177 */ }
/* 178 */
