html {
  position: relative;
  min-height: 100%;
}

.speech-bubble {
	position: relative;
	background: #6c757d;
	border-radius: .2em;
    color: #ffff;
    text-decoration:none !important;
}

.speech-bubble:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 37px solid transparent;
	border-top-color: #6c757d;
	border-bottom: 0;
	margin-left: -37px;
	margin-bottom: -37px;
    text-decoration:none !important;
}

.chart-legend ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 300px;
}

.bg-secondary-light{
    background-color: #c6c6c6 !important;
    color: #3b3b3b !important;
}

.bg-info-light{
    background-color: #d2f4f9 !important;
    color: #303e40 !important;
}

.bg-primary-custom{
    background-color: #007bff !important;
    color: #FFFFFF !important;
}

.bg-info-custom{
    background-color: #17a2b8 !important;
    color: #FFFFFF !important;
}

.bg-success-custom{
    background-color: #28a745 !important;
    color: #FFFFFF !important;
}

.bg-warning-custom{
    background-color: #ffc107 !important;
    color: #FFFFFF !important;
}

.bg-danger-custom{
    background-color: #980000 !important;
    color: #FFFFFF !important;
}

.bg-secondary-custom{
    background-color: #6c757d !important;
    color: #FFFFFF !important;
}

.bg-dark-custom{
    background-color: #343a40 !important;
    color: #FFFFFF !important;
}

input[data-readonly] {
  pointer-events: none;
}



.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 20px; /* Vertically center the text there */
}


