/* EstimateForm */

#modal-estimate-form-container {
	position: fixed;
	display: table;
	height: 100%;
	width: 100%;
	max-width:100%;
	top: 0;
	right:0px;
	bottom:0px;
	left: 0;
	transform: scale(0); 
	z-index: 1;
}
body.sow-require-estimate
{
	margin-right: 15px;
	overflow: hidden;
}

body.sow-require-estimate #modal-estimate-form-container 
{
	max-height: 100vh;
	transform: scaleY(0.01) scaleX(0);
	animation: unfoldInEstimate .5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
	
}
body.sow-require-estimate #modal-estimate-form-container .modal-background .modal
{
	
	transform: scale(0);
	animation: zoomInEstimate 0.3s 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;

}


body #modal-estimate-form-container .modal-background .modal > .require-estimate-loader
{
	position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 4;
	visibility: hidden;
	opacity: 0;
	transition: visibility .1s linear, opacity .1s linear;
	max-height: inherit;
}

body #modal-estimate-form-container .modal-background .modal > .require-estimate-loader > img
{
	display: block;
	width: 150px;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-75px;
	margin-top: -75px;
}

body.show-require-estimate-loader #modal-estimate-form-container .modal-background .modal > .require-estimate-loader
{
	opacity: 1;
	visibility: visible;
}

body #modal-estimate-form-container .modal-background .modal > div > .require-estimate-success 
{
	display:none;
}

body.require-estimate-success #modal-estimate-form-container .modal-background .modal > div > .require-estimate-success
{
	display: block;
}

body.require-estimate-success #modal-estimate-form-container .modal-background .modal > div > .modal-content
{
	display: none;
}

body #modal-estimate-form-container .modal-background .modal > div > .require-estimate-success > .logo
{
	width: 100%;
	display: block;
    text-align: center;
    padding-bottom: 30px;
}

body #modal-estimate-form-container .modal-background .modal > div > .require-estimate-success > .logo > img
{
	display:inline-block;
	max-width: 200px;
}

body #modal-estimate-form-container .modal-background .modal > div > .require-estimate-success > .title
{
	font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 10px;

}


body #modal-estimate-form-container .modal-background .modal > div > .require-estimate-success > .description
{
	font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 30px;
}

body #modal-estimate-form-container .modal-background .modal > div > .require-estimate-success > .button
{
	text-align:center;
	padding-bottom:10px;
	background: transparent!important;
	border:0px;
	
}

body #modal-estimate-form-container .modal-background .modal > div > .require-estimate-success > .button > button
{
	display: inline-block;
    min-width: 190px;
    font-size: 22px;
    line-height: 22px;
    color: #ffffff;
    background: #008bee;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 1;
    height: 40px;
    padding: 0px 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
	border:0px;
	cursor: pointer;
}

body #modal-estimate-form-container .modal-background .modal > div > .require-estimate-success > .button > button:before
{
	display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    border-radius: 4px;
    content: '';
    background: rgba(0,0,0,0.05);
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    background: #006dbb;
    z-index: -1;
}

body #modal-estimate-form-container .modal-background .modal > div > .require-estimate-success > .button > button:hover:before
{
	left: 0%;
    right: auto;
    width: 100%;
}

body .require-estimate-button
{
	display: inline-block;
    min-width: 190px;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
    background: #008bee;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    /* text-transform: uppercase; */
    opacity: 1;
    height: 40px;
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
	border:0px;
	cursor: pointer;
}

body .require-estimate-button.small
{
	line-height: 16px;
	min-width: 100px;
    font-size: 14px;
    color: #008bee;
    background: transparent;
    height: 20px;
    padding: 0px 15px;
	bottom: 3px;
    text-decoration: underline;
}

body .require-estimate-button.small:hover
{
    color: #fff;
}

body .require-estimate-button:before
{
	display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    border-radius: 4px;
    content: '';
    background: rgba(0,0,0,0.05);
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    background: #006dbb;
    z-index: -1;
}

body .require-estimate-button.small:before
{
    background: transparent;
}

body .require-estimate-button:hover:before
{
	left: 0%;
    right: auto;
    width: 100%;
}




/* body.sow-require-estimate #modal-estimate-form-container .modal-background .modal > div >   */

body.hide-require-estimate #modal-estimate-form-container {
	transform: scale(1);
	animation: unfoldOutEstimate 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
body.hide-require-estimate #modal-estimate-form-container .modal-background .modal {
	animation: zoomOutEstimate 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

body #modal-estimate-form-container
{
	z-index: 99999999;
}

