@import "./colors.css";
.application_time{
    padding: 0.1875rem;
    background-color: var(--color-light-pink);
    display: flex;
    align-items: center;
    border-radius: 5px;
}
.application_title{
    margin-right: 0.3125rem;
    color: var(--color-red);
    font-size: 0.825rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.title_section__h2 {
    margin-top: 0;
    color: var(--color-red);
    font-size: 1.4375rem;
    font-weight: 700;
    text-align: center;
}
.title_section__h2::after {
    content: "";
    display: block;
    width: 1.875rem;
    height: 0.0625rem;
    background-color: var(--color-red);
    margin: 12px auto 0;
}

.noti_number {
    position: absolute;
    width: 1.375rem;
    height: 1.375rem;
    background-color: var(--color-red);
    color: var(--color-light-pink);
    border-radius: 62.4375rem;
    border: 0.0625rem solid var(--color-light-pink);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 700;
    right: -0.3125rem;
    top: -0.625rem;
}

.icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}
.icon.email::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    -webkit-mask: url(../../icon/email.svg) no-repeat center / contain;
    mask: url(../../icon/email.svg) no-repeat center / contain;
}
.icon.muti-chat::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    -webkit-mask: url(../../icon/muti-chat.svg) no-repeat center / contain;
    mask: url(../../icon/muti-chat.svg) no-repeat center / contain;
}

.icon.user::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    -webkit-mask: url(../../icon/user.svg) no-repeat center / contain;
    mask: url(../../icon/user.svg) no-repeat center / contain;
}
.icon.pen::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    -webkit-mask: url(../../icon/pen.svg) no-repeat center / contain;
    mask: url(../../icon/pen.svg) no-repeat center / contain;
}
.icon.calculator::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    -webkit-mask: url(../../icon/calculator.svg) no-repeat center / contain;
    mask: url(../../icon/calculator.svg) no-repeat center / contain;
}
.icon.setting::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    -webkit-mask: url(../../icon/setting_red.svg) no-repeat center / contain;
    mask: url(../../icon/setting_red.svg) no-repeat center / contain;
}
.title.menu {
    font-size: 0.825rem;
    font-weight: 700;
    margin-top: 0.625rem;
}

.logout_anchor {
    margin-top: 0.8125rem;
    font-size: 0.75rem;
    display: inline-block;
    color: var(--color-red);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}
.logout_anchor::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    margin-top: 1px;
}

.tab {
    flex: 1;
    border: none;
    cursor: pointer;
    font-size: 0.625rem;
    font-weight: 500;
    padding: 0.625rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}
.tab {
    background: var(--color-red);
    color: #fff;
    height: 2rem;
    transition: background-color 0.25s ease, color 0.25s ease, height 0.25s ease,
        margin 0.25s ease;
}

.tab_center {
    width: 0.25rem;
    border-bottom: 0.1rem solid var(--color-red);
}

.tab-left {
    border-top: 0.1rem solid var(--color-red);
    border-right: 0.1rem solid var(--color-red);
    border-radius: 0 0.75rem 0 0;
}
.tab-middle {
    border-top: 0.1rem solid var(--color-red);
    border-right: 0.1rem solid var(--color-red);
    border-left: 0.1rem solid var(--color-red);
    border-radius: 0.75rem 0.75rem 0 0;
}

.tab-right {
    border-top: 0.1rem solid var(--color-red);
    border-left: 0.1rem solid var(--color-red);
    border-radius: 0.75rem 0 0 0;
}

.tab.active {
    background: #fff;
    color: var(--color-red);
    height: 1.75rem;
    z-index: 2;
    margin-top: 0.25rem;
}

.tab_content {
    display: flex;
    gap: 1.25rem;
    position: relative;
    padding-left: 1.25rem;
}
.tab_content.send,
.tab_content.heart,
.tab_content.calendar {
    font-size: 0.75rem;
}
.tab_content.heart::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 0.875rem;
    height: 0.875rem;
    background-color: currentColor;
    -webkit-mask: url(../../icon/heart_small.svg) no-repeat center / contain;
    mask: url(../../icon/heart_small.svg) no-repeat center / contain;
}
.tab_content.send::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 0.875rem;
    height: 0.875rem;
    background-color: currentColor;
    -webkit-mask: url(../../icon/send_transparent.svg) no-repeat center /
        contain;
    mask: url(../../icon/send_transparent.svg) no-repeat center / contain;
}
.tab_content.calendar::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 0.875rem;
    height: 0.875rem;
    background-color: currentColor;
    -webkit-mask: url(../../icon/calendar_transparent.svg) no-repeat center /
        contain;
    mask: url(../../icon/calendar_transparent.svg) no-repeat center / contain;
}

