﻿/* GLOBAL STYLES */
.productTabs-body {
    padding:5px;
    border:1px dotted #ccc;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.productTabs-body .write-review {
    margin: 0;
}
.productTabs-body .product-specs-box .title {
    text-transform: uppercase;
    padding: 5px 5px 10px 5px;
}
.productTabs-body .full-description h3,
.productTabs-body .full-description p,
.productTabs-body .product-specs-box .title {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}
.productTabs-header ul {
    display: flex;
    flex-flow: row;
}
.productTabs-header ul li {
    flex-grow: 1;
}
.productTabs-header ul li a {
    display: block;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: #a79c97;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: relative;
    padding: 10px;
    border-top: 1px dashed silver;
    border-left: 1px dashed silver;
    border-right: 1px dashed silver;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}
.productTabs-header ul li a:hover {
    flex-grow: 1;
    background-color:  #8e807a;
}
.productTabs-body .product-specs-box .advanced-grid tr td:first-child {
    width: 30%;
}
.productTabs-body .product-specs-box .advanced-grid tr td:last-child {
    width: 100%;
}
@media all and (max-width: 480px) {
    .productTabs-header ul {
        display: flex;
        flex-flow: column;
    }
}