body #modal-estimate-form-container .modal-background {
	display: table-cell;
	background: rgba(0, 0, 0, 0.8);
	text-align: center;
	vertical-align: middle;
}
body #modal-estimate-form-container .modal-background .modal 
{
	background: white;
	display: inline-block;

	font-weight: 300;
	position: relative;
	
	width: 750px;
    max-width: 100%;
	position:relative;
	margin:0px;
	padding:20px 10px;
	background-color:#fff;
	border-radius:12px;
}

body #modal-estimate-form-container .modal-background .modal > div
{
	max-height: 90vh;
	overflow: auto;
	padding:0px 20px;
}

body #modal-estimate-form-container .modal-background .modal > div >  button.close-modal-estimate
{
	position: absolute;
    right: 10px;
    top: 10px;
    background-color: transparent;
    color: rgba(0,0,0,.8);
    font-size: 20px;
    line-height: 20px;
    padding: 5px;
    border: 0px;
    z-index: 1;
	cursor: pointer;
}

body #modal-estimate-form-container .modal-background .modal > div >  button.close-modal-estimate:hover
{
	color:rgba(0,0,0,1);

}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content
{
	padding:0px;
	margin:0px;
	border:0px;
	text-align:left;

}

body #modal-estimate-form-container .modal-background .modal > div > .error
{
	position:relative;
	color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
	font-size: 16px;
	line-height: 18px;
	padding: 10px 20px;
	position:relative;
	border-radius:4px;
	display:none;
}

body.require-estimate-error #modal-estimate-form-container .modal-background .modal > div > .error
{
	display:block
}

body #modal-estimate-form-container .modal-background .modal > div > .error > button.close-error
{
	position:absolute;
	right:5px;
	top:8px;
	font-size:12px;
	line-height: 12px;
	background-color: transparent;
	color: #721c24;
	opacity: .9;
	padding:5px;
	cursor: pointer;
}

