

/***** bs-switches.css ******/
/* ========================================================================
 * bootstrap-switch - v3.3.2
 * ====================================================================== */

.bootstrap-switch {
	display: inline-block;
	direction: ltr;
	cursor: pointer;
	border-radius: 2px;
	border: 1px solid;
	border-color: #CCC;
	position: relative;
	text-align: left;
	overflow: hidden;
	line-height: 8px;
	z-index: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	vertical-align: middle;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bootstrap-switch .bootstrap-switch-container {
	display: inline-block;
	top: 0;
	border-radius: 2px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block !important;
	height: 100%;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
	text-align: center;
	z-index: 1;
}

.bootstrap-switch .bootstrap-switch-handle-on i,
.bootstrap-switch .bootstrap-switch-handle-off i {
	position: relative;
	font-size: 16px;
	left: -1px;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
	color: #fff;
	background: #337ab7;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
	color: #fff;
	background: #5bc0de;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
	color: #fff;
	background: #5cb85c;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
	background: #f0ad4e;
	color: #fff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
	color: #fff;
	background: #d9534f;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
	color: #000;
	background: #eeeeee;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-themecolor,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-themecolor {
	color: #FFF;
	background: #1ABC9C;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-black,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-black {
	color: #FFF;
	background: #000;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-white,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-white {
	color: #000;
	background: #F5F5F5;
}

.bootstrap-switch .bootstrap-switch-label {
	text-align: center;
	margin-top: -1px;
	margin-bottom: -1px;
	z-index: 100;
	color: #333333;
	background: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on {
	border-bottom-left-radius: 1px;
	border-top-left-radius: 1px;
}
.bootstrap-switch .bootstrap-switch-handle-off {
	border-bottom-right-radius: 1px;
	border-top-right-radius: 1px;
}
.bootstrap-switch input[type='radio'],
.bootstrap-switch input[type='checkbox'] {
	position: absolute !important;
	top: 0;
	left: 0;
	margin: 0;
	z-index: -1;
	opacity: 0;
	filter: alpha(opacity=0);
}
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
	padding: 6px 16px;
	font-size: 18px;
	line-height: 1.3333333;
}
.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-readonly,
.bootstrap-switch.bootstrap-switch-indeterminate { cursor: default !important; }
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
	opacity: 0.5;
	filter: alpha(opacity=50);
	cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
	-webkit-transition: margin-left 0.2s ease;
	-o-transition: margin-left 0.2s ease;
	transition: margin-left 0.2s ease;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-bottom-right-radius: 1px;
	border-top-right-radius: 1px;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
	border-bottom-left-radius: 1px;
	border-top-left-radius: 1px;
}
.bootstrap-switch.bootstrap-switch-focused {
	outline: 0;
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
	border-bottom-right-radius: 1px;
	border-top-right-radius: 1px;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
	border-bottom-left-radius: 1px;
	border-top-left-radius: 1px;
}

.bootstrap-switch-label:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 3px;
    margin-top: -2px;
    margin-left: -5px;
    display: inline-block;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
}






/* --------------------------------------------------------------
	SWITCH
--------------------------------------------------------------  */
.switch-toggle {
	position: absolute;
	margin-left: -9999px;
	visibility: hidden;
}

