@charset "utf-8";

/************************************************ GOOGLE FONT ************************************************/

@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

/************************************************ STILI DI BASE ************************************************/

html {
  scroll-behavior: smooth !important;
}

a {
  color: #666666;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #009f9b;
  text-decoration: underline;
}

.arrow {
  font-size: 14px;
}

.btn-link:hover {
  color: #009f9b;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

body {
  font-family: "Roboto Condensed", sans-serif !important;
}

/* Stile del menu principale */
#menu {
  height: 110px;
  background-color: rgba(0,
      0,
      0,
      0.6) !important;
  /* Colore di sfondo semitrasparente */
  transition: height 0.3s;
  /* Animazione di transizione */
}

#mainNav a.navbar-brand,
#mainNav .navbar-nav .nav-link {
  color: white;
  font-size: 15px;
  /* Testo piccolo */
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Stile del menu quando si riduce l'altezza */
#mainNav.menu-small {
  height: 90px;
}

/* Stile delle voci del menu al passaggio del mouse */
#menu .navbar-nav .nav-link {
  transition: color 0.3s;
  /* Animazione di transizione del colore */
}

#menu .navbar-nav .nav-link:hover {
  color: #0ebea7;
  /* Cambio di colore al passaggio del mouse (esempio: giallo) */
}

/* Distanza tra le voci del menu */
.navbar-nav .nav-link {
  margin-right: 20px;
  /* Aggiusta la distanza tra le voci del menu */
}

/* Stile per la voce "Lingue" */
#lingue-dropdown .nav-link {
  margin-left: 40px;
  /* Distanza maggiore tra "Lingue" e le altre voci */
}

.dropdown-menu {
  border-radius: 0;
  /* Rimuove gli angoli arrotondati */
  background-color: #fff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  /* Aumenta la diffusione dell'ombra (esempio: 0px 4px 12px rgba(0, 0, 0, 0.2)) */
  border: none;
  /* Rimuovi il bordo */
}

@media (max-width: 1199px) {
  .dropdown-menu {
    border-radius: 0;
    /* Rimuove gli angoli arrotondati */
    background-color: #ffffff00;
    border: none;
    /* Rimuovi il bordo */
  }
}

/* Stile delle voci di menu della tendina con lo stesso font delle voci di menu principali */
.dropdown-menu .dropdown-item {
  font-family: "Roboto Condensed", sans-serif !important;
  /* Usa lo stesso font delle voci di menu principali */
  margin-bottom: 8px;
  /* Aggiusta la distanza verticale (esempio: 10px) */
  margin-top: 8px;
  /* Aggiusta la distanza verticale (esempio: 10px) */
}

@media (max-width: 1199px) {
  .dropdown-menu .dropdown-item {
    font-family: "Roboto Condensed", sans-serif !important;
    margin-bottom: 8px;
    margin-top: 8px;
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
  }
}

.error {
  color: red;
}

/* Rimuovi l'effetto del rettangolo grigio e mantieni solo il cambio di colore del testo */
.dropdown-menu .dropdown-item {
  background-color: transparent;
  /* Rimuovi il colore di sfondo */
  border: none;
  /* Rimuovi il bordo */
}

.dropdown-menu .dropdown-item:hover {
  color: #078877;
  /* Cambio di colore al passaggio del mouse (esempio: giallo) */
}

/*************** INGRANDIMENTO SU ICONE SOCIAL ********************/

/* Nuova classe per l'ingrandimento dell'icona */
.icona-ingrandita {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  /* Aggiungi una transizione all'ingrandimento */
}

/* Stile al passaggio del mouse per l'icona */
.icona-ingrandita:hover {
  transform: scale(1.1);
  /* Ingrandisci al passaggio del mouse */
}

/****************** STILI TESTO ***********/

.titolo-sezione {
  color: #222;
  font-size: 19px;
  /* Testo piccolo */
  line-height: 23px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 500;
}

@media (max-width: 767px) {
  .titolo-sezione {
    white-space: normal !important;
  }
}

.titolo-sezione-maxi {
  color: #009f9b;
  font-size: 24px;
  /* Testo piccolo */
  line-height: 30px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 500;
}

