::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #aaa;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

:root {
    --color-dark: #383838;
    --primary-color2: #029347;
}

.absolute-footer, html {
    background-color: #fff !important;
}

#wrapper, #main {
    background: #fff !important;
}

ul, li {
    margin-bottom: 0px !important;
}

.row-0 {
    padding: 0px 0px !important;
}

.pd-0 {
    padding: 0px !important;
}

.row-5 {
    padding: 0px 10px !important;
}

.pd-5 {
    padding: 0px 5px 8px 5px !important;
}

.row-20 {
    padding: 0px 0px !important;
}

.pd-20 {
    padding: 0px 20px 20px 20px !important;
}

.pd-35 {
    padding: 0px 35px 20px 35px !important;
}

.row-7 {
    padding: 0px 7px !important;
}

.pd-7 {
    padding: 0px 7px 7px 7px !important;
}

.noPadding {
    padding-bottom: 0px !important;
}

.mr-1 {
    margin-right: 10px !important;
}

.mr-2 {
    margin-right: 20px;
}

.mr-3 {
    margin-right: 30px;
}

.mr-4 {
    margin-right: 40px;
}

.mr-4 {
    margin-right: 50px;
}

.ml-1 {
    margin-left: 10px;
}

.ml-2 {
    margin-left: 20px;
}

.ml-3 {
    margin-left: 30px;
}

.ml-4 {
    margin-left: 40px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.button_style {
    background-color: var(--primary-color);
    color: #fff !important;
    text-align: center;
    padding: 5px 25px;
    font-size: 15px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 9;
    border-radius: 5px;
}

.button_style:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.button_style:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.sx_more {
    border: 0;
    display: inline-block;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.sx_more a {
    position: relative;
    min-height: 50px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: var(--primary-color);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sx_more .text, .sx_more .icon-container {
    position: relative;
    z-index: 999;
}

.sx_more .text {
    width: 90px;
}

.sx_more .icon-container {
    position: relative;
    width: 25px;
    height: 25px;
    z-index: 2;
    margin-left: 15px;
    transition: transform 500ms ease;
    transform: translateX(100%);
}

.sx_more .icon-container .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    transition: transform 500ms ease, opacity 250ms ease;
}

.sx_more .icon-container .icon.icon--left {
    transform: translateX(0);
    opacity: 1;
}

.sx_more .icon-container .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    transition: transform 500ms ease, opacity 250ms ease;
}

.sx_more .icon-container .icon.icon--right {
    opacity: 0;
    transform: translateX(200%);
}

.sx_more .icon-container .icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
    vertical-align: top;
}

.sx_more a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50px;
    z-index: 0;
    transition: transform 500ms ease;
    transform: translateX(75%);
}

.sx_more a:hover::after {
    transform: translateX(0);
}

.sx_more a:hover span.text {
    color: var(--primary-color);
}

/**back to top**/
.progress-wrap {
    position: fixed;
    display: block;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    text-align: center;
    position: absolute;
    cursor: pointer;
    font-family: 'Font Awesome 6 Pro';
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap {
    bottom: 30px;
    height: 46px;
    width: 46px;
    border-radius: 46px;
    background-color: #ffffff;
    box-shadow: inset 0 0 0 2px #cccccc;
}

.progress-wrap.btn-left-side {
    left: 30px;
}

.progress-wrap.btn-right-side {
    right: 30px;
}

.progress-wrap::after {
    width: 46px;
    height: 46px;
    color: #1f2029;
    font-size: 24px;
    content: '\f341';
    line-height: 46px;
}

.progress-wrap:hover::after {
    color: #1f2029;
}

.progress-wrap svg.progress-circle path {
    stroke: #1f2029;
    stroke-width: 2px;
}

/**header**/
div#masthead input#woocommerce-product-search-field-0 {
    height: 30px !important;
    box-shadow: unset !important;
}

div#masthead button.ux-search-submit.submit-button.secondary.button.icon.mb-0 {
    background: transparent;
    color: #000;
    border: 0;
    height: 30px !important;
    min-height: 30px !important;
    position: absolute;
    right: 0;
    top: 0;
}

div#masthead .cart-item a {
    color: #fff !important;
    padding: 0px 15px !important;
    height: 30px !important;
    display: flex;
    align-items: center;
    line-height: 30px;
}

div#masthead .cart-item {
    margin-right: 0px !important;
    background: var(--primary-color);
}

div#masthead i.icon-shopping-basket:before {
    content: '\f07a';
    font-family: 'Font Awesome 6 Pro';
    font-size: 16px;
}

div#masthead i.icon-shopping-basket {
    margin-top: -4px;
}

div#mega-menu-wrap-primary {
    margin-top: 3px;
}

div#masthead i.icon-search:before {
    content: '\f002';
    font-family: 'Font Awesome 6 Pro';
}

div#masthead .gtranslate_wrapper a:not(:first-child) {
    margin-left: 5px !important;
}

/**menu**/
div#mega-menu-wrap-primary {
    width: 100%;
}

ul#mega-menu-primary {
    display: flex !important;
    justify-content: end !important;
}

