body {
    background-color: #f0f1f2;
}

.producttab .tabsslider.horizontal-tabs .nav-tabs li a.active, .producttab .tabsslider.horizontal-tabs .nav-tabs li a:hover {
    background-color: #fb8a00;
    border-color: #f1ab21;
    color: #fff;
}

#tab-description
{margin-bottom: 20px;}
#tab-description table
{width: 100%;max-width: 100%;}
#tab-description table tr
{
    background-color: #fff;
}
#tab-description tr:first-child td {
    background-color: #245e7c;
    color: #ffffff;
    height: 30px !important;
    vertical-align: middle;
    font-weight: bold;
}

#tab-description tr:first-child td:last-child {
    background-color: #245e7c;
    color: #ffffff;
    border-top-right-radius: 4px;
}

#tab-description tr:nth-child(2n)
{
    background-color: #f9f9f9;
}
#tab-description tr:not(:first-child):hover
{
    background-color: #ebf2f5;
    color: black;
}
#tab-description tr td
{
    padding: 6px;
    font-size: 14px;
    width: 0px !important;
}


.product-box-desc span {
    padding-top: 5px;
    padding-bottom: 5px;
}

.fw-bold {
    font-weight: 700;
}


.delivery-time{
    font-size: 12px;
    line-height: 1.3;
}

.delivery-time::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 18px;
    margin-right: 8px;
    background: url(image/catalog/thema/icon/cargo.svg) no-repeat center;
    background-size: contain;
    vertical-align: text-bottom;
}
.delivery-time b:last-child {
    color: #fb8a00;
}

.fw-semibold {
    font-weight: 600;
}


.delivery-note {
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    color: #383737e9;
}

.border-round {
    border-radius: var(--border-radius) !important;
}

.btnfav {
    font-size: 15px;
    color: #222;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.btnfav:focus,
.btnfav:hover {
    color: #222;
}

.btnfav:focus:after,
.btnfav:hover:after {
    width: 100%;
    left: 0%;
}

.btnfav:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: red;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}