.text-scaler-block{
    display: none;
    position: absolute;
    top: 0;
    left: -60px;
    background-color: var(--clr1);
    height: 48px;
}
.text-scaler-block.active{
    display: flex;
}
.text-scaler-plus{
    position: relative;
    cursor: pointer;
    width: 34px;
    height: 34px;
    text-align: center;
    display: inline-block;
    transition: 0.3s;
    color: #FFF;
    font-weight: bold;
    border: var(--border1);
    margin: 0.7rem 0.5rem 0.7rem 0.2rem;
}
.text-scaler-plus.disabled {
    cursor: default;
    opacity: 0.5;
    pointer-events: none;
}
.text-scaler-minus{
    position: relative;
    cursor: pointer;
    width: 34px;
    height: 34px;
    text-align: center;
    display: inline-block;
    transition: 0.3s;
    color: #FFF;
    font-weight: bold;
    border: var(--border1);
    margin: 0.7rem 0.2rem 0.7rem 0.7rem;
}
.text-scaler-plus:hover,
.text-scaler-minus:hover {
    transition: 0.3s;
    border-color: var(--clr1);
    color: #FFF;
    background: linear-gradient(to right bottom, var(--clr1) 0%, var(--clr1) 100%);
}
.text-scaler-minus.disabled {
    cursor: default;
    opacity: 0.5;
    pointer-events: none;
}
.text-scaler-size{
    width: 50px;
    text-align: center;
    color: #FFF;
    display: inline-block;
}
#wcag-control #text-scaler {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-bottom: 0.6rem;
    padding-top: 0.6rem;
    position: relative;
}
#wcag-control #text-scaler button{
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
}
#wcag-control #text-scaler button.text-scaler-minus svg {
    width: 10px;
}
#wcag-control #text-scaler svg {
    vertical-align: middle;
}
#wcag-control .text-scaler-btn span {
    color: #FFF;
    font-weight: unset;
}
#wcag-control.active .text-scaler-btn span {
    color: #000 !important;
    font-weight: unset;
}
#wcag-control #text-scaler.active .text-scaler-block {
    display: block;
}
#wcag-control #text-scaler.active .text-scaler-block svg path{
    stroke: #fff!important;
}
@media screen and (max-width: 800px) {
    #wcag-control #text-scaler { /*padding-right: 1rem;*/
        min-width: 107px;
    }
}