*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.main-container{
    display:block;
    width: 100vw;

}

.menu{
    text-align: right;
}

.card-product .img-wrap {
    display: flex;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
    position: relative;
    height: 180px;
    justify-content: center;
}
.card-product .img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: scale-down;
}
.card-product .info-wrap {
    overflow: hidden;
    padding: 15px;
    border-top: 1px solid #eee;
}
.card-product .bottom-wrap {
    padding: 15px;
    border-top: 1px solid #eee;
}

.label-rating { margin-right:10px;
    color: #333;
    display: inline-block;
    vertical-align: middle;
}

.card-product .price-old {
    color: #999;
}

.boton{
    text-align: left;
    text-decoration: none;
    color: black;
    width: 150px;
}

.boton:hover{
    color: red;
    cursor: pointer;
}

.cabecera{
    text-align: center;
    background-color: #eceff1;
    color: white;
    border-bottom: 1px solid black;
}

.carousel{
    background-color: black;
}

.carousel-inner img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.btn{
    cursor: pointer;
}