/* color palette from <https://github.com/vuejs/theme> */
:root {
  --vt-c-white: #ffffff;
  --vt-c-white-soft: #f8f8f8;
  --vt-c-white-mute: #f2f2f2;

  --vt-c-black: #181818;
  --vt-c-black-soft: #222222;
  --vt-c-black-mute: #282828;

  --vt-c-indigo: #2c3e50;

  --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
  --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
  --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
  --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);

  --vt-c-text-light-1: var(--vt-c-indigo);
  --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
  --vt-c-text-dark-1: var(--vt-c-white);
  --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
  --pnl-gray: #eaeaea;
  --pnl-light-gray: #f4f4f4;
  --pnl-dark-gray: #878887;
  --pnl-green: #7fa545;
  --pln-y: #ffcd00;
  --pln-transparent-tab: #ececec;
  --pln-text-gray: #767676;
  --neutral-400: #333;

  --popper-theme-background-color: #333333;
  --popper-theme-background-color-hover: #333333;
  --popper-theme-text-color: #ffffff;
  --popper-theme-border-width: 0px;
  --popper-theme-border-style: solid;
  --popper-theme-border-radius: 6px;
  --popper-theme-padding: 12px;
  --popper-theme-box-shadow: 0 6px 30px -6px rgba(0, 0, 0, 0.25);
}

/* semantic color variables for this project */
:root {
  --color-background: var(--vt-c-white);
  --color-background-soft: var(--vt-c-white-soft);
  --color-background-mute: var(--vt-c-white-mute);

  --color-border: var(--vt-c-divider-light-2);
  --color-border-hover: var(--vt-c-divider-light-1);

  --color-heading: var(--vt-c-text-light-1);
  --color-text: var(--vt-c-text-light-1);

  --section-gap: 160px;
}
/*body{
    background-color: red !important;
}*/
.listing-box-wrapper {
  width: 100%;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 30px;
}

.listing-box-wrapper .box {
  border-radius: 15px;
  min-width: 210px;
  transition: background-color 0.2s ease-in-out;
  background-color: var(--pnl-light-gray);
  width: fit-content;
  width: 100%;
  height: fit-content;
}

.listing-box-wrapper .box.box-polizza .box-head p{
  color: white;
}

.listing-box-wrapper .box.half-box{
  width: 100%;
}

.listing-box-wrapper .box .color-handler{
  transition: background-color 0.2s ease-in-out;
  padding: 2px;
  padding-top: 10px;
  border-radius: 15px;
}

.separator{
  width: 100%;
  height: 1px;
  background-color: #767676;
}

