.main .content-product{
    width: 100%;
    
    
    box-sizing: border-box;
    
    display: flex;

}
.main .content-product .left-product{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.main .content-product .left-product .image-portada{
    max-width: 350px;
    max-height: 350px;
    object-fit: contain;
    border-radius: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    
}
.main .content-product .left-product .images-product{
    width: 350px;
    height: 100px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.main .content-product .left-product .images-product img{
    height: 100%;
    max-width: 100px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0px 4px 5px rgb(0 0 0 / 15%);
    cursor: pointer;
}
.main .content-product .right-product{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    padding-left: 20px;
    
}
.main .content-product .right-product .breadcrumb{
    font-size: 12px;
    color: #141414;
}
.main .content-product .right-product .breadcrumb a{
    color: #141414;
}
.main .content-product .right-product .breadcrumb a:hover{
    border-bottom: 0.5px solid #141414;
}
.contenteditable_shop{
    border-bottom: 0.5px dotted #737373;
    outline: none;
}
.main .content-product .right-product .title-product{
    font-size: 25px;
    line-height: 23px;
    margin: 10px 0;
}
.main .content-product .right-product .price{
    font-size: 20px;
}
.main .content-product .right-product .description{
    font-size: 14px;
}
.main .content-product .right-product .title-share{
    font-size: 14px;
    margin: 15px 0 0 0 ;
    font-weight: 500;
}
.main .content-product .right-product .title-description{
    font-size: 14px;
    font-weight: 500;
}
.main .content-product .right-product .btns-share{
    width: 100%;
    margin: 0 0 15px 0;
    display: flex;
    gap: 15px;
    
}
.main .content-product .right-product .btns-share a{
    width: 25px;
    height: 25px;
    color: #FFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    
}
.main .content-product .right-product .btns-share a.w{
    background: #25D366;
}
.main .content-product .right-product .btns-share a.f{
    background: #3b5998;
}
.main .content-product .right-product .btns-share a.t{
    background: #00acee;
}
.main .content-product .right-product .add-cart{
    height: 40px;
    width: 185px;
    margin: 15px 0 0 0;
    cursor: pointer;
    background: #141414;
    color: #FFFF;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 20%);
    transition: all .5s ease;
    font-size: 16px !important;
}
.main .content-product .right-product .add-cart:hover{
    background: #101010;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 25%);
}

@media (max-width: 1110px){
    .main .content-product{
        flex-direction: column;
        align-items: center;
    }
    .main .content-product .right-product{
        width: 100%;
        padding-left: 0;
    }
    .main .content-product .left-product{
        width: 100%;
    }
    .main .content-product .right-product .breadcrumb{
        margin: 20px 0 0 0;
    }
}

.input_post{
    height: 30px;
    padding: 5px;
    
    border: none;
    outline: none;
    border-bottom: 0.5px solid #9c9c9c;
}

img{
    width: 100%;
    display: block;
}
.img-display{
    overflow: hidden;
    width: 530px;
    margin: 0 auto;
}
.img-showcase{
    display: flex;
    width: 100%;
    max-height: 350px;
    transition: all 0.5s ease;
}
.img-showcase img{
    margin: 0 auto;
    height: 530px;
}
.img-select{
    display: flex;
    max-height: 152px;
}
.img-item{
    margin: 0.3rem;
    height: 152px !important;
    width: 100%;
}

.img-item img{
    height: 100%!important;
    width: 100%;
}
.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
    margin-right: 0;
}
.img-item:hover{
    opacity: 0.8;
}