/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 24 May 2022, 14:38:26
    Author     : chani
*/
.more-txt{
    visibility: hidden;
    max-height: 0;

    transition: height .5s;
}

.more-txt.open {
    visibility: visible;
    height: auto;
    transition: height 0.3s linear;
    max-height: 9999px;
}

.readmore.open {
    display: none;   
}

.read-less {
    display: none;
}

.read-less:not(.open) {
    display: none;
}
.read-less,
.readmore {
    display: block;
    cursor: pointer;
    color: var(--accent-light);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.read-less:after,
.readmore:after {
    content: "";
    border: solid var(--accent-light);
    border-width: 0 0.5px 0.5px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin: 3px 10px;
    margin-top: 5px;
}

.read-less:after{
    transform: rotate(225deg);
    margin: -2px 10px;
}