@charset "UTF-8";
/* CSS Document */
*,
*::before,
*::after { box-sizing: border-box; }

/*================================================*/
/*    Sidebar*/
/*================================================*/

.sidebar-container {
    padding: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 250px;
    min-width: 250px;
    position: relative;
    overflow: hidden;
    @media only screen and (max-width: 800px)  {
        display: none;
    }
}

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

.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: 1px solid #d6d6d6;
    border-radius: 10px;
    background: var(--theme-background);
}

.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;
}

.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;
}

.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;
}

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

.name-frame {
    color: #5d5c5c;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: 13pt;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.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;
}

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

.my-profile-text {
    color: var(--theme-title-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;
}

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

.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;
}

.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;
}

.profile-button-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
}

.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;
}

.side-button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}
.side-button-frame {
    border-radius: 10px;
    border-style: solid;
    border-color: #647295;
    border-width: 1px;
    padding: 15px 0 15px 0;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.side-button-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}
.side-button-text {
    color: #ffffff;
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.side-event-container {
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/*==============================================*/
/* 광고 리스트*/
/*==============================================*/

.support-bd-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 500px;
    background: #FFFFFF;
    background-image: url("/sidebar/images/new_mmz_250.png");
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #d5dce8;
}

.spon-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.spon-item-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

