.icd-sticky-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1em 0;
    gap: 1em;
    flex-wrap: wrap;
    width: 100%;
    clear: both;
    margin-bottom: 2em;
    position: relative;
    background-color: var(--e-global-color-secondary);
    color: #fff;
}
.icd-sticky-bar:before {
    content: "";
    width: 500%;
    height: 100%;
    position: absolute;
    left: -500%;
    top: 0;
    background: var(--e-global-color-secondary);
}

.icd-sticky-bar:after {
    content: "";
    width: 500%;
    height: 100%;
    position: absolute;
    right: -500%;
    top: 0;
    background: var(--e-global-color-secondary);
}
.icd-product-summary {
    position: relative;
}

.icd-product-summary .icd-summary-toggle,
.icd-bar-group,
.icd-price-badge {
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.4em;
    font-size: 1em;
    color: currentColor !important;
    font-weight: normal;
    border-radius: 0;
    background-color: transparent !important;
}
.icd-product-summary svg.icon,
.icd-bar-group svg.icon,
.icd-price-badge svg.icon{
    min-width: 2em;
    width: 2em;
    height: 2em;
}
.icd-product-summary .box,
.icd-bar-group .icd-bar-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2em;
    line-height: 1.1;
}

.icd-product-summary .box .top-bar {
    display: flex;
    align-items: center;
    gap: 0.3em;
}
.icd-product-summary .box strong {
    font-weight: normal;
}
.icd-product-summary .box svg.toggle-icon {
    min-width: 1em;
    width: 1em;
}

.icd-product-summary .icd-summary-content {
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.8em;
    padding: 0.8em 1em;
    position: relative;
    display: none;
    line-height: 1.3;
    bottom: calc(100% + 1em);
    color: #fff;
    width: 100%;
    min-width: 320px;
    margin-top: 1.5em;
}

.icd-product-summary .icd-summary-content:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255, 255, 255, 0.2);
    left: 12%;
    bottom: 100%;
}

.icd-product-summary.is-open .icd-summary-content {
  display: block;
}

.icd-product-summary .icd-summary-item,
.icd-bar-group .icd-bar-label small,
.icd-price-badge .icd-price-text {
    font-size: 0.85em;
}
.icd-product-summary .icd-summary-content .icd-summary-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3em;
    flex-direction: column;
}
.icd-product-summary .icd-summary-content small {
    font-size: 1em;
}

.icd-product-information {
    width: 100%;
    clear: both;
    border: solid 1px #979797;
}

.icd-product-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -1px;
    margin-top: -1px;
    border-right: solid 1px var( --e-global-color-primary );
    border-top: solid 1px var( --e-global-color-primary );
}

.icd-product-tabs button.icd-product-tab {
    flex: 1;
    border-radius: 0;
    border-right: 0;
    border-top: 0;
    text-transform: uppercase;
    font-size: 1.05882em;
    padding: 1em;
}

.icd-product-tab-content {
    padding: 1.5em 0.96em;
}
body .icd-product-information ul {
    padding-left: 1.1em;
}
.icd-product-tabs button.icd-product-tab.active {
    background-color: var( --e-global-color-primary );
    color: #fff;
}


.icd-tab-panel {
  display: none;
}
.icd-tab-panel.active {
  display: block;
}