.card-header .avatar {
		position: absolute;
		margin: 0 auto;
		left: 0;
		right: 0;
		top: -50px;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		z-index: 9;
		background: #FFF;
		padding: 15px;
		box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.card-header .avatar img {
		width: 100%;
}

body.bg-public {
  background: #f6f9ff !important;
  margin-bottom: 60px;
}

.font-roboto {
    font-family: 'Roboto', sans-serif !important;
    /*font-weight: 900;*/
}

.text-card-home-ovale {
  text-align: justify !important;
  line-height:1.8rem !important;
}

.contatti { font-size: 1.4em; }
@media  only screen and (max-width:768px){
  /* For mobile phones: */
    .contatti { font-size: 1.06em !important; }
    h1 { font-size: 2em !important; }
    h2 { font-size: 1.5em !important; }
    h3 { font-size: 1.17em !important; }
    h4 { font-size: 1.12em !important; }
    h5 { font-size: .83em !important; }
    h6 { font-size: .75em !important; }

    .h1 { font-size: 2em !important; }
    .h2 { font-size: 1.5em !important; }
    .h3 { font-size: 1.17em !important; }
    .h4 { font-size: 1.12em !important; }
    .h5 { font-size: .83em !important; }
    .h6 { font-size: .75em !important; }

    .display-1 { font-size: 3em !important; }
    .display-2 { font-size: 2.5em !important; }
    .display-3 { font-size: 2.17em !important; }
    .display-4 { font-size: 2.12em !important; }
    .display-5 { font-size: 1.83em !important; }
    .display-6 { font-size: 1.75em !important; }

    .text-card-home-ovale {
        line-height:1.8rem !important;
        text-align: left !important;
    }
}

.fa-rotate-132 {
    -webkit-transform: rotate(132deg);
    -moz-transform: rotate(132deg);
    -ms-transform: rotate(132deg);
    -o-transform: rotate(132deg);
    transform: rotate(132deg);
}

.phone {
  animation: ring 4s .7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@keyframes ring {
  0% { transform: rotate(0); }
  5% { transform: rotate(30deg); }
  10% { transform: rotate(-28deg); }
  15% { transform: rotate(34deg); }
  20% { transform: rotate(-32deg); }
  25% { transform: rotate(30deg); }
  30% { transform: rotate(-28deg); }
  35% { transform: rotate(26deg); }
  40% { transform: rotate(-24deg); }
  45% { transform: rotate(22deg); }
  50% { transform: rotate(-20deg); }
  55% { transform: rotate(18deg); }
  60% { transform: rotate(-16deg); }
  65% { transform: rotate(14deg); }
  70% { transform: rotate(-12deg); }
  75% { transform: rotate(10deg); }
  80% { transform: rotate(-8deg); }
  85% { transform: rotate(6deg); }
  90% { transform: rotate(-4deg); }
  95% { transform: rotate(2deg); }
  100% { transform: rotate(-1deg); }
}


.cookie-bar{
  position: fixed;
  bottom:0px;
  padding:15px;
  width: 100%;
  display: none;
  z-index:5000000;
  background-color:#BFBFBF;
}

.border-bandiera {
    border: 0.08em solid #e8e9e9;
}

hr.dashed {
    border-top: 2px dashed #999;
}

hr.dotted {
    border-top: 2px dotted #999;
}

hr.solid {
    border-top: 2px solid #999;
}


hr.hr-text {
  position: relative;
    border: none;
    height: 1px;
    background: #999;
}

hr.hr-text::before {
    content: attr(data-content);
    display: inline-block;
    background: #fff;
    font-weight: bold;
    font-size: 0.85rem;
    color: #999;
    border-radius: 30rem;
    padding: 0.2rem 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

hr.hr-text-trasparent {
  position: relative;
    border: none;
    height: 1px;
    background: #999;
}

hr.hr-text-trasparent::before {
    content: attr(data-content);
    display: inline-block;
    background: #E5E5E5;
    font-weight: bold;
    font-size: 1rem;
    color: #999;
    border-radius: 30rem;
    padding: 0.1rem 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.card-horizontal {
  display: flex;
  flex: 1 1 auto;
}


.btn-link:hover::after{
  color: #0066CD;
}

.btn-link:hover::after{
    background: #0066CD;
    border-color: #F85666;
}

.site-banner .banner-text .category {
    margin-bottom: 15px;
}

.site-banner .banner-text .category a {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 700;
    background: rgba(92,136,197,0.85);
    border-radius: 5px;
    padding: 5px 15px;
    margin: 5px;
}


.text-12 {
  font-size: 1.2rem !important;
}

.text-14 {
  font-size: 1.4rem !important;
}

.text-16 {
  font-size: 1.6rem !important;
}

.text-stroke {

  -webkit-text-stroke-width: 1px !important;
  -webkit-text-stroke-color: #F16C20 !important;
   /*   filter: alpha(opacity=80); /* IE */
   /* -moz-opacity: 0.3; /* Mozilla */
   /* opacity: 0.3; /* CSS3 */
   letter-spacing: 1px !important;
}



.breadcrumb-wrapper{
    display:none;
}


.widget-title {
    display: none;
}


/*
 * se ti servono allora teniamo solo quelle necessarie
.btn-cta, span.item-count, section[class*="-section"] .widget .widget-title::after, section[class*="-section"] .widget_blossomtheme_featured_page_widget .section-subtitle::after, .section-title::after, .shop-section .item .onsale, .back-to-top:hover, .page-numbers.prev:hover::before, .page-numbers.next:hover::before, #secondary .widget-title::before, .site-footer .widget-title::before, .search-form > label[for="submit-field"], .author-content-wrap .author-name::before, .related-articles .related-title::before, .latest-articles .latest-title::before, .comments-area .comments-title::before, .comment-respond .comment-reply-title::before, .btn-cta + .btn-cta:hover, .related-portfolio-title::before, error-404 a.bttn, span.close:hover::before, span.close:hover::after {
    background: #0066CD !important;
}
*/

/*
 * se ti servono allora teniamo solo quelle necessarie
.main-navigation ul ul li:hover > a, .header-cart:hover, section[class*="-section"] .widget .widget-title span:before, section[class*="-section"] .widget_blossomtheme_featured_page_widget .section-subtitle span:before, .section-title span:before, section[class*="-section"] .widget .widget-title span:after, section[class*="-section"] .widget_blossomtheme_featured_page_widget .section-subtitle span:after, .section-title span:after, .btn-readmore:after, .btn-readmore:hover, #secondary .widget_bttk_image_text_widget a.btn-readmore:hover, section[class*="-section"] .widget_bttk_icon_text_widget:hover, section[class*="-section"] .widget_bttk_icon_text_widget a.btn-readmore:hover::after, button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .back-to-top, .sticky-t-bar span.close, a.page-numbers:hover, span.page-numbers.current, .page-numbers.prev::before, .page-numbers.next::before, #secondary .widget-title::after, .site-footer .widget-title::after, .widget_calendar caption, .widget_calendar table td#today, .author-content-wrap .author-name::after, .related-articles .related-title span::before, .related-articles .related-title span::after, .latest-articles .latest-title span::before, .latest-articles .latest-title span::after, .comments-area .comments-title::after, .comment-respond .comment-reply-title::after {
    background: #fff;
}
*/

#secondary .widget-title:before, .site-footer .widget-title:before {
     content: "";
    background: #fff;
    /* width: 8px; */
    /* height: 8px; */
    /* position: absolute; */
    /* bottom: 0; */
    /* left: 0; */
    /* border-radius: 100%; */
}


.nav-link.image:hover{
  opacity: 0.3;
}

.text-menu {
   letter-spacing: 0.04rem;
   font-size: 1.2rem !important;
   /*font-weight: 300;*/
}

.listgroup-left{
     font-size: 0.82rem !important;
}

.medium{
   font-size: 0.9rem !important;
}

.text-1-2 {
   font-size: 1.2rem !important;
}

.btn-sml { height: 4vh; } /* change the value according to your need. */



.caption-calendar {
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.caption-calendar img {
    float: left;
    margin: 0;
    padding: 0;
    background: #fff;
    border: none;
}
.caption-calendar span {
    float: left;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 80px;
    height: 90px;
    background: #1E90FF;
    filter: alpha(opacity=80); /* IE */
    -moz-opacity: 0.8; /* Mozilla */
    opacity: 0.8; /* CSS3 */
    position: absolute;
    left: 0;
    top:0;
}

.caption-calendar span h4,
.caption-calendar span h5,
.caption-calendar span h6 {
    line-height: 0.9 !important;
    color: #FFFFFF !important;
}

.caption-img-bottom {
    font-family: Verdana, sans-serif;
    font-size: 10px;
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.caption-img-bottom img {
    float: left;
    margin: 0;
    padding: 0;
    background: #fff;
    border: none;
}
.caption-img-bottom span {
    float: left;
    margin: 0;
    padding: 10px;
    width: 100%;
    color: #dedede;
    background: #222; /* browser che non supportano rgba */
    background: rgba(0,0,0,0.7);
    position: absolute;
    left: 0;
    bottom: 0;
}
.caption-img-bottom span strong {
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 5px;
}


.list-group-item-custom-footer {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

#contatti{
  background-color: #FFFFFF;
  letter-spacing: 2px;
  }
#contatti a{
  color: #4D4D4D;
  text-decoration: none;
}

#contatti{
  background-color: #FFFFFF;
  letter-spacing: 2px;
  }
#contatti a{
  color: #4D4D4D;
  text-decoration: none;
}


.text-custom-section-header {
     font-size: 1rem !important;
}

@media (max-width: 575.98px) {
  .text-custom-section-header {
     font-size: 0.8rem !important;
  }


  #contatti{padding-bottom: 800px;}
  #contatti .maps iframe{
    width: 100%;
    height: 450px;
  }
 }


@media (min-width: 576px) {

   #contatti{padding-bottom: 800px;}

   #contatti .maps iframe{
     width: 100%;
     height: 450px;
   }
 }

