

/********    Button Draw Border    ********/

button.btn-draw-border,
div.btn-draw-border {
    position: relative;
}

button.btn-draw-border:before,
div.btn-draw-border:before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    border-radius: 5px;
    border: 8px solid transparent;
    box-sizing: border-box;
}

button.btn-draw-border:after,
div.btn-draw-border:after {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    right: 0;
    pointer-events: none;
    border-radius: 5px;
    border: 8px solid transparent;
    box-sizing: border-box;
}

button.btn-draw-border:hover,
div.btn-draw-border:hover {
    border-color: transparent;
    background-color: transparent;
}

button.btn-draw-border:hover:before,
div.btn-draw-border:hover:before {
    height: 100%;
    width: 100%;
    border: 2px solid var(--primary-color);
    border-right: none;
    border-bottom: none;
    transition: height 0.2s linear,
                width 0.2s linear 0.2s
}

button.btn-draw-border:hover:after,
div.btn-draw-border:hover:after {
    height: 100%;
    width: 100%;
    border: 2px solid var(--primary-color);
    border-left: none;
    border-top: none;
    transition: height 0.2s linear,
                width 0.2s linear 0.2s
}

/*************************************************/