div#mega-menu-wrap-primary ul li a {
    color: #000 !important;
    font-weight: normal !important;
    padding: 0 13px !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center;
}

div#mega-menu-wrap-primary ul li:last-child a {
    padding-right: 0px !important;
}

div#mega-menu-wrap-primary ul li a:hover {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

div#mega-menu-wrap-primary ul li.mega-current-menu-item a {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
    -webkit-box-shadow: 0 16px 32px rgba(34, 37, 49, 0.24);
    box-shadow: 0 16px 32px rgba(34, 37, 49, 0.24);
    display: block !important;
    border-radius: 8px !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    height: unset !important;
    line-height: 40px ! IMPORTANT;
    padding: 6px 10px !important;
    display: block !important;
    -webkit-transition: .4s;
    transition: .4s;
    font-size: 15px !important;
    color: #000 !important;
    text-transform: unset !important;
    background: #fff !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
    border-bottom: 1px solid #f2f2f2 !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: #000 !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    color: #000 !important;
    text-transform: unset !important;
    font-size: 15px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 0px !important;
    text-align: left !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
    color: var(--primary-color) !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
    background: #fff !important;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 10%);
    padding: 15px !important;
    width: 80% !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
    padding-bottom: 5px !important;
    padding-left: 0px !important;
    border-bottom: 1px solid #f2f2f2;
    width: 100% !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    color: #000 !important;
    text-transform: unset !important;
    font-size: 15px !important;
    text-align: left !important;
    padding-left: 0px !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 0px !important;
    text-align: left !important;
}

/**banner**/
.banner_top h2 strong {
    font-weight: normal;
}

.banner_top h2 {
    font-size: 38px !important;
    text-transform: unset;
}

.banner_top p {
    color: #fff;
    font-size: 20px;
    line-height: 25px;
    opacity: 1;
}

/**footer**/
footer#footer {
    padding: 60px 0;
    background: var(--color-dark);
}

footer#footer .footer-top {
    width: 100%;
    display: inline-block;
}

footer#footer .footer-top .footer-title {
    margin: 0 0 10px 0;
}

footer#footer .footer-top .footer-title h3 {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
}

footer#footer .footer-menu ul li {
    border: 0px !important;
    margin: 0px !important;
    transition: 0.3s ease-in-out;
}

footer#footer .footer-menu ul li a {
    color: #fff;
    padding: 0 0 10px 10px;
    font-size: 16px;
    line-height: 25px;
    transition: 0.3s ease-in-out;
}

footer#footer .footer-menu ul li:hover {
    transition: 0.3s ease-in-out;
    transform: translate3d(10px, 0, 0);
}

footer#footer .footer-menu ul li a:hover {
    color: var(--primary-color)
}

footer#footer .footer-address p {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    margin: 0 0 10px 0;
}

.copyright {
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #fff;
    font-size: 17px;
    padding: 8px 0;
}

footer#footer .social a {
    width: 35px;
    height: 35px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: #fff;
    margin: 0 10px 0 0 !important;
    transition: 0.3s ease-in-out;
}

footer#footer .social a:hover {
    transition: 0.3s ease-in-out;
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--primary-color)
}

/**card category**/
.wp_category .cate_card {
    color: #fff;
    height: 300px;
    min-height: 300px;
    position: relative;
}

.wp_category .cate_card .card_front, .wp_category .cate_card .card_back {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;
    color: #fff;
    border-radius: 20px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-position: center;
    background-size: cover;
    transform-style: preserve-3d;
    transition: ease-in-out 600ms;
}

.wp_category .cate_card .card_front {
    padding: 0 15px;
    background: #1473889c;
}

.wp_category .cate_card .icon {
    display: block;
    margin: 0 auto 15px;
}

.wp_category .cate_card .icon img {
    height: 70px;
}

.wp_category .cate_card .card_front .bg {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 170px;
    opacity: .2;
}

.wp_category .cate_card .txt {
    font-size: 14px;
}

.wp_category .cate_card .txt .name {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    line-height: 1;
    margin-bottom: 5px;
}

.wp_category .cate_card .txt .line {
    margin-bottom: 5px;
}

.wp_category .cate_card .txt .t {
    text-align: left;
    line-height: 22px;
    min-height: 66px;
}

.wp_category .cate_card .card_back {
    padding: 0 15px;
    transform: rotateY(-180deg);
}

.wp_category .cate_card:hover .card_front {
    transform: rotateY(180deg);
}

.wp_category .cate_card:hover .card_back {
    transform: rotateY(0deg);
}

/**abouts**/
.sec_about .oh {
    box-shadow: 11px 11px 20px 10px rgba(29, 29, 29, 0.1);
}

.about_txt .tit span {
    color: var(--primary-color);
}

.about_txt ul {
    margin-top: 20px;
}

.about_txt ul li {
    font-size: 17px;
    line-height: 30px;
    margin-top: 10px;
    list-style: none;
    margin-left: 0 !important;
}

/**menu gt**/
.menu_redirect {
    justify-content: space-between !important;
    flex-flow: row !important;
}

