input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: none;
}

input[type="email"],
input[type="text"],
input[type="tel"],
input[type="password"],
textarea, 
select {
	height: 40px;
	width: 100%;
	padding: 10px 10px;
	display: block;
	font-size: 0.8rem;
	line-height: 1.25;
	font-family: var(--font-family-text);
	transition: var(--transition);
	background-color: transparent;
    border: unset;
    border-bottom: 1px solid #cbcbcb;
}

textarea,
.woocommerce form .form-row textarea{
	height: 180px;
	resize: vertical;
}

.woocommerce form .form-row .input-text{
	padding: 12px 16px;
	border-color: #bebebe;
}

.woocommerce form .form-row label{
	line-height: 1.4rem;
}

input[type="email"]:hover,
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="password"]:hover,
textarea:hover {
	border-bottom: 1px solid #333333;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #a4a4a4;
}

input.yith-s{
    outline: none;
}
@media (max-width: 1025px){
	input.yith-s{
        display: none;
    }
}

/* Select */
select{
	transition: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.nice-select{
	transition: none;
	border: var(--border);
	border-radius: 0;
	padding-inline: 10px;
	font-size: 0.85rem;
    font-family: var(--font-family-text);
    transition: var(--transition);
    min-width: 200px;
    text-transform: uppercase;
}

.nice-select:hover{
	border: 1px solid var(--color-secondary);
}

.nice-select:after{
	border-bottom: 1px solid var(--color-text);
    border-right: 1px solid var(--color-text);
}

/* Submit button */
input[type="submit"] {
	color: #fff;
	background-color: var(--color-primary);
	border: unset;
	height: auto;
	padding: 12px 16px;
	min-width: 160px;
	text-transform: uppercase;
	font-family: inherit;
	font-weight: 600;
	transition: var(--transition);
	cursor: pointer;
	border-radius: 32px;
}

input[type="submit"]:hover {
	background-color: var(--color-text);
	border: none;
}

.wpcf7 .wpcf7-submit:disabled {
	opacity: 0.8;
}

/* Contact Form 7 */
.wpcf7-form .wpcf7-form-control-wrap{
	display: block;
	margin-bottom: 20px;
}

.wpcf7 form .wpcf7-response-output{
	margin: 20px 0;
}

/* Spinner */
.wpcf7-spinner{
	vertical-align: middle;
}

/* GUS */
#billing_vat_number_field .woocommerce-input-wrapper{
	position: relative;
	display: block;
}

.get_gus {
	position: absolute;
    text-align: right;
    font-size: 12px;
    margin-top: 0px;
    width: auto;
    height: 100%;
    right: 0px;
	top: 0px;
	text-decoration: none;
}

a.open_gus{
	display: inline-flex;
	align-items: center;
	height: 100%;
	border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: unset;
    background-color: var(--color-primary);
	box-shadow: unset;
}

a.open_gus:hover{
	transform: none;
	background: unset;
	background-color: var(--color-primary);
}

/* No label form */
@media screen and (min-width: 768px){
	form .row{
		display: flex;
		justify-content: space-between;
		gap: 15px;
	}
	form .row > *{
		width: 100%;
	}
}

@media screen and (max-width: 767px){
	form .row .wpcf7-form-control-wrap{
		display: block;
		margin-bottom: 15px;
	}
}

.form--nolabels form > .wpcf7-form-control-wrap{
	display: block;
	margin-bottom: 15px;
}

/* Tips */
.wpcf7-not-valid-tip,
span.wpcf7-not-valid-tip{
	position: absolute;
    top: 100%;
    left: 0;
    font-size: 0.75rem;
}

/* Mobile */
@media screen and (max-width: 768px){
	input[type="email"],
	input[type="text"],
	input[type="tel"],
	input[type="password"],
	textarea, 
	select,
	.nice-select{
		font-size: 1rem;
	}
	.wpcf7-spinner{
		margin-top: 10px;
	}
}

.grecaptcha-badge { visibility: hidden; }

/* Comments */
.comment-reply-title {
	font-size: 1.6rem;
	text-align: center;
	margin-bottom: 0;
}

.logged-in-as,
.form-submit,
.comment-notes,
.comment-form-rating {
	text-align: center; 
}

@media screen and (min-width: 769px) {
	.comment-form-author,
	.comment-form-email {
		width: 48%;
	}
	.comment-form-author {
		float: left;
	}
	.comment-form-email {
		float: right;
	}
	.comment-form-cookies-consent {
		clear: both;
	}
}