/*================================================*/
/*    mobile profile */
/*================================================*/

.m-profile-container {
    padding: 10px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: var(--theme-mmz);
}

.m-profile-frame {
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.m-profile-avata-frame {
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    justify-content: flex-end;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

.m-my-profile-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.m-name-container {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.m-name-frame {
    color: var(--theme-light-text);
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: 13pt;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-pref-button {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.m-my-profile-frame {
    display: flex;
    flex-direction: row;
    gap: 2px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 180px;
    position: relative;
    overflow: hidden;
}

.m-my-profile-icon-frame {
    flex-shrink: 0;
    width: 18px;
    height: auto;
    position: relative;
    overflow: visible;
}

.m-my-profile-text {
    color: var(--theme-light-text);
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 10pt;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.m-my-profile-spacer {
    align-self: stretch;
    flex-shrink: 0;
    width: 1px;
    position: relative;
    overflow: hidden;
}

.m-profile-button-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.m-profile-button {
    background: var(--theme-light-button-background);
    border-radius: 10px;
    border-style: solid;
    border-color: #96989f;
    border-width: 1px;
    padding: 4px 14px 4px 14px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.m-profile-button-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
    color: var(--theme-light-text);
}

.m-profile-button-text {
    color: var(--theme-light-button-text);
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}