/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

      /*SPECIFICI PER IL BOX CAROUSEL*/
      .box-carousel .owl-prev,
      .box-carousel .owl-next {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
      }

      .box-carousel  .owl-prev {
          left: 0px;
      }

      .box-carousel  .owl-next {
          right: 0px;
      }

      .box-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
          padding: 5px 10px !important;
          -webkit-border-radius: 0px;
          -moz-border-radius: 0px;
          border-radius: 0;
          background: #eeeeee;
      }

.box-carousel .owl-item {
    opacity: 0.6;
    z-index: 11;
    transform: scale(0.6);

    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.box-carousel .owl-item > div{
  text-align: center;
}

.box-carousel  .center {  
    transform: scale(1.1); 
    opacity: 1;
    z-index: 12;
}

.box-carousel .owl-stage {
  margin-top: 20px;
  min-height: 250px;
}

.box-carousel .owl-subtext {
  text-align: center;
  opacity: 0;
  font-family: 'Play', sans-serif;
  font-size: 14px !important;
  background-color: #E7EBEF;
  border-radius: 30px;
  font-weight: 600;
  padding: 7px 5px;
  margin-bottom: 5px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  transform: scale(0.9);
  margin-top: 10px;
  width: 100%;
}

.box-carousel  .center .owl-subtext {
  opacity: 1;
}

.box-carousel .owl-brand {
  opacity: 0;
  max-height: 40px !important;
  width: auto !important;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  margin: 0 auto;
}

.box-carousel  .center .owl-brand {
  opacity: 1;
}
.box-carousel .owl-stage-outer {
  padding-bottom: 20px;
}