#banner {
    background-color: #F7F3FB;
    height: 200px;
    text-align: center;
}
.gift_banner {
    display: inline-block;
    text-align: left;
    width: 100%;
    height: 200px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;

    background-repeat: no-repeat;
    background-size: auto 200px;
    background-position: right;

    position: relative;
}
.gift_banner > p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.gift_banner > p > strong {
    font-weight: 700;
}
.gift_banner > p > strong.emphasis {
    text-emphasis-style : dot;
}
.gift_banner_daily {
    background-image: url('../img/gift_banner_daily.png');
    font-size: 25px;
}
.gift_banner_newyear {
    background-image: url('../img/gift_banner_newyear.png');
}
.gift_banner_parents {
    background-image: url('../img/gift_banner_parents.png');
    background-position: right bottom;
    text-align: center;
    font-size: 25px;
}
.gift_banner_children {
    background-image: url('../img/gift_banner_children.png');
    background-position: right bottom;
    text-align: center;
    font-size: 25px;
}
.gift_banner_chuseok {
    background-image: url('../img/gift_banner_chuseok.png');
    background-position: right bottom;
    text-align: center;
}
.gift_banner_christmas {
    background-image: url('../img/gift_banner_christmas.png');
    background-position: right bottom;
    text-align: center;
}
#category {
    margin-top: 60px;
}
#category > ul {
    display: flex;

    gap: 10px;
}
#category > ul > li {
    flex: 1;
    height: 50px;
    line-height: 50px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 12px;
    color: #999;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}
#category > ul > li.active {
    border: none;
    background-color: #8C35FA;
    color: #fff;
}

.gift_wrap {
    margin-top: 80px;
}
.gift_header {
    text-align: center;
}
.gift_header > h3 {
    font-size: 21px;
}
.gift_header > p {
    font-size: 16px;
    margin-top: 16px;
    color: #555;
}
.gift_content {
    margin-top: 63px;
}
.list_sorting {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.list_sorting > span > strong {
    color: #8C35FA;
}
.list_sorting > select {
    border: none;
    font-family: "pretendard", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
}
.gift_list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(max-content, 1fr));
    gap: 52px 20px;
}
.gift_item {
    width: 200px;
}
.img_wrap {
    width: 200px;
    height: 200px;
    position: relative;

    border: 1px solid #ddd;
    border-radius: 15px;
}
.img_wrap > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 200px;
    max-height: 200px;
}
.gift_name_wrap {
    margin-top: 20px;
}
.gift_name > span {
    font-size: 15px;
    color: #777;
}
.gift_name > h5 {
    font-size: 18px;
    line-height: 1.4;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.gift_price {
    margin-top: 12px;
}
.price {
    font-size: 20px;
}
.gift_price_disc {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.discountedPrice {
    color: #8C35FA;
    font-size: 20px;
}
.originalPrice {
    color: #aaa;
    font-size: 16px;
    text-decoration: line-through;
}

.gift_feature {
    margin: 150px 0;
    padding: 60px 0;
    background-color: #f7f7f7;
}
.gift_feature > div > h3 {
    font-size: 21px;
    text-align: center;
}
.gift_feature > div > ul {
    margin-top: 70px;
    display: flex;
    justify-content: space-around;
}
.feature > span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}
.feature::before {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto 30px auto;
    border-radius: 18px;

    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
}
.feature:nth-child(1)::before {
    background-color: #3BC99A;
}
.feature:nth-child(2)::before {
    background-color: #5A9BFF;
}
.feature:nth-child(3)::before {
    background-color: #A846D9;
}

#gift_30M .feature:nth-child(1)::before {background-image: url(../img/feature_bg_1.png);}
#gift_30M .feature:nth-child(2)::before {background-image: url(../img/feature_bg_2.png);}
#gift_30M .feature:nth-child(3)::before {background-image: url(../img/feature_bg_3.png);}

#gift_50M .feature:nth-child(1)::before {background-image: url(../img/feature_bg_4.png);}
#gift_50M .feature:nth-child(2)::before {background-image: url(../img/feature_bg_2.png);}
#gift_50M .feature:nth-child(3)::before {background-image: url(../img/feature_bg_5.png);}

#gift_70M .feature:nth-child(1)::before {background-image: url(../img/feature_bg_6.png);}
#gift_70M .feature:nth-child(2)::before {background-image: url(../img/feature_bg_7.png);}
#gift_70M .feature:nth-child(3)::before {background-image: url(../img/feature_bg_5.png);}

#gift_100M .feature:nth-child(1)::before {background-image: url(../img/feature_bg_8.png);}
#gift_100M .feature:nth-child(2)::before {background-image: url(../img/feature_bg_9.png);}
#gift_100M .feature:nth-child(3)::before {background-image: url(../img/feature_bg_10.png);}

#gift_150M .feature:nth-child(1)::before {background-image: url(../img/feature_bg_11.png);}
#gift_150M .feature:nth-child(2)::before {background-image: url(../img/feature_bg_12.png);}
#gift_150M .feature:nth-child(3)::before {background-image: url(../img/feature_bg_13.png);}

.gift_floating_button {
    display: block;
    line-height: 70px;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;

    background-color: #8C35FA;
    border-radius: 20px;

    color: #fff;
    text-align: center;
    text-decoration: none;
}
.gift_button > span::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../img/chevron-right.png);
    background-repeat: no-repeat;
    background-size: 24px;
    position: absolute;
    top: 50%;
    right: 330px;
    transform: translateY(-50%);
}


