
:root{
    --clr01: #0db14b;
    --clr02: #3d9907;
    --clr03: #c2b497;
    --rgb01: 0, 41, 107;
    --rgb02: 0, 101, 145;

}
body{
    --body-lineheight: 1.8
}
.btn,
a.btn{
    --btnft: var(--ft-t2);
    --btnbgclr: var(--clr01);
    --btnbgclrhov: var(--clr02);
    --btnclr: var(--clr02, #fff);
    --btnclrhov: var(--clr01, #fff);


    --btnborderclr: var(--btnbgclr);
    --btnborderclrhov: var(--btnhovbgclr);
    
    --btnp: 15px;
    --btnminwidth: 100px;
    --lblfont: var(--ft-t1);
}
section {
    --secttlclr: var(--clr02);
}
/* section .h4 {
    position: relative;
    display: inline-table;
    padding: 15px 0 3px;
    border-bottom: 3px solid var(--clr01);
    margin: 5px 0 30px;
} */
section .ttldecor-btm:after {
    content: '';
    display: inline-block;
    margin: 0; 
    height: 6px;
    width: 120px; 
    background-color: var(--clr01); 
}

/* ================================== */
/* ================================== */

.btnDecor{
    position: relative;
    z-index: 1;

    &.btn{
        padding: 9px 9px 9px 0;
        color: inherit;
        min-width: auto;
        line-height: 1;
        background-color: transparent;
        border: 0;
        font-family: inherit;
        font-size: 80%;


        &::after{ 
        }
        &::before{ 
            width: 100%;
        }
    }
    
    &::after,
    &::before{
        content: '';
        display: block;
        position: absolute;
        background-color: var(--clr01);
    }
    &:hover::after,
    &.active::after{
        /* width: 9px; */
    }
    &:hover::before,
    &.active::before{
        /* width: calc(100% - 9px); */
    }
    &::after{
        rotate: 45deg;
        right: 0;
        bottom: 0;
        height: 1px;
        width: 9px;
        transform-origin: right bottom;
    }
    &::before{ 
        right: 0;
        bottom: 0;
        height: 1px;
        width: calc(100% - 9px);
    }
}