/*your custom css goes here*/
.min_height_120 {
    min-height: 120px;
}
.display_flex_space {
    display: flex !important;
    justify-content: space-between;
}
@media only screen and (max-width: 767px) {
    .h2 {
        font-size: 1.15rem;
    }
}
hr {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
@media only screen and (max-width: 767px) {
    .aiz-category-menu .category-nav-element:hover .sub-cat-menu {
        display: none;
    }
    .min_height_120 {
        min-height: 110px;
    }
    .carousel-box img {
        /* height: 100px; */
    }
}
.img-contain {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 5px;
}
.variant_product {
    border: 0.15rem solid var(--primary);
    border-radius: 4px;
    overflow: hidden;
}
.variant_product img {
    height: 64px;
    width: 64px;
}
.variant_product:not(last-child) {
    margin-right: 5px;
}
.size_variant_product {
    display: inline-flex;
}
.size_variant_product a {
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
    border: 0.15rem solid var(--soft-primary);
    font-size: 1.25rem;
}
.size_variant_product a:hover,
.size_variant_product a:focus {
    background-color: var(--soft-primary);
}
.size_variant_product a:not(last-child) {
    margin-right: 5px;
}

/* product ribbon */
.ribbon {
    padding:0 0 5px 0;
    position:absolute;
    left:0;
    top:-0.25em;
    width:40px;
  
  }

  .ribbon div {
    background:red;
    background: linear-gradient(#480618 0%, red 100%);
    color:#fff;
    padding:0.2em 0;
    text-align:center;
    text-shadow:-1px -1px 0 rgba(0, 0, 0, 0.5);
    font-weight: 600;
  }
  .ribbon div:after {
    border-left:20px solid #f90d0d;
    border-right: 20px solid #f90d0d;
    border-bottom: 5px solid transparent;
    bottom:0;
    content:'';
    height: 0;
    left:0;
    position:absolute;
    width: 0;
  }
