@import url('gff-style.css');


.single-product .price{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
}
.me-price-icon{
    max-width:135px;
    height:auto;
}


/** CSS per TradingOnline **/
/* Contenitore generale per le recensioni */
.broker-reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Roboto', sans-serif;
}

/* Riga singola */
.broker-review .row-broker-one {
    display: grid;
    grid-template-columns: 18% 30% 30% 18%;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

/* Responsività: mobile */
@media (max-width: 768px) {
    .broker-review {
        grid-template-columns: 100%;
    }
}

/* Stile per il titolo e il logo */
.col-1 h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.col-1 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
}

/* Focus point nella colonna 2 */
.col-2 .focus-point {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}
.focus-point ul {
    list-style: none; /* Rimuove i punti elenco predefiniti */
    padding: 0;
    margin: 0;
}

.focus-point ul li {
    display: flex; /* Per allineare l'SVG con il testo */
    align-items: center;
    gap: 8px; /* Spazio tra l'SVG e il testo */
    margin-bottom: 10px; /* Spazio tra gli elementi della lista */
}

.focus-point ul li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="8" fill="none" viewBox="0 0 11 8"><path d="M9.5 1 4 6.5 1.5 4" stroke="%2310B201" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 0; /* Spazio tra l'SVG e il testo */
}

/* Gruppo di facts nella colonna 3 */
.col-3 p {
    margin: 5px 0;
    font-size: 16px;
    line-height: 1.4;
}

.col-3 span {
    font-weight: bold;
    color: #333;
}

/* Pulsante CTA nella colonna 4 */
.col-4 .link-recensione {
    display: flex;
    align-items: center;
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.col-4 .link-recensione:hover {
    background-color: #0056b3;
}

/* Blocco per il valore recensione e le stelle */
.col-4 .broker-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Accordion */
.accordion {
    margin-top: 20px;
    width: 100%; /* Assicura che sia largo il 100% */
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background: #f7f7f7;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
}

.accordion-button:hover {
    background: #e6e6e6;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    background: #fff;
}

.accordion-content.open {
    max-height: 500px; /* Altezze dinamiche */
}

/* Colonne interne per accordion */
.accordion-content .col-50 {
    width: 50%;
    display: inline-block;
    box-sizing: border-box;
    padding: 10px;
    vertical-align: top;
}

.accordion-content .col-50:first-child {
    border-right: 1px solid #ddd;
}

@media (max-width: 768px) {
    .accordion-content .col-50 {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .accordion-content .col-50:last-child {
        border-bottom: none;
    }
}

/** =========================== css RECENSIONI BROKER =========================== **/

table.broker-review-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
}
.broker-offer-logo, .broker-offer-key-features, .broker-offer-rating, .review-offer-cta-button {
    padding: 10px;
    vertical-align: top;
}
.broker-offer-logo img {
  width: 150px;
}
ul.focus_point_broker {
    margin-bottom: 0;
}
.broker-offers-wrapper tr {
    position: relative;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 8px 32px rgba(0, 0, 0, .1);
    display: grid;
    grid-template-columns: 160px 1fr 204px;
    gap: 0 16px;
    border: 4px solid #fff;
}

.broker-offer, .broker-review {
    counter-increment: row-counter; /* Incrementa un contatore per ogni riga */
    position: relative; /* Assicurati che il contenuto :before sia relativo alla riga */
}
.broker-offer:first-of-type::before, 
.broker-review:first-of-type::before {
    content: counter(row-counter) ""; /* Mostra il numero seguito da un punto */
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    color: #000;
    border: 2px solid #ffcb3f;
    border-radius: 3px;
    background: #ffcb3f;
}
.broker-offer::before, 
.broker-review::before, {
    content: counter(row-counter) ""; /* Mostra il numero seguito da un punto */
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    color: #000;
    border: 2px solid #eaeaea;
    border-radius: 3px;
    background: #eaeaea;
}
.broker-offers-wrapper tr:first-of-type, .broker-review:first-of-type {
  border: 4px solid #ffcb3f;
}
.broker-review-table .broker-offer td:first-child {
    padding-left: 15px;
}

.broker-review-table {
    counter-reset: row-counter;
}



.broker-offers-wrapper tr:nth-child(n+2) {
  margin-top: 15px;
}
/* Contenitore delle tab */
.tab-container {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
/* Header delle tab */
.tab-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    background-color: #f6f6f6;
}
.tab-header .tab-button {
    flex: 1;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f6f6f6;
    border: none;
    outline: none;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.tab-header .tab-button:hover {
    background-color: #eaeaea;
}

.tab-header .tab-button.active {
    background-color: #eaeaea;
    font-weight: bold;
}

/* Contenuto delle tab */
.tab-content {
    display: none;
    padding: 20px;
    font-size: 0.875rem;
    line-height: 1.3;
}

.tab-content.active {
    display: block;
}

/* Modifica il selettore per la lista dentro la tab focus */
.broker-pro ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
.broker-pro li {
    position: relative;
    padding-left: 25px;
}
.broker-pro li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: green;
    font-size: 1rem;
    line-height: 1.3;
}
/* Stile per la lista dei "Contro" */
.broker-contro ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
.broker-contro li {
    position: relative;
    padding-left: 25px;
}
.broker-contro li::before {
    content: "\2716";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: red;
    font-size: 1rem;
    line-height: 1.3;
}

ul.focus_point_broker li {
    font-weight: bold;
}

/** ============ ACCORDION MOBILE ========== **/

.broker-review-mobile td.broker-offer-logo {
  text-align: center;
  padding-left: 0 !important;
  padding-top: 15px;
}
.broker-review-mobile td.broker-offer-logo p.broker-offer-brand-name {
    margin-top: 15px;
    margin-bottom: 10px;
}
.accordion-button .accordion-arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.accordion-button.active .accordion-arrow {
    transform: rotate(180deg);
}
.accordion-content {
    display: none;
}
.accordion-content.open {
    display: block;
}
.accordion-content {
  font-size: 0.875rem;
  line-height: 1.3;
}
td.broker-offer-key-features button {
    flex: 1;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f6f6f6;
    border: none;
    outline: none;
    font-size: 0.9em;
    transition: background-color 0.3s;
    width: 100%;
    border: 1px solid #ddd;
    font-weight: bold;
}
td.broker-offer-key-features .accordion-item:nth-child(n+2) {
    margin-top: 8px;
}
td.broker-offer-key-features .accordion-content {
    margin-top: 15px;
    margin-bottom: 20px;
}
.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
}

