/* TABS 
/////////////// */
.adv-tabs .tabs-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.adv-tabs .tabs-wrap a {
  text-decoration: none;
  color: inherit;
  text-align: center;
  display: block;
  padding: 0.4em 1em;
  background-color: var(--sBlue);
  border: solid 1px var(--sBlue);
  border-bottom: 0;
  font-weight: 600;
}

.adv-tabs .tabs-wrap .item:not(:first-of-type) a{
  margin-left: 0.6em;
}

.adv-tabs .tabs-wrap .item a:hover,
.adv-tabs .tabs-wrap .item.selected a{
  background-color: var(--white);
}


/* TABS CONTENT  */
.adv-tabs .tabs-wrap {
  position: relative;
  bottom: -1px;
}

.adv-tabs .tab-contents {
  padding: 1em 2em;
  background-color: var(--lorange);
  background-color: var(--white);
  box-shadow: var( --shadow);
  border: solid 1px var(--sBlue);
}

.adv-tabs .tab-item:not(.active) .tab-contents{
  display: none;
}

.adv-tabs .tab-item-title {
  border-bottom: solid 1px var(--border);
  padding-bottom: 0.3em;
  font-size: 1.6em;
  margin-bottom: 1em;
}

.adv-tabs .item-image {
  max-width: 18%;
  width:100%;
  margin-right: 2em;
}

.adv-tabs .item-image img {
  border-radius: 0.4em;
  width: 100%;
  height: auto;
}

.adv-tabs .item-body .checkmarks:not(.inline) {
  display: -webkit-box;display: -ms-flexbox;display: flex;
  -ms-flex-wrap: wrap;flex-wrap: wrap;
}

.adv-tabs .item-body .checkmarks:not(.inline) li {
  -webkit-box-flex: 1;-ms-flex: 1 0;flex: 1 0;
}

/* note  */
.adv-tabs .item-body li.note:after {
  content: "\f059";
  position: relative;
  right: 0;
  font-family: fontAwesome;
  font-size: 12px;
  top: -7px;
}

.adv-tabs .item-body li.note span {
  position: absolute;
  font-size: 13px;
  background-color: var(--border);
  padding: 0.5em;
  border-radius: 0.5em;
  top: -0.5em;
  z-index: 3;
  line-height: 1.3;
  visibility: hidden;
  transition:all ease-in-out 0.2s;
}

.adv-tabs .item-body li {
  position: relative;
}

.adv-tabs .item-body li.note:hover span{
  visibility: visible;
  top: -2em;
}





/* TABS CHECKMARKS  
/////////////////////////////////*/
.adv-tabs .item-body .checkmarks.inline {
  display: inline-block;
  margin-right: 2em;
  margin-left: auto;
}

.adv-tabs .item-body .checkmarks.inline:last-of-type {
  margin-right: 0;
}

@media(min-width:1020px){
  .adv-tabs .item-body .checkmarks:not(.inline) li {
    min-width: calc(21%);
    max-width: calc(22%);
    width: 100%;
  }
  
  .adv-tabs .item-body .checkmarks:not(.inline) li:not(:nth-child(4n + 1)) {
    margin-left: 2em;
  }
}


@media(min-width:580px) and (max-width:1019px){
  .adv-tabs .item-body .checkmarks:not(.inline) li {
    min-width: calc(28%);
    width: 100%;
  }
  
  .adv-tabs .item-body .checkmarks:not(.inline) li:not(:nth-child(3n + 1)) {
    margin-left: 2em;
  }
}


.adv-tabs .tab-item .tab-trigger {
  display: none;
  text-decoration: none;
  width: 100%;
  background-color: var(--sBlue);
  color: inherit;
  padding: 0.65em 2.5em 0.65em 1em;
  position: relative;
  margin-bottom:0.5em;
}

.adv-tabs .tab-item .tab-trigger:before{
  content:"\f055";
  font-family: fontAwesome;
  position: absolute;
  right: 0.8em;
}

@media(max-width:960px){
  .adv-tabs .tab-item .tab-trigger {
    display: block;
  }

  .adv-tabs .tab-item.active .tab-trigger,
  .adv-tabs .tabs-wrap{
    display:none;
  }

  .adv-tabs .tab-contents{
    margin-bottom: 0.5em;
  }
}

@media(max-width:768px){
  .adv-tabs .item-image {
    -webkit-box-flex: 1;-ms-flex: auto;flex: auto;
    max-width: none;
    min-width: initial;
    margin-right: 0;
    margin-bottom: 0.8em;
  }
}




@media(min-width:376px) and (max-width:579px){
  .adv-tabs .item-body .checkmarks li {
    min-width: calc(44%);
    width: 100%;
  }
  
  .adv-tabs .item-body .checkmarks li:not(:nth-child(2n + 1)) {
    margin-left: 2em;
  }
}


@media(max-width:375px){
  .adv-tabs .item-body .checkmarks li {
    -webkit-box-flex: 1;-ms-flex: auto;flex: auto;
    max-width: none;
    margin-left: 0 !important;
    width: 100%;
  }
}