.menu_redirect .ux-menu-link {
    width: auto;
    display: inline-block;
    border: 0px !important;
    padding: 10px 8px;
}

.menu_redirect .ux-menu-link a {
    font-size: 18px;
    color: #fff;
    padding: 6px 0;
    width: auto !important;
    min-height: unset !important;
    display: inline-block;
    position: relative;
}

.menu_redirect .ux-menu-link a:before {
    content: '';
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    margin-left: -25px;
    background: #fff;
}

.menu_redirect .ux-menu-link a:hover {
    color: #fff;
}

.menu_redirect .ux-menu-link a:hover:before {
    display: block;
}

.menu_redirect .ux-menu-link--active a:before {
    display: block;
}

/**abouts**/
.abouts_text {
    font-size: 15px;
    font-size: 15px;
    line-height: 33px;
}

.abouts_text a {
    color: var(--primary-color);
}

.btn_play i {
    font-size: 36px;
    color: #fff;
    margin-left: 12px;
}

.btn_play {
    width: 96px;
    height: 96px;
}

a.btn_video {
    width: 96px;
    height: 96px;
    position: absolute !important;
    left: 47%;
    top: -8px !important;
    border: 6px solid rgba(255, 255, 255, 0.5);
    border-right-color: rgba(255, 255, 255, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.9);
    border-radius: 100%;
    animation: load 2s linear 1s infinite;
    transform: translate(-50%, -50%);
}

@keyframes load {
    0% {
        transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -moz-transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

/**home title**/
.home-title {
    text-align: center;
}

.home-title h3 {
    display: inline-block;
    vertical-align: top;
    padding: 0 85px;
    font-size: 24px;
    position: relative;
    text-transform: uppercase;
    margin: 0px !important;
    font-weight: normal;
    width: auto;
}

.home-title h3::before, .home-title h3::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 12px;
    margin-top: -6px;
    background: url(../images/about_us_icon.png) no-repeat 0 0;
}

.home-title h3::before {
    left: 0;
}

.home-title h3::after {
    right: 0;
    transform: rotateY(180deg);
}

.company-address h4 {
    margin: 0;
}

.company-address p {
    margin: 0;
}

.company-address {
    font-size: 14px;
    line-height: 33px;
    color: #666;
    margin-bottom: 0;
    transition: 0.3s ease-in-out;
}

.company-address:hover {
    transition: 0.3s ease-in-out;
    transform: translate3d(20px, 0, 0) !important;
}

.gt-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.gt-item h4 {
    color: #666;
    font-size: 15px;
    margin: 0 0 5px 0;
}

/**service**/
.service-item .box-text {
    margin-top: -50px !important;
    position: relative;
    padding: 0 0 0 20px !important;
}

.service-item .box-text .box-text-inner {
    background: #fff;
    padding: 15px;
}

.service-item .box-text .box-text-inner h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    min-height: 40px;
}

.service-item .box-text .box-text-inner p {
    font-size: 14px;
    line-height: 26px;
}

/**contact**/
.contact_address p {
    margin: 0;
}

.contact_address h3 {
    color: #666;
    text-transform: uppercase;
    margin: 0;
}

.contact_address {
    color: #666;
    font-size: 15px;
    text-align: center;
    line-height: 33px;
}

.form-contact label {
    font-size: 15px;
}

.form-contact label b {
    color: #ff3333;
}

.form-contact .input_contact, .form-contact .select_contact, .form-contact .textarea_contact {
    box-shadow: unset !important;
}

.button_contact {
    box-shadow: unset !important;
    margin: 0px !important;
}

.contact-title h3 {
    color: #666;
    text-transform: uppercase;
    margin: 0;
}

.contact-social {
    display: flex;
}

.contact-social a {
    margin: 0 10px 0 0;
    transition: 0.3s ease-in-out;
}

.contact-social a:hover {
    transition: 0.3s ease-in-out;
    transform: translateY(-5px);
}

.contact-social a img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/**category**/
section.banner_cat img {
    width: 100%;
}

.cat_standcate {
    background: var(--primary-color);
}

.category-entry {
    width: 100%;
    margin: 30px 0;
}

/**category description**/
.category-description {
    border: 1px solid #ececec;
    padding: 20px;
    border-radius: 8px
}

.category-description p,
.entry-content b,
archive.entry-content p,
archive.entry-content b,
.woocommerce-Tabs-panel p,
.woocommerce-Tabs-panel b {
    margin: 0 0 10px 0 !important;
}

.category-description ul,
.category-description ol,
archive.entry-content ol,
archive.entry-content ul,
.woocommerce-Tabs-panel ol,
.woocommerce-Tabs-panel ul {
    margin-left: 15px !important;
}

.category-description table,
.category-description table tr td,
archive.entry-content table,
archive.entry-content tr td,
.woocommerce-Tabs-panel table,
.woocommerce-Tabs-panel tr td {
    border-collapse: collapse;
    border: 1px solid #3333;
}

.category-description table tr td,
.category-description table tr th,
archive.entry-content td,
archive.entry-content th,
.woocommerce-Tabs-panel tr td,
.woocommerce-Tabs-panel tr th {
    padding: 10px;
    color: #333 !important;
}