.accordion-arrow {
    margin-left: auto;
    display: flex;
    align-items: center;
}
.review-cta-button-mobile { text-align: center; }
/*td.broker-offer-key-features .accordion-item.broker-pro button {
    background-color: #4ADE80;
    color: #fff;
}
td.broker-offer-key-features .accordion-item.broker-contro button {
    background-color: #F87171;
    color: #fff;
}
*/

/* Media Query per dispositivi mobili e tablet */
@media screen and (max-width: 991px) { 
  .broker-offers-wrapper tr {
      grid-template-columns: auto;
      gap: 0 24px;
  }
  /* Cambia il layout della tabella */
  table.broker-review-table {
    width: 100%;
    display: block;
  }

  .broker-offers-wrapper {
    display: block;
  }

  /* Modifica il comportamento delle celle per essere blocchi */
  .broker-offer-logo,
  .broker-offer-key-features,
  .broker-offer-rating,
  .review-offer-cta-button {
    display: block;
    width: 100%;
    padding: 12px;
  }
  .broker-offer-key-features {
    margin-bottom: 12px;
  }
  .review-offer-cta-button a {
    font-size: 14px;
    padding: 8px 16px;
    display: inline-block;
  }
  /* Margine per separare le celle */
  .broker-offer-logo, 
  .broker-offer-key-features,
  .broker-offer-rating, 
  .review-offer-cta-button {
    margin-bottom: 5px;
  }
  p.broker-offer-brand-name {
    margin-bottom: 0;
  }
  .broker-offer-logo, .broker-offer-key-features, .broker-offer-rating, .review-offer-cta-button {
      width: auto;
  }
}


/* Media Query per schermi ancora più piccoli */
@media screen and (max-width: 480px) { 
  table.broker-review-table {
    width: 100%;
  }

  .broker-offers-wrapper {
    display: block;
  }

  .broker-offer-logo,
  .broker-offer-key-features,
  .broker-offer-rating,
  .review-offer-cta-button {
    display: block;
    max-width: 100%;
    padding: 0px;
    width: auto;
  }
  .review-offer-cta-button a {
    font-size: 13px;
    padding: 6px 12px;
  }
  .broker-offer-key-features .tab-content {
      padding: 15px;
  }
  .broker-offer-key-features .tab-content ul {
    margin-bottom: 0;
  }
  .tab-header .tab-button {
    padding: 5px 15px;
  }
}

/* Titoli delle caratteristiche */
.broker-offer-key-features h3 {
    font-size: 1.1em;
    margin: 5px 0;
}

/* Stelle */
.broker-rating-box {
  margin-top: 10px;
}
.broker-rating {
  display: inline-flex;
  gap: 1px;
}
.broker-rating .star {
  width: 24px;
  height: auto;
  display: inline-block;
}

