.ynp-bottom-menu-animate {
    transform: translateY(100%);
    opacity: 0;
    animation: ynpBottomMenuSlideUp 0.5s cubic-bezier(.42, .01, .56, 1.34) forwards;
}

@keyframes ynpBottomMenuSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ynp-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 96px;
    background: #020202;
    border-top: 1px solid #1E1E1E;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 10000;
}

.ynp-bottom-menu-btn {
    background: none;
    border: none;
    outline: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #DCAA3C;
    font-size: 36px;
    padding: 0;
    cursor: pointer;
}

.ynp-bottom-menu-btn span {
    font-size: 16px;
    margin-top: 2px;
}

.ynp-bottom-menu-btn:active {
    color: #fae3b3;
}