.apply_header {
    margin-top: 60px;
}
.apply_header > h2 {
    font-size: 30px;
    font-weight: 700;
}
.apply_header > p {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #999;
}
.apply_detail {
    margin-top: 60px;
}
.depth {
    display: flex;
    border-bottom: 2px solid #ddd;
}
.depth > li {
    font-size: 18px;
    font-weight: 600;
    color: #999;
    padding: 15px 30px 15px 34px;
    margin-bottom: -2px;

    position: relative;
}
.depth > li:not(:first-child) {
    padding-left: 54px;
}
.depth > li.active {
    color: #5B1EA8;
    border-bottom: 2px solid #5B1EA8;
}
.num_icon {
    display: block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 8px;
    background-color: #ddd;

    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}
.depth > li:not(:first-child) > span.num_icon {
    left: 20px;
}
.depth > li.active > span.num_icon {
    background-color: #5B1EA8;
}
.depth > li:not(:last-child)::after {
    content: "";
    width: 11px;
    height: 19px;

    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);

    background-image: url(../img/chevron-right_grey.png);
    background-repeat: no-repeat;
}
.depth > li.active::after {
    background-image: url(../img/chevron-right_purple.png);
}

.content_header {
    margin-top: 40px;
}
.content_header > h3 {
    font-size: 21px;
    font-weight: 700;
}
.content_header > p {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #999;
}
.content_content {
    margin-top: 40px;
}
input[type='radio'] {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    outline: none;
    margin: -3px 5px;
    background-color: #d9d9d9;
}
input[type='radio']:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin: 2px auto;
    border-radius: 50%;
    background: #b6b6b6;
}

input[type='radio']:checked:before {
    background: #8C35FA;
}

.budget_category {
    margin-top: 15px;
    display: flex;
    gap: 8px;
}
.budget_category > li {
    border: 1px solid #ddd;
    border-radius: 10px;
    line-height: 48px;
    padding: 0 30px;
    text-align: center;
    color: #555;
    font-weight: 700;

    cursor: pointer;
}
.budget_category > li.active {
    background-color: #8C35FA;
    color: #fff;
}
#budget_placeholder {
    margin-top: 15px;
    position: relative;
    width: 550px;
}
#budget_placeholder > input {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    color: #999;

    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
#budget_placeholder > input.disabled {
    border: none;
    background-color: #ddd;
}
#budget_placeholder > span {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #555;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}
.guide_text {
    display: block;
    margin-top: 13px;
    font-size: 13px;
    font-weight: 400;
    color: #8C35FA;
}
.button_white {
    margin-top: 25px;
    width: 200px;
    line-height: 50px;
    padding: 0 45px 0 35px;
    color: #8C35FA;
    border: 1px solid #8C35FA;
    border-radius: 15px;

    background-image: url(../img/chevron-right_purple.png);
    background-repeat: no-repeat;
    background-size: 5px;
    background-position: 165px;
}

.gift_button_wrap {
    margin: 20px 0;
}
.gift_button_wrap > button, .gift_button_wrap > a {
    width: 255px;
    height: 50px;
    line-height: 50px;
    border: none;
    border-radius: 15px;
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;

    cursor: pointer;
}
.gift_button_wrap::after {
    content: "";
    display: block;
    clear: both;
}
.prev_button {
    float: left;
    background-color: #eee;
    color: #555;
}
.next_button {
    float: right;
    background-color: #8C35FA;

    color: #fff;
}

