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

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


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

.showinfo-hidden {
    display: none;
}

/* Show More Functionality */
.show-more-enabled .text {
    overflow: hidden;
    position: relative;
    padding-bottom: 25px;
}

.show-more-enabled .text.fix_height {
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.show-more-button {
    text-align: center;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    bottom: 0;
    width: 100%;
    background: #fff;
}

.show-more-button:before {
    height: 100px;
    margin-top: -90px;
    content: "";
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    display: block;
}

.btn-show-more {
    appearance: none;
    background: white;
    color: #2779bd;
    display: inline-flex;
    align-items: center;
    height: 26px;
    text-decoration: none;
    line-height: 26px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 3px;
    margin: 0px;
    border: 1px solid #2779bd;
}

.show-more-button a {
    color: #318A00;
    display: block;
}

.show-more-button a:after {
    content: '';
    width: 0;
    border-top: 6px solid #318A00;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 5px;
}

.show-less-button a:after {
    border-top: 0;
    border-bottom: 6px solid #318A00;
}

.show-less-button:before {
    display: none;
}
  
.show-more-enabled .text.expanded + .show-more-button.show-less:before {
    display: none !important;
}