/* ============================== original start ============================== */

/* ========== button start ========== */

body[data-templatecolor] .ac_Button.ac_BtnColorLight {
    border: 1px solid var(--blue-basic);
    background-color: transparent;
    color: var(--blue-basic)
}

body[data-templatecolor] .ac_Button.ac_BtnColorLight:hover,
body[data-templatecolor] .ac_Button.ac_BtnColorNormal:hover {
    background-color: var(--blue-basic);
    color: var(--white);
    opacity: .8
}

body[data-templatecolor] .ac_Button.ac_BtnColorNormal {
    border: 1px solid var(--blue-basic);
    background-color: var(--blue-basic);
    color: var(--white)
}

body[data-templatecolor] .ac_Button.ac_BtnColorNormal:hover {
    background-color: var(--blue-basic);
    color: var(--white);
    opacity: .8
}

body[data-templatecolor] .ac_Button.ac_BtnColorGradient {
    border: 0;
    background: linear-gradient(136deg, var(--blue-deep), var(--blue-basic));
    color: var(--white)
}

body[data-templatecolor] .ac_Button.ac_BtnColorGradient_gray {
    border: 0;
    background: linear-gradient(136deg, var(--black-9), var(--black-a));
    color: var(--white)
}

/* ========== button end ========== */

/* ========== icon start ========== */

.ac_SelectItem.ac_SelectColorDeep .select__arrow::before {
    background: url(../images/icon-arrow-light.svg) no-repeat center center
}

/* ========== icon end ========== */

/* ============================== original end ============================== */

/* ============================== all start ============================== */

html {
    overflow-x: hidden
}

body {
    overflow-x: hidden;
    font-family: Lato, Arial, 'Noto Sans TC', 'Apple LiGothic Medium', 'Microsoft JhengHei', SimHei !important
}

textarea {
    height: 100%;
    min-height: 180px;
    border: 1px solid var(--black-15) !important;
    resize: none
}

.content_section,
.page_section {
    padding: 10rem 0;
}

.page_section {
    padding: 10rem 0;
}

.content_section_b,
.page_section_b {
    margin-bottom: 5rem
}

@media (max-width:991px) {

    .page_section,
    .content_section {
        padding: 8rem 0;
    }

    .content_section_b,
    .page_section_b {
        margin-bottom: 4rem
    }
}

@media (max-width:575px) {
    .page_section {
        padding: 6rem 3rem
    }

    .content_section {
        padding: 3rem 0
    }

    .content_section_b,
    .page_section_b {
        margin-bottom: 1.5rem
    }
}

@media (max-width:575px) {
    .introduce_text_list {
        margin: 0 auto;
        padding: 0 15px;
        width: 100%
    }

    .index_concept_section .introduce_text_list {
        padding-right: 0
    }
}

.theme_title_section {
    margin-bottom: 3rem
}

.theme_title_content {
    font-size: var(--text-3xl);
}

.theme_subtitle_content {
    font-size: var(--text-lg);
}

.page_title_area {
    display: inline-block;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--black-deep);
    font-weight: 400
}

@media (max-width:991px) {
    .theme_title_section {
        margin-bottom: 2rem
    }
}

@media (max-width:575px) {
    .theme_title_section {
        margin-bottom: 1.5rem
    }
}