/**pagination**/
.pagination {
    width: 100%;
    display: inline-block;
}

.pagination ul li a, .pagination ul li span {
    color: #000;
    border: 1px solid #e9e9e9;
    width: 35px;
    height: 35px;
    padding: 0px;
    line-height: 35px;
    font-weight: normal;
    background: #fff;
    border-radius: 99px !important;
}

.pagination ul li a:hover, .pagination ul li span:hover {
    background: var(--primary-color) !important;
    color: #fff;
    font-weight: normal !important;
    border: 1px solid var(--primary-color) !important;
}

.wp-pagenavi {
    width: 100%;
    display: inline-block;
    margin: 20px 0 0 0;
    text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
    background: #fff;
    border-radius: 99px !important;
    border: 1px solid #e9e9e9;
    width: 35px;
    height: 35px;
    color: #000;
    display: inline-block;
    padding: 0px;
    line-height: 35px;
    font-weight: normal;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
    background: var(--primary-color) !important;
    color: #fff;
    font-weight: normal !important;
    border: 1px solid var(--primary-color) !important;
}

/**slide**/
body .swiper-button-next, body .swiper-button-prev {
    height: 2.75rem;
    width: 2.75rem;
    border-radius: 0.125rem;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    --tw-bg-opacity: 0.3;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

body .swiper-button-next:hover, body .swiper-button-prev:hover {
    --tw-bg-opacity: 0.6;
}

body .swiper-button-next::after, body .swiper-button-prev::after {
    font-size: 1.5rem;
    line-height: 2rem;
}

/**alert**/
.alert {
    position: relative;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-primary {
    color: #084298 !important;
    background-color: #cfe2ff !important;
    border-color: #b6d4fe !important;
}

.alert-secondary {
    color: #41464b !important;
    background-color: #e2e3e5 !important;
    border-color: #d3d6d8 !important;
}

.alert-success {
    color: #0f5132 !important;
    background-color: #d1e7dd !important;
    border-color: #badbcc !important;
}

.alert-danger {
    color: #842029 !important;
    background-color: #f8d7da !important;
    border-color: #f5c2c7 !important;
}

.alert-warning {
    color: #664d03 !important;
    background-color: #fff3cd !important;
    border-color: #ffecb5 !important;
}

.alert-info {
    color: #055160 !important;
    background-color: #cff4fc !important;
    border-color: #b6effb !important;
}

.alert-light {
    color: #636464 !important;
    background-color: #fefefe !important;
    border-color: #fdfdfe !important;
}

.alert-dark {
    color: #141619 !important;
    background-color: #d3d3d4 !important;
    border-color: #bcbebf !important;
}

/**post list**/
.post-list {
    display: flex;
    flex-flow: wrap;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.post-list .post-date {
    width: 100px;
    height: 100px;
    background: #9d9d9d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-list .post-date .date__content {
    text-align: center;
    color: #fff;
    padding: 10px;
    font-size: 19px;
}

.post-list .post-date .date_top {
    border-bottom: 1px solid #fff;
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
}

.post-list .post-content {
    width: calc(100% - 100px);
    padding-left: 20px;
}

.post-list .post-content h4 {
    margin: 0;
}

.post-list .post-content h4 a {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: nowrap;
}

.post-list .post-content .post-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 15px;
    color: #999999;
    margin: 5px 0 0 0;
}

.post-list .post-content h4 a:hover {
    color: var(--primary-color)
}

.post-list:hover .post-date {
    background: var(--primary-color);
}

/**single**/
header#header-single {
    text-align: center;
}

header#header-single .post-meta {
    font-size: 15px;
    color: #666;
}

header#header-single h1 {
    padding-bottom: 20px;
    text-align: center;
    color: #333;
    border-bottom: 1px solid #e3e3e2;
}

/**widget**/
.widget-post-list {
    width: 100%;
}

.widget-post-list .widget-post-item {
    width: 100%;
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f2f2f2;
    align-items: center;
}

.widget-post-list .widget-post-item:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 0px;
}

.widget-post-list .widget-post-item a {
    display: flex;
}

.widget-post-list .widget-post-item .widget-post-thumbnail {
    width: 70px;
    float: left;
    height: 60px;
    border: 1px solid #f2f2f2;
}

.widget-post-list .widget-post-item .widget-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.widget-post-list .widget-post-item .widget-post-content {
    width: calc(100% - 70px);
    float: left;
    padding-left: 10px;
}

.widget-post-list .widget-post-item .widget-post-content h3 {
    display: inline-block;
    color: #000;
    font-size: 14px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
    line-height: 18px;
}

.widget-post-list .widget-post-item .widget-post-content h3:hover {
    color: var(--primary-color);
}

.widget-post-list .widget-post-item ins,
.widget-post-list .widget-post-item b {
    color: #ff3333;
    font-size: 13px;
}

.widget-post-list .widget-post-item del {
    color: gray;
    font-size: 12px;
}

.widget-post-list .widget-post-item .widget-post-content .post-meta {
    color: gray;
    font-size: 14px
}

