.product_block_one {
position: relative;
}
.product_block_one .product-inner{
position: relative;
transition: all .5s;
}
.product_block_one .product_image{
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.product_block_one .product_image img{
max-width: 100%;
}
.product_block_one .cart_option{
position: absolute;
top: 15px;
right: 15px;
padding-left: 0;
list-style: none;
}
.product_block_one .cart_option li a{
font-size: 14px;
line-height: 38px;
color: #000000;
background-color: #fff;
width: 35px;
height: 35px;
display: inline-block;
text-align: center;
border-radius: 50%;
margin-bottom: 5px;
box-shadow: 0 1px 3px 0 rgba(33,37,41,.1);
}
.product_block_one .cart_option li:hover a{
background-color: #fafafa;
}
.product_block_one .cart_option li:nth-child(2){
opacity: 0;
}
.product_block_one .cart_option li:nth-child(3){
opacity: 0;
}
.product_block_one:hover .cart_option li:nth-child(2){
opacity: 1;
}
.product_block_one:hover .cart_option li:nth-child(3){
opacity: 1;
}
.product_block_one .hover-slider-indicator {
position: absolute;
left: 10px;
bottom: 10px;    
display: flex;
align-items: center;
gap: 10px;
}
.product_block_one .hover-slider-indicator-dot {    }
.product_block_one .hover-slider-indicator-dot.active {  }
.product_block_one .product_content{
display: flex;
flex-direction: column;
padding-top: 15px;
}
.product_block_one .product_name a{
font-size: 20px;
line-height: 30px;
color: #000000;
font-weight: 600;
text-decoration: none;
display: inline-block;
}
.product_block_one ul.rating {
padding-left: 0;
list-style: none;
display: flex;
align-items: center;
gap: 5px;
}
.product_block_one ul.rating li i{
font-size: 16px;
line-height: 26px;
color: #FFD43B;
}
.product_block_one .product_rate {
font-size: 20px;
line-height: 26px;
font-weight: 500;
color: #000000;
margin-bottom: 10px;   
}
.product_block_one .product_rate span{
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #777777;
margin-right: 10px;
text-decoration: line-through;
}
.product_block_one .product_tag{
font-size: 16px;
line-height: 26px;
color: #198754;
font-weight: 400;
}
.product_block_one .product_tag i{
font-size: 16px;
line-height: 26px;
color: #198754;
margin-right: 8px;
}
.product_block_one ul.product_info{
padding-left: 1rem;
}
.product_block_one .product_cart_btn{
position: relative;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
font-size: 16px;
line-height: 26px;
font-weight: 600;
display: inline-block;
width: 100%;
padding: 10px 40px;
border-radius: 5px;
color: #ffffff;
text-transform: capitalize;
background-color: #ff3363;
border-color: #ff3363;
box-shadow: none;
outline: none;
}
.product_block_one .hide_content{
position: absolute;
padding: 20px;
left: -1px;
right: -1px;
bottom: 0;
opacity: 0;
z-index: 0;
visibility: hidden;
background-color: #ffffff;
border: 1px solid #ededed;
transform: translateY(200px);
transition: all .5s;
}
.product_block_one:hover .hide_content{
opacity: 1;    
z-index: 99;
visibility: visible;
transform: translateY(225px);
}