﻿.profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 50px;
}

.auth-guest {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

    .auth-guest a {
        text-decoration: none;
    }

        .auth-guest a:hover {
            text-decoration: underline;
        }

.auth-user {
    display: none;
    flex-direction: column;
    align-items: flex-end;
}

    .auth-user a {
        text-decoration: none;
    }

        .auth-user a:hover {
            text-decoration: underline;
        }

.login,
.register,
.exit {
    cursor: pointer;
    font-size: 20px;
    color: #fab95e;
}

.avatar {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

    .avatar img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .avatar img:first-child {
            z-index: 1;
            width: 80px;
            height: 80px;
        }

        .avatar img:last-child {
            z-index: 2;
            width: 60px;
            height: 60px;
        }

.balance {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: white;
}

.portal_currency {
    width: 50px;
}

.amount {
    font-size: 30px;
    color: #f1ffb6;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 2px 2px 2px rgba(0,0,0,0.4);
}
