input[type=date].form-control,
input[type=number].form-control,
input[type=email].form-control,
input[type=tel].form-control,
input[type=text].form-control,
input[type=file].form-control,
div.form-control,
select.form-control,
textarea.form-control{
height: 3rem;
background-color: var(--white);
border: 1px solid var(--neutrals700);
font-size: 1rem;
color: var(--neutrals600);
border-radius: .5rem;
font-family: inherit;
}
textarea.form-control{
height: auto;
}
input:focus{
box-shadow: none !important;
}
.customForm input::placeholder {
color: #b5b5b5;
}
.customForm .customBtn{
padding-top: 0.75rem;
padding-bottom: 0.4rem;
}
.customForm .form-label{
padding: 0 .5rem;
margin-bottom: .25rem;
color: var(--green900);
}
.customForm .customBtn.btn-sm{
padding: 0.3rem 1rem;
min-height: 2.5rem;
border-radius: 1rem !important;
font-weight: 400 !important;
display: flex;
align-items: center;
}
.markRequired{
padding-left: .25rem;
color: var(--semanticred-500);
}
.inlineForm{
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #d8d8d8;
padding: 0.5rem;
border-radius: 1rem;
}
.inlineForm input[type="text"].form-control{
border-width: 0;
background-color: transparent
}
.input-group{
border: 1px solid var(--neutrals200);
background-color: var(--neutrals50);
border-radius: 2rem;
overflow: hidden;
}
.input-group input,
.input-group .input-group-text{
border-width: 0 !important;
}
.input-group .form-control{
padding-left: 0 !important;
color: var(--neutrals600);
} .customCheckbox input + label > .fakeCheck::after{
content: "";
position: absolute;
width: 0px;
height: 0px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: var(--neutrals200);
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.customCheckbox input + label{
position: relative;
cursor: pointer;
display: inline-flex;
align-items: center;
}
.customCheckbox input + label > .fakeCheck{
display: flex;
font-size: 0;
gap: 0.25rem;
margin-right: .5rem;
cursor: pointer;
border: 2px solid var(--neutrals200);
padding: .5rem;
position: relative;
}
.customCheckbox input[type="radio"] + label > .fakeCheck,
.customCheckbox input[type="radio"] + label > .fakeCheck::after{
border-radius: 50%;
}
.customCheckbox input[type=radio],
.customCheckbox input[type=checkbox]{
display: none;
} .customCheckbox input:checked + label > .fakeCheck::after{
height: 80%;
width: 80%;
}
#form-contatti.customForm .customCheckbox input + label > .fakeCheck{
border: 1px solid var(--neutrals700)
}
#form-contatti.customForm .customCheckbox input + label > .fakeCheck::after{
background-color: var(--neutrals700)
} @media (max-width: 1023px){
}
@media (max-width: 767px){
.inlineForm{
flex-direction: column;
}
.inlineForm .customBtn{
width: 100%;
margin-top: 0.5rem;
}
}