/* CSS Document */

/* struttura */
@media (max-width: 575px) {
.view-mobile {
	display: block !important;
}
.view-desktop {
  display: none !important;
}
.applications-link {
  width: 100% !important;
}
.applications-content {
  width: 100% !important;
}
}
@media (min-width: 576px) and (max-width: 991px) {
.view-mobile {
	display: block !important;
}
.view-desktop {
  display: none !important;
}
.applications-link {
  width: 50% !important;
}
.applications-content {
  width: 100% !important;
}
}
@media (min-width: 992px) {
.view-mobile {
	display: none !important;
}
.view-desktop {
  display: block !important;
}
.applications-link {
  width: 25% !important;
}
.applications-content {
  width: 50% !important;
}
}

/* link */
.applications-link .title, .applications-link .subtitle {
  width: 100%;
	color: #000;
	font-weight: 700;
	text-align: center;
}
.applications-link .title {
	background-color: #fff;
	font-size: 18px;
	padding: 15px;
}
.applications-link .subtitle {
	background-color: #ddd;
	font-size: 14px;
	padding: 10px;
	border-top: 1px solid #000;
}
.applications-link .subtitle a {
	color: #000;
}
.applications-link .subtitle:hover {
	background-color: #eee;
}

/* frecce */
.arrow-application a {
	position: absolute;
	top: 10px;
	left: 15px;
	background-color: #fff;
	color: #000;
	font-weight: 700;
}
.arrow-application a.next {
	right: 15px;
	left: auto;
}
.arrow-application span {
	font-size: 32px !important;
}


/* titolo */
.title-application {
	background-color: #fff;
	color: #000;
	font-weight: 700;
	text-align: center;
	font-size: 18px;
	padding: 15px 50px;
}
.title-application em {
	font-weight: 400;
}

/* immagine */
.image-application {
	max-width: 100%;
	margin-bottom: 30px;
	background-color: #fff;
}

/* video */
.video-application {
	max-width: 100%;
	margin-bottom: 30px;
	background-color: #a6b0bf;
}

/* gallery */
.gallery-application {
	max-width: 100%;
	margin-bottom: 30px;
	background-color: #fff;
}
.product-slider{
	width: auto;
	margin: auto;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}
.slick-slide {
  height: auto !important;
}
.slick-slide img {
	height: auto !important;
	object-fit: cover;
	margin: 0 auto;
}
.slick-arrow{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0;
	height: 40px;
	width: 40px;
	background-color: rgba(0,0,0,0.6);
	border-radius: 10px;
	cursor: pointer;
	background-size: 20px;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center;
}
.slick-arrow.slick-prev {
  left: 10px;
}
.slick-arrow.slick-next {
  right: 10px;
}
.slick-prev:hover, .slick-next:hover {
  background-color: rgba(0,0,0,0.3);
}
.slick-prev:focus, .slick-next:focus {
  background-color: rgba(0,0,0,0.6);
}