/* 반품/교환 요청 모달 */
.profile_order_modal,
.profile_order_modal2,
.profile_order_modal3 {
    position: fixed;
    background-color: #FFF9F9;
    border-radius: 15px;
    border: 1px solid #777777;
    width: 600px;
    height: 530px;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.32);
    padding: 20px;
    display: none;
}

.modal_title {
    display: flex;
    align-items: center;
    
}

.modal_title li:nth-child(1) {
    width: 8px;
    height: 25px;
    border-radius: 5px;
    background-color: #03426d;
    margin-right: 10px;
}
.modal_title li:nth-child(2) {
    font-size: 24px;
    font-weight: 700;
}

.modal_select {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.modal_select li {
    width: 50%;
    height: 35px;
    border: 1px solid #03426d;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #ffffff;
}
.modal_select li:nth-child(1) {
    margin-right: 5px;
    background-color: #03426d;
    color: #ffffff;
    
}
.modal_select li:nth-child(2) {
    margin-left: 5px;
}

.modal_line {
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
    margin-left: -20px;
    padding-right: 40px;
    margin-bottom: 10px;
}

.modal_content {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.modal_content div img {
    max-width: 100px;
    border-radius: 5px;
}
.modal_content div:nth-child(1) {
    width: 100px;
    height: 100px;
    margin-left: 10px;
    border-radius: 5px;
    border: 1px solid #777777;
}
.modal_content div:nth-child(2) {
    margin-left: 10px;
}
.modal_content div:nth-child(2) ul {
    margin-top: 10px;
}
.modal_content div:nth-child(2) ul li:nth-child(1) {
    font-size: 18px;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 700;
}
.modal_content div:nth-child(2) ul li:nth-child(2) {
    font-size: 16px;
    text-align: left;
    margin-bottom: 10px;
    display: flex;
}
.modal_content div:nth-child(2) ul li:nth-child(3) {
    font-size: 16px;
    text-align: left;
}

.modal_reason {
    margin-bottom: 10px;
}
.modal_reason li select {
    width: 100%;
    height: 35px;
    font-size: 18px;
    padding-left: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.modal_reason li textarea {
    width: 98%;
    height: 100px;
    font-size: 18px;
    margin-bottom: 10px;
    border-radius: 5px;
    resize: none;
    padding-left: 10px;
}

.modal_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal_btn li {
    width: 130px;
    height: 40px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ffffff;
}
.modal_btn li:nth-child(1) {
    background-color: #03426d;
    color: #ffffff;
    margin-right: 5px;
}
.modal_btn li:nth-child(2) {
    border: 1px solid #03426d;
    margin-left: 5px;
}

.modal_reason_selecttext {
    width: 98%;
    height: 35px;
    font-size: 18px;
    padding-left: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #777777;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}
.modal_reason_textarea {
    width: 98%;
    height: 100px;
    font-size: 18px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #777777;
    background-color: #ffffff;
    display: flex;
    align-items: flex-start;
    overflow-y: auto;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow-x: hidden;
    white-space: normal;
    word-break: break-all;
}

/* 통합 모달 */
.integration_modal,
.Withdrawal_modal {
    position: fixed;
    background-color: #FFF9F9;
    border-radius: 15px;
    border: 1px solid #777777;
    width: 400px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.32);
    padding: 20px;
    display: none;
    z-index: 999;
}
.integration_modal ul,
.Withdrawal_modal ul {
    width: 100%;
}
.integration_modal ul:nth-child(2),
.Withdrawal_modal ul:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.integration_modal ul:nth-child(3),
.Withdrawal_modal ul:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: center;
}
.integration_modal ul:nth-child(3) li,
.Withdrawal_modal ul:nth-child(3) li {
    width: 130px;
    height: 40px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
}
.integration_modal ul:nth-child(3) li:nth-child(1),
.Withdrawal_modal ul:nth-child(3) li:nth-child(1) {
    background-color: #03426d;
    color: #ffffff;
    margin-right: 5px;
}
.integration_modal ul:nth-child(3) li:nth-child(2),
.Withdrawal_modal ul:nth-child(3) li:nth-child(2) {
    border: 1px solid #03426d;
    margin-left: 5px;
}


/* 공지사항 */
.Notice {
    position: fixed;
    width: 800px;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0px 9px 18px rgba(0,0,0,0.5);
    z-index: 990;
    padding: 20px;
    border:1px solid #DFDFDF;
}
.Notice_title {
    font-size:36px;
    font-weight: 700;
    color: #00497B;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 20px;
}
.Notice_subtitle {
    font-size:20px;
}
.Notice_content {
    overflow: hidden;
    overflow-x: hidden;
    height: 600px;
    border-radius: 15px;
}
.Notice_content::-webkit-scrollbar {
    width: 5px;
}
.Notice_content::-webkit-scrollbar-thumb {
    background-color: #DFDFDF;
    border-radius: 10px;
}
.Notice_content::-webkit-scrollbar-track {
    background-color: transparent;
}
.Notice_content img {
    max-height: 600px;
}
.Notice_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.Notice_btn div {
    margin-right: 10px;
    margin-left: 10px;
    background-color: #00497B;
    border-radius: 15px;
    padding:10px 20px 10px 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}



.dots_custom {
    display: flex;
    justify-content: center;
    margin: 0;
    margin-top: 20px;
    cursor: pointer;
}
.dots_custom li {
    list-style: none;
    cursor: pointer;
    display: inline-block;
    margin: 0 6px;
    padding: 0;
}
.dots_custom li button {
    border: none;
    background: #d1d1d1;
    color: transparent;
    cursor: pointer;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    padding: 0;
}

.dots_custom li.slick-active button {
  background-color: #00497B;
}
.slick-slide {
    float: left;
    /* height: 600px; */
    min-height: 1px;
}

@media (max-width: 1024px) {
    .Notice {
        width: 600px;
        padding: 10px;
    }
    .Notice_title {
        font-size:30px;
    }
    .Notice_content img {
        max-height: 500px;
    }
}
@media (max-width: 768px) {
    .Notice {
        width: 500px;
        padding: 10px;
    }
    .Notice_title {
        font-size:30px;
    }
    .Notice_content img {
        max-height: 500px;
    }
}
@media (max-width: 425px) {
    .Notice {
        width: 300px;
        padding: 10px;
    }
    .Notice_title {
        font-size:30px;
    }
    .Notice_content img {
        max-height: 300px;
    }
}