.titolo-maiuscolo {
  font-family: "Roboto Condensed", sans-serif !important;
  color: #222;
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.titolo-colonna {
  font-family: "Roboto Condensed", sans-serif !important;
  color: #333;
  font-size: 25px;
  line-height: 31px;
  font-weight: 500;
  letter-spacing: 1px;
}

.titolo-sezione-bianco {
  color: #f1f1f1;
  font-size: 19px;
  /* Testo piccolo */
  line-height: 23px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 500;
}

.paragrafo {
  color: #666;
  font-size: 15px;
  /* Testo piccolo */
  line-height: 25px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 400;
}

/* Stile al passaggio del mouse */
.paragrafo a:hover {
  color: #009f9b;
  text-decoration: none;
}

.paragrafo-bianco {
  color: #e9e9e9;
  font-size: 15px;
  /* Testo piccolo */
  line-height: 25px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 400;
}

/* Stile al passaggio del mouse */
.paragrafo-bianco a:hover {
  color: #009f9b;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .paragrafo-bianco {
    text-align: center !important;
  }
}

/****************** FOOTER ***************/

@media (max-width: 1199px) {
  .riduci-1200 {
    text-align: center !important;
    max-height: 140px !important;
  }
}

#subfooter {
  background-color: #e7e7e7;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #fff;
}

#mysocial {
  background-color: #282727;
  color: #fff;
  padding-top: 25px;
  padding-bottom: 15px;
}

.padding_destro {
  padding-right: 50px;
}

/********* LINEA SEPARATORE **************/

.line {
  width: 50px;
  border-bottom: 3px solid #009f9b;
  position: absolute;
}

.line-marchi {
  width: 50px;
  border-bottom: 3px solid #009f9b;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/************** VIDEO HOME PAGE ***********/

/* Stile per il video-container */
.video-container {
  position: relative;
}

/* Stile per il video - larghezza al 100% e altezza automatica */
.video {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 200px;
  /* Altezza minima per il video */
}

/* Resto del tuo stile rimane invariato */

/* Media query per schermi più piccoli, ad esempio dispositivi mobili */
@media screen and (max-width: 768px) {
  .video {
    min-height: 600px;
    /* Altezza minima ridotta per dispositivi mobili */
  }
}

.text-container {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 7px);
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
}

.overlay-title {
  font-size: 41px;
  /* Testo piccolo */
  line-height: 51px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  /* Colore del titolo */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Effetto ombra del titolo */
  margin-bottom: 20px;
  /* Distanza tra il titolo e il testo */
}

.overlay-text {
  font-size: 16px;
  /* Testo piccolo */
  line-height: 24px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 400;
  color: #fff;
  /* Colore del testo */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Effetto ombra del testo */
}

/* Rimuovi i controlli del video */
video::-webkit-media-controls {
  display: none;
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
  display: none;
}

/**************** READ MORE ******************/

#summary {
  font-size: 14px;
  line-height: 1.5;
}

#summary p.collapse:not(.show) {
  height: 80px !important;
  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#summary p.collapsing {
  min-height: 80px !important;
}

#summary a.collapsed:after {
  content: "Leggi tutto";
}

#summary a:not(.collapsed):after {
  content: "Chiudi";
}

/********************* EFFETTO SU FOTOGRAFIE ******************/

.contenitore-immagine {
  overflow: hidden;
  /* Nasconde parte dell'immagine al di fuori del contenitore */
  border-radius: 0px 0px 0px 0px;
}

.classe-effetto-foto {
  transition: transform 0.3s ease;
}

.contenitore-immagine:hover .classe-effetto-foto {
  transform: scale(1.1);
  /* Ingrandisce l'immagine all'interno del contenitore */
}

/********************* BOTTONE ******************/

.btn-outline-light {
  color: #ffffff;
  background-color: transparent;
  background-image: none;
  border-color: #ffffff;
  border-radius: 0px;
  letter-spacing: 2px;
  font-size: 14px;
  /* Testo piccolo */
  line-height: 24px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 400;
}

.btn-outline-dark {
  color: #2b2a2a;
  background-color: transparent;
  background-image: none;
  border-color: #161616;
  border-radius: 0px;
  letter-spacing: 2px;
  font-size: 14px;
  /* Testo piccolo */
  line-height: 24px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 400;
}

.btn-benvenuti {
  color: #ffffff;
  background-color: transparent;
  background-image: none;
  border-color: #ffffff;
  border-radius: 0px;
  letter-spacing: 2px;
  font-size: 14px;
  /* Testo piccolo */
  line-height: 24px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 400;
  transition: all 0.3s linear;
}

.btn-benvenuti:hover {
  border-color: transparent;
  background-color: transparent;
  color: #ffffff;
  scale: 1.2;
}

.btn-benvenuti:hover~svg>polygon {
  opacity: 1;

}

