/* * {
    outline: 1px solid #e0e0e0;
} */

/*-----------------------------------------------
|   utilities
-----------------------------------------------*/
.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.shadow-custom {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 576px) {
    .d-sm-box {
        display: -webkit-box !important;
    }
}

@media (min-width: 768px) {
    .d-md-box {
        display: -webkit-box !important;
    }
}

@media (min-width: 992px) {
    .d-lg-box {
        display: -webkit-box !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-box {
        display: -webkit-box !important;
    }
}

@media (min-width: 1400px) {
    .d-xxl-box {
        display: -webkit-box !important;
    }
}

/*-----------------------------------------------
|   index_banner
-----------------------------------------------*/

/* .index_slick .index_slick_item .index_slick_item_bg{
    height: calc(100vh - 60px);
    position: relative;
}
.index_slick .index_slick_item .index_slick_item_bg::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    background-image: url("../images/index_banner_mask1.svg");
    background-position: right;
    background-size: cover;
}
.index_slick .index_slick_item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    height: 100vh;
    background: rgba(21, 39, 67, 0.7);
    mask: url(../images/index_banner_mask2.svg) no-repeat right center;
    -webkit-mask: url(../images/index_banner_mask2.svg) no-repeat right center;
    mask-size: cover;
    -webkit-mask-size: cover;
    box-shadow: 16px 16px 48px rgba(21, 39, 67, 0.176);
    z-index: 1;
} */

.main__title {
    font-size: 56px;
    line-height: 1.5;
    font-weight: 300;
    text-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    /* z-index: 9; */
}

.main__subtitle {
    font-size: 24px;
    position: relative;
    /* z-index: 9; */
}

.index_slick .index_slick_item .index_slick_item_bg {
    height: 100vh;
    /* height: calc(100vh + 60px); */
    background-position: 30% center;
}
.index_slick .index_slick_item .index_slick_item_bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.index_slick_item .slick-dots button {
    display: none;
}

.index_slick_item .slick-dots {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 40px;
    align-items: end;
    bottom: 50vh;
    bottom: calc(50vh - 60px);
}

.index_slick_item .slick-dots li {
    position: relative;
    width: 24px;
    height: 24px;
    margin: 0;
    border-radius: 50%;
}

.index_slick_item .slick-dots li::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    /* top: 0;
    right: 0;
    left: 0;
    bottom: 0; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* padding: 10px; */
}

.index_slick_item .slick-dots li:not(:last-child) {
    margin-bottom: 24px;
}

.index_slick_item .slick-dots li.slick-active {
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh; /* or other desired height */
}
.full-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}
@media (max-width: 1399px) {
    .main__title {
        font-size: 48px;
    }
}