.switch-toggle + label {
	display: block;
	position: relative;
	cursor: pointer;
	outline: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* --------------------------------------------------------------
	SWITCH 1 - ROUND
----------------------------------------------------------------- */
input.switch-toggle-round + label {
	padding: 2px;
	width: 60px;
	height: 30px;
	background-color: #DDD;
	-webkit-border-radius: 15px;
	-o-border-radius: 15px;
	border-radius: 15px;
}

input.switch-toggle-round + label:before,
input.switch-toggle-round + label:after {
	display: block;
	position: absolute;
	top: 1px;
	left: 1px;
	bottom: 1px;
	content: "";
}

input.switch-toggle-round + label:before {
	right: 1px;
	background-color: #F1F1F1;
	-webkit-border-radius: 15px;
	-o-border-radius: 15px;
	border-radius: 15px;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;
}

input.switch-toggle-round + label:after {
	width: 28px;
	background-color: #FFF;
	-webkit-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-webkit-transition: margin 0.4s;
	-moz-transition: margin 0.4s;
	-o-transition: margin 0.4s;
	transition: margin 0.4s;
}

input.switch-toggle-round:checked + label:before { background-color: #1ABC9C; }
input.switch-toggle-round:checked + label:after { margin-left: 30px; }

/* --------------------------------------------------------------
	SWITCH 1 - ROUND- MINI
----------------------------------------------------------------- */
input.switch-rounded-mini.switch-toggle-round + label {
	padding: 1px;
	width: 32px;
	height: 16px;
	-webkit-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
}

input.switch-rounded-mini.switch-toggle-round + label:before {
	-webkit-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
}

input.switch-rounded-mini.switch-toggle-round + label:after { width: 15px; }
input.switch-rounded-mini.switch-toggle-round:checked + label:after { margin-left: 15px; }

/* --------------------------------------------------------------
	SWITCH 1 - ROUND- LARGE
----------------------------------------------------------------- */
input.switch-rounded-large.switch-toggle-round + label {
	width: 90px;
	height: 45px;
	-webkit-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
}

input.switch-rounded-large.switch-toggle-round + label:before {
	-webkit-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
}

input.switch-rounded-large.switch-toggle-round + label:after { width: 43px; }
input.switch-rounded-large.switch-toggle-round:checked + label:after { margin-left: 45px; }


/* --------------------------------------------------------------
	SWITCH 1 - ROUND- XLARGE
----------------------------------------------------------------- */
input.switch-rounded-xlarge.switch-toggle-round + label {
	width: 120px;
	height: 60px;
	-webkit-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}

input.switch-rounded-xlarge.switch-toggle-round + label:before {
	-webkit-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}

input.switch-rounded-xlarge.switch-toggle-round + label:after { width: 58px; }
input.switch-rounded-xlarge.switch-toggle-round:checked + label:after { margin-left: 60px; }


/* -----------------------------------------------------------
	SWITCH 2 - ROUND FLAT
-------------------------------------------------------------- */
input.switch-toggle-flat + label {
	padding: 2px;
	width: 60px;
	height: 30px;
	background-color: #DDD;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;
}

input.switch-toggle-flat + label:before,
input.switch-toggle-flat + label:after {
	display: block;
	position: absolute;
	content: "";
}

input.switch-toggle-flat + label:before {
	top: 2px;
	left: 2px;
	bottom: 2px;
	right: 2px;
	background-color: #FFF;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;
}

input.switch-toggle-flat + label:after {
	top: 4px;
	left: 4px;
	bottom: 4px;
	width: 22px;
	background-color: #DDD;
	-webkit-border-radius: 22px;
	-moz-border-radius: 22px;
	-ms-border-radius: 22px;
	-o-border-radius: 22px;
	border-radius: 22px;
	-webkit-transition: margin 0.4s, background 0.4s;
	-moz-transition: margin 0.4s, background 0.4s;
	-o-transition: margin 0.4s, background 0.4s;
	transition: margin 0.4s, background 0.4s;
}

input.switch-toggle-flat:checked + label { background-color: #1ABC9C; }

input.switch-toggle-flat:checked + label:after {
	margin-left: 30px;
	background-color: #1ABC9C;
}


/* -----------------------------------------------------------
	SWITCH 2 - FLAT - MINI
-------------------------------------------------------------- */
input.switch-flat-mini.switch-toggle-flat + label {
	padding: 1px;
	width: 32px;
	height: 16px;
	-webkit-border-radius: 16px;
	-o-border-radius: 16px;
	border-radius: 16px;
}

input.switch-flat-mini.switch-toggle-flat + label:before {
	top: 1px;
	left: 1px;
	bottom: 1px;
	right: 1px;
	-webkit-border-radius: 16px;
	-o-border-radius: 16px;
	border-radius: 16px;
}

input.switch-flat-mini.switch-toggle-flat + label:after {
	top: 2px;
	left: 2px;
	bottom: 2px;
	width: 12px;
	-webkit-border-radius: 12px;
	-o-border-radius: 12px;
	border-radius: 12px;
}

input.switch-flat-mini.switch-toggle-flat:checked + label:after { margin-left: 16px; }


/* -----------------------------------------------------------
	SWITCH 2 - FLAT - LARGE
-------------------------------------------------------------- */
input.switch-flat-large.switch-toggle-flat + label {
	width: 90px;
	height: 45px;
	-webkit-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
}

input.switch-flat-large.switch-toggle-flat + label:before {
	-webkit-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
}

input.switch-flat-large.switch-toggle-flat + label:after {
	width: 37px;
	-webkit-border-radius: 37px;
	-o-border-radius: 37px;
	border-radius: 37px;
}

input.switch-flat-large.switch-toggle-flat:checked + label:after { margin-left: 45px; }



/* -----------------------------------------------------------
	SWITCH 2 - FLAT - XLARGE
-------------------------------------------------------------- */
input.switch-flat-xlarge.switch-toggle-flat + label {
	padding: 2px;
	width: 120px;
	height: 60px;
	-webkit-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}

input.switch-flat-xlarge.switch-toggle-flat + label:before {
	-webkit-border-radius: 60px;
	-o-border-radius: 60px;
	border-radius: 60px;
}
input.switch-flat-xlarge.switch-toggle-flat + label:after {
	width: 52px;
	-webkit-border-radius: 52px;
	-o-border-radius: 52px;
	border-radius: 52px;
}

input.switch-flat-xlarge.switch-toggle-flat:checked + label:after { margin-left: 60px; }



/******fine bs-switches ******/



/* ----------------------------------------------------------------
	Custom CSS

	Foglio di stile personalizzato da Impresa Solutions s.a.s.
-----------------------------------------------------------------*/
/*.form-control{
	height: calc(2.25rem + 3px) !important;
}*/


/**********  CSS NEWS FINE     ************************/


.nopaddingtabella {
	padding-left: 0px!important;
	padding-right: 0px!important;
}

.padding10{
	
	padding:10px !important;
}

#oc-features .owl-item:not(.active) { opacity: .4; }

#oc-features .owl-item p {
	font-size: 16px;
	font-weight: 300;
	color: #666;
}

#slider-arrow-left,
#slider-arrow-right,
.owl-carousel-full .owl-nav [class*=owl-] {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-transform: scale(1);
	transform: scale(1);
}

#slider-arrow-left:hover,
#slider-arrow-right:hover,
.owl-carousel-full .owl-nav [class*=owl-]:hover {
	background-color: transparent !important;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.owl-carousel-full .owl-nav [class*=owl-] {
	left: 150px !important;
	height: 60px;
	line-height: 60px;
	border: none;
	color: #333;
	background-color: transparent;
	font-size: 28px;
	border-radius: 0;
}

.owl-carousel .owl-nav .owl-next {
	left: auto;
}

.owl-carousel-full  .owl-nav .owl-next {
	left: auto !important;
	right: 155px !important;
	border-radius: 0;
}

.owl-carousel-full .owl-nav [class*=owl-]:hover { color: #333 !important; }

/* Owl Carousel - Responsive
-----------------------------------------------------------------*/
.device-md .owl-carousel .owl-nav .owl-prev,
.device-sm .owl-carousel .owl-nav .owl-prev,
.device-xs .owl-carousel .owl-nav .owl-prev,
.device-xxs .owl-carousel .owl-nav .owl-prev { left: 2px !important; }

.device-md .owl-carousel-full  .owl-nav .owl-next,
.device-sm .owl-carousel-full  .owl-nav .owl-next,
.device-xs .owl-carousel-full  .owl-nav .owl-next,
.device-xxs .owl-carousel .owl-nav .owl-next { right: 2px !important; }


/********** CSS NEWS FINE     ************************/



.prodottiperson {
    background-color: #FFF;
    padding: 10px;
    border-radius: 7px;
}

.prodottiperson-ombra {
    background-color: #FFF;
    padding: 10px;
    border-radius: 7px;
	box-shadow: 1px 3px 10px rgba(28,66,121,0.5)!important;
}

	

.colorescuro {
	color: #333!important;
}

.bianco {
	color: #FFF!important;
}

.sfondoGiallo {
	background-color:#f6ff00!important;
}


.rosso {
	color: #ff000b!important;
}


.ombra {
	text-shadow: 2px 2px 2px rgba(0,0,0,0.8)!important;
}



.fontslider {
	font-size: 40px!important;
	text-transform: none!important;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.9)!important;
	/*text-shadow: 3px 3px 3px rgba(27,66,131,0.9)!important;*/
	letter-spacing: 1px!important;
	line-height: 1.3!important;
}

@media (max-width: 575.98px) {
.fontslider {
    font-size: 20px!important;
	}
	
	.displaymd{
		display: none!important;
	}
}

.ombrabianca{
	text-shadow: 1px 1px 1px rgba(255,255,255,0.7)!important;
}

.h1home {
	font-size: 30px!important;	
}

.border-form-control {
    height: 42px;
    padding: 7px 4px;
    font-size: 17px;
    letter-spacing: 1px;
    background-color: transparent!important;
    border-top: transparent;
    border-right: transparent;
    border-left: transparent;
    border-bottom-width: 1px;
    border-color: #006489;
}

/********EFFETTO CORSI***********/

.hover-effect {
    -webkit-transition: transform .25s ease, box-shadow .3s ease;
    -o-transition: transform .25s ease, box-shadow .3s ease;
    transition: transform .25s ease, box-shadow .3s ease;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    box-shadow: none;
    border: 0;
}

.course-categories .card a span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    color: #FFF;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.course-categories .card a span i {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
}

.course-categories .card a span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    color: #FFF;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

[class^=icon-], [class*=" icon-"], [class^=icon-line-], [class*=" icon-line-"], [class^=icon-line2-], [class*=" icon-line2-"], .side-header #primary-menu ul>li.sub-menu>a:after, .docs-navigation ul ul li.current a:after {
    display: inline-block;
    /*font-family: font-icons;*/
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nobordo{
	margin-left: -1px!important;
    
}


.bordoBlu{
	border-left: 4px solid rgba(5,58,101,0.8);
}

.bordoRosso{
	border-left: 4px solid rgba(255,0,0,0.8);
}


.pagination.pagination-circle.pagination-lg .page-item:not(:first-child) .page-link, .pagination.pagination-rounded.pagination-lg .page-item:not(:first-child) .page-link {
    margin-left: 8px;
}
.pagination.pagination-circle .page-item:not(:first-child) .page-link, .pagination.pagination-rounded .page-item:not(:first-child) .page-link {
    margin-left: 5px;
}
.pagination.pagination-circle.pagination-lg .page-item .page-link {
    width: 56px;
    height: 56px;
    line-height: 54px;
}
.pagination.pagination-circle .page-item .page-link {
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    padding: 0;
    border-radius: 50%;
}

.height45{

	height: 45px!important;
}

.height70{

    height: 70px!important;
}

.height220{

    height: 220px!important;
}

.ombraboxprodotti {
	/*box-shadow: 1px 3px 17px rgba(28,66,121,0.5)!important;*/
    border-radius: 5px 5px 5px 5px!important;
}


.boximmagineprodotti{
	/*border: 1px solid #E5E5E5;*/
	/*border-top: 1px solid #E5E5E5!important;
	border-left: 1px solid #E5E5E5!important;
	border-right: 1px solid #E5E5E5!important;*/
	border: none!important;
    height: 240px!important;
    padding-top: 8px!important;

}

.boximmaginemarchi{
	/*border: 1px solid #E5E5E5;
	border-top: 1px solid #E5E5E5!important;
	border-left: 1px solid #E5E5E5!important;
	border-right: 1px solid #E5E5E5!important;*/
    height: 130px!important;
    padding-top: 8px!important;
    border-radius: 5px 5px 0 0!important;
}

.boxtitoloprodotti{
	/*border-left: 1px solid #E5E5E5!important;
	border-right: 1px solid #E5E5E5!important;
	border-bottom: 1px solid #E5E5E5!important;*/
	height: 90px!important;
	border: none!important;
	/*background-color: #f2f2f2!important;*/
   /* background-color: rgba(28,66,121,0.20)!important;*/
	background-color:#00adffa1 !important;
    padding: 10px!important;
	border-radius: 15px 15px 15px 15px!important;
}

.pagination.pagination-primary .page-item .page-link {
    background-color: #1c4383!important;
    background-color: var(--primary);
    border-color: #1c4383!important;
    border-color: var(--primary);
    color: #fff;
}

.pagination.pagination-danger .page-item.active .page-link, .pagination.pagination-danger .page-link:focus, .pagination.pagination-danger .page-link:hover, .pagination.pagination-info .page-item.active .page-link, .pagination.pagination-info .page-link:focus, .pagination.pagination-info .page-link:hover, .pagination.pagination-light .page-item.active .page-link, .pagination.pagination-light .page-link:focus, .pagination.pagination-light .page-link:hover, .pagination.pagination-primary .page-item.active .page-link, .pagination.pagination-primary .page-link:focus, .pagination.pagination-primary .page-link:hover, .pagination.pagination-secondary .page-item.active .page-link, .pagination.pagination-secondary .page-link:focus, .pagination.pagination-secondary .page-link:hover, .pagination.pagination-success .page-item.active .page-link, .pagination.pagination-success .page-link:focus, .pagination.pagination-success .page-link:hover {
    background-color: #ed1c25!important;
    border-color: #ed1c25!important;
    color: #fff;
}


.offerta
{
	background-color: #0042ff !important;
}

.promozione
{
	background-color: #f90000 !important;
}


.disponibilita-verde
{
	width:20px;
	height:20px;
	border-radius:20px;
	background-color:#59BA41;
	box-shadow: 0 8px 16px rgba(32,41,50,0.12);
}

.disponibilita-rosso
{
	width:20px;
	height:20px;
	border-radius:20px;
	background-color:#C02942;
	box-shadow: 0 8px 16px rgba(32,41,50,0.12);
}

.pallino-carrello
{
	width:25px !important;
	height:25px !important;
	line-height:25px !important;
	top:-12px !important;
	right:-25px !important;

}

.marchio
{
	background-color: transparent !important;
	right:6px !important;
}

.flash-marchio {
    position: absolute;
    top: 5px;
    right:0px !important;
    padding: 6px 10px;
    background-color: transparent !important;
    color: #FFF;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    border-radius: 2px;
    z-index: 5;
}

#primary-menu ul ul li > a {
    padding-top: 9px!important;
    padding-bottom: 9px!important;
}

.scritta-offerta{
	color:#0042ff !important;
}

.badge-offerta
{
	background-color: #0042ff !important;
	color:#FFF !important;
}

.badge-offerta-raggiunto
{
	background-color: #0042ff !important;
	color:#FFF !important;
	font-size:14px !important;
}

.badge-promozione
{
	background-color: #f90000 !important;
	color:#FFF !important;
}

.badge-promozione-raggiunto
{
	background-color: #f90000 !important;
	color:#FFF !important;
	font-size:14px !important;
}

.badge-prestagionale
{
	background-color: #f98d00 !important;
	color:#FFF !important;
}

.badge-prestagionale-raggiunto
{
	background-color: #f98d00 !important;
	color:#FFF !important;
	font-size:14px !important;
}

.badge-agevolato
{
	background-color: #e548f8 !important;
	color:#FFF !important;
}

.badge-agevolato-raggiunto
{
	background-color: #e548f8 !important;
	color:#FFF !important;
	font-size:14px !important;
}


.scritta-promozione{
	color:#f90000 !important;
}

.scritta-prestagionale{
	color:#f98d00 !important;
}



.manina{
	cursor:pointer !important;
	
}

.margin-bottom8{
	margin-bottom:8px !important;
}

.noborderimg{
	border:0px !important;
}



.box-ordine {
	padding: 14px;
    border: 1px solid #1c4382;
    border-radius: 20px;
    box-shadow: 3px 2px 11px rgba(0,0,0,0.7);
	margin: 5px;
}

.box-indice{
	
	font-size:20px;
	float:left;
	line-height:30px;
	width:30px;
	height:30px;
	border:1px solid #ced4da;
	border-radius: 20px;
	margin:2px;
	cursor:pointer;
}

.box-indice:hover{
	
	background-color:#e5e5e5!important;
	color:#FFF!important;
}

/* On screens that are 992px or less, set the background color to blue */
@media screen and (min-width: 992px) {
  .mostrasolomobile {
	display: none;
	}
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 991px) {
 .mostrasolomobile {
	display: block;
	}
}


/********************PAGINA CONTATTI **************/ 


#locations-carousel .owl-stage-outer { padding-bottom: 40px  }

#locations-carousel .owl-item.active .card {
	opacity: 1;
	transform: translateY(0px);
}