/* OLD - stelle
.broker-rating {
  display: inline-block;
}
.broker-rating .star {
  font-size: 24px;
  position: relative;
  display: inline-block;
  color: transparent;
}
.broker-rating .star.full::before {
  content: '★';
  color: #fed500;
  position: absolute;
  top: 0;
  left: 0;
}
.broker-rating .star.empty::before {
  content: '★';
  color: #fff;
  -webkit-text-stroke: 1px #fed500;
  position: absolute;
  top: 0;
  left: 0;
}
.broker-rating .star.half::before {
  content: '★';
  color: #fff;
  -webkit-text-stroke: 1px #fed500;
  position: absolute;
  top: 0;
  left: 0;
}
.broker-rating .star.half::after {
  content: '★';
  color: #fed500;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}
*/

/* Pulsante di CTA */
.link-recensione:hover svg path, a.button.clickout:hover svg path {
    fill: #4907d9; /* Sostituisci con il colore desiderato */
}
.review-offer-cta-button a {
  width: 100%;
  padding: 15px 0;
}

.review-offer-cta-button a {
  font-size: 15px;
}
.review-offer-cta-button a, .broker-box-partner-review a.button.clickout {
  background-color: #4907d9;
  border: 1px solid #4907d9;
  border-radius: 3px;
  color: #fff;
  display: block;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
  text-align: center;
  text-transform: none;
  width: 100%;
  box-sizing: border-box;
  text-transform: uppercase;
}
.broker-box-partner-review a.button.clickout {
  font-size: 12px;
  padding: 15px 11px
}

.review-offer-cta-button a:hover, .broker-box-partner-review a.button.clickout:hover {
  color: #4907d9;
  background-color: #ffffff;
  border: 1px solid #4907d9;
}
p.broker-offer-brand-name a, .broker-box-partner-name a {
  color: #4907d9;
  box-shadow: inset 0 -4px 0 #04be68;
}
p.broker-offer-brand-name a:hover, .broker-box-partner-name a:hover {
  text-decoration: underline;
}


/** Widget RECENSIONI Sidebar **/
.broker-reviews-widget {
    font-family: 'Roboto', sans-serif;
}
.broker-review-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px 0;
}
.broker-box-partner-review {
    width: 100%; /* O definisci una larghezza fissa, se necessario */
}
.broker-column-left, .broker-column-right {
  width: 48%;
}
.broker-column-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.broker-column-right {
    text-align: center;
}
.broker-box-partner-logo img {
  max-width: 100%;
  height: 44px;
  display: block;
  max-height: 44px;
  border-radius: 0;
}

.broker-box-partner-name {
  margin-top: 8px;
}

/* Colonna di destra con pulsante e stelle */

.broker-reviews-widget-box {
  box-shadow: 0px 4px 20px rgba(117, 128, 162, 0.15);
  border-radius: 0px;
  background: rgba(227, 234, 242, 0.4);
  border: 2px solid #E0E6EF;
  padding: 24px 14px 14px 14px;
}
.broker-reviews-widget-title h3 {
  color: #000;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 24px;
}
.broker-reviews-widget-list ul {
  padding: 0;
  display: grid;
  gap: 8px;
  margin: 0 !important;
}
.broker-reviews-widget-list ul li {
  box-shadow: 0 2px 10px rgba(117, 128, 162, .15);
  border-radius: 4px;
  position: relative;
  margin: 0;
  padding: 10px;
  background-color: #fff;
  border: 1px solid transparent;
  list-style-type: none !important;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .broker-column-left, .broker-column-right {
    width: 100%;
  }
  .broker-column-right {
      margin-top: 15px;
  }
  .broker-review-columns {
    display: block;
  }
}



/** =========================== FINE - css RECENSIONI BROKER =========================== **/




/** FINE CSS per TradingOnline **/






#id-del-banner {display: none;}




.fixed_foot {
    position: fixed;
    left: 0px;
    bottom: -240px;
    width: 100%;
    background-color: #1d3670;
    padding: 15px 10px;
    -webkit-transition: all .6s cubic-bezier(.645,.045,.355,1);
    -moz-transition: all .6s cubic-bezier(.645,.045,.355,1);
    transition: all .6s cubic-bezier(.645,.045,.355,1);
    z-index: 22;
    display: flex;
    justify-content: center;
}

.fixed_foot.open { bottom: 0px; }

