.item_detail {
    margin-top: 50px;
}

.product {
    margin-bottom: 50px;
}
.product .product-img {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #828282;
}
.product .product-img img {
    width: 100%;
    /* max-width: 160px; */
}
.product .product-tags {
    padding: 20px;
}
.product .product-name {
    text-transform: uppercase;
    font-family: Quicksand-Medium;
    color: #4D4D4D;
}
.product .product-size {
    text-transform: uppercase;
    font-family: Quicksand-Medium;
    font-size: 0.75rem;
    color: #0b1f8f;
}
.product .product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product .product-price .left {
    display: flex;
}
.product .product-price .left .price {
    color: #c63700;
    font-size: 1.1rem;
    font-weight: bold;
}
.product .product-price .left .discount {
    border: 1px solid #0b1f8f;
    font-size: .85rem;
    padding: 0px 4px;
    color: #0b1f8f;
    margin-left: 20px;
}

.product .nav-pills {
    background-color: #CCCCCC;
    display: flex;
    justify-content: space-between;
}
.product .nav-pills .nav-link {
    color: #828282;
}
.product .nav-pills .nav-link.active {
    color: #0b1f8f;
    background-color: transparent;
}
.product .tab-content {
    padding: 20px;
}