@media (max-width: 1199px) {
    .main__title {
        font-size: 36px;
    }

    .main__subtitle {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .main__title {
        font-size: 32px;
    }

    .main__subtitle {
        font-size: 20px;
    }

    .index_slick_item .slick-dots {
        right: 20px;
    }
}

@media (max-width: 575px) {
    .index_slick_item .slick-dots {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        right: 0;
        bottom: 120px;
    }

    .index_slick_item .slick-dots li:not(:last-child) {
        margin-bottom: 0;
        margin-right: 16px;
    }
    .main__title {
        font-size: 24px;
    }

    .main__subtitle {
        font-size: 14px;
    }
}

/*-----------------------------------------------
|   vr image
-----------------------------------------------*/
.vr_img {
    display: block;
    position: relative;
    height: 640px;
    background-image: url(../images/vr_bg.jpg);
}

.vr_bg .vr_img::before {
    content: "";
    width: 40%;
    height: 60px;
    background-color: var(--bs-light);
    position: absolute;
    left: 0;
    bottom: 0;
}

.vr_bg .vr_img::after {
    content: "";
    width: 137px;
    height: 80px;
    background: url(../images/vr_btn.png) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

/* .vr_img:hover::after{
    transform: translateY(5px,5px);
} */
.vr_bg {
    background: linear-gradient(to bottom, transparent 10%, transparent 30%, var(--bs-light) 30%, var(--bs-light) 100%);
}

@media (max-width: 991px) {
    .vr_img::after {
        width: 70px;
        height: 40px;
        left: 60%;
    }

    .vr_img {
        height: 380px;
    }

    .vr_bg .vr_img::after {
        width: 64px;
        height: 40px;
        left: 60%;
    }
}

/*-----------------------------------------------
|   ROBOT SOULTION
-----------------------------------------------*/
.ton_group_bg {
    background: linear-gradient(to top, transparent 50%, var(--bs-light) 50%, var(--bs-light) 100%);
}

.ton_group {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    right: 0;
}

.ton_item {
    height: 200px;
    background-image: url(../images/ton_item_bg.jpg);
    position: relative;
    /* display: block; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #fff;
}

.ton_item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
}

.ton_item.ton_item_xs::after {
    background-color: rgba(24, 106, 153, 0.9);
}

.ton_item.ton_item_s::after {
    background-color: rgba(23, 84, 124, 0.9);
}

.ton_item.ton_item_m::after {
    background-color: rgba(22, 61, 96, 0.9);
}

.ton_item.ton_item_l::after {
    background-color: rgba(21, 39, 67, 0.9);
}

.ton_item .ton_item_icon{
    flex-wrap: wrap;
    justify-content: center;
}

.ton_item .ton_item_icon,
.ton_item .ton_item_text {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.ton_item .ton_item_text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.ton_item:hover .ton_item_icon {
    transform: translateY(-5px);
    transition: transform 0.4s ease;
}

@media (max-width: 991px) {
    .ton_item {
        height: 160px;
    }

    .ton_item .ton_item_text {
        font-size: 16px;
    }

    .ton_group_bg {
        background: linear-gradient(to top, transparent 70%, var(--bs-light) 70%, var(--bs-light) 100%);
    }
}

/*-----------------------------------------------
|   index_about
-----------------------------------------------*/
.index_about {
    height: 400px;
    background-image: url(../images/index_about_bg.jpg);
    position: relative;
}

.index_about .index_about_img {
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 470px;
    height: auto;
    filter: drop-shadow(0px 16px 48px rgba(0, 0, 0, 0.176));
}

@media (max-width: 767px) {
    .index_about .index_about_img {
        width: 340px;
        left: -10px;
    }

    .index_about {
        height: 280px;
    }
}

/*-----------------------------------------------
|   index_news
-----------------------------------------------*/
.title__deco--news::before {
    content: "";
    position: absolute;
    right: 0;
    top: -40px;
    height: 1px;
    background: #fff;
    /* width: calc(100% - 24px); */
    width: 100%;
}

.index_news_bg {
    /* min-height: 900px; */
    background: url(../images/index_news_bg.jpg) no-repeat left bottom;
    background-size: cover;
}

.index_news_bg .subtitle {
    position: absolute;
    left: 0;
    bottom: 80px;
}

.index_news_head {
    padding-top: 200px;
}

.index_news_nav .nav-link.active {
    color: var(--bs-secondary);
}

.index_news_nav .nav-link {
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}

.index_news_nav .nav-link.active::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    width: calc(100% - 32px);
    height: 1px;
    background-color: var(--bs-secondary);
}

.index_news_nav .nav-link:hover {
    color: var(--bs-secondary);
}

.index_news_nav {
    margin-top: calc(200px - 40px + 10px);
}

@media (max-width: 991px) {
    .index_news_head {
        padding-top: 100px;
    }

    .index_news_bg {
        padding-bottom: 40px;
        background-position: center;
    }

    .index_news_bg .subtitle {
        bottom: 60px;
    }

    .index_news_nav {
        margin-top: 60px;
    }

    .index_news_nav .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .index_news_nav {
        margin-top: 40px;
    }

    .index_news_bg .subtitle {
        left: unset;
    }

    .index_news_head {
        padding-left: 16px;
    }
}

/*-----------------------------------------------
|   index_cta
-----------------------------------------------*/
.cta {
    padding: 120px 80px 80px 0;
    position: relative;
    background-color: var(--bs-light);
}

.cta::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 120%;
    background: url(../images/index_cta_img.png) no-repeat left bottom;
    background-size: contain;
    filter: drop-shadow(0px 16px 48px rgba(0, 0, 0, 0.176));
}

@media (max-width: 1199px) {
    .cta {
        padding: 120px 0 60% 0;
    }

    .cta::before {
        width: 105%;
        height: 60%;
    }
}

/*-----------------------------------------------
|   about
-----------------------------------------------*/
.imgs_slick_item {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.imgs_slick_item_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.imgs_slick_bg {
    background: linear-gradient(to bottom, transparent 40%, var(--bs-light) 40%, var(--bs-light) 100%);
    padding-bottom: 100px;
}

.imgs_slick::before {
    content: "";
    width: 20%;
    height: 60px;
    background-color: var(--bs-light);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.imgs_slick .slick-prev {
    width: 40px;
    height: 40px;
    position: absolute;
    background: #fff;
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.176);
    top: unset;
    left: unset;
    transform: none;
    right: -60px;
    bottom: 0;
    border-radius: 50%;
}

.imgs_slick .slick-next {
    width: 40px;
    height: 40px;
    position: absolute;
    background: #fff;
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.176);
    top: unset;
    transform: none;
    right: -120px;
    bottom: 0;
    border-radius: 50%;
}

.imgs_slick .slick-prev:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: url(../images/chevron.svg) no-repeat center;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}

