.upload-pic {
    padding: 1.6em 1.4em;
    background-color: var(--White);
    border: 2px solid var(--Primary);
    border-radius: 50%;
    position: absolute;
    z-index: 10;
    cursor: pointer;
    width: 55px;
    height: 55px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.24);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 32px;
    right: 12px;
}

.upload-pic .material-symbols-outlined {
    font-size: 30px;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.upload-pic:hover {
    background-color: var(--WhiteDark);
}