@media (min-width: 768px) {

  #contatti{padding-bottom: 350px;}

  #contatti .maps iframe{
    width: 100%;
    height: 850px;
  }
}

@media (min-width: 992px) {


  #contatti{padding-bottom: 200px;}

   #contatti .maps iframe{
     width: 100%;
     height: 700px;
   }
}


.list-group-item-icon {
  padding: 0 0 0 0;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.list-group-item-area a {
  color: #343A40 !important;
}

.list-group-item-icon:hover {
  background-color: #FFFFFF !important;
}

.list-group-item-area:hover {
  background-color: #BFBFBF !important;
}


.list-group-item-area.active:hover {
  background-color: #BFBFBF !important;
  border-color: #BFBFBF !important;
  color: #343A40 !important;
}

.list-group-item-area.active:hover a {
  color: #343A40 !important;
}

.list-group-item-area.active {
  background-color: #343A40 !important;
  border-color: #343A40 !important;
  color: #FFF !important;
}

.list-group-item-area.active a {
  color: #FFF !important;
}

#author a{
  color: #4D4D4D;
  text-decoration: none;

}
/*--- end contatti ----*/




div #sidebar-wrapper .offcanvas-active{
    position:relative !important;
    overflow:hidden !important;
}

/*
div #sidebar-wrapper-container .offcanvas-active{
    position:relative !important;
    overflow:hidden !important;
}
*/


