/*
Theme Name: Nextweb
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.category-description-wrap {
    margin-top: 32px;
    position: relative;
}

.category-description-content {
    position: relative;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.category-description-content.is-collapsed {
    max-height: 4600px;
}

.category-description-content.is-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
    pointer-events: none;
}

.category-description-toggle {
    display: block;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
    padding: 10px 24px;
    border: 1px solid var(--fs-color-primary);
    border-radius: 999px;
    background: #e4f8f1;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto;
	color: var(--fs-color-primary);
}

.category-description-toggle:hover {
    background: #f7f7f7;
}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}