.woocommerce-product-details__short-description .wb-text-content {
    max-height: 180px;
    overflow: hidden;
    position: relative;
}

.woocommerce-product-details__short-description.show-more .wb-text-content {
    max-height: unset;
}

.woocommerce-product-details__short-description.have-more .wb-text-content::after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 20px;
    background: linear-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, 5));
}

.woocommerce-product-details__short-description.have-more.show-more .wb-text-content::after {
    content: unset;
}

.woocommerce-product-details__short-description.have-more.show-more .show-more,
.woocommerce-product-details__short-description .show-more,
.woocommerce-product-details__short-description .show-less {
    display: none;
    color: #00a7e1;
    cursor: pointer;
}

.woocommerce-product-details__short-description .show-more::before,
.woocommerce-product-details__short-description .show-less::before {
    content: '\e802';
    font-family: 'wild-sports';
    font-size: 12px;
    margin-right: 5px;
}

.woocommerce-product-details__short-description .show-less::before {
    transform: rotateX(180deg);
    display: inline-block;
    transform-origin: 50% 43%;
}

.woocommerce-product-details__short-description.have-more.show-more .show-less,
.woocommerce-product-details__short-description.have-more .show-more {
    display: block;
}