.imgs_slick .slick-next:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: url(../images/chevron.svg) no-repeat center;
}

.text-vertical {
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
}

.infiniteslide_text {
    font-size: 200px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    margin-top: 0;
    margin-right: 80px;
    margin-bottom: 80px;
}

.vr_img_hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: linear-gradient(to bottom, transparent 60%, rgba(21, 39, 67, 0.8)100%); */
    background-position: 0 0;
    background-size: 300% 100%;
    z-index: 1;
    background-color: var(--bs-dark);
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

.vr_img_hover:hover::before {
    background-color: var(--bs-dark);
    opacity: 0.8;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

.vr_img_hover:hover::after {
    content: "參觀哈鏌";
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
}

.service_list_section {
    background: linear-gradient(to left, transparent 10%, var(--bs-light) 10%, var(--bs-light) 90%);
    padding-top: 160px;
    margin-top: -140px;
    padding-bottom: 100px;
}

.service_list_title {
    color: var(--bs-primary);
    font-size: 20px;
    text-decoration: underline;
    position: relative;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 0;
    z-index: 0;
}

.service_list_title .service_list_num {
    position: absolute;
    color: rgba(163, 194, 204, 0.2);
    font-weight: 300;
    font-size: 100px;
    font-style: italic;
    letter-spacing: -1px;
    right: -80px;
    bottom: 0;
    line-height: 1;
    z-index: -1;
}

.service_list_section ul>li {
    padding-left: 20px;
    position: relative;
}

.service_list_section ul>li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bs-primary);
    left: 0;
    top: 14px;
}

.subtitle-service {
    position: absolute;
    left: 0;
    top: -120px;
    left: 12px;
}

@media (max-width: 1199px) {
    .imgs_slick .slick-next {
        right: 0;
        bottom: -60px;
    }

    .imgs_slick .slick-prev {
        right: 60px;
        z-index: 1;
        bottom: -60px;
    }

    .infiniteslide_text {
        font-size: 160px;
        margin-bottom: 40px;
    }

    .service_list_title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .subtitle-service {
        top: -90px;
        width: calc(83.33333333% - 24px);
        left: 50%;
        transform: translateX(-50%);
    }

    .imgs_slick::before {
        height: 40px;
    }

    .imgs_slick_bg {
        padding-bottom: 80px;
    }

    .service_list_section {
        margin-top: -180px;
        padding-bottom: 80px;
    }

    .service_list_title .service_list_num {
        font-size: 80px;
        right: -50px;
    }
}

