/* contact form */
.emts-cf7-wrapper .wpcf7-form { display: flex; flex-direction: column; gap: 20px; }
.emts-cf7-wrapper .wpcf7-form p:not(:has(.wpcf7-submit)):not(:has(textarea)) { flex: 1 1 100%; margin: 0; }
.emts-cf7-wrapper .wpcf7-form p:has(textarea) { flex: 1 1 100%; margin: 0; }
.emts-cf7-wrapper .wpcf7-form p input[type="text"],
.emts-cf7-wrapper .wpcf7-form p input[type="email"],
.emts-cf7-wrapper .wpcf7-form p input[type="tel"], 
.emts-cf7-wrapper .wpcf7-form p input[type="url"],
.emts-cf7-wrapper .wpcf7-form p input[type="number"],
.emts-cf7-wrapper .wpcf7-form p textarea { width: 100%; background-color: transparent; border: 1px solid var(--bordercolor); border-radius: 20px; outline: none; padding: 10px 25px; height: 50px; font-family: var(--primaryfont); transition: all 0.3s ease-out; }
.emts-cf7-wrapper .wpcf7-form p input[type="text"]:focus,
.emts-cf7-wrapper .wpcf7-form p input[type="email"]:focus,
.emts-cf7-wrapper .wpcf7-form p input[type="tel"]:focus, 
.emts-cf7-wrapper .wpcf7-form p input[type="url"]:focus,
.emts-cf7-wrapper .wpcf7-form p input[type="number"]:focus,
.emts-cf7-wrapper .wpcf7-form p textarea:focus { border-color: var(--linkhovercolor); }
.emts-cf7-wrapper .wpcf7-form p .wpcf7-submit { background-color: var(--secondarycolor); border: none; border-radius: 20px; color: var(--accenttxtcolor); cursor: pointer; font-family: var(--primaryfont); font-size: 16px; padding: 16px 36px; transition: all 0.3s ease-out; }
.emts-cf7-wrapper .wpcf7-form p .wpcf7-submit:hover { background-color: var(--linkhovercolor); }

.emts-cf7-wrapper .wpcf7-form p:has(.wpcf7-submit) { position: relative; }
.emts-cf7-wrapper .wpcf7-form p:has(.wpcf7-submit) .wpcf7-spinner { position: absolute; right: 0; left: 0; top: 0; bottom: 0; margin: auto; }
.emts-cf7-wrapper .wpcf7-response-output { width: 100%; }