.widget-title h3 {
    margin: 0;
    color: #fff;
}

.widget-post-list {
    padding: 10px 0;
}

.widget-title {
    text-transform: unset !important;
    font-size: 18px !important;
    text-align: left;
    position: relative;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    padding: 0 10px;
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: 700 !important;
}

.widget-post-vertical a {
    display: block !important;
    flex-flow: wrap;
}

.widget-post-vertical .widget-post-thumbnail {
    width: 100% !important;
    height: 180px !important;
}

.widget-post-vertical .widget-post-content {
    width: 100% !important;
    padding: 10px 0 0 0 !important;
    border: 0px;
}

.is-divider.small {
    display: none;
}

.widget_categories ul, .widget_product_categories ul {
    margin-top: -5px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAEklEQVQImWNgYGCQYiAAhoYCAEfjALcmCP1hAAAAAElFTkSuQmCC)
}

.widget_categories ul li, .widget_product_categories ul li {
    width: 100%
}

.widget_categories ul li a, .widget_product_categories ul li a {
    width: 100%;
    display: block;
    color: #333;
    padding: 10px 15px !important;
    background: #e4e4e499;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s
}

.widget_categories ul li a:before, .widget_product_categories ul li a:before {
    content: "\f45c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 6px;
    vertical-align: middle;
    margin-right: 10px;
    color: var(--primary-color)
}

.widget_categories ul li:hover a, .widget_product_categories ul li:hover a {
    background: var(--primary-color) !important;
    color: #fff
}

/**recruit**/
.recruit-list {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    padding: 0 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.recruit-list .recruit-lt {
    width: calc(100% - 250px);
    height: 100%;
    padding: 15px 0;
    display: flex;
    flex-flow: wrap;
    align-items: center
}

.recruit-list .recruit-lt .recruit-lt-thumbnail {
    width: 200px;
    height: 150px;
    border-radius: 10px;
}

.recruit-list .recruit-lt .recruit-lt-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.recruit-list .recruit-lt .recruit-lt-content {
    width: calc(100% - 200px);
    padding-left: 20px;
}

.recruit-list .recruit-rt {
    width: 250px;
    height: 100%;
    padding: 15px 0 15px 15px;
    border-left: 1px solid #F0F0F0;
}

.recruit-list .recruit-lt .recruit-map {
    color: #999999;
    font-size: 14px;
    font-weight: 100;
    margin: 10px 0 0 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: nowrap;
}

.recruit-list .recruit-info ul {
    display: flex;
    flex-flow: wrap;
}

.recruit-list .recruit-info ul li {
    list-style: none;
    width: calc(100% / 2);
    color: #999999;
    font-size: 14px;
    margin-top: 5px;
}

.recruit-list .recruit-lt .recruit-map img {
    width: 15px;
}

.recruit-list .recruit-lt h4 {
    margin: 0;
}

.recruit-list .recruit-lt h4 a {
    color: #37383C;
    font-size: 18px;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: nowrap;
}

.recruit-list .recruit-lt h4 a:hover {
    color: var(--primary-color)
}

.recruit-list .recruit-rt .recruit-price {
    line-height: 25px;
    text-align: center;
}

.recruit-list .recruit-rt .recruit-price p {
    margin: 0;
    font-size: 14px;
}

.recruit-list .recruit-rt .recruit-price p.price {
    background: #f4b107;
    font-weight: normal;
    font-size: 14px !important;
    color: #fff;
    padding: 8px;
    text-align: center;
    border-radius: 5px;
}

.recruit-list .recruit-rt .recruit-price p.date {
    margin: 10px 0;
    font-size: 15px;
    line-height: 18px;
}

.recruit-list .recruit__content p {
    margin: 0px !important;
}

.recruit-list .recruit__content p strong {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
}

.recruit-list .recruit__content .recruit__info {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: nowrap;
}

.recruit-list .recruit-detail {
    margin: 10px 0 0 0;
}

.recruit-list:hover {
    transition: 0.3s ease-in-out;
    transform: translateY(-5px);
}

.button_for_outline {
    border: 2px solid var(--primary-color) !important;
    background: transparent !important;
    color: var(--primary-color) !important;
    font-size: 14px;
    padding: 3px 25px;
}

/**widget filter**/
aside.widget-filter {
    background: #f2f2f2;
    border-radius: 8px;
}

aside.widget-filter .widget-title2 {
    width: 100%;
    border-radius: 8px 8px 0 0;
    background: var(--primary-color);
    padding: 5px 8px;
    text-align: center;
}

aside.widget-filter .widget-title2 h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
}

.widget-filter-box {
    width: 100%;
    padding: 15px;
}

.widget-filter-box .category-list:not(:last-child) {
    margin-bottom: 15px;
}

.widget-filter-box .category-list h4 {
    font-size: 16px;
    color: var(--primary-color);
    line-height: 18px;
}

.widget-filter-box .category-filter {
    width: 100%;
    padding: 15px;
    background: #fff;
}

.category-filter .alert {
    font-size: 14px;
}

.category-filter {
    position: relative;
}

