:root {
  --dark: #212121;
  --primary: #ffdd00;
  --light: #f8f9fa;
}

/* TITOLI */
.title-divider__left {
  content: "";
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 0;
  margin-right: auto;
  display: block;
  width: 50px;
  height: 5px;
  background-color: inherit;
}

.title-divider__center {
  content: "";
  margin: 1rem auto;
  display: block;
  width: 50px;
  height: 5px;
  background-color: inherit;
}

/* COLORI */
.primary-font {
  font-family: "Montserrat", sans-serif !important;
}

.secondary-font {
  font-family: "Playfair Display", sans-serif !important;
}

.primary-color {
  color: #000;
  background-color: transparent !important;
}

.secondary-color {
  color: #ffdd00;
  background-color: transparent !important;
}

.gray-text {
  color: #323738;
}

.black-text {
  color: #000;
}

.white-text {
  color: #fff;
}

.primary-bgcolor {
  background-color: #000;
}

.secondary-bgcolor {
  background-color: #ffdd00;
}

.gray-bgcolor {
  background-color: #eeeeee;
}

.white-bgcolor {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.bg-gradient {
  background-image: linear-gradient(224deg, #fff08b 0%, #ffdd00 75%);
}

.bg-gradient-gray {
  background-image: linear-gradient(180deg, #fff 0%, #eee 100%);
}

.btn-primary {
  background-color: transparent !important;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8em;
  padding: 8px 30px;
  display: inline-block;
  border: 2px solid #ffdd00;
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background-color: #ffdd00 !important;
  color: #000;
  border: 2px solid #ffdd00;
}

.btn-parallelogram {
  transform: skew(-20deg);
}

.skew-fix {
  display: inline-block;
  transform: skew(20deg);
}

.btn-secondary {
  background-color: transparent !important;
  border: 2px solid #000;
  color: #000 !important;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8em;
  padding: 8px 30px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
  background-color: #000 !important;
  border: 2px solid #000;
  color: #fff !important;
}

.btn-secondary:not([disabled]):not(.disabled).active,
.btn-secondary:not([disabled]):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  background-color: #000 !important;
}

.btn-filter {
  background-color: #eee !important;
  color: #172c81 !important;
  border: none !important;
  text-transform: none;
  font-size: 0.8em;
  padding: 6px 20px;
  transition: all 0.2s ease-in-out;
}

.btn-filter:hover {
  background-color: #172c81 !important;
  color: #fff !important;
}

.markerval-x {
  color: #005a9a;
}

.markerval-o {
  color: #30ac62;
}

.markerval-w {
  color: #1bd0e7;
}

/* UTILI */
html,
body {
  scroll-behavior: smooth;
}

#my-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0;
  z-index: 1030;
}

a > i.fa-chevron-right,
a > i.fa-angle-right {
  transform: translateX(0);
  transition: transform 0.1s ease-in;
}

a:hover > i.fa-chevron-right,
a:hover > i.fa-angle-right {
  transform: translateX(5px);
}

.description-white {
  font-weight: lighter;
  opacity: 0.87;
  color: #fff;
}

.position-sticky {
  top: 70px;
}

.badge.secondary-bgcolor {
  color: #000 !important;
}

.btn-floating {
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.card {
  box-shadow: none;
}

hr {
  border-color: #dee2e6;
}

b,
strong {
  font-weight: bold;
}

h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty,
p:empty {
  display: none;
}

h1 > br:only-child,
h2 > br:only-child,
h3 > br:only-child,
h4 > br:only-child,
h5 > br:only-child,
h6 > br:only-child,
p > br:only-child {
  display: none;
}

.richeditor h1:not(:first-child),
.richeditor h2:not(:first-child),
.richeditor h3:not(:first-child),
.richeditor h4:not(:first-child),
.richeditor h5:not(:first-child),
.richeditor h6:not(:first-child) {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.richeditor a {
  color: #212121;
  border-bottom: 2px solid #ffdd00;
}

.richeditor a:hover {
  color: #212121;
  border-bottom: 2px solid transparent;
}

.overflow-visible {
  overflow: visible !important;
}

.cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.cover--light::after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(90deg, #000000 0%, #000000 100%);
  background: -webkit-linear-gradient(90deg, #000000 0%, #000000 100%);
  background: -moz-linear-gradient(90deg, #000000 0%, #000000 100%);
  opacity: 0.5;
}

.cover--strong::after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(90deg, #000000 0%, #000000 100%);
  background: -webkit-linear-gradient(90deg, #000000 0%, #000000 100%);
  background: -moz-linear-gradient(90deg, #000000 0%, #000000 100%);
  opacity: 0.8;
}

.cover--skew::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(45% 0, 100% 0%, 100% 100%, 80% 100%);
  background: #000000;
  background: linear-gradient(90deg, #000000 0%, #000000 100%);
  background: -webkit-linear-gradient(90deg, #000000 0%, #000000 100%);
  background: -moz-linear-gradient(90deg, #000000 0%, #000000 100%);
}

.cover > * {
  z-index: 1;
  position: relative;
}

.cover.cover--skew > * {
  position: absolute;
  right: 0;
  max-width: 25vw;
  top: 2rem;
}

.grid-column {
  position: relative;
}

/* *** */

/* BREADCRUMB */
.breadcrumb {
  background-color: #000;
  border-radius: 0;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 1rem;
}

.breadcrumb-item {
  padding: 0.5rem 1rem;
  font-size: 12px;
  color: #fff;
}

.breadcrumb-item > a {
  color: #fff;
}

.breadcrumb-item.active {
  background-color: #ffdd00;
  color: #000;
  font-weight: bold;
  transform: skew(20deg);
}

.breadcrumb-item + .breadcrumb-item.active::before,
.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

.breadcrumb .skew-fix {
  transform: skew(-20deg);
}

/* FORM */
.md-form input[type="date"]:focus:not([readonly]),
.md-form input[type="datetime-local"]:focus:not([readonly]),
.md-form input[type="email"]:focus:not([readonly]),
.md-form input[type="number"]:focus:not([readonly]),
.md-form input[type="password"]:focus:not([readonly]),
.md-form input[type="search-md"]:focus:not([readonly]),
.md-form input[type="search"]:focus:not([readonly]),
.md-form input[type="tel"]:focus:not([readonly]),
.md-form input[type="text"]:focus:not([readonly]),
.md-form input[type="time"]:focus:not([readonly]),
.md-form input[type="url"]:focus:not([readonly]),
.md-form textarea.md-textarea:focus:not([readonly]) {
  box-shadow: 0 1px 0 0 #000;
  border-bottom: 1px solid #000;
}

.md-form input[type="date"]:focus:not([readonly]) + label,
.md-form input[type="datetime-local"]:focus:not([readonly]) + label,
.md-form input[type="email"]:focus:not([readonly]) + label,
.md-form input[type="number"]:focus:not([readonly]) + label,
.md-form input[type="password"]:focus:not([readonly]) + label,
.md-form input[type="search-md"]:focus:not([readonly]) + label,
.md-form input[type="search"]:focus:not([readonly]) + label,
.md-form input[type="tel"]:focus:not([readonly]) + label,
.md-form input[type="text"]:focus:not([readonly]) + label,
.md-form input[type="time"]:focus:not([readonly]) + label,
.md-form input[type="url"]:focus:not([readonly]) + label,
.md-form textarea.md-textarea:focus:not([readonly]) + label {
  color: #000;
}

.form-check-input[type="checkbox"]:checked + label:before {
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

.form-check-input[type="checkbox"] + label:before {
  width: 14px;
  height: 14px;
}

.form-check-input[type="checkbox"]:checked + label:before {
  width: 10px;
  height: 18px;
}

textarea {
  min-height: 100px;
}

[data-validate-for] {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: red;
  margin-top: 1rem;
}

.was-validated a.iubenda-nostyle {
  color: inherit;
}

/* SELECT */
.select-wrapper input.select-dropdown {
  padding: 0.375rem 0.75rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  height: auto;
  line-height: inherit;
  margin: 0;
  font-size: 0.9rem;
  box-shadow: none;
}

.select-wrapper span.caret {
  right: 1rem;
  z-index: 3;
}

/*******************
DATA TABLE
*******************/
div.dataTables_wrapper td {
  font-size: 0.8rem;
}

div.dataTables_wrapper th:focus {
  outline: none;
}

div.dataTables_wrapper div.dataTables_length label,
div.dataTables_wrapper div.dataTables_info {
  text-transform: uppercase;
  font-size: 80%;
  font-weight: bold;
  margin: 0;
}

#dtMaterialDesignExample_wrapper .dataTables_length {
  width: max-content;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 0;
}

.dataTables_paginate ul.pagination li.previous,
.dataTables_paginate ul.pagination li.next {
  width: auto;
}

div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0;
  margin: 0;
  width: 100%;
}

div.dataTables_wrapper .table-body__lang {
  width: 150px;
}

div.dataTables_scrollHead .table-head__lang::before,
div.dataTables_scrollHead .table-head__lang::after {
  display: none !important;
}

div.dataTables_scrollHead .select-wrapper li span {
  font-size: 0.8rem;
}

/*
.dataTables_scrollHead {
    overflow: visible!important;
}
*/
/*
.dataTables_scrollFoot {
    overflow: visible!important;
}
*/
div.dataTables_wrapper a,
.detail-wrap.detail-wrap--updated a {
  position: relative;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

div.dataTables_wrapper a:hover,
.detail-wrap.detail-wrap--updated a:hover {
  border-bottom: 2px solid #ffdd00;
}

/* AREA STAMPA */
.table-stampa .table-body__title {
  min-width: 250px;
}

.table-stampa .table-body__product {
  min-width: 400px;
}

.table-stampa .table-body__attachment {
  min-width: 150px;
}

div.dataTables_wrapper .table-body__product a:first-letter {
  text-transform: capitalize;
}

div.dataTables_wrapper .table-body__product a::after,
div.dataTables_wrapper .table-body__video a::after {
  content: "\f054";
  font-family: "Font Awesome\ 5 Free";
  position: absolute;
  right: -1rem;
  font-weight: 900;
  font-size: 0.6rem;
  bottom: 0;
  transform: translateX(0);
  transition: all 0.1s ease-in;
  opacity: 0;
}

div.dataTables_wrapper .table-body__product a:hover::after,
div.dataTables_wrapper .table-body__video a:hover::after {
  opacity: 1;
  transform: translateX(5px);
}

/* DISTRIBUTORI */
.detail-wrap span {
  display: inline-block;
}

.detail-wrap .table-body__name,
.detail-wrap .table-body__type,
.detail-wrap .table-body__area,
.detail-wrap .table-body__address,
.detail-wrap .table-body__state,
.detail-wrap .table-body__city {
  text-transform: lowercase;
}

.detail-wrap .table-body__name:first-letter,
.detail-wrap .table-body__type:first-letter,
.detail-wrap .table-body__area:first-letter,
.detail-wrap .table-body__address:first-letter,
.detail-wrap .table-body__state:first-letter,
.detail-wrap .table-body__city:first-letter {
  text-transform: capitalize;
}

.table-distributori .table-body__name,
.table-distributori .table-body__email {
  min-width: 250px;
}

.table-distributori .table-body__address,
.table-distributori .table-body__website {
  min-width: 200px;
}

.table-distributori .table-body__phone,
.table-distributori .table-body__fax,
.table-distributori .table-body__city {
  min-width: 150px;
}

/* LISTA DISTRIBUTORI DOPO RICERCA */
.detail-wrap--updated {
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
}

.detail-wrap--updated .table-body__name {
  font-weight: bold;
  text-transform: uppercase;
}

/* STORE-LOCATOR */
.location-map .form-control {
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-size: 0.9rem;
  height: auto;
}

.location-map .form-control:focus {
  border-color: #000;
  box-shadow: none;
}

.location-map iframe {
  height: 400px;
  width: 100%;
}

/* NEWS */
.news-list__header h1::after {
  content: "";
  margin: 1rem auto;
  display: block;
  width: 50px;
  height: 5px;
  background-color: #000;
}

/* CONTATTI */
.contact h1::after {
  content: "";
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 0;
  margin-right: auto;
  display: block;
  width: 50px;
  height: 5px;
  background-color: #000;
}

.company-info__wrapper a {
  border-bottom: 2px solid transparent;
}

.company-info__wrapper a:hover {
  border-bottom: 2px solid #000;
}

.social__wrapper .btn-floating {
  box-shadow: none;
  border: 1px solid #000;
}

.social__wrapper .btn-floating:hover {
  background-color: #000;
}

.social__wrapper .btn-floating:hover i {
  color: #fff;
}

.social__wrapper .btn-floating i {
  color: #000;
}

a.iubenda-nostyle {
  border-bottom: 2px solid transparent;
}

a.iubenda-nostyle:hover {
  color: #000;
  border-bottom: 2px solid #ffdd00;
}

#map {
  height: 50vh;
}

/* RISULTATI RICERCA */
.ss-result .mark,
.ss-result mark {
  background-color: #ffdd00;
  color: #000;
}

.ss-result .ss-result__title a {
  border-bottom: 2px solid transparent;
}

.ss-result .ss-result__title a:hover {
  color: #000;
  border-bottom: 2px solid #ffdd00;
}

.ss-result__link {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8em;
  color: #000;
  border-bottom: 2px solid transparent;
}

.ss-result__link:hover {
  color: #000;
  border-bottom: 2px solid #ffdd00;
}

/* PAGINAZIONE */
ul.pagination {
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 0;
}

.pagination li {
  padding: 0.5rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li a {
  color: #000;
}

.pagination li.active {
  background-color: #eee;
}

.pagination .page-item.active .page-link {
  transition: 0s;
  background-color: transparent;
  color: #000;
  box-shadow: none;
  border-radius: 50%;
}

.pagination .page-item.active .page-link:hover {
  background-color: transparent;
}

.pagination .page-item .page-link:hover {
  transition: 0s;
  border-radius: 50%;
  background-color: transparent;
}

div.dataTables_wrapper
  div.dataTables_paginate
  ul.pagination
  .page-item.active
  .page-link:focus {
  background-color: transparent;
}

/* AREA STAMPA - SUPPORTO */
.realizzazioni__header h1::after {
  content: "";
  margin: 1rem auto;
  display: block;
  width: 50px;
  height: 5px;
  background-color: #ffdd00;
}

/* EPOCHE HOME */
.epoche-home {
  margin: 0.5rem 0;
}

.epoche-home__wrapper-intro {
  padding: 0;
}

.epoche-home__wrapper-epoca {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.epoche-home__wrapper-epoca:nth-child(2) {
  padding-left: 0.5rem;
  padding-right: 0.25rem;
}

.epoche-home__wrapper-epoca:nth-child(4) {
  padding-left: 0.25rem;
  padding-right: 0;
}

.epoche-home__wrapper-img {
  position: relative;
  overflow: hidden;
  padding-bottom: 32rem;
}

.epoche-home__wrapper-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
  transition: transform 0.2s ease-in-out;
}

.epoche-home__wrapper-img:hover img {
  transform: scale(1.1);
}

.epoche-home__wrapper-cta {
  position: absolute;
  top: 0;
  right: 4px;
  z-index: 1;
}

.epoche-home__wrapper-cta {
  position: absolute;
  top: 0;
  right: 4px;
  z-index: 1;
}

.epoche-home__wrapper-epoca:nth-child(4) .epoche-home__wrapper-cta {
  right: 0;
}

.epoche-home__wrapper-cta a {
  width: 50px;
  height: 50px;
  background-color: #ffdd00;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.epoche-home__wrapper-cta:hover a {
  background-color: #000;
  color: #fff;
}

.epoche-home__wrapper-title {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 0;
}

/* TIPOLOGIE */
.tipologie__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 0 -15px;
}

.tipologie__wrapper img {
  filter: brightness(70%);
  transition: filter 0.2s ease-in;
}

.tipologie__wrapper .grid-column:hover img {
  filter: brightness(100%);
}

.tipologie__wrapper-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MONDI */
.mondi__wrapper {
  padding-left: 0;
  padding-right: 0.5rem;
}

.mondi__wrapper-img {
  padding-right: 0;
  padding-left: 0.5rem;
}

.mondi__wrapper-img img {
  filter: saturate(40%);
  -webkit-filter: saturate(40%);
  -moz-filter: saturate(40%);
}

.mondi__wrapper-img:hover img {
  filter: saturate(100%);
  -webkit-filter: saturate(100%);
  -moz-filter: saturate(100%);
}

.mondi__wrapper-cta {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  display: flex;
}

.mondi__wrapper-cta i {
  margin-left: 1.5rem;
}

.mondi__wrapper-cta > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  padding: 0.5rem 1rem;
  min-width: 250px;
  color: #fff;
  transition: all 0.2s ease-in-out;
  transform: translate(0, 0);
}

.mondi__wrapper-img:hover .mondi__wrapper-cta > * {
  background-color: #ffdd00;
  color: #000;
  transform: translate(20px, -20px);
}

/* AZIENDA */
.azienda h2 {
  font-size: 1.5rem;
}

.azienda__wrapper:first-child {
  padding-left: 0;
  padding-right: 0.5rem;
}

/* TAG-CATEGORY */
.tag-subcategory__wrapper img {
  object-fit: cover;
  width: 100%;
}

/* TAG-PAGE */
.tag-page__media .toggle-gallery {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: calc(100% - 0.5em);
  height: calc(100% - 0.5rem);
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid transparent;
  transition: border 0.2s ease-in;
}

.tag-page__media .toggle-gallery:hover {
  border: 4px solid #ffdd00;
}

.tag-page__media .media__wrapper:first-child {
  padding-left: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 0;
}

.tag-page__media .media__wrapper {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.tag-page__media .media__wrapper [class*="col"] {
  padding: 0.25rem;
}

.products-tag
  .products-products-item
  .products-products__products-name
  > *:first-child {
  max-width: 75%;
}

/* GALLERY */
.gallery-wrapper-item::before {
  content: "";
  position: relative;
  display: block;
  padding-top: var(--data-ratio);
}

.gallery-wrapper-item.ratio-16-9::before {
  padding-top: 56.25%;
}

.gallery-wrapper-item.ratio-1-1::before {
  padding-top: 100%;
}

.gallery-wrapper-item img {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: calc(100% - 0.5rem);
  height: calc(100% - 0.5rem);
  object-fit: cover;
  object-position: center;
}

/* FOOTER */
footer {
  border-top: 1px solid #dee2e6;
  margin-top: -1px;
}

.page-footer__text {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: #000;
}

/*
.page-footer__text:not(:last-child) {
    border-right: 1px solid #dee2e6;
}
*/
.page-footer__text h1,
.page-footer__text h2,
.page-footer__text h3,
.page-footer__text h4,
.page-footer__text h5,
.page-footer__text h6 {
  font-family: "Playfair Display", sans-serif;
  font-weight: bold;
  margin-bottom: 1rem;
}

.page-footer__text:not(.page-footer__text--newsletter) a {
  width: fit-content;
  margin-top: auto;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8em;
  border-bottom: 2px solid #ffdd00;
  color: inherit;
  position: relative;
  display: inline;
}

.page-footer__text:not(.page-footer__text--newsletter) a::after {
  content: "\f054";
  font-family: "Font Awesome\ 5 Free";
  position: absolute;
  right: -1rem;
  font-weight: 900;
  font-size: 0.6rem;
  bottom: 0;
  transform: translateX(0);
  transition: all 0.1s ease-in;
}

.page-footer__text a:hover::after {
  transform: translateX(5px);
}

.page-footer__text:not(.page-footer__text--newsletter) a:hover {
  border-bottom: 2px solid transparent;
}

.page-footer__text--newsletter .form-check label {
  line-height: 1.2;
  height: auto;
}

.page-footer__text--newsletter .form-check label a {
  border-bottom: 2px solid transparent;
}

.page-footer__text--newsletter .form-check label a:hover {
  border-bottom: 2px solid #ffdd00;
}

.page-footer__text--newsletter .form-control {
  width: calc(100% - 75px);
}

.page-footer__text--newsletter a {
  color: #000;
}

.newsletterform__send {
  background-color: #ffdd00;
  width: 45px;
  height: 45px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  box-shadow: none;
}

.newsletterform__send:hover,
.newsletterform__send:focus,
.newsletterform__send:active {
  box-shadow: 5px 5px 30px 0px rgba(255, 221, 0, 0.5);
  -webkit-box-shadow: 5px 5px 30px 0px rgba(255, 221, 0, 0.5);
  -moz-box-shadow: 5px 5px 30px 0px rgba(255, 221, 0, 0.5);
}

.footer-bottom a {
  color: #fff;
}

.footer-bottom a:hover {
  color: #fff;
  opacity: 0.7;
}

.products-filter,
.products-filter .select-dropdown {
  background-color: #f0efef !important;
}

/* Form inline */
.form-inline-white .form-control {
  color: #fff;
}
.form-inline-white .form-control::placeholder {
  color: #fff;
  opacity: 0.5;
}
.form-inline-white .form-control:focus {
  border-bottom: 1px solid #fff !important;
  box-shadow: none !important;
}
.form-inline-white .form-control:focus::placeholder {
  color: #fff;
  opacity: 0.87;
}
.needs-validation .md-form label {
  left: 0;
}

.section--full-screen {
  min-height: 100vh;
}
.section--half-screen {
  min-height: 50vh;
}
.md-form input[type=date] + label,
.md-form input[type=datetime-local] + label,
.md-form input[type=email] + label,
.md-form input[type=number] + label,
.md-form input[type=password] + label,
.md-form input[type=search-md] + label,
.md-form input[type=search] + label,
.md-form input[type=tel] + label,
.md-form input[type=text] + label,
.md-form input[type=time] + label,
.md-form input[type=url] + label,
.md-form textarea.md-textarea + label {
  pointer-events: none;
}

/* toggle menu desktop */
.toggle-menu-desktop{
  width:80px;
  height:70px;
  padding: 20px;
  background: white;
  border: none;
}

@media (max-width:1200px){
  .toggle-menu-desktop{
    display: none;
  }
}

.toggle-menu-desktop span{
  width:70%;
  background:black;
  height: 5px;
  display: block;
  margin: 5px auto 5px auto;
}

.toggle-menu-desktop .close-button{

}

.toggle-menu-desktop.close-button span:nth-child(1) {
  transform: rotate(45deg);
  margin-top: 10px;
}
.toggle-menu-desktop.close-button span:nth-child(2) {
  transform:translateX(1rem);
  opacity: 0;
}
.toggle-menu-desktop.close-button span:nth-child(3) {
  transform: rotate(-45deg);
  margin-top: -20px;
}

.navbar__actions::before {
  border:none !important;
}

.navbar__actions ul li:first-child::after{
  background-color: white !important;
}

#myDIV{
  display: none;
}

.mystyle {
  width: 100%;
  height: 100%;
  padding: 25px;
  background-color: black;
  color: white;
  font-size: 25px;
  position: fixed;
}

.menu-hamburger{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 70px;
}

#myDIV.mystyle{
  display: block;
}

.productmenu ul li{
  list-style: none;
  line-height: 60px;
  font-size: 21px;
}

.evidence{
  font-size: 46px !important;
  list-style: none;
  font-weight: 600;
  line-height: 80px;
  color:white;
}

.other-voice{
  padding-top: 25px;
}

.productmenu ul li a{
  color:white;
}

.productmenu ul li a:hover{
  color:#ffdd00;
}

.voicemenu ul li{
  list-style: none;
  line-height: 60px;
  font-size: 21px;
}

@media(max-width:1400px){
  .productmenu ul li{
    font-size: 16px;
  }
  .voicemenu ul li{
    font-size: 16px;
  }
}

.voicemenu ul li a{
  color:white;
}

.voicemenu ul li a:hover{
  color:#ffdd00;
}

.border-contact{
  border-right: 1px solid #fbdf22;
}

.product__features .properties-icon{
  width:100px;
  padding:5px;
  margin: -100px 20px 20px 20px;
  z-index:999;
  position: relative;
}

.product__features{
  text-align:right;
  width:100%;
  margin-right:100px;
}

@media (max-width:767px){
  .border-contact{
    border-bottom: 1px solid #fbdf22;
    border-right:0px;
  }
  .product__features{
    padding: 0px !important;
  }
.product__features .properties-icon{
    width:60px;
    margin: -60px 10px 20px 10px;
  }
}

.only-mobile-serch{
  display: none;
}

.size-desk-icon{
  font-size: 21px;
}

.navbar__actions ul li:first-child::after{
  display: none !important;
}

@media (max-width:1200px){
.only-mobile-serch{
  display: block;
}
.size-desk-icon{
  font-size: 12.8px;
}
}

@media (max-width:1400px){
.no-padding-table{
  padding-left: 0 !important;
  padding-right:0 !important
}
}

.blocco-video-local video{
  width: 100%;
}

.video_hero{
  position:absolute;
  width:100%;
  top:70px;
  left: 0px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:white;
  padding: 20% 5%;
}

@media (max-width:1199px){
  .video_hero{
    top: 40px;
    padding: 0 5%;
  }
}

.pulsante-audio-video{
  width: 40px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  margin: 25px;
}

@media (max-width:1199px){
  .pulsante-audio-video{
    width: 25px;
    margin: 12.5px;
  }
}