#account__menu {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: sticky;
    top: calc(var(--topbar-height) + 35px);
}

#account__menu .account__header {
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 25px;
    border-bottom: 1px solid #00000008;
}

#account__menu .account__header .account__picture {
    width: 100px;
    height: 100px;
    background-color: #c1c1c1;
    background-size: cover !important;
    background-position: center center !important;
    margin-bottom: 15px;
    border-radius: 100%;
    position: relative;
}

#account__menu #picture__load {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000070;
    border-radius: 100%;
    backdrop-filter: blur(2px);

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 2em;
    color: white;

    display: none;
}

#account__menu .picture__actions {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

#account__menu .picture__actions div {
    margin-right: 5px;
}

#account__menu .picture__actions div:last-child {
    margin-right: 0px;
}

#account__menu #change__picture {
/*    position: absolute;*/

    top: 0px;
    right: 0px;

    width: 30px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 25px;
    background: var(--color-primary);
    color: #ffffff;

    cursor: pointer;
    font-size: .9em;
}

#account__menu #reset__picture {
/*    position: absolute;*/

    bottom: 0px;
    right: 0px;

    width: 30px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 25px;
    background: #fc4c65;
    color: #ffffff;

    cursor: pointer;
    font-size: .9em;
}

#account__menu #change__picture input {
    display: none;
}

#account__menu .account__header p.account__name {
    width: 100%;
    font-size: 1.1em;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    overflow: hidden;
    line-height: 1;
}

#account__menu .account__header p.account__mail {
    width: 100%;
    font-size: .9em;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    overflow: hidden;
    line-height: 1;
    color: #343a40c1;
}

/* LINKS */

#account__menu .account__links {
    padding-bottom: 20px;
}

#account__menu .account__links ul {
    padding: 0px !important;
    list-style: none !important;
}

#account__menu .account__links ul hr {
    margin: 10px 0px;
    border-color: #00000010;
}

#account__menu .account__links li {
    margin-top: 5px;
    padding: 7px 25px;
    color: #cacaca;
    font-weight: 300;
    font-size: 1em;
    cursor: pointer;
    transition: all 200ms;
    border-radius: 5px;
    position: relative;
    line-height: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#account__menu .account__links li svg {
    height: 23px;
    max-width: 23px;
    stroke-width: 1px !important;
    margin-right: 10px;
    transition: all 100ms;
    stroke: #dedede;
    fill: none;
}

#account__menu .account__links li p {
    margin-bottom: 0px;
    margin-top: -1px;
    line-height: 1;
}

#account__menu .account__links li.account__active,
#account__menu .account__links li.account__active svg {
    stroke: #343a40;
    color: #000000;
}

#account__menu .account__links li.account__active::before {
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--color-primary);
    border-radius: 0px 15px 15px 0px;
    position: absolute;
}

#account__menu .account__links li:hover,
#account__menu .account__links li:hover svg {
    color: #000000;
    stroke: #343a40;
}

/* RESPONSIVIDADE */
@media (max-width: 755px) {
    #account__menu {
        top: calc(var(--topbar-height) + 15px);
    }
    .content__box {
        padding-top: calc(var(--topbar-height) + 15px);
    }
    .account__header .account__picture {
        min-width: 75px;
    }
    .account__header {
        padding: 15px !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
    }
    .account__header .account__info p {
        text-align: left !important;
        text-overflow: ellipsis !important;
        margin-left: 25px;
    }
}

/* SWALL */

.swal2-popup {
    border-radius: 50px;
    padding: 40px 15px 65px 15px;
}

.swal2-popup button {
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 700;
}

.swal2-popup  button.swal2-confirm {
    background: #fc4c65 !important;
}

.swal2-popup  button.swal2-cancel {
    background: #c1c1c1 !important;
}

.swal2-popup .swal2-title {
    font-size: 1.8em !important;
    font-weight: 700 !important;
    color: #161617 !important;
}

.swal2-popup .swal2-html-container {
    font-size: 1rem;
    font-weight: 400;
}

.swal2-popup .swal2-warning {
    border-color: #ff94a4 !important;
    color: #ffa4b2 !important;
} 

.swal2-popup button:focus-visible {
    box-shadow: none !important;
}

.swal2-backdrop-show {
    backdrop-filter: blur(4px) !important;
    background: rgba(0,0,0,0.5) !important;
}