.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}

#navbarDropdownMenuLink::after {
  transform: rotate(-90deg);
}

a.caretDown::after {
  transform: rotate(0deg) !important;
}



.offcanvas-header{ display:none; }

@media (max-width: 992px) {

  .font-nav-item  {
    color: #1A1A1A !important;
    font-size: 1.1rem;
    padding: 1.2rem;

  }

  #navbars-qerp .nav-item  {
    color: #1A1A1A !important;
    padding: 0.8rem;
    border-bottom: 1px dotted #999999;
    font-size: 1.1rem;
  }

  /*.btn-megamenu-custom {
     background-color: #E5E5E5 !important;
   }*/

  .offcanvas-header{ display:block; }
  .navbar-collapse {
    position: fixed;
    top:0;
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #6c757d !important;
    transition: visibility .2s ease-in-out, transform .2s ease-in-out;
  }

  .navbar-collapse.show {
    visibility: visible;
    transform: translateX(-100%);
  }

  .list-group .list-group-root {
    background-color: #E5E5E5 !important;
    border: 0px  #E5E5E5 !important;
  }
  div #bg-mobile {
    background-color: #E5E5E5 !important;
    border: 0px  #E5E5E5 !important;

  }
}

.content-row {
  min-height:300px;
}


.text-custom {
    color: #343A40 !important;
}

a.text-custom {
    color: #FFFFFF !important;
}

.bg-custom{
    background-color: #343A40 !important;
    color: #FFFFFF !important;
}

.text-custom-admin {
    color: #1A1A1A !important;
}

a.text-custom-admin {
    color: #FFFFFF !important;
}

.bg-custom-admin{
    background-color: #1A1A1A !important;
    color: #FFFFFF !important;
}



.bg-grey{
    background-color: #E5E5E5 !important;
}

.bg-grey-light{
    background-color:#F1F1F1 !important;
}

.text-custom-faq {
    color: #1A1A1A !important;
}

a.text-custom-faq {
    color: #FFFFFF !important;
}

.bg-custom-faq{

    left: 0;
    bottom:0;
    opacity:0.8;
    background-image:  url(../../../images/690x400.jpg) !important;
    color: #FFFFFF !important;
    background-size: contain;
}

.bg-custom-banner-header{
    background-color: #343A40 !important;
    color: #FFFFFF !important;
}


.bg-black{
    background-color: #000 !important;
}


.bg-custom-section-footer{
    background-color: #000 !important;
    color: #343A40 !important;
}

/*
#bg-section-slider{
    background:url('../../../images/.jpg')  repeat-x scroll top transparent;
    background-position: initial;
    z-index: 10;
    left: 0;
    bottom:0;
    opacity:0.6;
    min-height:150px;
}
*/

.btn-rounded {
  border-radius: 50px;
}

.card-rounded {
  border-radius: 15px;
}


.bg-custom-footer{
    background-color: #000 !important;
}


/*
.main-content {
  min-height:600px;
}
*/

.cart-buttons span {
  width: 50px;
  text-align: center;
  border: 1px solid;
}

.card-img-top {
    min-height: 256px !important;
    max-height: 256px !important;
    width: auto !important;
}

.jumbotron-img-single {
    height: 300px !important;
    width: auto !important;
}

.cart-img-single {
    max-height: 100px !important;
    width: auto !important;
}

.hidden {
  display: none;
}



#img-invert-white {
    /*filter: invert(100%) !important ;*/
    filter: brightness(0) invert(1) !important ;
  }


.not-pointer {
     cursor: pointer;
     pointer-events: none !important;
}


/*
 .select-lg.dropdown-menu li > span{
  font-size: 2.8rem !important;
}
*/

/*
.btn-outline-danger:hover {
  color: #FFF !important;
  border-color: #D20404 !important;
}
*/

