.edit-panel__wrapper {
    position: fixed;
    right: 30px;
    top: auto;
    left: auto;
    bottom: 30px;
    display: flex;
    overflow: hidden;
    width: 50px;
    height: 50px;
    justify-content: flex-start;
    align-items: center;
    border-radius: 25px;
    background-color: #1374f2;
    transition: all 200ms ease;
    z-index: 10;
}

.edit-panel__wrapper--top {
    bottom: 80px;
}

.edit-panel__icon {
    position: absolute;
    padding-bottom: 0;
    font-style: normal;
    display: flex;
    width: 50px;
    height: 50px;
    margin-left: 0;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.edit-panel__icon::before,
.edit-panel__icon::after {
    font-family: 'Font Awesome 6 Pro', sans-serif;
}

.edit-panel__txt {
    height: 20px;
    margin-left: 50px;
    opacity: 0;
    transition: all 200ms ease;
    color: #fff;
    font-size: 16px;
    line-height: 21px;
    font-weight: 500;
    white-space: nowrap;
}

.edit-panel__wrapper:hover,
.container .edit-panel__wrapper:hover {
    width: 170px;
    text-decoration: none;
}

.edit-panel__wrapper:hover .edit-panel__txt {
    opacity: 1;
}