body {
    /* background-color: black !important; */
}
.dhwc-product-tabs {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 1fr;
    grid-gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.dhwc-product-tab {
    
}

/* Tab button row */
.dhwc-product-tab-buttons {
    display: flex;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding-top: 12px;
    padding-bottom: 16px;
    align-items: center;
    justify-items: center;
    justify-content: center;
}
.dhwc-product-tab-buttons > button {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: var(--wp--preset--font-size--large);
    
    color: gray;
    background: none;
    border: none;
    padding: 10px 10px 4px 10px;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}
.dhwc-product-tab-buttons > button:hover {
    border-bottom: 2px solid gray;
}
.dhwc-product-tab-buttons > button.active {
    color: #00539C;
    border-bottom: 2px solid #00539C;
}