.page_btn_area {
    display: flex;
    margin: 2rem 0;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.page_btn_area a {
    display: inline-block;
    margin: 5px;
    padding: 8px;
    width: 140px;
    border-radius: 23px;
    box-shadow: 0 0 4px var(--black-9);
    text-align: center;
    font-size: 16px
}

.navbar_section {
    position: fixed;
    width: 100%;
    z-index: 3;
    box-shadow: var(--box-shadow);
}

/* 
.navbar_section .navbar-brand {
    display: flex;
    flex-direction: row;
} */

.navbar_section .navbar-brand img {
    width: 40px;
    height: auto;
    margin-right: 0.5rem;
}

.navbar_section .nav-item.active .nav-link {
    color: var(--blue-basic)
}

@media (max-width:575px) {
    .page_btn_area {
        align-items: center;
        flex-direction: column
    }
}

/* ===== radio start ===== */

.text_forms {
    position: relative;
    display: block;
    padding-left: 30px;
    font-size: 18px;
    cursor: pointer
}

label.text_forms {
    margin-bottom: 15px;
    color: #333
}

.text_forms input {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.forms__indicator {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background: #e6e6e6
}

.forms--radio .forms__indicator {
    border-radius: 50%
}

.text_forms input:focus~.forms__indicator,
.text_forms:hover input~.forms__indicator {
    background: #ccc
}

.text_forms input:checked~.forms__indicator {
    background: #e6e6e6
}

.text_forms input:checked:focus~.forms__indicator,
.text_forms:hover input:not([disabled]):checked~.forms__indicator {
    background: #d0d0d0
}

.text_forms input:disabled~.forms__indicator {
    background: #e6e6e6;
    opacity: .6;
    pointer-events: none
}

.forms__indicator:after {
    position: absolute;
    display: none;
    content: ''
}

.text_forms input:checked~.forms__indicator:after {
    display: block
}

.forms--checkbox .forms__indicator:after {
    top: -1px;
    left: 3px;
    color: #000;
    content: "\f121";
    font-size: 16px;
    font-family: Ionicons
}

.forms--checkbox input:disabled~.forms__indicator:after {
    border-color: #7b7b7b
}

.forms--radio .forms__indicator:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000
}

.forms--radio input:disabled~.forms__indicator:after {
    background: #7b7b7b
}

.radio_nolosist label {
    display: inline-block;
}

/* ===== radio end ===== */

/* ===== modal start ===== */

.modal_style .btn.btn-primary,
.modal_style .btn.btn-secondary {
    width: 120px;
    height: 45px
}

.modal_style .btn.btn-primary {
    border-color: var(--black-10);
    background: var(--blue-basic);
    color: #fff
}

.modal-title {
    color: initial
}

.modal-body,
.modal-footer {
    background-color: #fff
}

@media (min-width:576px) {
    .modal_md {
        max-width: 640px
    }
}

/* ===== modal end ===== */

/* ============================== all end ============================== */

/* ============================== cart icon fixed start ============================== */

.fixed_area {
    display: none
}

@media (max-width:767px) {
    .fixed_area {
        position: fixed;
        right: 10px;
        bottom: 30px;
        z-index: 4;
        display: inline-block
    }

    .fixed_icon_list .fixed_icon {
        display: flex;
        margin-bottom: 3px;
        width: 22px;
        height: 22px;
        align-items: flex-end;
        justify-content: center;
        position: relative;
    }

    .fixed_icon_list {
        display: flex;
        width: 70px;
        height: 70px;
        border-radius: 30px;
        background-color: #fff;
        box-shadow: 0 0 5px rgba(200, 200, 200, .7);
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .fixed_icon_list i {
        color: var(--blue-basic);
        font-size: 18px
    }

    .fixed_icon_list .fixed_icon_title {
        color: var(--black-5);
        font-size: 14px;
        line-height: 1.2
    }
}

/* ============================== cart icon fixed end ============================== */

/* ============================== pagination start ============================== */

.ac_Pagination .pagination .page-item .page-link {
    display: flex;
    width: 40px;
    height: 40px;
    border: transparent;
    border-radius: 100%;
    background-color: transparent;
    color: var(--black-80);
    align-items: center;
    justify-content: center
}

.ac_Pagination .pagination .page-item .page-link:hover {
    border: transparent;
    background-color: var(--black-50);
    color: var(--white)
}

.ac_Pagination .pagination .page-item.active .page-link,
.ac_Pagination .pagination .page-item.active .page-link:hover {
    border: transparent;
    background-color: var(--blue-basic);
    color: var(--white)
}

/* ============================== pagination end ============================== */

/* ============================== color&text start ============================== */

:root {
    --black: #000;
    --black-1: #111;
    --black-3: #333;
    --black-5: #555;
    --black-7: #777;
    --black-9: #999;
    --black-a: #aaa;
    --black-b: #bbb;
    --black-c: #ccc;
    --black-d: #ddd;
    --black-e: #eee;
    --black-f: #f2f2f2;
    --black-15: rgba(0, 0, 0, 0.15);
    --black-05: rgba(0, 0, 0, 0.05);
    --black-03: rgba(0, 0, 0, 0.03);
    --black-02: rgba(0, 0, 0, 0.02);
    --black-01: rgba(0, 0, 0, 0.01);
    --light-color: #FBF9F9;
    /* black */
    --black-dark: #333333;
    --black-deep: #666666;
    --black-basic: #bbbbbb;
    --black-light: #eeeeee;
    --black-pale: #F9F9F9;
    /* blue */
    --blue-dark: #003765;
    --blue-deep: #14438f;
    --blue-basic: #4285f4;
    /* red */
    --danger-deep: #BE3206;
    --danger-basic: #FF463A;
    /* yellow */
    --warning-basic: #FFB03A;
    /* other */
    --line-basic: #07C052;
    --fb-basic: #4064AC;
    /* box-shadow */
    --box-shadow: 0 0 40px rgba(150, 150, 150, 0.25);
    /* fontsize */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-md: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2rem;
    --text-5xl: 2.25rem;
    /* fontweight */
    --text-light: 300;
    --text-normal: 400;
    --text-bold: 500;
}

.bg_main_gray {
    background-color: var(--black-basic)
}

.bg_sub_gray {
    background-color: var(--black-deep)
}

.bg_other_color {
    background-color: var(--blue-basic)
}

.bg_danger_color {
    background-color: var(--deep-danger)
}

.bg_main_danger_color {
    background-color: var(--danger-basic)
}

.bg_fb_color {
    background-color: var(--fb-color)
}

.bg_line_color {
    background-color: var(--line-color)
}

.bg_black_dark {
    background-color: var(--black-dark) !important
}

.bg_black_basic {
    background-color: var(--black-basic) !important
}

.bg_black_light {
    background-color: var(--black-light) !important
}

.text_main_gray {
    color: var(--black-basic)
}

.text_sub_grey {
    color: var(--black-deep)
}

.text_black_dark {
    color: var(--black-dark) !important
}

.text_black_basic {
    color: var(--black-basic) !important
}

.text_black_light {
    color: var(--black-light) !important
}

.text_blue_basic {
    color: var(--blue-basic) !important
}

.text_other_color {
    color: var(--blue-basic)
}

.background_light_grey {
    background-color: var(--light-color) !important
}

.box_shadow {
    box-shadow: var(--box-shadow);
}

.font_xs {
    font-size: var(--text-xs);
}

.font_sm {
    font-size: var(--text-sm);
}



/* ============================== color&text end ============================== */

/* ============================== share start ============================== */

.share_area {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.share_area .ac_SocietyItem {
    margin-left: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.share_area .ac_SocietyItem:hover {
    opacity: 0.8;
}

.share_area .ac_SocietyItem.share_link {
    background-color: var(--blue-basic);
}

.share_area .ac_SocietyItem.share_fb {
    background-color: #4064AC;
}

.share_area .ac_SocietyItem.share_line {
    background-color: #07C052;
}

.share_area .ac_SocietyItem a {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    color: #fff;
}

.share_area .ac_SocietyItem a:hover {
    color: #fff;
}

.share_area .ac_SocietyItem a img {
    margin-right: 8px;
}

.share_area .ac_SocietyItem a div {
    display: flex;
    justify-content: flex-start;
}

.share_area .image_society {
    width: 30px;
    height: 30px;
}

.precautions_check_area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.precautions_check_area input {
    margin-right: 5px;
    height: 20px;
    width: 20px;
}

.precautions_check_area span {
    color: var(--blue-basic);
}

@media (max-width: 1239px) {
    .share_area .ac_SocietyItem a div {
        justify-content: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .share_area .ac_SocietyList {
        flex-direction: column;
    }

    .share_area .image_society {
        width: 24px;
        height: 24px;
    }

    .share_area .ac_SocietyItem.share_link a div span:first-child {
        display: none;
    }

    .share_area .ac_SocietyItem.share_link a div span:last-child {
        display: inline-block;
    }

    .share_area .ac_SocietyItem a div span:last-child {
        display: none;
    }

    .share_area .ac_SocietyItem {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 575px) {
    .share_area {
        margin-bottom: 0;
    }
}

/* ============================== share end =================================== */

/* ============================== google icon start =================================== */

.material-symbols-outlined {
    font-weight: 300;
    font-size: 48px;
}

span.size-20 {
    font-size: 20px;
    font-variation-settings: 'OPSZ' 20;
}

span.size-24 {
    font-size: 24px;
    font-variation-settings: 'OPSZ' 24;
}

span.size-40 {
    font-size: 40px;
    font-variation-settings: 'OPSZ' 40;
}

span.size-48 {
    font-size: 48px;
    font-variation-settings: 'OPSZ' 48;
}

/* ============================== google icon end =================================== */

/* ============================== index start ============================== */

/* ===== carousel start ===== */

.ac_Carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 56px;
}

.carousel_banner_content {
    background-image: url('../../assets/images/banner_illustrate.jpg ');
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel_banner_content:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(136deg, rgba(2, 12, 20, 0.8), rgba(40, 64, 104, 0.3));
    background: linear-gradient(136deg, rgba(2, 12, 20, 0.8), rgba(40, 64, 104, 0.3));
    z-index: 1;
    display: inline-block;
}

.carousel_content {
    display: block;
    width: 100%;
}

.carousel_content .ac_CardBlock_content,
.carousel_content .ac_CardBlock_image {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

@media (max-width:1199px) {

    .carousel_content .ac_CardBlock_content,
    .carousel_content .ac_CardBlock_image {
        padding: 1rem;
    }
}

@media (max-width:991px) {
    .carousel_content .ac_CarouselHorizontal {
        flex-direction: column;
        align-items: center;
    }

    .carousel_content .ac_CardBlock_image {
        max-width: 600px;
        width: 100%;
    }
}

/* ===== carousel end ===== */

/* ===== feature start ===== */

.feature_body_content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    border: 0.5px solid var(--black-e)
}

.feature_item {
    width: 33.3333%;
}

.feature_list {
    padding: 3rem;
    text-align: center;
    background-color: #fff;
    border: 0.5px solid var(--black-e);
}

.feature_list .feature_title_block {
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
}

.feature_list .feature_text_block {
    height: 50px;
    color: var(--black-deep);
    font-weight: var(--text-light);
}

.feature_list:hover {
    box-shadow: 0 0 40px rgba(200, 200, 200, 0.25);
    position: relative;
    z-index: 1;
}

.feature_list:hover .pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        font-variation-settings: 'wght' 100;
    }

    50% {
        font-variation-settings: 'wght' 300;
    }

    100% {
        font-variation-settings: 'wght' 100;
    }
}

@media (max-width: 991px) {
    .feature_list {
        padding: 2rem 1rem;
    }
}

@media (max-width: 767px) {
    .feature_item {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .feature_list {
        padding: 1rem;
        height: 210px;
    }

    .feature_list .feature_text_block {
        min-height: 80px;
    }
}

/* ===== feature end ===== */

/* ===== banner transition start ===== */

.banner_transition_content {
    background-image: url('../../assets/images/banner_transition.jpg ');
    background-repeat: no-repeat;
    height: 460px;
    width: 100%;
    background-size: cover;
    background-attachment: fixed
}

.banner_transition_content:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 460px;
    background: -webkit-linear-gradient(136deg, rgba(2, 12, 20, 0.8), rgba(40, 64, 104, 0.3));
    background: linear-gradient(136deg, rgba(2, 12, 20, 0.8), rgba(40, 64, 104, 0.3));
    z-index: 1;
    display: inline-block;
}

@media (max-width: 1199px) {
    .banner_transition_content {
        background-attachment: scroll
    }
}

@media (max-width: 767px) {


    .banner_transition_content {
        background-position: top;
    }

    .banner_transition_content,
    .banner_transition_content:before {
        height: 260px;
    }
}

@media (max-width: 575px) {

    .banner_transition_content,
    .banner_transition_content:before {
        height: 150px;
    }
}

/* ===== banner transition end ===== */

/* ===== banner illustrate start ===== */

.banner_illustrate_content {
    background-image: url('../../assets/images/banner_illustrate.jpg ');
    background-repeat: no-repeat;
    height: 400px;
    width: 100%;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
}

.banner_illustrate_body {
    background-color: #fff;
    padding: 4rem;
    width: 50%;
}

/* ===== banner illustrate end ===== */

/* ===== compare end ===== */

.compare_section {
    background: url(../../assets/images/compare_bg.png)center center no-repeat;
    background-size: cover;
    width: 100%;
    background-color: var(--white);
    padding: 7rem 0;
    background-position-y: 18rem;
}

.compare_section .compare_content {
    display: flex;
}

.compare_section .compare_content .card_block {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.compare_section .compare_content .card_block .icon_block {
    width: 100%;
    height: 130px;
}

.compare_section .compare_content .card_block.free .icon_block {
    background: url(../../assets/images/compare_icon_free.png)center center no-repeat;
}

.compare_section .compare_content .card_block.fee .icon_block {
    background: url(../../assets/images/compare_icon_fee.png)center center no-repeat;
}

.compare_section .compare_content .card_block .text_block {
    margin: 15px 0 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.compare_section .compare_content .card_block .text_block .title_div {
    font-size: var(--text-3xl);
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.compare_section .compare_content .card_block .text_block .text_div {
    font-size: var(--text-md);
    letter-spacing: 1px;
    color: var(--black-7);
    width: 230px;
    height: 70px;
}

.compare_section .compare_content .card_block.fee .text_block .title_div:after {
    content: "";
    background: url(../../assets/images/compare_icon_title.png)center center no-repeat;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -60px;
    transform: translateX(-40px);
}

.compare_section .compare_content .card_block.fee .text_block .title_div:before {
    content: "";
    width: 145px;
    height: 20px;
    background-color: #FFC738;
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    z-index: -1;
    transform: translateX(-10px);
}

.compare_section .compare_content .card_block .text_block .text_div li {
    list-style: auto;
}

.compare_section .compare_content .card_block .img_block {
    width: 100%;
    height: 470px;
}

.compare_section .compare_content .card_block.free .img_block {
    background: url(../../assets/images/compare_img_free.png)center center no-repeat;
    background-size: 190px;
    background-position-y: 40px;
}

.compare_section .compare_content .card_block.fee .img_block {
    background: url(../../assets/images/compare_img_fee.png)center center no-repeat;
}

@media (max-width: 1199px) {
    .compare_section .compare_content .card_block .img_block {
        height: 440px;
    }

    .compare_section .compare_content .card_block.free .img_block {
        background-size: 180px;
        background-position-y: 50px;
    }

    .compare_section .compare_content .card_block.fee .img_block {
        background-size: 460px;
    }

    .compare_section .compare_content .card_block .text_block {
        margin: 15px 0 30;
    }
}

@media (max-width: 991px) {
    .compare_section .container {
        max-width: 100%;
    }

    .compare_section .compare_content .card_block .text_block {
        margin: 15px 0 0;
    }

    .compare_section .compare_content .card_block.free .img_block {
        background-size: 150px;
        background-position-y: 60px;
    }

    .compare_section .compare_content .card_block.fee .img_block {
        background-size: 370px;
        background-position-y: 30px;
    }

    .compare_section .compare_content .card_block .img_block {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .compare_section .compare_content {
        flex-wrap: wrap;
    }

    .compare_section .compare_content .card_block {
        width: 100%;
        margin-bottom: 40px;
    }

    .compare_section .compare_content .card_block .text_block {
        margin: 0;
    }

    .compare_section .compare_content .card_block.free .img_block {
        background-position-y: 0px;
    }
}

@media (max-width: 575px) {
    .compare_section {
        padding: 3rem 0;
    }
}

@media (max-width: 420px) {
    .compare_section .compare_content .card_block.fee .img_block {
        background-size: 330px;
    }
}

/* ===== compare start ===== */

/* ===== customized start ===== */

.customized_section {
    background: var(--white);
    position: relative;
    padding: 0;
    margin-top: 12rem;
}

.customized_content {
    color: var(--blue-dark);
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

.customized_header {
    flex: 0 0 40%;
    position: relative;
    z-index: 2;
    padding: 6rem 3rem 6rem 4rem;
}

.customized_header::before {
    position: absolute;
    height: 50%;
    width: 4px;
    content: "";
    left: 10px;
    bottom: 0;
    background-color: var(--black-1);
    z-index: -1;
}

.customized_header::after {
    position: absolute;
    height: 20%;
    width: 40px;
    content: "";
    left: 0;
    bottom: 0;
    background-color: var(--blue-dark);
    opacity: 0.2;
    z-index: -1;
}

.customized_header .theme_title_content {
    margin-bottom: 0.5rem;
}

.customized_header .theme_subtitle_content {
    margin-bottom: 2rem;
}

.customized_body {
    position: relative;
    flex: 0 0 60%;
}

.customized_body::before {
    width: 55vw;
    height: 55%;
    position: absolute;
    content: "";
    bottom: 0;
    right: -11%;
    bottom: 50%;
    transform: translateY(50%);
    background-color: var(--blue-dark);
    opacity: 0.2;
}

.customized_img_block {
    position: absolute;
    bottom: 0;
}

@media (max-width: 1439px) {
    .customized_section {
        margin-top: 6rem;
    }

    .customized_content {
        width: 100%;
    }

    .customized_body::before {
        right: -15px;
    }

    .customized_header {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (max-width: 1199px) {
    .customized_section {
        margin-top: 4rem;
    }

    .customized_header {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (max-width:991px) {
    .customized_content {
        display: flex;
        flex-direction: column;
        padding-bottom: 3rem;
    }

    .customized_header {
        margin-bottom: 2rem;
    }

    .customized_header,
    .customized_body {
        flex: 0 0 100%;
    }

    .customized_header::before {
        height: 4px;
        width: 35%;
        left: -15px;
        bottom: 10px;
    }

    .customized_header::after {
        height: 40px;
        width: 20%;
        left: -15px;
        bottom: 0;
    }

    .customized_img_block {
        position: relative;
    }
}

@media (max-width:991px) {
    .customized_section {
        margin-top: 0rem;
    }
}

@media (max-width:575px) {
    .customized_header {
        padding: 2rem 1rem;
    }
}

/* ===== customized end ===== */

/* ===== program start ===== */


.program_item {
    cursor: pointer;
    position: relative;
}

.program_item:hover .program_list {
    border: 2px solid var(--blue-basic);
    box-shadow: var(--box-shadow);
    transition: 0.5s;
}

.program_item:hover .ac_BtnColorGradient_gray,
.program_item:hover .ac_BtnColorGradient {
    opacity: .8;
    transform: scale(1.2);
}

.program_item:hover .ac_BtnColorGradient_gray {
    border: 0 !important;
    background: linear-gradient(136deg, var(--blue-deep), var(--blue-basic)) !important;
    color: var(--white) !important;
}

.program_item.active .ac_BtnColorGradient_gray {
    border: 0 !important;
    background: linear-gradient(136deg, var(--blue-deep), var(--blue-basic)) !important;
    color: var(--white) !important;
    transform: scale(1.2);
}

.program_item.active .program_list {
    border: 2px solid var(--blue-basic);
    box-shadow: var(--box-shadow);
    transition: 0.5s;
}

.program_item .program_btn {
    margin-bottom: 0;
}

.program_list {
    background-color: #fff;
    border-radius: 1rem;
    padding: 3rem 1rem;
    border: 2px solid var(--black-f);
    text-align: center;
    position: relative;
}

.tag_block {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-20px, 18px);
    background-color: var(--warning);
    font-weight: normal;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    -webkit-box-shadow: 1px 1px 5px var(--black-c);
    -moz-box-shadow: 1px 1px 5px var(--black-c);
    box-shadow: 1px 1px 5px var(--black-c);
}

.program_title_block {
    position: relative;
    margin-bottom: 2rem;
}

.program_title_block::before {
    width: 20px;
    height: 2px;
    background-color: var(--blue-basic);
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -10px;
}

.price_month_block {
    margin-bottom: 1rem;
}

.price_month_block .price_block {
    font-size: var(--text-5xl);
}

.discount_block {
    position: relative;
    font-size: var(--text-xs);
    padding: 4px 16px;
    background-color: var(--danger-basic);
    color: #fff;
    border-radius: 3px
}

.discount_block::before {
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #fff;
    content: "";
    position: absolute;
    left: 5px;
    transform: translate(0, 50%);
    bottom: 50%;
}

@media (max-width:991px) {
    .program_content .row {
        margin-right: -6px;
        margin-left: -6px;
    }

    .program_content .col_basic {
        padding-left: 6px;
        padding-right: 6px;
    }
}

@media (max-width:767px) {
    .program_content .row {
        margin-right: initial;
        margin-left: initial;
    }

    .program_content .col_basic {
        padding-left: initial;
        padding-right: initial;
    }
}

/* ===== program end ===== */

/* ===== modal end ===== */

.modal_body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
}

.modal_body .modal_program_title {
    margin-bottom: 1rem;
    color: var(--black-9);
}

.modal_body .modal_program_text {
    color: var(--blue-basic);
    font-size: var(--text-2xl)
}

/* ===== modal start ===== */

/* ============================== index end ============================== */

/* ============================== partner list start ============================== */

.partner_list_section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-right: -6px;
    margin-left: -6px;
}

.partner_list_area {
    width: 50%;
    flex: 0 0 50%;
    -ms-flex: 50%;
    padding: 3px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.partner_list_area .partner_list_mask {
    position: absolute;
    content: "";
    background-color: var(--black-80);
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: .5s;
    display: flex;
    flex-direction: column;
}

.partner_list_area:hover .partner_list_mask {
    opacity: 1;
}

.partner_list_mask img {
    width: 80px;
    height: auto;
}

.partner_list_mask h5 {
    margin-top: 1rem;
    color: #fff;
    margin-bottom: 0;
}

.partner_info_list {
    display: flex;
}

.partner_info_list .partner_small_img_area {
    width: calc(100% / 3);
    flex: 0 0 calc(100% / 3);
    -ms-flex: calc(100% / 3);
}

.partner_info_list .partner_text_area {
    width: calc(100% / 3 * 2);
    flex: 0 0 calc(100% / 3 * 2);
    -ms-flex: calc(100% / 3 * 2);
}

.partner_text_area p {
    font-size: 18px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.partner_small_img_area,
.partner_text_area,
.partner_big_img_area {
    padding: 3px;
}

.partner_text_content {
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width:1199px) {
    .partner_list_area {
        width: 50%;
        padding: 3px;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .partner_text_area p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .partner_list_section {
        flex-direction: column;
    }

    .partner_list_area {
        width: 100%;
        flex: 0 0 100%;
        -ms-flex: 100%;
    }
}

.partner_text_content {
    padding: 1.5rem 2rem;
}

.partner_text_area p {
    font-size: 18px;
}

.partner_text_change_content,
.partner_images_change_content {
    flex: 100%;
    display: flex;
    position: relative;
}

@media (max-width: 767px) {
    .partner_text_change_content {
        flex: 100%;
        order: 1;
    }

    .partner_images_change_content {
        flex: 100%;
        order: 2;
    }

    .partner_text_area p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .partner_text_area p {
        font-size: 16px;
    }

    .partner_text_content {
        padding: 1.25rem;
    }
}

@media (max-width: 420px) {
    .partner_text_content {
        padding: 0.5rem;
    }

    .partner_text_area p {
        font-size: 14px;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 360px) {
    .partner_text_content {
        padding: 0.5rem;
    }

    .partner_text_area p {
        font-size: 14px;
        -webkit-line-clamp: 4;
    }
}

/* ============================== partner list end ============================== */

/* ============================== partner page start ============================== */

.partner_footer_area {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.partner_footer_list {
    width: 30%;
    max-width: 30%;
    text-align: center;
    -ms-flex: 30%;
    flex: 0 0 30%
}

.partner_footer_list h6 {
    margin-bottom: .75rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--black-20);
    color: var(--black-deep)
}

.partner_footer_list p {
    margin-bottom: .75rem;
    color: var(--black-deep);
    font-weight: 300;
    font-size: 20px
}

@media (max-width:991px) {
    .partner_footer_area {
        flex-direction: column;
        align-items: center
    }

    .partner_footer_list h6 {
        padding-bottom: 0;
        border-bottom: transparent
    }

    .partner_footer_list {
        margin-bottom: 1.25rem;
        width: 100%;
        max-width: 100%;
        border-bottom: 1px solid var(--black-20);
        -ms-flex: 100%;
        flex: 0 0 100%
    }
}

@media (max-width:575px) {
    .partner_footer_list h6 {
        margin-bottom: .25rem
    }
}

.partner_social_area {
    display: flex;
    margin-top: 4rem;
    flex-direction: row;
    align-items: center;
    justify-content: center
}

.partner_social_area span {
    margin-right: 10px;
    font-size: 18px
}

.partner_social_list {
    display: flex;
    align-items: center
}

.partner_social_list img {
    margin: 0 5px
}

.partner_social_list p {
    margin: 0
}

@media (max-width:575px) {
    .partner_social_area {
        margin-top: 2rem
    }
}

/* ============================== partner page end ============================== */

/* ============================== login start ============================== */

.login_section {
    padding: 6rem 0
}

.login_img_area {
    position: relative;
    overflow: hidden
}

.login_img_area img {
    display: flex;
    margin: 3rem auto 0;
    width: 100%;
    height: auto;
    max-width: 520px
}

.login_img_area img:last-of-type {
    display: none
}

.login_img_area a {
    z-index: 2;
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
    border: 3px solid #059b41;
    border-radius: 10px;
    background: #07c052;
    color: #fff;
    text-align: center;
    font-size: 21px
}

.login_img_area a:hover {
    opacity: .8
}

.login_img_area .recommender_area {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 200px;
    transform: translate(-50%, 75%)
}

.login_img_area .recommender_area>div p {
    margin-bottom: 5px
}

.account_login_share .login_img_area .recommender_area {
    transform: translate(-50%, 35%)
}

.account_login_share .login_img_area .recommender_area input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--black-10);
    border-radius: 0
}

.account_login_share .login_img_area a {
    margin-top: 35px;
    border: 3px solid var(--blue-basic);
    background: var(--blue-basic)
}

@media (max-width:767px) {
    .login_img_area a {
        font-size: 18px
    }
}

@media (max-width:575px) {
    .login_img_area img:first-of-type {
        display: none
    }

    .login_img_area img:last-of-type {
        display: block
    }

    .login_section {
        padding: 3rem 0
    }

    .login_section .text_H5_title {
        font-size: 20px
    }

    .login_section .text_H2_title {
        font-size: 30px
    }

    .login_img_area img {
        margin-top: 0;
        max-width: 420px
    }

    .login_img_area a {
        padding: 8px 12px;
        font-size: 16px
    }

    .login_img_area .recommender_area {
        transform: translate(-50%, 100%)
    }
}

/* ============================== login end ============================== */

/* ============================== member start ============================== */

/* upload start*/

.account_user_area {
    /* max-width: 240px; */
    width: 100%;
    margin: 0 auto;
}

.account_user_info .account_user_images {
    border-radius: 10px;
    /* padding: 0.5rem; */
    margin-bottom: 10px;
    overflow: hidden;
}

.account_user_info .account_user_btn {
    position: relative;
    overflow: hidden;
}

.account_user_info>div,
.account_user_info>div img {
    width: 100%;
}

.account_user_info .account_user_btn input {
    position: absolute;
    opacity: 0;
    right: 0;
    top: 0;
}

/* upload end*/

/* ========== member side menu end ========== */

ul.member_menu_area {
    padding: 0;
    margin: 0 0 2rem 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.member_menu_area li {
    background: #fff;
    margin: 0 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.member_menu_area li a,
ul.member_menu_area {
    position: relative;
    width: 100%
}

.member_menu_area li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 1rem;
    height: 50px;
    color: #686868;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 50px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.member_menu_area li a:hover {
    background: var(--black-f)
}

.member_menu_area li a:hover i {
    color: var(--blue-basic)
}

.member_menu_area span {
    display: flex;
    width: 20px;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-right: 8px
}

.member_menu_area i {
    color: var(--blue-basic);
    font-weight: 700;
    font-size: 20px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.member_menu_area li.selected {
    background-color: var(--blue-basic);
}

.member_menu_area li.selected a:hover {
    background-color: var(--blue-basic);
}

.member_menu_area li.selected a,
.member_menu_area li.selected i {
    color: #fff;
}

.member_menu_area li.selected a:hover,
.member_menu_area li.selected a:hover i {
    color: #fff;
}

@media (max-width:575px) {
    .member_menu_area li a {
        line-height: unset;
        flex-wrap: wrap;
        justify-content: center;
        height: 100%;
        padding: 0.4rem;
    }

    .member_menu_area span {
        margin: 0 2rem;
    }
}

/* ========== member side menu end ========== */

.page_member_area {
    display: block;
    width: 100%;
}

.content_info {
    margin: 0px auto;
    background: #fff;
    padding: 1.5rem;
    text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.effect-1.account_edit_input {
    padding-right: 60px;
    background-color: var(--black-f);
}

.button-a.account_edit_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--blue-basic);
    color: #fff;
    padding: 7px 10px
}

.content_input_all {
    width: 100%;
    margin: 0 auto;
}

.content_input_item {
    position: relative;
    display: inline-block;
    width: 100%;
}

.member_area {
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 1.8rem 0 2rem;
}

.member_area .cart {
    padding: 0;
}

.member_area .cart .items {
    padding: 15px 0;
}

.member_area .subtotal ul {
    padding: 0em;
}

.member_area .subtotal .totalRow .value {
    width: 120px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .member_area {
        padding-top: 0;
    }
}

@media screen and (max-width: 480px) {
    .content_input_all {
        padding: 0 0px;
    }
}

#search_form {
    display: inline-block;
    width: 100%
}

#search_form span {
    float: left;
    line-height: 34px
}

#search_form #rangetime {
    width: 200px;
    display: block;
    float: left;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: none
}

.reward_table table tr th,
.reward_table table tr td {
    text-align: center;
    vertical-align: middle
}

.input_col-3 {
    width: 100%;
    margin: 0 0 0.25rem 0;
    position: relative;
}

.input_col-3 input {
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
}

.effect-1 {
    border: 0;
    padding: 7px 7px;
    border-bottom: 1px solid var(--black-15);
}

.effect-1~.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue-basic);
    transition: 0.4s;
}

.effect-1:focus~.focus-border {
    width: 100%;
    transition: 0.4s;
}

.address_input .ac_SelectItem.ac_SelectColorLight select {
    color: var(--black-basic);
    background-color: #fff;
    font-weight: 400;
    box-shadow: 0 0 3px rgb(200 200 200 / 30%);
}

.address_input .ac_SelectItem.ac_SelectMedium .select__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-basic);
}

.address_input .ac_SelectItem.ac_SelectColorLight .select__arrow::before {
    display: none;
}

.input_col-3 select {
    height: 39px;
    width: 100%;
}

input.input_readonly {
    background-color: var(--black-f);
    padding: 7px 7px;
    cursor: no-drop;
}

.cart_inputtext {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--black-7)
}

.cart_inputtext span {
    margin-left: 5px;
}

.cart_inputtext span.remark {
    font-size: 12px;
    color: var(--blue-basic);
}

.cart_inputtext_span {
    margin-left: 15px;
    color: #535353;
    font-size: 13px;
    float: right;
}

.all_btn_area {
    text-align: center;
    display: inline-block;
    width: 100%
}

.all_btn {
    background-color: #444444;
    border: medium none;
    color: #fff;
    font-size: 13px;
    font-weight: 100;
    height: 40px;
    line-height: 40px;
    margin-bottom: 15px;
    padding: 0 12px;
    text-align: center;
    text-transform: uppercase;
    width: 120px;
    display: inline-block;
    border-radius: 12px;
    margin: 10px 2px 15px;
    border: solid 1px;
    float: none;
    cursor: pointer;
    font-weight: 600;
}

.all_btn:hover {
    background-color: var(--blue-basic);
    color: #fff;
}

.all_btn.whiteall_btn {
    background: #fff;
    color: #a7a7a7;
    border: solid 1px #a7a7a7
}

/*address start*/

.page_address_item {
    display: flex;
    width: 100%;
    background: #f7f7f7;
    margin-bottom: 15px;
    padding: 10px 5px 10px 15px
}

.address_item_name {
    margin: 0 5px 0 0;
    display: inline-block
}

.address_item_phone {
    margin: 0 5px;
    display: inline-block
}

.address_item_address {
    margin: 0 5px;
    display: inline-block
}

.address_btn {
    width: 100px;
    height: 39px;
    border: solid 1px #555;
    color: #555;
    display: inline-block;
    text-align: center;
    line-height: 39px;
    vertical-align: middle
}

.address_btn:hover,
.address_btn:focus {
    border: solid 1px #e13e84;
    color: #e13e84
}

.address_btn i {
    margin-right: 5px
}

.modal_address_area {
    display: inline-block;
    width: 100%;
    position: relative
}

.modal_address_store {
    display: inline-block;
    width: 100%;
    border: solid 1px #e13e84;
    background: #e13e84;
    color: #fff;
    text-align: center;
    line-height: 45px;
    margin-top: 15px;
    margin-bottom: 15px
}

.modal_address_store:hover,
.modal_address_store:focus {
    border: solid 1px #e13e84;
    background: #fff;
    color: #e13e84
}

@media screen and (max-width:767px) {
    .address_item_phone {
        margin: 0 0
    }

    .address_item_address {
        margin: 0 0
    }

    .address_btn {
        width: 80px
    }
}

/*address end*/

/* ============================== datatable start ============================== */

@media screen and (max-width: 640px) {

    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        text-align: left;
    }
}

/* ============================== datatable end ============================== */

/* ============================== order start ============================== */

.orderinfoarea {
    text-align: left;
    padding: 1rem 1.5rem;
    color: #888;
    width: 100%;
}

.orderinfoarea .upgrade_button p button {
    margin-left: 5px;
    max-width: 160px
}

.orderinfo_list {
    display: flex;
    min-height: 42px;
    margin-bottom: 2px;
    flex-direction: row;
    align-items: center;
}

.orderinfo_list.share_button .member_accounts_share_area {
    width: 100%;
    display: flex;
}

.orderinfo_list.share_button .member_accounts_share_area .input-group {
    align-items: center;
}

.orderinfo_list p {
    color: var(--black-5);
    margin-bottom: 0;
    white-space: nowrap;
}

.orderinfo_list p b {
    color: var(--blue-basic);
    font-size: 18px;
}

.orderinfo_list p a {
    font-size: 12px;
    color: var(--blue-basic);
    margin-left: 10px;
    text-decoration: underline
}

.link_share {
    color: #fff;
    margin-bottom: 15px;
    padding: 6px 10px;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 6px;
    margin: 0 0 0 3px;
    border: solid 2px var(--black-10);
    font-size: 14px;
    max-width: 116px;
    width: 100%;
    cursor: pointer;
}

.link_share:hover {
    opacity: 0.8;
    color: #fff
}

@media screen and (max-width: 1199px) {
    .orderinfo_list {
        font-size: 16px;
    }

    .orderinfo_list.share_button {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 991px) {
    .orderinfo_list.share_button .member_accounts_share_area {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .orderinfo_list.share_button .member_accounts_share_area .input-group {
        max-width: 240px;
    }

    .member_accounts_share_area .input-group,
    .orderinfo_list.share_button .member_accounts_share_area .link_share {
        margin: 4px 4px 0 0
    }
}

@media screen and (max-width: 767px) {
    .orderinfo_list .share_button {
        flex-wrap: wrap;
    }

    .orderinfo_list.share_button {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width:575px) {
    .orderinfoarea {
        padding: 1rem 0;
    }

    .orderinfoarea .upgrade_button p {
        display: flex;
        flex-direction: column;
    }

    .orderinfoarea .upgrade_button p span,
    .orderinfoarea .upgrade_button p span a {
        margin-left: 0;
    }

    .orderinfo_list .share_button {
        width: 100%;
        flex: 0 0 100%;
        -ms-flex: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .orderinfo_list.share_button .member_accounts_share_area .link_share,
    .orderinfo_list.share_button .member_accounts_share_area .input-group {
        max-width: 100%;
    }
}

.electronic_card_area ul li a {
    color: inherit;
}

.electronic_card_header .order_page_card_title {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.electronic_card_header .order_page_card_title input {
    margin-right: 0.25rem;
}

.electronic_card_header .order_page_card_title input {
    margin-right: 0.25rem;
}

.tab_area.electronic_card_area {
    width: 100%;
}

.tab_area.electronic_card_area .nav.nav-pills {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px so #ccc;
    border-bottom: 1px dotted var(--black-9);
}

.tab_area.electronic_card_area .input-group-text {
    padding: 0;
    background-color: #fff;
    position: relative;
    align-items: center;
    justify-content: center;
}

.tab_area.electronic_card_area .input-group-text a,
.tab_area.electronic_card_area .input-group-text input[type="color"],
.tab_area.electronic_card_area .input-group-text input[type="button"] {
    border: 0;
    width: 34px;
    height: 34px;
    background-color: #fff;
    border-radius: 100%;
    cursor: pointer;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab_area.electronic_card_area .input-group-text .material-symbols-outlined {
    position: absolute;
    font-size: 24px;
    font-weight: 400;
    pointer-events: none
}

@media (max-width:575px) {
    .electronic_card_header .order_page_card_title {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
}

.electronic_card_button {
    display: none
}

@media (max-width:575px) {
    .electronic_card_button {
        display: inline-block
    }
}

.member_type a {
    font-size: 12px;
    color: var(--blue-basic);
    margin-left: 10px;
    text-decoration: underline;
}

@media (max-width:575px) {
    .member_type {
        display: flex;
        flex-direction: column;
    }

    .member_type a {
        margin-left: 0;
    }
}

/* ============================== order end ============================== */

/* ============================== order list start ============================== */

.hide_web {
    display: none
}

@media screen and (max-width: 767px) {
    .hide_web {
        display: inline-block;
        font-size: 14px;
        color: var(--blue-basic)
    }
}

.material_table {
    padding: 0
}

.material_table table {
    width: 100%
}

.material_table table tr td a.m_order_font {
    color: var(--blue-basic);
    text-decoration: underline;
}

.material_table table tr td a.m_order_store {
    color: #444;
    font-weight: 600
}

.material_table table tr td a.order_atm_btn {
    color: #007bff;
    text-decoration: underline
}

.material_table table tr td a.order_atm_btn:hover {
    color: #0056b3;
}

.member_area .table-responsive {
    margin-bottom: 40px;
    margin-top: 25px;
    padding: 15px 10px;
    background: #fff;
    box-shadow: 1px 1px 4px #dedede;
}

.material_table table tr td a.m_order_qa {
    color: #333;
    font-weight: 600;
    text-decoration: underline;
}

.material_table .table-footer {
    height: 56px;
    padding-left: 24px;
    padding-right: 14px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.54)
}

.material_table .table-footer .dataTables_length {
    display: -webkit-flex;
    display: flex
}

.material_table .table-footer label {
    color: rgba(0, 0, 0, 0.54);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center
}

.material_table .table-footer .select-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center
}

.material_table .table-footer .dataTables_info,
.material_table .table-footer .dataTables_length {
    margin-right: 32px
}

.material_table .table-footer .material-pagination {
    display: flex;
    -webkit-display: flex;
    margin: 0
}

.material_table .table-footer .material-pagination li:first-child {
    margin-right: 24px
}

.material_table .table-footer .material-pagination li a {
    color: rgba(0, 0, 0, 0.54)
}

.material_table .table-footer .select-wrapper input.select-dropdown {
    margin: 0;
    border-bottom: none;
    height: auto;
    line-height: normal;
    width: 40px;
    text-align: right
}

.material_table .table-footer select {
    background-color: transparent;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    height: auto;
    margin-left: 20px
}

.material_table table tr td {
    /* height: 48px; */
    /* padding: 7px 18px; */
    color: var(--black-basic);
    border-bottom: solid 1px var(--black-f);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.material_table table tr:last-child td {
    border-bottom: none;
}

.material_table table tr td.td_store {
    white-space: normal;
}

.material_table table tr td a {
    color: inherit
}

.material_table table tr td a i {
    color: rgba(0, 0, 0, 0.54);
    font-size: 1.2rem;
}

.material_table table th {
    font-weight: 500;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
    outline: none !important;
    background: #f9f9f9;
    text-align: left
}

.material_table .dataTable thead th,
.material_table .dataTable thead td {
    border-bottom: 1px solid var(--black-10);
}

.material_table .dataTable.no-footer {
    border-bottom: 1px solid var(--black-10);
}

.material_table table tbody tr:hover {
    background-color: var(--black-f);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background-color: var(--blue-basic);
    background: var(--blue-basic);
    border: transparent;
    color: var(--white) !important;
    border-radius: 100%;
    width: 40px;
    height: 40px;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    top: 50%;
    transform: translateY(-50%);
    height: 28px;
}

.dataTables_empty {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.member_coin_area {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    margin-bottom: 1rem;
}

/* ============================== order list end ============================== */

/* ============================== order page start ============================== */

.order_page_card_area {
    margin: 0px auto;
    background: #fff;
    display: block;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 0 4px #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.order_page_card_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.card_item_list {
    width: 100%;
    flex: 0 0 100%;
    -ms-flex: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
}

.order_page_card_header {
    color: var(--black-1);
    background-color: var(--black-f);
}

.order_page_card_title {
    padding: 0.75rem 1.25rem;
    font-size: var(--text-lg);
}

.order_page_card_body {
    background-color: #fff;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.order_page_card_info {
    padding: 1.25rem;
    width: 100%;
}

.order_page_card_info>p {
    border-bottom: dashed 1px var(--black-10);
    width: 100%;
    padding-bottom: 1rem;
}

.order_page_card_info>p span {
    font-size: 18px;
    color: var(--blue-basic);
    margin: 0 3px;
}

.order_page_card_info>p:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.all_view_order_page .cart_one_store {
    margin-bottom: 0;
    box-shadow: none;
}

.all_view_order_page .cart_one_store .cart_item_info,
.all_view_order_page .cart_one_store .cart_type,
.all_view_order_page .cart_one_store .cart_unitprice,
.all_view_order_page .cart_one_store .cart_quantity,
.all_view_order_page .cart_one_store .cart_specification,
.all_view_order_page .cart_one_store .cart_itemcost,
.all_view_order_page .cart_one_store .cart_allbtn {
    color: var(--black-5)
}

.all_view_order_page .cart_one_store .cart_item_info {
    width: calc(100% - 460px);
    flex: calc(100% - 460px);
    -ms-flex: calc(100% - 460px);
}

.all_view_order_page .cart_one_store .cart_type,
.all_view_order_page .cart_one_store .cart_unitprice,
.all_view_order_page .cart_one_store .cart_itemcost,
.all_view_order_page .cart_one_store .cart_quantity {
    width: 80px;
    flex: 80px;
    -ms-flex: 80px;
}

.all_view_order_page .cart_specification {
    width: 140px;
    flex: 140px;
    -ms-flex: 140px;
}

@media (max-width: 1199px) {
    .all_view_order_page .cart_one_store .cart_item_info {
        width: calc(100% - 380px);
        flex: calc(100% - 380px);
        -ms-flex: calc(100% - 380px);
    }
}

@media (max-width: 991px) {

    .all_view_order_page .cart_one_store .cart_item_info,
    .all_view_order_page .cart_one_store .cart_allbtn {
        width: 100%;
        flex: 100%;
        -ms-flex: 100%
    }

    .all_view_order_page .cart_one_store .cart_quantity,
    .all_view_order_page .cart_one_store .cart_unitprice,
    .all_view_order_page .cart_one_store .cart_specification,
    .all_view_order_page .cart_one_store .cart_itemcost {
        width: 25%;
        flex: 25%;
        -ms-flex: 25%;
    }
}

@media (max-width: 575px) {

    .all_view_order_page .cart_one_store .cart_item_info,
    .all_view_order_page .cart_one_store .cart_allbtn {
        width: 100%;
        flex: 100%;
        -ms-flex: 100%
    }

    .all_view_order_page .cart_one_store .cart_quantity {
        width: 40%;
        flex: 40%;
        -ms-flex: 40%;
    }

    .all_view_order_page .cart_one_store .cart_specification {
        width: 35%;
        flex: 35%;
        -ms-flex: 35%;
    }

    .all_view_order_page .cart_one_store .cart_itemcost {
        width: 25%;
        flex: 25%;
        -ms-flex: 25%;
    }

    .order_page_card_info {
        padding: 1rem;
    }
}

/* ============================== order page end ============================== */

/* ============================== order page cancel start ============================== */

.all_cancel_order_page .cancel_basic_info_area .orderinfo_list {
    border-bottom: dashed 1px var(--black-10);
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    min-height: auto;
}

.all_cancel_order_page .cancel_basic_info_area .orderinfo_list:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.all_cancel_order_page .cart_item_other_totalprice p,
.cart_item_other_totalprice p:last-child {
    justify-content: space-between !important;
}

/* ============================== order page cancel end ============================== */

/* ============================== footer start ============================== */

.footer_section {
    background-image: url(' ../images/banner_footer.jpg ');
    background-repeat: no-repeat;
    /* height: 240px; */
    width: 100%;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_section:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--black-80);
    backdrop-filter: blur(4px);
}

.footer_section .footer_content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.footer_content {
    height: 100%;
    background-color: var(--white-10);
    padding: 1.5rem;
    width: 100%;
    border: 1px solid var(--white-10);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 575px) {
    .footer_content {
        width: 100%;
        padding: 1rem;
    }
}

.footer_logo_area a {
    color: #fff;
}

.footer_logo_area a img {
    width: 40px;
    height: auto;
    margin-bottom: 0.25rem;
}

.footer_logo_area a h4 {
    margin-bottom: 0;
}

.footer_basic_info_area {
    display: flex
}

.footer_basic_info_area .footer_info_area {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0.75rem;
}

.footer_basic_info_area .footer_info_area img {
    width: 60px;
    height: auto;
    border-radius: 3px;
    overflow: hidden;
}

.footer_basic_info_area .footer_info_area span {
    font-size: var(--text-lg);
    color: #fff;
    margin-left: 0.5rem;
}

.copyright_area {
    color: var(--black-basic)
}

.copyright_area p span {
    margin-left: 10px;
}

@media (max-width:1199px) {
    .copyright_area p span {
        display: flex;
        justify-content: flex-end;
    }
}

@media (max-width:991px) {
    .footer_basic_info_area .footer_info_area {
        margin-bottom: 15px;
    }

    .footer_basic_info_area .footer_info_area p,
    .copyright_area {
        text-align: center
    }

    .copyright_area p span {
        display: initial;
    }
}

@media (max-width:575px) {
    .ac_Footer .ac_CardBlock .ac_list-group .ac_list-group-item p {
        width: 100%;
    }

    .footer_basic_info_area {
        margin: 5px 0;
    }

    .copyright_area p {
        font-size: 12px
    }

    .copyright_area p span {
        display: flex;
        justify-content: center;
        margin-left: 0;
    }
}

/* ===== share_fixed start ===== */
.footer_share_fixed {
    position: fixed;
    bottom: 70px;
    right: 1.5rem;
    z-index: 98;
}

.footer_share_area {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.footer_share_area .footer_info_area {
    margin: 0.5rem 0;
}

.footer_share_area .footer_info_area img {
    width: 48px;
    height: auto;
    box-shadow: 3px 3px 10px #666;
    border-radius: 12px;
}

/* ===== share_fixed end ===== */

/* ============================== footer end ============================== */



/* ============================== shopping cart step start ============================== */

.circle_cart,
.circle_info,
.circle_accepted {
    border-radius: 50%;
    border: solid 1px var(--black-10);
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    margin: 0 10px;
    font-size: 18px;
    background: var(--blue-basic);
    color: #ffffff;
}

.circle_cart.shop_noactive,
.circle_info.shop_noactive,
.circle_accepted.shop_noactive {
    background-color: var(--black-f);
    color: #808688;
}

.cart_titile {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.mobile_circle,
.mobile_circle div,
.mobile_circle div div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile_circle div {
    flex-direction: column;
}

.mobile_circle>div {
    width: 110px
}

.mobile_circle span {
    margin-top: 3px;
    color: var(--black-7);
}

.cart_titile>.cart_bonus_area {
    width: 190px;
    color: #555;
    display: inline-block;
    text-align: right;
    vertical-align: middle
}

.cart_titile>img {
    width: 120px;
}

.cart_titile>h4>span.cn_text {
    font-size: 18px;
    margin-left: 15px;
}

@media screen and (max-width: 767px) {
    .cart_titile>.cart_bonus_area {
        width: 100%;
        text-align: center
    }

    .cart_titile {
        display: inline-block;
        width: 100%;
        position: relative;
        padding: 15px 0 5px 0
    }
}

/* ============================== shopping cart step end ============================== */

/* ============================== shopping 01 start ============================== */

.errorarea_other .errorarea {
    min-height: 22rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.errorarea_other .errorarea img {
    margin-bottom: 1rem;
}

/* ===== quantity start ===== */

.product_quantity {
    border: 1px solid var(--black-10);
    display: block;
    float: left;
    padding: 0px 30px;
    position: relative;
    background: #fff;
    width: 100%;
    border-radius: 5px;
}

.product_quantity input {
    border: medium none;
    height: 36px;
    text-align: center;
    /* width: 50px; */
    width: 100%;
}

.product_quantity span {
    cursor: pointer;
    display: block;
    height: 36px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 35px;
}

.product_quantity span i {
    display: block;
    font-size: 18px;
    line-height: 36px;
    background-color: var(--black-f)
}

.product_quantity span.inc {
    right: 0
}

.product_quantity span.dec {
    left: 0
}

.product_quantity {
    margin-bottom: 0;
    margin-right: 0;
    float: none
}

Ã£â€žÅ’.product_quantity input[type="text"] {
    padding: 7px 5px 7px;
    padding-left: 5px;
    border-bottom: none
}

/* ===== quantity end ===== */

/* ===== shopping list start ==== */

.cart_allinfo_area {
    margin-bottom: 2rem
}

.cart_one_store {
    background: #fff;
    display: inline-block;
    margin-bottom: .75rem;
    width: 100%;
    box-shadow: 0 0 4px #ccc
}

.cart_item_title_area {
    background: var(--black-f)
}

.cart_itemcost {
    color: var(--blue-basic);
}

.cart_item_title,
.cart_item_list {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: .75rem 1.25rem
}

.cart_item_list {
    border-bottom: solid 1px var(--black-f)
}

.cart_item_list:last-of-type {
    border-bottom: solid 1px transparent
}

.cart_item_title .cart_item_info,
.cart_item_title .cart_type,
.cart_item_title .cart_unitprice,
.cart_item_title .cart_quantity,
.cart_item_title .cart_specification,
.cart_item_title .cart_itemcost,
.cart_item_title .cart_allbtn {
    padding: 0
}

.cart_item_info,
.cart_specification,
.cart_type,
.cart_unitprice,
.cart_quantity,
.cart_itemcost,
.cart_allbtn {
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    padding: 5px
}

.cart_item_info {
    width: calc(100% - 660px);
    flex: 0 0 calc(100% - 660px);
    -ms-flex: calc(100% - 660px);
    text-align: left;
    display: flex;
    align-items: center
}

.cart_specification {
    width: 160px;
    flex: 160px;
    -ms-flex: 160px;
    text-align: left
}

.cart_type,
.cart_unitprice,
.cart_itemcost {
    width: 100px;
    flex: 100px;
    -ms-flex: 100px
}

.cart_quantity {
    flex: 140px;
    -ms-flex: 140px;
    width: 140px
}

.cart_allbtn {
    width: 60px;
    flex: 60px;
    -ms-flex: 60px
}

.cart_item_info_title_pc,
.cart_specification_pc,
.cart_type_pc {
    display: inline
}

.cart_item_info_title_mobile,
.cart_specification_mobile,
.cart_type_mobile {
    display: none
}

.cart_checkbox input {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    padding-right: 15px
}

.cart_checkbox span {
    vertical-align: middle;
    padding-right: 15px
}

.cart_item_info>a {
    display: flex;
    align-items: center
}

.cart_item_info a>img {
    width: 100%;
    max-width: 80px;
    vertical-align: middle;
    padding-right: 15px
}

.cart_item_info a .cart_product_text {
    color: #212529;
    display: inline-block;
    vertical-align: middle
}

.cart_allbtn_mobile {
    display: none
}

.cart_item_info_checkbox_mobile,
.cart_item_info_checkbox_mobile a {
    display: flex;
    align-items: center
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .cart_unitprice {
        display: none
    }

    .cart_item_info {
        width: calc(100% - 590px);
        flex: calc(100% - 590px);
        -ms-flex: calc(100% - 590px)
    }

    .cart_itemcost {
        width: 90px
    }
}

@media screen and (max-width: 991px) {

    .cart_item_title .cart_type,
    .cart_item_title .cart_unitprice,
    .cart_item_title .cart_quantity,
    .cart_item_title .cart_specification,
    .cart_item_title .cart_itemcost,
    .cart_item_title .cart_allbtn {
        display: none
    }

    .cart_item_info,
    .cart_type,
    .cart_unitprice,
    .cart_quantity,
    .cart_specification,
    .cart_itemcost,
    .cart_allbtn {
        padding: 10px 5px
    }

    .cart_item_info {
        width: 100%;
        flex: 100%;
        -ms-flex: 100%
    }

    .cart_specification {
        width: 27%;
        flex: 27%;
        -ms-flex: 27%
    }

    .cart_unitprice,
    .cart_itemcost {
        width: 18%;
        flex: 18%;
        -ms-flex: 18%
    }

    .cart_quantity {
        width: 25%;
        flex: 25%;
        -ms-flex: 25%
    }

    .cart_allbtn {
        width: 12%;
        flex: 12%;
        -ms-flex: 12%
    }

    .cart_item_info_checkbox_mobile {
        width: 100%;
        flex: 0 0 100%;
        -ms-flex: 100%;
        display: flex;
        align-items: center
    }

    .cart_item_info_title_mobile,
    .cart_type_mobile,
    .cart_allbtn_mobile {
        display: block
    }

    .cart_item_info_title_pc,
    .cart_specification_pc,
    .cart_type_pc,
    .cart_allbtn_pc {
        display: none
    }

    .cart_item_info a .cart_product_text {
        font-size: 16px;
        margin-bottom: 3px
    }

    .cart_specification_mobile,
    .cart_type_mobile {
        font-size: 14px;
        color: var(--black-7)
    }

    .cart_specification_mobile,
    .cart_item_info a .cart_product_text {
        display: inline;
        width: 100%;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical
    }

    .product_quantity input {
        font-size: 14px
    }
}

@media screen and (max-width: 767px) {
    .cart_unitprice {
        display: none
    }

    .cart_specification {
        width: 35%;
        flex: 35%;
        -ms-flex: 35%
    }

    .cart_itemcost {
        width: 25%;
        flex: 25%;
        -ms-flex: 25%
    }

    .cart_quantity {
        width: 30%;
        flex: 30%;
        -ms-flex: 30%
    }

    .cart_allbtn {
        width: 10%;
        flex: 10%;
        -ms-flex: 10%
    }
}

@media screen and (max-width: 575px) {
    .cart_allbtn_mobile {
        width: 40px;
        flex: 40px;
        -ms-flex: 40px
    }

    .cart_item_list {
        padding: .5rem
    }

    .cart_checkbox span,
    .cart_item_info a>img {
        padding-right: 10px
    }

    .cart_quantity {
        width: 40%;
        flex: 40%;
        -ms-flex: 40%
    }

    .cart_specification {
        width: 35%;
        flex: 35%;
        -ms-flex: 35%
    }

    .cart_itemcost {
        width: 25%;
        flex: 25%;
        -ms-flex: 25%
    }

    .cart_allbtn {
        width: initial;
        flex: initial;
        -ms-flex: initial
    }

    .cart_item_info a .cart_product_text {
        font-size: 15px;
    }

    .cart_specification_mobile,
    .cart_type_mobile {
        font-size: 13px;
    }
}

.cart_checkout_area {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.cart_checkout_area p {
    margin: 0 15px 0 0;
    font-size: 18px;
    font-weight: 400
}

.cart_checkout_area p span {
    margin-right: 8px
}

/* ===== shopping list end ===== */

/* ============================== shopping 01 end ============================== */

/* ============================== shopping 02 start ============================== */

.cart_info_area .cart_item_info {
    width: calc(100% - 600px);
    flex: 0 0 calc(100% - 600px);
    -ms-flex: calc(100% - 600px);
}

.cart_info_area .cart_item_other_area {
    display: flex;
    width: 100%;
    padding: 15px 0;
    justify-content: space-between;
}

.cart_info_area .cart_item_other_area>div {
    width: 60%;
    flex: 0 0 60%;
    -ms-flex: 60%;
}

.cart_info_area .cart_item_other_area>div:last-child {
    width: 40%;
    flex: 0 0 40%;
    -ms-flex: 40%;
}

.cart_info_area .cart_item_other_totalprice {
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart_item_other_totalprice p {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--black-5)
}

.cart_item_other_totalprice p:nth-last-child(2) {
    border-bottom: dashed 1px #ddd;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.cart_item_other_totalprice p:last-child {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 18px;
}

.cart_item_other_totalprice p .price_title {
    width: 100px;
}

.cart_item_other_totalprice p .price_number {
    padding: 0 15px;
    width: 120px;
    color: var(--blue-basic);
    text-align: right;
}

.cart_item_other_totalprice p .price_unit {
    width: 30px;
    text-align: right;
}

.cart_info_area .cart_item .cart_item_other_textarea {
    display: flex;
    flex-direction: column;
}

.cart_info_area .cart_item .cart_item_other_textarea textarea {
    resize: none;
    height: 100%;
    min-height: 120px;
}

@media screen and (max-width: 991px) {

    .cart_info_area .cart_item_info,
    .cart_info_area .cart_item_other_area>div,
    .cart_info_area .cart_item_other_area>div:last-child {
        width: 100%;
        flex: 0 0 100%;
        -ms-flex: 100%;
    }

    .cart_info_area .cart_item_other_area {
        flex-direction: column;
    }

    .cart_info_area .cart_item_other_totalprice {
        max-width: 100%;
        margin-top: 15px;
        margin-bottom: 10px;
        align-items: center;
    }
}

@media screen and (max-width: 575px) {
    .cart_info_area .cart_item_other_totalprice {
        max-width: 100%;
        margin-top: 15px;
        margin-bottom: 10px;
        align-items: center;
    }

    .cart_info_area .cart_item_other_totalprice p {
        padding-bottom: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .cart_info_area .cart_item_other_totalprice p {
        font-size: 16px;
    }

    .cart_info_area .cart_item_other_totalprice p:last-child {
        font-size: 20px;
    }
}

.payment_price_area {
    border-bottom: dashed 1px #ddd;
    width: 100%;
    margin-bottom: 1rem;
}

.payment_method_list,
.payment_method_input {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.payment_method_list {
    margin-bottom: 1rem;
}

.payment_method_list>input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.payment_method_title {
    display: flex;
    flex-direction: column;
    width: 120px;
    margin-right: 10px;
}

.payment_method_title p {
    margin-bottom: 0;
    color: var(--black-5);
}

.payment_method_title span {
    color: var(--blue-basic);
    font-size: 12px
}

.payment_method_input input {
    margin-right: 10px;
    max-width: 180px;
}

.payment_method_area button {
    background-color: var(--black-50);
    color: #fff;
    margin-bottom: 15px;
    padding: 10px 14px;
    text-align: center;
    text-transform: uppercase;
    width: 140px;
    display: inline-block;
    border-radius: 6px;
    margin: 0 2px;
    border: solid 1px var(--black-10);
}

.payment_method_area button.active {
    background-color: var(--blue-basic);
}

.cart_item_detail_area {
    width: 100%;
}

.cart_item_send_area {
    display: flex;
    align-items: center;
    width: calc(100% - 100px);
    padding: 0;
    vertical-align: middle;
    margin-bottom: 0;
    text-align: left;
}

.cart_item_send_area .forms-group.radio_nolosist {
    display: inline-block;
}

.cart_item_send_area p {
    width: calc(100% - 45px);
}

.cart_item_send_area .radio_nolosist label {
    margin-right: 15px;
}

.cart_item_send_price {
    display: inline-block;
    padding: 0;
    width: 100px;
    vertical-align: middle;
    margin-bottom: 0;
    text-align: center;
    color: #999;
    font-weight: 500;
    text-decoration: line-through
}

.cart_item_send_area p,
.cart_item_send_price p {
    margin-bottom: 0;
    vertical-align: middle;
    text-align: left;
}

.cart_item_send_price.add_color {
    color: var(--blue-basic);
    text-decoration: blink;
}

.cart_item_send_store {
    margin: 0 15px 0 0;
    color: var(--blue-basic);
    font-weight: 600;
    vertical-align: middle;
    width: 40px;
    white-space: nowrap;
}

.cart_item_send_information {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    padding-right: 15px;
    line-height: 1.4;
}

.cart_item_send_address {
    margin: 0 5px;
    display: inline-block;
}

.cart_item_send_edit {
    width: 90px;
    border: solid 1px #555;
    color: #555;
    display: flex;
    text-align: center;
    cursor: pointer;
    padding: 6px 10px;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
}

.cart_item_send_edit:hover,
.cart_item_send_edit:focus {
    border: solid 1px var(--blue-basic);
    color: var(--blue-basic);
}

.cart_item_send_edit i {
    margin-right: 5px;
}

.cart_item_send_no {
    font-weight: 600;
    display: inline-block;
}

.mobile_send_block {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 130px)
}

.cart_item_send_item {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    border-bottom: dashed 1px #ddd;
    line-height: 40px;
    padding-bottom: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 0 0 15px 0;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .cart_item_send_price {
        width: 70px;
    }

    .cart_item_send_area {
        width: calc(100% - 75px);
    }
}

@media screen and (max-width: 767px) {
    .cart_item_title {
        width: calc(100% - 80px)
    }

    .cart_item_send_item {
        flex-direction: column;
    }

    .cart_item_send_edit {
        width: 40px
    }

    .cart_item_send_edit i {
        margin: 0
    }

    .cart_item_send_area {
        width: 100%
    }

    .cart_item_send_information {
        width: calc(100% - 85px);
    }

    .cart_item_send_store {
        display: inline-block
    }

    .mobile_send_block {
        vertical-align: middle;
        width: 100%;
    }

    .cart_item_send_area p {
        width: calc(100% - 45px);
    }

    .cart_quantity {
        position: relative;
        width: inherit;
    }

    .cart_usepoints,
    .cart_itemcost {
        width: inherit;
    }

    .cart_item_send_area .hide_mobile {
        display: none;
    }

    .cart_item_send_area .radio_nolosist label {
        margin-right: 5px;
    }
}

@media screen and (max-width: 575px) {
    .cart_item_send_information {
        font-size: 14px;
        width: calc(100% - 80px);
        padding: 0;
    }

    .cart_item_send_address {
        margin: 0 0 0;
        width: 100%
    }

    .cart_item_send_edit {
        vertical-align: middle;
        width: 35px;
        height: 35px;
        line-height: 35px
    }

    .cart_item_send_item {
        line-height: 40px;
        padding: 10px;
        display: flex;
        flex-direction: column;
    }

    .cart_item_send_area p {
        width: calc(100% - 30px);
    }

    .mobile_send_block {
        line-height: 1.4
    }

    .cart_item_send_store {
        margin: 0 8px 0 0;
        display: inline-block;
        font-size: 14px
    }

    .cart_item_send_area .radio_nolosist label {
        margin-right: 0;
    }

    .mobile_send_block {
        display: inline-block;
        vertical-align: middle;
        width: calc(100% - 70px)
    }

    .cart_item_send_price {
        width: auto;
    }
}

/* ============================== shopping 02 end ============================== */