.fixed_foot a {
    padding: 10px;
    padding-right: 45px;
    margin: 0px 5px;
    background: rgb(63,134,237);
    background: -moz-linear-gradient(left, rgba(63,134,237,1) 0%, rgba(37,170,225,1) 100%);
    background: -webkit-linear-gradient(left, rgba(63,134,237,1) 0%,rgba(37,170,225,1) 100%);
    background: linear-gradient(to right, rgba(63,134,237,1) 0%,rgba(37,170,225,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f86ed', endColorstr='#25aae1',GradientType=1 );
    border-radius: 8px;
    position: relative;
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.fixed_foot a b { font-weight: 800; }

.fixed_foot i {
    position: absolute;
    right: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 100px;
    background-color: #fff;
    color: #1d3670;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.center_flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

.tm-toolbar .uk-container {
    display: flow-root;
    max-width: 1440px;
}
.tm-toolbar .uk-container > div > .uk-grid > div {
    width: 100%;
}


/** CSS BUY BUTTON **/ 
button.etailers-button {
  overflow: visible;
  display: block;
  vertical-align: middle;
  text-align: center;
  transition: .1s ease-in-out;
  background-origin: border-box;
  font-size: 12px;
  line-height: 37px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 40px;
  min-height: 37px;
  padding: 0 20px;
  margin-left: 15px;
}
div#etailers-offcanvas, .modal-etailer {
  z-index: 10000 !important;
}
div#etailers-offcanvas:before { background-color: rgba(0,0,0,.5); }
div#etailers-offcanvas .uk-offcanvas-bar.uk-offcanvas-bar-animation.uk-offcanvas-slide {
  width: 50%;
  background-color: #fff;
  color: #2d2e33;
  padding: 45px 30px;
}
div#etailers-offcanvas .uk-modal-body a, div#etailers-offcanvas h3, div#etailers-offcanvas button.uk-offcanvas-close.uk-icon.uk-close, .etailer-product p, .modal-etailer .uk-modal-close-default {
  color: #2d2e33 !important;
}
div#etailers-offcanvas hr { border-top: 1px solid rgba(45, 46, 51, .22); }
.uk-offcanvas-close { top: 15px; right: 15px; }
.etailer-product input.uk-radio {
  border: 3px solid #aaa !important;
  width: 30px;
  height: 30px;
  border-radius: 30px;
}
.etailer-product input.uk-radio:checked { background-color: orange !important; border: 3px solid #aaa; background-image: none;}
.etailer-item { padding: 15px 50px; }
div#etailers-offcanvas a.link-farmacie.link-top { color: #fa7001; font-weight: bold; }

@media all and (max-width: 960px) {
  div#etailers-offcanvas .uk-offcanvas-bar.uk-offcanvas-bar-animation.uk-offcanvas-slide {
    width: 80%;
    padding: 30px 19px;
  }
  .etailer-product { padding: 10px; }
  .etailer-item {
    padding: 0;
  }
  div#etailers-offcanvas .uk-modal-body {
    padding: 20px 0;
  }
  div#etailers-offcanvas .uk-modal-body > .uk-padding-small {margin-left: 0;}
  .etailer-item a { font-size: 14px; }
  .etailer-item a span.uk-icon {width: 25px; height: 25px;}
}

















.pulse a.uk-button {
	 box-shadow: 0 0 0 rgba(0, 154, 64, 0.8);
	 animation: pulse 1.2s infinite;
}
.pulse a.uk-button:hover {
	animation: none;
	transition: all 1s ease;
}

@-webkit-keyframes pulse {
  0% {
	-webkit-box-shadow: 0 0 0 0 rgba(0, 154, 64, 0.4);
  }
  50% {
	  -webkit-box-shadow: 0 0 0 10px rgba(0, 154, 64, 0);
  }
  100% {
	  -webkit-box-shadow: 0 0 0 0 rgba(0, 154, 64, 0);
  }
}
@keyframes pulse {
  0% {
	-moz-box-shadow: 0 0 0 0 rgba(0, 154, 64, 0.4);
	box-shadow: 0 0 0 0 rgba(0, 154, 64, 0.4);
  }
  50% {
	-moz-box-shadow: 0 0 0 10px rgba(0, 154, 64, 0);
	box-shadow: 0 0 0 10px rgba(0, 154, 64, 0);
  }
  100% {
	-moz-box-shadow: 0 0 0 0 rgba(0, 154, 64, 0);
	box-shadow: 0 0 0 0 rgba(0, 154, 64, 0);
  }
}

.pulse a span.uk-icon {
  animation: horizontal-shaking 2.5s infinite;
}
@keyframes horizontal-shaking {
  0% { transform: translateX(0); }
  25% { transform: translateX(5px); }
  50% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}
@-webkit-keyframes horizontal-shaking {
  0% { transform: translateX(0); }
  25% { transform: translateX(5px); }
  50% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.tm-header-mobile .uk-navbar-center img { max-width: 200px; }
.tm-header-mobile .uk-navbar-right .uk-icon-button { background: #009640; color: #fff; width: 33px; height: 33px; }