body #modal-estimate-form-container .modal-background .modal > div > .error > button.close-error:hover
{
	opacity: 1;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form
{
	display:none;
	padding:0px;
	margin:0px;
	border:0px;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form.show
{
	display:block;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .modal-title
{
	color: #000;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    padding-top: 16px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .modal-description
{
	padding-bottom:0px;
	color: #8c8c8c;
    font-weight: 400;
	font-size:16px;
	line-height: 18px;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content
{
	
	display:block;
	margin: 0px;
	padding:0px;
	border:0px;
	padding-top: 12px;
	overflow: hidden;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form
{
	display:block;
	margin: 0px;
	margin-left:-15px;
	margin-right:-15px;
	padding:0px;
	border:0px;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form:after 
{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input
{
	display:block;
	margin:0px;
	padding:0px 15px;
	float:left;
	width: 100%;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.check-richiesta-leasing > .form-group > input[type="checkbox"],
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.check-acconsento > .form-group > input[type="checkbox"]
{
	margin:0px;
	display:block;
	width: 16px;
	height: 16px;
	position:absolute;
	top:0px;
	left:0px;
	border-width: 1px;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.check-richiesta-leasing > .form-group > label,
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.check-acconsento > .form-group > label
{
	font-size:14px;
	line-height: 16px;
	font-weight: 400;
	padding-left:25px;

}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.check-richiesta-leasing > .form-group > input[type="checkbox"]:checked + label,
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.check-acconsento > .form-group> input[type="checkbox"]:checked + label
{
	color:#000;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.check-acconsento > .form-group > label
{
	line-height: 18px;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.check-richiesta-leasing > .form-group > .input-description,
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.check-acconsento > .form-group > .input-description
{
	font-size:14px;
	line-height: 16px;
	padding-left:25px;
	padding-top:5px;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.nome,
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.cognome,
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.email,
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.cellulare
{
	width: 50%;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group
{
	display:block;
	min-height: inherit;
	height: auto;
	margin:0px;
	padding:0px;
	padding-bottom:15px;
	position:relative;
	line-height: 18px;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group > input[type="text"]
{
	width: 100%;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    color: #000;
    padding-left: 15px;
    height: 36px;
	font-size:18px;
	line-height: 36px;
	border-radius:0px;
	padding: 0px 15px;
	margin:0px;
	font-weight: 300;
	border-radius: 4px;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.prodotto .form-group > label
{
	position: relative;
}

body #modal-estimate-form-container .modal-background .modal > div > .modal-content > .modal-form > .form-content > form > .col-input.prodotto .form-group > label:after
{
	position: absolute;
    top: 34px;
    right: 15px;
    content: "";
    justify-self: end;
    width: 0.8em;
    height: 0.5em;
    background-color: #8f8f8f;
    -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}


body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group > select
{
	-webkit-appearance:none;
	appearance: none;
	width: 100%;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    color: #000;
    padding-left: 15px;

    height: 36px;
	font-size:18px;
	line-height: 18px;
	border-radius:0px;
	margin:0px;
	padding: 0px 15px;
	font-weight: 300;
	
	background-color: transparent;
	z-index: 1;
	outline: none;
}


body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group > select::-ms-expand {
	display: none;
  }

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group > textarea
{
	max-width: 100%;
	min-height: 50px;
	height: 78px;
	border: 1px solid #e1e1e1!important;
	border-radius:4px!important;
	margin:0px;
	padding:10px 15px;
	color:#000;

}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group > label
{
	margin:0px;
	padding: 0px;
	color: #666;
    margin-bottom: 0px;
    font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	padding-bottom:px;

}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group > .errors
{
	position: absolute;
    right: 0px;
    bottom: 0px;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group > .errors > div
{
	display: none;
    color: #ea5858;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group.required > label,
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group.format-not-valid > label
{
	color: #ea5858;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group.required > .errors > div.required
{
	display: block;
}
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group.format-not-valid > .errors > div.format-not-valid
{
	display: block;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group.required > input,
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group.required > textarea,
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group.format-not-valid > input
{
	border-color:#ea5858;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content  > .modal-form > .form-content > form  > .modal-button 
{
	text-align:center;
	padding-bottom:16px;
	float:left;
	width: 100%;
}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content  > .modal-form > .form-content > form > .modal-button  > button
{
	display: inline-block;
    min-width: 190px;
    font-size: 22px;
    line-height: 22px;
    color: #ffffff;
    background: #008bee;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    /* text-transform: uppercase; */
    opacity: 1;
    height: 40px;
    padding: 0px 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
	border:0px;
	cursor: pointer;

}

body #modal-estimate-form-container .modal-background .modal > div >  .modal-content  > .modal-form > .form-content > form > .modal-button  > button:before
{
	display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    border-radius: 4px;
    content: '';
    background: rgba(0,0,0,0.05);
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	background: #006dbb;
	z-index: -1;
}


body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .modal-button  > button:hover:before
{
    left: 0%;
    right: auto;
    width: 100%;
}


@keyframes unfoldInEstimate {
	0% {
	transform: scaleY(0.005) scaleX(0);
	}
	50% {
	transform: scaleY(0.005) scaleX(1);
	}
	100% {
	transform: scaleY(1) scaleX(1);
	}
}
@keyframes unfoldOutEstimate {
	0% {
	transform: scaleY(1) scaleX(1);
	}
	50% {
	transform: scaleY(0.005) scaleX(1);
	}
	100% {
	transform: scaleY(0.005) scaleX(0);
	}
}
@keyframes zoomInEstimate {
	0% {
	transform: scale(0);
	}
	100% {
	transform: scale(1);
	}
}
@keyframes zoomOutEstimate {
	0% {
	transform: scale(1);
	}
	100% {
	transform: scale(0);
	}
}


body #estimate-form-container > .estimate-form-title
{
	color: #000;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    padding-top: 16px;
    padding-bottom: 5px;
    text-transform: uppercase;
	text-align: center;
}

body #estimate-form-container > .estimate-form-description 
{
    padding-bottom: 0px;
    color: #8c8c8c;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
	text-align: center;
}

body #estimate-form-container > .form-content
{
	display: block;
    margin: 0px;
    padding: 0px;
	padding-top:20px;
    border: 0px;
    overflow: hidden;
}

body #estimate-form-container > .form-content > .estimate-form-form
{
	display: block;
    margin: 0px;
    margin-left: -15px;
    margin-right: -15px;
    padding: 0px;
    border: 0px;
}

body #estimate-form-container > .form-content > .estimate-form-form:after
{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input
{
	display: block;
    margin: 0px;
    padding: 0px 15px;
    float: left;
    width: 100%;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input.check-richiesta-leasing > .form-group > input[type="checkbox"],
body #estimate-form-container > .form-content > .estimate-form-form > .col-input.check-acconsento > .form-group > input[type="checkbox"]
{
	margin:0px;
	display:block;
	width: 16px;
	height: 16px;
	position:absolute;
	top:0px;
	left:0px;
	border-width: 1px;
	cursor: pointer;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input.check-richiesta-leasing > .form-group > label,
body #estimate-form-container > .form-content > .estimate-form-form > .col-input.check-acconsento > .form-group > label
{
	font-size:14px;
	line-height: 16px;
	font-weight: 400;
	padding-left:25px;
	cursor: pointer;

}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input.check-richiesta-leasing > .form-group > input[type="checkbox"]:checked + label,
body #estimate-form-container > .form-content > .estimate-form-form > .col-input.check-acconsento > .form-group> input[type="checkbox"]:checked + label
{
	color:#000;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input.check-acconsento > .form-group > label
{
	line-height: 18px;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input.check-richiesta-leasing > .form-group > .input-description,
body #estimate-form-container > .form-content > .estimate-form-form > .col-input.check-acconsento > .form-group > .input-description
{
	font-size:14px;
	line-height: 16px;
	padding-left:25px;
	padding-top:5px;
}






body #estimate-form-container > .form-content > .estimate-form-form > .col-input > .form-group
{
	display: block;
    min-height: inherit;
    height: auto;
    margin: 0px;
    padding: 0px;
    padding-bottom: 20px;
    position: relative;
    line-height: 18px;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input > .form-group > label
{
	margin: 0px;
    padding: 0px;
    color: #666;
    margin-bottom: 0px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input.prodotto > .form-group > label
{
	position:relative;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input.prodotto > .form-group > label:after
{
	position: absolute;
    top: 34px;
    right: 15px;
    content: "";
    justify-self: end;
    width: 0.8em;
    height: 0.5em;
    background-color: #8f8f8f;
    -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
} 

body #estimate-form-container > .form-content > .estimate-form-form > .col-input > .form-group >  input[type="text"]
{
	width: 100%;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    color: #000;
    padding-left: 15px;
    height: 36px;
	font-size:18px;
	line-height: 36px;
	border-radius:0px;
	padding: 0px 15px;
	margin:0px;
	font-weight: 300;
	border-radius: 4px;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input > .form-group  > select
{
	-webkit-appearance:none;
	appearance: none;
	width: 100%;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    color: #000;
    padding-left: 15px;

    height: 36px;
	font-size:18px;
	line-height: 18px;
	border-radius:0px;
	margin:0px;
	padding: 0px 15px;
	font-weight: 300;
	
	background-color: transparent;
	z-index: 1;
	outline: none;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input > .form-group  > select::-ms-expand 
{
	display: none;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input > .form-group  > textarea
{
	max-width: 100%;
	min-height: 50px;
	height: 78px;
	border: 1px solid #e1e1e1!important;
	border-radius:4px!important;
	margin:0px;
	padding:10px 15px;
	color:#000;

}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input > .form-group  > .errors 
{
	position: absolute;
    right: 0px;
    bottom: 0px;
}


body #estimate-form-container > .form-content > .estimate-form-form > .col-input > .form-group  > .errors > div
{
	display: none;
    color: #ea5858;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input  .form-group.required > label,
body #estimate-form-container > .form-content > .estimate-form-form > .col-input .form-group.format-not-valid > label
{
	color: #ea5858;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input .form-group.required > .errors > div.required
{
	display: block;
}

body #estimate-form-container > .form-content > .estimate-form-form > .col-input .form-group.format-not-valid > .errors > div.format-not-valid
{
	display: block;
}


/* body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group.required > .errors > div.required
{
	display: block;
}
body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input .form-group.format-not-valid > .errors > div.format-not-valid
{
	display: block;
} */


body #estimate-form-container > .form-content > .estimate-form-form > .col-input .form-group.required > input,
body #estimate-form-container > .form-content > .estimate-form-form > .col-input .form-group.required > textarea,
body #estimate-form-container > .form-content > .estimate-form-form > .col-input .form-group.format-not-valid > input
{
	border-color:#ea5858!important;
}


body #estimate-form-container > .form-content > .estimate-form-form > .form-button 
{
	text-align:center;
	padding-bottom:16px;
	float:left;
	width: 100%;
}

body #estimate-form-container > .form-content > .estimate-form-form  > .form-button  > button
{
	display: inline-block;
    min-width: 190px;
    font-size: 22px;
    line-height: 22px;
    color: #ffffff;
    background: #008bee;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    /* text-transform: uppercase; */
    opacity: 1;
    height: 40px;
    padding: 0px 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
	border:0px;
	cursor: pointer;

}

body #estimate-form-container > .form-content > .estimate-form-form > .form-button  > button:before
{
	display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    border-radius: 4px;
    content: '';
    background: rgba(0,0,0,0.05);
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	background: #006dbb;
	z-index: -1;
}


body #estimate-form-container > .form-content > .estimate-form-form  > .form-button  > button:hover:before
{
    left: 0%;
    right: auto;
    width: 100%;
}

body #estimate-form-container .form-content > .error
{
	color: #721c24;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	font-size: 16px;
	line-height: 18px;
	padding: 10px 20px;
	position:relative;
	border-radius:4px;
	display: none;
}

body.require-estimate-error #estimate-form-container .form-content > .error
{
	display:block
}

body #estimate-form-container .form-content > .error > button.close-error
{
	position:absolute;
	right:5px;
	top:8px;
	font-size:12px;
	line-height: 12px;
	background-color: transparent;
	color: #721c24;
	opacity: .9;
	padding:5px;
	cursor: pointer;
}

body #estimate-form-container .form-content > .error > button.close-error:hover
{
	opacity: 1;
}


body #estimate-form-container .form-content > .require-estimate-loader
{
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background-color: rgba(0, 0, 0, 0.8);

	visibility: hidden;
	opacity: 0;
	transition: visibility .1s linear, opacity .1s linear;
	max-height: inherit;
	z-index: 9999999;
}

body #estimate-form-container .form-content > .require-estimate-loader > img
{
	display: block;
	width: 150px;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-75px;
	margin-top: -75px;
}

body.show-require-estimate-loader #estimate-form-container .form-content > .require-estimate-loader
{
	opacity: 1;
	visibility: visible;
}

body.show-require-estimate-loader
{
	overflow: hidden;
	padding-right:15px;
}

body #estimate-form-container .form-content > .require-estimate-success
{
    z-index: 99999999;
	position: fixed;
    display: block;
    height: 100%;
    width: 100%;
    max-width: 100%;
    top: 0;
    right: 0px;
    bottom: 0px;
    left: 0;
	background: rgba(0, 0, 0, 0.8);
	visibility: hidden;
	opacity: 0;
	transition: visibility .1s linear, opacity .1s linear;
	
}

body.require-estimate-success #estimate-form-container .form-content > .require-estimate-success
{
	visibility: visible;
	opacity: 1;
}

body #estimate-form-container .form-content > .require-estimate-success > div
{
	display: block;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	background: white;

    font-weight: 300;
    width: 550px;
    max-width: 100%;
    margin: 0px;
    padding: 20px 10px;
    background-color: #fff;
    border-radius: 12px;
}




body #estimate-form-container .form-content > .require-estimate-success > div > .logo
{
	width: 100%;
	display: block;
    text-align: center;
    padding-bottom: 30px;
}

body #estimate-form-container .form-content > .require-estimate-success > div > .logo > img
{
	display:inline-block;
	max-width: 200px;
}

body #estimate-form-container .form-content > .require-estimate-success > div > .title
{
	font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 10px;

}

body #estimate-form-container .form-content > .require-estimate-success > div > .description
{
	font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 30px;
}

body #estimate-form-container .form-content > .require-estimate-success > div > .button
{
	text-align:center;
	padding-bottom:10px;
	background: transparent!important;
	border:0px;
	
}

body #estimate-form-container .form-content > .require-estimate-success > div > .button > button
{
	display: inline-block;
    min-width: 190px;
    font-size: 22px;
    line-height: 22px;
    color: #ffffff;
    background: #008bee;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 1;
    height: 40px;
    padding: 0px 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
	border:0px;
	cursor: pointer;
}

body #estimate-form-container .form-content > .require-estimate-success > div > .button > button:before
{
	display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    border-radius: 4px;
    content: '';
    background: rgba(0,0,0,0.05);
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    background: #006dbb;
    z-index: -1;
}

body #estimate-form-container .form-content > .require-estimate-success > div > .button > button:hover:before
{
	left: 0%;
    right: auto;
    width: 100%;
}


@media (max-width: 800px){
	body #modal-estimate-form-container .modal-background .modal
	{
		width: calc(100% - 30px);
	}

	
}

@media (max-width: 450px)
{
	body #modal-estimate-form-container
	{
		display:block;
		overflow: auto;

	}

	body #modal-estimate-form-container .modal-background
	{
		padding-top: 10px;
		padding-bottom: 10px;
		min-height: 100vh;
		display: block;
	}
	body.require-estimate-success #modal-estimate-form-container .modal-background
	{
		padding-top:150px;
	}

	body #modal-estimate-form-container .modal-background .modal
	{
		max-height: inherit;
		height: auto;
	}

	body #modal-estimate-form-container .modal-background .modal > div
	{
		max-height: inherit;
	}

	body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.nome,
	body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.cognome,
	body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.email,
	body #modal-estimate-form-container .modal-background .modal > div >  .modal-content > .modal-form > .form-content > form > .col-input.cellulare
	{
		width: 100%;
	}
}