@media (max-width: 575px) {
    .infiniteslide_text {
        font-size: 120px;
    }

    .service_list_section {
        background: linear-gradient(to left, transparent 20%, var(--bs-light) 20%, var(--bs-light) 90%);
    }

    .imgs_slick::before {
        display: none;
    }
}

/*-----------------------------------------------
|   form
-----------------------------------------------*/
.form-control {
    display: block;
    width: 100%;
    /* padding: 0.375rem 0.75rem; */
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* border-radius: 0.25rem; */
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.form_body {
    margin-top: -240px;
    /* margin-top: calc(0 - (100vw - 100px) ); */
    position: relative;
    background: #fff;
    padding-top: 3%;
}

.form-control:focus-visible {
    outline: 1px solid var(--bs-primary);
}

@media (max-width: 767px) {
    .form_body {
        width: 90%;
        margin-top: -80px;
    }
}

/*-----------------------------------------------
|   download
-----------------------------------------------*/
.file_bg {
    padding-top: 80px;
    padding-bottom: 160px;
    background: linear-gradient(180deg, rgba(164, 177, 193, 0) 0%, rgba(164, 177, 193, 0.3) 100%), url('../images/file_bg.png') no-repeat bottom center;
    background-size: cover;
}

.file_item {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    align-items: center;
    position: relative;
    padding: 20px 32px;
    transition: transform 0.4s ease;
}

.file_item .file_info {
    font-size: 14px;
    color: var(--bs-gray);
}

.file_item:hover {
    transform: translateY(-5px);
    transition: transform 0.4s ease;
}

.file_item .file_name {
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

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

/*-----------------------------------------------
|   application
-----------------------------------------------*/
.app {
    color: #fff;
    padding: 48px;
    margin-bottom: 24px;
}

.app .app_title {
    font-size: 24px;
    line-height: 1.5;
    position: relative;
    margin: 0;
    padding-bottom: 16px;
}

.app .app_title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 36px;
    height: 2px;
    background-color: var(--bs-secondary);
}

.app .app_text {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .app {
        padding: 24px;
    }

    .app .app_title {
        font-size: 18px;
    }

    .app .app_text {
        font-size: 14px;
    }
}

/*-----------------------------------------------
|   solution
-----------------------------------------------*/
.checkbox_item {
    display: flex;
    align-items: center;
}

.checkbox_group li:not(:last-child) {
    margin-bottom: 8px;
}

.checkbox_item input {
    float: left;
    width: 20px;
    height: 20px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-right: 10px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

.checkbox_item input:before {
    top: 50%;
    left: 50%;
    opacity: 0;
    color: #ffffff;
    font-size: 14px;
    /* content: '\F26E'; */
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-check-lg' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/%3E%3C/svg%3E");
    font-weight: 400;
    position: absolute;
    -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 1;
    /* font-family: 'Font Awesome 5 Pro'; */
}

.checkbox_item input:checked {
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
}

.checkbox_item input:checked:before {
    opacity: 1;
}

.checkbox_item label {
    margin: 0px;
    cursor: pointer;
}

.product_aside_card {
    background-color: #fff;
    padding: 20px 32px 4px;
    border-radius: 8px;
}

.product_aside_card .product_aside_title {
    color: var(--bs-gray);
    margin-top: 0;
    margin-bottom: 12px;
}

/*-----------------------------------------------
|   product single page - solution nav
-----------------------------------------------*/
.solution_nav {
    margin-top: 0;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 120px;
}

.solution_nav .nav-link {
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    color: #D7D7D7;
    padding: 16px 40px;
}

.solution_nav .nav-link.active {
    color: var(--bs-primary);
}

.solution_nav .nav-link.active::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    /* top: -10px; */
    width: calc(100% - 32px);
    height: 1px;
    background-color: var(--bs-primary);
}

.solution_nav .nav-link:hover {
    color: var(--bs-primary);
}
@media (max-width: 767px){
    .solution_nav{
        overflow: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content: start;
        margin-bottom: 60px;
    }
}
/*-----------------------------------------------
|   product single page - detail_slider
-----------------------------------------------*/
.detail_slider .slick-prev,
.detail_slider .slick-next {
    background: #000;
    z-index: 1;
}

.detail_slider .slick-prev {
    width: 40px;
    height: 40px;
    position: absolute;
    background: #fff;
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.176);
    transform: none;
    /* left: 15%; */
    left: 0;
    top: 200px;
    border-radius: 50%;
}