.btn-danger-light {
  background-color: #df8181 !important;
  color: #5b0606 !important;
}

.text-danger-light {
  color: #df8181 !important;
}

.text-danger {
  color: #A50000 !important;
}

.btn-outline-danger-light{
  color: #5b0606 !important;
  border-color: #df8181 !important;
}


.btn-outline-danger {
  color: #A50000 !important;
  border-color: #A50000 !important;
}

.btn-outline-danger:hover,
.btn-outline-danger a:hover {
  color: #FFF !important;
  background-color: #A50000 !important;
  border-color: #7F7F7F !important;
}

.btn-danger {
  color: #fff !important;
  background-color: #A50000 !important;
  border-color: #D20404 !important;
}


.btn-danger:hover,
.btn-danger a:hover {
  color: #1A1A1A !important;
  background-color: #BFBFBF !important;
  border-color: #7F7F7F !important;
}

.bg-danger {
  background-color: #A50000 !important;
}

.btn-outline-warning {
  color: #343a40!important;
  border-color: #FF9C00  !important;
}

.btn-outline-warning:hover {
  color: #FF9C00 !important;
  background-color: #E5E5E5 !important;
  border-color: #FF6C06 !important;
}

.bg-warning-ultra-light {
  background-color: #fcf1c9 !important;
  color: #5b3f0d !important;
}



.btn-outline-warning-disabled {
  color:#000000 !important;
}

.select-white {
  background-color: #FFFFFF !important;
  color:#000000 !important;
}


.bg-secondary-light {
  background-color: #cdcdcd !important;
  color: #000000 !important;
}


.bg-danger-ultra-light {
  background-color: #e3c0c0 !important;
  color: #5b0606 !important;
}

.bg-danger-light {
  background-color: #df8181 !important;
  color: #5b0606 !important;
}

.bg-warning-ultra-light {
  background-color: #fcf1c9 !important;
  color: #5b3f0d !important;
}

.bg-warning-light {
  background-color: #eec070 !important;
  color: #5b3f0d !important;
}

.btn-warning-light {
  background-color: #eec070 !important;
  color: #5b3f0d !important;
}

.border-warning-light {
  border-color: #eec070 !important;
}

.bg-success-ultra-light {
  background-color: #ddf0d2 !important;
  color: #173713 !important;
}

.bg-success-light {
  background-color: #c1dfb0 !important;
  color: #173713 !important;
}

.btn-success-light {
  background-color: #c1dfb0 !important;
  color: #173713 !important;
}

.border-success-light {
  border-color: #93c179 !important;
}

.border-secondary-light {
  border-color: #cdcdcd !important;
}

.bg-primary-light {
  background-color: #6d9ecf !important;
  color: #ffffff !important;
}




.bg-primary {
  background-color: #0066CD !important;
}

.text-primary {
  color: #0066CD !important;
}

.btn-outline-primary {
  color: #0066CD !important;
  border-color: #0052A5 !important;
}

.bg-outline-primary {
  border-color: #0053A7 !important;
  background-color: #7ca8d4 !important;
  color: #fff !important;
}

.btn-primary-custom {
  color: #fff !important;
  background-color: #0074E9 !important;
  border-color: #0053A7 !important;
}

.btn-primary-custom:hover,
.btn-primary-custom a:hover {
    background-color: #0052A5 !important;
}


.btn-outline-primary:hover,
.btn-outline-primary:hover {
  background-color: #0052A5 !important;
  color: #fff !important;
}

.btn-primary {
  color: #fff !important;
  background-color: #0066CD !important;
  border-color: #0052A5 !important;
}

.btn-primary:hover,
.btn-primary a:hover {
  background-color: #0052A5 !important;
  color: #fff !important;
}

.btn-outline-primary-disabled {
  color:#000000 !important;
}

.border-primary {
    border-color: #0066CD !important;
}

.text-primary {
    color: #0066CD !important;
}


.disabled {
    pointer-events: none;
    cursor: default;
}

.navbar-custom-public {
    /*background-color: #FFFFFF !important;*/
    /*border-bottom: 1px solid #1A1A1A !important;*/
    font-size: 0.9rem !important;
    /*letter-spacing: 0.04rem;*/
    /*font-weight: bold;*/
}

