.products .product.ed-style{}
.product .product-title{
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

/* product hover */
.product-media {
    position: relative;
    display: block;
    background-color: transparent;
    margin-bottom: 0;
    overflow: hidden;
}
.product-media>a {
    position: relative;
    display: block;
    overflow: hidden;
}

.product.ed-style .product-body {
    padding-bottom: 10px;
    margin-bottom: 0px;
}
.product-media>a .product-image{display:block;width:100%;height:auto;transform: scale(1);transition: all .3s ease 0s;}
.product-media>a:hover .product-image {
    transform: scale(1.1);
}
.product-image-hover {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: auto;
    transition: all .4s ease;
}
.product-image{display:block;width:100%;height:auto}
.product-image-hover{position:absolute;left:0;top:0;opacity:0;width:100%;height:auto;transition:all .4s ease}
.product:hover .product-image-hover{opacity:1}

.product-media>a .product-image{
    width: 100%;
}

/* Product */
.f-carousel#reCarousel {
    --f-carousel-spacing: 8px;
    --f-carousel-slide-width: calc((100% / 3) - 10px );
  }
  
  .f-carousel__slide{
    overflow-y: hidden;
  }



/* object-oriented(not include description) */
.news .entry-title,
.products .product-title{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.owl-carousel .product-media>a .product-image{  
    display: block;
    width: 100%;
    height: auto;
}

/* object-oriented */
@media (max-width: 1199px){
}
@media (max-width: 991px){
    .products .product.ed-style{}
}
@media (max-width: 767px){
    .products .product.ed-style{}
    .f-carousel#reCarousel{
        --f-carousel-slide-width: calc((100% / 2) - 10px );
    }
}
@media (max-width: 575px){
    
}
@media (max-width: 479px){
    .products .product.ed-style{}
    .f-carousel#reCarousel{
        --f-carousel-slide-width: 100%;
    }
}

/* checkmark */
  .contact .checkbox label,
  .inquiry .chechbox label {
    font-size: 15px;
  }
  .contact .checkbox input[type=checkbox],
  .inquiry .checkbox input[type=checkbox] {
    top: 2px;
  }
  .contact .checkmark,
  .inquiry .checkmark {
    position: absolute;
    left: 0px;
    top: 5px;
    height: 15px;
    width: 15px;
    background-color: #a9b3b3;
  }
  .contact .checkbox:hover input ~ .checkmark,
  .inquiry .checkbox:hover input ~ .checkmark {
    background-color: #29abe2;
  }
  .contact .checkbox input:checked ~ .checkmark,
  .inquiry .checkbox input:checked ~ .checkmark {
    background-color: #29abe2;
  }
  .contact .checkmark:after,
  .inquiry .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  .contact .checkbox input:checked ~ .checkmark:after,
  .inquiry .checkbox input:checked ~ .checkmark:after {
    display: block;
  }
  .contact .checkbox .checkmark:after,
  .inquiry .checkbox .checkmark:after {
    left: 4px;
    top: -1px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


.blazored-toast-success{
   background-color: #fff;
   background: linear-gradient(#ffff00, #f0aa3f);
}