#locations-carousel.owl-carousel .owl-nav [class*=owl-] {
	opacity: 1;
	background-color: #FFF;
	color: #267DF4;
	color: var(--themecolor);
}

#locations-carousel.owl-carousel .owl-dots {
	position: relative;
    background: #FFF;
    width: 150px;
    padding: 10px;
	margin: 0 auto;
	bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#locations-carousel.owl-carousel .owl-dots .owl-dot { margin: 0 4px; }

#locations-carousel .card {
    position: relative;
    right: auto;
    margin: 0 auto;
    bottom: 0;
    margin-top: -30px;
    padding: 20px;
}

@media screen and (min-width: 992px){
	
#locations-carousel .card {
    opacity: 0;
    position: absolute;
    right: 40px;
    bottom: -30px;
    padding: 20px 30px;
    width: 100%;
    max-width: 320px;
    border: 0;
    border-radius: 4px;
    transform: translateY(20px);
    transition: all .4s .1s ease-out;
}
	
	#locations-carousel.owl-carousel .owl-dots {
		position: absolute;
		top: auto;
		left: 50%;
		bottom: 45px;
		margin-left: -75px;
	}
}

.scritta-facebook{
	color:#1b4383;
}


.scritta-youtube{
	color:#c4302b;
}

.font-18{
	font-size: 18px;
}

