
/* content */
.container .content-title{
    width: 100%;
    max-height: 45px;
    position: relative;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0px 20px;
}
.container .content-title .section-heading {
    display: inline-block;
    position: relative;
    border-radius: 4px 0px 0px 4px;
    text-transform: uppercase;
    padding: 0px 8px 0px 12px;
    background-color: #00a650;
    color: #fff;
    line-height: 45px;
    font-size: 16px;
    font-weight: 500;
}
.container .content-title .section-heading::after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 22px solid transparent;
    border-left: 15px solid;
    border-left-color: #00a651;
    border-right: 0 solid transparent;
    border-bottom: 23px solid transparent;
    position: absolute;
    top: 0;
    right: -14px;
}
.container .product-img:hover {
    transform: rotateY(-180deg);
    transition: transform 1s ease-in;
}
.top-account {
    width: 90%;
    color: #bbb;
    background-color: #f0f8ff;
    border-radius: 10px;
    opacity: 0.8;
    box-shadow: 0 0 27px rgba(255, 255, 255, 0.9);
}
.top10-account {
    max-height: 220px;
    overflow: auto;
}

/* cards product */
.card{
    transition:0.5s;
    cursor:pointer;
}
.card-title{
    font-size:15px;
    transition:1s;
    cursor:pointer;
}
.card-title i{
    font-size:15px;
    transition:1s;
    cursor:pointer;
    color:#ffa710
}
.card:hover .card-title i{
    transform: scale(1.25) rotate(100deg);
    color:#18d4ca;
}
.card:hover{
    transform: scale(1.05);
    box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}
.card-text{
    height:80px;
}
.card::before, .card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    background: rgba(255, 255, 255, 0.1);
    content: '';
    pointer-events: none;
}
.card::before {
    transform-origin: left top;
}
.card::after {
    transform-origin: right bottom;
}
.card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
    transform: scale3d(1, 1, 1);
}
.card .price-discount {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    height: 2.5rem;
    width: 2.5rem;
    color: red;
    background: #fed534;
    text-align: center;
    font-weight: 700;
    vertical-align: middle;
    line-height: 2.5rem;
    border-radius: 50%;
    animation: swing infinite 3s;
    transition: all ease 0.3s;
}
.card .price-discount::before {
    content:"";
    position: absolute;
    background: inherit;
    height: inherit;
    width: inherit;
    top: 0;
    left: 0;
    z-index: -1;
    transform: rotate(30deg);
}
.card .price-discount::after {
    content:"";
    position: absolute;
    background: inherit;
    height: inherit;
    width: inherit;
    top: 0;
    right: 0;
    z-index: -1;
    transform: rotate(75deg);
}