.grid1{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid4{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.span1 {
  grid-column: span 1 / span 1;
}

.span2 {
  grid-column: span 2 / span 2;
}

.span3 {
  grid-column: span 3 / span 3;
}

.span4 {
  grid-column: span 4 / span 4;
}

.listing-box-wrapper .box .box-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 15px;
  min-height: 30px;
}

.listing-box-wrapper .box .box-head p {
  margin: 0;
  color: black;
  font-size: 20;
  font-weight: bold;
  transition: color 0.2s ease-in-out;
  pointer-events: none;
}

.listing-box-wrapper .box.selected .box-head p{
  color: white;
}

.listing-box-wrapper .box .box-head .check{
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.listing-box-wrapper .box.selected .box-head .check{
  border: none;
  pointer-events: none
}

.listing-box-wrapper .box .box-head .icon{
  width: 12px;
  pointer-events: none;
}

.listing-box-wrapper .box.selected .box-head .plus-icon{
  display: none;
}

.listing-box-wrapper .box.selected .box-head .check-icon{
  display: block;
}

.listing-box-wrapper .box .box-head .check-icon{
  display: none;
}

.listing-box-wrapper .box .box-head .plus-icon{
  display: block;
}

.listing-box-wrapper .box .box-footer{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 10px;
  gap: 8px;
}

.listing-box-wrapper .box .box-footer .separator{
  width: 1px;
  background-color: black;
  height: 38px;
}

.listing-box-wrapper .box .box-footer p{
  margin: 0;
}

.listing-box-wrapper .box .box-footer .dicitura{
  font-size: 12px;
  width: 100%;
}

.listing-box-wrapper .box .box-footer .costo-box{
  margin-bottom: 10px;
  flex: 0 0 83px;
}

.listing-box-wrapper .box .box-footer .costo-box .costo{
  font-weight: bold;
  font-size: 24px;
}

.listing-box-wrapper .box .box-footer .costo-box .appendice{
  color: var(--pln-text-gray);
  font-size: 14px;
  margin-left: 5px;
}

.listing-box-wrapper .box .box-footer .costo-box .appendice.piccola{
  font-size: 12px;
}

.listing-box-wrapper .box .box-content {
  margin-top: 10px;
  background-color: white;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  gap: 30px;
  min-height: 143px;
}

.listing-box-wrapper .box .box-content .box-detail{
  width: 100%;
  min-width: 120px;
  color: black;
}

.listing-box-wrapper .box .box-content .content-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  height: fit-content;
}

.listing-box-wrapper .box .box-content .content-title .icon-info{
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: none;
  background-color: transparent;
}

.listing-box-wrapper .box .box-content .content-title .icon-info img{
  height: 12px;
}

.listing-box-wrapper .box .box-content .separator{
  margin-top: 9px;
}

.listing-box-wrapper .box .box-content .content-details{
  margin-top: 8px;
}

.listing-box-wrapper .box .box-content .content-details .content-detail-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.listing-box-wrapper .box .box-content .content-details .content-detail-row:not(:first-child){
  margin-top: 15px;
}

.listing-box-wrapper .box .box-content .content-details .content-detail-row-title{
  display: flex;
  align-items: center;
  gap: 10px;
}

.listing-box-wrapper .box .box-content .content-details .content-detail-row-title .icon-info{
  border: none;
  background-color: transparent;
}

.listing-box-wrapper .box .box-content .content-details .content-detail-row-value{
  font-weight: bold;
}

.listing-box-wrapper .box .box-content .content-details .content-detail-row-value .appendice-valore{
  font-size: 16px;
  color: var(--pln-text-gray);
  font-weight: normal;
  margin-left: 6px;
}

.listing-box-wrapper .box .box-content .content-details .content-valore{
  font-size: 24px;
  font-weight: bold;
}

.listing-box-wrapper .box .box-content .content-details .content-valore-polizza{
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}

.listing-box-wrapper .box .box-content .content-details .content-valore-polizza p{
  margin: 0;
}

.listing-box-wrapper .box .box-content .content-details .content-valore-polizza .prezzo-box{
  text-align: right;
}

.listing-box-wrapper .box .box-content .content-details .content-valore-polizza .prezzo{
  font-weight: bold;
}

.listing-box-wrapper .box .box-content .content-details .content-valore-polizza .prezzo-box .appendice{
  font-size: 16px;
  color: var(--pln-text-gray);
}

.listing-box-wrapper .box .box-content .content-details .content-valore-polizza .prezzo-box .appendice-2{
  font-size: 12px;
  color: var(--pln-text-gray);
  margin-top: -8px;
}

.listing-box-wrapper .box .box-content .content-details .content-valore .appendice-valore{
  font-size: 16px;
  font-weight: lighter;
  color: #767676;
  margin-left: 6px;
}

.listing-box-wrapper .box .box-content .content-details .content-subtitle{
  color: #767676;
}

@media (max-width: 790px){
  .listing-box-wrapper{
    flex-direction: column;
    gap: 15px;
  }

  .listing-box-wrapper .box{
    width: 100%;
  }
}

@media (max-width: 634px){
  .listing-box-wrapper .box:not(.box-polizza, .box-indicizzati) .box-content {
    display: block;
  }

  .listing-box-wrapper .box:not(.box-polizza, .box-indicizzati) .box-content .box-detail{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .listing-box-wrapper .box:not(.box-polizza, .box-indicizzati) .box-content .content-title{
    margin-top: 5px;
  }

  .listing-box-wrapper .box:not(.box-polizza, .box-indicizzati) .box-content .separator{
    display: none;
  }

  .listing-box-wrapper .box:not(.box-polizza, .box-indicizzati) .box-content .content-details{
    margin: 0;
    height: fit-content;
  }
}
.page-cart-tab{
    width: 100%;
    background-color: transparent;
}

.tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    z-index: 1;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: transparent;
}

.tabs .tab {
    grid-column: span 1 / span 1;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 20px 15px 16px 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: var(--pln-transparent-tab);
    cursor: pointer;
    position: relative;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}

.tabs .tab p{
    margin: 0;
    line-height: 19px;
}

.tabs .tab:not(.active){
    opacity: 0.5;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.35);
}

