
/*~~~~~~~~~~~~~~~~~seo text~~~~~~~~~~~~~~~~~~~~*/

.b-seo-text {
    margin-bottom: 120px;
}
.b-seo-text__content {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 18px;
    line-height: 140%;
    color: #000000;
    position: relative;
    opacity: 0.7;
}

.b-seo-text__content.active {
    max-height: 2000px;
}

.b-seo-text__content p{
    margin-bottom: 1em;
}
.b-seo-text__content p:last-child{
    margin-bottom: 0;
}

.b-seo-text__content:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 253, 245, 0) 0%, rgb(255 253 245) 100%);
    pointer-events: none;
    transition: all .3s;
}

.b-seo-text__content.active:after {
    opacity: 0;
}

.b-seo-text .btn.toggle {
    display: inline-flex;
    vertical-align: top;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 140%;
    color: #000000;
    margin-top: 20px;
    opacity: 0.7;
}
.b-seo-text .btn.toggle span{
    text-decoration: underline;
    text-decoration-color: #000000;
    transition: all .3s;
}
.b-seo-text .btn.toggle svg{
    width: 10px;
    height: auto;
    margin-left: 10px;
    display: block;
    transition: all .3s;
}

.b-seo-text__content.active + .btn.toggle svg {
    transform: scale(1,-1);
}

.b-seo-text .btn.toggle:hover span {
    text-decoration-color: transparent;
}
.b-seo-text .btn.toggle span{
    cursor: url(/wp-content/themes/rubbish/img/pointing-cursor.png), auto;
}

