.admin-panel {
    position: fixed;
    left: 0;
    top: 276px;
    z-index: 20;
}
.admin-panel a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-drawer-bg, #fff);
    cursor: pointer;
    border-bottom: 1px solid var(--color-border, #dadce0);
    box-shadow: var(--block-shadows);
}
.admin-panel a:first-child {
    border-radius: 0 var(--input-border-radius, 6px) 0 0;
}
.admin-panel a:last-child {
    border-radius: 0 0 var(--input-border-radius, 6px) 0 ;
    border-bottom: none;
}
.admin-panel a:hover {
    background-color: #f0f4f8;
}
.admin-panel a svg {
    width: 20px;
    height: 20px;
}
.admin-panel .edit {
    display: none;
}