polygon {
  opacity: 0;
  stroke: white;
  stroke-width: 3;
  stroke-dasharray: 250, 80;
  stroke-dashoffset: 220;
  fill: none;
  animation: border 10s linear infinite;
  transition: opacity 0.3s linear;
}

@keyframes border {
  to {
    stroke-dashoffset: 2000;
  }
}

/****************** POPUP *****************/

.popup {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
  width: 350px;
  height: 22vh;
  border: 1px solid black;
  background-color: #000000e8;
  color: white;
  border-radius: 20px;
  opacity: 1;
  padding: 1rem;
  transition: opacity 0.3s linear;
}

.popup2 {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
  width: 620px;
  height: 28vh;
  border: 1px solid black;
  background-color: #000000e8;
  color: white;
  border-radius: 20px;
  opacity: 1;
  padding: 1rem;
  transition: opacity 0.3s linear;
  font-size:14px;
}

.popup>div {
  gap: 0.8rem;
}

/****************** COLONNA HOME *****************/

.colonna-grigia {
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
  background: #f4f4f4;
  padding: 50px;
  border-radius: 0px 0px 0px 0px;
}

@media (max-width: 1199px) {
  .colonna-grigia {
    padding-left: 19px;
    padding-right: 19px;
  }
}

.bordo-img {
  border-radius: 0px 0px 0px 0px;
}

/*************** BANDIERE SELETTORE LINGUA *********/

.menu-item {
  display: flex;
  align-items: center;
}

.menu-item a {
  display: flex;
  align-items: center;
}

.menu-item a img {
  width: 21px;
  /* Regola la larghezza desiderata */
  margin-right: 0px;
  /* Aggiunge uno spazio a destra dell'immagine */
}

.align-middle {
  display: flex;
  align-items: center;
}

/* CSS per ridurre lo spazio tra le voci del menu con classe "bandiera" */
.menu-item.bandiera {
  margin-right: 15px;
  /* Puoi regolare la larghezza desiderata tra le bandiere */
}

/****************************** RITALGIA FOTO *******************/