.font-14{
	font-size: 14px!important;
}

.colore-sfondo{
	background-color: #232879 !important;
}

.section-features {
    padding: 120px;
}

.font-weight-semibold{
	font-weight: 600!important;
}

.pt-15{
	padding-top: 15px;
}

.icone-home{
	background-color: #da251c!important;
	color: #232879 !important;
}

.heading-block:after {
	content: '';
	display: none!important;
	margin-top: 30px;
	width: 40px;
	border-top: 2px solid #444;
}

.mx-auto {
	float: none!important;
}

.bgsectionpers{
	background-color: #f53f3f!important;
}

.rossopers {
	color: #da251c !important;
}
/*
.dark .card {
	background-color: rgba(0,0,0,0.7)!important;
	background-color: rgba(255,255,255,0.8)!important;
}*/

.card {
	background-color: rgba(255,255,255,0.8) !important
}

.dark label {
	color: #FFF!important;
}

.dark ul.tab-nav.tab-nav2 li a {
	background-color: rgba(0,0,0,0.7);
}

.mb-10{
	margin-bottom: 10px!important;
}

#page-title span {
	display: inline;
	margin-top: 10px;
	font-weight: 300;
	color: #000;
}
#page-title.page-title-parallax span {
	font-size: 17px;
}

.btn-file input[type=file] {

	border: none!important;
}

.bordook {
	border: 1px solid!important;
	background-color: #FFF;
}

.marginpills{
	margin: 3px!important;
}

.noManina{
	cursor:default;
}
.sfondopattern{
	background-image: url(/img_cedi/pattern-cedi-sud3.jpg);
}

.page-link {
	color: #007bff;
}
/*@font-face {
    font-family: 'Varela Round';
	font-display: auto;
    src: url('font/VarelaRound-Regular.eot');
    src: url('font/VarelaRound-Regular.eot?#iefix') format('embedded-opentype'),
        url('font/VarelaRound-Regular.woff2') format('woff2'),
        url('font/VarelaRound-Regular.woff') format('woff'),
        url('font/VarelaRound-Regular.ttf') format('truetype'),
        url('font/VarelaRound-Regular.svg#VarelaRound-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}*/

@media screen and (min-width: 1200px) {
	.container {
		max-width: 1320px;
	}
}

