.product_list {
    margin-bottom: 140px;
}

.product_list nav ul li {
    width: calc(100% / 3);
}

.toolbar_product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.toolbar_product p {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    line-height: 30px;
    /* 200% */
    letter-spacing: -1.04px;
}

.toolbar-sorter a {
    color: #4A7CAD;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.72px;
    padding: 0 14px;
    border-radius: 100px;
    border: 1px solid var(--point_color, #4A7CAD);
    height: 30px;
    line-height: 30px;
}

.toolbar-sorter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.toolbar-sorter a.active {
    background: #4A7CAD;
    color: #fff;
}

.product_cards_container {
    display: flex;
    flex-wrap: wrap;
}

.product_card_item {
    width: calc(100% / 4);
    padding: 32px 24px;
    /* border: 1px solid #ccc; */
    transition: .3s ease;
}

.product_card_item:hover .product_item_img {
    opacity: 0.6;
    transition: .3s ease;
}

h3.product_item_title {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product_item_option {
    color: #333;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -1px;
    margin-top: 8px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product_item_img {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 243px;
    position: relative;
}

.product_item_img .video_icon {
    position: absolute;
    bottom: 8px;
    left: calc(((100% - 210px) / 2) + 8px);
}

.product_item_img img {
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.product_item_des {
    color: #333;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -1px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-top: 30px;
}

.product_item_price {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.product_item_price span {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product_item_price span.discount_percent {
    font-size: 18px;
}

.product_item_price span.old_price {
    color: #AFAFAF;
    font-size: 16px;
    text-decoration: line-through;
}

/* .product_card_item:nth-child(4n) {
    border-top: 0;
} */

.product_item_wishlist {
    padding-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.product_item_wishlist button {
    color: #AFAFAF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -1px;
    border: 0;
    padding: 0 22px 0 0;
    line-height: 16px;
    background: #fff url('../images/icons/heart.svg') right center no-repeat;
    cursor: pointer;
}

.product_item_wishlist button.active {
    background: #fff url('../images/icons/heart_on.svg') right center no-repeat;
}

@media(max-width: 1023px) {
    .product_card_item {
        width: 50%;
    }
}

@media(max-width: 767px) {
    .product_list {
        margin-bottom: 60px;
    }

    .product_card_item {
        width: 100%;
    }

    .product_card_item:not(:last-child) {
        border-bottom: 0;
    }
}

/* product detail start */
.product_detail {
    margin-bottom: 140px;
}

.product_detail .pd_detail {
    width: 100%;
    height: fit-content;
    margin: 30px 0px 72px;
    display: flex;
    justify-content: space-between;
}

.product_detail nav {
    margin: 30px 0;
}

.product_detail nav li {
    width: calc(100% / 4);
}

.product_detail button {
    background-color: transparent;
    border: none;
}

.product_detail .pd_detail .pd_img {
    max-width: 500px;
    max-height: 597px;
    width: 100%;
    height: 100%;
}

.product_detail .swiper-pagination {
    display: none;
}

.product_detail .pd_detail .mydetail_Swiper {
    max-height: 500px;
}

.product_detail .pd_detail .mydetail_Swiper img {
    width: 100%;
    height: 100%;
}

.product_detail .pd_detail .pd_img img {
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    max-height: 500px;
}

.product_detail .pd_detail .mydetail_Swiper2 {
    margin-top: 20px;
    transition: all 0.5s ease-in-out;
}

.product_detail .pd_detail .mydetail_Swiper2 img {
    width: 70px;
    height: 70px;
    border: 1px solid #C4C9D1;
}

.current_text {
    display: block;
}

.product_detail .pd_detail .mydetail_Swiper2 .swiper-slide-thumb-active img {
    border: 1px solid #212529;
}

/* .product_detail .swiper-slide-active {
	max-width: 500px;
	width: 100%;
} */

.product_detail .pd_detail .pd_content {
    max-width: 600px;
    width: 100%;
    user-select: none;
    height: fit-content;
}

.product_detail .pd_detail .pd_content .pd_content_header {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -0.045rem;
    line-height: 1.4;
    color: #111;
    margin-bottom: 25px;
}

.product_detail .pd_detail .pd_content_header span,
.store_company strong {
    font-weight: 400;
}

.product_detail .pd_detail .pd_content .detail_price_div h4 {
    font-size: 35px;
    line-height: 33px;
    letter-spacing: -0.045rem;
    color: var(--clr-primary);
    font-weight: 700;
    margin-bottom: 40px;
}

.product_detail .pd_detail .detail_price_div h4 span:nth-child(1) {
    font-weight: 300;
}

.product_detail .pd_detail .detail_price_div h4 span:nth-child(2) {
    font-size: 24px;
    line-height: 33px;
    color: #C4C9D1;
    font-weight: 300;
    text-decoration: line-through;
    margin-left: 5px;
}

.product_detail .pd_detail .detail_price_div h4 span:nth-child(2) strong {
    font-weight: 500;
}

.product_detail .pd_detail .pd_content_flex {
    display: flex;
    justify-content: space-between;
}

.product_detail .pd_detail table {
    color: #414168;
    width: 100%;
    user-select: none;
}

.product_detail .pd_detail table tbody {
    font-size: 15px;
    line-height: 35px;
    letter-spacing: -0.045rem;
    width: 174px;
    height: fit-content;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.product_detail .pd_detail table tbody tr:first-child td {
    padding-top: 17px;
}

.product_detail .pd_detail table tbody tr:last-child td {
    padding-bottom: 17px;
}

.product_detail .pd_detail table tbody td {
    height: 35px;
    text-align: start;
    padding: 0px 0px 0px 20px;
    color: #444;
}

.product_detail .pd_detail .padding_top {
    padding: 16px 0px 0px 20px;
}

.product_detail .pd_detail table .detail_1st_th {
    width: 30%;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    color: #bbb;
}

.product_detail .pd_detail table tbody tr img {
    width: 30px;
    height: 13px;
}

.product_detail .pd_detail .detail_td_flex {
    display: flex;
    justify-content: space-between;
}

.product_detail .pd_detail .detail_td_flex div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.product_detail .pd_detail .detail_td_flex div h6 {
    color: #ddd;
}

.product_detail .pd_detail table tfoot select {
    height: 44px;
}

.product_detail .pd_detail table tfoot select {
    padding: 0px 25px 0px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    width: 100%;
}

.pd_found_gp select {
    padding: 0px 25px 0px 16px;
    font-size: 14px;
    color: #555;
}

.product_detail .pd_detail .custom-select,
.pd_found_gp .custom-select {
    width: 100%;
    font-size: 15px;
    position: relative;
}

.product_detail .pd_detail .custom-select::after,
.pd_found_gp .custom-select::after {
    right: 20px;
}

.product_detail .swiper-slider {
    z-index: -1;
}

.product_detail .pd_detail .detail_select_gp {
    padding: 16px 0px 0px;
    border-bottom: 1px solid #aaaaaa;
}

.product_detail .pd_detail .detail_btn_gp .detail_ttl_gp {
    display: flex;
    padding: 16px 0px 0px;
    justify-content: space-between;
}

.product_detail .pd_detail .detail_ttl_gp h4 {
    font-size: 15px;
    line-height: 35px;
    letter-spacing: -0.045rem;
    width: 120px;
    color: #bbb;
}

.product_detail .pd_detail .detail_ttl_gp h3 {
    float: right;
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
    color: var(--clr-primary);
}

.product_detail .pd_detail .detail_ttl_gp h3 strong {
    font-weight: 700;
}

.product_detail .pd_detail .detail_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.product_detail .pd_detail .detail_btn a {
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s linear;
    background-color: transparent;
}

.product_detail .pd_detail .detail_btn a:nth-child(1) {
    width: 55px;
    height: 55px;
    border: 1px solid #ddd;
    background: url(../images/icons/bi_heart.svg) 50% 50% no-repeat;
    box-sizing: border-box;
}

.product_detail .pd_detail .detail_btn a:nth-child(1):hover,
.product_detail .pd_detail .detail_btn a:nth-child(1).active {
    background: url(../images/icons/bi_heart_on.svg) 50% 50% no-repeat;
}

.product_detail .pd_detail .detail_btn a:nth-child(2),
.product_detail .pd_detail .detail_btn a:nth-child(3) {
    float: right;
    width: 265px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.045rem;
    font-weight: 500;
    box-sizing: border-box;
    border-radius: 5px;
}

.product_detail .pd_detail .detail_btn a:nth-child(2):hover,
.product_detail .pd_detail .detail_btn a:nth-child(3):hover {
    opacity: 0.6;
    transition: .3s ease;
    cursor: pointer;
}

.product_detail .pd_detail .detail_btn a:nth-child(3) {
    background-color: #444;
}

.product_detail .pd_detail .detail_btn a:nth-child(2) {
    background-color: var(--clr-primary);
}

.product_detail .pd_content .N_pay_gp {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
}

.product_detail .pd_content .N_pay_gp .naver_gp {
    width: 290px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid black;
    padding: 10px 4px;
    border-bottom: 1px solid #ddd;
}

.product_detail .pd_content .naver_txt img {
    height: 36px;
    width: 79px;
}

.product_detail .pd_content .naver_btn_gp {
    display: flex;
    gap: 3px;
    align-items: center;
}

.naver_btn_gp .naver_pay_btn {
    padding: 12px 23px;
    background-color: #00de5a !important;
}

.naver_btn_gp a {
    border-radius: 2px;
}

.naver_btn_gp .naver_pay_btn img {
    height: 13px;
}

.naver_btn_gp .naver_zzim,
.naver_btn_gp .naver_talk {
    padding: 12px;
    border: 1px solid #ccc !important;
    border-radius: 2px !important;
}

.naver_btn_gp .naver_zzim img,
.naver_btn_gp .naver_talk img {
    height: 13px;
}

.detail_txt_slide {
    width: 100%;
    display: flex;
    gap: 8px;
    margin: 5px 0px;
    justify-content: end;
    align-items: center;
}

.below_txt {
    width: 237px;
}

.below_txt h1 span {
    color: #00de5a;
    margin-right: 4px;
}

.below_txt h1 {
    font-size: 12px;
    letter-spacing: -0.05em;
}

.hidden_text {
    display: none;
}

.detail_txt_slide button {
    width: 16px;
    height: 16px;
    background-color: #fff;
    display: flex;
    border: 1px solid #ddd;
    align-items: center;
    justify-content: center;
}

.detail_txt_slide button img {
    width: 10px;
    height: 10px;
}

.prd_detail_area {
    width: 100%;
    user-select: none;
    display: flex;
    margin-bottom: 40px;
    justify-content: center;
}

.prd_detail_area .prd_detail img {
    /* max-width: 780px;
    width: 100%; */
    user-select: none;
    height: auto;
}

.product_detail .pc-hidden {
    display: none;
}

.product_detail .pd_qty_gp {
    padding: 16px 20px;
    display: none;
    margin-top: 16px;
    border-radius: 10px;
    background-color: #f2f2f2;
}

.product_detail .qty_close_gp {
    display: flex;
    margin-bottom: 22px;
    justify-content: space-between;
}

.product_detail .qty_close_gp button {
    cursor: pointer;
}

.product_detail .qty_close_gp img {
    width: 12px;
    height: 12px;
}

.product_detail .pd_qty_gp .qty_btn {
    display: flex;
    gap: 5px;
    align-items: center;
}

.product_detail .pd_qty_gp .qty_btn button {
    width: 26px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 2px;
    text-align: center;
    align-content: center;
    height: 26px;
}

.product_detail .pd_qty_gp .qty_btn button:hover {
    background-color: #ddd;
}

.product_detail .pd_qty_gp .qty_btn span {
    width: 86px;
    background-color: #fff;
    height: 26px;
    text-align: center;
    border-radius: 2px;
    align-content: center;
}

.product_detail .qty_btn_gp {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.product_detail .pd_qty_gp {
    font-size: 16px;
}

.product_detail .pd_qty_active {
    display: block !important;
}

/* .product_detail .guide_list {
	padding-bottom: 20px;
} */

.product_detail .guide_list li,
.product_detail .exchange_return_content li {
    font-weight: 400;
    font-size: 16px;
    color: #333;
}

.product_detail .accordion_table_gp {
    width: 100%;
    user-select: none;
}

.product_detail .accordion_table,
.product_detail .accordion_table2 {
    margin-bottom: 50px;
}

.product_detail .accordion_table table,
.product_detail .accordion_table2 table {
    width: 100%;
    margin-top: 50px;
    border-top: 2px solid #333;
}

.product_detail .accordion_table table tr,
.product_detail .accordion_table2 table tr {
    color: #333;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: #ddd;
}

.product_detail .accordion_table table tr th,
.product_detail .accordion_table2 table tr th {
    background-color: #f7f7f7;
}

.product_detail .accordion_table table td,
.product_detail .accordion_table table th,
.product_detail .accordion_table2 table td,
.product_detail .accordion_table2 table th {
    padding: 20px 0px;
    vertical-align: middle;
}

.product_detail .accordion_table table td a img,
.product_detail .accordion_table2 table td a img {
    width: 15px;
}

.product_detail .accordion_table2 table td img {
    width: 75px;
}

.product_detail .accordion_table table td:nth-child(2),
.product_detail .accordion_table2 table td:nth-child(2) {
    text-align: start;
}

.product_detail .accordion_table table th:nth-child(1),
.product_detail .accordion_table2 table th:nth-child(1) {
    width: 10%;
}

.product_detail .accordion_table table th:nth-child(2) {
    width: 70%;
}

.product_detail .accordion_table2 table th:nth-child(2) {
    width: 50%;
}

.product_detail .accordion_table2 table th:nth-child(3) {
    width: 20%;
}

.product_detail .accordion_table table th:nth-child(3),
.product_detail .accordion_table2 table th:nth-child(4) {
    width: 10%;
}

.product_detail .accordion_table table th:nth-child(4),
.product_detail .accordion_table2 table th:nth-child(5) {
    width: 10%;
}

.product_detail .accordion_table table td a:hover,
.product_detail .accordion_table2 table td a:hover {
    border-bottom: 1px solid #212529;
}

.product_detail .pd_accordion_items {
    width: 100%;
    display: none;
    background-color: #f7f7f7;
}

.product_detail .pd_accordion_items .padding {
    padding: 15px 60px !important;
}

.product_detail .accordion_table .pd_accordion_items td img,
.product_detail .accordion_table2 .pd_accordion_items td img {
    max-width: 270px;
    width: 100%;
}

.product_detail .accordion_table_gp .qna_btn {
    width: 100%;
    display: flex;
    justify-content: end;
    padding-bottom: 50px;
    gap: 5px;
}

.product_detail .list_menu_container {
    user-select: none;
}

.product_detail .list_menu_container .list_menu a {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: unset;
}

.product_detail .list_menu_container .list_menu .active a {
    background-color: var(--clr-primary);
    color: #fff;
}

.product_detail .accordion_table_gp .qna_btn a {
    width: fit-content;
    height: 30px;
    border: 1px solid #ccc;
    text-align: center;
    vertical-align: middle;
    align-content: center;
    font-size: 13px;
    letter-spacing: -0.065rem;
    color: #999;
    padding: 0 14px;
    box-sizing: border-box;
}

/* //editing .accordion_table  */
.product_detail .pd_detail_qna_list ul {
    padding-left: 20px;
}

.product_detail .pd_detail_qna_list ul li {
    list-style: disc;
    font-size: 16px;
    line-height: 1.3;
}

.product_detail .pd_detail_qna_list ul li::marker {
    font-size: 0.5em;
}

.pd_qna_date_mb {
    font-size: 14px;
    font-weight: 300;
}

.pd_rw_qna_gp {
    margin-top: 30px;
}

.pd_qna_item {
    display: flex;
    justify-content: space-between;
    padding: 16px 12px;
    border-bottom: 1px solid #DDD;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.04px;
}

.pd_qna_item.answer {
    background: #f2f2f5;
}

.pd_qna_ite {}

.pd_qna_item .pd_qna_ttl {
    color: #767676;
    margin-bottom: 10px;
}

.pd_qna_item .pd_qna_ttl span {
    border-radius: 2px;
    background: #888;
    color: #fff;
    font-size: 14px;
    padding: 2px;
    margin-right: 12px;
}

.pd_qna_item_left p {
    color: #222;
}

.pd_qna_item_right {
    color: #767676;
    display: flex;
    align-items: flex-start;
}

.pd_qna_item_right a {
    padding: 0 12px;
    border-right: 1px solid #767676;
}

.pd_qna_item_right a+a {
    padding-right: 0;
    border: 0;
}

.pd_qna_item.answer {
    padding-left: 34px;
    position: relative;
}

.pd_qna_item.answer .pd_qna_ttl span {
    background: #4A7CAD;
}

.pd_qna_item.answer::before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    left: 12px;
    top: 24px;
    background: url('../images/icons/reply.svg') no-repeat;
}

.product_detail .page_btns {
    margin-top: 20px;
}

.product_detail ul.pagination {
    margin-top: 20px;
}

.pd_detail_qna_bottom .qna_create_btn {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.72px;
    border-radius: 5px;
    border: 1px solid #4A7CAD;
    color: #4A7CAD;
    padding: 0px 14px;
    cursor: pointer;
}

.dialog_title {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 34px;
    padding: 0 6px;
}

.dialog_content {
    border-top: 1px solid #333;
}

.qna_form {
    display: flex;
    border-bottom: 1px solid #C4C9D1;
}

.qna_form label {
    width: 60px;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    /* 133.333% */
    text-align: center;
    padding: 8px 0;
    background: #fafafa;
}

.qna_form .textarea_wrap {
    padding: 8px;
    width: calc(100% - 60px);
}

.dialog_action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 0 30px;
}

.dialog_action button {
    font-size: 12px;
    font-weight: 600;
    /* 128.333% */
    letter-spacing: -0.72px;
    height: 28px;
    line-height: 28px;
    padding: 0 23px;
    border: 1px solid #4A7CAD;
    color: #FFF;
    background: #4A7CAD;
    cursor: pointer;
}

.dialog_action button.close_dialog {
    background: #fff;
    color: #999;
    border-color: #999;
}

.pd_detail_qna_bottom .qna_create_btn:hover {
    opacity: 0.6;
    transition: .3s ease;
}

.pd_detail_qna_bottom {
    display: flex;
    align-items: center;
    margin-top: 16px;
    justify-content: space-between;
}

.no-scroll-wrapper {
    position: fixed;
    width: 100vw;
    z-index: 98;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

/*  */
.product_detail .pd_detail_reviews {
    width: 100%;
    user-select: none !important;
    height: fit-content;
}

.product_detail .pd_detail_review {
    width: 100% !important;
    height: fit-content;
    user-select: none !important;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.product_detail .pd_detail_review td {
    padding: 25px 0px;
    user-select: none;
}

.product_detail .pd_detail_review .pd_rw_img {
    width: 10%;
    text-align: start;
    vertical-align: top;
    padding: 30px 10px 10px 20px;
}

.rw_img_gp {
    width: 80px;
    height: 80px;
    position: relative;
}

.product_detail .pd_detail_review .pd_rw_img .img_no {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 10px;
    padding: 0 4px;
    background-color: #666;
    color: #fff;
}

.product_detail .pd_detail_review .pd_rw_img img {
    transition: all 0.1s linear;
    width: 80px;
    border: 1px solid transparent;
    height: 68px;
    object-fit: cover;
}

.product_detail .pd_detail_review .rw_para {
    width: 60%;
    vertical-align: top;
}

.product_detail .pd_detail_review .rw_para h3,
.pd_review_mb h3 {
    font-size: 16px;
    display: flex;
    font-weight: 500;
    align-items: start;
    transition: all 0.2s linear;
    gap: 8px;
}

.product_detail .modal-trigger:hover {
    color: var(--clr-primary);
}

.product_detail .pd_detail_review .pd_rw_img img:hover {
    border: 1px solid #333;

}

.pd_review_mb h3 .rw_para_gif {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.pd_review_mb h3 {
    font-size: 14px !important;
    justify-content: space-between;
}

.product_detail .pd_detail_review .rw_para h3 .rw_para_gif {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.product_detail .pd_detail_review .rw_para h3 img {
    height: 10px;
}

.product_detail .pd_detail_review .rw_para .rw_para_p {
    margin-top: 10px;
}

.product_detail .pd_detail_review .rw_para p {
    font-size: 13px;
    line-height: 1.3;
}

.product_detail .pd_detail_review .detail_starGp {
    width: 20%;
    vertical-align: middle;
    padding-top: 5px;
    text-align: center;
}

.product_detail .pd_detail_review .detail_starGp img {
    width: 20px;
    height: 20px;
}

.product_detail .pd_detail_review .pd_rw_date {
    width: 10%;
    vertical-align: middle;
    text-align: center;
}

/* product_detail_review_swiper  */
.pd_reviews_mb {
    border-top: 1px solid #ddd;
}

.pd_detail_reviews {
    position: relative;
}

.pd_detail_swiper_gp {
    position: fixed;
    top: 15%;
    transform: translateY(50%);
    width: 700px;
    left: 50%;
    z-index: 999;
    display: none;
    flex-direction: column;
    transform: translateX(-50%);
}

.pd_detail_swiper_gp .close {
    font-size: 40px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: end;
    color: #ddd;
}

.mySwiper_rw2 {
    width: 700px;
}

.mySwiper_rw2 .swiper-slide {
    background-color: transparent;
    /* margin-left: 50px; */
    /* margin-right: 5px; */
    padding-left: 100px;
    display: block;
}

.mySwiper_rw2 .swiper-button-next {
    right: 0;
    color: #fff !important;
}

.mySwiper_rw2 .swiper-button-prev {
    left: 0;
    color: #fff !important;
}

.mySwiper_rw2 img {
    width: 500px;
    height: 500px;
}

.mySwiper_rw {
    width: 200px;
    background-color: transparent !important;
}

.mySwiper_rw img {
    width: 40px;
    cursor: pointer;
    height: 40px;
}

.mySwiper_rw .swiper-slide {
    background-color: transparent !important;
}

.mySwiper_rw .swiper-slide-thumb-active img {
    border: 1px solid #212529;
}

.product_detail .pd_reviews_mb {
    width: 100%;
    border-top: 1px solid #ddd
}

.product_detail .pd_review_mb {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
    padding: 20px 0px;
    width: 100%;
}

.product_detail .pd_review_mb .pd_rw_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
}

.product_detail .pd_review_mb .pd_rw_header .pd_rw_stars {
    display: flex;
}

.product_detail .pd_review_mb .pd_rw_header h4 {
    font-size: 14px;
    font-weight: 500;
}

.product_detail .pd_review_mb .pd_rw_header .pd_rw_stars img {
    width: 15px !important;
    height: 15px !important;

}

.product_detail .pd_review_mb .pd_rw_img_mb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 5px;
    padding-bottom: 5px;
}

.product_detail .pd_review_mb .pd_rw_img_mb img {
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
}

.product_detail .pd_review_mb .pd_mb_date {
    padding-bottom: 5px;
}

.product_detail .pd_review_mb .pd_mb_date h4 {
    font-size: 13px;
    font-weight: 400;
}

.product_detail .pd_review_mb .pd_mb_date h4 span {
    margin-left: 5px;
}

.product_detail .pd_review_mb .pd_mb_para p {
    font-size: 12px;
    font-weight: 400;
}

.product_quantity {
    border-radius: 8px;
    background: var(--hbga_color-sub_28, #F6F6F6);
    padding: 20px;
    margin-top: 26px;
}

.product_quantity p {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    /* 100% */
    letter-spacing: -0.45px;
    margin-bottom: 20px;
}

.product_quantity form {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.product_quantity form span {
    color: #111;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    /* 100% */
    letter-spacing: -0.45px;
}

.product_quantity .counter a {
    color: #666;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 18px;
    border: 1px solid #DDD;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.product_quantity .counter {
    display: flex;
    align-items: center;
}

.product_quantity .counter input {
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    text-align: center;
    height: 36px;
    line-height: 36px;
    width: 100px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.45px;
    border-radius: 0;
}

.prd_detail_info {
    max-height: 500px;
    overflow: hidden;
    text-align: center;
}

.prd_detail_info.show-all {
    max-height: 100%;
    overflow: visible;
    transition: .3s linear;
}

.wrapper-btn-show-more {
    /* border-radius: 10px; */
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    padding-top: 50px;
    position: absolute;
    right: 0;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.prd_detail_area .prd_detail {
    position: relative;
    margin-bottom: 56px;
}

.wrapper-btn-show-more .bg-article {
    height: 114px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 84.5%);
}

.wrapper-btn-show-more .btn-less,
.show-all+.wrapper-btn-show-more .btn-show,
.show-all+.wrapper-btn-show-more .bg-article {
    display: none;
}

.show-all + .wrapper-btn-show-more {
	position: static;
}

.show-all + .wrapper-btn-show-more .btn-less,
.wrapper-btn-show-more .btn-show {
    display: inline-block;
}

.show-all .wrapper-btn-show-more .btn-show {
    display: none;
}

.wrapper-btn-show-more .btn-show,
.wrapper-btn-show-more .btn-less {
	color: #4A7CAD;
	font-size: 17px;
	font-weight: 700;
	line-height: 56px;
	width: 300px;
	height: 56px;
	border-radius: 8px;
	border: 2px solid #4A7CAD;
	background: #fff;
    min-width: 300px;
    cursor: pointer;
}
.wrapper-btn-show-more .btn-show {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.exchange_return_content {
    padding-bottom: 20px;
}

/* product detail end  */

@media(max-width: 1180px) {

    .product_detail .pd_detail .detail_btn a:nth-child(2),
    .product_detail .pd_detail .detail_btn a:nth-child(3) {
        width: calc((100% - 80px) / 2);
    }
}

@media(max-width: 1023px) {

    .product_detail .pd_detail,
    .product_detail .pd_detail .mydetail_Swiper img,
    .product_detail .pd_detail .pd_img {
        width: 100%;
        height: 100%;
    }

    .product_detail nav ul li a {
        padding: 20px 3px;
    }

    .sub_cate_gp .pc_hidden {
        display: inline-block;
    }

    .product_detail .pd_detail .mydetail_Swiper2 img {
        width: 50px;
        height: 50px;
    }

    .product_detail .pd_detail .pd_img {
        max-width: 45%;
        max-height: auto;
    }

    .product_detail .pd_detail .pd_content {
        max-width: 45%;
        width: 100%;
    }

    .product_detail .pd_detail .pd_content .pd_content_header {
        font-size: 24px;
    }

    .product_detail .pd_detail .pd_content .detail_price_div h4 {
        font-size: 20px;
    }

    .product_detail .pd_detail .detail_btn a {
        height: 30px;
    }

    .product_detail .pd_detail .detail_ttl_gp h3 {
        font-size: 20px;
    }

    .naver_btn_gp .naver_pay_btn {
        padding: 0px 23px;
        display: flex;
        align-items: center;
        height: 44px;
    }

    .product_detail .pd_detail .detail_td_flex div {
        gap: 0px;
    }

    .product_detail .pd_detail .detail_btn {
        flex-wrap: nowrap;
    }

    .product_detail .pd_detail .detail_btn a {
        height: 40px !important;
    }

    .product_detail .pd_detail .detail_btn a:nth-child(1) {
        width: 40px;
    }

    .product_detail .pd_detail .detail_btn a:nth-child(2),
    .product_detail .pd_detail .detail_btn a:nth-child(3) {
        width: 40%;
        font-size: 14px;
    }

    .below_txt h1 {
        font-size: 10px;
    }

    .detail_txt_slide button {
        width: 20px;
        height: 20px;
    }

    .product_detail .pd_detail .detail_btn {
        gap: 5px;
        align-items: start;
        width: 100%;
    }

    .product_detail .pd_detail table thead,
    .product_detail .pd_detail table tbody {
        max-width: 174px;
        width: 100%;
    }

    .product_detail .pd_detail table .detail_1st_th {
        width: 50px;
    }

    .product_detail .pd_detail .pd_content .pd_content_header {
        margin-bottom: 10px;
    }

    .product_detail .pd_detail .pd_content .detail_price_div h4 {
        margin-bottom: 5px;
    }

    .product_detail .pd_detail .detail_btn_gp .detail_ttl_gp {
        padding: 0px 0px 0px;
    }

    .product_detail .pd_detail table thead,
    .product_detail .pd_detail table tbody {
        font-size: 12px;
    }

    .product_detail .pd_detail .detail_btn {
        margin-top: 0px;
    }

    .product_detail .pd_detail .detail_price_div h4 span:nth-child(1) {
        font-weight: 300;
    }

    .product_detail .pd_detail .detail_price_div h4 span:nth-child(2) {
        font-size: 18px;
    }

    .product_detail .pd_content .N_pay_gp .naver_gp {
        width: 100%;
    }

    .product_detail .pd_detail table tfoot select {
        height: 34px;
        font-size: 12px;
    }

    .product_detail .pd_content .N_pay_gp {
        justify-content: start;
    }

    .detail_txt_slide {
        justify-content: start;
    }

    .naver_btn_gp .naver_pay_btn {
        padding: 8px 16px;
    }

    .product_detail .pd_detail_review .pd_rw_img {
        width: 15%;
    }

    .product_detail .pd_detail_review .rw_para {
        width: 50%;
    }

    .product_detail .pd_detail_review .detail_starGp {
        width: 20%;
    }

    .product_detail .pd_detail_review .pd_rw_date {
        width: 15%;
    }
}

@media(max-width: 767px) {
    .pd_detail_qna_bottom .qna_create_btn {
        font-size: 14px;
    }

    .wrapper-btn-show-more {
        bottom: -56px;
    }

    .wrapper-btn-show-more .btn-show,
    .wrapper-btn-show-more .btn-less {
        font-size: 15px;
        width: auto;
        min-width: 120px;
        height: 40px;
        line-height: 40px;
        box-shadow: -110px 0 0px rgba(255, 255, 255, 1), 110px 0 0px rgba(255, 255, 255, 1);
    }

    .product_detail .pd_detail {
        flex-direction: column;
    }

    .product_detail .pd_detail .mydetail_Swiper2 {
        display: none;
    }

    .product_detail .pd_detail .mydetail_Swiper,
    .product_detail .pd_detail .pd_img {
        max-height: 850px;
        height: 100%;
        position: relative;
    }

    .product_detail .pd_detail .pd_img,
    .product_detail .pd_detail .mydetail_Swiper img,
    .swiper-slide-active {
        max-width: 767px !important;
        width: 100%;
    }

    .product_detail .swiper-pagination {
        display: inline-block;
        bottom: 10px !important;
    }

    .product_detail .pd_detail .pd_content {
        max-width: 100%;
        margin-top: 20px;
    }

    .product_detail .pd_detail .pd_content_flex {
        justify-content: start;
        gap: 100px;
    }

    .product_detail .pd_detail table .detail_1st_th {
        width: 80px;
    }

    .product_detail .pd_detail .detail_td_flex {
        justify-content: start;
        gap: 50px;
    }

    .product_detail .pd_detail .detail_btn {
        gap: 5px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .product_detail .pd_detail .detail_btn a {
        height: 55px;
    }

    .product_detail .pd_detail .detail_btn a:nth-child(1) {
        width: 55px;
    }

    .product_detail .pd_detail .detail_btn a:nth-child(2),
    .product_detail .pd_detail .detail_btn a:nth-child(3) {
        width: 45%;
    }

    .detail_txt_slide {
        width: 100%;
        justify-content: start;
    }

    .below_txt {
        width: 100%;
    }

    .below_txt h1 {
        font-size: 14px;
    }

    .sub_banner {
        background-color: var(--bs-white);
        height: fit-content;
    }

    .product_detail .list_menu_container .list_menu a {
        line-height: 1.3;
        font-size: 14px;
        padding: 0 8px;
    }

    .product_detail .pd_detail_qna_list ul li,
    .product_detail .guide_list li,
    .exchange_return_content li {
        font-size: 12px;
    }

    .prd_detail_info {
        max-height: 300px;
    }

    .pd_qna_item {
        font-size: 14px;
        flex-direction: column;
        gap: 15px;
    }

    .pd_qna_item .pd_qna_ttl span {
        font-size: 12px;
    }

    .pd_qna_item_right {
        justify-content: flex-end;
    }

    .product_detail .accordion_table_gp .qna_btn {
        padding-bottom: 0;
    }

    .product_detail .pd_detail_review {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .product_detail .pd_detail_review .detail_starGp {
        order: 2;
        width: 50%;
        padding: 20px 0 0 0;
        text-align: right;
    }

    .product_detail .pd_detail_review .pd_rw_date {
        order: 1;
        width: 50%;
        padding: 20px 0 0 0;
        text-align: left;
        font-size: 15px;
    }

    .rw_img_gp {
        width: 65px;
        height: 65px;
    }

    .product_detail {
        margin-bottom: 60px;
    }

    .product_detail .pd_detail_review .pd_rw_img {
        order: 3;
        width: 65px;
        padding: 0;
    }

    .product_detail .pd_detail_review .rw_para {
        order: 4;
        width: calc(100% - 70px);
        padding: 20px 0 20px 10px;
    }

    .product_detail .pd_detail_review .pd_rw_date br {
        display: none;
    }

    .product_detail .pd_detail_review .rw_para h3 {
        flex-direction: column;
        gap: 0;
    }
}
