.anim-fill-top::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transition: all 180ms ease-in-out;
    -webkit-transition: all 180ms ease-in-out;
    z-index: -1;
}

.anim-fill-top:hover::before {
    top: 0;
}

.anim-fill-right::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 100%;
    background-color: #fff;
    transition: all 180ms ease-in-out;
    -webkit-transition: all 180ms ease-in-out;
    z-index: -1;
}

.anim-fill-right:hover::before {
    right: 0;
}

.anim-line-left::before {
    content: '';
    position: absolute;
    left: 100%;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #fff;
    transition: all 180ms ease-in-out;
    -webkit-transition: all 180ms ease-in-out;
    z-index: -1;
}

.anim-line-left:hover::before {
    left: 0;
}

.anim-line-right::before {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background-color: #fff;
    transition: all 180ms ease-in-out;
    -webkit-transition: all 180ms ease-in-out;
    z-index: -1;
}

.anim-line-right:hover::before {
    right: 0;
}

.anim-line-center::before {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.16s ease-in-out;
    -webkit-transition: all 0.16s ease-in-out;
    z-index: -1;
}

.anim-line-center:hover::before {
    right: 0;
    left: 0;
}

.anim-white::before {
    background-color: #fff;
}

.anim-black::before {
    background-color: #000;
}
