.cmp-select .dropdown-menu ul li.selected,
.cmp-select .dropdown-menu ul li.active {
  -ms-filter: none;
  filter: none;
}

.cmp-select .dropdown-menu ul li.selected a,
.cmp-select .dropdown-menu ul li.active a {
  background: #dcdcdc;
  color: inherit;
  -ms-filter: none;
  filter: none;
}

.cmp-select.dropup .dropdown-menu {
  border-top: 1px solid #d6d6d6;
  margin-bottom: 0;
  border-bottom: none;
  /* Top */
  -webkit-border-top-right-radius: 4px !important;
  -webkit-border-top-left-radius: 4px !important;
  -moz-border-radius-topright: 4px !important;
  -moz-border-radius-topleft: 4px !important;
  border-top-right-radius: 4px !important;
  border-top-left-radius: 4px !important;
  /* Bottom */
  -webkit-border-bottom-right-radius: 0 !important;
  -webkit-border-bottom-left-radius: 0 !important;
  -moz-border-radius-bottomright: 0 !important;
  -moz-border-radius-bottomleft: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/*
  FIFI
*/

.fifi-start {
  filter: alpha(opacity=0);
  opacity: 0;
}

.fifi-end {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */

  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/*==============================================================================
    				    WEBSITE GLOBAL VARIABLES
==============================================================================*/

/**** COLORI ****/

/* PRIMARI */

/* SECONDARI */

/* FASCIA CAPSULE */

/**** VECCHI COLORI SITO PROFESSIONISTI PUBBLICO  ****/

/* IMAGES */

.museoSans100 {
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 100;
}

.museoSans300 {
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
}

.museoSans500 {
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 500;
}

.museoSans700 {
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 700;
}

.museoSans900 {
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 900;
}

.openSans {
  font-family: 'Open Sans', sans-serif;
}

.openSans.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.openSans.Extrabold {
  font-weight: 800;
}

.openSans.Bold {
  font-weight: 700;
}

.openSans.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.openSans.Italic {
  font-style: italic;
  font-weight: 400;
}

.openSans.Regular {
  font-weight: 400;
}

.openSans.Light {
  font-weight: 300;
}

/*==============================================================================
                                    ICONE
==============================================================================*/

/*
    * NOTA:
    * Abbiamo @1x e @2x per desktop ed abbiamo la @1x e @2x per mobile
    *
*/

.ico {
  background-image: url('../../images/sprite/desktop/sprite.png');
  display: inline-block;
  text-indent: -9000px;
  /********* LISTA ICONE IMG SPRITE *********/
  /* ICONS (left(X) top(Y) position) */
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx) {
  .ico {
    background-image: url("../../images/sprite/desktop/sprite@2x.png");
    background-size: 976px 783px;
    background-position-x: 0;
    background-position-y: 0;
  }
}

.ico.ico-logo {
  width: 40px;
  height: 40px;
  background-position: -4px -28px;
}

.ico.ico-community {
  width: 30px;
  height: 18px;
  background-position: -3px 0;
}

.ico.ico-community:hover {
  background-position: -160px 0;
}

.ico.ico-marker {
  width: 16px;
  height: 18px;
  background-position: -42px 0;
}

.ico.ico-marker:hover {
  background-position: -199px 0;
}

.ico.ico-search {
  width: 21px;
  height: 18px;
  background-position: -66px 0;
}

.ico.ico-search:hover {
  background-position: -223px 0;
}

.ico.ico-profile {
  width: 22px;
  height: 21px;
  background-position: -94px 0;
}

.ico.ico-profile:hover {
  width: 22px;
  height: 21px;
  background-position: -252px 0;
}

.ico.ico-close {
  width: 12px;
  height: 12px;
  background-position: -124px 0;
}

.ico.ico-close:hover {
  background-position: -281px 0;
}

.ico.ico-close2 {
  width: 37px;
  height: 37px;
  background-position: -179px -190px;
}

.ico.ico-close2:hover {
  background-position: -409px -190px;
}

.ico.ico-caretbig-down {
  width: 24px;
  height: 14px;
  background-position: -442px -87px;
}

.ico.ico-caretbig-down:hover {
  background-position: -933px -87px;
}

.ico.ico-caret-down {
  width: 11px;
  height: 9px;
  background-position: -474px -87px;
}

.ico.ico-caret-down:hover {
  background-position: -965px -87px;
}

.ico.ico-world {
  width: 17px;
  height: 17px;
  background-position: -4px -292px;
}

.ico.ico-heart-white {
  width: 17px;
  height: 17px;
  background-position: -30px -292px;
}

.ico.ico-marker-white {
  width: 17px;
  height: 17px;
  background-position: -55px -292px;
}

.ico.ico-mail-white {
  width: 17px;
  height: 17px;
  background-position: -80px -292px;
}

.ico.ico-phone {
  width: 9px;
  height: 17px;
  background-position: -107px -292px;
}

.ico.ico-phone-big {
  width: 11px;
  height: 21px;
  background-position: -127px -292px;
}

.ico.ico-phone-big-gray {
  width: 11px;
  height: 21px;
  background-position: -153px -292px;
}

.ico.ico-facebook {
  width: 39px;
  height: 40px;
  background-position: 0 -362px;
}

.ico.ico-twitter {
  width: 39px;
  height: 40px;
  background-position: -54px -362px;
}

.ico.ico-gplus {
  width: 39px;
  height: 40px;
  background-position: -108px -362px;
}

.ico.ico-youtube {
  width: 39px;
  height: 40px;
  background-position: -163px -362px;
}

.ico.ico-instagram {
  width: 39px;
  height: 40px;
  background-position: -217px -362px;
}

.ico.ico-compass {
  width: 34px;
  height: 34px;
  background-position: -4px -319px;
}

.ico.ico-pencil {
  width: 34px;
  height: 34px;
  background-position: -47px -319px;
}

.ico.ico-arrow-graymd-left {
  width: 32px;
  height: 32px;
  background-position: -169px -88px;
}

.ico.ico-arrow-graymd-left:hover {
  background-position: -660px -88px;
}

.ico.ico-arrow-graymd-right {
  width: 32px;
  height: 32px;
  background-position: -211px -88px;
}

.ico.ico-arrow-graymd-right:hover {
  background-position: -702px -88px;
}

.ico.ico-arrow-white-left {
  width: 33px;
  height: 33px;
  background-position: -253px -88px;
}

.ico.ico-arrow-white-left:hover {
  background-position: -744px -88px;
}

.ico.ico-arrow-white-right {
  width: 33px;
  height: 33px;
  background-position: -296px -88px;
}

.ico.ico-arrow-white-right:hover {
  background-position: -787px -88px;
}

.ico.ico-play-big {
  width: 94px;
  height: 94px;
  background-position: -3px -189px;
}

.ico.ico-play-big:hover {
  background-position: -231px -189px;
}

.ico.ico-play {
  width: 64px;
  height: 64px;
  background-position: -106px -189px;
}

.ico.ico-play:hover {
  background-position: -334px -189px;
}

.ico.ico-arrow-gray-left {
  width: 41px;
  height: 41px;
  background-position: -67px -88px;
}

.ico.ico-arrow-gray-left:hover {
  background-position: -558px -88px;
}

.ico.ico-arrow-gray-right {
  width: 41px;
  height: 41px;
  background-position: -118px -88px;
}

.ico.ico-arrow-gray-right:hover {
  background-position: -609px -88px;
}

.ico.ico-scroll-down {
  width: 53px;
  height: 53px;
  background-position: -4px -87px;
}

.ico.ico-scroll-down:hover {
  background-position: -495px -87px;
}

.ico.ico-share {
  width: 61px;
  height: 61px;
  background-position: -3px -412px;
}

.ico.ico-share:not(.is-touch):hover {
  background-position: -123px -412px;
}

.ico.ico-arrow-grayxs-left {
  width: 20px;
  height: 20px;
  background-position: -339px -88px;
}

.ico.ico-arrow-grayxs-left:hover {
  background-position: -830px -88px;
}

.ico.ico-arrow-grayxs-right {
  width: 20px;
  height: 20px;
  background-position: -369px -88px;
}

.ico.ico-arrow-grayxs-right:hover {
  background-position: -860px -88px;
}

.ico.ico-download {
  width: 9px;
  height: 19px;
  background-position: -75px -412px;
}

.ico.ico-arrow-thin-left {
  width: 16px;
  height: 22px;
  background-position: -888px -88px;
}

.ico.ico-arrow-thin-right {
  width: 16px;
  height: 22px;
  background-position: -910px -88px;
}

.ico.ico-help {
  width: 20px;
  height: 20px;
  background-position: -95px -412px;
}

.ico.ico-chk-no {
  width: 75px;
  height: 33px;
  background-position: -173px -750px;
}

.ico.ico-chk-yes {
  width: 75px;
  height: 33px;
  background-position: -257px -750px;
}

body.smartphone .ico,
.body-smartphone .ico {
  background-image: url('../../images/sprite/mobile/sprite.png');
  /********* LISTA ICONE IMG SPRITE *********/
  /* ICONS (left(X) top(Y) position) */
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx) {
  body.smartphone .ico,
  .body-smartphone .ico {
    background-image: url("../../images/sprite/mobile/sprite@2x.png");
    background-size: 295px 400px;
    background-position-x: 0;
    background-position-y: 0;
  }
}

body.smartphone .ico.ico-logo,
.body-smartphone .ico.ico-logo {
  width: 26px;
  height: 25px;
  background-position: 0 -28px;
}

body.smartphone .ico.ico-community,
.body-smartphone .ico.ico-community {
  width: 28px;
  height: 22px;
  background-position: -22px 0;
}

body.smartphone .ico.ico-marker,
.body-smartphone .ico.ico-marker {
  width: 16px;
  height: 22px;
  background-position: 0 0;
}

body.smartphone .ico.ico-search,
.body-smartphone .ico.ico-search {
  width: 22px;
  height: 22px;
  background-position: -58px 0;
}

body.smartphone .ico.ico-profile,
.body-smartphone .ico.ico-profile {
  width: 23px;
  height: 23px;
  background-position: -111px 0;
}

body.smartphone .ico.ico-close,
.body-smartphone .ico.ico-close {
  width: 16px;
  height: 15px;
  background-position: -87px 0;
}

body.smartphone .ico.ico-close2,
.body-smartphone .ico.ico-close2 {
  width: 18px;
  height: 18px;
  background-position: -277px 0;
}

body.smartphone .ico.ico-burger-icon,
.body-smartphone .ico.ico-burger-icon {
  width: 15px;
  height: 15px;
  background-position: 0 -58px;
}

body.smartphone .ico.ico-carethuge-down,
.body-smartphone .ico.ico-carethuge-down {
  width: 16px;
  height: 10px;
  background-position: -66px -215px;
}

body.smartphone .ico.ico-carethuge-down:hover,
.body-smartphone .ico.ico-carethuge-down:hover {
  background-position: -66px -215px;
}

body.smartphone .ico.ico-caretbig-down,
.body-smartphone .ico.ico-caretbig-down {
  width: 13px;
  height: 8px;
  background-position: -85px -215px;
}

body.smartphone .ico.ico-caretbig-down:hover,
.body-smartphone .ico.ico-caretbig-down:hover {
  background-position: -85px -215px;
}

body.smartphone .ico.ico-caretbig-up,
.body-smartphone .ico.ico-caretbig-up {
  width: 13px;
  height: 8px;
  background-position: -101px -215px;
}

body.smartphone .ico.ico-caretbig-up:hover,
.body-smartphone .ico.ico-caretbig-up:hover {
  background-position: -101px -215px;
}

body.smartphone .ico.ico-caret-down,
.body-smartphone .ico.ico-caret-down {
  width: 8px;
  height: 5px;
  background-position: -118px -215px;
}

body.smartphone .ico.ico-caret-down:hover,
.body-smartphone .ico.ico-caret-down:hover {
  background-position: -118px -215px;
}

body.smartphone .ico.ico-heart-white,
.body-smartphone .ico.ico-heart-white {
  width: 11px;
  height: 9px;
  background-position: -42px -167px;
}

body.smartphone .ico.ico-marker-white,
.body-smartphone .ico.ico-marker-white {
  width: 9px;
  height: 11px;
  background-position: -56px -167px;
}

body.smartphone .ico.ico-world,
.body-smartphone .ico.ico-world {
  width: 12px;
  height: 12px;
  background-position: -68px -167px;
}

body.smartphone .ico.ico-phone,
.body-smartphone .ico.ico-phone {
  width: 6px;
  height: 13px;
  background-position: -84px -167px;
}

body.smartphone .ico.ico-phone-white,
.body-smartphone .ico.ico-phone-white {
  width: 6px;
  height: 13px;
  background-position: -122px -167px;
}

body.smartphone .ico.ico-mail-white,
.body-smartphone .ico.ico-mail-white {
  width: 11px;
  height: 10px;
  background-position: -94px -167px;
}

body.smartphone .ico.ico-mail,
.body-smartphone .ico.ico-mail {
  width: 12px;
  height: 10px;
  background-position: -108px -167px;
}

body.smartphone .ico.ico-phone-big,
.body-smartphone .ico.ico-phone-big {
  width: 12px;
  height: 25px;
  background-position: -53px -78px;
}

body.smartphone .ico.ico-phone-big-gray,
.body-smartphone .ico.ico-phone-big-gray {
  width: 12px;
  height: 25px;
  background-position: -74px -78px;
}

body.smartphone .ico.ico-facebook,
.body-smartphone .ico.ico-facebook {
  width: 22px;
  height: 24px;
  background-position: 0 -188px;
}

body.smartphone .ico.ico-twitter,
.body-smartphone .ico.ico-twitter {
  width: 23px;
  height: 24px;
  background-position: -29px -188px;
}

body.smartphone .ico.ico-gplus,
.body-smartphone .ico.ico-gplus {
  width: 23px;
  height: 24px;
  background-position: -59px -188px;
}

body.smartphone .ico.ico-youtube,
.body-smartphone .ico.ico-youtube {
  width: 23px;
  height: 24px;
  background-position: -89px -188px;
}

body.smartphone .ico.ico-instagram,
.body-smartphone .ico.ico-instagram {
  width: 23px;
  height: 24px;
  background-position: -119px -188px;
}

body.smartphone .ico.ico-compass,
.body-smartphone .ico.ico-compass {
  width: 22px;
  height: 22px;
  background-position: 0 -78px;
}

body.smartphone .ico.ico-pencil,
.body-smartphone .ico.ico-pencil {
  width: 22px;
  height: 22px;
  background-position: -26px -78px;
}

body.smartphone .ico.ico-play-big,
.body-smartphone .ico.ico-play-big,
body.smartphone .ico.ico-play,
.body-smartphone .ico.ico-play {
  width: 41px;
  height: 41px;
  background-position: 0 -122px;
}

body.smartphone .ico.ico-play-big:hover,
.body-smartphone .ico.ico-play-big:hover,
body.smartphone .ico.ico-play:hover,
.body-smartphone .ico.ico-play:hover {
  background-position: 0 -122px;
}

body.smartphone .ico.ico-share,
.body-smartphone .ico.ico-share {
  width: 41px;
  height: 42px;
  background-position: 0 -246px !important;
}

body.smartphone .ico.ico-arrow-grayxs-left,
.body-smartphone .ico.ico-arrow-grayxs-left,
body.smartphone .ico.ico-arrow-gray-left,
.body-smartphone .ico.ico-arrow-gray-left,
body.smartphone .ico.ico-arrow-graymd-left,
.body-smartphone .ico.ico-arrow-graymd-left {
  width: 27px;
  height: 26px;
  background-position: 0 -216px;
}

body.smartphone .ico.ico-arrow-grayxs-right,
.body-smartphone .ico.ico-arrow-grayxs-right,
body.smartphone .ico.ico-arrow-gray-right,
.body-smartphone .ico.ico-arrow-gray-right,
body.smartphone .ico.ico-arrow-graymd-right,
.body-smartphone .ico.ico-arrow-graymd-right {
  width: 28px;
  height: 26px;
  background-position: -31px -216px;
}

body.smartphone .ico.ico-help,
.body-smartphone .ico.ico-help {
  width: 11px;
  height: 11px;
  background-position: -47px -263px;
}

body.smartphone .ico.ico-chk-no,
.body-smartphone .ico.ico-chk-no {
  width: 57px;
  height: 22px;
  background-position: 0 -339px;
}

body.smartphone .ico.ico-chk-yes,
.body-smartphone .ico.ico-chk-yes {
  width: 57px;
  height: 22px;
  background-position: -60px -339px;
}

/*==============================================================================
                                    ICONE
==============================================================================*/

/*
    * NOTA:
    * Abbiamo la versione @1x e @2x
*/

.ico2 {
  background-image: url('../../images/sprite_privata/sprite.png');
  display: inline-block;
  text-indent: -9000px;
  /********* LISTA ICONE IMG SPRITE *********/
  /* ICONS (left(X) top(Y) position) */
  /* icone custom fatture, ordini, bolle */
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx) {
  .ico2 {
    background-image: url("../../images/sprite_privata/sprite@2x.png");
    background-size: 900px 700px;
    background-position-x: 0;
    background-position-y: 0;
  }
}

.ico2.ico-logo {
  width: 40px;
  height: 40px;
  background-position: 0 0;
}

.ico2.ico-logo-small {
  width: 32px;
  height: 32px;
  background-position: -327px -4px;
}

.ico2.ico-search {
  width: 19px;
  height: 15px;
  background-position: -49px -12px;
}

.ico2.ico-place {
  width: 18px;
  height: 25px;
  background-position: -77px -8px;
}

.ico2.ico-place-small {
  width: 12px;
  height: 17px;
  background-position: -394px -13px;
}

.ico2.ico-user-profile {
  width: 25px;
  height: 25px;
  background-position: -490px -155px;
}

.ico2.ico-user-profile-small {
  width: 17px;
  height: 17px;
  background-position: -369px -13px;
}

.ico2.ico-burger {
  /* OLD
        width: 13px;
        height: 14px;
        background-position: -143px -13px;*/
  width: 14px;
  height: 10px;
  background-position: -143px -13px;
}

.ico2.ico-world {
  width: 16px;
  height: 16px;
  background-position: -180px -13px;
}

.ico2.ico-esci {
  width: 35px;
  height: 26px;
  background-position: -214px -8px;
}

.ico2.ico-notifiche {
  width: 24px;
  height: 27px;
  background-position: -257px -6px;
}

.ico2.ico-notifiche-gray {
  width: 24px;
  height: 27px;
  background-position: -440px -53px;
}

.ico2.ico-close {
  /* OLD
        width: 14px;
        height: 14px;
        background-position: -295px -13px;
        */
  width: 16px;
  height: 15px;
  background-position: -295px -13px;
}

.ico2.ico-search-white {
  width: 9px;
  height: 7px;
  background-position: -417px -13px;
}

.ico2.ico-world-red {
  width: 21px;
  height: 20px;
  background-position: -440px -10px;
}

.ico2.ico-world-white {
  width: 21px;
  height: 20px;
  background-position: -482px -58px;
}

.ico2.ico-mail {
  width: 20px;
  height: 14px;
  background-position: -472px -13px;
}

.ico2.ico-mail-red {
  width: 20px;
  height: 14px;
  background-position: -515px -61px;
}

.ico2.ico-phone {
  width: 14px;
  height: 20px;
  background-position: -503px -9px;
}

.ico2.ico-phone-gray {
  width: 14px;
  height: 20px;
  background-position: -754px -58px;
}

.ico2.ico-social-facebook {
  width: 40px;
  height: 41px;
  background-position: 0 -43px;
}

.ico2.ico-social-facebook-small {
  width: 29px;
  height: 29px;
  background-position: -556px -6px;
}

.ico2.ico-social-facebook-medium {
  width: 36px;
  height: 36px;
  background-position: -549px -49px;
}

.ico2.ico-social-twitter {
  width: 40px;
  height: 40px;
  background-position: -49px -44px;
}

.ico2.ico-social-twitter-small {
  width: 29px;
  height: 29px;
  background-position: -588px -6px;
}

.ico2.ico-social-twitter-medium {
  width: 36px;
  height: 36px;
  background-position: -588px -49px;
}

.ico2.ico-social-googlep {
  width: 40px;
  height: 41px;
  background-position: -99px -43px;
}

.ico2.ico-social-googlep-small {
  width: 29px;
  height: 29px;
  background-position: -620px -6px;
}

.ico2.ico-social-googlep-medium {
  width: 36px;
  height: 36px;
  background-position: -627px -49px;
}

.ico2.ico-social-youtube {
  width: 40px;
  height: 40px;
  background-position: -149px -44px;
}

.ico2.ico-social-youtube-small {
  width: 29px;
  height: 29px;
  background-position: -651px -6px;
}

.ico2.ico-social-youtube-medium {
  width: 36px;
  height: 36px;
  background-position: -666px -49px;
}

.ico2.ico-social-instagram {
  width: 40px;
  height: 41px;
  background-position: -200px -43px;
}

.ico2.ico-social-instagram-small {
  width: 29px;
  height: 29px;
  background-position: -683px -6px;
}

.ico2.ico-social-instagram-medium {
  width: 36px;
  height: 36px;
  background-position: -707px -49px;
}

.ico2.ico-arrow-down-red {
  width: 11px;
  height: 7px;
  background-position: -531px -18px;
}

.ico2.ico-bar {
  width: 29px;
  height: 24px;
  background-position: -725px -8px;
}

@media screen and (max-width: 767px) {
  .ico2.ico-bar {
    width: 14px;
    height: 16px;
    background-position: -804px -12px;
  }
}

.ico2.ico-arrow-down-red-big {
  width: 25px;
  height: 13px;
  background-position: -765px -15px;
}

.ico2.ico-forecast-legenda {
  width: 10px;
  height: 10px;
  background-position: -828px -16px;
}

.ico2.ico-statistics {
  width: 45px;
  height: 49px;
  background-position: -309px -43px;
}

@media screen and (max-width: 991px) {
  .ico2.ico-statistics {
    width: 20px;
    height: 20px;
    background-position: -249px -107px;
  }
}

.ico2.ico-chicco {
  width: 40px;
  height: 40px;
  background-position: -258px -48px;
}

@media screen and (max-width: 991px) {
  .ico2.ico-chicco {
    width: 16px;
    height: 16px;
    background-position: -282px -109px;
  }
}

.ico2.ico-chicco-grey {
  width: 40px;
  height: 42px;
  background-position: -258px -138px;
}

@media screen and (max-width: 767px) {
  .ico2.ico-chicco-grey {
    width: 16px;
    height: 16px;
    background-position: -620px -160px;
  }
}

.ico2.ico-chicco-small {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 991px) {
  .ico2.ico-chicco-small {
    width: 16px;
    height: 16px;
  }
}

.ico2.ico-chicco-small.red {
  background-position: -314px -138px;
}

@media screen and (max-width: 991px) {
  .ico2.ico-chicco-small.red {
    background-position: -355px -138px;
  }
}

.ico2.ico-chicco-xs {
  width: 16px;
  height: 16px;
}

.ico2.ico-chicco-xs.red {
  background-position: -355px -138px;
}

.ico2.ico-download {
  width: 17px;
  height: 25px;
  background-position: -494px -101px;
}

.ico2.ico-download-red {
  width: 17px;
  height: 25px;
  background-position: -555px -101px;
}

.ico2.ico-user-profile-red {
  width: 25px;
  height: 25px;
  background-position: -870px -7px;
}

.ico2.ico-place-red {
  width: 18px;
  height: 25px;
  background-position: -846px -8px;
}

.ico2.ico-doc-gray {
  width: 28px;
  height: 33px;
  background-position: -371px -51px;
}

.ico2.ico-doc-gray-fatture {
  width: 33px;
  height: 38px;
  background-position: -67px -219px;
}

.ico2.ico-doc-gray-ordini {
  width: 33px;
  height: 38px;
  background-position: -119px -219px;
}

.ico2.ico-doc-gray-bolle {
  width: 33px;
  height: 38px;
  background-position: -14px -219px;
}

.ico2.ico-arrow-right-gray {
  width: 10px;
  height: 17px;
  background-position: -418px -58px;
}

.ico2.ico-performance {
  width: 35px;
  height: 28px;
  background-position: -8px -99px;
}

@media screen and (max-width: 991px) {
  .ico2.ico-performance {
    width: 22px;
    height: 18px;
    background-position: -309px -109px;
  }
}

.ico2.ico-scorte-coffee {
  width: 46px;
  height: 46px;
  background-position: -58px -92px;
}

@media screen and (max-width: 767px) {
  .ico2.ico-scorte-coffee {
    width: 28px;
    height: 28px;
    background-position: -645px -155px;
  }
}

.ico2.ico-warning {
  width: 16px;
  height: 15px;
  background-position: -785px -60px;
}

.ico2.ico-tazzina-grigia {
  width: 53px;
  height: 33px;
  background-position: -116px -99px;
}

@media screen and (max-width: 767px) {
  .ico2.ico-tazzina-grigia {
    width: 27px;
    height: 17px;
    background-position: -420px -110px;
  }
}

.ico2.ico-tazzina-bianca {
  width: 53px;
  height: 33px;
  background-position: -178px -99px;
}

@media screen and (max-width: 991px) {
  .ico2.ico-tazzina-bianca {
    width: 27px;
    height: 17px;
    background-position: -378px -110px;
  }
}

.ico2.ico-arrow-green-up {
  width: 7px;
  height: 20px;
  background-position: -825px -56px;
}

.ico2.ico-arrow-red-up {
  width: 7px;
  height: 20px;
  background-position: -843px -56px;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ico2.ico-arrow-white-up {
  width: 7px;
  height: 20px;
  background-position: -861px -56px;
}

.ico2.ico-plus {
  width: 23px;
  height: 23px;
  background-position: -592px -104px;
}

.ico2.ico-equal-white {
  width: 13px;
  height: 20px;
  background-position: -878px -56px;
}

.ico2.ico-contatti {
  width: 19px;
  height: 20px;
  background-position: -635px -108px;
  /*&:hover{
            background-position: -765px -108px;
        }*/
}

.ico2.ico-gestione-utenti {
  width: 20px;
  height: 20px;
  background-position: -670px -107px;
  /*&:hover{
            background-position: -798px -108px;
        }*/
}

.ico2.ico-locale {
  width: 19px;
  height: 16px;
  background-position: -702px -110px;
}

.ico2.ico-notifiche-gray2 {
  width: 20px;
  height: 23px;
  background-position: -733px -107px;
}

.ico2.ico-arrow-right-gray-real {
  width: 10px;
  height: 17px;
  background-position: -833px -109px;
}

.ico2.ico-arrow-right-dark-real {
  width: 9px;
  height: 15px;
  background-position: -859px -110px;
}

.ico2.ico-arrow-down-gray {
  width: 19px;
  height: 29px;
  background-position: -16px -165px;
}

.ico2.ico-corso {
  width: 42px;
  height: 37px;
  background-position: -53px -166px;
}

.ico2.ico-news {
  width: 39px;
  height: 32px;
  background-position: -111px -163px;
}

.ico2.ico-tazzina-grigia-small {
  width: 36px;
  height: 22px;
  background-position: -164px -168px;
}

.ico2.ico-video {
  width: 28px;
  height: 27px;
  background-position: -213px -165px;
}

.ico2.ico-chevron-right,
.ico2.ico-chevron-left {
  background-image: url('../../images/sprite_privata/sprite.png') !important;
  width: 18px;
  height: 26px;
  background-position: -863px -109px;
}

.ico2.ico-chevron-left {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ico2.ico-delete {
  width: 23px;
  height: 26px;
  background-position: -394px -153px;
}

.ico2.ico-eye {
  width: 44px;
  height: 26px;
  background-position: -437px -155px;
}

.ico2.ico-performance-small {
  width: 29px;
  height: 32px;
  background-position: -577px -155px;
}

@media screen and (max-width: 767px) {
  .ico2.ico-performance-small {
    width: 22px;
    height: 18px;
    background-position: -309px -109px;
  }
}

.ico2.ico-dashboard {
  width: 29px;
  height: 32px;
  background-position: -531px -155px;
}

@media screen and (max-width: 767px) {
  .ico2.ico-dashboard {
    width: 20px;
    height: 20px;
    background-position: -249px -107px;
  }
}

.ico2.ico-customer-support-white {
  width: 25px;
  height: 31px;
  background-position: -684px -153px;
}

.ico2.ico-customer-support-red {
  width: 25px;
  height: 31px;
  background-position: -755px -153px;
}

.ico2.ico-play {
  background-image: url('../../images/privata/ico-play.png');
  width: 62px;
  height: 62px;
  background-position: 0 0;
  background-size: auto;
}

.ico2.ico-play:hover {
  background-position: 62px 0;
}

.ico2.ico-qualitometro {
  width: 28px;
  height: 28px;
}

.ico2.ico-qualitometro.green {
  background-position: -179px -221px;
}

.ico2.ico-qualitometro.yellow {
  background-position: -206px -221px;
}

.ico2.ico-qualitometro.red {
  background-position: -233px -221px;
}

.ico2.ico-macinadosatore {
  width: 24px;
  height: 30px;
  background-position: -277px -219px;
}

.ico2.ico-tagliando {
  width: 28px;
  height: 30px;
  background-position: -316px -219px;
}

.ico2.ico-addolcitore {
  width: 24px;
  height: 30px;
  background-position: -350px -219px;
}

/*==============================================================================
								  TIPOGRAFIA
==============================================================================*/

body {
  color: #65656a;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  /* Antialias */
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Titles
****************************/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: inherit;
  margin: 0;
}

h1 {
  color: inherit;
  margin: 0;
  font-size: 50px;
  line-height: 52px;
  font-weight: 300;
  text-transform: uppercase;
  color: #d9272e;
}

.h1-type2 {
  color: inherit;
  margin: 0;
  font-size: 50px;
  line-height: 52px;
  font-weight: 300;
  text-transform: uppercase;
  color: #d9272e;
  font-weight: 600;
  font-style: italic;
}

h2 {
  color: inherit;
  margin: 0;
  font-size: 30px;
  line-height: 32px;
  font-weight: 500;
  color: #65656a;
  text-transform: uppercase;
}

.h2-type2 {
  color: inherit;
  margin: 0;
  font-size: 30px;
  line-height: 32px;
  font-weight: 500;
  color: #65656a;
  text-transform: uppercase;
  font-weight: 600;
}

.h2-type3 {
  color: inherit;
  margin: 0;
  font-size: 30px;
  line-height: 32px;
  font-weight: 500;
  color: #65656a;
  text-transform: uppercase;
  color: #d9272e;
}

.h2-type4 {
  color: inherit;
  margin: 0;
  font-size: 30px;
  line-height: 32px;
  font-weight: 500;
  color: #65656a;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 28px;
}

h3 {
  color: inherit;
  margin: 0;
  font-size: 30px;
  line-height: 32px;
  color: #65656a;
  text-transform: uppercase;
}

h4 {
  color: inherit;
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  color: #65656a;
  text-transform: uppercase;
}

.h4-type2 {
  color: inherit;
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  color: #65656a;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}

h5 {
  color: inherit;
  margin: 0;
  font-size: 13px;
  line-height: 15px;
  color: #65656a;
  text-transform: uppercase;
}

.h5-type2 {
  color: inherit;
  margin: 0;
  font-size: 13px;
  line-height: 15px;
  color: #65656a;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 14px;
}

h6 {
  color: inherit;
  margin: 0;
  font-size: 11px;
  line-height: 13px;
  color: #65656a;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 16px;
    line-height: 16px;
  }

  .h2-type2 {
    font-size: 16px;
    line-height: 16px;
  }

  .h2-type3 {
    margin: 0 0 14px;
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
    line-height: 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .h2-type3 {
    margin: 0 0 18px;
    font-size: 24px;
  }
}

/* Bold & Italic
****************************/

b,
strong,
.b,
.strong,
.bold {
  font-weight: bold;
}

i,
em,
.i,
.em,
.italic {
  font-style: italic;
}

/* Anchors
****************************/

a {
  color: #65656a;
  font-size: 14px;
}

a:hover,
a:focus {
  color: #939699;
  text-decoration: none;
  outline: none;
}

@media screen and (max-width: 767px) {
  a {
    font-size: 15px;
  }
}

/* Telephone util class:
 Evita che i numeri di telefono vengano stilizzati automaticamente su Mobile.
 Usage: 
        <a class="tel" tabIndex="-1" href="tel:01872272894">01872 272894</a>
****************************/

.tel,
.tel:visited,
.tel:hover,
.tel:focus {
  color: #65656a;
  text-decoration: none;
  cursor: default;
}

/* Blockquote, Pre, Cite
****************************/

blockquote,
pre,
cite {
  display: block;
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 24px;
  color: #65656a;
  font-style: normal;
  font-family: 'Open Sans', sans-serif;
  -ms-word-break: break-all;
  word-break: break-all;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  background: transparent;
  border-width: 0 0 0 5px;
  border-style: solid;
  border-color: #eee;
  border-radius: 0;
}

/* Code
****************************/

code {
  display: block;
  margin-bottom: 10px;
  border-radius: 0;
}

/* Word wrap util
****************************/

.nowrap {
  white-space: nowrap;
}

/* IE: do not show the "clear X icon" on text input focus */

::-ms-clear {
  display: none;
}

/* Highlight color customization 
****************************/

::-moz-selection {
  text-shadow: none;
  background: #ccc;
  background: rgba(0, 0, 0, 0.05);
}

::selection {
  text-shadow: none;
  background: #ccc;
  background: rgba(0, 0, 0, 0.05);
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

body {
  webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}

/* Tabelle: (default senza classe .table)
 ****************************/

.table {
  background-color: transparent;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.table caption {
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: left;
}

.table th {
  text-align: left;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 18px;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

.table table {
  background-color: #fff;
}

.styled-tables table {
  background-color: transparent;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.styled-tables table caption {
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: left;
}

.styled-tables table th {
  text-align: left;
}

.styled-tables table > thead > tr > th,
.styled-tables table > tbody > tr > th,
.styled-tables table > tfoot > tr > th,
.styled-tables table > thead > tr > td,
.styled-tables table > tbody > tr > td,
.styled-tables table > tfoot > tr > td {
  padding: 8px;
  line-height: 18px;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.styled-tables table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.styled-tables table > caption + thead > tr:first-child > th,
.styled-tables table > colgroup + thead > tr:first-child > th,
.styled-tables table > thead:first-child > tr:first-child > th,
.styled-tables table > caption + thead > tr:first-child > td,
.styled-tables table > colgroup + thead > tr:first-child > td,
.styled-tables table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.styled-tables table > tbody + tbody {
  border-top: 2px solid #ddd;
}

.styled-tables table table {
  background-color: #fff;
}

.styled-tables table caption {
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: left;
}

.styled-tables table th {
  text-align: left;
}

.styled-tables table > thead > tr > th,
.styled-tables table > tbody > tr > th,
.styled-tables table > tfoot > tr > th,
.styled-tables table > thead > tr > td,
.styled-tables table > tbody > tr > td,
.styled-tables table > tfoot > tr > td {
  padding: 8px;
  line-height: 18px;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.styled-tables table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.styled-tables table > caption + thead > tr:first-child > th,
.styled-tables table > colgroup + thead > tr:first-child > th,
.styled-tables table > thead:first-child > tr:first-child > th,
.styled-tables table > caption + thead > tr:first-child > td,
.styled-tables table > colgroup + thead > tr:first-child > td,
.styled-tables table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.styled-tables table > tbody + tbody {
  border-top: 2px solid #ddd;
}

.styled-tables table table {
  background-color: #fff;
}

/******** Altre personalizzazioni ********/

p {
  font-size: 19px;
}

.subtitle {
  font-size: 26px;
}

.quote {
  font-weight: 300;
  font-size: 37px;
}

input[type="button"],
button {
  font-weight: 300;
  /*font-size: 19px;*/
  text-transform: uppercase;
}

input:focus,
button:focus,
button:active {
  outline: none;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 19px;
  }

  .subtitle {
    font-size: 19px;
  }

  input[type="button"],
  button {
    font-size: 19px;
  }
}

.header {
  position: fixed;
  /*position: relative;*/
  width: 100%;
  z-index: 1001;
  top: 0;
  background: #fff;
}

.header .desktop {
  background: #fff;
}

.header .desktop .promotional-highlight {
  height: 40px;
  border-bottom: 1px solid #d9272e;
  border-top: 1px solid #d9272e;
}

.header .desktop .promotional-highlight a {
  color: #d9272e;
  text-align: center;
  font-size: 12px;
  line-height: 38px;
  display: block;
}

.header .desktop .promotional-highlight a img {
  margin-left: 6px;
  vertical-align: sub;
}

.header .desktop .main-menu {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid #d1d1d3;
  border-bottom: 1px solid #d1d1d3;
  height: 60px;
  /* Popover login */
}

.header .desktop .main-menu .ico-logo {
  margin-top: 10px;
  margin-right: 49px;
  float: left;
}

.header .desktop .main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.header .desktop .main-menu ul:before,
.header .desktop .main-menu ul:after {
  content: " ";
  display: table;
}

.header .desktop .main-menu ul:after {
  clear: both;
}

.header .desktop .main-menu ul li {
  float: left;
  margin-right: 14px;
}

.header .desktop .main-menu ul li a {
  font-size: 18px;
  line-height: 25px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
  color: #65656a;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 4px solid #fff;
  border-top: 4px solid #fff;
  margin-top: 13px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header .desktop .main-menu ul li a.active {
  color: #d9272e;
  border-bottom-color: #d9272e;
  cursor: pointer;
}

.header .desktop .main-menu ul li a:hover {
  color: #d9272e;
}

.header .desktop .main-menu .btn-locator,
.header .desktop .main-menu .btn-login {
  line-height: 60px;
}

.header .desktop .main-menu .btn-locator i,
.header .desktop .main-menu .btn-login i {
  vertical-align: middle;
}

.header .desktop .main-menu .btn-locator span,
.header .desktop .main-menu .btn-login span {
  font-size: 13px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 500;
  margin-right: 10px;
  line-height: 25px;
  display: inline-block;
}

.header .desktop .main-menu .btn-locator:hover span,
.header .desktop .main-menu .btn-login:hover span {
  color: #d9272e;
}

.header .desktop .main-menu .btn-locator .ico-place-red {
  display: none;
}

.header .desktop .main-menu .btn-locator:hover .ico-place-red {
  display: inline-block;
}

.header .desktop .main-menu .btn-locator:hover .ico-place {
  display: none;
}

.header .desktop .main-menu .btn-login--wrapper {
  position: relative;
  display: inline-block;
}

.header .desktop .main-menu .btn-login--wrapper .popover-login {
  right: 12px;
}

.header .desktop .main-menu .btn-login {
  margin-right: 12px;
}

.header .desktop .main-menu .btn-login .ico-user-profile-red {
  display: none;
}

.header .desktop .main-menu .btn-login span {
  border-left: 1px solid #d0d1d3;
  padding-left: 11px;
  margin-left: 12px;
  padding-right: 9px;
  margin-right: 0;
}

.header .desktop .main-menu .btn-login:hover .ico-user-profile-red {
  display: inline-block;
}

.header .desktop .main-menu .btn-login:hover .ico-user-profile {
  display: none;
}

.header .desktop .main-menu .popover-login {
  width: 185px;
  height: 114px;
  background-color: #db2326;
  padding: 20px 35px;
  position: absolute;
  right: 10px;
  z-index: 99;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.45s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.45s ease;
}

.header .desktop .main-menu .popover-login::after {
  content: '';
  width: 0px;
  height: 0px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #d9272e;
  position: absolute;
  top: -5px;
  right: 10px;
}

.header .desktop .main-menu .popover-login.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.header .desktop .main-menu .popover-login .btn-login-action {
  width: 100%;
  height: 22px;
  text-align: center;
  display: block;
  border: 1px solid #fff;
  margin-bottom: 15px;
  color: #fff;
  font-size: 11px;
  line-height: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.header .desktop .main-menu .popover-login .btn-login-action.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.header .desktop .main-menu .popover-login .btn-login-action.Extrabold {
  font-weight: 800;
}

.header .desktop .main-menu .popover-login .btn-login-action.Bold {
  font-weight: 700;
}

.header .desktop .main-menu .popover-login .btn-login-action.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.header .desktop .main-menu .popover-login .btn-login-action.Italic {
  font-style: italic;
  font-weight: 400;
}

.header .desktop .main-menu .popover-login .btn-login-action.Regular {
  font-weight: 400;
}

.header .desktop .main-menu .popover-login .btn-login-action.Light {
  font-weight: 300;
}

.header .desktop .main-menu .popover-login .btn-login-action:hover {
  background-color: #fff;
  color: #65656a;
}

.header .desktop .main-menu .popover-login .btn-subscribe-action {
  width: 100%;
  height: 22px;
  text-align: center;
  display: block;
  border: 1px solid #fff;
  background: #fff;
  color: #65656a;
  font-size: 11px;
  line-height: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.header .desktop .main-menu .popover-login .btn-subscribe-action.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.header .desktop .main-menu .popover-login .btn-subscribe-action.Extrabold {
  font-weight: 800;
}

.header .desktop .main-menu .popover-login .btn-subscribe-action.Bold {
  font-weight: 700;
}

.header .desktop .main-menu .popover-login .btn-subscribe-action.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.header .desktop .main-menu .popover-login .btn-subscribe-action.Italic {
  font-style: italic;
  font-weight: 400;
}

.header .desktop .main-menu .popover-login .btn-subscribe-action.Regular {
  font-weight: 400;
}

.header .desktop .main-menu .popover-login .btn-subscribe-action.Light {
  font-weight: 300;
}

.header .desktop .main-menu .popover-login .btn-subscribe-action:hover {
  background-color: transparent;
  color: #fff;
}

.header .desktop .main-menu .btn-locator {
  margin-left: 19px;
}

.header .desktop .main-menu .search-box {
  width: 250px;
  height: 26px;
  border-bottom: 1px solid #d0d1d3;
  display: inline-block;
  position: relative;
  top: -1px;
}

.header .desktop .main-menu .search-box input[type="text"] {
  border: none;
  width: 218px;
  height: 24px;
  padding: 0 8px 0 10px;
  position: relative;
  top: -4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 11px;
}

.header .desktop .main-menu .search-box input[type="text"].Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.header .desktop .main-menu .search-box input[type="text"].Extrabold {
  font-weight: 800;
}

.header .desktop .main-menu .search-box input[type="text"].Bold {
  font-weight: 700;
}

.header .desktop .main-menu .search-box input[type="text"].Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.header .desktop .main-menu .search-box input[type="text"].Italic {
  font-style: italic;
  font-weight: 400;
}

.header .desktop .main-menu .search-box input[type="text"].Regular {
  font-weight: 400;
}

.header .desktop .main-menu .search-box input[type="text"].Light {
  font-weight: 300;
}

.header .desktop .main-menu .search-box a {
  width: 24px;
  display: inline-block;
}

.header .desktop .sub-menu {
  height: 41px;
  background-color: #939497;
  /* Notifications Popover */
}

.header .desktop .sub-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.header .desktop .sub-menu ul:before,
.header .desktop .sub-menu ul:after {
  content: " ";
  display: table;
}

.header .desktop .sub-menu ul:after {
  clear: both;
}

.header .desktop .sub-menu ul li {
  float: left;
  margin-right: 25px;
}

.header .desktop .sub-menu ul li a {
  font-size: 13px;
  line-height: 41px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header .desktop .sub-menu ul li a.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.header .desktop .sub-menu ul li a.Extrabold {
  font-weight: 800;
}

.header .desktop .sub-menu ul li a.Bold {
  font-weight: 700;
}

.header .desktop .sub-menu ul li a.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.header .desktop .sub-menu ul li a.Italic {
  font-style: italic;
  font-weight: 400;
}

.header .desktop .sub-menu ul li a.Regular {
  font-weight: 400;
}

.header .desktop .sub-menu ul li a.Light {
  font-weight: 300;
}

.header .desktop .sub-menu ul li a.active {
  color: #65656a !important;
  cursor: default;
}

.header .desktop .sub-menu ul li a:hover {
  color: #d9272e;
}

.header .desktop .sub-menu ul li a.open {
  color: #d9272e !important;
}

.header .desktop .sub-menu .btn-notifications {
  position: relative;
  line-height: 41px;
  display: inline-block;
  padding-right: 14px;
  padding-left: 14px;
}

.header .desktop .sub-menu .btn-notifications .counter {
  position: absolute;
  top: 3px;
  right: 9px;
  background-color: #d9272e;
  width: 18px;
  height: 18px;
  filter: none;
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  border-radius: 18px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
}

.header .desktop .sub-menu .btn-notifications .ico-notifiche,
.header .desktop .sub-menu .btn-notifications .ico-notifiche-gray {
  vertical-align: middle;
}

.header .desktop .sub-menu .btn-notifications .ico-notifiche-gray {
  display: none;
}

.header .desktop .sub-menu .btn-notifications.active,
.header .desktop .sub-menu .btn-notifications:hover {
  background-color: #fff;
}

.header .desktop .sub-menu .btn-notifications.active .ico-notifiche-gray,
.header .desktop .sub-menu .btn-notifications:hover .ico-notifiche-gray {
  display: inline-block;
}

.header .desktop .sub-menu .btn-notifications.active .ico-notifiche,
.header .desktop .sub-menu .btn-notifications:hover .ico-notifiche {
  display: none;
}

.header .desktop .sub-menu .notifications-popover {
  position: absolute;
  background-color: #ffffff;
  width: 430px;
  right: 78px;
  display: none;
  box-shadow: 0 31px 49px -8px rgba(0, 0, 0, 0.7);
}

.header .desktop .sub-menu .notifications-popover .notification {
  padding: 28px 22px 28px 28px;
  position: relative;
  border-bottom: 1px solid #ebebeb;
}

.header .desktop .sub-menu .notifications-popover .notification:last-child {
  border-bottom: none;
}

.header .desktop .sub-menu .notifications-popover .notification .ico-doc-gray {
  position: absolute;
  left: 28px;
  top: 50%;
  margin-top: -16px;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text {
  padding: 0 30px 0 52px;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-date,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-title,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-type {
  display: block;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Extrabold-Italic,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Extrabold-Italic,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Extrabold,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Extrabold,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Extrabold {
  font-weight: 800;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Bold,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Bold,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Bold {
  font-weight: 700;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Semibold-Italic,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Semibold-Italic,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Italic,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Italic,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Italic {
  font-style: italic;
  font-weight: 400;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Regular,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Regular,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Regular {
  font-weight: 400;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Light,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Light,
.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Light {
  font-weight: 300;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-date {
  color: #d9272e;
  line-height: 12px;
  margin-bottom: 6px;
  font-weight: bold;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-title {
  color: #65656a;
  font-weight: bold;
  line-height: 15px;
  letter-spacing: 0.035em;
  margin-bottom: 3px;
}

.header .desktop .sub-menu .notifications-popover .notification .notifications-text .lbl-notif-type {
  color: #65656a;
}

.header .desktop .sub-menu .notifications-popover .notification .ico-arrow-right-gray {
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -8px;
}

.header .desktop .sub-menu .btn-logout .ico-esci {
  vertical-align: middle;
}

.header .desktop .sub-menu .btn-logout span {
  color: #fff;
  font-size: 13px;
  line-height: 26px;
  margin-right: 9px;
  text-transform: uppercase;
  display: inline-block;
}

.header .desktop .third-level-menu-container {
  position: absolute;
  top: 161px;
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.175);
}

.header .desktop .third-level-menu-container .third-level-menu {
  display: none;
  background: #fff;
  padding: 25px 0;
}

.header .desktop .third-level-menu-container .third-level-menu .container > div {
  border-right: 1px solid #e0e0e1;
  padding: 0 10px;
}

.header .desktop .third-level-menu-container .third-level-menu .container > div:first-child {
  padding-left: 0;
}

.header .desktop .third-level-menu-container .third-level-menu .container > div:last-child {
  border-right: none;
  padding-right: 0;
}

.header .desktop .third-level-menu-container .third-level-menu .container > div.caso-img {
  padding: 0 10px !important;
}

.header .desktop .third-level-menu-container .third-level-menu .thrid-menu-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 18px;
  font-style: italic;
  color: #b1b1b3;
  text-transform: none;
  letter-spacing: -0.04em;
}

.header .desktop .third-level-menu-container .third-level-menu .thrid-menu-title.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.header .desktop .third-level-menu-container .third-level-menu .thrid-menu-title.Extrabold {
  font-weight: 800;
}

.header .desktop .third-level-menu-container .third-level-menu .thrid-menu-title.Bold {
  font-weight: 700;
}

.header .desktop .third-level-menu-container .third-level-menu .thrid-menu-title.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.header .desktop .third-level-menu-container .third-level-menu .thrid-menu-title.Italic {
  font-style: italic;
  font-weight: 400;
}

.header .desktop .third-level-menu-container .third-level-menu .thrid-menu-title.Regular {
  font-weight: 400;
}

.header .desktop .third-level-menu-container .third-level-menu .thrid-menu-title.Light {
  font-weight: 300;
}

.header .desktop .third-level-menu-container .third-level-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .desktop .third-level-menu-container .third-level-menu ul li a {
  /*font-size: 13px;
                            line-height: 25px;*/
  font-size: 14px;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  /*color: #b1b1b3;*/
  color: #65656a;
}

.header .desktop .third-level-menu-container .third-level-menu ul li a:hover {
  color: #d9272e;
}

.header .desktop .third-level-menu-container .switch-styles .thrid-menu-title {
  text-transform: uppercase;
  font-style: normal;
}

.header .desktop .third-level-menu-container .switch-styles li a {
  text-transform: lowercase !important;
  font-style: italic;
}

.header .desktop .third-level-menu-container .switch-styles li::first-letter {
  text-transform: uppercase !important;
}

.header .mobile {
  width: 100%;
}

.header .mobile .menu-mobile-opener {
  border-bottom: 1px solid #d1d1d3;
  position: relative;
  background: #fff;
  height: 91px;
  /* Main header */
}

.header .mobile .menu-mobile-opener .promotional-highlight {
  background-color: #fff;
  border-top: 1px solid #eb1a21;
  border-bottom: 1px solid #eb1a21;
  height: 40px;
}

.header .mobile .menu-mobile-opener .promotional-highlight a {
  color: #eb1a21;
  text-align: center;
  display: block;
  line-height: 40px;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
}

.header .mobile .menu-mobile-opener .promotional-highlight a.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.header .mobile .menu-mobile-opener .promotional-highlight a.Extrabold {
  font-weight: 800;
}

.header .mobile .menu-mobile-opener .promotional-highlight a.Bold {
  font-weight: 700;
}

.header .mobile .menu-mobile-opener .promotional-highlight a.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.header .mobile .menu-mobile-opener .promotional-highlight a.Italic {
  font-style: italic;
  font-weight: 400;
}

.header .mobile .menu-mobile-opener .promotional-highlight a.Regular {
  font-weight: 400;
}

.header .mobile .menu-mobile-opener .promotional-highlight a.Light {
  font-weight: 300;
}

.header .mobile .menu-mobile-opener .promotional-highlight a img {
  vertical-align: sub;
  margin-left: 10px;
}

.header .mobile .menu-mobile-opener .mobile-main-header {
  height: 50px;
  /*.ico-logo-small {
                    position: absolute;
                    top: 8px;
                    left: 50%;
                    margin-left: -16px;
                }*/
}

.header .mobile .menu-mobile-opener .mobile-main-header .row,
.header .mobile .menu-mobile-opener .mobile-main-header .row > div {
  height: 50px;
}

.header .mobile .menu-mobile-opener .mobile-main-header .ico-logo-small-link {
  position: absolute;
  top: 8px;
  left: 50%;
  margin-left: -16px;
  display: inline-block;
}

.header .mobile .menu-mobile-opener .mobile-main-header .btn-menu-opener {
  height: 50px;
  display: inline-block;
  width: 14px;
  padding-right: 17px;
  margin-right: 15px;
}

.header .mobile .menu-mobile-opener .mobile-main-header .btn-menu-opener:after {
  content: '';
  width: 1px;
  height: 20px;
  background: #c1c1c3;
  display: inline-block;
  position: relative;
  right: -31px;
  top: 15px;
}

.header .mobile .menu-mobile-opener .mobile-main-header .btn-menu-opener .ico-burger {
  position: absolute;
  top: 50%;
  margin-top: -5px;
}

.header .mobile .menu-mobile-opener .mobile-main-header .btn-menu-opener .ico-close {
  display: none;
}

.header .mobile .menu-mobile-opener .mobile-main-header .btn-menu-opener.open .ico-close {
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -7px;
}

.header .mobile .menu-mobile-opener .mobile-main-header .btn-menu-opener.open .ico-burger {
  display: none;
}

.header .mobile .menu-mobile-opener .mobile-main-header .btn-search {
  height: 50px;
  display: inline-block;
  position: relative;
  top: -5px;
  left: 11px;
}

.header .mobile .menu-mobile-opener .mobile-main-header .btn-search .ico-search {
  position: relative;
  top: 17px;
}

.header .mobile .menu-mobile-content {
  padding-top: 20px;
  /*padding-bottom: 36px;*/
  padding-bottom: 10px;
  display: none;
  position: absolute;
  top: 91px;
  left: 0;
  z-index: 99;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  background: #fff;
}

.header .mobile .menu-mobile-content .mobile-menu-lev {
  padding: 10px;
  float: left;
  height: 100%;
}

.header .mobile .menu-mobile-content .mobile-menu-lev1 {
  -webkit-transition: margin-left 1s;
  -moz-transition: margin-left 1s;
  -o-transition: margin-left 1s;
  transition: margin-left 1s;
}

.header .mobile .menu-mobile-content .mobile-menu-lev1 li.active {
  border-top: 1px solid #d9272e;
  border-bottom-color: #d9272e;
  margin-top: -1px;
}

.header .mobile .menu-mobile-content .mobile-menu-lev1 a {
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.header .mobile .menu-mobile-content .mobile-menu-lev1.scroll-left {
  margin-left: -50%;
}

.header .mobile .menu-mobile-content .mobile-menu-lev2 li.active {
  border-color: #d9272e;
}

.header .mobile .menu-mobile-content .mobile-menu-lev2 li.active a {
  color: #d9272e;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 {
  position: relative;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .btn-back {
  color: #a2a2a2;
  font-family: 'Open Sans', sans-serif;
  /*font-weight: 300;*/
  /*font-size: 10px;*/
  font-size: 13px;
  line-height: 44px;
  text-transform: uppercase;
  text-indent: 14px;
  display: block;
  border-bottom: 1px solid #c1c1c3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 2;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .btn-back.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .btn-back.Extrabold {
  font-weight: 800;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .btn-back.Bold {
  font-weight: 700;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .btn-back.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .btn-back.Italic {
  font-style: italic;
  font-weight: 400;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .btn-back.Regular {
  font-weight: 400;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .btn-back.Light {
  font-weight: 300;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .scroll-container {
  /*max-height: 328px;*/
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 46px;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .sub-menu {
  display: none;
}

@media screen and (max-width: 991px) {
  .header .mobile .menu-mobile-content .mobile-menu-lev3 .sub-menu > li > a > span {
    display: none;
  }
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .sub-menu .has-sub-menu {
  position: relative;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .sub-menu .has-sub-menu:after {
  content: '>';
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .sub-menu .has-list:after {
  display: none;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .sub-menu .has-list ul {
  padding-left: 15px;
  list-style-type: none;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .sub-menu .has-list ul li a {
  text-transform: lowercase;
  font-style: italic;
}

.header .mobile .menu-mobile-content .mobile-menu-lev3 .sub-menu .has-list ul li a:first-letter {
  text-transform: uppercase;
}

.header .mobile .menu-mobile-content .vertical-separator {
  border-right: 1px solid #d9272e;
}

.header .mobile .menu-mobile-content .main-menu,
.header .mobile .menu-mobile-content .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header .mobile .menu-mobile-content .main-menu li,
.header .mobile .menu-mobile-content .sub-menu li {
  border-bottom: 1px solid #c1c1c3;
}

.header .mobile .menu-mobile-content .main-menu li:last-child,
.header .mobile .menu-mobile-content .sub-menu li:last-child {
  border-bottom: none !important;
}

.header .mobile .menu-mobile-content .main-menu .has-sub-menu ul li,
.header .mobile .menu-mobile-content .sub-menu .has-sub-menu ul li {
  border-bottom: none !important;
}

.header .mobile .menu-mobile-content .main-menu {
  /*margin-bottom: 85px;*/
  margin-bottom: 120px;
}

.header .mobile .menu-mobile-content .main-menu li a {
  /*.museoSans500();*/
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 43px;
  margin: 0 14px;
  text-transform: uppercase;
}

.header .mobile .menu-mobile-content .main-menu li a.active {
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: #d9272e;
  border-bottom-color: #d9272e;
}

.header .mobile .menu-mobile-content .sub-menu li {
  /*margin: 0 10px 0 15px;*/
  padding: 10px 0;
}

.header .mobile .menu-mobile-content .sub-menu li:first-child {
  border-top: none !important;
}

.header .mobile .menu-mobile-content .sub-menu li.active {
  border-top: 1px solid #d9272e;
  border-bottom-color: #d9272e;
  margin-top: -1px;
}

.header .mobile .menu-mobile-content .sub-menu li a {
  margin: 0 4.5px 0 14px;
  /*font-size: 9px;*/
  font-size: 13px;
  letter-spacing: 0;
  /*letter-spacing: 0.25em;*/
  color: #636660;
  line-height: 20px;
  text-transform: uppercase;
  display: block;
  position: relative;
  padding-right: 10px;
}

.header .mobile .menu-mobile-content .sub-menu li a span {
  font-size: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
}

.header .mobile .menu-mobile-content .service-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  /* Login box */
}

.header .mobile .menu-mobile-content .service-menu li {
  padding-left: 14px;
  padding-bottom: 17px;
}

.header .mobile .menu-mobile-content .service-menu li a {
  display: inline-block;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  color: #65656a;
  line-height: 15px;
  text-transform: uppercase;
}

.header .mobile .menu-mobile-content .service-menu li a i {
  margin-right: 12px;
  vertical-align: middle;
}

.header .mobile .menu-mobile-content .service-menu li a.btn-locator i {
  margin-left: 2px;
}

.header .mobile .menu-mobile-content .service-menu .login-box-mobile {
  background-color: #f0f0f2;
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: 7px;
  padding: 9px 5px;
  display: none;
}

.header .mobile .menu-mobile-content .service-menu .login-box-mobile:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #f0f0f2;
  position: absolute;
  top: -4px;
  left: 18px;
}

.header .mobile .menu-mobile-content .service-menu .login-box-mobile .btn-login-mobile {
  display: block;
  height: 26px;
  text-align: center;
  border: 1px solid #db2326;
  background-color: #db2326;
  color: #fff;
  line-height: 24px;
  margin-bottom: 9px;
}

.header .mobile .menu-mobile-content .service-menu .login-box-mobile .btn-login-mobile:hover {
  background-color: transparent;
  color: #db2326;
}

.header .mobile .menu-mobile-content .service-menu .login-box-mobile .btn-subscribe-mobile {
  display: block;
  height: 26px;
  text-align: center;
  border: 1px solid #db2326;
  background-color: transparent;
  color: #db2326;
  line-height: 24px;
}

.header .mobile .menu-mobile-content .service-menu .login-box-mobile .btn-subscribe-mobile:hover {
  background-color: #db2326;
  color: #fff;
}

.header .mobile .menu-mobile-content .service-menu.login-open {
  top: -68px;
}

.header .mobile .menu-mobile-content .service-menu.login-open .login-box-mobile {
  height: 80px;
  display: block;
}

.header .mobile .menu-mobile-content .service-menu.login-open li:first-child {
  height: 126px;
}

.header .mobile .search-mobile-content {
  background-color: #f0f0f0;
  padding-top: 7px;
  padding-bottom: 7px;
  display: none;
  position: fixed;
  width: 100%;
  top: 91px;
  left: 0;
  z-index: 99;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
}

.header .mobile .search-mobile-content .search-wrapper {
  background-color: #c1c1c3;
  padding: 0 30px;
  height: 30px;
  position: relative;
}

.header .mobile .search-mobile-content .search-wrapper .ico-search {
  position: absolute;
  top: 7px;
  left: 5px;
}

.header .mobile .search-mobile-content .search-wrapper .ico-close {
  position: absolute;
  top: 0;
  right: 0;
}

.header .mobile .search-mobile-content .search-wrapper input[type="text"] {
  border: none;
  height: 30px;
  position: relative;
  top: 0;
  left: 7px;
  width: 90%;
  background: transparent;
  color: #fff;
  font-style: italic;
  font-size: 13px;
}

.header .mobile .search-mobile-content .search-wrapper .placeholder-white::-webkit-input-placeholder {
  color: #fff;
}

.header .mobile .search-mobile-content .search-wrapper .placeholder-white:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.header .mobile .search-mobile-content .search-wrapper .placeholder-white::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.header .mobile .search-mobile-content .search-wrapper .placeholder-white:-ms-input-placeholder {
  color: #fff;
}

.header.promotional-highlight-hidden .desktop .promotional-highlight {
  display: none !important;
}

.header.promotional-highlight-hidden .desktop .third-level-menu-container {
  /*top: 111px !important;*/
  /* Con l'header NON sticky */
  top: 121px !important;
  /* Con header sticky */
}

.header.promotional-highlight-hidden .mobile .menu-mobile-opener {
  height: 50px;
}

.header.promotional-highlight-hidden .mobile .menu-mobile-opener .promotional-highlight {
  display: none !important;
}

.header.promotional-highlight-hidden .mobile .menu-mobile-content {
  top: 50px;
}

.header.promotional-highlight-hidden .mobile .search-mobile-content {
  top: 50px;
}

.header-privata h1 {
  font-size: 18px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
  display: inline-block;
  line-height: 58px;
}

.header-privata .desktop .main-menu {
  /* Notifications Popover */
}

.header-privata .desktop .main-menu .btn-login span {
  border-left: none !important;
  margin: 0;
}

.header-privata .desktop .main-menu .btn-login .img-profile-pic {
  width: 30px;
  height: 30px;
  filter: none;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px;
}

.header-privata .desktop .main-menu .vertical-separator {
  width: 1px;
  height: 28px;
  background-color: #dadada;
  display: inline-block;
  vertical-align: middle;
}

.header-privata .desktop .main-menu .popover-login {
  right: 72px;
  margin: 0;
  padding: 0;
  height: auto !important;
}

.header-privata .desktop .main-menu .popover-login a {
  line-height: 45px;
  color: #fff;
  display: block;
  padding: 0 22px;
  border-bottom: 1px solid #e97b7d;
}

.header-privata .desktop .main-menu .popover-login a:last-child {
  border-bottom: 0;
}

.header-privata .desktop .main-menu .popover-login a:hover {
  background: #b61919;
}

.header-privata .desktop .main-menu .btn-notifications {
  position: relative;
  line-height: 41px;
  display: inline-block;
  padding-right: 14px;
  padding-left: 14px;
}

.header-privata .desktop .main-menu .btn-notifications .counter {
  position: absolute;
  top: 3px;
  right: 9px;
  background-color: #d9272e;
  width: 18px;
  height: 18px;
  filter: none;
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  border-radius: 18px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
}

.header-privata .desktop .main-menu .btn-notifications .ico-notifiche,
.header-privata .desktop .main-menu .btn-notifications .ico-notifiche-gray {
  vertical-align: middle;
}

.header-privata .desktop .main-menu .btn-notifications .ico-notifiche-gray {
  display: none;
}

.header-privata .desktop .main-menu .btn-notifications.active,
.header-privata .desktop .main-menu .btn-notifications:hover {
  background-color: #fff;
}

.header-privata .desktop .main-menu .btn-notifications.active .ico-notifiche-gray,
.header-privata .desktop .main-menu .btn-notifications:hover .ico-notifiche-gray {
  display: inline-block;
}

.header-privata .desktop .main-menu .btn-notifications.active .ico-notifiche,
.header-privata .desktop .main-menu .btn-notifications:hover .ico-notifiche {
  display: none;
}

.header-privata .desktop .main-menu .notifications-popover {
  position: absolute;
  background-color: #ffffff;
  width: 430px;
  right: 0;
  display: none;
  box-shadow: 0 31px 49px -8px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.header-privata .desktop .main-menu .notifications-popover .display-all {
  background: #d9272e;
  padding: 0 25px 0 15px;
}

.header-privata .desktop .main-menu .notifications-popover .display-all a {
  font-size: 12px;
  font-weight: 500;
  line-height: 35px;
  color: #fff;
  display: block;
}

.header-privata .desktop .main-menu .notifications-popover .display-all .fa {
  line-height: 35px;
}

.header-privata .desktop .main-menu .notifications-popover .notification {
  padding: 24px 22px 24px 28px;
  position: relative;
  border-bottom: 1px solid #ebebeb;
}

.header-privata .desktop .main-menu .notifications-popover .notification:last-child {
  border-bottom: none;
}

.header-privata .desktop .main-menu .notifications-popover .notification .ico-notif-type {
  position: absolute;
  left: 28px;
  top: 50%;
  margin-top: -16px;
}

.header-privata .desktop .main-menu .notifications-popover .notification .ico-notif-type.ico-corso {
  margin-left: -5px;
}

.header-privata .desktop .main-menu .notifications-popover .notification .ico-notif-type.ico-news {
  margin-left: -5px;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text {
  padding: 0 30px 0 60px;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-date,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-title,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-type {
  display: block;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Extrabold-Italic,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Extrabold-Italic,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Extrabold,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Extrabold,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Extrabold {
  font-weight: 800;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Bold,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Bold,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Bold {
  font-weight: 700;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Semibold-Italic,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Semibold-Italic,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Italic,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Italic,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Italic {
  font-style: italic;
  font-weight: 400;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Regular,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Regular,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Regular {
  font-weight: 400;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-date.Light,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-title.Light,
.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-type.Light {
  font-weight: 300;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-category {
  font-size: 12px;
  color: #65656a;
  font-weight: bold;
  line-height: 18px;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-date {
  color: #d9272e;
  line-height: 12px;
  margin-bottom: 6px;
  font-weight: bold;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-title {
  color: #65656a;
  font-weight: bold;
  line-height: 15px;
  letter-spacing: 0.035em;
  margin-bottom: 3px;
}

.header-privata .desktop .main-menu .notifications-popover .notification .notifications-text .lbl-notif-type {
  color: #65656a;
}

.header-privata .desktop .main-menu .notifications-popover .notification .ico-arrow-right-gray,
.header-privata .desktop .main-menu .notifications-popover .notification .ico-arrow-right-gray-real {
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -8px;
}

.header-privata .desktop .sub-menu .bar-chooser {
  height: 41px;
  position: relative;
  top: -17px;
  margin-right: 14px;
  width: auto;
  min-width: 240px;
}

.header-privata .desktop .sub-menu .bar-chooser select.bar-chooser {
  top: 0;
  left: 0;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-toggle {
  height: 100%;
  width: auto;
  border-radius: 0;
  background: #65656a;
  border: none;
  /*&:before {
                        content: '';
                        display: inline-block;
                        width: 19px;
                        height: 16px;
                        background-position: -702px -110px;
                        background-image: url(../../images/sprite_privata/sprite.png);
                        float: left;
                    }*/
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-toggle span {
  font-size: 13px;
  color: #f9f9f9;
  float: left !important;
  display: inline-block;
  width: auto;
  margin-left: 8px;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-toggle .filter-option {
  margin-left: 0;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-toggle .filter-option .ico2 {
  margin-right: 10px;
  vertical-align: sub;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-toggle .caret {
  border: none;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-toggle .caret:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  content: "\f107";
  font-size: 12px;
  position: relative;
  top: -8px;
  right: 2px;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-toggle:focus,
.header-privata .desktop .sub-menu .bar-chooser .dropdown-toggle:active {
  outline: none !important;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-menu {
  background: #65656a;
  margin-top: 0;
  border-radius: 0;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-menu .inner {
  background: transparent;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-menu .inner li {
  width: 100%;
  margin-right: 0;
  background: transparent;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-menu .inner li a {
  padding: 0 11px;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-menu .inner li a .ico2 {
  margin-right: 10px;
  vertical-align: sub;
}

.header-privata .desktop .sub-menu .bar-chooser .dropdown-menu .inner li a:hover,
.header-privata .desktop .sub-menu .bar-chooser .dropdown-menu .inner li a:active,
.header-privata .desktop .sub-menu .bar-chooser .dropdown-menu .inner li a:focus {
  background: transparent;
}

.header-privata .desktop .sub-menu .bar-chooser-label {
  width: auto;
  max-width: 270px;
  padding-right: 15px;
  height: 41px;
  background: #65656a;
  display: block;
  float: left;
  position: relative;
  top: 0;
  margin-right: 14px;
  color: #fff;
  line-height: 41px;
  padding-left: 14px;
  text-transform: uppercase;
  font-size: 13px;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.header-privata .desktop .sub-menu .bar-chooser-label .ico2 {
  vertical-align: sub;
  margin-right: 8px;
}

.header-privata .mobile .menu-mobile-content {
  height: auto !important;
}

.header-privata .mobile .menu-mobile-content .main-menu {
  margin-bottom: 60px;
}

.header-privata .mobile .menu-mobile-content .main-menu li a {
  font-size: 13px;
  line-height: 20px;
  text-align: left;
  text-indent: 0;
  letter-spacing: 1px;
  margin: 0;
  padding: 7px 14px;
  display: inline-block;
}

.header-privata .mobile .menu-mobile-content .service-menu .img-profile-pic {
  width: 30px;
  height: 30px;
  filter: none;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 30px;
  margin-right: 6px;
  margin-left: -6px;
  margin-bottom: 2px;
}

.header-privata .mobile .menu-mobile-content .service-menu li {
  text-transform: uppercase;
  border-bottom: 1px solid #c1c1c3;
  padding-bottom: 0;
  line-height: 41px;
  font-size: 11px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
  color: #65656a;
  letter-spacing: 1px;
}

.header-privata .mobile .menu-mobile-content .service-menu li a {
  text-transform: uppercase;
  font-size: 11px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
  color: #65656a;
  letter-spacing: 2px;
}

.header-privata .mobile .menu-mobile-content .service-menu li:last-child {
  border-bottom: none;
}

.header-privata .mobile .mobile-main-header .btn-search {
  display: none !important;
}

.header-privata .mobile .mobile-main-header .btn-notifications {
  position: relative;
  line-height: 41px;
  display: inline-block;
  padding-right: 14px;
  padding-left: 14px;
  margin-top: 3px;
  margin-right: -6px;
}

.header-privata .mobile .mobile-main-header .btn-notifications .counter {
  position: absolute;
  top: 3px;
  right: 9px;
  background-color: #d9272e;
  width: 18px;
  height: 18px;
  filter: none;
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  border-radius: 18px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
}

.header-privata .mobile .mobile-main-header .btn-notifications .ico-notifiche-gray {
  vertical-align: middle;
  zoom: 0.8;
  -moz-transform: scale(0.8);
  transform: scale(0.8);
}

.header-privata .mobile .mobile-main-header .btn-notifications.active,
.header-privata .mobile .mobile-main-header .btn-notifications:hover {
  background-color: #fff;
}

.header-privata .mobile .notifications-mobile-content {
  position: absolute;
  top: 50px;
  background: #fff;
  z-index: 2;
  left: 0;
  width: 100%;
  height: auto;
  display: none;
  -webkit-box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.4);
}

.header-privata .mobile .notifications-mobile-content .container {
  padding: 0;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif {
  position: relative;
  padding: 10px 15px;
  border-bottom: 1px solid #d1d1d3;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif a {
  display: block;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif:last-child {
  border-bottom: none;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .ico-notif-type {
  position: absolute;
  top: 10px;
  left: 15px;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text {
  padding-left: 57px;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-date,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-title,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-type {
  display: block;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-date.Extrabold-Italic,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-title.Extrabold-Italic,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-type.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-date.Extrabold,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-title.Extrabold,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-type.Extrabold {
  font-weight: 800;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-date.Bold,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-title.Bold,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-type.Bold {
  font-weight: 700;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-date.Semibold-Italic,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-title.Semibold-Italic,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-type.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-date.Italic,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-title.Italic,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-type.Italic {
  font-style: italic;
  font-weight: 400;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-date.Regular,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-title.Regular,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-type.Regular {
  font-weight: 400;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-date.Light,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-title.Light,
.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-type.Light {
  font-weight: 300;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-category {
  font-size: 12px;
  color: #65656a;
  font-weight: bold;
  line-height: 18px;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-date {
  color: #d9272e;
  line-height: 12px;
  margin-bottom: 6px;
  font-weight: bold;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-title {
  color: #65656a;
  font-weight: bold;
  line-height: 15px;
  letter-spacing: 0.035em;
  margin-bottom: 3px;
}

.header-privata .mobile .notifications-mobile-content .mobile-notif .notifications-text .lbl-notif-type {
  color: #65656a;
}

.header-privata .mobile .notifications-mobile-content .btnViewAllNotif {
  background: #d9272e;
  width: 100%;
  display: block;
  color: #fff;
  padding: 7px 15px;
}

.footer .part1 {
  background-color: #f7f7f8;
  min-height: 267px;
  padding-top: 37px;
}

.footer .part1 .col-md-9 {
  width: 80%;
}

.footer .part1 .col-md-3 {
  width: 20%;
}

.footer .part1 .custom-footer-col {
  width: 25%;
  float: left;
}

.footer .part1 h4 {
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  color: #65656a;
}

.footer .part1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 18px;
  margin-bottom: 38px;
}

.footer .part1 ul li a {
  font-size: 13px;
  line-height: 32px;
  color: #c1c1c3;
  margin-bottom: 10px;
}

.footer .part1 ul li a:hover {
  color: #65656a;
}

.footer .part1 .btn-newsletter {
  background: #d9272e;
  max-width: 226px;
  width: 100%;
  display: block;
  padding: 11px 12px;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 11px;
  float: right;
  margin-right: 15px;
  border: 1px solid #d9272e;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer .part1 .btn-newsletter i {
  vertical-align: middle;
  margin-right: 11px;
}

.footer .part1 .btn-newsletter .ico-mail-red {
  display: none;
}

.footer .part1 .btn-newsletter:hover {
  background: transparent;
  color: #d9272e;
}

.footer .part1 .btn-newsletter:hover .ico-mail-red {
  display: inline-block;
}

.footer .part1 .btn-newsletter:hover .ico-mail {
  display: none;
}

.footer .part1 .btn-greenumber {
  background: #65656a;
  border: 1px solid #65656a;
  max-width: 226px;
  width: 100%;
  display: block;
  padding: 10px 12px;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  float: right;
  margin-right: 15px;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer .part1 .btn-greenumber i {
  vertical-align: middle;
  margin-right: 11px;
  margin-left: 5px;
}

.footer .part1 .btn-greenumber .ico-phone-gray {
  display: none !important;
}

.footer .part1 .btn-greenumber:hover {
  background-color: transparent;
  color: #65656a;
}

.footer .part1 .btn-greenumber:hover .ico-phone-gray {
  display: inline-block !important;
}

.footer .part1 .btn-greenumber:hover .ico-phone {
  display: none !important;
}

.footer .part1 .btn-language-footer {
  border: 1px solid #d9272e;
  max-width: 226px;
  width: 100%;
  display: block;
  padding: 7px 12px;
  color: #d9272e;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 11px;
  float: right;
  margin-right: 15px;
  transition: all 0.5s;
}

.footer .part1 .btn-language-footer i {
  vertical-align: middle;
  margin-right: 11px;
}

.footer .part1 .btn-language-footer .ico-world-white {
  display: none;
}

.footer .part1 .btn-language-footer:hover {
  background-color: #d9272e;
  color: #fff;
}

.footer .part1 .btn-language-footer:hover .ico-world-white {
  display: inline-block;
}

.footer .part1 .btn-language-footer:hover .ico-world-red {
  display: none;
}

.footer .part2 {
  min-height: 88px;
  padding-top: 21px;
}

.footer .part2 .social h5 {
  line-height: 49px;
  margin-right: 24px;
  display: inline-block;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #65656a;
}

.footer .part2 .social a {
  display: inline-block;
  margin-right: 20px;
  color: #65656a;
}

.footer .part2 .social a i {
  vertical-align: middle;
}

.footer .part2 .info .separator-point {
  margin: 0 8px;
}

.footer .part2 .info a {
  font-size: 12px;
  line-height: 24px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
  text-decoration: underline;
}

.footer .part2 .info p {
  font-size: 12px;
  line-height: 24px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .footer .part1 {
    padding: 0;
    min-height: unset;
    background: #fff;
  }

  .footer .part1 .container {
    width: 100%;
    padding: 0;
  }

  .footer .part1 h4 {
    text-align: center;
    cursor: pointer;
    /*line-height: 64px;*/
    border-top: 1px solid #fff;
    font-size: 9px;
    line-height: 43px;
  }

  .footer .part1 ul {
    background-color: #fff;
    display: none;
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .footer .part1 ul li a {
    display: block;
    text-align: center;
    font-size: 9px;
  }

  .footer .part1 .btn-newsletter,
  .footer .part1 .btn-greenumber {
    width: 50%;
    max-width: none;
    float: left;
    margin-bottom: 0;
    height: 41px;
    text-align: center;
    /*margin-top: 25px;*/
    border-top: 6px solid #fff;
    font-size: 9px;
  }

  .footer .part1 .btn-newsletter {
    padding: 12px;
  }

  .footer .part1 .btn-newsletter i {
    position: relative;
    top: -2px;
    margin-right: 10px;
  }

  .footer .part1 .btn-greenumber i {
    position: relative;
    top: -2px;
    margin-right: 10px;
  }

  .footer .part1 .col-xs-12,
  .footer .part1 .custom-footer-col {
    width: 100%;
    float: none;
  }

  .footer .part1 .btn-newsletter,
  .footer .part1 .btn-greenumber {
    width: 50%;
    float: left;
    display: inline-block;
    margin: 0;
    border-top: none;
    height: 25px;
    font-size: 11px;
    font-family: 'Open Sans', sans-serif;
    padding: 0 12px;
    line-height: 25px;
  }

  .footer .part1 .btn-newsletter.Extrabold-Italic,
  .footer .part1 .btn-greenumber.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .footer .part1 .btn-newsletter.Extrabold,
  .footer .part1 .btn-greenumber.Extrabold {
    font-weight: 800;
  }

  .footer .part1 .btn-newsletter.Bold,
  .footer .part1 .btn-greenumber.Bold {
    font-weight: 700;
  }

  .footer .part1 .btn-newsletter.Semibold-Italic,
  .footer .part1 .btn-greenumber.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .footer .part1 .btn-newsletter.Italic,
  .footer .part1 .btn-greenumber.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .footer .part1 .btn-newsletter.Regular,
  .footer .part1 .btn-greenumber.Regular {
    font-weight: 400;
  }

  .footer .part1 .btn-newsletter.Light,
  .footer .part1 .btn-greenumber.Light {
    font-weight: 300;
  }

  .footer .part1 .btn-newsletter i,
  .footer .part1 .btn-greenumber i {
    margin-right: 5px;
  }

  .footer .part1 .col-md-9 {
    margin: 3px 0;
  }

  .footer .part1 .col-md-9 h4 {
    background: #e0e0e1;
    line-height: 32px;
    font-family: "museo-sans", Arial;
    font-style: normal;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #65656a;
  }

  .footer .part1 .col-md-9 ul {
    margin-bottom: 0;
    padding: 10px;
  }

  .footer .part1 .col-md-9 ul li a {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 20px;
    color: #c3c3c6;
    letter-spacing: 0;
  }

  .footer .part1 .col-md-9 ul li a.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .footer .part1 .col-md-9 ul li a.Extrabold {
    font-weight: 800;
  }

  .footer .part1 .col-md-9 ul li a.Bold {
    font-weight: 700;
  }

  .footer .part1 .col-md-9 ul li a.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .footer .part1 .col-md-9 ul li a.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .footer .part1 .col-md-9 ul li a.Regular {
    font-weight: 400;
  }

  .footer .part1 .col-md-9 ul li a.Light {
    font-weight: 300;
  }

  .footer .part1 .col-md-9 .custom-footer-col {
    background: #f0f0f1;
  }

  .footer .part1 .col-md-9 .custom-footer-col.open {
    padding-bottom: 20px;
  }

  .footer .part1 .col-md-9 .custom-footer-col.open h4 {
    background: #f0f0f1;
  }

  .footer .part2 {
    padding-top: 0;
    min-height: 184px;
  }

  .footer .part2 .social {
    text-align: center;
  }

  .footer .part2 .social h5 {
    text-align: center;
    margin-right: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    line-height: 11px;
    display: block;
    margin-top: 20px;
    margin-bottom: 9px;
    color: #65656a;
  }

  .footer .part2 .social h5.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .footer .part2 .social h5.Extrabold {
    font-weight: 800;
  }

  .footer .part2 .social h5.Bold {
    font-weight: 700;
  }

  .footer .part2 .social h5.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .footer .part2 .social h5.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .footer .part2 .social h5.Regular {
    font-weight: 400;
  }

  .footer .part2 .social h5.Light {
    font-weight: 300;
  }

  .footer .part2 .social a {
    margin-right: 19px;
  }

  .footer .part2 .social a:last-child {
    margin-right: 0;
  }

  .footer .part2 .info > div {
    float: none !important;
    text-align: center;
    margin: 0 auto;
    display: block;
    margin-top: 12px;
  }

  .footer .part2 .info a {
    font-family: "museo-sans", Arial;
    font-style: normal;
    font-weight: 100;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 0;
    color: #65656a;
  }

  .footer .part2 .info p {
    font-family: "museo-sans", Arial;
    font-style: normal;
    font-weight: 100;
    font-size: 8px;
    line-height: 11px;
    letter-spacing: 0.01em;
    margin-top: 17px;
  }
}

.footer-privata {
  border-top: 1px solid #d1d1d3;
  border-bottom: 1px solid #d1d1d3;
  margin-bottom: 10px;
  margin-top: 10px;
  height: 85px;
}

.footer-privata .btn-enabled-users {
  background: #7a1613;
  border-color: #7a1613;
}

@media screen and (min-width: 768px) {
  .footer-privata .btn-enabled-users:hover {
    border-color: #7a1613;
    color: #7a1613;
  }

  .footer-privata .btn-enabled-users:hover .ico2 {
    background-position: -796px -108px;
  }
}

.footer-privata .btn-contacts:hover .ico2 {
  background-position: -765px -108px;
}

.footer-privata .cta-standard {
  margin-top: 22px;
  margin-right: 15px;
}

.footer-privata .cta-standard .ico2 {
  vertical-align: middle;
  margin-right: 8px;
}

.footer-privata .footer-text {
  padding-top: 14px;
}

.footer-privata .footer-text .separator-point {
  margin-right: 8px;
  margin-left: 8px;
}

.footer-privata .footer-text p,
.footer-privata .footer-text a,
.footer-privata .footer-text span {
  font-size: 12px;
  line-height: 24px;
  color: #65656a;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 300;
}

.footer-privata .footer-text p {
  margin: 0;
}

.footer-privata .footer-text a {
  text-decoration: underline;
}

#modal-change-lang .modal-dialog {
  max-width: 800px;
  width: 100%;
}

#modal-change-lang .modal-content {
  border-radius: unset !important;
  max-width: 800px;
  padding: 25px 50px;
}

#modal-change-lang .modal-content button.close {
  position: absolute !important;
  z-index: 99 !important;
  opacity: 1 !important;
  top: 18px !important;
  right: 18px !important;
}

#modal-change-lang .modal-header {
  border-bottom: none;
  padding: 23px 21px;
}

#modal-change-lang .modal-header .close {
  opacity: 1;
}

#modal-change-lang .modal-body {
  padding-top: 0;
}

#modal-change-lang .modal-body:before,
#modal-change-lang .modal-body:after {
  content: " ";
  display: table;
}

#modal-change-lang .modal-body:after {
  clear: both;
}

#modal-change-lang .modal-body .continent {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
  text-align: left;
  text-transform: none;
  font-weight: bold;
}

#modal-change-lang .modal-body .continent.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

#modal-change-lang .modal-body .continent.Extrabold {
  font-weight: 800;
}

#modal-change-lang .modal-body .continent.Bold {
  font-weight: 700;
}

#modal-change-lang .modal-body .continent.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

#modal-change-lang .modal-body .continent.Italic {
  font-style: italic;
  font-weight: 400;
}

#modal-change-lang .modal-body .continent.Regular {
  font-weight: 400;
}

#modal-change-lang .modal-body .continent.Light {
  font-weight: 300;
}

#modal-change-lang .modal-body hr {
  /*margin-top: 14px;
            margin-bottom: 36px;*/
  margin: 20px 0;
  border-color: #e0e0e1;
}

#modal-change-lang .modal-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

#modal-change-lang .modal-body ul li {
  padding-bottom: 10px;
}

#modal-change-lang .modal-body ul li img {
  margin-right: 15px;
  vertical-align: middle;
  max-height: 20px;
}

#modal-change-lang .modal-body ul li a {
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
  letter-spacing: 0;
  display: block;
  width: 49%;
  display: inline-block;
}

#modal-change-lang .modal-body ul li a:hover {
  color: #d9272e;
}

#modal-change-lang .modal-body .col-sm-6 {
  padding: 0 7px;
}

@media screen and (max-width: 767px) {
  #modal-change-lang .modal-dialog {
    width: auto;
    max-width: none;
  }

  #modal-change-lang .modal-content {
    padding: 20px 0;
    max-width: none;
  }

  #modal-change-lang .modal-content button.close {
    top: 12px !important;
  }

  #modal-change-lang .modal-content button.close img {
    max-width: 15px;
  }

  #modal-change-lang .modal-body .continent {
    text-align: center;
  }

  #modal-change-lang .modal-body hr {
    margin-top: 7px;
    margin-bottom: 22px;
  }

  #modal-change-lang .modal-body .col-sm-6 {
    padding: 0;
  }

  #modal-change-lang .modal-body ul:before,
  #modal-change-lang .modal-body ul:after {
    content: " ";
    display: table;
  }

  #modal-change-lang .modal-body ul:after {
    clear: both;
  }

  #modal-change-lang .modal-body ul li {
    width: 50%;
    float: left;
  }

  #modal-change-lang .modal-body ul li a {
    width: 100%;
    font-size: 13px;
    line-height: 21px;
  }
}

#modal-newsletter .modal-dialog {
  display: table;
  width: 1002px;
  height: 500px;
  background: white;
}

#modal-newsletter .modal-dialog .modal-newsletter-content {
  height: 100%;
  width: 50%;
  display: inline-block;
  float: left;
  position: relative;
}

#modal-newsletter .modal-dialog .modal-newsletter-content.left {
  left: 0;
  background-image: url(../../images/newsletter-cover-image.jpg);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

#modal-newsletter .modal-dialog .modal-newsletter-content .close {
  position: absolute;
  top: 20px;
  right: 11px;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

#modal-newsletter .modal-dialog .modal-newsletter-content h3 {
  font-size: 30px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  color: #8b8f92;
  margin-bottom: 10px;
  margin-top: 30px;
}

#modal-newsletter .modal-dialog .modal-newsletter-content h3.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

#modal-newsletter .modal-dialog .modal-newsletter-content h3.Extrabold {
  font-weight: 800;
}

#modal-newsletter .modal-dialog .modal-newsletter-content h3.Bold {
  font-weight: 700;
}

#modal-newsletter .modal-dialog .modal-newsletter-content h3.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

#modal-newsletter .modal-dialog .modal-newsletter-content h3.Italic {
  font-style: italic;
  font-weight: 400;
}

#modal-newsletter .modal-dialog .modal-newsletter-content h3.Regular {
  font-weight: 400;
}

#modal-newsletter .modal-dialog .modal-newsletter-content h3.Light {
  font-weight: 300;
}

#modal-newsletter .modal-dialog .modal-newsletter-content h3 span {
  color: #d9272e;
}

#modal-newsletter .modal-dialog .modal-newsletter-content h3.primary {
  color: #d9272e;
  margin-top: 0;
}

#modal-newsletter .modal-dialog .modal-newsletter-content p {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin: 25px 0;
  color: #8b8f93;
}

#modal-newsletter .modal-dialog .modal-newsletter-content p.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

#modal-newsletter .modal-dialog .modal-newsletter-content p.Extrabold {
  font-weight: 800;
}

#modal-newsletter .modal-dialog .modal-newsletter-content p.Bold {
  font-weight: 700;
}

#modal-newsletter .modal-dialog .modal-newsletter-content p.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

#modal-newsletter .modal-dialog .modal-newsletter-content p.Italic {
  font-style: italic;
  font-weight: 400;
}

#modal-newsletter .modal-dialog .modal-newsletter-content p.Regular {
  font-weight: 400;
}

#modal-newsletter .modal-dialog .modal-newsletter-content p.Light {
  font-weight: 300;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form label {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 35px;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form label input[type="email"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: normal;
  line-height: 40px;
  padding: 0 20px;
  border: 1px solid #E0DBD7;
  outline: none;
  color: #65656a;
  border-radius: 0;
  -webkit-transition: border-color 0.3s ease, color 0.3s ease;
  transition: border-color 0.3s ease, color 0.3s ease;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form label input[type="email"]::-webkit-input-placeholder {
  color: #e0dcd8;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form label input[type="email"]::-moz-input-placeholder {
  color: #e0dcd8;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form label input[type="email"]::-ms-input-placeholder {
  color: #e0dcd8;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form label.error input[type="email"] {
  background-color: #FBD1D3;
  border-color: #d9272e;
  color: #d9272e;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form label.error input[type="email"]::-webkit-input-placeholder {
  color: #d9272e;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form label.error input[type="email"]::-moz-input-placeholder {
  color: #d9272e;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form label.error input[type="email"]::-ms-input-placeholder {
  color: #d9272e;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form label > .error {
  color: #d9272e;
  font-weight: 400;
  margin-bottom: 0;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form #newsletter-email-error {
  color: #d9272e;
  font-weight: 400;
  margin-bottom: 0;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form #email-submit-newsletter-error.error {
  position: absolute;
  bottom: -23px;
  width: 100%;
  left: 0px;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox label {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  font-weight: 300;
  line-height: 20px;
  padding-left: 28px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox label::before,
#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox label::after {
  content: '';
  position: absolute;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox label::before {
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #E0DBD7;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox label::after {
  display: none;
  top: 3px;
  left: 8px;
  content: '';
  width: 4px;
  height: 12px;
  border: solid #d9272e;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox label.checked::after {
  display: block;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox label span {
  color: #8b8f93;
  font-weight: 300;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox label span a {
  color: #d9272e;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox label span a:hover {
  color: #d9272e;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
  padding: 0;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox input[type="checkbox"]:checked + label::after,
#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-checkbox input[type="checkbox"] .illy-checkbox input[type="checkbox"]:checked + span + label::after {
  display: block;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .illy-radio-group label {
  margin: 0;
  display: inline-block;
  width: auto;
  margin-right: 15px;
  margin-bottom: 15px;
  font-weight: normal;
  color: #8b8f93;
  cursor: pointer;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .btn-newsletter {
  background-color: #d9272e;
  border-color: #d9272e;
  background-image: none;
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  color: white;
}

#modal-newsletter .modal-dialog .modal-newsletter-content form .submit-wrapper {
  margin-bottom: 15px;
}

#modal-newsletter .modal-dialog .close {
  position: absolute;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid #8b8f92;
  color: #8b8f92;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  opacity: 1;
  font-size: 34px;
  right: 20px;
  top: 20px;
  padding: 0;
  text-align: center;
  display: block;
  outline: none;
  z-index: 10000;
}

#modal-newsletter .modal-dialog .close.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

#modal-newsletter .modal-dialog .close.Extrabold {
  font-weight: 800;
}

#modal-newsletter .modal-dialog .close.Bold {
  font-weight: 700;
}

#modal-newsletter .modal-dialog .close.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

#modal-newsletter .modal-dialog .close.Italic {
  font-style: italic;
  font-weight: 400;
}

#modal-newsletter .modal-dialog .close.Regular {
  font-weight: 400;
}

#modal-newsletter .modal-dialog .close.Light {
  font-weight: 300;
}

#modal-newsletter .modal-dialog .close span {
  font-weight: normal;
  font-size: 30px;
  line-height: 34px;
  vertical-align: top;
}

.sso {
  padding-top: 30px;
  padding-bottom: 30px;
  /* Stili comuni */
  /* Stili singoli SSO */
}

.sso h2 {
  font-size: 24px;
  line-height: 24px;
  color: #d9272e;
  font-weight: 300;
  margin-bottom: 7px;
  text-transform: capitalize;
}

.sso h3 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
  color: #d9272e;
  margin-bottom: 7px;
  text-transform: capitalize;
}

.sso a.link {
  font-size: 13px;
  line-height: 21px;
  text-decoration: underline;
  color: #d9272e;
}

.sso p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 14px;
  color: #8b8f93;
}

.sso .cmp-input-group .cmp-input-label {
  font-weight: 400;
  line-height: 21px;
  font-size: 14px;
  color: #8b8f93;
  margin-bottom: 1px;
}

.sso .cmp-input-group .cmp-input {
  margin-bottom: 15px;
  height: 40px;
}

.sso .cmp-input-group .cmp-input.error {
  background-color: #fbd1d3 !important;
  border-color: #d9272e !important;
  color: #d9272e !important;
}

.sso .cmp-input-group .cmp-select-white-type3 {
  min-height: 40px;
}

.sso .cmp-input-group .cmp-select-white-type3 button.btn.dropdown-toggle {
  height: 40px;
}

.sso .cmp-input-group .cmp-select-white-type3 button.btn.dropdown-toggle.error {
  background-color: #fbd1d3 !important;
  border-color: #d9272e !important;
  color: #d9272e !important;
}

.sso .cmp-input-group .cmp-input-error {
  font-size: 11px;
  position: relative;
  top: -10px;
}

.sso .cmp-input-group .cmp-input-info {
  font-size: 11px;
  position: relative;
  top: -10px;
}

.sso .illy-checkbox label {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  line-height: 20px;
  padding-left: 28px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
}

.sso .illy-checkbox label::before,
.sso .illy-checkbox label::after {
  content: '';
  position: absolute;
}

.sso .illy-checkbox label::before {
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #E0DBD7;
}

.sso .illy-checkbox label::after {
  display: none;
  top: 3px;
  left: 8px;
  content: '';
  width: 4px;
  height: 12px;
  border: solid #d9272e;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sso .illy-checkbox label.checked::after {
  display: block;
}

.sso .illy-checkbox label span {
  color: #8b8f93;
  font-weight: 300;
}

.sso .illy-checkbox label span a {
  color: #d9272e;
}

.sso .illy-checkbox label span a:hover {
  color: #d9272e;
}

.sso .illy-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
  padding: 0;
}

.sso .illy-checkbox input[type="checkbox"]:checked + label::after,
.sso .illy-checkbox input[type="checkbox"] .illy-checkbox input[type="checkbox"]:checked + span + label::after {
  display: block;
}

.sso .illy-checkbox input[type="checkbox"].error + label:before {
  border-color: #d9272e;
}

.sso .illy-checkbox input[type="checkbox"].error + label:after {
  display: none;
}

.sso.sso-login .social-btn {
  margin-right: 6px;
  margin-top: 10px;
  display: inline-block;
}

.sso.sso-login .illy-checkbox {
  margin-top: 20px;
  margin-bottom: 5px;
}

.sso.sso-login .row .col-sm-6:first-child {
  padding-right: 15px;
}

@media screen and (max-width: 767px) {
  .sso.sso-login .marginTop20Mobile {
    margin-top: 20px;
  }
}

.sso.sso-reset-pwd.step2 .col-sm-6:first-child {
  padding-right: 7.5px;
}

.sso.sso-reset-pwd.step2 .col-sm-6:last-child {
  padding-left: 7.5px;
}

@media screen and (max-width: 767px) {
  .sso.sso-reset-pwd.step2 .col-sm-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.sso.sso-subscribe .aside {
  padding-right: 15px;
}

.sso.sso-subscribe .aside h2 {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 30px;
  font-weight: 300;
  color: #d9272e;
}

.sso.sso-subscribe .aside span {
  font-size: 14px;
  color: #d9272e;
  margin-bottom: 8px;
  font-weight: 700;
}

.sso.sso-subscribe .aside h3 {
  font-size: 18px;
  line-height: 22px;
  color: #65656a !important;
}

.sso.sso-subscribe .aside h5 {
  color: #d9272e;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  margin-bottom: .5rem;
  margin-top: 30px;
}

.sso.sso-subscribe .aside p {
  font-size: 14px;
  line-height: 16px;
}

.sso.sso-subscribe .aside .btn-contact-tel .ico2 {
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 6px;
}

.sso.sso-subscribe .aside .btn-contact-tel .ico-phone-gray {
  display: none;
}

.sso.sso-subscribe .aside .btn-contact-tel:hover .ico-phone {
  display: none;
}

.sso.sso-subscribe .aside .btn-contact-tel:hover .ico-phone-gray {
  display: inline-block;
}

.sso.sso-subscribe .border-red-box {
  border: 1px solid #d9272e;
  padding: 25px;
}

.sso.sso-subscribe .colum-spacer .col-xs-12:first-child {
  padding-right: 7.5px;
}

.sso.sso-subscribe .colum-spacer .col-xs-12:last-child {
  padding-left: 7.5px;
}

.sso.sso-subscribe .content h2,
.sso.sso-subscribe .content h3 {
  margin-bottom: 25px;
}

.sso.sso-subscribe .content .input-group {
  padding-bottom: 35px;
}

.sso.sso-subscribe.step2 .text-red {
  color: #d9272e;
}

.sso.sso-subscribe.step2 .cmp-radio-type1 + label {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 991px) {
  .sso.sso-subscribe .aside .btn-contact-tel .ico2 {
    display: none !important;
  }

  .sso.sso-subscribe .aside .cta-standard span {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .sso.sso-subscribe .aside {
    padding-bottom: 30px;
  }

  .sso.sso-subscribe .content .colum-spacer .col-xs-12 {
    padding: 0;
  }

  .sso.sso-subscribe .content .input-group {
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  #modal-newsletter .modal-dialog {
    width: 90%;
    height: auto;
    margin: 30px auto;
    padding: 20px;
    overflow-y: hidden;
  }

  #modal-newsletter .modal-dialog .modal-newsletter-content {
    width: 100%;
    height: auto;
  }

  #modal-newsletter .modal-dialog .modal-newsletter-content.left {
    height: 150px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  #modal-newsletter .modal-dialog .modal-newsletter-content.right h3 {
    font-size: 18px;
    display: inline;
  }

  #modal-newsletter .modal-dialog .modal-newsletter-content.right h3.primary {
    margin-top: 0;
  }

  #modal-newsletter .modal-dialog .modal-newsletter-content.right p {
    margin: 10px 0;
    line-height: 16px;
  }

  #modal-newsletter .modal-dialog .close {
    width: 26px;
    height: 26px;
    font-size: 23px;
    right: 10px;
    top: 10px;
  }

  #modal-newsletter .modal-dialog .close span {
    font-size: 23px;
    line-height: 23px;
  }
}

@media screen and (min-width: 768px) {
  #modal-newsletter .modal-dialog {
    width: 90%;
    border-radius: 0;
  }

  #modal-newsletter .modal-dialog .modal-newsletter-content.right {
    padding: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  #modal-newsletter .modal-dialog {
    overflow-y: scroll;
  }

  #modal-newsletter .modal-dialog .modal-newsletter-content h3 {
    font-size: 24px;
  }

  .header-privata .notifications-mobile-content .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media screen and (max-width: 991px) {
  .footer-privata {
    height: auto;
  }

  .footer-privata .col-xs-12 {
    text-align: center;
  }

  .footer-privata .cta-standard .visible-xs {
    display: inline-block !important;
  }

  .footer-privata .footer-text {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
}

@media screen and (min-width: 1229px) {
  #modal-newsletter .modal-dialog {
    width: 1000px;
  }
}

@media screen and (max-width: 767px) {
  .footer-privata .cta-standard {
    margin-right: 0;
    width: 100%;
    margin-top: 2px;
    text-align: left;
  }

  .footer-privata .cta-standard .fa-angle-right {
    line-height: 40px;
    display: inline-block !important;
  }

  .footer-privata .btn-back-top {
    text-align: center;
    border-bottom: 1px solid #d1d1d3;
    display: block;
    padding: 0 0 3px;
    margin-bottom: 10px;
  }

  .footer-privata .btn-back-top span,
  .footer-privata .btn-back-top i {
    display: block;
    color: #d1d1d3;
  }

  .footer-privata .btn-back-top i {
    font-size: 20px;
  }

  .footer-privata .btn-back-top span {
    font-size: 10px;
    font-weight: bold;
    line-height: 20px;
    color: #d1d1d3;
  }

  .footer-privata .footer-text p {
    line-height: 17px;
    margin-top: 12px;
  }
}

.modal-angular {
  background: rgba(255, 255, 255, 0.6);
}

.modal-angular .aligncenter {
  text-align: center;
}

.modal-angular .modal-dialog {
  max-width: 430px;
  border: none;
  border-radius: 0;
}

.modal-angular .modal-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.modal-angular.fade .modal-dialog {
  transform: translate(0, 300%);
}

.modal-angular .modal-body {
  padding: 40px 10px;
}

.modal-angular .modal-body p {
  max-width: 300px;
  margin: 20px auto 13px;
}

.modal-angular.in {
  display: block;
}

.modal-angular.in .modal-dialog {
  transform: translate(0, 320%);
}

@media screen and (max-width: 767px) {
  .modal-angular .modal-body {
    padding: 20px;
  }

  .modal-angular.fade .modal-dialog {
    transform: translate(0, 645%);
  }

  .modal-angular.in .modal-dialog {
    transform: translate(0, 660%);
  }
}

body {
  overflow-x: hidden !important;
}

/*==============================================================================
							RESET AGGIUNTIVI
==============================================================================*/

:focus {
  outline: none;
}

body:not(.is-touch) .slick-slider {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

body:not(.is-touch) .slick-list.draggable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* SERVONO PER L'HEADER STICKY */

body {
  /*padding-top: 166px;*/
  /* Questo è il padding se c'è il promotional highlights */
  padding-top: 121px;
}

@media screen and (max-width: 991px) {
  body {
    /*padding-top:91px;*/
    /* Questo è il padding se c'è il promotional highlights */
    padding-top: 51px;
  }
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.container.container--full-width {
  position: relative;
  width: 100%;
  padding: 0;
}

.container__info {
  width: 100%;
  background: #63666a;
  position: relative;
  z-index: 9;
  padding: 15% 5%;
}

.container__info .container__info-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.container__info .container__info-desc {
  color: #fff;
  font-size: 17px;
}

.player-container .player-preview > img {
  width: 100%;
}

.player-container .player-preview .ico-play {
  z-index: 9;
}

/*==============================================================================
							COMPONENTI e ELEMENTI
==============================================================================*/

/* CMP-BUTTONS 
 ****************************/

.cmp-button-red-small {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-size: 11px;
  outline: none;
  margin: 0;
  border-color: #d9272e;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  padding: 4px 14px;
  background: #d9272e;
  border: none;
  -moz-transition-property: 'background-color';
  -moz-transition-duration: 0.5s;
  -moz-transition-delay: 0s;
  -moz-transition-easing: ease-out;
  -webkit-transition-property: 'background-color';
  -webkit-transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -webkit-transition-easing: ease-out;
  -o-transition-property: 'background-color';
  -o-transition-duration: 0.5s;
  -o-transition-delay: 0s;
  -o-transition-easing: ease-out;
  transition-property: 'background-color';
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-easing: ease-out;
  -moz-transition: 'background-color';
  -o-transition: 'background-color';
  -webkit-transition: 'background-color';
  transition: 'background-color';
}

.cmp-button-red-small:focus {
  outline: none !important;
}

.cmp-button-red-small:hover,
.cmp-button-red-small:focus,
.cmp-button-red-small:active {
  outline: none !important;
  background: #d9272e;
  color: inherit;
}

.cmp-button-red-small.ico-right i,
.cmp-button-red-small.ico-right em {
  margin-left: 5px;
}

.cmp-button-red-small.ico-left i,
.cmp-button-red-small.ico-left em {
  margin-right: 5px;
}

.cmp-button-red-small:hover {
  color: #fff;
}

.cmp-button-red-small:focus {
  color: #fff;
}

.cmp-button-white-small {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  color: #d9272e;
  font-size: 11px;
  outline: none;
  margin: 0;
  border-color: #d9272e;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  padding: 4px 14px;
  background: #fff;
  border-width: 1px;
  border-style: solid;
  -moz-transition-property: 'background-color';
  -moz-transition-duration: 0.5s;
  -moz-transition-delay: 0s;
  -moz-transition-easing: ease-out;
  -webkit-transition-property: 'background-color';
  -webkit-transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -webkit-transition-easing: ease-out;
  -o-transition-property: 'background-color';
  -o-transition-duration: 0.5s;
  -o-transition-delay: 0s;
  -o-transition-easing: ease-out;
  transition-property: 'background-color';
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-easing: ease-out;
  -moz-transition: 'background-color';
  -o-transition: 'background-color';
  -webkit-transition: 'background-color';
  transition: 'background-color';
}

.cmp-button-white-small:focus {
  outline: none !important;
}

.cmp-button-white-small:hover,
.cmp-button-white-small:focus,
.cmp-button-white-small:active {
  outline: none !important;
  background: #d9272e;
  color: inherit;
}

.cmp-button-white-small.ico-right i,
.cmp-button-white-small.ico-right em {
  margin-left: 5px;
}

.cmp-button-white-small.ico-left i,
.cmp-button-white-small.ico-left em {
  margin-right: 5px;
}

.cmp-button-white-small:hover {
  color: #fff;
}

.cmp-button-white-small.active {
  background: #d9272e !important;
  color: #fff !important;
}

.cmp-button-white-small:focus {
  color: #d9272e;
  background: #fff;
}

.cmp-button-red-medium {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  outline: none;
  margin: 0;
  border-color: #d9272e;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  padding: 10px;
  background: #d9272e;
  border: none;
  -moz-transition-property: 'background-color';
  -moz-transition-duration: 0.5s;
  -moz-transition-delay: 0s;
  -moz-transition-easing: ease-out;
  -webkit-transition-property: 'background-color';
  -webkit-transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -webkit-transition-easing: ease-out;
  -o-transition-property: 'background-color';
  -o-transition-duration: 0.5s;
  -o-transition-delay: 0s;
  -o-transition-easing: ease-out;
  transition-property: 'background-color';
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-easing: ease-out;
  -moz-transition: 'background-color';
  -o-transition: 'background-color';
  -webkit-transition: 'background-color';
  transition: 'background-color';
  height: 40px;
  min-width: 144px;
  text-align: left;
  text-transform: uppercase;
}

.cmp-button-red-medium:focus {
  outline: none !important;
}

.cmp-button-red-medium:hover,
.cmp-button-red-medium:focus,
.cmp-button-red-medium:active {
  outline: none !important;
  background: #d9272e;
  color: #fff;
}

.cmp-button-red-medium.ico-right i,
.cmp-button-red-medium.ico-right em {
  margin-left: 5px;
}

.cmp-button-red-medium.ico-left i,
.cmp-button-red-medium.ico-left em {
  margin-right: 5px;
}

.cmp-button-red-medium i,
.cmp-button-red-medium span {
  vertical-align: sub;
  margin-right: 10px;
}

.cmp-button-red-medium .ico.ico-heart-white {
  position: relative;
  top: 3px;
}

.cmp-button-red-medium .ico.ico-marker-white {
  position: relative;
  top: 1px;
  left: 1px;
}

.cmp-button-red-medium .ico.ico-mail-white {
  position: relative;
  top: 4px;
  left: 3px;
}

.cmp-button-red-medium:focus {
  color: #fff;
}

@media (max-width: 767px) {
  .cmp-button-red-medium {
    height: 30px;
  }
}

.cmp-button-red-big {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  outline: none;
  margin: 0;
  border-color: #d9272e;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  padding: 20px;
  background: #d9272e;
  border: none;
  -moz-transition-property: 'background-color';
  -moz-transition-duration: 0.5s;
  -moz-transition-delay: 0s;
  -moz-transition-easing: ease-out;
  -webkit-transition-property: 'background-color';
  -webkit-transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -webkit-transition-easing: ease-out;
  -o-transition-property: 'background-color';
  -o-transition-duration: 0.5s;
  -o-transition-delay: 0s;
  -o-transition-easing: ease-out;
  transition-property: 'background-color';
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-easing: ease-out;
  -moz-transition: 'background-color';
  -o-transition: 'background-color';
  -webkit-transition: 'background-color';
  transition: 'background-color';
  min-width: 300px;
}

.cmp-button-red-big:focus {
  outline: none !important;
}

.cmp-button-red-big:hover,
.cmp-button-red-big:focus,
.cmp-button-red-big:active {
  outline: none !important;
  background: #d9272e;
  color: inherit;
}

.cmp-button-red-big.ico-right i,
.cmp-button-red-big.ico-right em {
  margin-left: 5px;
}

.cmp-button-red-big.ico-left i,
.cmp-button-red-big.ico-left em {
  margin-right: 5px;
}

.cmp-button-red-big:hover {
  color: #fff;
}

.cmp-button-red-big:focus {
  color: #fff;
}

.cmp-button-white {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  color: #a0a3a5;
  font-size: 14px;
  outline: none;
  margin: 0;
  border-color: #bec0c2;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  padding: 11.5px;
  background: #fff;
  border: none;
  -moz-transition-property: 'background-color';
  -moz-transition-duration: 0.5s;
  -moz-transition-delay: 0s;
  -moz-transition-easing: ease-out;
  -webkit-transition-property: 'background-color';
  -webkit-transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -webkit-transition-easing: ease-out;
  -o-transition-property: 'background-color';
  -o-transition-duration: 0.5s;
  -o-transition-delay: 0s;
  -o-transition-easing: ease-out;
  transition-property: 'background-color';
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-easing: ease-out;
  -moz-transition: 'background-color';
  -o-transition: 'background-color';
  -webkit-transition: 'background-color';
  transition: 'background-color';
  border-width: 1px;
  border-style: solid;
  min-width: 110px;
}

.cmp-button-white:focus {
  outline: none !important;
}

.cmp-button-white:hover,
.cmp-button-white:focus,
.cmp-button-white:active {
  outline: none !important;
  background: #cdcecf;
  color: #fff;
}

.cmp-button-white.ico-right i,
.cmp-button-white.ico-right em {
  margin-left: 5px;
}

.cmp-button-white.ico-left i,
.cmp-button-white.ico-left em {
  margin-right: 5px;
}

.cmp-button-white:hover {
  color: #fff;
  border: 1px solid #bec0c2;
}

.cmp-button-gray-medium {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  color: #8b8f92;
  font-size: 11px;
  outline: none;
  margin: 0;
  border-color: #dcddde;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  padding: 10px;
  background: #dcddde;
  border: none;
  -moz-transition-property: 'background-color';
  -moz-transition-duration: 0.5s;
  -moz-transition-delay: 0s;
  -moz-transition-easing: ease-out;
  -webkit-transition-property: 'background-color';
  -webkit-transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -webkit-transition-easing: ease-out;
  -o-transition-property: 'background-color';
  -o-transition-duration: 0.5s;
  -o-transition-delay: 0s;
  -o-transition-easing: ease-out;
  transition-property: 'background-color';
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-easing: ease-out;
  -moz-transition: 'background-color';
  -o-transition: 'background-color';
  -webkit-transition: 'background-color';
  transition: 'background-color';
  height: 40px;
  min-width: 144px;
  text-align: left;
  text-transform: uppercase;
}

.cmp-button-gray-medium:focus {
  outline: none !important;
}

.cmp-button-gray-medium:hover,
.cmp-button-gray-medium:focus,
.cmp-button-gray-medium:active {
  outline: none !important;
  background: #b7b9ba;
  color: #8b8f92;
}

.cmp-button-gray-medium.ico-right i,
.cmp-button-gray-medium.ico-right em {
  margin-left: 5px;
}

.cmp-button-gray-medium.ico-left i,
.cmp-button-gray-medium.ico-left em {
  margin-right: 5px;
}

.cmp-button-gray-medium i,
.cmp-button-gray-medium span {
  vertical-align: sub;
  margin-right: 10px;
}

.cmp-button-gray-medium .ico.ico-phone,
.cmp-button-gray-medium .ico.ico-phone-white {
  position: relative;
  top: 1px;
  margin-left: 7px;
  margin-right: 11px;
  display: inline-block;
}

.cmp-button-gray-medium.tel,
.cmp-button-gray-medium.tel:hover,
.cmp-button-gray-medium.tel:focus {
  background: #007934;
  color: #fff;
}

@media (max-width: 767px) {
  .cmp-button-gray-medium {
    height: 30px;
  }

  .cmp-button-gray-medium .ico.ico-phone-white {
    display: inline-block !important;
  }
}

.cmp-button-grayline {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  color: #65656a;
  font-size: 13px;
  outline: none;
  margin: 0;
  border-color: #dfe0e1;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  padding: 0 30px;
  background: #fff;
  border: 1px solid #dedfe0;
  height: 45px;
  line-height: 45px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.cmp-button-grayline:focus {
  outline: none !important;
}

.cmp-button-grayline:hover,
.cmp-button-grayline:focus,
.cmp-button-grayline:active {
  outline: none !important;
  background: #fff;
  color: inherit;
}

.cmp-button-grayline.ico-right i,
.cmp-button-grayline.ico-right em {
  margin-left: 5px;
}

.cmp-button-grayline.ico-left i,
.cmp-button-grayline.ico-left em {
  margin-right: 5px;
}

.cmp-button-grayline i,
.cmp-button-grayline span {
  vertical-align: middle;
  margin-right: 10px;
}

.cmp-button-grayline:hover {
  border-color: #dfe0e1;
}

/* NUOVA CTA STANDARD */

.cta-standard {
  border-width: 1px;
  border-style: solid;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  padding: 0 15px;
  line-height: 38px;
  display: inline-block;
  text-align: center;
  min-width: 200px;
  text-transform: uppercase;
}

.cta-standard.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.cta-standard.Extrabold {
  font-weight: 800;
}

.cta-standard.Bold {
  font-weight: 700;
}

.cta-standard.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.cta-standard.Italic {
  font-style: italic;
  font-weight: 400;
}

.cta-standard.Regular {
  font-weight: 400;
}

.cta-standard.Light {
  font-weight: 300;
}

.cta-standard span {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  text-transform: uppercase !important;
}

.cta-standard.cta-standard-red {
  background-color: #d9272e;
  border-color: #d9272e;
  color: #fff;
}

.cta-standard.cta-standard-white {
  background-color: #fff;
  border-color: #d9272e;
  color: #d9272e;
}

.cta-standard.cta-standard-gray {
  background-color: #65656a;
  border-color: #65656a;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .cta-standard {
    -moz-transition: border-color 0.5s, background-color 0.5s, color 0.5s;
    -o-transition: border-color 0.5s, background-color 0.5s, color 0.5s;
    -webkit-transition: border-color 0.5s, background-color 0.5s, color 0.5s;
    transition: border-color 0.5s, background-color 0.5s, color 0.5s;
  }

  .cta-standard.cta-standard-red:hover {
    background-color: transparent;
    border-color: #d9272e;
    color: #d9272e;
  }

  .cta-standard.cta-standard-white:hover {
    background-color: #d9272e;
    border-color: #d9272e;
    color: #fff;
  }

  .cta-standard.cta-standard-gray:hover {
    /*background-color: #eb1a21;
				border-color: #eb1a21;
				color: #fff;*/
    background-color: transparent;
    color: #65656a;
  }
}

@media screen and (max-width: 991px) {
  .cta-standard {
    font-size: 14px;
    min-width: 90px;
  }
}

/* Vertical align */

.v-align {
  display: table;
  height: 100%;
  width: 100%;
}

.v-align-center {
  vertical-align: middle;
  display: table-cell;
}

/* CMP-SELECT 
 ****************************/

.cmp-select-white {
  outline: none !important;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  /* Dropdown che si apre sopra */
  /* Dropdown che si apre sopra */
}

.cmp-select-white button.btn {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: normal;
  color: #a0a3a5;
  text-transform: capitalize;
  cursor: pointer;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  border: 1px solid #bec0c2;
  background: #f8f7f7;
  outline: none !important;
  box-shadow: none;
  padding: 6px 12px;
}

.cmp-select-white button.btn:hover,
.cmp-select-white button.btn:active,
.cmp-select-white button.btn:focus {
  outline: none !important;
}

.cmp-select-white button.btn.error {
  color: #d9534f;
  border: 1px solid #d9534f;
}

.cmp-select-white.open .caret {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cmp-select-white.open button.btn {
  -webkit-border-top-right-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  filter: none;
  -webkit-border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  box-shadow: none;
  outline: none;
}

.cmp-select-white.dropup button.btn {
  /* Top */
  -webkit-border-top-right-radius: 0 !important;
  -webkit-border-top-left-radius: 0 !important;
  -moz-border-radius-topright: 0 !important;
  -moz-border-radius-topleft: 0 !important;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  /* Bottom */
  -webkit-border-bottom-right-radius: 4px !important;
  -webkit-border-bottom-left-radius: 4px !important;
  -moz-border-radius-bottomright: 4px !important;
  -moz-border-radius-bottomleft: 4px !important;
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.cmp-select-white .bs-searchbox {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  position: relative;
  margin-bottom: 4px;
  margin-top: -6px;
}

.cmp-select-white .bs-searchbox input[type='text'] {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none !important;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  border: 1px solid #bec0c2;
  padding: 5px 25px 5px 5px;
  margin-top: 5px;
  box-shadow: none;
  font-weight: normal;
}

.cmp-select-white .bs-searchbox:after {
  background-image: none;
  content: '';
  display: none;
}

.cmp-select-white .dropdown-menu {
  margin-top: 0;
  border-top: none;
  -webkit-border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  filter: none;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.cmp-select-white .dropdown-menu ul li a {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  font-weight: normal;
  color: inherit;
  text-transform: capitalize;
  padding: 7px 20px;
}

.cmp-select-white .dropdown-menu ul li a:hover {
  background: #e8e8e8;
  box-shadow: none;
}

.cmp-select-white .dropdown-menu ul li.selected,
.cmp-select-white .dropdown-menu ul li.active {
  -ms-filter: none;
  filter: none;
}

.cmp-select-white .dropdown-menu ul li.selected a,
.cmp-select-white .dropdown-menu ul li.active a {
  background: #e8e8e8;
  color: inherit;
  -ms-filter: none;
  filter: none;
}

.cmp-select-white.dropup .dropdown-menu {
  border-top: 1px solid #bec0c2;
  margin-bottom: 0;
  border-bottom: none;
  /* Top */
  -webkit-border-top-right-radius: 4px !important;
  -webkit-border-top-left-radius: 4px !important;
  -moz-border-radius-topright: 4px !important;
  -moz-border-radius-topleft: 4px !important;
  border-top-right-radius: 4px !important;
  border-top-left-radius: 4px !important;
  /* Bottom */
  -webkit-border-bottom-right-radius: 0 !important;
  -webkit-border-bottom-left-radius: 0 !important;
  -moz-border-radius-bottomright: 0 !important;
  -moz-border-radius-bottomleft: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.cmp-select-white button.btn {
  height: 40px;
  padding: 7px 20px;
  font-size: 16px;
  text-shadow: none;
}

.cmp-select-white button.btn:active,
.cmp-select-white .btn.active,
.cmp-select-white.open > .dropdown-toggle.btn {
  color: #a0a3a5;
  background-color: #f8f7f7;
  border-color: #bec0c2;
}

.cmp-select-white.btn-group .dropdown-toggle .caret {
  border: none;
  top: 50%;
  right: 12px;
  margin-top: -4px;
  background-image: url('../../images/sprite/desktop/sprite.png');
  display: inline-block;
  text-indent: -9000px;
  width: 11px;
  height: 9px;
  background-position: -474px -87px !important;
  /* Senza l'important su tablet settava la position a 0 */
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx) {
  .cmp-select-white.btn-group .dropdown-toggle .caret {
    background-image: url("../../images/sprite/desktop/sprite@2x.png");
    background-size: 976px 783px;
    background-position-x: 0;
    background-position-y: 0;
  }
}

.cmp-select-white .dropdown-menu {
  padding: 0;
}

.cmp-select-white .dropdown-menu ul li {
  background: #f8f7f7;
  border-top: solid 1px #bec0c2;
}

.cmp-select-white .dropdown-menu ul li:first-child {
  border-top: none;
}

.cmp-select-white .dropdown-menu ul li a {
  font-size: 16px;
}

.cmp-select-white.cmp-select-ico .dropdown-toggle {
  position: relative;
  padding-left: 32px;
}

.cmp-select-white.cmp-select-ico .dropdown-toggle .ico {
  position: absolute;
  left: 7px;
  top: 10px;
}

.cmp-select-white.cmp-select-ico .dropdown-menu ul li a {
  padding-left: 32px;
}

.cmp-select-redline {
  border-color: #d9272e;
  background: #fff;
  width: 100% !important;
  max-width: 290px;
  margin: 0 auto;
}

.cmp-select-redline button.btn {
  padding: 12px 20px;
  height: auto;
  font-size: 14px;
}

.cmp-select-redline button.btn,
.cmp-select-redline button.btn:active,
.cmp-select-redline .btn.active,
.cmp-select-redline.open > .dropdown-toggle.btn {
  color: #d9272e;
  background-color: #fff;
  border-color: #d9272e;
}

.cmp-select-redline.btn-group .dropdown-toggle .caret {
  background-image: url('../../images/ico-arrow-down-cmb-red.jpg') !important;
  width: 40px !important;
  height: 40px !important;
  margin-top: -20px !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
}

.cmp-select-redline.btn-group .dropdown-toggle .caret:hover {
  background-position: center !important;
}

body.smartphone .cmp-select-white button.btn {
  height: 30px;
  font-size: 11px;
  padding-left: 22px;
}

body.smartphone .cmp-select-white .dropdown-menu ul li a {
  font-size: 11px;
  padding-left: 22px;
}

body.smartphone .cmp-select-white.cmp-select-ico .dropdown-toggle .ico {
  left: 4px;
  top: 8px;
}

body.smartphone .cmp-select-white.btn-group .dropdown-toggle .caret {
  right: 8px;
  margin-top: -3px;
  background-image: url('../../images/sprite/mobile/sprite.png');
  width: 8px;
  height: 5px;
  background-position: -118px -215px !important;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx) {
  body.smartphone .cmp-select-white.btn-group .dropdown-toggle .caret {
    background-image: url("../../images/sprite/mobile/sprite@2x.png");
    background-size: 295px 400px;
    background-position-x: 0;
    background-position-y: 0;
  }
}

body.smartphone .cmp-select-white.btn-group .dropdown-toggle .caret:hover {
  background-position: -118px -215px !important;
}

body.smartphone .cmp-select-redline button.btn {
  padding: 12px 20px;
  height: auto;
  font-size: 14px;
}

body.smartphone .cmp-select-redline.btn-group .dropdown-toggle .caret {
  background-image: url('../../images/ico-arrow-down-cmb-red.jpg') !important;
  width: 40px !important;
  height: 40px !important;
  margin-top: -20px !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
}

body.smartphone .cmp-select-redline.btn-group .dropdown-toggle .caret:hover {
  background-position: center !important;
}

.cmp-select-white-bis button.btn,
.cmp-select-white-bis .btn.active,
.cmp-select-white-bis.open > .dropdown-toggle.btn {
  color: #8b8f92;
  background-color: #fff;
  border-color: #8b8f92;
}

.cmp-select-white-type3 {
  outline: none !important;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  /* Dropdown che si apre sopra */
  /* Dropdown che si apre sopra */
  width: 100% !important;
}

.cmp-select-white-type3 button.btn {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: normal;
  color: #a0a3a5;
  text-transform: capitalize;
  cursor: pointer;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  border: 1px solid #dad5d1;
  background: #fff;
  outline: none !important;
  box-shadow: none;
  padding: 2px 15px;
}

.cmp-select-white-type3 button.btn:hover,
.cmp-select-white-type3 button.btn:active,
.cmp-select-white-type3 button.btn:focus {
  outline: none !important;
}

.cmp-select-white-type3 button.btn.error {
  color: #d9534f;
  border: 1px solid #d9534f;
}

.cmp-select-white-type3.open .caret {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cmp-select-white-type3.open button.btn {
  -webkit-border-top-right-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  filter: none;
  -webkit-border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  box-shadow: none;
  outline: none;
}

.cmp-select-white-type3.dropup button.btn {
  /* Top */
  -webkit-border-top-right-radius: 0 !important;
  -webkit-border-top-left-radius: 0 !important;
  -moz-border-radius-topright: 0 !important;
  -moz-border-radius-topleft: 0 !important;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  /* Bottom */
  -webkit-border-bottom-right-radius: 4px !important;
  -webkit-border-bottom-left-radius: 4px !important;
  -moz-border-radius-bottomright: 4px !important;
  -moz-border-radius-bottomleft: 4px !important;
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.cmp-select-white-type3 .bs-searchbox {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  position: relative;
  margin-bottom: 4px;
  margin-top: -6px;
}

.cmp-select-white-type3 .bs-searchbox input[type='text'] {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none !important;
  filter: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  border: 1px solid #dad5d1;
  padding: 5px 25px 5px 5px;
  margin-top: 5px;
  box-shadow: none;
  font-weight: normal;
}

.cmp-select-white-type3 .bs-searchbox:after {
  background-image: none;
  content: '';
  display: none;
}

.cmp-select-white-type3 .dropdown-menu {
  margin-top: 0;
  border-top: none;
  -webkit-border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  filter: none;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.cmp-select-white-type3 .dropdown-menu ul li a {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  font-weight: normal;
  color: inherit;
  text-transform: capitalize;
  padding: 2px 15px;
}

.cmp-select-white-type3 .dropdown-menu ul li a:hover {
  background: #d3cdc9;
  box-shadow: none;
}

.cmp-select-white-type3 .dropdown-menu ul li.selected,
.cmp-select-white-type3 .dropdown-menu ul li.active {
  -ms-filter: none;
  filter: none;
}

.cmp-select-white-type3 .dropdown-menu ul li.selected a,
.cmp-select-white-type3 .dropdown-menu ul li.active a {
  background: #d3cdc9;
  color: inherit;
  -ms-filter: none;
  filter: none;
}

.cmp-select-white-type3.dropup .dropdown-menu {
  border-top: 1px solid #dad5d1;
  margin-bottom: 0;
  border-bottom: none;
  /* Top */
  -webkit-border-top-right-radius: 4px !important;
  -webkit-border-top-left-radius: 4px !important;
  -moz-border-radius-topright: 4px !important;
  -moz-border-radius-topleft: 4px !important;
  border-top-right-radius: 4px !important;
  border-top-left-radius: 4px !important;
  /* Bottom */
  -webkit-border-bottom-right-radius: 0 !important;
  -webkit-border-bottom-left-radius: 0 !important;
  -moz-border-radius-bottomright: 0 !important;
  -moz-border-radius-bottomleft: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.cmp-select-white-type3 .dropdown-menu.inner {
  max-height: 250px !important;
  overflow-y: auto;
  overflow-x: hidden;
}

.cmp-select-white-type3.btn-group .dropdown-toggle .caret {
  border: none;
  top: 50%;
  right: 12px;
  margin-top: -4px;
  background-image: url('../../images/sprite/desktop/sprite.png');
  display: inline-block;
  text-indent: -9000px;
  width: 11px;
  height: 9px;
  background-position: -474px -87px !important;
  /* Senza l'important su tablet settava la position a 0 */
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx) {
  .cmp-select-white-type3.btn-group .dropdown-toggle .caret {
    background-image: url("../../images/sprite/desktop/sprite@2x.png");
    background-size: 976px 783px;
    background-position-x: 0;
    background-position-y: 0;
  }
}

.cmp-select-group {
  width: 100%;
}

.cmp-select-group .cmp-select-label {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  line-height: 18px;
  display: block;
  margin-bottom: 5px;
  font-weight: normal;
}

.cmp-select-group .cmp-select-error,
.cmp-select-group .cmp-input-error {
  font-family: inherit;
  color: #d9534f !important;
  font-size: inherit;
  line-height: 18px;
  display: block;
  margin-top: 5px;
  font-weight: normal;
}

/* CMP-INPUT
 ****************************/

.cmp-input-group {
  width: 100%;
}

.cmp-input-group .cmp-input-error,
.cmp-input-group .cmp-input-label {
  line-height: 21px;
}

.cmp-input {
  height: 30px;
  font-size: 18px;
  width: 100%;
}

/* RADIO BUTTON
 ****************************/

.cmp-radio-type1 {
  padding-left: 0;
  display: none;
  /* Old Browser */
  /* Old Browser */
}

.cmp-radio-type1 + label span {
  display: inline-block;
  width: 22px;
  height: 23px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  background-image: url('../../images/sprite/mobile/sprite.png');
  background-position: 0 -365px;
  cursor: pointer;
}

.cmp-radio-type1.checked + label span {
  background-image: url('../../images/sprite/mobile/sprite.png');
  background-position: -25px -365px;
}

.cmp-radio-type1:checked + label span {
  background-image: url('../../images/sprite/mobile/sprite.png');
  background-position: -25px -365px;
}

.cmp-radio-type1.disabled + label span {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}

.cmp-radio-type1:disabled + label span {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}

.cmp-radio-type1 + label {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: normal;
}

.cmp-radio-type1.error + label span {
  background-image: url('../../images/sprite/mobile/sprite.png');
  background-position: -50px -365px;
}

/* CMP-LINK: LINK RED
 ****************************/

.cmp-link-red {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  color: #d9272e;
  font-size: 14px;
  display: inline-block;
  padding: 10px 0;
  text-transform: uppercase;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 700;
}

.cmp-link-red:hover,
.cmp-link-red:focus,
.cmp-link-red:active {
  color: #ae1f24;
  text-decoration: underline;
}

.cmp-link-red:hover {
  text-decoration: none;
}

/* IMMAGINE di BACKGROUND
 ****************************/

.bg-img-container {
  position: relative;
  overflow: hidden;
}

.bg-img-container .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* The url is relative to the document, not to the css file! */
  /* Prefer absolute urls to avoid confusion. */
  -ms-behavior: url('/static/js/libs/cmp_dep/polyfills/backgroundsize.min.htc');
  -webkit-transform: translate3d(0, 0, 0);
  /* Ch <36, Saf 5.1+, iOS, An =<4.4.4 */
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  /* IE 9 */
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* IE 10, Fx 16+, Op 12.1+ */
}

/* AFFIX (vedi anche main.js)
 ****************************/

.affix-prepare {
  width: 100%;
  position: fixed;
  z-index: 1000;
  bottom: -150px;
  -moz-transition-property: all;
  -moz-transition-duration: 0.5s;
  -moz-transition-delay: 0s;
  -moz-transition-easing: ease-out;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -webkit-transition-easing: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-delay: 0s;
  -o-transition-easing: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-easing: ease-out;
}

.affix {
  bottom: 0;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.75);
}

/* VERTICAL ALIGN BLOCK 
 *******************************************************************************/

.v-block {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}

.v-block-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.v-block-cell.valign-top {
  vertical-align: top;
}

.v-block-cell.valign-bottom {
  vertical-align: bottom;
}

.v-block-cell.valign-middle {
  vertical-align: middle;
}

/* CLASSI VARIE DI UTILS
 *******************************************************************************/

.d-block {
  display: block;
}

/* CLASSI BOOTSTRAP PER FARE 5 COLONNE (in pratica -24 significa 2.4 colonne)
 *******************************************************************************/

.col-xs-24,
.col-sm-24,
.col-md-24,
.col-lg-24 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-24 {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-24 {
    width: 20%;
    float: left;
  }

  .container__info {
    background: transparent;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 0;
    height: 50%;
    width: 50%;
    padding: 0 5%;
  }
}

@media (min-width: 992px) {
  .col-md-24 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1260px) {
  .col-lg-24 {
    width: 20%;
    float: left;
  }
}

.marginTop-0 {
  margin-top: 0 !important;
}

.marginTop-5 {
  margin-top: 5px !important;
}

.marginTop-10 {
  margin-top: 10px !important;
}

.marginTop-15 {
  margin-top: 15px !important;
}

.marginTop-20 {
  margin-top: 20px !important;
}

.marginTop-25 {
  margin-top: 25px !important;
}

.marginTop-30 {
  margin-top: 30px !important;
}

.marginTop-40 {
  margin-top: 40px !important;
}

.marginTop-50 {
  margin-top: 50px !important;
}

.marginTop-60 {
  margin-top: 60px !important;
}

.marginTop-m5 {
  margin-top: -5px !important;
}

.marginTop-m10 {
  margin-top: -10px !important;
}

.marginTop-m15 {
  margin-top: -15px !important;
}

.marginTop-m20 {
  margin-top: -20px !important;
}

.marginTop-m25 {
  margin-top: -25px !important;
}

.marginTop-m30 {
  margin-top: -30px !important;
}

.marginTop-m40 {
  margin-top: -40px !important;
}

.marginTop-m50 {
  margin-top: -50px !important;
}

.marginTop-m60 {
  margin-top: -60px !important;
}

.marginBottom-0 {
  margin-bottom: 0 !important;
}

.marginBottom-5 {
  margin-bottom: 5px !important;
}

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

.marginBottom-15 {
  margin-bottom: 15px !important;
}

.marginBottom-20 {
  margin-bottom: 20px !important;
}

.marginBottom-25 {
  margin-bottom: 25px !important;
}

.marginBottom-30 {
  margin-bottom: 30px !important;
}

.marginBottom-40 {
  margin-bottom: 40px !important;
}

.marginBottom-50 {
  margin-bottom: 50px !important;
}

.marginBottom-60 {
  margin-bottom: 60px !important;
}

.marginBottom-m5 {
  margin-bottom: -5px !important;
}

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

.marginBottom-m15 {
  margin-bottom: -15px !important;
}

.marginBottom-m20 {
  margin-bottom: -20px !important;
}

.marginBottom-m25 {
  margin-bottom: -25px !important;
}

.marginBottom-m30 {
  margin-bottom: -30px !important;
}

.marginBottom-m40 {
  margin-bottom: -40px !important;
}

.marginBottom-m50 {
  margin-bottom: -50px !important;
}

.marginBottom-m60 {
  margin-bottom: -60px !important;
}

/*
*[class^="xs-marginBottom-"] {
	margin-bottom: 0;
}

*[class^="xs-marginTop-"] {
	margin-top: 0;
}
*/

@media screen and (max-width: 767px) {
  .xs-marginTop-0 {
    margin-top: 0 !important;
  }

  .xs-marginTop-5 {
    margin-top: 5px !important;
  }

  .xs-marginTop-10 {
    margin-top: 10px !important;
  }

  .xs-marginTop-15 {
    margin-top: 15px !important;
  }

  .xs-marginTop-20 {
    margin-top: 20px !important;
  }

  .xs-marginTop-25 {
    margin-top: 25px !important;
  }

  .xs-marginTop-30 {
    margin-top: 30px !important;
  }

  .xs-marginTop-40 {
    margin-top: 40px !important;
  }

  .xs-marginTop-50 {
    margin-top: 50px !important;
  }

  .xs-marginTop-60 {
    margin-top: 60px !important;
  }

  .xs-marginTop-m5 {
    margin-top: -5px !important;
  }

  .xs-marginTop-m10 {
    margin-top: -10px !important;
  }

  .xs-marginTop-m15 {
    margin-top: -15px !important;
  }

  .xs-marginTop-m20 {
    margin-top: -20px !important;
  }

  .xs-marginTop-m25 {
    margin-top: -25px !important;
  }

  .xs-marginTop-m30 {
    margin-top: -30px !important;
  }

  .xs-marginTop-m40 {
    margin-top: -40px !important;
  }

  .xs-marginTop-m50 {
    margin-top: -50px !important;
  }

  .xs-marginTop-m60 {
    margin-top: -60px !important;
  }

  .xs-marginBottom-0 {
    margin-bottom: 0 !important;
  }

  .xs-marginBottom-5 {
    margin-bottom: 5px !important;
  }

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

  .xs-marginBottom-15 {
    margin-bottom: 15px !important;
  }

  .xs-marginBottom-20 {
    margin-bottom: 20px !important;
  }

  .xs-marginBottom-25 {
    margin-bottom: 25px !important;
  }

  .xs-marginBottom-30 {
    margin-bottom: 30px !important;
  }

  .xs-marginBottom-40 {
    margin-bottom: 40px !important;
  }

  .xs-marginBottom-50 {
    margin-bottom: 50px !important;
  }

  .xs-marginBottom-60 {
    margin-bottom: 60px !important;
  }

  .xs-marginBottom-m5 {
    margin-bottom: -5px !important;
  }

  .xs-marginBottom-m10 {
    margin-bottom: -10px !important;
  }

  .xs-marginBottom-m15 {
    margin-bottom: -15px !important;
  }

  .xs-marginBottom-m20 {
    margin-bottom: -20px !important;
  }

  .xs-marginBottom-m25 {
    margin-bottom: -25px !important;
  }

  .xs-marginBottom-m30 {
    margin-bottom: -30px !important;
  }

  .xs-marginBottom-m40 {
    margin-bottom: -40px !important;
  }

  .xs-marginBottom-m50 {
    margin-bottom: -50px !important;
  }

  .xs-marginBottom-m60 {
    margin-bottom: -60px !important;
  }
}

.paddingTop-0 {
  padding-top: 0 !important;
}

.paddingTop-5 {
  padding-top: 5px !important;
}

.paddingTop-10 {
  padding-top: 10px !important;
}

.paddingTop-15 {
  padding-top: 15px !important;
}

.paddingTop-20 {
  padding-top: 20px !important;
}

.paddingTop-25 {
  padding-top: 25px !important;
}

.paddingTop-30 {
  padding-top: 30px !important;
}

.paddingTop-40 {
  padding-top: 40px !important;
}

.paddingTop-50 {
  padding-top: 50px !important;
}

.paddingTop-60 {
  padding-top: 60px !important;
}

.paddingTop-m5 {
  padding-top: -5px !important;
}

.paddingTop-m10 {
  padding-top: -10px !important;
}

.paddingTop-m15 {
  padding-top: -15px !important;
}

.paddingTop-m20 {
  padding-top: -20px !important;
}

.paddingTop-m25 {
  padding-top: -25px !important;
}

.paddingTop-m30 {
  padding-top: -30px !important;
}

.paddingTop-m40 {
  padding-top: -40px !important;
}

.paddingTop-m50 {
  padding-top: -50px !important;
}

.paddingTop-m60 {
  padding-top: -60px !important;
}

.paddingBottom-0 {
  padding-bottom: 0 !important;
}

.paddingBottom-5 {
  padding-bottom: 5px !important;
}

.paddingBottom-10 {
  padding-bottom: 10px !important;
}

.paddingBottom-15 {
  padding-bottom: 15px !important;
}

.paddingBottom-20 {
  padding-bottom: 20px !important;
}

.paddingBottom-25 {
  padding-bottom: 25px !important;
}

.paddingBottom-30 {
  padding-bottom: 30px !important;
}

.paddingBottom-40 {
  padding-bottom: 40px !important;
}

.paddingBottom-50 {
  padding-bottom: 50px !important;
}

.paddingBottom-60 {
  padding-bottom: 60px !important;
}

.paddingBottom-m5 {
  padding-bottom: -5px !important;
}

.paddingBottom-m10 {
  padding-bottom: -10px !important;
}

.paddingBottom-m15 {
  padding-bottom: -15px !important;
}

.paddingBottom-m20 {
  padding-bottom: -20px !important;
}

.paddingBottom-m25 {
  padding-bottom: -25px !important;
}

.paddingBottom-m30 {
  padding-bottom: -30px !important;
}

.paddingBottom-m40 {
  padding-bottom: -40px !important;
}

.paddingBottom-m50 {
  padding-bottom: -50px !important;
}

.paddingBottom-m60 {
  padding-bottom: -60px !important;
}

/*
*[class^="xs-paddingBottom-"] {
	padding-bottom: 0 !important;
}

*[class^="xs-paddingTop-"] {
	padding-top: 0 !important;
}
*/

@media screen and (max-width: 767px) {
  .xs-paddingTop-0 {
    padding-top: 0 !important;
  }

  .xs-paddingTop-5 {
    padding-top: 5px !important;
  }

  .xs-paddingTop-10 {
    padding-top: 10px !important;
  }

  .xs-paddingTop-15 {
    padding-top: 15px !important;
  }

  .xs-paddingTop-20 {
    padding-top: 20px !important;
  }

  .xs-paddingTop-25 {
    padding-top: 25px !important;
  }

  .xs-paddingTop-30 {
    padding-top: 30px !important;
  }

  .xs-paddingTop-40 {
    padding-top: 40px !important;
  }

  .xs-paddingTop-50 {
    padding-top: 50px !important;
  }

  .xs-paddingTop-60 {
    padding-top: 60px !important;
  }

  .xs-paddingTop-m5 {
    padding-top: -5px !important;
  }

  .xs-paddingTop-m10 {
    padding-top: -10px !important;
  }

  .xs-paddingTop-m15 {
    padding-top: -15px !important;
  }

  .xs-paddingTop-m20 {
    padding-top: -20px !important;
  }

  .xs-paddingTop-m25 {
    padding-top: -25px !important;
  }

  .xs-paddingTop-m30 {
    padding-top: -30px !important;
  }

  .xs-paddingTop-m40 {
    padding-top: -40px !important;
  }

  .xs-paddingTop-m50 {
    padding-top: -50px !important;
  }

  .xs-paddingTop-m60 {
    padding-top: -60px !important;
  }

  .xs-paddingBottom-0 {
    padding-bottom: 0 !important;
  }

  .xs-paddingBottom-5 {
    padding-bottom: 5px !important;
  }

  .xs-paddingBottom-10 {
    padding-bottom: 10px !important;
  }

  .xs-paddingBottom-15 {
    padding-bottom: 15px !important;
  }

  .xs-paddingBottom-20 {
    padding-bottom: 20px !important;
  }

  .xs-paddingBottom-25 {
    padding-bottom: 25px !important;
  }

  .xs-paddingBottom-30 {
    padding-bottom: 30px !important;
  }

  .xs-paddingBottom-40 {
    padding-bottom: 40px !important;
  }

  .xs-paddingBottom-50 {
    padding-bottom: 50px !important;
  }

  .xs-paddingBottom-60 {
    padding-bottom: 60px !important;
  }

  .xs-paddingBottom-m5 {
    padding-bottom: -5px !important;
  }

  .xs-paddingBottom-m10 {
    padding-bottom: -10px !important;
  }

  .xs-paddingBottom-m15 {
    padding-bottom: -15px !important;
  }

  .xs-paddingBottom-m20 {
    padding-bottom: -20px !important;
  }

  .xs-paddingBottom-m25 {
    padding-bottom: -25px !important;
  }

  .xs-paddingBottom-m30 {
    padding-bottom: -30px !important;
  }

  .xs-paddingBottom-m40 {
    padding-bottom: -40px !important;
  }

  .xs-paddingBottom-m50 {
    padding-bottom: -50px !important;
  }

  .xs-paddingBottom-m60 {
    padding-bottom: -60px !important;
  }
}

/* TRIGGER DI APERTURA VIDEO IN OVERLAY
 *  Esempio:
 *    <a href="https://www.youtube.com/watch?v=HE_9Ses4moM" class="popup-video">
 *       <img src="http://img.youtube.com/vi/YdGk84y7NSE/0.jpg" alt="" class="img-responsive" />
 *       <span class="ico ico-play "></span>
 *    </a>
 *******************************************************************************/

.popup-video {
  display: block;
  position: relative;
}

.popup-video .ico {
  position: absolute;
  top: 50%;
  left: 50%;
}

@media (max-width: 767px) {
  .popup-video .ico-play,
  .popup-video .ico-play-big {
    margin-top: -20px;
    margin-left: -20px;
  }
}

@media (min-width: 768px) {
  .popup-video .ico-play {
    margin-top: -31px;
    margin-left: -31px;
  }

  .popup-video .ico-play-big {
    margin-top: -47px;
    margin-left: -47px;
  }

  .popup-video:hover .ico-play-big {
    background-position: -231px -189px;
  }

  .popup-video:hover .ico-play {
    background-position: -334px -189px;
  }
}

/*
  SCROLL-DOWN 
 *******************************/

.scroll-down {
  position: fixed;
  left: 50%;
  z-index: 999999999999;
  bottom: 82px;
}

/* CLASSE DA APPLICARE AGLI ELEMENTI CHE CONTENGONO RICH TEXT (es: span che fungono da
 * container o div) 
 *******************************************************************************/

.rte {
  font-size: 14px;
  line-height: 17px;
  font-family: 'Open Sans', sans-serif;
  color: #a0a3a5;
}

.rte.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.rte.Extrabold {
  font-weight: 800;
}

.rte.Bold {
  font-weight: 700;
}

.rte.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.rte.Italic {
  font-style: italic;
  font-weight: 400;
}

.rte.Regular {
  font-weight: 400;
}

.rte.Light {
  font-weight: 300;
}

.rte span,
.rte p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  margin: 0;
}

.rte p {
  /*margin-bottom: 1.1em;*/
}

.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5 {
  font-size: 14px;
  line-height: 17px;
  color: #d9272e;
  margin: 0;
  display: inline-block;
  font-family: inherit;
}

.rte blockquote {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  padding: 0 0 0 20px;
  margin: 0;
  border-left: none;
}

.rte ol,
.rte ul {
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .rte blockquote {
    padding-left: 10px !important;
  }
}

/*==============================================================================
							 TEMPLATE per SEZIONI
==============================================================================*/

/* FOOTER: NEWSLETTER SUBSCRIBE
 ****************************/

.newsletter-subscribe {
  text-align: center;
}

.newsletter-subscribe .section-body .cmp-input-group {
  display: block;
}

.newsletter-subscribe .section-body .cmp-input-group:before,
.newsletter-subscribe .section-body .cmp-input-group:after {
  content: " ";
  display: table;
}

.newsletter-subscribe .section-body .cmp-input-group:after {
  clear: both;
}

.newsletter-subscribe .section-body input[type="email"] {
  border-radius: 0 !important;
  border: solid 1px #c0c4c7;
  background: #fff;
  font-size: 14px;
  height: 60px;
  padding: 10px 25px;
}

.newsletter-subscribe .section-body button,
.newsletter-subscribe .section-body input[type="button"],
.newsletter-subscribe .section-body input[type="reset"],
.newsletter-subscribe .section-body input[type="submit"] {
  background: #d9272e;
  color: #fff;
  border: none;
  border-radius: 0 !important;
  height: 60px;
}

.newsletter-subscribe .section-body button:hover,
.newsletter-subscribe .section-body input[type="button"]:hover,
.newsletter-subscribe .section-body input[type="reset"]:hover,
.newsletter-subscribe .section-body input[type="submit"]:hover {
  background: #ae1f24;
}

@media (max-width: 767px) {
  .newsletter-subscribe {
    background: #dfe0e1;
  }

  .newsletter-subscribe .section-body {
    display: none;
    padding: 5px 13px;
  }

  .newsletter-subscribe .section-body .field:before,
  .newsletter-subscribe .section-body .field:after {
    content: " ";
    display: table;
  }

  .newsletter-subscribe .section-body .field:after {
    clear: both;
  }

  .newsletter-subscribe .section-body .input-group {
    position: absolute;
    width: auto;
    right: 92px;
    left: 10px;
    display: block;
  }

  .newsletter-subscribe .section-body input[type="email"] {
    height: 30px;
    border: none;
    padding: 10px 10px;
    text-align: center;
  }

  .newsletter-subscribe .section-body button,
  .newsletter-subscribe .section-body input[type="button"],
  .newsletter-subscribe .section-body input[type="reset"],
  .newsletter-subscribe .section-body input[type="submit"] {
    float: right;
    height: 30px;
  }

  .newsletter-subscribe .cta-toggle-newsletter {
    display: block;
    padding: 10px;
    font-size: 10px;
    color: #fff;
    background: #d9272e;
    text-transform: uppercase;
    font-family: "museo-sans", Arial;
    font-style: normal;
    font-weight: 300;
    -moz-box-shadow: -1px 0 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: -1px 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: -1px 0 5px rgba(0, 0, 0, 0.5);
  }

  .newsletter-subscribe .cta-toggle-newsletter .ico {
    vertical-align: text-top;
    margin-right: 5px;
  }

  .newsletter-subscribe.open .section-body {
    display: block;
  }
}

@media (min-width: 768px) {
  .newsletter-subscribe {
    padding-bottom: 40px;
    background: url('../../images/newsletterTopRow.png') no-repeat top center;
  }

  .newsletter-subscribe .section-head {
    width: 520px;
    margin: 0 auto;
    padding: 45px 0 22px;
  }

  .newsletter-subscribe .section-head h3 {
    margin: 0 0 15px;
    text-transform: uppercase;
    font-size: 16px;
    color: #d9272e;
    font-family: "museo-sans", Arial;
    font-style: normal;
    font-weight: 700;
  }

  .newsletter-subscribe .section-head p {
    font-size: 16px;
  }

  .newsletter-subscribe .section-body {
    width: 338px;
    margin: 0 auto;
  }

  .newsletter-subscribe .section-body .field {
    position: relative;
  }

  .newsletter-subscribe .section-body input[type="email"] {
    padding-right: 85px;
  }

  .newsletter-subscribe .section-body button,
  .newsletter-subscribe .section-body input[type="button"],
  .newsletter-subscribe .section-body input[type="reset"],
  .newsletter-subscribe .section-body input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
    width: 60px;
    height: 60px;
  }
}

/* FASCIA: SLIDER TEMPORIZZATA TIPO1
 ****************************/

.fascia-slider-temporizzata1 {
  height: 615px;
}

.fascia-slider-temporizzata1 .slider-box {
  height: 505px;
  background-color: #dfe0e1;
}

.fascia-slider-temporizzata1 .slider-box .slider_full_width_dots {
  max-width: 1200px;
  margin: 0 auto;
  display: none;
}

.fascia-slider-temporizzata1 .slider-box .slider_full_width_dots.active {
  display: block;
}

.fascia-slider-temporizzata1 .slider-box .slider_full_width_dots .slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
  color: #fff;
  /* NOTA: è possibile settare un bg con opacity direttamente sullo .slider-content che coinvolgerà .title e .subtitle */
}

.fascia-slider-temporizzata1 .slider-box .slider_full_width_dots .slider-content .title {
  font-size: 50px;
  line-height: 52px;
  font-weight: 300;
  letter-spacing: 0;
  color: #fff;
}

.fascia-slider-temporizzata1 .slider-box .slider_full_width_dots .slider-content .subtitle {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
  padding-top: 5px;
}

.fascia-slider-temporizzata1 .slider-box .slider_full_width_dots .slider-content a.cta-standard {
  margin-top: 44px;
  margin-bottom: 128px;
}

.fascia-slider-temporizzata1 .slider-box .slider:focus {
  outline: none !important;
}

.fascia-slider-temporizzata1 .slider-box .slider-next,
.fascia-slider-temporizzata1 .slider-box .slider-prev {
  z-index: 1;
  bottom: 130px;
  position: absolute;
  cursor: pointer;
}

.fascia-slider-temporizzata1 .slider-box .slider-next {
  right: 425px;
}

.fascia-slider-temporizzata1 .slider-box .slider-prev {
  left: 425px;
}

.fascia-slider-temporizzata1 .slider-box .slick-dots {
  display: inline-block;
  width: auto;
  right: 140px;
  bottom: 122px;
}

.fascia-slider-temporizzata1 .slider-box .slick-dots li {
  margin: 0 1px;
}

.fascia-slider-temporizzata1 .slider-box .slick-dots li button:before {
  color: #ded6cb;
  font-size: 13px;
  opacity: 1;
}

.fascia-slider-temporizzata1 .slider-box .slick-dots li button:hover:before {
  opacity: 0.5;
}

.fascia-slider-temporizzata1 .slider-box .slick-dots li.slick-active button:before {
  color: #d9272e;
  opacity: 1;
}

.fascia-slider-temporizzata1 .slider-box img.slide-img {
  margin: 0 auto;
}

.fascia-slider-temporizzata1 .temporizzatore {
  height: 199px;
  position: relative;
  top: -88px;
  z-index: 999;
}

.fascia-slider-temporizzata1 .temporizzatore .container,
.fascia-slider-temporizzata1 .temporizzatore .row,
.fascia-slider-temporizzata1 .temporizzatore div[class^="col-"] {
  height: 100%;
}

.fascia-slider-temporizzata1 .temporizzatore .row {
  /*border: 2px solid @color-white;*/
  background: #fff;
}

.fascia-slider-temporizzata1 .temporizzatore .row div[class^="col-"] {
  padding: 0;
}

.fascia-slider-temporizzata1 .temporizzatore .row .slider-switcher {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #fff;
  position: relative;
}

.fascia-slider-temporizzata1 .temporizzatore .row .slider-switcher .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.5)), color-stop(100%, transparent));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  /* Opera11.10+ */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  /* IE10+ */
  filter: formatstring("progid:DXImageTransform.Microsoft.gradient( startColorstr='{0}', endColorstr='{1}',GradientType=0 )", rgba(0, 0, 0, 0.5), transparent);
  /* IE6-9 */
  background: linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  /* W3C */
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  line-height: 19px;
}

.fascia-slider-temporizzata1 .temporizzatore .row .slider-switcher .overlay .capitalize {
  text-transform: capitalize !important;
  font-size: 14px;
}

.fascia-slider-temporizzata1 .temporizzatore .row .slider-switcher.active .overlay {
  background: none;
  background-position: bottom left;
  background-size: 100% 15px;
  color: #d9272e !important;
}

@media screen and (min-width: 992px) and (max-width: 1259px) {
  .fascia-slider-temporizzata1 {
    height: 454px;
  }

  .fascia-slider-temporizzata1 .temporizzatore {
    height: 156px;
  }

  .fascia-slider-temporizzata1 .slider-box {
    height: 385px;
  }

  .fascia-slider-temporizzata1 .slider-box .slider-next {
    right: 325px;
  }

  .fascia-slider-temporizzata1 .slider-box .slider-prev {
    left: 325px;
  }
}

@media screen and (min-width: 1045px) and (max-width: 1259px) {
  .fascia-slider-temporizzata1 {
    height: 542px;
  }

  .fascia-slider-temporizzata1 .slider-box {
    height: auto;
  }

  .fascia-slider-temporizzata1 .temporizzatore {
    /*top: -5px;*/
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-slider-temporizzata1 {
    height: 556px;
  }

  .fascia-slider-temporizzata1 .slider-box .slider-prev {
    left: 230px;
  }

  .fascia-slider-temporizzata1 .slider-box .slider-next {
    right: 230px;
  }

  .fascia-slider-temporizzata1 .slider-box .slick-dots {
    right: 13px;
  }

  .fascia-slider-temporizzata1 .slider-box img.slide-img {
    height: 100%;
    width: auto;
  }

  .fascia-slider-temporizzata1 .temporizzatore {
    height: 121px;
  }

  .fascia-slider-temporizzata1 .temporizzatore .row .slider-switcher .overlay {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-slider-temporizzata1 {
    /*height: auto;*/
    /*height: 602px;*/
    height: 512px;
  }

  .fascia-slider-temporizzata1 .slider-box {
    height: 510px;
  }

  .fascia-slider-temporizzata1 .slider-box img.img-responsive.visible-xs {
    margin: 0 auto;
  }

  .fascia-slider-temporizzata1 .temporizzatore {
    height: auto;
    /*top: -30px;*/
    top: -422px;
    margin-bottom: -32px;
    z-index: 1;
    max-width: 292px;
    left: 50%;
    margin-left: -146px;
  }

  .fascia-slider-temporizzata1 .temporizzatore div[class^="col-"] {
    height: auto;
  }

  .fascia-slider-temporizzata1 .temporizzatore .row .slider-switcher {
    height: auto;
    overflow: hidden;
  }

  .fascia-slider-temporizzata1 .temporizzatore .row .slider-switcher .overlay {
    font-size: 12px;
  }

  .fascia-slider-temporizzata1 .temporizzatore .row .slider-switcher img {
    width: 100%;
  }

  .fascia-slider-temporizzata1 .mobile-title {
    text-transform: uppercase;
    font-size: 25px;
    line-height: 30px;
    color: #d9272e;
    padding: 15px;
    text-align: center;
    display: block;
  }

  .fascia-slider-temporizzata1.fix-mobile-online .temporizzatore {
    top: 10px;
  }
}

html.ie9 .fascia-slider-temporizzata1 .slider-box .slider {
  z-index: 0 !important;
}

html.ie9 .fascia-slider-temporizzata1 .slider-box .slider .slide {
  z-index: 0 !important;
}

/* FASCIA #1 [FULLWIDTH] */

.fascia-slider-temporizzata1.fascia-fullwidth .slider-box .slider_full_width_dots {
  width: 100%;
  max-width: none;
}

.fascia-slider-temporizzata1.fascia-fullwidth .slider-box img.slide-img {
  width: 100%;
}

@media screen and (min-width: 1260px) {
  .fascia-slider-temporizzata1.fascia-fullwidth {
    height: auto;
  }

  .fascia-slider-temporizzata1.fascia-fullwidth .slider-box {
    height: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-slider-temporizzata1.fascia-fullwidth img.slide-img {
    height: 100%;
    width: auto !important;
  }
}

@media screen and (max-width: 767px) {
  .fascia-slider-temporizzata1.fascia-fullwidth {
    height: 512px;
  }

  .fascia-slider-temporizzata1.fascia-fullwidth .slider-box {
    height: 510px;
  }
}

/* FASCIA: SLIDER STANDARD
 ****************************/

.fascia-slider.tipo1 .slider-container .slide {
  text-align: center;
  padding: 3px 5px 20px;
}

.fascia-slider.tipo1 .slider-container .slide:focus {
  outline: none !important;
}

.fascia-slider.tipo1 .slider-container .slide h4 {
  font-size: 18px;
  line-height: 24px;
  color: #d9272e;
  text-transform: uppercase;
  text-align: center;
  margin: 26px auto 13px;
}

.fascia-slider.tipo1 .slider-container .slide span {
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
  max-width: 350px;
  display: block;
  margin: 0 auto;
}

.fascia-slider.tipo1 .slider-container .slider-next,
.fascia-slider.tipo1 .slider-container .slider-prev {
  cursor: pointer;
  position: absolute;
  top: 124px;
}

.fascia-slider.tipo1 .slider-container .slider-next {
  right: -45px;
}

.fascia-slider.tipo1 .slider-container .slider-prev {
  left: -45px;
}

.fascia-slider.tipo1 .slider-container .slick-dots li {
  margin: 0 1px;
}

.fascia-slider.tipo1 .slider-container .slick-dots li button:before {
  color: #ded6cb;
  font-size: 13px;
  opacity: 1;
}

.fascia-slider.tipo1 .slider-container .slick-dots li button:hover:before {
  opacity: 0.5;
}

.fascia-slider.tipo1 .slider-container .slick-dots li.slick-active button:before {
  color: #d9272e;
  opacity: 1;
}

.fascia-slider.tipo1 .cta {
  padding: 40px 0 44px;
}

@media screen and (min-width: 992px) and (max-width: 1259px) {
  .fascia-slider.tipo1 .slider-container .slider-prev {
    /*left: -5px;*/
    display: none !important;
  }

  .fascia-slider.tipo1 .slider-container .slider-next {
    /*right: -5px;*/
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-slider.tipo1 .slider-container .slider-next,
  .fascia-slider.tipo1 .slider-container .slider-prev {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .fascia-slider.tipo1 .slider-container .slide {
    padding: 3px 5px 0;
    /*h4 {
						font-size: 12px;
						line-height: 12px;
						margin: 20px auto 12px;
					}

					span {
						font-size: 12px;
						line-height: 12px;
					}*/
  }

  .fascia-slider.tipo1 .slider-container .slide img.img-responsive {
    max-height: 170px;
  }

  .fascia-slider.tipo1 .slider-container .slider-next,
  .fascia-slider.tipo1 .slider-container .slider-prev {
    display: none !important;
  }

  .fascia-slider.tipo1 .cta {
    padding: 22px 0 40px;
  }
}

.fascia-slider.tipo2 {
  background: #dfdcda;
  padding: 38px 0;
  margin: 16px 0;
}

.fascia-slider.tipo2 .h2-type3 {
  margin-bottom: 40px;
}

.fascia-slider.tipo2 .slider-container {
  margin-bottom: 38px;
}

.fascia-slider.tipo2 .slide {
  background: #fff;
  border-right: 2px solid #eeebe9;
  padding-bottom: 48px;
}

.fascia-slider.tipo2 .slide:focus {
  outline: none !important;
}

.fascia-slider.tipo2 .slide h4 {
  font-size: 18px;
  line-height: 24px;
  color: #d9272e;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  margin-bottom: 26px;
}

.fascia-slider.tipo2 .slide span,
.fascia-slider.tipo2 .slide .rte {
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
  max-width: 235px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.fascia-slider.tipo2 .slider-prev,
.fascia-slider.tipo2 .slider-next {
  display: none;
}

.fascia-slider.tipo2 .slick-dots {
  bottom: -40px;
}

.fascia-slider.tipo2 .slick-dots li {
  margin: 0 1px;
}

.fascia-slider.tipo2 .slick-dots li button:before {
  color: #fff;
  font-size: 13px;
  opacity: 1;
}

.fascia-slider.tipo2 .slick-dots li button:hover:before {
  opacity: 0.5;
}

.fascia-slider.tipo2 .slick-dots li.slick-active button:before {
  color: #d9272e;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .fascia-slider.tipo2 {
    padding: 25px 0 22px;
    margin: 8px 0;
  }

  .fascia-slider.tipo2 .h2-type3 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 25px;
  }

  .fascia-slider.tipo2 .slider-container .slide {
    padding: 3px 5px 0;
  }

  .fascia-slider.tipo2 .slider-container .slide h4 {
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    margin: 20px auto;
  }

  .fascia-slider.tipo2 .slider-container .slide span {
    font-size: 12px;
    line-height: 14px;
    color: #8b8f92;
    max-width: 90%;
    padding-bottom: 5px;
  }

  .fascia-slider.tipo2 .slider-container .slide img.img-responsive {
    max-height: 155px;
  }

  .fascia-slider.tipo2 .slick-dots {
    background: #fff;
    bottom: -54px;
    padding: 10px 0;
  }

  .fascia-slider.tipo2 .slick-dots li {
    margin: 0 1px;
  }

  .fascia-slider.tipo2 .slick-dots li button:before {
    color: #dad5d1;
    font-size: 13px;
    opacity: 1;
  }

  .fascia-slider.tipo2 .slick-dots li button:hover:before {
    opacity: 0.5;
  }

  .fascia-slider.tipo2 .slick-dots li.slick-active button:before {
    color: #d9272e;
    opacity: 1;
  }

  .fascia-slider.tipo2 .cta {
    padding: 28px 0 0;
  }

  .fascia-slider.tipo2 .cta .cmp-button-red-small {
    display: inline-block !important;
  }
}

.fascia-slider.tipo3 {
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

.fascia-slider.tipo3 .slide .img-responsive {
  margin: 0 auto;
}

.fascia-slider.tipo3 .slide .tit {
  margin-top: 26px;
  margin-bottom: 13px;
  font-size: 26px;
  line-height: 28px;
  color: #d9272e;
}

.fascia-slider.tipo3 .slide .subtit {
  font-size: 18px;
  line-height: 24px;
  color: #65656a;
}

.fascia-slider.tipo3 .slick-arrow {
  display: none;
}

.fascia-slider.tipo3 .slick-dots {
  position: relative;
  bottom: 0;
  margin: 20px 0;
}

.fascia-slider.tipo3 .slick-dots li {
  margin: 0 1px;
}

.fascia-slider.tipo3 .slick-dots li button:before {
  color: #ded6cb;
  font-size: 13px;
  opacity: 1;
}

.fascia-slider.tipo3 .slick-dots li button:hover:before {
  opacity: 0.5;
}

.fascia-slider.tipo3 .slick-dots li.slick-active button:before {
  color: #d9272e;
  opacity: 1;
}

@media (max-width: 991px) {
  .fascia-slider.tipo3 .slick-dots {
    margin-top: 26px;
  }

  .fascia-slider.tipo3 .slide .tit {
    font-size: 25px;
    line-height: 30px;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .fascia-slider.tipo3 .slide .subtit {
    font-size: 15px;
    line-height: 18px;
  }
}

/* FASCIA #7 "SLIDER TIPO3" [FULLWIDTH]
 ***************************************/

.fascia-slider.tipo3.fascia-fullwidth .container {
  width: auto;
  padding: 0;
}

.fascia-slider.tipo3.fascia-fullwidth .slide .img-responsive {
  width: 100%;
}

/* FASCIA: SLIDER STANDARD NUMERO 10
 ****************************/

.fascia-slider-n10 {
  padding: 20px 0;
}

.fascia-slider-n10 .bg {
  background-color: #f8f6f7;
  height: 500px;
}

.fascia-slider-n10 .bg .slider {
  height: 100%;
  margin-bottom: 0;
}

.fascia-slider-n10 .bg .slider .slick-list,
.fascia-slider-n10 .bg .slider .slick-track {
  height: 100%;
}

.fascia-slider-n10 .bg .slider .slide {
  position: relative;
  height: 100%;
}

.fascia-slider-n10 .bg .slider .slide .slider-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fascia-slider-n10 .bg .slider .slide .slider-content .t-left {
  max-width: 50%;
  display: inline-block;
  float: left;
  text-align: center;
  margin-top: 170px;
}

.fascia-slider-n10 .bg .slider .slide .slider-content .t-right {
  max-width: 50%;
  display: inline-block;
  float: right;
  text-align: center;
  margin-top: 170px;
}

.fascia-slider-n10 .bg .slider .slide .slider-content .title {
  font-size: 40px;
  line-height: 43px;
}

.fascia-slider-n10 .bg .slider .slide .slider-content .subtitle {
  font-size: 22px;
  line-height: 25px;
}

.fascia-slider-n10 .bg .slider .controls {
  position: absolute;
  bottom: 79px;
  width: 100%;
  text-align: center;
}

.fascia-slider-n10 .bg .slider .controls .slider-next,
.fascia-slider-n10 .bg .slider .controls .slider-prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -16px;
}

.fascia-slider-n10 .bg .slider .controls .slider-next {
  right: 270px;
}

.fascia-slider-n10 .bg .slider .controls .slider-prev {
  left: 270px;
}

.fascia-slider-n10 .bg .slider .slick-dots {
  bottom: 16px;
}

.fascia-slider-n10 .bg .slider .slick-dots li {
  margin: 0 1px;
}

.fascia-slider-n10 .bg .slider .slick-dots li button:before {
  color: #ded6cb;
  font-size: 13px;
  opacity: 1;
}

.fascia-slider-n10 .bg .slider .slick-dots li button:hover:before {
  opacity: 0.5;
}

.fascia-slider-n10 .bg .slider .slick-dots li.slick-active button:before {
  color: #d9272e;
  opacity: 1;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-slider-n10 .bg .slider .slide .slider-content .t-right,
  .fascia-slider-n10 .bg .slider .slide .slider-content .t-left {
    margin-top: 120px;
  }

  .fascia-slider-n10 .bg .slider .slide .slider-content .title {
    font-size: 34px;
  }

  .fascia-slider-n10 .bg .slider .slide .slider-content .subtitle {
    font-size: 19px;
  }

  .fascia-slider-n10 .bg .slider .controls .slider-next {
    right: 145px;
  }

  .fascia-slider-n10 .bg .slider .controls .slider-prev {
    left: 145px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-slider-n10 {
    padding: 10px 0 25px;
  }

  .fascia-slider-n10 .bg {
    height: 250px;
  }

  .fascia-slider-n10 .bg .slider .slide .slider-content .t-left,
  .fascia-slider-n10 .bg .slider .slide .slider-content .t-right {
    margin-top: 48px;
    padding: 0 12px;
  }

  .fascia-slider-n10 .bg .slider .slide .slider-content .title {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 5px;
  }

  .fascia-slider-n10 .bg .slider .slide .slider-content .subtitle {
    font-size: 12px;
    line-height: 15px;
  }

  .fascia-slider-n10 .bg .slider .controls {
    bottom: 68px;
  }

  .fascia-slider-n10 .bg .slider .controls .cmp-button-red-small {
    display: inline-block !important;
  }

  .fascia-slider-n10 .bg .slider .controls .slider-prev {
    left: 0px;
  }

  .fascia-slider-n10 .bg .slider .controls .slider-next {
    right: 0px;
  }

  .fascia-slider-n10 .bg .slider .controls .slider-prev,
  .fascia-slider-n10 .bg .slider .controls .slider-next {
    margin-top: -13px;
  }

  .fascia-slider-n10 .bg .slider .slick-dots {
    bottom: 9px;
  }
}

/* FASCIA #13: SLIDER MOBILE ONLY
 ****************************/

.fascia-slider-mobile-only .slider-container:before,
.fascia-slider-mobile-only .slider-container:after {
  content: " ";
  display: table;
}

.fascia-slider-mobile-only .slider-container:after {
  clear: both;
}

.fascia-slider-mobile-only .slider-container .slide {
  float: left;
  padding: 3px 1px 45px 0px;
  width: 33.3333%;
  text-align: center;
}

.fascia-slider-mobile-only .slider-container .slide:focus {
  outline: none !important;
}

.fascia-slider-mobile-only .slider-container .slide h1,
.fascia-slider-mobile-only .slider-container .slide h2,
.fascia-slider-mobile-only .slider-container .slide h3,
.fascia-slider-mobile-only .slider-container .slide h4 {
  font-size: 18px;
  line-height: 20px;
  color: #d9272e;
  text-transform: uppercase;
  text-align: center;
  margin: 34px auto 28px;
  font-family: 'Open Sans', sans-serif;
}

.fascia-slider-mobile-only .slider-container .slide h1.Extrabold-Italic,
.fascia-slider-mobile-only .slider-container .slide h2.Extrabold-Italic,
.fascia-slider-mobile-only .slider-container .slide h3.Extrabold-Italic,
.fascia-slider-mobile-only .slider-container .slide h4.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-slider-mobile-only .slider-container .slide h1.Extrabold,
.fascia-slider-mobile-only .slider-container .slide h2.Extrabold,
.fascia-slider-mobile-only .slider-container .slide h3.Extrabold,
.fascia-slider-mobile-only .slider-container .slide h4.Extrabold {
  font-weight: 800;
}

.fascia-slider-mobile-only .slider-container .slide h1.Bold,
.fascia-slider-mobile-only .slider-container .slide h2.Bold,
.fascia-slider-mobile-only .slider-container .slide h3.Bold,
.fascia-slider-mobile-only .slider-container .slide h4.Bold {
  font-weight: 700;
}

.fascia-slider-mobile-only .slider-container .slide h1.Semibold-Italic,
.fascia-slider-mobile-only .slider-container .slide h2.Semibold-Italic,
.fascia-slider-mobile-only .slider-container .slide h3.Semibold-Italic,
.fascia-slider-mobile-only .slider-container .slide h4.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-slider-mobile-only .slider-container .slide h1.Italic,
.fascia-slider-mobile-only .slider-container .slide h2.Italic,
.fascia-slider-mobile-only .slider-container .slide h3.Italic,
.fascia-slider-mobile-only .slider-container .slide h4.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-slider-mobile-only .slider-container .slide h1.Regular,
.fascia-slider-mobile-only .slider-container .slide h2.Regular,
.fascia-slider-mobile-only .slider-container .slide h3.Regular,
.fascia-slider-mobile-only .slider-container .slide h4.Regular {
  font-weight: 400;
}

.fascia-slider-mobile-only .slider-container .slide h1.Light,
.fascia-slider-mobile-only .slider-container .slide h2.Light,
.fascia-slider-mobile-only .slider-container .slide h3.Light,
.fascia-slider-mobile-only .slider-container .slide h4.Light {
  font-weight: 300;
}

.fascia-slider-mobile-only .slider-container .slide span,
.fascia-slider-mobile-only .slider-container .slide p {
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
  max-width: 270px;
  display: block;
  margin: 0 auto;
  padding: 0 15px;
}

.fascia-slider-mobile-only .slider-container .slider-next,
.fascia-slider-mobile-only .slider-container .slider-prev {
  display: none;
}

.fascia-slider-mobile-only .slider-container .slick-dots {
  display: none;
}

.fascia-slider-mobile-only .slider-container .slick-dots li {
  margin: 0 1px;
}

.fascia-slider-mobile-only .slider-container .slick-dots li button:before {
  color: #ded6cb;
  font-size: 13px;
  opacity: 1;
}

.fascia-slider-mobile-only .slider-container .slick-dots li button:hover:before {
  opacity: 0.5;
}

.fascia-slider-mobile-only .slider-container .slick-dots li.slick-active button:before {
  color: #d9272e;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .fascia-slider-mobile-only .slider-container .slide {
    padding: 3px 5px 0;
  }

  .fascia-slider-mobile-only .slider-container .slide h4 {
    font-size: 12px;
    line-height: 12px;
    margin: 20px auto 12px;
  }

  .fascia-slider-mobile-only .slider-container .slide span {
    max-width: 350px;
    padding: 0;
    font-size: 12px;
    line-height: 12px;
  }

  .fascia-slider-mobile-only .slider-container .slide img.img-responsive {
    max-height: 170px;
  }

  .fascia-slider-mobile-only .slider-container .slider-next,
  .fascia-slider-mobile-only .slider-container .slider-prev {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .fascia-slider-mobile-only .slider-container .slide img {
    border-right: 1px solid #fff;
  }
}

@media screen and (max-width: 767px) {
  .fascia-slider-mobile-only .slider-container .slide h1,
  .fascia-slider-mobile-only .slider-container .slide h2,
  .fascia-slider-mobile-only .slider-container .slide h3,
  .fascia-slider-mobile-only .slider-container .slide h4 {
    font-size: 18px;
    line-height: 24px;
  }

  .fascia-slider-mobile-only .slider-container .slide span,
  .fascia-slider-mobile-only .slider-container .slide p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 22px;
  }
}

/* FASCIA #13: SLIDER MOBILE ONLY [FULLWIDTH]
 ********************************************/

.fascia-slider-mobile-only.fascia-fullwidth .container {
  width: auto;
  padding: 0;
}

.fascia-slider-mobile-only.fascia-fullwidth .container img {
  width: 100%;
  height: auto !important;
  max-height: none !important;
}

/* FASCIA: SERVIZIO CLIENTI
 ****************************/

.fascia-servizio-clienti {
  clear: both;
  /*margin: 14px 0 28px;*/
  margin: 0;
  padding: 10px 0;
  background: #f2f2f3 !important;
  text-align: center;
}

.fascia-servizio-clienti .label-sc {
  margin-right: 38px;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  color: #65656a;
  display: inline-block;
}

.fascia-servizio-clienti .cmp-button-gray-medium.tel {
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
  background: #dedfe0 !important;
  color: #65656a;
  /*&:hover {
			background: #65656a !important;
			color: #fff;

			.ico-phone-big {
				display: inline-block;
			}

			.ico-phone-big-gray {
				display: none;
			}
		}*/
}

.fascia-servizio-clienti .cmp-button-gray-medium.tel .ico-phone-big {
  display: none;
  padding-right: 15px !important;
}

.fascia-servizio-clienti.con-titolo {
  padding: 22px 0 30px;
}

.fascia-servizio-clienti.con-titolo .title {
  margin: 0 0 38px;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  color: #d9272e;
}

@media (max-width: 767px) {
  .fascia-servizio-clienti {
    padding: 7px 0;
    background: none;
  }

  .fascia-servizio-clienti .cmp-button-gray-medium {
    height: 39px;
    padding-top: 7px;
    text-align: center;
  }

  .fascia-servizio-clienti .cmp-button-gray-medium .text {
    font-size: 12px;
    line-height: 13px;
    display: inline-block;
    text-align: left;
    position: relative;
    top: -1px;
  }

  .fascia-servizio-clienti.con-titolo {
    padding: 13px 0 16px;
    background: #f8f7f7;
  }

  .fascia-servizio-clienti.con-titolo .title {
    margin-bottom: 12px;
    font-size: 12px;
  }
}

/* FASCIA #3: SPLITTED VIDEO
 ****************************/

.fascia-splitted-video {
  margin: 18px 0;
}

.fascia-splitted-video .video-anteprima .col-xs-6 {
  padding: 0;
}

.fascia-splitted-video .video-anteprima .col-descrizione {
  text-align: center;
  background: #e9e8e7;
}

.fascia-splitted-video .video-anteprima .col-descrizione .h2-type3 {
  font-size: 25px;
  line-height: 30px;
  margin-top: 30px;
  margin-bottom: 27px;
}

.fascia-splitted-video .video-anteprima .col-descrizione .cta-standard {
  margin-bottom: 28px;
}

.fascia-splitted-video .video-anteprima .col-descrizione .v-block {
  max-width: 380px;
  margin: 0 auto;
}

.fascia-splitted-video .video-player {
  position: relative;
}

.fascia-splitted-video .video-player .fspv-close-video {
  display: block;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.fascia-splitted-video .video-player .fspv-close-video > .ico {
  display: block;
}

.fascia-splitted-video.status-anteprima .video-player {
  display: none;
}

.fascia-splitted-video.status-player .video-anteprima {
  display: none;
}

@media (max-width: 767px) {
  .fascia-splitted-video .video-anteprima .col-descrizione p {
    display: none;
  }
}

@media (min-width: 992px) {
  .fascia-splitted-video .video-anteprima .col-descrizione .h2-type3 {
    color: #d9272e;
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 28px;
  }

  .fascia-splitted-video .video-anteprima .col-descrizione p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 24px;
    color: #65656a;
  }

  .fascia-splitted-video .video-player .fspv-close-video {
    padding: 20px;
  }
}

/* FASCIA: "INTESTAZIONE" (titolo + sottotitolo)
 ****************************/

.fascia-intestazione {
  text-align: center;
}

.fascia-intestazione h1,
.fascia-intestazione h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 300;
  line-height: 30px;
}

.fascia-intestazione h3 {
  font-size: 26px;
  line-height: 29px;
  font-weight: 300;
  color: #d9272e;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fascia-intestazione h2 + h3,
.fascia-intestazione h1 + h3 {
  margin-top: 8px;
}

@media (min-width: 992px) {
  .fascia-intestazione h1,
  .fascia-intestazione h2 {
    font-size: 36px;
    line-height: 40px;
    color: #d9272e;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
}

@media (max-width: 991px) {
  .fascia-intestazione h1,
  .fascia-intestazione h2 {
    font-size: 28px;
    line-height: 32px;
    margin-top: 20px;
  }
}

/* FASCIA #8: IMMAGINE FULLWIDTH
 ****************************/

.fascia-immagine-fullwidth .container {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

.fascia-immagine-fullwidth .overlay-box {
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  bottom: 0;
  /*height: 100%;*/
  background: rgba(0, 0, 0, 0.6);
}

.fascia-immagine-fullwidth .overlay-box .v-align {
  max-width: 996px;
  margin: 0 auto;
}

.fascia-immagine-fullwidth .overlay-box .rte,
.fascia-immagine-fullwidth .overlay-box h1,
.fascia-immagine-fullwidth .overlay-box h2,
.fascia-immagine-fullwidth .overlay-box h3 {
  color: #fff;
  display: block;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 50px;
  line-height: 52px;
}

.fascia-immagine-fullwidth .overlay-box .rte.Extrabold-Italic,
.fascia-immagine-fullwidth .overlay-box h1.Extrabold-Italic,
.fascia-immagine-fullwidth .overlay-box h2.Extrabold-Italic,
.fascia-immagine-fullwidth .overlay-box h3.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-immagine-fullwidth .overlay-box .rte.Extrabold,
.fascia-immagine-fullwidth .overlay-box h1.Extrabold,
.fascia-immagine-fullwidth .overlay-box h2.Extrabold,
.fascia-immagine-fullwidth .overlay-box h3.Extrabold {
  font-weight: 800;
}

.fascia-immagine-fullwidth .overlay-box .rte.Bold,
.fascia-immagine-fullwidth .overlay-box h1.Bold,
.fascia-immagine-fullwidth .overlay-box h2.Bold,
.fascia-immagine-fullwidth .overlay-box h3.Bold {
  font-weight: 700;
}

.fascia-immagine-fullwidth .overlay-box .rte.Semibold-Italic,
.fascia-immagine-fullwidth .overlay-box h1.Semibold-Italic,
.fascia-immagine-fullwidth .overlay-box h2.Semibold-Italic,
.fascia-immagine-fullwidth .overlay-box h3.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-immagine-fullwidth .overlay-box .rte.Italic,
.fascia-immagine-fullwidth .overlay-box h1.Italic,
.fascia-immagine-fullwidth .overlay-box h2.Italic,
.fascia-immagine-fullwidth .overlay-box h3.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-immagine-fullwidth .overlay-box .rte.Regular,
.fascia-immagine-fullwidth .overlay-box h1.Regular,
.fascia-immagine-fullwidth .overlay-box h2.Regular,
.fascia-immagine-fullwidth .overlay-box h3.Regular {
  font-weight: 400;
}

.fascia-immagine-fullwidth .overlay-box .rte.Light,
.fascia-immagine-fullwidth .overlay-box h1.Light,
.fascia-immagine-fullwidth .overlay-box h2.Light,
.fascia-immagine-fullwidth .overlay-box h3.Light {
  font-weight: 300;
}

@media screen and (min-width: 768px) and (max-width: 1259px) {
  .fascia-immagine-fullwidth .container {
    width: 100%;
    overflow: hidden;
  }

  .fascia-immagine-fullwidth .overlay-box {
    /*width: 1200px;*/
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .fascia-immagine-fullwidth {
    /*.container {
			padding-left: 6px;
			padding-right: 6px;
		}*/
  }

  .fascia-immagine-fullwidth .overlay-box {
    left: 15px;
    right: 15px;
  }

  .fascia-immagine-fullwidth .overlay-box .rte,
  .fascia-immagine-fullwidth .overlay-box h1,
  .fascia-immagine-fullwidth .overlay-box h2,
  .fascia-immagine-fullwidth .overlay-box h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 25px;
    line-height: 27px;
    letter-spacing: 0;
  }

  .fascia-immagine-fullwidth .overlay-box .rte.Extrabold-Italic,
  .fascia-immagine-fullwidth .overlay-box h1.Extrabold-Italic,
  .fascia-immagine-fullwidth .overlay-box h2.Extrabold-Italic,
  .fascia-immagine-fullwidth .overlay-box h3.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .fascia-immagine-fullwidth .overlay-box .rte.Extrabold,
  .fascia-immagine-fullwidth .overlay-box h1.Extrabold,
  .fascia-immagine-fullwidth .overlay-box h2.Extrabold,
  .fascia-immagine-fullwidth .overlay-box h3.Extrabold {
    font-weight: 800;
  }

  .fascia-immagine-fullwidth .overlay-box .rte.Bold,
  .fascia-immagine-fullwidth .overlay-box h1.Bold,
  .fascia-immagine-fullwidth .overlay-box h2.Bold,
  .fascia-immagine-fullwidth .overlay-box h3.Bold {
    font-weight: 700;
  }

  .fascia-immagine-fullwidth .overlay-box .rte.Semibold-Italic,
  .fascia-immagine-fullwidth .overlay-box h1.Semibold-Italic,
  .fascia-immagine-fullwidth .overlay-box h2.Semibold-Italic,
  .fascia-immagine-fullwidth .overlay-box h3.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .fascia-immagine-fullwidth .overlay-box .rte.Italic,
  .fascia-immagine-fullwidth .overlay-box h1.Italic,
  .fascia-immagine-fullwidth .overlay-box h2.Italic,
  .fascia-immagine-fullwidth .overlay-box h3.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .fascia-immagine-fullwidth .overlay-box .rte.Regular,
  .fascia-immagine-fullwidth .overlay-box h1.Regular,
  .fascia-immagine-fullwidth .overlay-box h2.Regular,
  .fascia-immagine-fullwidth .overlay-box h3.Regular {
    font-weight: 400;
  }

  .fascia-immagine-fullwidth .overlay-box .rte.Light,
  .fascia-immagine-fullwidth .overlay-box h1.Light,
  .fascia-immagine-fullwidth .overlay-box h2.Light,
  .fascia-immagine-fullwidth .overlay-box h3.Light {
    font-weight: 300;
  }
}

@media screen and (max-width: 767px) {
  .fascia-immagine-fullwidth .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .fascia-immagine-fullwidth .overlay-box {
    left: 15px;
    right: 15px;
  }
}

/* FASCIA #8 FULLWIDTH: IMMAGINE [FULLWIDTH]
 ******************************************/

.fascia-immagine-fullwidth.fascia-fullwidth .container {
  width: auto;
  padding: 0;
}

.fascia-immagine-fullwidth.fascia-fullwidth img {
  width: 100%;
}

.fascia-immagine-fullwidth.fascia-fullwidth .overlay-box {
  left: 0;
  right: 0;
}

.fascia-immagine-fullwidth.fascia-fullwidth .overlay-box .v-align {
  max-width: 100%;
}

/* FASCIA #9: 3 COLONNE
 ****************************/

.fascia-3colonne {
  padding: 0;
}

.fascia-3colonne .item {
  text-align: center;
}

.fascia-3colonne .item .title {
  margin: 0;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
  color: #d9272e;
  text-transform: uppercase;
}

.fascia-3colonne .item .desc {
  display: none;
}

.fascia-3colonne .item .cta {
  text-transform: uppercase;
  padding: 0 15px;
}

.fascia-3colonne .item .cta .cta-standard {
  width: 100%;
}

@media (max-width: 767px) {
  .fascia-3colonne .item:before,
  .fascia-3colonne .item:after {
    content: " ";
    display: table;
  }

  .fascia-3colonne .item:after {
    clear: both;
  }

  .fascia-3colonne .item .image,
  .fascia-3colonne .item .info-smartphone {
    width: 50%;
    float: left;
    position: relative;
    height: 0;
    padding-top: 50%;
  }

  .fascia-3colonne .item .image > .v-block,
  .fascia-3colonne .item .info-smartphone > .v-block,
  .fascia-3colonne .item .image > img,
  .fascia-3colonne .item .info-smartphone > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .fascia-3colonne .item:nth-child(2n+1) .image {
    float: right;
  }

  .fascia-3colonne .item .cmp-button-red-medium {
    display: inline-block !important;
    min-width: 0;
  }

  .fascia-3colonne .item h4 + .cmp-button-red-medium {
    margin-top: 17px;
  }
}

@media (min-width: 768px) {
  .fascia-3colonne .item {
    /*margin-top: 35px;*/
    margin-bottom: 40px;
  }

  .fascia-3colonne .item .title {
    margin-bottom: 20px;
    padding: 0 !important;
    font-size: 26px;
    line-height: 28px;
    color: #d9272e;
    font-family: 'Open Sans', sans-serif;
  }

  .fascia-3colonne .item .title.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .fascia-3colonne .item .title.Extrabold {
    font-weight: 800;
  }

  .fascia-3colonne .item .title.Bold {
    font-weight: 700;
  }

  .fascia-3colonne .item .title.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .fascia-3colonne .item .title.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .fascia-3colonne .item .title.Regular {
    font-weight: 400;
  }

  .fascia-3colonne .item .title.Light {
    font-weight: 300;
  }

  .fascia-3colonne .item .image {
    margin-bottom: 40px;
  }

  .fascia-3colonne .item .image img {
    border-right: 1px solid #fff;
  }

  .fascia-3colonne .item .desc {
    display: block;
    margin-bottom: 48px;
    padding: 0 15px;
    font-size: 14px;
    line-height: 22px;
    color: #65656a;
  }

  .fascia-3colonne .item .desc .rte {
    font-size: 14px;
    line-height: 22px;
    color: #65656a;
  }

  .fascia-3colonne .item .title {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .fascia-3colonne .item .title > span {
    display: block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .fascia-3colonne .item .cta-standard {
    min-height: 40px;
    line-height: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .fascia-3colonne .item.col-sm-offset-4 .title > span,
  .fascia-3colonne .item.col-sm-offset-4 .cmp-button-red-big > span {
    position: static;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

@media screen and (max-width: 991px) {
  .fascia-3colonne .item .title {
    font-size: 18px;
    line-height: 24px;
  }
}

/* FASCIA #21: SPLITTED BOXED
 ****************************/

.fascia-splitted-boxed {
  padding: 40px 0;
}

@media (max-width: 767px) {
  .fascia-splitted-boxed {
    position: relative;
    padding: 12px 0 23px;
    background-color: transparent !important;
  }

  .fascia-splitted-boxed:before {
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 0;
    padding-top: 54.6875%;
    background: #eeeae7;
  }

  .fascia-splitted-boxed .head,
  .fascia-splitted-boxed .content {
    position: relative;
    max-width: 530px;
    margin: 0 auto;
  }

  .fascia-splitted-boxed .head {
    /*> h3, > h1 {
				margin: 14px 0;
				text-align: center;
				text-transform: uppercase;
				font-size: 18px;
				color: @color-red;                
			}*/
  }

  .fascia-splitted-boxed .head h1,
  .fascia-splitted-boxed .head h2,
  .fascia-splitted-boxed .head h3 {
    color: #d9272e;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 20px;
  }

  .fascia-splitted-boxed .content {
    background-color: transparent !important;
  }

  .fascia-splitted-boxed .image {
    margin-bottom: 20px;
  }

  .fascia-splitted-boxed .info-content {
    height: 100%;
    padding: 0 15px;
  }

  .fascia-splitted-boxed .info-content h1,
  .fascia-splitted-boxed .info-content h2,
  .fascia-splitted-boxed .info-content h3,
  .fascia-splitted-boxed .info-content h4 {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 18px;
    color: #d9272e;
  }

  .fascia-splitted-boxed .info-content .desc {
    font-size: 12px;
    line-height: 15px;
    color: #8b8f92;
  }

  .fascia-splitted-boxed .info-content .cta-standard {
    margin-top: 15px;
  }
}

@media (min-width: 768px) {
  .fascia-splitted-boxed {
    background: #eeeae7;
  }

  .fascia-splitted-boxed .content {
    background: #f8f8f9;
  }

  .fascia-splitted-boxed .content:before,
  .fascia-splitted-boxed .content:after {
    content: " ";
    display: table;
  }

  .fascia-splitted-boxed .content:after {
    clear: both;
  }

  .fascia-splitted-boxed .image,
  .fascia-splitted-boxed .info {
    float: left;
    width: 50%;
    position: relative;
  }

  .fascia-splitted-boxed .head {
    text-align: center;
    /*> h3, > h1 {
				text-transform: uppercase;
				margin: 65px 0 35px;
				font-size: 36px;
				line-height: 1.2;
				color: @color-red;                
			}*/
  }

  .fascia-splitted-boxed .head h1,
  .fascia-splitted-boxed .head h2,
  .fascia-splitted-boxed .head h3 {
    color: #d9272e;
    margin-bottom: 20px;
  }

  .fascia-splitted-boxed .info-content {
    height: 100%;
  }

  .fascia-splitted-boxed .info-content .v-block {
    max-width: 380px;
    margin: 0 auto;
  }

  .fascia-splitted-boxed .info-content h1,
  .fascia-splitted-boxed .info-content h2,
  .fascia-splitted-boxed .info-content h3,
  .fascia-splitted-boxed .info-content h4 {
    margin: 0 0 26px;
    font-size: 18px;
    line-height: 24px;
    color: #d9272e;
    font-family: 'Open Sans', sans-serif;
  }

  .fascia-splitted-boxed .info-content h1.Extrabold-Italic,
  .fascia-splitted-boxed .info-content h2.Extrabold-Italic,
  .fascia-splitted-boxed .info-content h3.Extrabold-Italic,
  .fascia-splitted-boxed .info-content h4.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .fascia-splitted-boxed .info-content h1.Extrabold,
  .fascia-splitted-boxed .info-content h2.Extrabold,
  .fascia-splitted-boxed .info-content h3.Extrabold,
  .fascia-splitted-boxed .info-content h4.Extrabold {
    font-weight: 800;
  }

  .fascia-splitted-boxed .info-content h1.Bold,
  .fascia-splitted-boxed .info-content h2.Bold,
  .fascia-splitted-boxed .info-content h3.Bold,
  .fascia-splitted-boxed .info-content h4.Bold {
    font-weight: 700;
  }

  .fascia-splitted-boxed .info-content h1.Semibold-Italic,
  .fascia-splitted-boxed .info-content h2.Semibold-Italic,
  .fascia-splitted-boxed .info-content h3.Semibold-Italic,
  .fascia-splitted-boxed .info-content h4.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .fascia-splitted-boxed .info-content h1.Italic,
  .fascia-splitted-boxed .info-content h2.Italic,
  .fascia-splitted-boxed .info-content h3.Italic,
  .fascia-splitted-boxed .info-content h4.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .fascia-splitted-boxed .info-content h1.Regular,
  .fascia-splitted-boxed .info-content h2.Regular,
  .fascia-splitted-boxed .info-content h3.Regular,
  .fascia-splitted-boxed .info-content h4.Regular {
    font-weight: 400;
  }

  .fascia-splitted-boxed .info-content h1.Light,
  .fascia-splitted-boxed .info-content h2.Light,
  .fascia-splitted-boxed .info-content h3.Light,
  .fascia-splitted-boxed .info-content h4.Light {
    font-weight: 300;
  }

  .fascia-splitted-boxed .info-content .desc {
    font-size: 14px;
    line-height: 22px;
    color: #65656a;
  }

  .fascia-splitted-boxed .info-content .desc + .cta-standard {
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .fascia-splitted-boxed .info-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .fascia-splitted-boxed .info-content h4 {
    margin: 0 0 16px;
  }
}

.fascia-splitted-boxed.switch-cols .info-content {
  right: 0;
}

.fascia-splitted-boxed.switch-cols .image {
  float: right;
}

/* FASCIA #24: SLIDER RELATED
 ****************************/

.fascia-slider-related {
  text-align: center;
}

.fascia-slider-related .slide img {
  margin: 0 auto;
  position: relative;
  border-right: 1px solid #fff;
}

.fascia-slider-related .slider-outer .slider-bg {
  background: #eae8e7;
}

@media (max-width: 767px) {
  .fascia-slider-related {
    padding: 0 0 20px;
  }

  .fascia-slider-related .head h1,
  .fascia-slider-related .head h2,
  .fascia-slider-related .head h3,
  .fascia-slider-related .head h4 {
    margin: 0 0 20px;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 30px;
    color: #d9272e;
  }

  .fascia-slider-related .slider-bg {
    display: none;
  }

  .fascia-slider-related .slider-container {
    padding: 0 12px;
    width: 100%;
  }

  .fascia-slider-related .slide .tit {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    line-height: 18px;
  }

  .fascia-slider-related .slick-dots {
    width: auto;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0;
  }

  .fascia-slider-related .slick-dots li {
    margin: 0 1px;
  }

  .fascia-slider-related .slick-dots li button:before {
    color: #ded6cb;
    font-size: 13px;
    opacity: 1;
  }

  .fascia-slider-related .slick-dots li button:hover:before {
    opacity: 0.5;
  }

  .fascia-slider-related .slick-dots li.slick-active button:before {
    color: #d9272e;
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .fascia-slider-related {
    padding: 28px 0 85px;
  }

  .fascia-slider-related .head > h3 {
    margin: 0 0 28px;
    text-transform: uppercase;
    font-size: 16px;
    color: #d9272e;
  }

  .fascia-slider-related .slider-outer {
    position: relative;
  }

  .fascia-slider-related .slider-outer .slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
  }

  .fascia-slider-related .slider-container {
    width: 100%;
  }

  .fascia-slider-related .slide > a {
    display: block;
  }

  .fascia-slider-related .slide .tit {
    display: block;
    margin-top: 16px;
  }

  .fascia-slider-related .slick-arrow {
    position: absolute;
    top: 59px;
    cursor: pointer;
  }

  .fascia-slider-related .slider-prev {
    left: -70px;
  }

  .fascia-slider-related .slider-next {
    right: -70px;
  }
}

@media (min-width: 992px) {
  .fascia-slider-related .slider-outer .slider-bg {
    height: 195px;
  }

  .fascia-slider-related .slider-container {
    width: 100%;
  }

  .fascia-slider-related .slide .tit {
    color: #65656a;
    font-size: 13px;
    line-height: 15px;
  }

  .fascia-slider-related .slick-arrow {
    top: 84px;
  }

  .fascia-slider-related .head {
    margin-bottom: 18px;
  }

  .fascia-slider-related .head h1,
  .fascia-slider-related .head h2,
  .fascia-slider-related .head h3,
  .fascia-slider-related .head h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif;
  }

  .fascia-slider-related .head h1.Extrabold-Italic,
  .fascia-slider-related .head h2.Extrabold-Italic,
  .fascia-slider-related .head h3.Extrabold-Italic,
  .fascia-slider-related .head h4.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .fascia-slider-related .head h1.Extrabold,
  .fascia-slider-related .head h2.Extrabold,
  .fascia-slider-related .head h3.Extrabold,
  .fascia-slider-related .head h4.Extrabold {
    font-weight: 800;
  }

  .fascia-slider-related .head h1.Bold,
  .fascia-slider-related .head h2.Bold,
  .fascia-slider-related .head h3.Bold,
  .fascia-slider-related .head h4.Bold {
    font-weight: 700;
  }

  .fascia-slider-related .head h1.Semibold-Italic,
  .fascia-slider-related .head h2.Semibold-Italic,
  .fascia-slider-related .head h3.Semibold-Italic,
  .fascia-slider-related .head h4.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .fascia-slider-related .head h1.Italic,
  .fascia-slider-related .head h2.Italic,
  .fascia-slider-related .head h3.Italic,
  .fascia-slider-related .head h4.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .fascia-slider-related .head h1.Regular,
  .fascia-slider-related .head h2.Regular,
  .fascia-slider-related .head h3.Regular,
  .fascia-slider-related .head h4.Regular {
    font-weight: 400;
  }

  .fascia-slider-related .head h1.Light,
  .fascia-slider-related .head h2.Light,
  .fascia-slider-related .head h3.Light,
  .fascia-slider-related .head h4.Light {
    font-weight: 300;
  }
}

@media screen and (min-width: 1261px) {
  .fascia-slider-related {
    /* Align center */
  }

  .fascia-slider-related .slider-outer .slider-bg {
    height: 198px;
  }

  .fascia-slider-related .slider-container.desktop-align-center .slick-list {
    display: inline-block !important;
  }

  .fascia-slider-related .slider-container.desktop-align-center .slick-list .slick-track {
    width: auto !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
  .fascia-slider-related {
    /* Align center */
  }

  .fascia-slider-related .slider-container.tablet-align-center .slick-list {
    display: inline-block !important;
  }

  .fascia-slider-related .slider-container.tablet-align-center .slick-list .slick-track {
    width: auto !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-slider-related .slide > a {
    max-width: 150px !important;
  }
}

/* FASCIA #12 "SPLITTED WIDE"
 ****************************/

.fascia-splitted-wide {
  clear: both;
  position: relative;
  width: auto;
  max-width: 1230px;
  margin: 0 auto;
}

.fascia-splitted-wide:before,
.fascia-splitted-wide:after {
  content: " ";
  display: table;
}

.fascia-splitted-wide:after {
  clear: both;
}

.fascia-splitted-wide .quote {
  position: relative;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  padding: 30px 0 !important;
  text-align: center !important;
  font-style: italic !important;
  font-weight: 300 !important;
  font-size: 30px !important;
  line-height: 42px !important;
  color: #65656a;
}

.fascia-splitted-wide .quote:before,
.fascia-splitted-wide .quote:after {
  content: '';
  left: 50%;
  position: absolute;
  display: block;
  width: 130px;
  height: 2px;
  margin-left: -65px;
  background: #d9272e;
}

.fascia-splitted-wide .quote:before {
  top: 0;
}

.fascia-splitted-wide .quote:after {
  bottom: 0;
}

@media (max-width: 767px) {
  .fascia-splitted-wide h1,
  .fascia-splitted-wide h2,
  .fascia-splitted-wide h3,
  .fascia-splitted-wide h4 {
    margin: 20px 0;
    font-size: 15px;
    line-height: 18px;
    color: #d9272e;
  }

  .fascia-splitted-wide .desc {
    font-size: 12px;
    line-height: 14px;
    color: #65656a;
    text-align: inherit;
  }

  .fascia-splitted-wide .cta {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .fascia-splitted-wide .v-block {
    padding: 0 15px;
  }

  .fascia-splitted-wide .v-block .v-block-cell {
    text-align: center !important;
  }

  .fascia-splitted-wide .quote {
    margin: 10px 0;
    font-size: 19px !important;
    line-height: 24px !important;
  }

  .fascia-splitted-wide .quote:before,
  .fascia-splitted-wide .quote:after {
    width: 25px;
    margin-left: -12px;
  }

  .fascia-splitted-wide .container {
    padding-bottom: 20px;
  }

  .fascia-splitted-wide .container > div {
    height: auto !important;
  }
}

@media (min-width: 768px) {
  .fascia-splitted-wide .v-block {
    max-width: 380px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .fascia-splitted-wide h1,
  .fascia-splitted-wide h2,
  .fascia-splitted-wide h3,
  .fascia-splitted-wide h4 {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 24px;
    color: #d9272e;
  }

  .fascia-splitted-wide .desc {
    font-size: 14px;
    line-height: 22px;
    color: #65656a;
    text-align: inherit;
  }

  .fascia-splitted-wide .cta {
    margin-top: 30px;
  }

  .fascia-splitted-wide .v-block {
    padding: 0;
  }

  .fascia-splitted-wide .v-block-cell {
    text-align: center;
  }

  .fascia-splitted-wide .v-block-cell.align-right {
    text-align: right !important;
  }

  .fascia-splitted-wide .v-block-cell.align-right .cta {
    text-align: right !important;
  }

  .fascia-splitted-wide .v-block-cell.align-left {
    text-align: left !important;
  }

  .fascia-splitted-wide .v-block-cell.align-left .cta {
    text-align: left !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .fascia-splitted-wide .desc {
    display: none;
  }

  .fascia-splitted-wide .quote {
    font-size: 19px !important;
    line-height: 24px !important;
  }

  .fascia-splitted-wide .v-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1259px) {
  .fascia-splitted-wide .quote {
    font-size: 19px !important;
    line-height: 24px !important;
  }
}

/* FASCIA #12 "SPLITTED WIDE" [FULLWIDTH]
 ****************************************/

.fascia-splitted-wide.fascia-fullwidth {
  max-width: none;
}

.fascia-splitted-wide.fascia-fullwidth .container {
  width: auto;
  padding: 0;
}

.fascia-splitted-wide.fascia-fullwidth .container img {
  width: 100%;
}

/* FASCIA #23
 ****************************/

@media (max-width: 767px) {
  .fascia-23 {
    /*margin: 6px 0;*/
    margin: 0;
  }

  .fascia-23 .item {
    text-align: center;
  }

  .fascia-23 .item:before,
  .fascia-23 .item:after {
    content: " ";
    display: table;
  }

  .fascia-23 .item:after {
    clear: both;
  }

  .fascia-23 .item .title {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    color: #d9272e;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .fascia-23 .item .desc {
    display: none;
  }

  .fascia-23 .item .cta {
    text-transform: uppercase;
  }

  .fascia-23 .item .image,
  .fascia-23 .item .info-smartphone {
    width: 50%;
    float: left;
    position: relative;
    height: 0;
    padding-top: 50%;
  }

  .fascia-23 .item .image > .v-block,
  .fascia-23 .item .info-smartphone > .v-block,
  .fascia-23 .item .image > img,
  .fascia-23 .item .info-smartphone > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .fascia-23 .item h4 + .cta {
    margin-top: 17px;
  }

  .fascia-23.switch-cols .item .image {
    float: right;
  }
}

@media (min-width: 768px) {
  .fascia-23 {
    clear: both;
    position: relative;
    width: auto;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .fascia-23:before,
  .fascia-23:after {
    content: " ";
    display: table;
  }

  .fascia-23:after {
    clear: both;
  }

  .fascia-23 .external-container-text .content {
    padding: 0;
  }

  .fascia-23 .external-container-text .content h1,
  .fascia-23 .external-container-text .content h2,
  .fascia-23 .external-container-text .content h3,
  .fascia-23 .external-container-text .content h4 {
    margin: 0 0 26px;
    font-size: 18px;
    line-height: 24px;
    color: #d9272e;
    text-transform: uppercase;
  }

  .fascia-23 .external-container-text .content .desc {
    font-size: 14px;
    line-height: 22px;
    color: #65656a;
  }

  .fascia-23 .external-container-text .content .cta {
    margin-top: 30px;
  }

  .fascia-23 .container {
    padding: 0;
  }

  .fascia-23 .external-container-image .image {
    width: 50%;
  }

  .fascia-23 .external-container-image .image > img {
    display: block;
    width: 100%;
  }

  .fascia-23 .external-container-text {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 100%;
  }

  .fascia-23 .external-container-text .container {
    height: 100%;
  }

  .fascia-23 .external-container-text .content {
    float: right;
    width: 50%;
    height: 100%;
  }

  .fascia-23 .external-container-text .content .v-block {
    max-width: 380px;
    margin: 0 auto;
  }

  .fascia-23.switch-cols .external-container-image .image {
    float: right;
  }

  .fascia-23.switch-cols .external-container-text .content {
    float: left;
  }
}

@media (min-width: 768px) and (max-width: 1259px) {
  .fascia-23 .external-container-text .content {
    padding: 0 15px;
  }

  .fascia-23 .external-container-text .content h1,
  .fascia-23 .external-container-text .content h2,
  .fascia-23 .external-container-text .content h3,
  .fascia-23 .external-container-text .content h4 {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .fascia-23 .external-container-text .content .desc {
    display: none;
  }

  .fascia-23 .external-container-text .content .cta {
    margin-top: 15px;
  }
}

/*==============================================================================
							  TEMPLATE di PAGINA
==============================================================================*/

/* PAGE: ICONS (pagina di servizio)
 ****************************/

.page-icons {
  background: #00ff00;
}

/* FASCIA: TESTO SEMPLICE
 ****************************/

.fascia-testo {
  font-family: 'Open Sans', sans-serif;
}

.fascia-testo.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-testo.Extrabold {
  font-weight: 800;
}

.fascia-testo.Bold {
  font-weight: 700;
}

.fascia-testo.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-testo.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-testo.Regular {
  font-weight: 400;
}

.fascia-testo.Light {
  font-weight: 300;
}

.fascia-testo .text-wrapper {
  text-align: center;
  max-width: 585px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 24px;
  color: #65656a;
  font-family: 'Open Sans', sans-serif;
}

.fascia-testo .text-wrapper.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-testo .text-wrapper.Extrabold {
  font-weight: 800;
}

.fascia-testo .text-wrapper.Bold {
  font-weight: 700;
}

.fascia-testo .text-wrapper.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-testo .text-wrapper.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-testo .text-wrapper.Regular {
  font-weight: 400;
}

.fascia-testo .text-wrapper.Light {
  font-weight: 300;
}

.fascia-testo .text-wrapper.justify-80p {
  width: 80%;
  text-align: justify;
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .fascia-testo .text-wrapper {
    font-size: 15px;
    line-height: 21px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-testo .text-wrapper {
    max-width: 290px;
  }
}

/* FASCIA: TESTO SEMPLICE CON QUOTE
 ************************************/

.fascia-testo-quote .quote {
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  line-height: 42px;
  text-align: center;
  color: #eb212e;
}

.fascia-testo-quote .quote .hr {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 0;
  font-size: 0;
}

.fascia-testo-quote .quote .hr.top {
  top: 0;
}

.fascia-testo-quote .quote .hr.bottom {
  bottom: 0;
}

.fascia-testo-quote .quote .hr .line {
  width: 130px;
  height: 2px;
  background: #65656a;
  display: inline-block;
  margin: 0 auto;
  line-height: 0;
}

.fascia-testo-quote .text {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: left;
  font-size: 14px;
  line-height: 22px !important;
  color: #65656a;
}

@media screen and (min-width: 768px) {
  .fascia-testo-quote {
    /* Qui le colonne sono invertite */
  }

  .fascia-testo-quote .row > .col-sm-6:first-child {
    padding-left: 15px;
  }

  .fascia-testo-quote .row > .col-sm-6:last-child {
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-testo-quote .text {
    padding-top: 28px;
    padding-bottom: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .fascia-testo-quote .quote {
    font-size: 19px;
    line-height: 24px;
    padding: 22px 0;
  }
}

/* FASCIA: TESTO SEMPLICE CON CTA
 ************************************/

.fascia-testo-cta {
  text-align: center;
  padding-top: 64px;
}

.fascia-testo-cta h4,
.fascia-testo-cta h1,
.fascia-testo-cta h2,
.fascia-testo-cta h3 {
  font-size: 18px;
  line-height: 24px;
  display: block;
  color: #d9272e;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 18px;
}

.fascia-testo-cta span,
.fascia-testo-cta span.rte {
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
  max-width: 530px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.fascia-testo-cta span.justify-80p,
.fascia-testo-cta span.rte.justify-80p {
  max-width: 80% !important;
  text-align: justify !important;
}

.fascia-testo-cta .cta-standard {
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fascia-testo-cta {
    padding-top: 34px;
  }

  .fascia-testo-cta h4,
  .fascia-testo-cta h1,
  .fascia-testo-cta h2,
  .fascia-testo-cta h3 {
    font-size: 15px;
    line-height: 17px;
  }

  .fascia-testo-cta span {
    font-size: 12px;
    line-height: 16px;
  }

  .fascia-testo-cta .cta-standard {
    margin-top: 20px;
  }
}

/* FASCIA: TESTO su 2 COLONNE (tablet e desktop)
 ****************************/

.fascia-testo-2col {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  letter-spacing: 0;
  color: #65656a;
  font-family: 'Open Sans', sans-serif;
}

.fascia-testo-2col.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-testo-2col.Extrabold {
  font-weight: 800;
}

.fascia-testo-2col.Bold {
  font-weight: 700;
}

.fascia-testo-2col.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-testo-2col.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-testo-2col.Regular {
  font-weight: 400;
}

.fascia-testo-2col.Light {
  font-weight: 300;
}

.fascia-testo-2col p {
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
}

@media screen and (min-width: 768px) {
  .fascia-testo-2col .row > .col-sm-6:first-child {
    padding-right: 15px;
  }

  .fascia-testo-2col .row > .col-sm-6:last-child {
    padding-left: 15px;
  }
}

@media (max-width: 768px) {
  .fascia-testo-2col {
    font-size: 12px;
    line-height: 22px;
  }

  .fascia-testo-2col p {
    font-size: 14px;
    line-height: 22px;
    color: #65656a;
  }
}

@media screen and (max-width: 767px) {
  .fascia-testo-2col .rte h4 {
    padding-top: 20px;
    display: block !important;
  }
}

.list-alignment ul,
.list-alignment ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.list-alignment ul li,
.list-alignment ol li {
  font-size: inherit !important;
  line-height: 22px !important;
  color: #65656a !important;
}

@media screen and (max-width: 767px) {
  .list-alignment ul li,
  .list-alignment ol li {
    font-size: 12px !important;
    line-height: 22px !important;
    color: #65656a !important;
  }
}

/* FASCIA: SOCIAL SHARE
 ************************************/

.fascia-share {
  padding: 50px 0;
  height: 166px;
  overflow: hidden;
}

.fascia-share .btn-sharer {
  height: 60px;
  display: inline-block;
}

.fascia-share .share-box {
  display: none;
  height: 67px !important;
  padding-top: 12px;
}

@media screen and (max-width: 767px) {
  .fascia-share {
    padding: 40px 0;
  }
}

/* FASCIA #15: HEADER IMAGE CON TESTO
 ************************************/

.fascia-header-image {
  padding: 0 15px;
  position: relative;
  top: -5px;
  margin-bottom: -5px;
}

.fascia-header-image .container {
  position: relative;
  margin-top: -500px;
  height: 500px;
}

.fascia-header-image .container .spacer.text-align-left {
  text-align: left;
  padding-right: 12%;
  max-width: 996px;
  margin: 0 auto;
}

.fascia-header-image .container .spacer.text-align-left > div {
  width: 47%;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.fascia-header-image .container .spacer.text-align-left > div h1,
.fascia-header-image .container .spacer.text-align-left > div h2,
.fascia-header-image .container .spacer.text-align-left > div h3 {
  padding: 8px;
}

.fascia-header-image .container .spacer.text-align-left span,
.fascia-header-image .container .spacer.text-align-left h1,
.fascia-header-image .container .spacer.text-align-left h2,
.fascia-header-image .container .spacer.text-align-left h3.rte,
.fascia-header-image .container .spacer.text-align-left p,
.fascia-header-image .container .spacer.text-align-left .btn_center {
  text-align: left !important;
}

.fascia-header-image .container .spacer.text-align-right {
  text-align: right;
  padding-left: 12%;
  max-width: 996px;
  margin: 0 auto;
}

.fascia-header-image .container .spacer.text-align-right > div {
  width: 51%;
  float: right;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.fascia-header-image .container .spacer.text-align-right > div h1,
.fascia-header-image .container .spacer.text-align-right > div h2,
.fascia-header-image .container .spacer.text-align-right > div h3 {
  padding: 8px;
}

.fascia-header-image .container .spacer.text-align-right span,
.fascia-header-image .container .spacer.text-align-right h1,
.fascia-header-image .container .spacer.text-align-right h2,
.fascia-header-image .container .spacer.text-align-right h3.rte,
.fascia-header-image .container .spacer.text-align-right p,
.fascia-header-image .container .spacer.text-align-right .btn_center {
  text-align: left !important;
}

.fascia-header-image .row,
.fascia-header-image div[class^="col-"] {
  height: 100%;
}

.fascia-header-image .row span,
.fascia-header-image div[class^="col-"] span,
.fascia-header-image .row h1,
.fascia-header-image div[class^="col-"] h1,
.fascia-header-image .row h2,
.fascia-header-image div[class^="col-"] h2,
.fascia-header-image .row h3.rte,
.fascia-header-image div[class^="col-"] h3.rte {
  /*font-size: 30px;
			line-height: 32px;*/
  font-size: 50px;
  line-height: 52px;
  color: #d9272e;
  letter-spacing: 0;
  text-transform: uppercase !important;
  display: block;
  text-align: center;
}

.fascia-header-image .row p,
.fascia-header-image div[class^="col-"] p {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #65656a;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
}

.fascia-header-image .row p.Extrabold-Italic,
.fascia-header-image div[class^="col-"] p.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-header-image .row p.Extrabold,
.fascia-header-image div[class^="col-"] p.Extrabold {
  font-weight: 800;
}

.fascia-header-image .row p.Bold,
.fascia-header-image div[class^="col-"] p.Bold {
  font-weight: 700;
}

.fascia-header-image .row p.Semibold-Italic,
.fascia-header-image div[class^="col-"] p.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-header-image .row p.Italic,
.fascia-header-image div[class^="col-"] p.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-header-image .row p.Regular,
.fascia-header-image div[class^="col-"] p.Regular {
  font-weight: 400;
}

.fascia-header-image .row p.Light,
.fascia-header-image div[class^="col-"] p.Light {
  font-weight: 300;
}

.fascia-header-image .row .cta-standard,
.fascia-header-image div[class^="col-"] .cta-standard {
  margin-top: 28px;
}

.fascia-header-image .btn_center {
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-header-image {
    height: auto;
    position: relative;
  }

  .fascia-header-image .container {
    margin-top: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .fascia-header-image {
    height: auto;
    position: relative;
    padding: 12px 0;
  }

  .fascia-header-image .container {
    /*position: absolute;*/
    /*top: 12px;*/
    height: auto;
    /*bottom: 12px;*/
    width: 100%;
    margin-top: 0 !important;
  }

  .fascia-header-image .container h1 {
    margin-top: 0 !important;
  }

  .fascia-header-image .container .spacer {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .fascia-header-image .container .spacer h1,
  .fascia-header-image .container .spacer h2,
  .fascia-header-image .container .spacer h3,
  .fascia-header-image .container .spacer h3.rte {
    background: none !important;
  }

  .fascia-header-image .container .spacer.text-align-left,
  .fascia-header-image .container .spacer.text-align-right {
    text-align: center !important;
    padding: 0 !important;
    max-width: 100%;
    margin: 0 auto;
  }

  .fascia-header-image .container .spacer.text-align-left > div,
  .fascia-header-image .container .spacer.text-align-right > div {
    width: 100% !important;
  }

  .fascia-header-image .container .spacer.text-align-left h1,
  .fascia-header-image .container .spacer.text-align-right h1,
  .fascia-header-image .container .spacer.text-align-left h2,
  .fascia-header-image .container .spacer.text-align-right h2,
  .fascia-header-image .container .spacer.text-align-left h3.rte,
  .fascia-header-image .container .spacer.text-align-right h3.rte {
    text-align: center !important;
    color: #d9272e !important;
    padding: 4px !important;
  }

  .fascia-header-image .container .spacer.text-align-left p,
  .fascia-header-image .container .spacer.text-align-right p {
    text-align: center !important;
  }

  .fascia-header-image .container .spacer.text-align-left .btn_center,
  .fascia-header-image .container .spacer.text-align-right .btn_center {
    text-align: center !important;
  }

  .fascia-header-image .col-xs-12 {
    padding: 0 40px;
  }

  .fascia-header-image .row h1,
  .fascia-header-image div[class^="col-"] h1,
  .fascia-header-image .row h2,
  .fascia-header-image div[class^="col-"] h2,
  .fascia-header-image .row h3,
  .fascia-header-image div[class^="col-"] h3,
  .fascia-header-image .row h3.rte,
  .fascia-header-image div[class^="col-"] h3.rte {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 25px;
    letter-spacing: 0;
    line-height: 27px;
    color: #d9272e !important;
  }

  .fascia-header-image .row h1.Extrabold-Italic,
  .fascia-header-image div[class^="col-"] h1.Extrabold-Italic,
  .fascia-header-image .row h2.Extrabold-Italic,
  .fascia-header-image div[class^="col-"] h2.Extrabold-Italic,
  .fascia-header-image .row h3.Extrabold-Italic,
  .fascia-header-image div[class^="col-"] h3.Extrabold-Italic,
  .fascia-header-image .row h3.rte.Extrabold-Italic,
  .fascia-header-image div[class^="col-"] h3.rte.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .fascia-header-image .row h1.Extrabold,
  .fascia-header-image div[class^="col-"] h1.Extrabold,
  .fascia-header-image .row h2.Extrabold,
  .fascia-header-image div[class^="col-"] h2.Extrabold,
  .fascia-header-image .row h3.Extrabold,
  .fascia-header-image div[class^="col-"] h3.Extrabold,
  .fascia-header-image .row h3.rte.Extrabold,
  .fascia-header-image div[class^="col-"] h3.rte.Extrabold {
    font-weight: 800;
  }

  .fascia-header-image .row h1.Bold,
  .fascia-header-image div[class^="col-"] h1.Bold,
  .fascia-header-image .row h2.Bold,
  .fascia-header-image div[class^="col-"] h2.Bold,
  .fascia-header-image .row h3.Bold,
  .fascia-header-image div[class^="col-"] h3.Bold,
  .fascia-header-image .row h3.rte.Bold,
  .fascia-header-image div[class^="col-"] h3.rte.Bold {
    font-weight: 700;
  }

  .fascia-header-image .row h1.Semibold-Italic,
  .fascia-header-image div[class^="col-"] h1.Semibold-Italic,
  .fascia-header-image .row h2.Semibold-Italic,
  .fascia-header-image div[class^="col-"] h2.Semibold-Italic,
  .fascia-header-image .row h3.Semibold-Italic,
  .fascia-header-image div[class^="col-"] h3.Semibold-Italic,
  .fascia-header-image .row h3.rte.Semibold-Italic,
  .fascia-header-image div[class^="col-"] h3.rte.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .fascia-header-image .row h1.Italic,
  .fascia-header-image div[class^="col-"] h1.Italic,
  .fascia-header-image .row h2.Italic,
  .fascia-header-image div[class^="col-"] h2.Italic,
  .fascia-header-image .row h3.Italic,
  .fascia-header-image div[class^="col-"] h3.Italic,
  .fascia-header-image .row h3.rte.Italic,
  .fascia-header-image div[class^="col-"] h3.rte.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .fascia-header-image .row h1.Regular,
  .fascia-header-image div[class^="col-"] h1.Regular,
  .fascia-header-image .row h2.Regular,
  .fascia-header-image div[class^="col-"] h2.Regular,
  .fascia-header-image .row h3.Regular,
  .fascia-header-image div[class^="col-"] h3.Regular,
  .fascia-header-image .row h3.rte.Regular,
  .fascia-header-image div[class^="col-"] h3.rte.Regular {
    font-weight: 400;
  }

  .fascia-header-image .row h1.Light,
  .fascia-header-image div[class^="col-"] h1.Light,
  .fascia-header-image .row h2.Light,
  .fascia-header-image div[class^="col-"] h2.Light,
  .fascia-header-image .row h3.Light,
  .fascia-header-image div[class^="col-"] h3.Light,
  .fascia-header-image .row h3.rte.Light,
  .fascia-header-image div[class^="col-"] h3.rte.Light {
    font-weight: 300;
  }

  .fascia-header-image .row p,
  .fascia-header-image div[class^="col-"] p {
    font-size: 13px;
    line-height: 13px;
    color: #65656a;
    font-family: 'Open Sans', sans-serif;
    margin-top: 18px;
    margin-bottom: 0;
    text-transform: uppercase;
  }

  .fascia-header-image .row p.Extrabold-Italic,
  .fascia-header-image div[class^="col-"] p.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .fascia-header-image .row p.Extrabold,
  .fascia-header-image div[class^="col-"] p.Extrabold {
    font-weight: 800;
  }

  .fascia-header-image .row p.Bold,
  .fascia-header-image div[class^="col-"] p.Bold {
    font-weight: 700;
  }

  .fascia-header-image .row p.Semibold-Italic,
  .fascia-header-image div[class^="col-"] p.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .fascia-header-image .row p.Italic,
  .fascia-header-image div[class^="col-"] p.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .fascia-header-image .row p.Regular,
  .fascia-header-image div[class^="col-"] p.Regular {
    font-weight: 400;
  }

  .fascia-header-image .row p.Light,
  .fascia-header-image div[class^="col-"] p.Light {
    font-weight: 300;
  }
}

/* FASCIA #15 [FULLWIDTH] HEADER IMAGE CON TESTO
 ************************************/

.fascia-header-image.fascia-fullwidth {
  padding: 0;
}

.fascia-header-image.fascia-fullwidth .container {
  width: auto;
  max-width: none;
  padding: 0;
  margin-top: -550px;
  height: 550px;
}

.fascia-header-image.fascia-fullwidth img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .fascia-header-image.fascia-fullwidth .container {
    margin-top: 0;
    width: 100%;
    height: 100%;
  }

  .fascia-header-image.fascia-fullwidth h1 {
    font-size: 35px !important;
    line-height: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .fascia-header-image.fascia-fullwidth h1 {
    font-size: 25px !important;
    line-height: 32px !important;
  }
}

/* FASCIA: FOTO+TITOLO+TESTO
 ************************************/

.fascia-foto-titolo-testo {
  padding: 0;
}

.fascia-foto-titolo-testo .bg-img-container {
  height: 420px;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.fascia-foto-titolo-testo .bg-gray {
  background: #dfdcda;
  /*padding-bottom: 36px;*/
  padding: 0 15px 36px;
}

.fascia-foto-titolo-testo .bg-gray h1,
.fascia-foto-titolo-testo .bg-gray h2,
.fascia-foto-titolo-testo .bg-gray h3,
.fascia-foto-titolo-testo .bg-gray h4 {
  font-size: 18px;
  line-height: 24px;
  color: #d9272e;
  display: block;
  text-align: center;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.fascia-foto-titolo-testo .bg-gray .desc {
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
}

.fascia-foto-titolo-testo .btn_center {
  text-align: center;
}

.fascia-foto-titolo-testo .btn_center .cta-standard {
  margin-top: 35px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-foto-titolo-testo .bg-img-container {
    height: 340px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-foto-titolo-testo {
    padding: 8px 0 25px 0;
  }

  .fascia-foto-titolo-testo .bg-img-container {
    height: 300px;
    margin-bottom: 20px;
  }

  .fascia-foto-titolo-testo .bg-gray {
    padding-bottom: 33px;
  }

  .fascia-foto-titolo-testo .bg-gray h4 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 18px;
  }

  .fascia-foto-titolo-testo .bg-gray .desc {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    display: block;
  }

  .fascia-foto-titolo-testo .btn_center .cta-standard {
    margin-top: 27px;
  }
}

/* FASCIA: FOTO+TITOLO+TESTO [FULLWIDTH]
 ****************************************/

.fascia-foto-titolo-testo.fascia-fullwidth .bg-gray {
  padding: 0 0 60px;
}

.fascia-foto-titolo-testo.fascia-fullwidth .bg-img-container {
  height: 520px;
  max-width: none;
  margin-bottom: 56px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-foto-titolo-testo.fascia-fullwidth .bg-img-container {
    height: 440px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-foto-titolo-testo.fascia-fullwidth .bg-gray {
    padding: 0 0 40px;
  }

  .fascia-foto-titolo-testo.fascia-fullwidth .bg-img-container {
    height: 400px;
    margin-bottom: 36px;
  }
}

/* FASCIA: SLIDER TABBED CONTENT
 ************************************/

.fascia-slider-tabbedcontent {
  padding: 28px 0 80px;
}

@media (max-width: 767px) {
  .fascia-slider-tabbedcontent .tab-select {
    position: relative;
    bottom: -25px;
    z-index: 1;
    margin: 0 12px;
  }

  .fascia-slider-tabbedcontent .tab-select .bootstrap-select {
    width: 100% !important;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    float: none;
  }

  .fascia-slider-tabbedcontent .tab-select .bootstrap-select.btn-group button.btn {
    height: 50px;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "museo-sans", Arial;
    font-style: normal;
    font-weight: 900;
  }

  .fascia-slider-tabbedcontent .tab-select .bootstrap-select.btn-group button.btn .caret {
    background-image: url('../../images/sprite/mobile/sprite.png');
    width: 16px;
    height: 10px;
    background-position: -66px -215px !important;
    right: 14px;
    margin-top: -4px;
  }

  .fascia-slider-tabbedcontent .tab-select .bootstrap-select.btn-group button.btn .caret:hover {
    background-position: -66px -215px !important;
  }

  .fascia-slider-tabbedcontent .tab-select .bootstrap-select .dropdown-menu ul li a {
    font-size: 12px;
    padding-left: 22px;
    text-transform: uppercase;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .fascia-slider-tabbedcontent .temporizzatore {
    display: none;
  }

  .fascia-slider-tabbedcontent .tabs.container {
    margin: 0;
    padding: 0;
  }

  .fascia-slider-tabbedcontent .tabs-box {
    clear: both;
  }

  .fascia-slider-tabbedcontent .tab-content {
    display: none;
    padding-top: 25px;
  }

  .fascia-slider-tabbedcontent .tab-content:before,
  .fascia-slider-tabbedcontent .tab-content:after {
    content: " ";
    display: table;
  }

  .fascia-slider-tabbedcontent .tab-content:after {
    clear: both;
  }

  .fascia-slider-tabbedcontent .tab-content.active {
    display: block;
  }

  .fascia-slider-tabbedcontent .tab-content .head {
    margin-bottom: 35px;
    text-align: center;
  }

  .fascia-slider-tabbedcontent .tab-content .head .title {
    margin: 28px 0 25px;
    text-transform: none;
    font-size: 15px;
    line-height: 18px;
    color: #d9272e;
  }

  .fascia-slider-tabbedcontent .tab-content .head .desc,
  .fascia-slider-tabbedcontent .tab-content .head .desc p {
    font-size: 12px !important;
    line-height: 15px !important;
    color: #8b8f92;
  }

  .fascia-slider-tabbedcontent .tab-content .item {
    padding: 0 0 15px;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a {
    display: block;
    text-align: center;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > img {
    display: block;
    max-width: 100%;
    margin: 0 auto 17px;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > span {
    display: block;
    margin-bottom: 37px;
    font-size: 15px;
    line-height: 18px;
    color: #d9272e;
    text-transform: uppercase;
  }
}

@media (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx) {
  .fascia-slider-tabbedcontent .tab-select .bootstrap-select.btn-group button.btn .caret {
    background-image: url("../../images/sprite/mobile/sprite@2x.png");
    background-size: 295px 400px;
    background-position-x: 0;
    background-position-y: 0;
  }
}

@media (min-width: 768px) {
  .fascia-slider-tabbedcontent .tab-select {
    display: none;
  }

  .fascia-slider-tabbedcontent .temporizzatore {
    text-align: center;
    padding-bottom: 82px;
    position: relative;
  }

  .fascia-slider-tabbedcontent .temporizzatore:after {
    content: '';
    position: absolute;
    top: calc(50% - 41px);
    height: calc(50% + 41px);
    width: 100%;
    left: 0;
    background: #f4f4f5;
    z-index: -1;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher__container {
    display: flex;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher {
    display: inline-block;
    position: relative;
    width: 199px;
    margin-right: -2px;
    flex-grow: 1;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher.mouse_enter .overlay {
    background: none;
    background-position: bottom left;
    background-size: contain;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher img {
    width: 100%;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher .title {
    position: absolute;
    width: 100%;
    top: 100%;
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    color: #65656a;
    font-family: 'Open Sans', sans-serif;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher .title.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher .title.Extrabold {
    font-weight: 800;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher .title.Bold {
    font-weight: 700;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher .title.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher .title.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher .title.Regular {
    font-weight: 400;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher .title.Light {
    font-weight: 300;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 74, 74, 0.5);
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher.active .title,
  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher.mouse_enter .title {
    color: #d9272e;
    font-family: "museo-sans", Arial;
    font-style: normal;
    font-weight: 700;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher.active .overlay,
  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher.mouse_enter .overlay {
    background: none;
    background-position: bottom left;
    background-size: contain;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher.fullwidth-5 {
    width: 19%;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher.fullwidth-4 {
    width: 24%;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher.fullwidth-3 {
    width: 32%;
  }

  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher.fullwidth-2 {
    width: 49%;
  }

  .fascia-slider-tabbedcontent .tabs-box {
    background: #f4f4f5;
    padding: 0;
  }

  .fascia-slider-tabbedcontent .tab-content {
    display: none;
    padding: 0 5px;
  }

  .fascia-slider-tabbedcontent .tab-content:before,
  .fascia-slider-tabbedcontent .tab-content:after {
    content: " ";
    display: table;
  }

  .fascia-slider-tabbedcontent .tab-content:after {
    clear: both;
  }

  .fascia-slider-tabbedcontent .tab-content.active {
    display: block;
  }

  .fascia-slider-tabbedcontent .tab-content .head {
    padding: 0 0 52px;
    text-align: center;
  }

  .fascia-slider-tabbedcontent .tab-content .head .title {
    margin: 0 0 18px;
    font-size: 30px;
    font-weight: 500;
    line-height: 32px;
    color: #d9272e;
    text-transform: none;
    margin-top: 19px;
  }

  .fascia-slider-tabbedcontent .tab-content .head .desc,
  .fascia-slider-tabbedcontent .tab-content .head .desc p {
    font-size: 18px;
    line-height: 24px;
    color: #65656a;
  }

  .fascia-slider-tabbedcontent .tab-content .item {
    padding: 0 0 50px;
    text-align: center;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a {
    display: block;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > img {
    display: block;
    width: 100%;
    border-right: 1.5px solid #fff;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > span {
    display: block;
    margin-top: 20px;
    line-height: 24px;
    color: #d9272e;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > span.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > span.Extrabold {
    font-weight: 800;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > span.Bold {
    font-weight: 700;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > span.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > span.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > span.Regular {
    font-weight: 400;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > span.Light {
    font-weight: 300;
  }

  .fascia-slider-tabbedcontent .tab-content .item:nth-child(3n) img {
    border: none;
  }

  .fascia-slider-tabbedcontent .tab-content .item:nth-child(3n+1) {
    clear: left;
  }
}

@media (min-width: 768px) and (max-width: 1259px) {
  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher {
    width: 118px;
  }

  .fascia-slider-tabbedcontent .tab-content .item > a > span {
    padding: 0 15px;
  }
}

@media (min-width: 992px) and (max-width: 1259px) {
  .fascia-slider-tabbedcontent .temporizzatore .tab-switcher {
    width: 155px;
  }
}

/* FASCIA: #35 con children
 ************************************/

.fascia-consiglio {
  padding-bottom: 10px;
}

.fascia-consiglio .child {
  max-width: 1024px;
  background: #eeeae7;
  display: block;
  margin: 0 auto;
}

.fascia-consiglio .child-titolo h1 {
  font-size: 26px;
  line-height: 26px;
  padding: 48px 0;
  text-align: center;
  color: #d9272e;
  margin: 0;
}

.fascia-consiglio .child-page-switcher {
  padding: 7px 0;
}

.fascia-consiglio .child-page-switcher .switcher-container {
  border-top: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
  height: 40px;
  text-align: center;
}

.fascia-consiglio .child-page-switcher .switcher-container .switcher {
  display: inline-block;
  margin: 0 auto;
  padding: 0 13px;
}

.fascia-consiglio .child-page-switcher .switcher-container .switcher a {
  display: inline-block;
  line-height: 38px;
}

.fascia-consiglio .child-page-switcher .switcher-container .switcher a .ico {
  vertical-align: middle;
}

.fascia-consiglio .child-page-switcher .switcher-container .switcher span.content-name {
  display: inline-block;
  margin: 0 18px;
  font-size: 13px;
  line-height: 38px;
}

.fascia-consiglio .child-testo-1 .text-wrapper {
  max-width: 586px;
  padding: 52px 13px;
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 1.45;
}

.fascia-consiglio .fascia-immagine-fullwidth {
  padding-top: 0 !important;
}

.fascia-consiglio .child-testo-2 {
  padding-top: 60px;
  padding-bottom: 57px;
}

.fascia-consiglio .child-slider {
  padding: 19px 0;
}

.fascia-consiglio .child-slider hr {
  max-width: 340px;
  width: 100%;
  display: block;
  margin: 0 auto;
  border-color: #a9aeb2;
}

.fascia-consiglio .child-slider .slider-container {
  max-width: 620px;
  margin: 0 auto;
}

.fascia-consiglio .child-slider .slider-container .slide {
  text-align: center;
  padding: 80px 90px 138px;
}

.fascia-consiglio .child-slider .slider-container .slide h3 {
  margin: 0;
  text-transform: uppercase;
  color: #d9272e;
  font-size: 20px;
  margin-bottom: 38px;
}

.fascia-consiglio .child-slider .slider-container .slide h4 {
  font-size: 14px;
  line-height: 17px;
  color: #d9272e;
  margin: 0;
}

.fascia-consiglio .child-slider .slider-container .slider-next,
.fascia-consiglio .child-slider .slider-container .slider-prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -20px;
}

.fascia-consiglio .child-slider .slider-container .slider-next {
  right: -45px;
}

.fascia-consiglio .child-slider .slider-container .slider-prev {
  left: -45px;
}

.fascia-consiglio .child-slider .slider-container .slick-dots {
  bottom: 74px;
}

.fascia-consiglio .child-slider .slider-container .slick-dots li {
  margin: 0 1px;
}

.fascia-consiglio .child-slider .slider-container .slick-dots li button:before {
  color: #ded6cb;
  font-size: 13px;
  opacity: 1;
}

.fascia-consiglio .child-slider .slider-container .slick-dots li button:hover:before {
  opacity: 0.5;
}

.fascia-consiglio .child-slider .slider-container .slick-dots li.slick-active button:before {
  color: #d9272e;
  opacity: 1;
}

.fascia-consiglio .child-testo-2col {
  text-align: center;
  padding: 60px 0;
}

.fascia-consiglio .child-testo-2col .rte {
  line-height: 1.45;
}

.fascia-consiglio .child-cta {
  padding: 21px 0 28px;
}

.fascia-consiglio .child-cta button {
  margin: 0 auto;
  display: block;
  text-align: center;
  position: relative;
}

.fascia-consiglio .child-cta button .ico {
  position: absolute;
  right: 30px;
  top: 22px;
}

.fascia-consiglio .child-cta .univesita-caffe {
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .fascia-consiglio {
    padding-bottom: 0;
  }

  .fascia-consiglio .child-titolo h1 {
    font-size: 14px;
    padding: 20px 0;
  }

  .fascia-consiglio .child-page-switcher .switcher-container .switcher {
    display: block;
  }

  .fascia-consiglio .child-page-switcher .switcher-container .switcher a.next {
    float: right;
  }

  .fascia-consiglio .child-page-switcher .switcher-container .switcher a.prev {
    float: left;
  }

  .fascia-consiglio .child-page-switcher .switcher-container .switcher .content-name {
    text-transform: uppercase;
    color: #d9272e;
    font-size: 12px;
    font-family: "museo-sans", Arial;
    font-style: normal;
    font-weight: 700;
  }

  .fascia-consiglio .child-testo-1 .text-wrapper {
    padding: 0 13px 38px;
  }

  .fascia-consiglio .child-testo-2 {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .fascia-consiglio .child-slider {
    padding: 8px;
  }

  .fascia-consiglio .child-slider .slider-container .slide {
    padding: 20px 42px 50px;
  }

  .fascia-consiglio .child-slider .slider-container .slick-dots {
    bottom: 14px;
  }

  .fascia-consiglio .child-slider .slider-container .slider-next {
    right: 0;
    margin-top: -13px;
  }

  .fascia-consiglio .child-slider .slider-container .slider-prev {
    left: 0;
    margin-top: -13px;
  }

  .fascia-consiglio .child-cta {
    text-align: center;
    padding: 20px 0 50px;
  }

  .fascia-consiglio .child-cta .cmp-button-red-small {
    display: inline-block !important;
  }

  .fascia-consiglio .child-cta .univesita-caffe {
    float: none !important;
    display: block;
    margin: 0 auto;
    max-width: 76px;
    margin-top: 80px;
  }
}

/* FASCIA: #34 NAVIGA CONSILI
 ************************************/

.fascia-naviga-consigli {
  padding-top: 15px;
  padding-bottom: 94px;
}

.fascia-naviga-consigli .first-choice {
  max-width: 828px;
  display: block;
  margin: 0 auto;
}

.fascia-naviga-consigli .first-choice:before,
.fascia-naviga-consigli .first-choice:after {
  content: " ";
  display: table;
}

.fascia-naviga-consigli .first-choice:after {
  clear: both;
}

.fascia-naviga-consigli .first-choice .choice {
  width: 20%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 2px;
  display: inline-block;
  float: left;
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}

.fascia-naviga-consigli .first-choice .choice div:first-child {
  position: relative;
}

.fascia-naviga-consigli .first-choice .choice div:last-child {
  padding: 10px 0;
}

.fascia-naviga-consigli .first-choice .choice .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.fascia-naviga-consigli .first-choice .choice.active {
  color: #d9272e;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 900;
}

.fascia-naviga-consigli .first-choice .choice.active .overlay {
  background-color: transparent;
}

.fascia-naviga-consigli .first-choice .choice.active > div:last-child {
  background-color: #eeeae7;
}

.fascia-naviga-consigli .second-choice {
  max-width: 1024px;
  display: block;
  margin: 0 auto;
  background-color: #eeeae7;
}

.fascia-naviga-consigli .second-choice .carousel-container {
  display: none !important;
  max-width: 828px;
  margin: 0 auto;
  text-align: center;
}

.fascia-naviga-consigli .second-choice .carousel-container .slide {
  height: 93px;
}

.fascia-naviga-consigli .second-choice .carousel-container .slide a {
  font-size: 14px;
}

.fascia-naviga-consigli .second-choice .carousel-container .slide a.active {
  color: #d9272e;
}

.fascia-naviga-consigli .second-choice .carousel-container .slider-next,
.fascia-naviga-consigli .second-choice .carousel-container .slider-prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -11px;
}

.fascia-naviga-consigli .second-choice .carousel-container .slider-next {
  right: -56px;
}

.fascia-naviga-consigli .second-choice .carousel-container .slider-prev {
  left: -56px;
}

.fascia-naviga-consigli .second-choice .carousel-container.active {
  display: block !important;
}

.fascia-naviga-consigli select {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-naviga-consigli .second-choice .carousel-container .slider-next {
    right: -8px;
  }

  .fascia-naviga-consigli .second-choice .carousel-container .slider-prev {
    left: -8px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-naviga-consigli {
    padding-bottom: 0;
  }

  .fascia-naviga-consigli .choices-container {
    position: relative;
    height: 80px;
  }

  .fascia-naviga-consigli .choices-container .bg-gray {
    position: absolute;
    width: 100%;
    height: 45px;
    bottom: 0;
    left: 0;
    background-color: #eeeae7;
  }

  .fascia-naviga-consigli select {
    display: block;
  }
}

/* CUSTOM SELECT FOR MOBILY ONLY */

div.select-custom select {
  width: 100%;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  border: 1px solid #8b8f92;
  height: 50px;
  padding: 0 50px 0 22px;
  background-image: url('../../images/ico-arrow-down-cmb.jpg');
  background-position: 100% center;
  background-repeat: no-repeat;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 12px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 900;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx) {
  div.select-custom select {
    background-image: url("../../images/ico-arrow-down-cmb@2x.jpg");
    background-size: 45px 48px;
  }
}

/* FASCIA: #25 PAGE SWITCHER
 ************************************/

.fascia-page-switcher {
  padding: 16px 0;
}

.fascia-page-switcher .switcher-wrapper {
  border-top: 1px solid #c6c7c9;
  border-bottom: 1px solid #c6c7c9;
  height: 50px;
}

.fascia-page-switcher .switcher-wrapper .switcher {
  text-align: center;
}

.fascia-page-switcher .switcher-wrapper .switcher a {
  display: inline-block;
  line-height: 38px;
}

.fascia-page-switcher .switcher-wrapper .switcher a .ico {
  vertical-align: middle;
}

.fascia-page-switcher .switcher-wrapper .switcher span.content-name {
  display: inline-block;
  margin: 0 60px;
  font-size: 16px;
  line-height: 48px;
  color: #65656a;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .fascia-page-switcher {
    padding: 0;
  }

  .fascia-page-switcher .switcher-wrapper .switcher {
    padding: 0 13px;
  }

  .fascia-page-switcher .switcher-wrapper .switcher a.prev {
    float: left;
  }

  .fascia-page-switcher .switcher-wrapper .switcher a.next {
    float: right;
  }

  .fascia-page-switcher .switcher-wrapper .switcher span.content-name {
    text-transform: uppercase;
    margin: 0 30px;
  }
}

/* FASCIA: #17 PRODOTTI MONOARABICA 
 * (SU DESKTOP SONO DELLE COLONNE MENTRE
 * SU MOBILE DIVENTA UNA SLIDER)
 ************************************/

.fascia-prodotti-monoarabica {
  padding-bottom: 45px;
}

.fascia-prodotti-monoarabica .bg {
  background-color: #f8f7f7;
  padding-bottom: 52px;
}

.fascia-prodotti-monoarabica .bg .slide {
  padding-top: 45px;
}

.fascia-prodotti-monoarabica .bg .slide h1,
.fascia-prodotti-monoarabica .bg .slide h2,
.fascia-prodotti-monoarabica .bg .slide h3,
.fascia-prodotti-monoarabica .bg .slide h4 {
  color: #d9272e;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  margin-top: 32px;
  margin-bottom: 28px;
}

.fascia-prodotti-monoarabica .bg .slide span.rte,
.fascia-prodotti-monoarabica .bg .slide p {
  text-align: center;
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
  max-width: 270px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .fascia-prodotti-monoarabica .bg {
    padding-bottom: 40px;
  }

  .fascia-prodotti-monoarabica .bg .slick-dots {
    bottom: -52px !important;
  }

  .fascia-prodotti-monoarabica .bg .slick-dots li {
    margin: 0 1px;
  }

  .fascia-prodotti-monoarabica .bg .slick-dots li button:before {
    color: #ded6cb;
    font-size: 13px;
    opacity: 1;
  }

  .fascia-prodotti-monoarabica .bg .slick-dots li button:hover:before {
    opacity: 0.5;
  }

  .fascia-prodotti-monoarabica .bg .slick-dots li.slick-active button:before {
    color: #d9272e;
    opacity: 1;
  }

  .fascia-prodotti-monoarabica .bg .slide img.img-responsive {
    max-height: 165px;
  }

  .fascia-prodotti-monoarabica .bg .slide h1,
  .fascia-prodotti-monoarabica .bg .slide h2,
  .fascia-prodotti-monoarabica .bg .slide h3,
  .fascia-prodotti-monoarabica .bg .slide h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 26px;
    margin-bottom: 18px;
  }

  .fascia-prodotti-monoarabica .bg .slide span.rte,
  .fascia-prodotti-monoarabica .bg .slide p {
    font-size: 14px;
    line-height: 22px;
  }
}

/* FASCIA: #28 SLIDER N28
 ************************************/

.fascia-slider-n28 {
  max-width: 1230px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.fascia-slider-n28 .slide:focus {
  outline: none !important;
}

.fascia-slider-n28 .slide-content {
  position: absolute;
  top: 0;
  bottom: 140px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
}

.fascia-slider-n28 .slide-inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-left: 102px;
  padding-right: 102px;
}

.fascia-slider-n28 .slide-inner span,
.fascia-slider-n28 .slide-inner h1,
.fascia-slider-n28 .slide-inner h2,
.fascia-slider-n28 .slide-inner h3.rte {
  font-size: 30px;
  line-height: 32px;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase !important;
  display: block;
}

.fascia-slider-n28 .slide-inner p {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
  margin-top: 28px;
  margin-bottom: 28px;
}

.fascia-slider-n28 .slide-inner p.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-slider-n28 .slide-inner p.Extrabold {
  font-weight: 800;
}

.fascia-slider-n28 .slide-inner p.Bold {
  font-weight: 700;
}

.fascia-slider-n28 .slide-inner p.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-slider-n28 .slide-inner p.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-slider-n28 .slide-inner p.Regular {
  font-weight: 400;
}

.fascia-slider-n28 .slide-inner p.Light {
  font-weight: 300;
}

.fascia-slider-n28 .align-left .v-block {
  width: 50%;
  text-align: left;
}

.fascia-slider-n28 .align-right .v-block {
  width: 50%;
  float: right;
  text-align: right;
}

@media (max-width: 767px) {
  .fascia-slider-n28 .align-mobile-left .v-block {
    width: 50%;
    text-align: left;
  }

  .fascia-slider-n28 .align-mobile-right .v-block {
    width: 50%;
    float: right;
    text-align: right;
  }
}

.fascia-slider-n28 .slide-controls .slider-next,
.fascia-slider-n28 .slide-controls .slider-prev {
  z-index: 1;
  bottom: 91px;
  position: absolute;
  cursor: pointer;
}

.fascia-slider-n28 .slide-controls .slider-next {
  right: 50%;
  margin-right: -215px;
}

.fascia-slider-n28 .slide-controls .slider-prev {
  left: 50%;
  margin-left: -215px;
}

.fascia-slider-n28 .slick-dots {
  display: block;
  right: auto;
  bottom: 25px;
  width: 100%;
  margin: 0;
}

.fascia-slider-n28 .slick-dots li {
  margin: 0 1px;
}

.fascia-slider-n28 .slick-dots li button:before {
  color: #ded6cb;
  font-size: 13px;
  opacity: 1;
}

.fascia-slider-n28 .slick-dots li button:hover:before {
  opacity: 0.5;
}

.fascia-slider-n28 .slick-dots li.slick-active button:before {
  color: #d9272e;
  opacity: 1;
}

@media screen and (max-width: 1259px) {
  .fascia-slider-n28 .slide-inner {
    padding-left: 78px;
    padding-right: 78px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-slider-n28 .slide-inner {
    padding-left: 65px;
    padding-right: 65px;
  }

  .fascia-slider-n28 .slide-content {
    bottom: 85px;
  }

  .fascia-slider-n28 .slide-controls a.cmp-button-red-big {
    bottom: 45px;
    margin-left: -125px;
    padding: 10px;
    width: 250px;
    min-width: 0;
  }

  .fascia-slider-n28 .slide-controls .slider-prev,
  .fascia-slider-n28 .slide-controls .slider-next {
    bottom: 48px;
  }

  .fascia-slider-n28 .slide-controls .slider-next {
    margin-right: -190px;
  }

  .fascia-slider-n28 .slide-controls .slider-prev {
    margin-left: -190px;
  }

  .fascia-slider-n28 .slick-dots {
    bottom: 11px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-slider-n28 .slide-inner {
    padding: 0;
  }

  .fascia-slider-n28 .slide-inner .v-block {
    width: 100%;
    text-align: center;
  }

  .fascia-slider-n28 .slide-inner .v-block span,
  .fascia-slider-n28 .slide-inner .v-block h1,
  .fascia-slider-n28 .slide-inner .v-block h2,
  .fascia-slider-n28 .slide-inner .v-block h3.rte {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 25px;
    color: #d9272e;
  }

  .fascia-slider-n28 .slide-inner .v-block span.Extrabold-Italic,
  .fascia-slider-n28 .slide-inner .v-block h1.Extrabold-Italic,
  .fascia-slider-n28 .slide-inner .v-block h2.Extrabold-Italic,
  .fascia-slider-n28 .slide-inner .v-block h3.rte.Extrabold-Italic {
    font-weight: 800;
    font-style: italic;
  }

  .fascia-slider-n28 .slide-inner .v-block span.Extrabold,
  .fascia-slider-n28 .slide-inner .v-block h1.Extrabold,
  .fascia-slider-n28 .slide-inner .v-block h2.Extrabold,
  .fascia-slider-n28 .slide-inner .v-block h3.rte.Extrabold {
    font-weight: 800;
  }

  .fascia-slider-n28 .slide-inner .v-block span.Bold,
  .fascia-slider-n28 .slide-inner .v-block h1.Bold,
  .fascia-slider-n28 .slide-inner .v-block h2.Bold,
  .fascia-slider-n28 .slide-inner .v-block h3.rte.Bold {
    font-weight: 700;
  }

  .fascia-slider-n28 .slide-inner .v-block span.Semibold-Italic,
  .fascia-slider-n28 .slide-inner .v-block h1.Semibold-Italic,
  .fascia-slider-n28 .slide-inner .v-block h2.Semibold-Italic,
  .fascia-slider-n28 .slide-inner .v-block h3.rte.Semibold-Italic {
    font-weight: 600;
    font-style: italic;
  }

  .fascia-slider-n28 .slide-inner .v-block span.Italic,
  .fascia-slider-n28 .slide-inner .v-block h1.Italic,
  .fascia-slider-n28 .slide-inner .v-block h2.Italic,
  .fascia-slider-n28 .slide-inner .v-block h3.rte.Italic {
    font-style: italic;
    font-weight: 400;
  }

  .fascia-slider-n28 .slide-inner .v-block span.Regular,
  .fascia-slider-n28 .slide-inner .v-block h1.Regular,
  .fascia-slider-n28 .slide-inner .v-block h2.Regular,
  .fascia-slider-n28 .slide-inner .v-block h3.rte.Regular {
    font-weight: 400;
  }

  .fascia-slider-n28 .slide-inner .v-block span.Light,
  .fascia-slider-n28 .slide-inner .v-block h1.Light,
  .fascia-slider-n28 .slide-inner .v-block h2.Light,
  .fascia-slider-n28 .slide-inner .v-block h3.rte.Light {
    font-weight: 300;
  }

  .fascia-slider-n28 .slide-inner .v-block p {
    font-size: 12px;
    line-height: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .fascia-slider-n28 .slide-content {
    bottom: 85px;
    padding: 0 13px;
  }

  .fascia-slider-n28 .slide-content .fontsize60,
  .fascia-slider-n28 .slide-content .fontsize22,
  .fascia-slider-n28 .slide-content .line-height80 {
    font-size: 12px;
    line-height: 1.2;
  }

  .fascia-slider-n28 .slide-controls a.cmp-button-red-medium {
    position: absolute;
    bottom: 55px;
    left: 50%;
    margin-left: -72.5px;
    width: 145px;
    text-align: center;
    height: 30px;
    padding-top: 8px;
  }

  .fascia-slider-n28 .slick-dots {
    bottom: 20px;
  }
}

html.ie9 .fascia-slider-n28 .slider .slick-list {
  z-index: 0 !important;
}

html.ie9 .fascia-slider-n28 .slick-dots,
html.ie9 .fascia-slider-n28 li,
html.ie9 .fascia-slider-n28 button {
  z-index: 1;
}

/* FASCIA: #28 SLIDER N28 [FULLWIDTH]
 ************************************/

.fascia-slider-n28.fascia-fullwidth {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.fascia-slider-n28.fascia-fullwidth .slick-slide img {
  width: 100%;
}

/* FASCIA #29: box in img e testo
 ************************************/

.fascia-29 .box {
  position: relative;
  margin: 1px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 448px;
}

.fascia-29 .box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
}

.fascia-29 .box .overlay .v-block {
  max-width: 380px;
  margin: 0 auto;
}

.fascia-29 .box .overlay h1,
.fascia-29 .box .overlay h2,
.fascia-29 .box .overlay h3,
.fascia-29 .box .overlay h4 {
  text-align: center;
  color: #fff;
  /*font-size: 20px;
				line-height: 24px;*/
  /* RICHIESTA DI PIETRO ILLYCOM-1566 */
  font-size: 36px;
  line-height: 38px;
  margin: 0;
  margin-bottom: 25px;
}

.fascia-29 .box .overlay div.rte {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}

.fascia-29 .box .overlay .cta-standard {
  margin-top: 50px;
}

@media screen and (min-width: 992px) and (max-width: 1259px) {
  .fascia-29 .box {
    min-height: unset;
  }

  .fascia-29 .box .overlay h1,
  .fascia-29 .box .overlay h2,
  .fascia-29 .box .overlay h3,
  .fascia-29 .box .overlay h4 {
    margin-bottom: 20px;
  }

  .fascia-29 .box .overlay .cta-standard {
    margin-top: 20px;
  }

  .fascia-29 .box .overlay img {
    max-width: 180px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-29 .box {
    min-height: unset;
  }

  .fascia-29 .box .overlay img {
    max-width: 180px;
  }

  .fascia-29 .box .overlay div.rte {
    display: none !important;
  }

  .fascia-29 .box .overlay .cta-standard {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .fascia-29 .box {
    min-height: unset;
  }

  .fascia-29 .box .overlay div.rte {
    display: none !important;
  }

  .fascia-29 .box .overlay h1,
  .fascia-29 .box .overlay h2,
  .fascia-29 .box .overlay h3,
  .fascia-29 .box .overlay h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 18px;
  }

  .fascia-29 .box .overlay .cta-standard {
    margin-top: 0;
  }
}

/* FASCIA #30: titolo + sottotitolo
 ************************************/

.fascia-30 .head {
  max-width: 585px;
  margin: 0 auto;
  margin-bottom: 28px;
}

.fascia-30 .head > h3,
.fascia-30 .head > h1,
.fascia-30 .head > h2 {
  text-transform: uppercase;
  font-size: 30px !important;
  line-height: 32px !important;
  color: #d9272e;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.fascia-30 .head > h3.Extrabold-Italic,
.fascia-30 .head > h1.Extrabold-Italic,
.fascia-30 .head > h2.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-30 .head > h3.Extrabold,
.fascia-30 .head > h1.Extrabold,
.fascia-30 .head > h2.Extrabold {
  font-weight: 800;
}

.fascia-30 .head > h3.Bold,
.fascia-30 .head > h1.Bold,
.fascia-30 .head > h2.Bold {
  font-weight: 700;
}

.fascia-30 .head > h3.Semibold-Italic,
.fascia-30 .head > h1.Semibold-Italic,
.fascia-30 .head > h2.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-30 .head > h3.Italic,
.fascia-30 .head > h1.Italic,
.fascia-30 .head > h2.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-30 .head > h3.Regular,
.fascia-30 .head > h1.Regular,
.fascia-30 .head > h2.Regular {
  font-weight: 400;
}

.fascia-30 .head > h3.Light,
.fascia-30 .head > h1.Light,
.fascia-30 .head > h2.Light {
  font-weight: 300;
}

.fascia-30 .content {
  text-align: center;
  max-width: 585px;
  width: 100%;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 24px;
  color: #65656a;
  letter-spacing: 0;
}

@media screen and (max-width: 991px) {
  .fascia-30 .head {
    padding-bottom: 16px;
    margin: 0 auto;
  }

  .fascia-30 .head > h3,
  .fascia-30 .head > h1,
  .fascia-30 .head > h2 {
    font-size: 25px;
    line-height: 30px;
    margin: 0;
  }

  .fascia-30 .content {
    font-size: 15px;
    line-height: 20px;
  }

  .fascia-30 .content p {
    font-size: 15px;
    line-height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-30 .head {
    max-width: 290px;
  }

  .fascia-30 .content {
    max-width: 290px;
  }
}

/* FASCIA #38: Accordion
 ************************************/

.fascia-accordion .cmp-accordion .cmp-accordion-panel {
  margin-top: 0 !important;
  box-shadow: none;
  border-bottom: none;
  border-top: solid 1px #fff;
  border-radius: 0;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title > a {
  padding: 22px 0;
  color: #65656a;
  background: #f4f4f5;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title > a[aria-expanded="true"] {
  color: #65656a;
  background: #dedfe0;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title > a[aria-expanded="true"] .ico-caretbig-down {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner {
  position: relative;
  display: block;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 10px 0 50px;
  font-size: 30px;
  line-height: 32px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner.Extrabold {
  font-weight: 800;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner.Bold {
  font-weight: 700;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner.Regular {
  font-weight: 400;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner.Light {
  font-weight: 300;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner .ico-caretbig-down {
  position: absolute;
  right: 12px;
  top: 12px;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse {
  background: #f4f4f5;
  border-top: solid 1px #fff;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body {
  max-width: 1024px;
  margin: 0 auto;
  padding: 25px 10px 60px 50px;
  border: none;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body .rte {
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
  font-family: 'Open Sans', sans-serif;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body .rte.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body .rte.Extrabold {
  font-weight: 800;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body .rte.Bold {
  font-weight: 700;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body .rte.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body .rte.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body .rte.Regular {
  font-weight: 400;
}

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body .rte.Light {
  font-weight: 300;
}

.fascia-accordion .list-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.fascia-accordion .list-links > li {
  padding: 0;
  margin: 0;
}

.fascia-accordion .list-links > li > a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  line-height: 22px;
  color: #65656a;
  font-family: 'Open Sans', sans-serif;
}

.fascia-accordion .list-links > li > a.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-accordion .list-links > li > a.Extrabold {
  font-weight: 800;
}

.fascia-accordion .list-links > li > a.Bold {
  font-weight: 700;
}

.fascia-accordion .list-links > li > a.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-accordion .list-links > li > a.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-accordion .list-links > li > a.Regular {
  font-weight: 400;
}

.fascia-accordion .list-links > li > a.Light {
  font-weight: 300;
}

.fascia-accordion .list-links > li > a:hover {
  /*text-decoration: underline;*/
  /*font-weight:bold;*/
  color: #313335;
}

@media (max-width: 767px) {
  .fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title > a {
    padding: 13px 0;
  }

  .fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner {
    padding: 0 30px 0 15px;
    font-size: 12px;
    line-height: 15px;
  }

  .fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner .ico-caretbig-down {
    top: 6px;
    right: 35px;
  }

  .fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body {
    padding: 15px 30px 30px 15px;
  }

  .fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-collapse .panel-body .rte {
    font-size: 12px;
    line-height: 15px;
  }

  .fascia-accordion .list-links > li > a {
    padding: 8px 0;
    font-size: 12px;
    line-height: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading .panel-title-inner {
    font-size: 23px;
    line-height: 28px;
  }

  .fascia-accordion .list-links > li > a {
    font-size: 16px;
    line-height: 22px;
  }
}

/* FASCIA #32: video
 ************************************/

.fascia-32 {
  overflow: hidden;
}

.fascia-32 .videos {
  margin-bottom: 50px;
}

.fascia-32 .row {
  margin-left: -1px;
  margin-right: -1px;
}

.fascia-32 .col-md-4 {
  padding: 0 1px;
}

.fascia-32 .video .tit {
  color: #d9272e;
  font-size: 26px;
  line-height: 28px;
  text-align: center;
  max-width: 270px;
  padding: 0 15px;
  margin: 28px auto 18px;
}

.fascia-32 .video .subtit {
  font-size: 18px;
  line-height: 24px;
  color: #65656a;
  text-align: center;
}

.fascia-32 .more_videos {
  margin-bottom: 60px;
}

.fascia-32 .more_videos .btn_more_video {
  /*text-transform: uppercase;
			padding: 18px;
			min-width: 232px;*/
}

@media screen and (max-width: 991px) {
  .fascia-32 .video .tit {
    font-size: 25px;
    line-height: 30px;
  }

  .fascia-32 .video .subtit {
    font-size: 15px;
    line-height: 18px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-32 .container {
    margin: 0;
    padding: 0;
  }

  .fascia-32 .videos_cont {
    padding: 20px 13px;
    /*padding-top: 30px;*/
    background: #eeeae7;
  }

  .fascia-32 .videos_cont .videos {
    margin-bottom: 0;
  }

  .fascia-32 .videos_cont .videos .tit {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 18px;
    max-width: none;
    width: auto;
  }

  .fascia-32 .videos_cont .videos .subtit {
    font-size: 12px;
  }

  .fascia-32 .more_videos {
    margin-bottom: 25px;
  }

  .fascia-32 .more_videos .btn_more_video {
    /*display: inline-block;
				padding: 6px 19px;
				font-size: 12px;
				width: auto;
				min-width: 0;
				background: #eeeae7;*/
  }

  .fascia-32 .video {
    padding-bottom: 15px;
  }

  .fascia-32 .col-md-4:before,
  .fascia-32 .col-md-4:after {
    content: " ";
    display: table;
  }

  .fascia-32 .col-md-4:after {
    clear: both;
  }
}

/* FASCIA #32: video [FULLWIDTH]
 ************************************/

.fascia-32.fascia-fullwidth .container {
  padding: 0;
  width: 100%;
}

.fascia-32.fascia-fullwidth .video img {
  width: 100%;
}

/* FASCIA #31: main video (vimeo)
 ************************************/

.fascia-main-video {
  position: relative;
}

.fascia-main-video div[class^="col-"] {
  padding-bottom: 20px;
}

.fascia-main-video .player-preview {
  position: relative;
}

.fascia-main-video .player-preview .ico-play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -32px;
  margin-left: -32px;
  z-index: 1;
  cursor: pointer;
}

.fascia-main-video h1,
.fascia-main-video h2,
.fascia-main-video h3,
.fascia-main-video h4 {
  color: #d9272e;
  font-size: 26px;
  line-height: 28px;
  margin: 0;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.fascia-main-video span.where {
  font-size: 18px;
  line-height: 24px;
  color: #65656a;
  display: block;
  margin-bottom: 30px;
}

.fascia-main-video div.rte {
  font-size: 16px !important;
  line-height: 19px !important;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-main-video h2 {
    font-size: 26px;
    line-height: 29px;
  }

  .fascia-main-video div.rte {
    font-size: 14px !important;
    line-height: 17px !important;
  }
}

@media screen and (max-width: 767px) {
  .fascia-main-video {
    padding: 0;
  }

  .fascia-main-video h1,
  .fascia-main-video h2,
  .fascia-main-video h3,
  .fascia-main-video h4 {
    font-size: 15px;
    line-height: 18px;
    color: #d9272e;
    margin-bottom: 4px;
  }

  .fascia-main-video span.where {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 5px;
  }

  .fascia-main-video div.rte {
    font-size: 12px !important;
    line-height: 15px !important;
    color: #8b8f92;
    margin-top: 22px !important;
  }

  .fascia-main-video div.rte.visible-xs {
    margin-top: 15px;
    margin-bottom: 22px;
  }

  .fascia-main-video .player-container {
    margin-left: -13px;
    margin-right: -13px;
  }
}

/* FASCIA #37: form contatti
 ************************************/

.fascia-form-contatti {
  padding: 80px 0 90px;
}

.fascia-form-contatti .support-header {
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 60px;
}

.fascia-form-contatti .support-header h1,
.fascia-form-contatti .support-header h2,
.fascia-form-contatti .support-header h3 {
  color: #d9272e;
  font-size: 30px;
  line-height: 32px;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.fascia-form-contatti .support-header h1.Extrabold-Italic,
.fascia-form-contatti .support-header h2.Extrabold-Italic,
.fascia-form-contatti .support-header h3.Extrabold-Italic {
  font-weight: 800;
  font-style: italic;
}

.fascia-form-contatti .support-header h1.Extrabold,
.fascia-form-contatti .support-header h2.Extrabold,
.fascia-form-contatti .support-header h3.Extrabold {
  font-weight: 800;
}

.fascia-form-contatti .support-header h1.Bold,
.fascia-form-contatti .support-header h2.Bold,
.fascia-form-contatti .support-header h3.Bold {
  font-weight: 700;
}

.fascia-form-contatti .support-header h1.Semibold-Italic,
.fascia-form-contatti .support-header h2.Semibold-Italic,
.fascia-form-contatti .support-header h3.Semibold-Italic {
  font-weight: 600;
  font-style: italic;
}

.fascia-form-contatti .support-header h1.Italic,
.fascia-form-contatti .support-header h2.Italic,
.fascia-form-contatti .support-header h3.Italic {
  font-style: italic;
  font-weight: 400;
}

.fascia-form-contatti .support-header h1.Regular,
.fascia-form-contatti .support-header h2.Regular,
.fascia-form-contatti .support-header h3.Regular {
  font-weight: 400;
}

.fascia-form-contatti .support-header h1.Light,
.fascia-form-contatti .support-header h2.Light,
.fascia-form-contatti .support-header h3.Light {
  font-weight: 300;
}

.fascia-form-contatti .form-row {
  font-size: 14px;
  line-height: 22px;
  padding-bottom: 14px;
}

.fascia-form-contatti .form-row .cmp-input-error {
  font-size: 12px !important;
  line-height: 15px !important;
  float: left;
  color: #d9272e;
  margin-left: 10px;
}

.fascia-form-contatti .form-row .cmp-select-white-type3 .dropdown-toggle {
  height: 30px;
}

.fascia-form-contatti .privacy-error {
  font-size: 14px !important;
  line-height: 22px !important;
  color: #d9272e;
  margin-top: 10px;
}

.fascia-form-contatti .privacy {
  padding-top: 50px;
  font-size: 14px;
  line-height: 22px;
}

.fascia-form-contatti .privacy a {
  text-decoration: underline;
}

.fascia-form-contatti .privacy label[for*="radioPrivacyYes"] {
  margin-right: 30px;
}

.fascia-form-contatti .privacy label[for*="radioPrivacyYes"],
.fascia-form-contatti .privacy label[for*="radioPrivacyNo"] {
  margin-top: 30px;
}

.fascia-form-contatti .privacy label[for*="radioPrivacyYes"] span,
.fascia-form-contatti .privacy label[for*="radioPrivacyNo"] span {
  margin-right: 7px;
}

.fascia-form-contatti .buttons {
  padding-top: 30px;
}

.fascia-form-contatti .buttons .lbl-frm-msg-red,
.fascia-form-contatti .buttons .lbl-frm-msg-green {
  margin-top: 15px;
  font-size: 14px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 700;
}

.fascia-form-contatti .buttons .lbl-frm-msg-red {
  color: #d9272e;
}

.fascia-form-contatti .buttons .lbl-frm-msg-green {
  color: #007934;
}

.fascia-form-contatti #mdlContactMsg .lbl-frm-msg-red,
.fascia-form-contatti #mdlContactMsg .lbl-frm-msg-green {
  font-size: 16px;
  margin: 10px 0;
  font-weight: bold;
}

.fascia-form-contatti #mdlContactMsg p {
  color: #a0a3a5;
  font-size: 14px;
  margin-bottom: 20px;
}

.fascia-form-contatti #mdlContactMsg .modal-content {
  border-radius: 0;
}

.fascia-form-contatti #mdlContactMsg .modal-content .modal-body {
  padding: 25px 15px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-form-contatti .support-header .col-sm-4 {
    padding-right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .fascia-form-contatti {
    padding: 15px 0 40px;
  }

  .fascia-form-contatti .support-header {
    font-size: 12px;
    line-height: 15px;
    padding-bottom: 32px;
  }

  .fascia-form-contatti .support-header img.img-responsive {
    margin: 0 auto;
    display: block;
    margin-bottom: 25px;
    max-width: 145px;
  }

  .fascia-form-contatti .support-header h3 {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 15px;
    margin: 0;
  }

  .fascia-form-contatti .form-row .cmp-input-group .cmp-input-error,
  .fascia-form-contatti .form-row .cmp-input-group .cmp-input-label {
    font-size: 10px;
    line-height: 13px;
  }

  .fascia-form-contatti .form-row .cmp-input-group .cmp-input {
    height: 25px;
  }

  .fascia-form-contatti .form-row .cmp-select-group .cmp-select-label {
    font-size: 10px;
    line-height: 13px;
  }

  .fascia-form-contatti .form-row .cmp-select-group .cmp-select-white-type3 {
    display: block;
  }

  .fascia-form-contatti .form-row .cmp-select-group .cmp-select-white-type3 button.dropdown-toggle {
    font-size: 12px;
    line-height: 18px;
    padding: 4px 10px;
  }

  .fascia-form-contatti .form-row .cmp-select-group .cmp-select-white-type3 ul.dropdown-menu {
    font-size: 12px;
    line-height: 18px;
    padding: 4px 10px;
  }

  .fascia-form-contatti .privacy {
    font-size: 10px;
    line-height: 13px;
    padding-top: 10px;
  }

  .fascia-form-contatti .privacy a {
    font-size: 10px;
    line-height: 13px;
  }

  .fascia-form-contatti .privacy label[for*="radioPrivacyYes"],
  .fascia-form-contatti .privacy label[for*="radioPrivacyNo"] {
    margin-top: 18px;
  }

  .fascia-form-contatti .buttons {
    padding-top: 20px;
  }

  .fascia-form-contatti .buttons .cmp-button-red-medium {
    display: inline-block !important;
    text-align: center;
    padding: 8px 10px;
  }

  .fascia-form-contatti .privacy-error {
    font-size: 12px !important;
    line-height: 15px !important;
    color: #d9272e;
    margin-top: 5px;
  }
}

/* FASCIA #39: template vuoto per risultati
 * ricerca e dettaglio privacy
 ************************************/

.fascia-39 {
  margin-top: 2px;
}

.fascia-39 .row {
  /*border: 4px solid @color-gray-light;*/
  margin-bottom: 22px;
  padding-bottom: 18px;
}

.fascia-39 .row ol {
  list-style-position: inside;
}

.fascia-39 .row ol li {
  line-height: 22px;
}

.fascia-39 .row ol[type="A"] {
  margin-left: 40px;
}

.fascia-39 .row h1 {
  margin: 0;
  font-size: 30px;
  line-height: 32px;
  margin-top: 18px;
  color: #d9272e;
  font-weight: 500;
}

.fascia-39 .row h2,
.fascia-39 .row .page-subtitle {
  text-transform: none;
  color: #65656a;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 24px;
}

.fascia-39 .row p {
  line-height: 22px;
}

.fascia-39 .row .title-separator {
  margin: 18px 0;
  border-color: #bfc1c4;
}

.fascia-39 .row .go-back-box {
  padding-bottom: 18px;
  color: #000;
}

.fascia-39 .row .go-back-box .fa {
  margin-right: 2px;
}

/* FASCIA #36: FORM CONFIGURATORE
 ************************************/

.fascia-configuratore {
  padding: 65px 0 80px;
}

.fascia-configuratore .curr-step {
  font-size: 36px;
  line-height: 36px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 100;
  margin-bottom: 40px;
}

.fascia-configuratore h2 {
  text-align: center;
  margin: 0;
  color: #d9272e;
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 80px;
}

.fascia-configuratore .answers .answer {
  padding: 0 42px;
  height: 69px;
  margin-bottom: 1px;
  background: #f3f1ef;
  position: relative;
}

.fascia-configuratore .answers .answer .ico-help {
  position: absolute;
  top: 23px;
  left: 11px;
  cursor: pointer;
}

.fascia-configuratore .answers .answer .text {
  color: #a0a3a5;
  font-size: 18px;
  line-height: 68px;
}

.fascia-configuratore .answers .answer .text .fa-circle {
  font-size: 12px;
  color: #c6c0ba;
  vertical-align: bottom;
  margin-right: 5px;
  line-height: 68px;
}

.fascia-configuratore .answers .answer .cmp-button-red-medium {
  text-align: center;
  min-width: 95px;
  margin-top: 14px;
}

.fascia-configuratore .answers .answer .cmp-button-red-medium.active,
.fascia-configuratore .answers .answer .cmp-button-red-medium:hover {
  background: #007934;
}

.fascia-configuratore .answers .help-box {
  border: 1px solid #f3f1ef;
  border-top: none;
  padding: 25px;
  margin-bottom: 13px;
  position: relative;
  font-size: 18px;
  color: #d9272e;
}

.fascia-configuratore .answers .help-box::before {
  content: ' ';
  position: absolute;
  top: -12px;
  left: 11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 13px 7.5px;
  border-color: transparent transparent #ffffff transparent;
}

.fascia-configuratore .next-buttons-box {
  padding-top: 80px;
}

.fascia-configuratore .next-buttons-box .back-btn {
  position: relative;
  top: -62px;
  font-size: 14px;
}

.fascia-configuratore .next-buttons-box .back-btn .fa-arrow-left {
  margin-right: 4px;
}

.fascia-configuratore .next-buttons-box .cmp-button-red-big {
  display: block;
  margin: 0 auto !important;
}

.fascia-configuratore .next-buttons-box .lbl-frm-msg-red {
  color: #d9272e;
  text-align: center;
  font-size: 13px;
  margin: 0;
  margin-top: 13px;
}

.fascia-configuratore .checkbox-button {
  display: inline-block;
  border: none;
  background-color: transparent;
  padding: 0;
}

.fascia-configuratore .checkbox-button.ico-chk-yes,
.fascia-configuratore .checkbox-button.ico-chk-no {
  font-size: 15px;
  line-height: 34px;
  text-indent: 0;
  margin-top: 17px;
}

.fascia-configuratore .checkbox-button.ico-chk-no {
  color: #a0a3a5;
  text-align: right;
  padding-right: 12px;
}

.fascia-configuratore .checkbox-button.ico-chk-yes {
  color: #d9272e;
  text-align: left;
  padding-left: 12px;
}

.fascia-configuratore .wizard-results h2 {
  font-size: 36px;
  line-height: 36px;
  margin: 10px 0 24px;
  text-align: center;
  color: #d9272e;
  text-transform: capitalize;
}

.fascia-configuratore .wizard-results .box-risultato {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
}

.fascia-configuratore .wizard-results .box-risultato h1 {
  font-size: 36px;
  text-transform: uppercase;
  color: #d9272e;
  line-height: 36px;
  margin: 0;
  text-align: center;
}

.fascia-configuratore .wizard-results .box-risultato div.rte {
  padding: 32px 10px;
  margin: 0 auto;
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 100;
  max-width: 640px;
}

.fascia-configuratore .wizard-results .box-risultato img.img-responsive {
  margin-bottom: 75px;
  margin-left: auto;
  margin-right: auto;
}

.fascia-configuratore .wizard-results .box-risultato .discover-more {
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 14px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 700;
  margin-top: 60px;
}

.fascia-configuratore .wizard-results .box-risultato .discover-more.pull-right {
  margin-right: 28px;
}

.fascia-configuratore .wizard-results .box-risultato .discover-more.pull-left {
  margin-left: 20px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .fascia-configuratore .wizard-results .box-risultato .discover-more {
    margin-right: 0px !important;
    font-size: 13px !important;
  }
}

@media screen and (max-width: 767px) {
  .fascia-configuratore .wizard-results h2 {
    font-size: 12px;
    line-height: 12px;
    margin: 8px auto;
  }

  .fascia-configuratore .wizard-results .box-risultato h1 {
    font-size: 18px;
  }

  .fascia-configuratore .wizard-results .box-risultato div.rte {
    padding: 16px 10px;
    font-size: 12px;
  }

  .fascia-configuratore .wizard-results .box-risultato img.img-responsive {
    margin-bottom: 16px;
  }

  .fascia-configuratore .wizard-results .box-risultato .cmp-button-red-small {
    display: inline-block !important;
  }

  .fascia-configuratore .wizard-results .box-risultato .discover-more {
    font-size: 12px;
    float: none !important;
    margin: 0 !important;
    margin-top: 25px !important;
    padding: 0;
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .fascia-configuratore .curr-step {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 20px;
  }

  .fascia-configuratore h2 {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 20px;
  }

  .fascia-configuratore .answers .answer {
    height: 34px;
    padding: 0 22px;
  }

  .fascia-configuratore .answers .answer .text {
    font-size: 12px;
    line-height: 34px;
  }

  .fascia-configuratore .answers .answer .text .fa-circle {
    font-size: 10px;
    line-height: 34px;
  }

  .fascia-configuratore .answers .answer .ico-help {
    top: 12px;
    left: 6px;
  }

  .fascia-configuratore .answers .answer .cmp-button-red-medium {
    font-size: 12px;
    line-height: 22px;
    height: 22px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 6px;
  }

  .fascia-configuratore .answers .help-box {
    padding: 13px;
    font-size: 11px;
  }

  .fascia-configuratore .answers .help-box::before {
    top: -9px;
    left: 7px;
    border-width: 0 4.5px 9px 4.5px;
  }

  .fascia-configuratore .checkbox-button.ico-chk-yes,
  .fascia-configuratore .checkbox-button.ico-chk-no {
    margin-top: 5px;
    line-height: 22px;
    font-size: 12px;
  }

  .fascia-configuratore .next-buttons-box {
    padding-top: 30px;
  }

  .fascia-configuratore .next-buttons-box .back-btn {
    top: -12px;
  }

  .fascia-configuratore .next-buttons-box .cmp-button-red-small {
    font-size: 12px;
    margin: 0 auto;
  }

  .fascia-configuratore .next-buttons-box .cmp-button-red-small.visible-xs.ng-hide {
    display: none !important;
  }
}

/* MODALE RISULTATO FORM "CONFIGURATORE"
 ************************************/

#modalResult {
  z-index: 9999999999;
}

#modalResult .modal-dialog {
  max-width: 990px;
  width: 100%;
}

#modalResult .modal-dialog .modal-content {
  box-shadow: none;
  border-radius: 0;
  border: none;
}

#modalResult .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  padding: 18px;
}

#modalResult .modal-dialog .modal-content .modal-header .close {
  opacity: 1 !important;
}

#modalResult .modal-dialog .modal-content .modal-body {
  padding: 0 32px 68px;
}

#modalResult .modal-dialog .modal-content .modal-body h2 {
  font-size: 36px;
  line-height: 36px;
  margin: 10px 0 24px;
  text-align: center;
  color: #d9272e;
  text-transform: capitalize;
}

#modalResult .modal-dialog .modal-content .modal-body .box-risultato {
  display: none;
}

#modalResult .modal-dialog .modal-content .modal-body .box-risultato h1 {
  font-size: 36px;
  text-transform: uppercase;
  color: #d9272e;
  line-height: 36px;
  margin: 0;
  text-align: center;
}

#modalResult .modal-dialog .modal-content .modal-body .box-risultato div.rte {
  padding: 32px 10px;
  margin: 0 auto;
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 100;
  max-width: 640px;
}

#modalResult .modal-dialog .modal-content .modal-body .box-risultato img.img-responsive {
  margin-bottom: 75px;
}

#modalResult .modal-dialog .modal-content .modal-body .box-risultato .discover-more {
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 14px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 700;
  margin-top: 60px;
}

#modalResult .modal-dialog .modal-content .modal-body .box-risultato .discover-more.pull-right {
  margin-right: 28px;
}

#modalResult .modal-dialog .modal-content .modal-body .box-risultato .discover-more.pull-left {
  margin-left: 20px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  #modalResult .modal-dialog {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #modalResult .modal-dialog .modal-content .modal-header {
    padding: 12px;
  }

  #modalResult .modal-dialog .modal-content .modal-body {
    padding: 0 20px 40px;
  }

  #modalResult .modal-dialog .modal-content .modal-body .box-risultato .discover-more {
    margin-right: 0px !important;
    font-size: 13px !important;
  }
}

@media screen and (max-width: 767px) {
  #modalResult .modal-dialog {
    max-width: 295px;
    margin-left: auto;
    margin-right: auto;
  }

  #modalResult .modal-dialog .modal-content .modal-header {
    padding: 5px;
  }

  #modalResult .modal-dialog .modal-content .modal-body {
    padding: 0 11px 45px;
  }

  #modalResult .modal-dialog .modal-content .modal-body h2 {
    font-size: 12px;
    line-height: 12px;
    margin: 8px auto;
  }

  #modalResult .modal-dialog .modal-content .modal-body .box-risultato h1 {
    font-size: 18px;
  }

  #modalResult .modal-dialog .modal-content .modal-body .box-risultato div.rte {
    padding: 16px 10px;
    font-size: 12px;
  }

  #modalResult .modal-dialog .modal-content .modal-body .box-risultato img.img-responsive {
    margin-bottom: 16px;
  }

  #modalResult .modal-dialog .modal-content .modal-body .box-risultato .cmp-button-red-small {
    display: inline-block !important;
  }

  #modalResult .modal-dialog .modal-content .modal-body .box-risultato .discover-more {
    font-size: 12px;
    float: none !important;
    margin: 0 !important;
    margin-top: 25px !important;
    padding: 0;
    display: block;
    text-align: center;
  }
}

/* MODALE ISCRIZIONE NEWSLETTER
 ************************************/

#modalNewsletter {
  z-index: 9999999999;
}

#modalNewsletter .modal-dialog {
  max-width: 660px;
  width: 100%;
}

#modalNewsletter .modal-dialog .modal-content {
  box-shadow: none;
  border-radius: 0;
  border: none;
}

#modalNewsletter .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  padding: 18px;
}

#modalNewsletter .modal-dialog .modal-content .modal-header .close {
  opacity: 1 !important;
}

#modalNewsletter .modal-dialog .modal-content .modal-body {
  padding: 0 32px 68px;
}

#modalNewsletter .modal-dialog .modal-content .modal-body h2 {
  font-size: 18px;
  line-height: 18px;
  margin: 10px 0;
  text-align: center;
  color: #d9272e;
  text-transform: capitalize;
}

#modalNewsletter .modal-dialog .modal-content .modal-body p.newsletter-intro {
  font-size: 14px;
  line-height: 17px;
  max-width: 85%;
  margin: 4px auto 22px;
}

#modalNewsletter .modal-dialog .modal-content .modal-body .privacy-box {
  max-height: 150px;
  overflow-y: auto;
  margin: 22px 0px;
  font-size: 13px;
  border: 1px solid #d6d6d6;
  padding: 10px;
}

#modalNewsletter .modal-dialog .modal-content .modal-body .privacy-box p {
  font-size: 13px !important;
}

#modalNewsletter .modal-dialog .modal-content .modal-body .cmp-button-red-small {
  margin-top: 22px;
}

#modalNewsletter .modal-dialog .modal-content .modal-body .lbl-frm-msg-red,
#modalNewsletter .modal-dialog .modal-content .modal-body .lbl-frm-msg-green {
  margin-top: 15px;
  font-size: 14px;
  font-family: "museo-sans", Arial;
  font-style: normal;
  font-weight: 700;
}

#modalNewsletter .modal-dialog .modal-content .modal-body .lbl-frm-msg-red {
  color: #d9272e;
}

#modalNewsletter .modal-dialog .modal-content .modal-body .lbl-frm-msg-green {
  color: #007934;
}

@media screen and (max-width: 767px) {
  #modalNewsletter .modal-dialog {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  #modalNewsletter .modal-dialog .modal-content .modal-header {
    padding: 15px;
  }

  #modalNewsletter .modal-dialog .modal-content .modal-body {
    padding: 0 15px 40px;
  }
}

/* FASCIA #40 (big video)
 ************************************/

/* FASCIA #41 (Sticky header)
 ************************************/

.fascia-sticky-contatto {
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.125);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.125);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.125);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 4;
  background-color: #fff;
}

.fascia-sticky-contatto .inline-block {
  display: inline-block;
}

.fascia-sticky-contatto .ico-logo {
  margin-left: 40px;
  margin-top: 10px;
  margin-right: 26px;
}

.fascia-sticky-contatto .back-to {
  background-color: #e4e4e4;
  padding: 4px 12px;
  text-align: center;
  border-radius: 15px;
  display: inline-block;
  position: relative;
  top: -19px;
  color: #4a4a4a;
}

.fascia-sticky-contatto .btn-contattaci {
  text-align: center !important;
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  margin-right: 12px;
}

.fascia-sticky-contatto .btn-contattaci.rounded {
  border-radius: 66px;
}

.fascia-sticky-contatto .btn-telefono {
  margin-right: 130px;
  font-size: 15px;
  position: relative;
  top: 14px;
  cursor: pointer;
}

.fascia-sticky-contatto .btn-telefono.rounded {
  border-radius: 66px;
}

.fascia-sticky-contatto .btn-telefono.rounded .ico-phone-big {
  position: relative;
  left: 7px;
}

.fascia-sticky-contatto .btn-telefono.rounded span {
  font-size: 11px;
  line-height: 13px;
  position: relative;
  top: -2px;
  left: 7px;
}

.fascia-sticky-contatto .btn-telefono.rounded span strong {
  display: block;
  font-size: 13px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .fascia-sticky-contatto .btn-telefono {
    margin-right: 40px;
  }
}

@media (max-width: 767px) {
  .fascia-sticky-contatto {
    height: 46px;
  }

  .fascia-sticky-contatto .ico-logo {
    margin: 10px 18px;
  }

  .fascia-sticky-contatto .back-to-mobile {
    color: #4a4a4a;
    position: absolute;
    right: 20px;
    top: 14px;
  }
}

@media (max-width: 767px) {
  .cta-contatto {
    float: none;
    width: 100%;
    display: block;
    padding: 20px 60px;
  }

  .cta-contatto .btn-contattaci,
  .cta-contatto .btn-telefono {
    display: block;
    float: none;
    height: 36px;
  }

  .cta-contatto .btn-contattaci {
    text-align: center !important;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }

  .cta-contatto .btn-contattaci.rounded {
    /*border-radius: 66px;*/
  }

  .cta-contatto .btn-telefono {
    font-size: 15px;
    cursor: pointer;
    padding-left: 22%;
  }

  .cta-contatto .btn-telefono.rounded {
    /*border-radius: 66px;*/
  }

  .cta-contatto .btn-telefono.rounded .ico-phone-big {
    position: relative;
    left: 7px;
    top: -4px;
  }

  .cta-contatto .btn-telefono.rounded span {
    font-size: 11px;
    line-height: 13px;
    position: relative;
    top: -5px;
    left: 7px;
  }

  .cta-contatto .btn-telefono.rounded span strong {
    display: block;
    font-size: 13px;
  }
}

/* FULLSCREEN LOADER */

.fullscreen_loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 999999;
}

.fullscreen_loader img {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  left: 50%;
  margin-left: -16px;
}

.fascia {
  /*margin-top: 20px;
	margin-bottom: 20px;*/
}

/* ICONA DI CONTATTO */

.fascia-42.telephone {
  position: fixed;
  bottom: 97px;
  right: 25px;
  display: inline-block;
  margin: 0;
  z-index: 999;
  border: 1px solid #007934;
  border-bottom: none;
  border-left: none;
  border-right: none;
  cursor: default;
  background-color: transparent;
  -moz-transition-property: background-color;
  -moz-transition-duration: 0.1s;
  -moz-transition-delay: 0s;
  -moz-transition-easing: ease-in-out;
  -webkit-transition-property: background-color;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-delay: 0s;
  -webkit-transition-easing: ease-in-out;
  -o-transition-property: background-color;
  -o-transition-duration: 0.1s;
  -o-transition-delay: 0s;
  -o-transition-easing: ease-in-out;
  transition-property: background-color;
  transition-duration: 0.1s;
  transition-delay: 0s;
  transition-easing: ease-in-out;
}

.fascia-42.telephone img.normal {
  max-width: 50px;
}

.fascia-42.telephone img.hover {
  display: none;
  max-width: 50px;
}

.fascia-42.telephone span {
  display: none;
  color: #fff;
  line-height: 52px;
  font-size: 15px;
  margin-right: 10px;
}

.fascia-42.telephone:hover {
  cursor: none;
  background-color: #007934;
}

.fascia-42.telephone:hover img.normal {
  display: none !important;
  cursor: default;
}

.fascia-42.telephone:hover img.hover {
  display: inline-block;
  cursor: default;
}

.fascia-42.telephone:hover.desktop {
  width: auto;
  min-width: 155px;
  border: 1px solid #007934 !important;
  cursor: default;
}

.fascia-42.telephone:hover.desktop span {
  display: inline-block;
}

.fascia-42.contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: inline-block;
  margin: 0;
  z-index: 999;
}

.fascia-42.contact span {
  display: none;
}

.fascia-42.contact img.normal {
  max-width: 52px;
}

.fascia-42.contact img.hover {
  display: none;
  max-width: 52px;
}

.fascia-42.contact:hover img.normal {
  display: none !important;
}

.fascia-42.contact:hover img.hover {
  display: inline-block;
}

.fascia-42.contact-b span {
  display: none;
}

.fascia-42.contact-b:hover {
  background: #d9272e;
  color: #fff;
}

.fascia-42.contact-b:hover.desktop {
  width: 155px;
  border: 1px solid #d9272e !important;
}

.fascia-42.contact-b:hover.desktop span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .fascia-42.telephone {
    bottom: 85px;
  }

  .fascia-42.telephone img.normal {
    max-width: 45px;
  }

  .fascia-42.telephone img.hover {
    max-width: 40px;
  }

  .fascia-42.contact img.normal {
    max-width: 45px;
  }

  .fascia-42.contact img.hover {
    max-width: 42px;
  }
}

/* BREADCRUMBS */

.fascia-breadcrumbs {
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.fascia-breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 15px;
}

.fascia-breadcrumbs ul:before,
.fascia-breadcrumbs ul:after {
  content: " ";
  display: table;
}

.fascia-breadcrumbs ul:after {
  clear: both;
}

.fascia-breadcrumbs ul li {
  float: left;
}

.fascia-breadcrumbs ul li a {
  line-height: 30px;
  text-transform: uppercase;
  color: #bbc0c4;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 11px;
}

.fascia-breadcrumbs ul li a:hover {
  color: #bbc0c4;
}

.fascia-breadcrumbs ul li a.active {
  color: #8b8f92;
  cursor: default;
}

.fascia-breadcrumbs ul li a.active:hover {
  color: #8b8f92;
}

.fascia-breadcrumbs ul li a:after {
  content: '>';
  color: #bbc0c4;
  margin-left: 0.4em;
  margin-right: 0.4em;
}

.fascia-breadcrumbs ul li:last-child a:after {
  display: none;
}

.fascia-breadcrumbs .col-xs-12 {
  border-top: 1px solid #e0dbd7;
  border-bottom: 1px solid #e0dbd7;
}

@media screen and (max-width: 767px) {
  .fascia-breadcrumbs ul {
    padding-left: 0;
  }
}

/* Icona di chiusura personalizzata per modale del promo video */

.mfp-close-custom {
  font-size: 13px;
  line-height: 15px;
}

.mfp-close-custom img {
  max-width: 14px;
  margin-left: 8px;
  position: relative;
  top: -2px;
}

.promo-video {
  display: none !important;
}

/* Per poter utilizzare l'H1 negli accordion della privacy */

.fascia-accordion .cmp-accordion .cmp-accordion-panel .panel-heading h1 {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.fascia-accordion .panel-heading h1 {
  margin: 0;
  line-height: 20px;
  text-transform: uppercase;
}

.fascia-accordion .cmp-accordion-panel .panel-heading h1 a {
  display: block;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
  font-weight: 500;
}

/* Custom visible-xs */

@media screen and (min-width: 768px) {
  .visible-xs-custom {
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
  }
}

.illy-single-checkbox label {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  font-weight: bold;
  line-height: 20px;
  padding-left: 28px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 15px;
}

.illy-single-checkbox label::before,
.illy-single-checkbox label::after {
  content: '';
  position: absolute;
}

.illy-single-checkbox label::before {
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #E0DBD7;
}

.illy-single-checkbox label::after {
  display: none;
  top: 3px;
  left: 8px;
  content: '';
  width: 4px;
  height: 12px;
  border: solid #d9272e;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.illy-single-checkbox label.checked::after {
  display: block;
}

.illy-single-checkbox label span {
  color: #8b8f93;
  font-weight: 300;
}

.illy-single-checkbox label span a {
  color: #d9272e;
}

.illy-single-checkbox label span a:hover {
  color: #d9272e;
}

.illy-single-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
  padding: 0;
}

.illy-single-checkbox input[type="checkbox"]:checked + label::after,
.illy-single-checkbox input[type="checkbox"] .illy-checkbox input[type="checkbox"]:checked + span + label::after {
  display: block;
}