.ritaglia-foto {
  max-height: 400px;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/**************** BANNER **************************/

/* Stili generici */
.banner {
  background-image: url("/img/00-BANNER\ CHI\ SIAMO.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-cosa-facciamo {
  background-image: url("/img/00- BANNER\ COSA\ FACCIAMO.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-mescole {
  background-image: url("/img/00-\ BANNER\ MESCOLE.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-login {
  background-image: url("/img/banner-login.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-news {
  background-image: url("/img/00-BANNER\ NEWS.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-download {
  background-image: url("/img/00\ -\ BANNER\ DOWNLOAD.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-team {
  background-image: url("/img/00-BANNER\ TEAM.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-trattamenti {
  background-image: url("/img/00-BANNER\ TRATTAMENTI\ SUPERFICIALI.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-prodotti {
  background-image: url("/img/00-\ BANNER\ PRODOTTI.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-consegne {
  background-image: url("/img/00-\ BANNER\ TEMPI\ DI\ CONSEGNA.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-oring {
  background-image: url("/img/00\ -\ BANNER\ CALCOLATORE.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

.banner-housing {
  background-image: url("/img/00\ -\ BANNER\ CALCOLATORE.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  height: 650px;
  /* Altezza desktop */
}

/* Altezza mobile */
@media (max-width: 768px) {
  .banner {
    height: 500px;
  }
}

/* Stili per il testo sovrapposto */
.banner-text {
  font-size: 41px;
  line-height: 51px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 3px;
  color: #fff;
  /* Cambia il colore del testo se necessario */
}

/* Altezza mobile */
@media (max-width: 768px) {
  .banner-text {
    font-size: 25px;
    line-height: 34px;
  }
}

/************************************** TABS ***************************************************************/

.nav-pills .nav-link {
  color: #555;
}

.text-uppercase {
  letter-spacing: 0.1em;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #009f9b;
}

@media (min-width: 576px) {
  .rounded-nav {
    border-radius: 50rem !important;
  }
}

@media (min-width: 576px) {
  .rounded-nav .nav-link {
    border-radius: 50rem !important;
  }
}

.with-arrow .nav-link.active {
  position: relative;
}

.with-arrow .nav-link.active::after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #009f9b;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.lined .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
}

.lined .nav-link:hover {
  border: none;
  border-bottom: 3px solid transparent;
}

.lined .nav-link.active {
  background: none;
  color: #009f9b;
  border-color: #009f9b;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
}

/*************** CTA ************************/

.cta-box {
  background-color: #f4f4f4;
  padding: 40px;
  border-radius: 0px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-content {
  text-align: left;
}

.cta-title {
  color: #009f9b;
  font-size: 24px;
  line-height: 30px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 500;
}

.cta-paragraph {
  color: #666;
  font-size: 15px;
  /* Testo piccolo */
  line-height: 25px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 400;
}

.cta-button-container {
  display: flex;
  align-items: center;
}

.cta-button {
  background-color: #009f9b;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 18px;
  margin-right: 10px;
  border: 1px solid #009f9b;
  border-radius: 0px;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  font-family: "Roboto Condensed", sans-serif !important;
  font-weight: 400;
}

.cta-button:hover {
  background-color: #282727;
  border: 1px solid #282727;
  color: #ffffff;
  text-decoration: none;
}

/* Responsive styles for screens smaller than 1200px */
@media (max-width: 1199px) {
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/***************** SEPARATORE ORIZZONTALE TRA LE COLONNE *************************************/

.with-vertical-lines .col-xxl-4,
.with-vertical-lines .col-xl-4,
.with-vertical-lines .col-12 {
  border-right: 1px solid #808080;
  /* Aggiunge una linea verticale tra le colonne */
  padding-right: 15px;
  /* Spazio tra il testo e la linea verticale */
}

.with-vertical-lines .col-xxl-4:last-child,
.with-vertical-lines .col-xl-4:last-child,
.with-vertical-lines .col-12:last-child {
  border-right: none;
  /* Rimuove la linea verticale dalla colonna finale */
}

/* Rimuovi le linee verticali sotto 1200px */
@media (max-width: 1200px) {

  .with-vertical-lines .col-xxl-4,
  .with-vertical-lines .col-xl-4,
  .with-vertical-lines .col-12 {
    border-right: none;
    padding-right: 0;
  }
}

/***************** SFONDO GRIGIO *************************************/

.sfondo-grigio {
  background-color: #f4f4f4;
  padding-top: 60px;
  padding-bottom: 60px;
}

/**************** CARD *********************/

.card {
  border: 1px solid rgb(151 151 151 / 13%);
}

.card-footer {
  padding-top: 1.2rem;
  padding-bottom: 1.95rem;
  background-color: #fff;
  border-top: 0px;
}

.card-body {
  padding-top: 1.25rem;
  padding-bottom: 0.3rem;
}

.img-card {
  max-height: 200px;
  max-width: 200px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.custom-card {
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  border-radius: 15px;
}

.custom-card:hover {
  box-shadow: 0px 20px 20px 0px rgb(0 0 0 / 0%),
    0px 40px 40px 13px rgb(0 0 0 / 12%);
  z-index: 1;
  transform: translateY(-10px);
}

.container-over {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 0px;
  /* Aggiunto: margine inferiore per separare le righe */
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #009f9b;
}

.container-over:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/******************* hover effect su pagina prodotti ***************/

.container-over {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.container-over a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  /* Aggiunto per consentire il posizionamento dell'elemento ::before relativo a questo elemento */
}

.container-over a.hover-effect::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  /* Colore della linea (bianco) */
  transition: width 0.3s ease-out;
  /* Transizione di espansione della larghezza */
}

.container-over a.hover-effect:hover::before {
  width: 100%;
  /* Espansione completa alla larghezza del testo */
}

.container-over a:hover {
  color: #ffffff;
  /* Sovrascrivi eventuali regole di colore al passaggio del mouse */
}

.border-top {
  border-top: 1px solid #515151 !important;
}

/***** COLLAPSE NAVBAR *******/

#logo {
  transition: 0.3s;
  /* Aggiungi una transizione per uno scrolling più fluido */
}

.logo-scrolled {
  height: 50px;
  /* Modifica l'altezza desiderata */
}

.navbar {
  background: #000000ad;
  border-style: none;
  border-width: 0px 0px 1px 0px;
  border-color: #ddd;
  transition: 0.3s;
  /* Aggiungi una transizione per una transizione fluida */
  list-style: none;
  padding: 0;
}

@media only screen and (max-width: 992px) {
  .navbar {
    background: rgb(0 0 0 / 93%);
  }
}

button:focus {
  outline: 0px dotted;
  outline: 0px auto -webkit-focus-ring-color;
}

/*********** NASCONDE E MOSTRA SU MOBILE *****************/

.nascondi-mobile {
  display: block;
}

@media only screen and (max-width: 1199px) {
  .nascondi-mobile {
    display: none;
  }
}

.mostra-mobile {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .mostra-mobile {
    display: block;
  }
}

/*********** MEDIA MARCHI *****************/

.col-media {
  flex: 0 0 20%;
  max-width: 20%;
}

/****************** CONTAINER CUSTOM **********************/

.custom-container {
  max-width: 900px;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.nav-link:hover {
  color: #009f9b !important;
}

.margini-mobile {
  padding-left: 0px;
  padding-right: 0px;
}

@media only screen and (max-width: 800px) {
  .margini-mobile {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/** DAVIDE **/
.OnlyMobile {
  display: none !important;
}

.loader {
  border: 4px solid #eee;
  border-radius: 50%;
  border-top: 4px solid #009f9b;
  width: 24px;
  height: 24px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ContainerMargin {
  padding-left: 3.5%;
  padding-right: 3.5%;
}

/* INIZIO COLONNE PERSONALIZZATE CONTAINER - PR */
@media only screen and (min-width: 760px) {
  .prcol-stock-filter {
    flex: 0 0 16.5%;
    max-width: 16.5%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-stock-filter_A {
    flex: 0 0 14%;
    max-width: 14%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-stock-filter_B {
    flex: 0 0 11%;
    max-width: 11%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-stock-filter_C {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-stock-filter2 {
    flex: 0 0 17%;
    max-width: 17%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-gaq1-filter {
    flex: 0 0 10%;
    max-width: 10%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-gaq1-filter-compound {
    flex: 0 0 19%;
    max-width: 19%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-gaq1-filter-cim {
    flex: 0 0 26%;
    max-width: 26%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-gaq1-filter-inside {
    flex: 0 0 15%;
    max-width: 15%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-gaq1-filter-section {
    flex: 0 0 11%;
    max-width: 11%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-gaq1-filter-qta {
    flex: 0 0 11%;
    max-width: 11%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-gaq1-disegno {
    flex: 0 0 17%;
    max-width: 17%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.prcol-code {
  flex: 0 0 11%;
  max-width: 11%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-size {
  flex: 0 0 9%;
  max-width: 9%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-d1d2 {
  flex: 0 0 19%;
  max-width: 19%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-astm {
  flex: 0 0 23%;
  max-width: 23%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-color {
  flex: 0 0 5%;
  max-width: 5%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-hardness {
  flex: 0 0 7%;
  max-width: 7%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-qta {
  flex: 0 0 8%;
  max-width: 8%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-buttons {
  flex: 0 0 9%;
  max-width: 9%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-code-cart {
  flex: 0 0 14%;
  max-width: 14%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-size-cart {
  flex: 0 0 10%;
  max-width: 10%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-astm-cart {
  flex: 0 0 25%;
  max-width: 25%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-qta-cart {
  flex: 0 0 10%;
  max-width: 10%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-price-cart {
  flex: 0 0 8%;
  max-width: 8%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-total-cart {
  flex: 0 0 8%;
  max-width: 8%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-delivery-cart {
  flex: 0 0 15%;
  max-width: 15%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.prcol-buttons-cart {
  flex: 0 0 10%;
  max-width: 10%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Notebook EXCEPTION */
@media (min-width: 800px) and (max-width: 1280px) {

  /* INIZIO COLONNE PERSONALIZZATE CONTAINER - PR */
  .prcol-code {
    flex: 0 0 16%;
    max-width: 16%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-size {
    flex: 0 0 10%;
    max-width: 10%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-d1d2 {
    flex: 0 0 23%;
    max-width: 23%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-astm {
    flex: 0 0 23%;
    max-width: 23%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-color {
    flex: 0 0 5%;
    max-width: 5%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-hardness {
    flex: 0 0 7%;
    max-width: 7%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-qta {
    flex: 0 0 7%;
    max-width: 7%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-buttons {
    flex: 0 0 9%;
    max-width: 9%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  /* FINE COLONNE PERSONALIZZATE CONTAINER - PR */
}

/* Mobile EXCEPTION */
@media (max-width: 800px) {
  .OnlyMobile {
    display: unset !important;
  }

  /* INIZIO COLONNE PERSONALIZZATE CONTAINER - PR */
  .prcol-stock-filter {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-gaq1-filter {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-gaq1-filter-compound {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-gaq1-filter-cim {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-code {
    flex: 0 0 75%;
    max-width: 75%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-size {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-d1d2 {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-astm {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-color {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-hardness {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-qta {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-buttons {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  .prcol-code-cart {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  /* FINE COLONNE PERSONALIZZATE CONTAINER - PR */
}

.RowRisultatiCatalogoIntestazione {
  border: 1px solid #ccc;
  background-color: #f4f4f4;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

.RowRisultatiCatalogo {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

.img-oring {
  border: 2px solid #ccc;
}

/* TAG del GAQ */
.info-generic {
  BORDER: 1PX SOLID !important;
  BORDER-COLOR: BLACK;
  BACKGROUND-COLOR: BLACK;
  COLOR: #FFF !important;
  FONT-SIZE: 10px !important;
  FONT-WEIGHT: BOLD !important;
  PADDING: 3PX !important;
  BORDER-RADIUS: 5PX !important;
  margin-right: 3px;
  margin-top: 3px;
}

.info-stock {
  border: 1px SOLID;
  border-color: limegreen;
  background-color: limegreen;
  color: #fff;
  font-size: 13px;
  font-weight: BOLD;
  padding: 2px;
}

.info-prod {
  border: 1px SOLID;
  border-color: #17a2b8;
  background-color: #17a2b8;
  color: #fff;
  font-size: 13px;
  font-weight: BOLD;
  padding: 2px;
}

.info-best {
  border: 1px SOLID !important;
  border-color: DodgerBlue !important;
  background-color: DodgerBlue !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: BOLD !important;
  padding: 2px !important;
}

.info-bestseller {
  border: 1px SOLID !important;
  border-color: limegreen !important;
  background-color: limegreen !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: BOLD !important;
  padding: 2px !important;
}

.info-bestchoice {
  border: 1px SOLID !important;
  border-color: DodgerBlue !important;
  background-color: DodgerBlue !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: BOLD !important;
  padding: 2px !important;
}

.info-lastStockAv {
  border: 1px SOLID !important;
  border-color: red !important;
  background-color: red !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: BOLD !important;
  padding: 2px !important;
}

.info-lowAv {
  border: 1px SOLID !important;
  border-color: gold !important;
  background-color: gold !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: BOLD !important;
  padding: 2px !important;
}

.info-FDA {
  border: 1px SOLID !important;
  border-color: blue !important;
  background-color: blue !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: BOLD !important;
  padding: 2px !important;
}

.info-mostcomp {
  border: 1px SOLID !important;
  border-color: #ff3131 !important;
  background-color: #ff3131 !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: BOLD !important;
  padding: 2px !important;
}

.InputQtaArticoloCatalogo {
  width: 80%;
  float: left;
  text-align: right;
}

.BoxLottoPrice {
  border-right: 2px solid #ccc;
}

.BtnSearchCatalogo {
  background-color: #009f9b;
  border-color: #009f9b;
  color: #fff;
  font-size: 16px;
}

.BtnResetCatalogo {
  background-color: #333;
  border-color: #333;
  color: #fff;
  font-size: 16px;
}

.BtnSearchCatalogo:hover {
  background-color: #ccc;
  border-color: #ccc;
  color: #333;
}

.BtnResetCatalogo:hover {
  background-color: #ccc;
  border-color: #ccc;
  color: #333;
}

.BtnSearchCatalogo:focus {
  background-color: #ccc;
  border-color: #ccc;
  color: #333;
}

.BtnResetCatalogo:focus {
  background-color: #ccc;
  border-color: #ccc;
  color: #333;
}

.BtnChooseCatalogo {
  background-color: #009f9b;
  border-color: #009f9b;
  color: #fff;
  width: 100%;
  border-radius: 0px;
  font-size: 16px;
}

.BtnChooseCatalogo:hover {
  background-color: #ccc;
  border-color: #ccc;
  color: #333;
  border-radius: 0px;
}

.BtnChooseCatalogo:focus {
  background-color: #ccc;
  border-color: #ccc;
  color: #333;
  border-radius: 0px;
}

.BtnChooseCatalogo:active {
  background-color: #ccc;
  border-color: #ccc;
  color: #333;
  border-radius: 0px;
}

.InputCatalogo {
  font-size: 16px !important;
  text-align: right;
}

.ImgCatalogoFiltri {
  width: 100%;
  margin: auto;
}

.TextDescFiltri {
  font-size: 14px;
}

.LabelFiltriGAQ {
  font-size: 14px;
}

.BtnGetPricesCatalogoStock {
  background-color: limegreen;
  border-color: limegreen;
  color: #fff;
  font-size: 16px;
  border-radius: 0px;
}

.BtnGetPricesCatalogoProd {
  background-color: #17a2b8;
  border-color: #17a2b8;
  color: #fff;
  font-size: 14px;
  border-radius: 0px;
}

.BtnAddRigaCatalogoStock {
  background-color: limegreen;
  border-color: limegreen;
  color: #fff;
  font-size: 14px;
  border-radius: 0px;
}

.BtnAddRigaCatalogoProd {
  background-color: #17a2b8;
  border-color: #17a2b8;
  color: #fff;
  font-size: 14px;
  border-radius: 0px;
}

.IconPdfDownload {
  color: #009f9b;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.popover {
  max-width: 1080px;
  /* Max Width of the popover (depending on the container!) */
}

.divImgCompliantGAQ {
  margin-top: -10px;
}

.imgCompliantGAQ {
  width: 80%;
}

.TitleQuotationGAQ {
  font-size: 22px;
  color: #009f9b;
  font-weight: bold;
  text-align: center;
}

.btnTDS_GAQ {
  margin-top: 3px;
}

.ContainerPricesGAQ {
  margin: 10px;
  padding: 15px;
}

.IconMsgPriceGAQ {
  border: 1px SOLID;
  border-color: #17a2b8;
  background-color: #17a2b8;
  color: #fff;
  font-size: 13px;
  font-weight: BOLD;
  padding: 2px;
  border-radius: 0px;
  margin-left: 5px;
}

.IconMsgPriceGAQ:hover {
  border: 1px SOLID;
  border-color: #17a2b8;
  background-color: #17a2b8;
  color: #fff;
  font-size: 13px;
  font-weight: BOLD;
  padding: 2px;
  border-radius: 0px;
  margin-left: 5px;
}

.divBtnSelMescolaGAQ {
  display: inline-flex;
  position: absolute;
  max-width: 10%;
  right: 10px;
}

#DivMaterialModalMescole {
  max-width: 15% !important;
  flex: 0 0 15% !important;
}

#DivColorModalMescole {
  max-width: 10% !important;
  flex: 0 0 10% !important;
}

#DivHardnessModalMescole {
  max-width: 10% !important;
  flex: 0 0 10% !important;
}

#DivTempRangeModalMescole {
  max-width: 25% !important;
  flex: 0 0 25% !important;
}

#DivComplianceModalMescole {
  max-width: 25% !important;
  flex: 0 0 25% !important;
}

#DivExpressModalMescole {
  max-width: 15% !important;
  flex: 0 0 15% !important;
}

#DivCategoryModalMescole {
  max-width: 15% !important;
  flex: 0 0 15% !important;
}

#DivTagModalMescole {
  max-width: 15% !important;
  flex: 0 0 15% !important;
}

#DivLivPriceModalMescole {
  max-width: 15% !important;
  flex: 0 0 15% !important;
}

#DivSimilarModalMescole {
  max-width: 25% !important;
  flex: 0 0 25% !important;
}

#DivBrandModalMescole {
  max-width: 15% !important;
  flex: 0 0 156% !important;
}

#DivProjectModalMescole {
  max-width: 15% !important;
  flex: 0 0 15% !important;
}

.filtriPrincipali {
  display: inline-flex;
  width: 91%
}

/* Mobile EXCEPTION */
@media (max-width: 800px) {
  .hiddenMobile {
    display: none !important;
  }

  .MarginMobile {
    margin-bottom: 15px;
  }

  .imgCompliantGAQ {
    width: 13%;
  }

  .divImgCompliantGAQ {
    margin-top: -50px;
    text-align: right;
  }

  .TitleQuotationGAQ {
    font-size: 18px;
    color: #009f9b;
    font-weight: bold;
    text-align: center;
  }

  .TextBERPACodeGAQ {
    font-weight: bold;
    font-size: 15px;
  }

  .btnTDS_GAQ {
    margin-top: 0px;
  }

  .ContainerPricesGAQ {
    margin: 0px;
    padding: 0px;
  }

  .LottiPrezziSpace {
    padding: 0px;
    margin-top: 15px;
  }

  .InputPrezziSpace {
    padding: 0px;
  }

  .info-stock {
    margin-left: 5px;
    margin-top: -5px;
    font-size: 9px;
  }

  .info-prod {
    margin-left: 5px;
    margin-top: -5px;
    font-size: 9px;
  }

  .endDivPriceGAQ {
    margin-bottom: 15px;
  }

  .IconMsgPriceGAQ {
    border: 1px SOLID;
    border-color: #17a2b8;
    background-color: #17a2b8;
    color: #fff;
    font-size: 11px;
    font-weight: BOLD;
    padding: 2px;
    border-radius: 0px;
  }


  .container-fluid {
    display: flex;
    flex-direction: column;
  }

  .divBtnSelMescolaGAQ {
    position: relative;
    max-width: 100%;
    order: 1;
    right: 0px;
  }

  table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
  table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    margin-right: 0.5em;
    display: inline-block;
    color: rgba(0, 0, 0, 0.5);
    content: "►";
    font-size: 10px;
  }

  #DivTempRangeModalMescole,
  .mobileWidth {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .AdvancedFilter {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .filtriPrincipali {
    display: inline-flex;
    width: auto
  }

  .btnOpenTDSModalCompound {
    display: none;
  }

  .info-lastStockAv {
    font-size: 7px !important;
    padding: 1px !important;
  }

  .info-bestseller {
    font-size: 8px !important;
    padding: 1px !important;
  }

  .info-bestchoice {
    font-size: 8px !important;
    padding: 1px !important;
  }

  .info-lowAv {
    font-size: 7px !important;
    padding: 1px !important;
  }

  .info-mostcomp {
    font-size: 7px !important;
    padding: 1px !important;
  }
}







select.form-control+.chosen-container.chosen-container-single .chosen-single {
  display: block;
  width: 100%;
  height: 38px;
  padding: .375rem .75rem;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  background-image: none;
}

select.form-control+.chosen-container.chosen-container-single .chosen-single div {
  top: 4px;
  color: #000;
}

select.form-control+.chosen-container .chosen-drop {
  background-color: #FFF;
  border: 1px solid #ced4da;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  margin: 2px 0 0;

}

select.form-control+.chosen-container .chosen-search input[type=text] {
  display: block;
  width: 100%;
  height: 38px;
  padding: .375rem .75rem;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  vertical-align: middle;
  background-color: #FFF;
  border: 1px solid #ced4da;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  background-image: none;
}

select.form-control+.chosen-container .chosen-results {
  margin: 2px 0 0;
  padding: 5px 0;
  font-size: 16px;
  list-style: none;
  background-color: #fff;
  margin-bottom: 5px;
}

select.form-control+.chosen-container .chosen-results li,
select.form-control+.chosen-container .chosen-results li.active-result {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.5;
  color: #333;
  white-space: nowrap;
  background-image: none;
}

select.form-control+.chosen-container .chosen-results li:hover,
select.form-control+.chosen-container .chosen-results li.active-result:hover,
select.form-control+.chosen-container .chosen-results li.highlighted {
  color: #FFF;
  text-decoration: none;
  background-color: #009f9b;
  background-image: none;
}

select.form-control+.chosen-container-multi .chosen-choices {
  display: block;
  width: 100%;
  min-height: 38px;
  padding: 6px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  vertical-align: middle;
  background-color: #FFF;
  border: 1px solid #ced4da;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  background-image: none;
}

select.form-control+.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  height: auto;
  padding: 5px 0;
}

select.form-control+.chosen-container-multi .chosen-choices li.search-choice {

  background-image: none;
  padding: 3px 24px 3px 5px;
  margin: 0 6px 0 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid #ced4da;
  border-radius: 4px;
  color: #333;
  background-color: #FFF;
  border-color: #ced4da;
}

select.form-control+.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  top: 8px;
  right: 6px;
}

select.form-control+.chosen-container-multi.chosen-container-active .chosen-choices,
select.form-control+.chosen-container.chosen-container-single.chosen-container-active .chosen-single,
select.form-control+.chosen-container .chosen-search input[type=text]:focus {
  border-color: #009f9b;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

select.form-control+.chosen-container-multi .chosen-results li.result-selected {
  display: list-item;
  color: #ced4da;
  cursor: default;
  background-color: white;
}

@media (max-width: 400px) {

  .popup {
    left: 50%;
    transform: translate(-50%);
  }

}

@media (max-width: 320px) {
  .popup {
    width: 250px;
    padding: 0.2rem !important;
  }

  .popup>img {
    width: 100px !important;
  }

  .popup>p {
    font-size: 0.7rem !important;
  }

  .popup>div {
    gap: 0.2rem !important;
  }

  .popup>div>.btn-outline-light {
    width: 50px;
    padding: 2px;
    font-size: 0.6rem !important;
  }

  .popup>div>.BtnChooseCatalogo {
    width: 100px;
    padding: 2px;
    font-size: 0.6rem;
  }
}


[data-compliance-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;
}

[data-compliance-title]:after {
  content: attr(data-compliance-title);
  background-color: #ffffff;
  color: #212529;
  font-size: 14px;
  position: absolute;
  padding: 2px 7px 4px 7px;
  bottom: -2em;
  left: 100%;
  text-wrap: wrap;
  width: 250px;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  z-index: 99999;
  visibility: hidden;
}

[data-compliance-title] {
  position: relative;
}