.item {
    width: 100%;
    padding: 0 0.5rem;
}

.item_main {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0.75rem;
    position: relative;
}
.item:not(:last-of-type) .item_main::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        #fab4ce,
        #fab4ce 2px,
        transparent 2px,
        transparent 7px
    );
}

.item:last-child .item_main {
    border-bottom: none;
}

.item:has(.form-check-input:checked) {
    background: var(--color-light-pink);
}

.item_image {
    position: relative;
    flex: 0 0 auto;
}
.item_image img {
    height: 7.625rem;
    object-fit: cover;
    border-radius: 0.375rem;
    width: 160px !important;
}

.form-check-input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1rem;
    height: 1rem;
    background-color: #fff;
    border: 1px solid var(--color-red);
    border-radius: 0.25rem;
    cursor: pointer;
}

.form-check-input:checked::before {
    content: "";
    position: absolute;
    width: 0.9375rem;
    height: 0.4375rem;
    top: 30%;
    left: 61%;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
    border-top: 2px solid var(--color-red);
    border-right: 2px solid var(--color-red);
}

.item_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.item_button {
    display: flex;
    gap: 0.4375rem;
    align-items: end;
    padding-bottom: 0.25rem;
}
.item_button_smart {
    display: flex;
    gap: 0.4375rem;
    align-items: end;
}
.item_detail{
    margin-bottom: 0.25rem;
}
.item_anchor {
    font-size: 0.75rem;
    text-decoration: none;
    width: 100%;
    display: block;
}
.delete_button {
    padding: 0.3125rem 1rem;
    height: 2rem;
}
.delete_button img {
    width: 1rem;
}
.item_content {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    justify-content: flex-start;
    line-height: normal;
}
.item_title {
    color: var(--color-red);
    font-size: 1rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.item_paragraph {
    color: var(--color-black);
    font-size: 0.825rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sectionTitleWrap {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 32rem;
}
.sectionTitle {
    color: var(--color-red);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0 1.25rem;
    text-align: center;
    background: var(--color-light-pink);
    display: block;
    margin: 0 auto;
    width: fit-content;
    position: relative;
    z-index: 2;
}

.sectionTitleLine {
    border-bottom: 1px solid var(--color-red);
    transform: translateY(-9px);
}

.store_count {
    color: var(--color-red);
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
}
.store_list {
    margin-top: 0.625rem;
    padding: 0.625rem 0;
    position: relative;
}

.store_list::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        #fab4ce,
        #fab4ce 2px,
        transparent 2px,
        transparent 7px
    );
}

.store_list::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        #fab4ce,
        #fab4ce 2px,
        transparent 2px,
        transparent 7px
    );
}

.mypage_section__itemTitle {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-left: 0.3125rem;
    color: var(--color-black);
    font-size: 0.875rem;
    font-weight: 500;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
    }
}

.mypage_section__select {
    width: 5.625rem;
}
#password_eye,
#password_eye_slash {
    width: 3.125rem;
    position: absolute;
    text-align: center;
    top: 29%;
    right: 0;
    color: #eb92b9;
}

.mypage_section__itemData {
    position: relative;
    display: flex;
    gap: 0.75rem;
    margin-top: 0.3125rem;
    align-items: center;
}

.mypage_section__itemData.select {
    width: 55%;
}
.mypage_section__itemData.select .select-wrap {
    width: 100%;
}
.select-wrap {
    position: relative;
}

