.btn-radius(@width: 100%, @height: 100%, @color: extract(@CLR_0, 9), @bg: extract(@CLR_1, 8), @radius: 20px) { 
    .no-select;
    width: @width;
    height: @height;
    align-items: center;
    justify-content: center; 
    border-radius: @radius; 
    color: @color;
    background-color: @bg;
    cursor: pointer;
}
.btn-box(@width: 100%, @height: 100%, @color: extract(@CLR_0, 9), @bg: extract(@CLR_1, 8)) {
    .no-select;
    width: @width;
    height: @height;
    align-items: center;
    justify-content: center;  
    color: @color;
    background-color: @bg;
    cursor: pointer;
}