.profileArea {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-left: 10px;
}

.profile {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: none;
    overflow: hidden;
    margin-left: 10px;
}

.profile-image-modal {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile svg {
    width: 70px;
    height: 70px;
}

.profileTextArea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    flex-grow: 1;
    height: 100%;
    margin-left: 10px;
    padding: 0;
}

.profileTextArea p {
    margin: 0;
    padding: 0;
}

.profileName {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.profileName p {
    height: fit-content;
    width: fit-content;
}

.profileEmail {
    font-size: 14px;
    font-weight: 300;
    color: var(--grey4);
}

.logOut {
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 32px;
    border-radius: var(--borderRadiusBtnSmall);
    border: 1px solid var(--grey2);
    margin-left: auto;
    margin-right: 60px;
    margin-top: 16px;
    text-decoration: none;
}

.logOut p {
    margin: 0;
    color: var(--black);
    font-size: 14px;
}

.logOut:hover {
    background-color: var(--btnHover);
}

.profileContentArea {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 166px;
    margin-top: 18px;
}

.profileContent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 380px;
    height: 35px;
    gap: 70px;
    border-bottom: 1px solid var(--grey2);
    margin-left: 80px;
}

.profileContent :first-child {
    font-size: 14px;
    font-weight: 200;
    color: var(--grey4);
}

.profileContent :nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
}

.deleteAccount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    height: fit-content;
    padding-right: 62px;
    box-sizing: border-box;
}

.deleteAccount .withdrawLink p {
    font-size: 12px;
    font-weight: 300;
    color: var(--grey3);
    border-bottom: 1px solid var(--grey3);
}

.deleteAccount a {
    text-decoration: none;
    color: inherit;
}

.loginRequired {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.loginRequired p {
    font-size: 16px;
    color: var(--grey4);
}

.loginRequired .buttonLogin {
    border: 1px solid var(--grey2);
}


.withdrawLink:hover p {
    color: var(--black);
}

.developed-by {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue1);
    text-align: left;
    margin-top: 111px;
    margin-bottom: 5px;
}

.developed-by span {
    font-size: 16px;
    font-weight: 600;
}

.developed-by-link {
    text-decoration: none;
    color: inherit;
}

.developed-by-link:hover .developed-by {
    background: linear-gradient(to right,
            var(--blue1),
            var(--blue2),
            var(--blue3),
            var(--blue4),
            var(--blue1),
            var(--blue2),
            var(--blue3),
            var(--blue4));

    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-scroll 3s linear infinite;
}

@keyframes gradient-scroll {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}