.is_time .mypage_section__select {
    font-size: 0.875rem;
    padding: 0.5rem 0.625rem;
}
.select-wrap.is_time::after {
    top: 52% !important;
}
.select-wrap {
    position: relative;
    width: 100%;
    max-width: 4.5rem;
}
.mypage_section__select {
    background: white;
    border: 1px solid #fdadcc;
    height: unset;
    color: #4d4d4d;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1rem;
    border-radius: 0.25rem;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

.mypage_section__require {
    background-color: var(--color-red);
    color: white;
    font-size: 0.5rem;
    padding: 0 0.4375rem;
    border-radius: 0.375rem;
    margin-left: 0;
    @media screen and (max-width: 1023px) {
        font-size: 0.375rem;
    }
}
.mypage_section__itemData.itemData__select span {
    font-weight: 500;
    font-size: 1rem;
}
.itemData__select {
    gap: 0.3125rem;
}
.mypage_section__date {
    background-color: var(--color-light-pink);
    border: 1.5px solid transparent;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    outline: none;
    width: 100%;
    height: auto;
    line-height: normal;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}
.mypage_section__date::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.mypage_section__dateWrapper::after {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    pointer-events: none;
    background: url(../../icon/calendar_select.svg) no-repeat center / 1.25rem;
}

.mypage_section__item:nth-child(n + 2) {
    margin-top: 1.125rem;
}
.tab-wrapper {
    border-bottom: 1px solid var(--color-red);
    box-shadow: 0px 3px 0px var(--color-pink-shadow);
}

.form_section__input {
    background-color: var(--color-light-pink);
    border: 1.5px solid transparent;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-black);
    outline: none;
    width: 100%;
    height: auto;
    line-height: normal;
    @media screen and (max-width: 1023px) {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

.form_section__input::placeholder {
    color: #fab4ce;
}

.form_section__input:focus {
    border: 1px solid var(--color-red);
}

.is-hidden {
    display: none !important;
}

.mypage_section__paragraph {
    font-size: 0.825rem;
    color: var(--color-black);
    font-weight: 500;
    line-height: normal;
}

.store-header {
    cursor: pointer;
}

.store-content {
    width: 100%;
}

.store-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
}

.store_name {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: normal;
    color: var(--color-black);
}

.is-hidden {
    display: none;
}
.mypage_section__box {
    border-radius: 0;
    box-shadow: none;
    margin-top: 0 !important;
}
.option-item {
    font-size: 1rem !important;
}
@media screen and (max-width: 1023px) {
    .menu_inner {
        width: calc(100% - 70px);
    }
    .form-check-input {
        width: 0.875rem;
        height: 0.875rem;
    }
    .form-check-input:checked::before {
        width: 0.875rem;
        height: 0.4375rem;
        top: 25%;
        left: 67%;
    }

    .mypage_section__select {
        width: 4.0625rem;
    }
    .mypage_section__date {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    .logout_anchor {
        font-size: 0.4375rem;
    }
    .mypage_section__dateWrapper::after {
        background-size: 0.75rem;
    }
    .form_section__input {
        padding: 0.4rem;
        font-size: 0.75rem;
    }
    .title.menu {
        font-size: 0.625rem;
    }
    .item_image img {
        height: 5.625rem;
        width: 120px !important;
    }
    .item_paragraph {
        font-size: 0.625rem;
    }
    .application_title{
        font-size: 0.625rem;
    }
    .item_main {
        gap: 0.5rem;
    }
    .delete_button {
        padding: 0.3125rem 0.75rem;
        height: 1.5625rem;
    }
    .tab {
        height: 1.5rem;
    }
    .tab.active {
        height: 1.4rem;
        margin-top: 0.125rem;
    }
    .tab_center {
        width: 0.1875rem;
    }
    .is_time .mypage_section__select {
        padding: 0.25rem 0.625rem;
    }
    .store_count {
        font-size: 0.825rem;
    }
    .mypage_section__paragraph {
        font-size: 0.75rem;
    }
    .sectionTitle {
        font-size: 1rem;
    }
    .tab_content.calendar,
    .tab_content.send,
    .tab_content.heart {
        font-size: 0.625rem;
    }
    .tab_content.heart::before {
        left: 0.3125rem;
        width: 0.75rem;
        height: 0.75rem;
    }
    .tab_content.send::before {
        left: 0.3125rem;
        width: 0.75rem;
        height: 0.75rem;
    }
    .tab_content.calendar::before {
        left: 0.3125rem;
        width: 0.75rem;
        height: 0.75rem;
    }
    .icon {
        width: 2rem;
        height: 2rem;
    }
    .store_name {
        font-size: 0.6875rem;
    }
    .mypage_section__itemData.itemData__select span {
        font-size: 0.75rem;
    }
    .option-item {
        font-size: 0.75rem !important;
    }
    .select-wrap {
        max-width: 4rem;
    }
    .collectentry_section__button {
        height: 2rem;
    }
}