.detail_slider .slick-next {
    width: 40px;
    height: 40px;
    position: absolute;
    background: #fff;
    box-shadow: 0px 16px 48px rgba(0, 0, 0, 0.176);
    transform: none;
    /* right: 28%; */
    right: calc((100vw - 1320px)/2 - 20px);
    top: 200px;
    border-radius: 50%;
}

.detail_slider .slick-prev:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: url(../images/chevron.svg) no-repeat center;
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}

.detail_slider .slick-next:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: url(../images/chevron.svg) no-repeat center;
}

/* .detail_slider::before {
    content: url("data:image/svg+xml,%3Csvg width='608' height='659' viewBox='0 0 608 659' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 659H269.099L608 0H342.431L0 659Z' fill='%23F2F2F2'/%3E%3C/svg%3E%0A");
    position: absolute;
    left: -280px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
} */
@media (max-width: 1399px){
    .detail_slider .slick-next{
        right: calc((100vw - 1140px)/2);
    }
}
@media (max-width: 1199px){
    .detail_slider .slick-next{
        right: calc((100vw - 960px)/2);
    }
}
@media (max-width: 991px){
    /* .detail_slider::before{
        display: none;
    } */
    .detail_slider .slick-prev{
        top: 130px;
        left: -20px;
    }
    .detail_slider .slick-next{
        top: 130px;
        right: calc((100vw - 720px)/2);
    }
}
@media (max-width: 767px){
    .detail_slider .slick-next{
        right: calc((100vw - 540px)/2);
    }
}
@media (max-width: 575px){
    .detail_slider .slick-next{
        right: 20px;
        top: 30%;
    }
    .detail_slider .slick-prev{
        left: 20px;
        top: 30%;
    }
}
/*-----------------------------------------------
|   product single page - 3D preview
-----------------------------------------------*/
.iframe_outer {
    left: 0px;
    width: 100%;
    height: 0px;
    position: relative;
    /* padding-bottom: 70.7812%; */
    padding-bottom: 62%;
    overflow: hidden;
}