.category-filter ul li {
    margin: 5px 0px;
    border: 0px !important;
    position: relative;
    list-style: none;
}

.category-filter ul li a {
    font-size: 14px;
}

.category-filter ul li a:hover {
    text-decoration: none;
    color: var(--primary-color) !important;
}

.category-filter ul li a {
    padding-left: 30px !important;
    color: #000;
}

.category-filter ul li a::before {
    content: '';
    font-size: 15px;
    color: #222;
    position: absolute;
    left: 0px;
    width: 20px;
    height: 20px;
    border-radius: 0px;
    border: 1px solid #999;
    top: 50%;
    transform: translateY(-50%);
}

.category-filter ul li.active a:before {
    content: '\f00c';
    color: var(--primary-color);
    font-size: 13px;
    position: absolute;
    left: 0px;
    line-height: 20px;
    text-align: center;
    border: 1px solid var(--primary-color);
    font-family: "Font Awesome 6 Pro";
}

.category-filter ul li.active a {
    color: var(--primary-color);
}

.category-filter ul li a:hover::before {
    content: '\f00c';
    color: var(--primary-color);
    font-size: 13px;
    position: absolute;
    left: 0px;
    border-color: #999;
    line-height: 20px;
    text-align: center;
    font-family: "Font Awesome 6 Pro";
}

/**single**/
.recruit--info h1 {
    font-size: 24px;
    color: #111;
    line-height: 34px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #F0F0F0;
    padding: 0 0 15px 0;
}

.recruit--info .recruit__tt .tt__item h3 {
    text-transform: uppercase;
    font-size: 18px;
    color: #37383C;
    margin: 0 0 5px 0;
}

.recruit--info .recruit__tt .tt__item {
    margin: 20px 0 0 0;
}

.recruit--info .tt__item__info ul, .recruit--info .tt__item__info ol {
    margin-left: 20px;
}

.recruit--info .tt__item__info {
    font-size: 15px;
}

.recruit--info .tt__item__info p,
.recruit--info .tt__item__info ul li,
.recruit--info .tt__item__info ol li {
    margin: 0 0 5px 0 !important;
}

.recruit--info .tt__item__info table,
.recruit--info .tt__item__info table tr td {
    border-collapse: collapse;
    border: 1px solid #3333;
}

.recruit--info .tt__item__info table tr td,
.recruit--info .tt__item__info table tr th {
    padding: 10px;
    color: #333 !important;
}

.recruit--register h3 {
    font-size: 18px;
    background: -webkit-linear-gradient(90deg, var(--primary-color3) 0.51%, var(--primary-color4) 100.47%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 24px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #F0F0F0;
    padding: 0 0 15px 0;
}

.recruit--register .recruit-map {
    color: #999999;
    font-size: 14px;
    font-weight: 100;
    margin: 10px 0;
}

.recruit--register .recruit-map img {
    width: 15px;
}

.recruit--register .recruit-salary p {
    margin: 0;
}

.recruit--register .recruit-salary p.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px !important;
}

.recruit--register .recruit-salary {
    text-align: center;
    border: 1px solid #FFF3E0;
    padding: 10px;
    border-radius: 10px;
}

.recruit--register .recruit-meta .lt {
    width: 50%;
    text-align: center;
}

.recruit--register .recruit-meta {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 10px 0;
}

.recruit--register .lt strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px !important;
}

.recruit--register .lt {
    font-size: 14px;
}

.recruit--register .lt:not(:last-child) {
    border-right: 1px solid #FFF3E0;
}

.recruit--register .recruit-detail {
    margin: 15px 0 0 0;
}

.recruit--register .recruit-detail a {
    width: 100%;
}

.boxWhite {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

/**recruit**/
div#applyRecruit {
    border-radius: 15px !important;
}

div#applyRecruit .recruit_logo {
    text-align: center;
    margin: 0 0 15px 0;
}

div#applyRecruit .recruit_logo img {
    width: 80px;
}

div#applyRecruit .recruit-body {
    margin: 30px 0 0 0;
}

div#applyRecruit .boxShadow {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.input_recruit {
    background: #F4F7F8 !important;
    border-radius: 99px !important;
    box-shadow: unset !important;
    font-size: 15px !important;
    border-color: #E7E7E7 !important;
    margin: 0 !important;
}

.select_recruit {
    background-color: #F4F7F8 !important;
    border-radius: 99px !important;
    box-shadow: unset !important;
    font-size: 15px !important;
    border-color: #E7E7E7 !important;
    margin: 0 !important;
}

.recruit__group h4 {
    font-size: 16px;
}

.input_radio label {
    font-weight: normal !important;
    font-size: 15px;
}

.input_radio input {
    margin: 0 !important;
}

.dropify-wrapper .dropify-preview .dropify-infos .dropify-infos-inner p.dropify-infos-message {
    margin-top: 15px;
    padding-top: 15px;
    font-size: 12px !important;
    position: relative;
    opacity: .5;
}

