.product-detail .current-image{
    height: 350px;
    background-color: rgba(0, 0, 0, 0.562);
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}
.product-detail .current-image img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.product-detail .current-image button{
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    opacity: 80%;
    padding: 8px 5px;
    background-color: #464c55;
    color: rgb(190, 190, 190);
    border: none;
}
.product-detail .current-image .left{
    left: 0px;
    border-radius: 0px 5px 5px 0px;
}
.product-detail .current-image .right{
    right: 0px;
    border-radius: 5px 0px 0px 5px;
}
.product-detail .list-image{
    height: max-content;
    overflow-x: scroll;
    scroll-behavior: smooth;
    margin: 20px 0px;
}
.product-detail .list-image::-webkit-scrollbar{
    display: none;
}
.product-detail .list-inner{
    width: max-content;
}
.product-detail .list-inner > div{
    height: 60px;
    width: 60px;
    margin: 0px 10px;
    border-radius: 10px;
    overflow: hidden;
}
.product-detail .list-inner > .current{
    border: #ffbc00 2px solid;
}
.product-detail .list-inner > div:first-child{
    margin-left: 0px;
}
.product-detail .list-inner > div:last-child{
    margin-right: 0px;
}
.product-detail .list-inner img{
    object-fit: scale-down;
    height: 100%;
    width: 100%;
}
.product-detail .product-code{
    font-weight: bolder;
    margin: 15px 0px;
}
.product-detail .infor{
    text-align: justify;
}
.product-detail .product-code .code{
    color: #ffbc00;
}
.product-detail .contact{
    margin: 30px;
}
.product-detail .contact a{
    color: white;
    padding: 14px;
    background-color:  #ffbc00;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(128, 128, 128, 0.651);
    text-decoration: none;
}



@media screen and (max-width:992px){
    .product-detail .current-image{
        height: 450px;
    }
}
@media screen and (max-width:576px){
    .product-detail .contact{
        margin: 30px 0px;
    }
    .product-detail .contact a{
        font-size: 0.8em;
    }
}