.content2 {
    margin-top: 60px;
}
.day_category {
    margin-top: 15px;
    display: flex;
    gap: 8px;
}
.radio_button input[type="radio"] {
    display: none;
}
.radio_label {
    display: block;
    border: 1px solid #ddd;
    border-radius: 10px;
    line-height: 48px;
    padding: 0 30px;
    text-align: center;
    color: #555;
    font-weight: 700;

    cursor: pointer;
}
.radio_button input[type="radio"]:checked + .radio_label {
    background-color: #8C35FA;
    color: #fff;
}
.text_input {
    margin-top: 10px;
    width: 800px;
    height: 50px;
    padding-left: 15px;
    box-sizing: border-box;
    line-height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
}
.textarea {
    margin-top: 10px;
    width: 800px;
    height: 200px;
    line-height: 1.4;
    padding: 15px 0 0 15px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    color: #999;

}
.detail_text {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
}
.detail_text > strong {
    color: #ff0000;
}
.input_wrap {
    margin-top: 10px;
}
.message_send_time {
    line-height: 32px;
    padding: 0 40px;
    border-radius: 6px;
    border: none;
    background-color: #F5F6FA;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-align: center;
    display: inline-block;
}
select {
    appearance: none;
    -webkit-appearance: none;
    padding: 0 10px;
}
#excel_table_wrap {
    margin-top: 40px;
    width: 870px;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
}
#excel_table_wrap > table {
    width: 100%;
    border-collapse: collapse;
    border-style: none;
    letter-spacing: 0;
    text-align: center;

}
#excel_table_wrap > table > thead {
    background-color: #f7f7f7;
    font-size: 14px;
    font-weight: 600;
}
#excel_table_wrap > table > tbody {
    font-size: 15px;
    font-weight: 400;
}
#excel_table_wrap tr {
    line-height: 50px;
    border-bottom: 1px solid #f7f7f7;
}
.th_delete, .td_delete {
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.th_delete > span, .td_delete > span {
    display: block;
    width: 0;
    height: 0;
    clip: rect(0,0,0,0);
    overflow: hidden;
}
.td_delete {
    width: 22px;
    height: 22px;
    background-image: url(../img/icon_delete.png);
    background-size: 18px;
    background-repeat: no-repeat;
}
.add_name, .add_number {
    height: 30px;
    line-height: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.add_name {
    width: 100px;
}
.add_number {
    width: 230px;
}
.table_input {
    width: 63px;
    height: 30px;
    line-height: 30px;
    background-color: #5B1EA8;
    border-radius: 8px;
    color: #fff;
    font-family: "Pretendard", sans-serif;
    font-size: 13px;
    font-weight: 700;
}
#row_add {
    display: block;
    margin: 20px 0 0;
    width: 870px;
    height: 40px;
    line-height: 40px;
    border: none;
    border-radius: 8px;
    background-color: #f7f3fb;
    background-image: url(../img/icon_plus.png);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: 350px;

    font-family: "Pretendard", sans-serif;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
}
.excel_upload_box {
    margin-top: 60px;
}
.excel_upload_box > label {
    position: relative;
}
.excel_upload_box > label > span {
    display: block;
    padding-left: 25px;
}
.excel_upload_box > div.upload_box {
    width: 870px;
}
.excel_upload_box > div.upload_box > div {
    width: 83%;
}
.sampleDownload {
    display: inline;
    text-align: left;
    padding-left: 35px;
    background-image: url('../img/download.png');
    background-repeat: no-repeat;
    background-position: 10px;
    background-size: 20px;
    color: var(--primary);
}
.final_amount {
    margin-top: 70px;
    font-weight: 400;
}
.amount_box {
    padding: 24px;
    border: 1px solid #b6b6b6;
    border-radius: 12px;
}
.amount_item {
    display: flex;
    justify-content: space-between;
}
.amount_item:first-child {
    font-size: 24px;
    font-weight: 400;
}
.amount_item:not(:first-child) {
    margin-top: 13px;
    font-size: 14px;
    font-weight: 400;
}
.term_box {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.term_wrap {
    display: flex;
    justify-content: space-between;
}
.term_wrap > label {
    position: relative;
}
.term_wrap > button {
    font-weight: 500;
    margin: 0 10px 0;
}
.term_ment {
    display: block;
    padding-left: 25px;
}
.term_ment > strong {
    color: #FF0000;
}