.dropify-wrapper .dropify-message p {
    font-size: 15px !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.button_for_primary {
    width: 200px;
    border-radius: 99px !important;
    text-transform: unset;
    margin: 0 auto 0;
    display: block;
}

form.wpcf7-form.init {
    margin: 0px !important;
}

span.wpcf7-spinner {
    display: none;
}

.wpcf7 .wpcf7-not-valid-tip {
    margin: 0px !important;
    background-color: #fff !important;
    font-size: 14px;
}

.wpcf7 .wpcf7-not-valid-tip:after {
    display: none !important;
}

.recruit--register h3 {
    font-size: 18px;
    background: -webkit-linear-gradient(90deg, var(--primary-color) 0.51%, var(--primary-color2) 100.47%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 24px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #F0F0F0;
    padding: 0 0 15px 0;
}

.ui-datepicker-header {
    position: relative;
}

.ui-datepicker table tr td a.ui-state-active,
.ui-datepicker table tr td a:hover,
.ui-datepicker table tr td.tourmaster-highlight a,
.ui-datepicker table tr td.tourmaster-highlight span {
    background: #1680b4;
    color: #fff;
}

.ui-datepicker select {
    color: #485da1;
}

.ui-datepicker {
    background-color: #f5f5f5;
}

.ui-datepicker {
    border-color: #ebebeb;
}

.ui-datepicker table tr th {
    color: #808080;
}

.ui-datepicker table tr td a,
.ui-datepicker-prev,
.ui-datepicker-next {
    background-color: #fff;
}

.ui-datepicker table tr td a,
.ui-datepicker-prev,
.ui-datepicker-next {
    color: #5b5b5b;
}

.ui-datepicker table tr td a.ui-state-disable {
    color: #c0c0c0;
}

.ui-datepicker-prev.ui-state-disabled,
.ui-datepicker-next.ui-state-disabled {
    color: rgba(108, 112, 126, 0.35) !important;
    text-decoration: none;
    pointer-events: none;
}

.ui-datepicker table tr td {
    color: #5b5b5b;
}

.ui-datepicker table tr td.ui-datepicker-week-end {
    color: #d9534f;
}

.ui-datepicker table tr td.ui-datepicker-week-end .ui-state-default {
    color: #d9534f;
}

.ui-datepicker
table
tr
td.ui-datepicker-week-end
.ui-state-default.ui-state-highlight,
.ui-datepicker table tr td.ui-datepicker-week-end .ui-state-default:hover {
    color: #fff;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: 0px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
    display: none;
}

.ui-datepicker-next {
    right: 0px;
}

.ui-datepicker-prev:after {
    content: "<";
}

.ui-datepicker-next:after {
    content: ">";
}

.ui-datepicker {
    width: 300px;
    padding: 5px;
    display: none;
    background: #ebebeb;
    border-radius: 4px;
}

.ui-datepicker .ui-datepicker-title {
    padding-left: 38px;
    padding-right: 38px;
}

.ui-datepicker .ui-datepicker-month,
.ui-datepicker .ui-datepicker-year,
.ui-datepicker-year {
    width: 48%;
    margin: 0px 1%;
    border: none;
    height: 36px;
    padding: 0px 5px;
    font-weight: 500;
    color: #3d3f47;
    background: #fff;
    float: left;
    background-image: url(../images/down-button.svg) !important;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    margin-bottom: 5px;
    border-radius: 4px;
}

.ui-datepicker table {
    border-collapse: separate;
    border-spacing: 0px;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 0;
}

.ui-datepicker table tr {
    background: transparent;
    color: #949494;
    padding: 0;
}

.ui-datepicker table tr th {
    color: #3d3f47;
    background: transparent;
    font-size: 14px;
    padding: 16px 0px 10px;
    text-align: center;
    font-weight: 500;
    border: none;
}

.ui-datepicker table tr th.ui-datepicker-week-end {
    color: #d9534f;
}

.ui-datepicker table td {
    padding: 0px 0px 5px;
    line-height: 1;
    text-align: center;
    color: #c0c0c0;
    border: none;
}

.ui-datepicker table td a,
.ui-datepicker table td .ui-state-default {
    color: #5b5b5b;
    background-color: #ffffff;
    width: 32px;
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    display: inline-block;
}

.ui-datepicker table td.ui-state-disabled .ui-state-default {
    background-color: #fff;
    color: rgba(108, 112, 126, 0.35) !important;
    text-decoration: none;
    pointer-events: none;
}

.ui-datepicker table td.ui-datepicker-today a {
    color: #fff;
    background-color: #1ba0e2 !important;
}

.ui-datepicker table td a:hover,
.ui-datepicker table td a:focus {
    color: #fff;
    background-color: #1ba0e2 !important;
}

.map-address {
    position: relative;
    background: linear-gradient(90deg, var(--primary-color) 0.51%, var(--primary-color2) 100.47%);
    text-align: center;
    border-radius: 5px;
    padding: 8px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}


.map-address:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    border-width: 12px 12px 0 12px;
    border-color: var(--primary-color) transparent transparent transparent;
    transform: translateX(-50%);
    bottom: -12px;
    border-style: solid;
}

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    top: 7px;
    right: 15px;
}

span.wpcf7-form-control.wpcf7-radio.input_radio {
    display: flex !important;
}

