.product-body{
    display: flex;
    flex-direction: column;
    margin: 0 17em;
}
.product-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "MTS-b";
    color: #002952;
    margin-bottom: 1%;
}
.product-nav a{
    font-family: "MTS-b";
    background-color: #C0E3FF ;
    padding: 1% 2%;
    border-radius: 30px;
}
.blank-container{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    color: #002952;
    border-radius: 10px;
}
.product-item{
    display: flex;
    align-items: center;
    flex-direction: row;
    font-family: "MTS-b";
    padding: 1%;
    width: 98%;
}
.product-item-blue{
    background-color: #F3FAFF;
}
.product-item-left{
    display: flex;
    align-items: center;
    width: 49%;
}
.product-item-left span{
    margin-left: 2%;
}
.product-item-right{
    width: 50%;
    text-align: right;
}
#border-bottom{
    border-radius: 0 0 10px 10px;
}