/* change the brand and text color */
.navbar-custom-public .navbar-brand,
.navbar-custom-public .navbar-text {
    color: #1A1A1A !important;
}
/* change the link color */
.navbar-custom-public .navbar-nav .nav-link {
    color: #1A1A1A !important;
}
/* change the color of active or hovered links */
.navbar-custom-public .nav-item.active .nav-link,
.navbar-custom-public .nav-item:hover .nav-link {
    color: #4D4D4D !important;
}

/*
.navbar-toggler{
    background-color: #F4F4F4 !important;
    border: 1px solid #1A1A1A !important;
    border-radius: 0;
    color: #1A1A1A !important;
    height: 37px;
}
*/

.form-control:focus {
    outline: 0 !important;
    border-color: initial;
    box-shadow: none;
}


.navbar-toggler-icon.line{
    background-color: #047FF7 !important;
    color: #fff !important;
}



.btn.btn-custom-menu-mobile:hover {
    /*background-color: #252525 !important;*/
    background-color: #171717 !important;*
    color: #FFF !important;
}

.btn.btn-custom-menu-mobile {
    /*background-color: #FF9A00 !important;*/
    background-color: #980000 !important;
    color: #FFF !important;
}

/*
.navbar-toggler:hover {
    background-color: #047FF7 !important;
}
*/

.cart-smartphone {
  color: #4D4D4D !important;
}

.cart-smartphone:hover{
  color: #1A1A1A !important;
}

/*
.btn.btn-toggler{
  padding: 8px !important;
  height: 38px;
  width: 38px;
  background-color: #fff !important;
  color: #007DF8 !important;
  border: 1px solid #FFFFFF !important;
  border-radius: 25px;
}


.btn.btn-toggler:hover{
  padding: 8px !important;
  height: 38px;
  width: 38px;
  background-color: #007DF8 !important;
  color: #FFFFFF !important;
  border: 1px solid #FFFFFF !important;
}
*/

.btn.btn-filter{
  padding: 8px !important;
  height: 38px;
  width: 38px;
  background-color: #fff !important;
  color: #1A1A1A !important;
  border: 1px solid #1A1A1A !important;
}


.btn.btn-filter:hover{
  padding: 8px !important;
  height: 38px;
  width: 38px;
  background-color: #1A1A1A !important;
  color: #FFFFFF !important;
  border: 1px solid #1A1A1A !important;
}

.navbar-toggler.btn-filter{
  background-color: #FFFFFF !important;
  color: #1A1A1A !important;
  border: 1px solid #1A1A1A !important;
  padding: 8px !important;
}

.navbar-toggler.btn-filter:hover{
  background-color: #1A1A1A !important;
  color: #FFFFFF !important;
  border: 1px solid #1A1A1A !important;
  padding: 8px !important;
}

/*
body.bg {
  background: #919aa1;
}
*/

@media(max-width:992px){
  .big-screen {
    display: none;
  }

}


@media screen and (max-width: 576px) and (min-width: 0px) {
  .desktop-only {
       display: none;
   }

}

@media screen and (min-width: 576px)  {
  .mobile-only {
       display: none;
   }
}


@media(min-width:767px){
  .cart-smartphone{
        display: none;
  }
  .footer-bottom {
    /*tolto per ora
    position: fixed !important;*/
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    z-index:1030 !important;
    text-align: center !important;


  }
}

@media(max-width:767px){
  .cart-desktop{
    display: none;
  }
  .footer-bottom {
    text-align: left !important;
  }
  .list-group-item {
    float: left;
    margin: 0px;
    padding: 0px;
  }
}

/* INIZIO COLORE SOCIAL*/
.btn-custom-social {
  color: #30373d;
  background-color: #65dbde;
  border-color: #30373d;
}
/* FINE COLORE SOCIAL*/

.section.dark{
  background-color: #182b57;
}

.section.ovale{
  background-color: #0b6cd2;
}

.card.ovale{
  background-color: #1e88e5;
}

.card-h-rounded {
  border-radius: 15px;
}
.inter {
  line-height:2.0rem !important;
}
.container-servizi{
        max-width: 1700px;
    }