span.wpcf7-form-control.wpcf7-radio.input_radio input[type="radio"] {
    margin-right: 5px !important;
}

/**taxonomy product cat**/
.shop-page-title.category-page-title.page-title {
    display: none;
}

.product-item {
    position: relative;
    transition: 0.3s ease-in-out;
}

.product-item .product-desc {
    width: 100%;
    position: absolute;
    background: #1473886e;
    left: 0;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    transition: 0.3s ease-in-out;
    bottom: -100%;
}

.product-item:hover .product-desc {
    transition: 0.3s ease-in-out;
    bottom: 0
}

.product-item .product-thumbnail {
    width: 100%;
    height: 280px;
    border: 1px solid #c9c9c9;
    padding: 15px;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease-in-out;
}

.product-item .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s ease-in-out;
}

.product-item .product-content {
    width: 100%;
    padding: 15px 0 0 0;
}

.product-item .product-content h4 {
    margin: 0;
}

.product-item .product-content h4 a {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-item .product-content h4 a:hover {
    color: var(--primary-color)
}

.product-item .product-content .product-price {
    text-align: center;
    margin: 10px 0 0 0;
}

.product-item .product-content .product-price ins,
.product-item .product-content .product-price b {
    color: #ff3333;
    font-size: 15px;
}

.product-item .product-content .product-price del {
    color: gray;
    font-size: 14px;
}

.product-item:hover .product-thumbnail img {
    transition: 0.3s ease-in-out;
    transform: scale(1.1);
}

.title-product {
    border-bottom: 1px solid var(--primary-color);
    width: 100%;
}

.title-product h3 {
    width: auto !important;
    display: inline-block;
    margin: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    padding: 8px 15px;
    position: relative;
}

.title-product h3:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 47px solid transparent;
    border-left: 40px solid var(--primary-color);
    position: absolute;
    border-bottom: 0 solid transparent;
    right: -40px;
    top: 0;
}

.product-item .product-cart-area {
    margin: 10px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-item .product-cart-area .add-to-cart a {
    margin: 0 !important;
    font-size: 14px;
    text-transform: unset;
    font-weight: normal;
    padding: 0 10px;
    background: #1473881c;
    border-color: #147388 !important;
    color: var(--primary-color);
    width: 160px;
    height: 40px;
    line-height: 40px;
}

.product-item .product-cart-area .add-to-cart a i {
    margin: 0;
    height: 35px;
    line-height: 35px;
    margin-top: -2px;
}

.product-item .product-cart-area .add-to-cart a i {
    margin: 0;
}

.product-item .product-cart-area .add-to-store a {
    background: var(--primary-color);
    display: block;
    color: #fff;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}

.product-item .product-cart-area .add-to-store {
    width: calc(100% - 160px);
    margin-left: 10px;
}

.product-item .product-cart-area .add-to-store a {
    background: var(--primary-color);
    display: block;
    color: #fff;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.category-entry .product-item .product-cart-area .add-to-cart a {
    width: 145px;
    padding: 0;
}

.category-entry .product-item .product-cart-area .add-to-store {
    width: calc(100% - 145px);
}

/**signle product**/
.single-product div#product-sidebar {
    padding-top: 30px;
}

.product-info {
    padding-top: 0px !important;
}

.product-info .price-wrapper ins span,
.product-info .price-wrapper b {
    color: #ff3333 !important;
    font-size: 20px;
}

.product-info .price-wrapper del {
    color: gray;
    font-size: 18px;
}

.product-short-description {
    font-size: 15px;
    margin: 10px 0 20px 0;
}

.badge-container.is-larger.absolute.left.top.z-1 {
    display: none;
}

.product-summary .quantity {
    display: flex;
}

.product-summary .quantity .button.minus, .product-summary .quantity .button.plus {
    height: 40px !important;
    min-height: 40px !important;
    font-weight: bold;
    border: 1px solid #ccc !important;
    background: transparent !important;
    width: 35px !important;
    box-shadow: unset !important;
}

.product-summary .quantity input[type=number] {
    width: 90px;
    margin: 0 5px !important;
    min-width: 90px !important;
    box-shadow: unset !important;
    height: 40px !important;
    min-height: 40px !important;
    border: 1px solid #ccc !important;
}

.product-info button.single_add_to_cart_button.button.alt {
    background: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    border-radius: 5px !important;
    height: 40px !important;
    margin: 0px !important;
    font-size: 16px;
}

button.button.buy_now_button {
    background: var(--primary-color) !important;
    border-radius: 5px !important;
    margin: 0px !important;
    font-size: 16px;
}

._category_item {
    text-align: center;
}

._category_item h4 {
    font-size: 15px;
    margin: 10px 0 0 0;
}

._category_item img {
    width: 70px;
    height: 70px;
    margin: auto;
}

._category_item a {
    border: 1px solid var(--primary-color);
    border-radius: 99px;
    font-size: 15px;
    padding: 2px 15px;
    margin: 10px 0 0 0;
    display: inline-block;
    color: var(--primary-color);
}

._category_item a:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.flex-center {
    justify-content: center !important;
}