.tabs .tab.active {
    background-color: white;
    z-index: 10;
}

.tabs .tab-shadow{
    display: none;
    position: absolute;
    box-shadow: 0px 0px 24px 3px rgba(0,0,0);
    z-index: 20;
}

.tabs .tab.active{
    z-index: 50;
}

.tabs .tab:not(.active) .tab-shadow{
    display: block;
}

.tabs .tab .tab-shadow.gas-vertical{
    left: 0;
    bottom: 0;
    height: 80%;
}

.tabs .tab .tab-shadow.luce-vertical{
    right: 0;
    bottom: 0;
    height: 80%;
}

.tabs .tab-shadow.horizontal{
    display: block;
    top: 0;
    width: 97%;
    box-shadow: 0px 0px 24px 9px rgba(0,0,0);
}

.tabs .bg-compensator{
    position: absolute;
    width: 100%;
    bottom: -15px;
    height: 15px;
    background-color: var(--pln-transparent-tab);
    opacity: 0.18;
    box-shadow:  0 30px 0 rgba(0, 0, 0, 0.15)
}

.tabs .bg-compensator .compensator-contanier{
    height: 15px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.gas-break{
    display: block;
}

@media (min-width: 432px) {
    .gas-break{
        display: none;
    }
}

@media (max-width: 634px){
    .tabs .tab{
        font-size: 18px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
/*document.querySelector("").style.justifyContent = "center"
document.querySelector(".v-popper__popper.v-popper--theme-tooltip .v-popper__wrapper").style.display = "flex"
document.querySelector(".v-popper__popper.v-popper--theme-tooltip .v-popper__wrapper").style.maxWidth = "500px"*/

.v-popper__popper.v-popper--theme-tooltip .v-popper__wrapper {
    display: flex;
    justify-content: center;
    max-width: 500px;
    background-color: black;
}
/*@import url("https://eniplenitude.com/etc.clientlibs/enigaseluce/clientlibs/clientlib-site.css");
/*@import './styles/general.css';*/
@import './styles/base.css';
@import './styles/listing-box.css';
@import './styles/tabs.css';
@import './styles/tooltip.css';

.egl-carrello-dual {
  margin-top: 0 !important;
  position: relative !important;
  z-index: 10 !important;
}

.egl-carrello-dual:has([data-pagina="page-cart"]){
  box-shadow: 0 22px 30px 0 rgba(0,0,0,.15);
}

.page-cart-tab {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.onlyleft {
  border-top-left-radius: 15px;
  border-top-right-radius: 0;
}

.onlyright {
  border-top-left-radius: 0;
  border-top-right-radius: 15px;
}

.box-shadow {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}

/*p {
  margin: 0;
}*/

[pln-component="listing-vue"][pln-version="1.0"] {
  width: 100%;
  height: fit-content;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper {
  width: 100%;
}

/*[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion-head .accordion-title {
  font-family: SourceSansPro;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion-head .opened {
  transform: rotate(180deg);
}*/

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion {
  width: 100%;
  margin-top: 15px;
  overflow: hidden;
  height: fit-content;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .controls {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 70px;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .controls .control {
  display: flex;
  align-items: center;
  gap: 15px;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .controls .control .label {
  font-size: 14px;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .controls .control .buttons {
  display: flex;
  border-radius: 20px;
  background-color: var(--pnl-light-gray);
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .controls .control .buttons .button {
  border-radius: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 15px;
  padding-left: 15px;
  cursor: pointer;
  font-size: 16px;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .controls .control .buttons .button.active {
  /*background-color: var(--pnl-green);*/
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
  font-weight: bold;
  color: white;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .note {
  font-size: 12px;
  color: var(--pnl-dark-gray);
  margin-top: 15px;
  margin-bottom: 0;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .note a {
  text-decoration: underline;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .note a:hover {
  text-decoration: none;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 30px;
}

[pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .cta .column {
  grid-column: span 1 / span 1;
}

@media (max-width: 730px) {
  [pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .controls {
    gap: 0;
    justify-content: space-between;
  }
}

@media (max-width: 730px) {
  [pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .cta {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

@media (max-width: 653px) {
  [pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .controls {
    flex-direction: column;
    gap: 15px;
  }

  [pln-component="listing-vue"][pln-version="1.0"] .listing-wrapper .accordion .controls .control {
    width: 100%;
    justify-content: space-between;
  }
}