.top-box {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.top-box .fa-ellipsis {
    width: 50px;
    height: 50px;
    padding: 15px;
    margin-top: -6px;
    margin-left: -12px;
    transition: all 0.2s ease-in-out;
    animation-duration: 0.2s;
    animation-name: rotate;
    color: #026738;
}

.top-box .fa-close {
    padding: 6px;
    transition: all 0.2s ease-in-out;
    animation-duration: 0.2s;
    animation-name: rotate;
    color: #026738;
}

.top-box .column {
    display: flex;
    flex-direction: column;
}

.top-box .btn {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 0;
    cursor: pointer;
    /*background-color: rgba(245, 247, 255, 1);*/
    background-color: #fff;
    color: white;
    transition: all 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.top-box .btn:hover {
    opacity: 0.8;
}

.top-box .mb-2 {
    margin-bottom: 10px;
}

.top-box .blue {
    background-color: #0E9CF5;
}

.top-box .green {
    background-color: #47C740;
}

.top-box .fa {
    font-size: 20px;
}

.top-box .fab {
    font-size: 26px;
}

.top-box .menu {
    position: relative;
    z-index: 2;
}

.top-box #buttons {
    position: absolute;
    bottom: 50px;
    right: 0;
    transition: all 0.2s ease-in-out;
    animation-duration: 0.2s;
    animation-name: slide;
    z-index: 1;
}

@keyframes slide {
    from {
        bottom: 0px;
    }
    to {
        bottom: 50px;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}