.iframe_outer iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}
/*-----------------------------------------------
|   product single page - table
-----------------------------------------------*/
.spec_table{
    width: 100%;
    color: var(--bs-dark);
    line-height: 1.5;
    border-spacing: 0;
    table-layout: fixed;
}
.spec_table thead tr th{
    padding: 10px;
    /* background-color: rgba(102, 186, 183, 0.3); */
    background-color: #D1EAE9;
    color: #000;
    font-weight: 400;
    border-right: 2px solid #fff;
}
.spec_table thead tr th:first-child{
    border-radius: 8px 0px 0px 0px;
    position: sticky;
    left: 0;
    /* border-right: 2px solid #fff; */
}
.spec_table thead tr th:last-child{
    border-radius: 0px 8px 0px 0px;
}
.spec_table tbody tr th{
    font-weight: 400;
    text-align: left;
    padding: 10px 10px 10px 32px;
    position: sticky;
    left: 0;
    background-color: #fff;
    border-right: 2px solid #fff;
    /* box-shadow: -2px 0 0 inset #ddd; */
}
.spec_table tbody tr:nth-child(even) th{
    background-color: #ECF0F3;
}
.spec_table tr td{
    padding: 10px;
    text-align: center;
    border-right: 2px solid #fff;
}
.spec_table tr:nth-child(even){
    background-color: #ECF0F3;
}
.table_container{
    cursor: grab;
}
.grabbing {
  cursor: grabbing;
}
.table_container .spec_table{
    white-space: nowrap;
    width: 130%;
}
@media (max-width: 991px){
    .spec_table{
        font-size: 14px;
    }
    .spec_table tr td:first-child{
        padding-left: 16px;
    }
    .spec_table tr th,.spec_table tr td{
        padding: 8px;
    }
    .spec_table tr th{
        /* width: 175px; */
        width: 210px;
    }
}
@media (max-width: 575px){
    .spec_table tbody tr th{
        padding: 10px;
    }
}
/*-----------------------------------------------
|   HTML editor
-----------------------------------------------*/
.article_title{
    position: relative;
    margin-top: 0;
    line-height: 1.5;
}
.article_title::before{
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: var(--bs-secondary);
    bottom: -20px;
    left: 0;
}
.html_editor{
    justify-content: center;
}
.html_editor img{
    margin: 16px auto;
}
.html_editor a:not(.btn-outline){
    color: var(--bs-primary);
    text-decoration: underline;
}
.html_editor ul li{
    position: relative;
    padding-left: 24px;
}
.html_editor ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bs-primary);
}
.html_editor h1,
.html_editor h2,
.html_editor h3,
.html_editor h4{
    margin-bottom: 8px;
}
.video_box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.video_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 767px){
    .article_title{
        font-size: 20px;
    }
    .html_editor p, .html_editor ul li{
        font-size: 14px;
    }
}

/*-----------------------------------------------
|   inquiry
-----------------------------------------------*/
.msg__img{
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.msg__text--send{
    padding: 16px 20px;
    background-color: #fff;
    border-radius: 0px 20px 20px 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
    margin-left: 20px;
}
.msg__text--reply{
    padding: 16px 20px;
    background-color: var(--bs-primary);
    color: #fff;
    border-radius: 20px 0px 20px 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
    margin-right: 20px;
}
.btn-inquiry-group{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 32px 60px;
}

.btn-inquiry{
    color: var(--bs-primary);
    border-radius: 20px;
    border: 1px solid var(--bs-primary);
    padding: 4px 16px;
    margin-bottom: 20px;
    transition: var(--transition-ease);
    -webkit-transition: var(--transition-ease);
}
.btn-inquiry{
    margin-right: 12px;
    margin-left: 12px;
}
.btn-inquiry:hover{
    background-color: var(--bs-primary);
    color: #fff;
    transition: var(--transition-ease);
    -webkit-transition: var(--transition-ease);
}
.btn-back{
    display: block;
    color: #fff;
    background-color: var(--bs-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    border-radius: 4px;
    transition: var(--transition-ease);
    -webkit-transition: var(--transition-ease);
}
.btn-back:hover{
    background-color: #43494D;
    transition: var(--transition-ease);
    -webkit-transition: var(--transition-ease);
}
.msg__text--send.loading{
    display: flex;
    align-items: center;
    justify-content: center;
}
.msg__text--send.loading span{
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bs-gray);
    animation: 0.9s typing infinite alternate;
    margin-right: 8px;
}
.msg__text--send.loading span:nth-child(2){
    animation-delay: 0.3s;
}
.msg__text--send.loading span:nth-child(3){
    animation-delay: 0.6s;
    margin-right: 0;
}
.special_image_group{
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
    gap: 10px;
}
.special_image {
    display: block;
    width: 200px;
    height: 60px;
}
.special_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes typing {
    to {
      opacity: 0.3;
    }
}

@media (max-width: 767px){
    .msg__text--send, .msg__text--reply{
        font-size: 14px;
    }
    .btn-inquiry-group{
        justify-content: start;
        padding: 20px 0;
    }
    .btn-inquiry{
        font-size: 14px;
        margin-right: 4px;
        margin-left: 4px;
        margin-bottom: 12px;
    }
    .special_image{
        width: 150px;
        height: 50px;
    }
}
@media (max-width: 575px){
    .msg__img img{
        width: 44px;
        height: 44px;
    }
}