/*!
* PT. IMAJIKU CIPTA MEDIA
* Copyright 2019-2021 IMAJIKU.
*/


/* =LAYOUT
-------------------------------------------------------------*/
.wrapper {}

.section {
    position: relative;
    padding: 2.5rem 0 2.5rem;
}

.section-top {
    /*	padding-top: 60px;*/
    padding-top: 150px;
}

.section-blank {
    padding: 60px 0 100px;
    /*padding: 150px 0 100px;*/
}

.layout-page {
    min-height: 75vh;
    background-color: #F3F9FB;
}

.layout-page-full {
    height: 100vh;
    min-height: unset;
    overflow: auto;
    background-color: #e0f0ff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.boxed-mjk {
    padding: 15px;
    background-color: transparent;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-bottom: 1px solid #D9D9D9;
    /* box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);*/
}


/* =GENERAL
-------------------------------------------------------------*/
.hide-for-desktop {
    display: none;
}

.hide-for-mobile {
    display: block;
}

/* Vertical Position style */
.v-top {
    vertical-align: top;
}

.v-middle {
    vertical-align: middle;
}

.v-bottom {
    vertical-align: bottom;
}

/*effect for image*/
.overlay-dark:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: -webkit-radial-gradient(top center, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    background: -moz-radial-gradient(top center, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    background: radial-gradient(top center, ellipse cover, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/*for resposive condition navbar*/
.disablescrollbar {
    overflow: hidden;
}

/*preloader*/
.preload-mjk {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: var(--white);
    z-index: 2000;
}

.preload-mjk.loading {
    display: none;
}

.preload-mjk-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preload-mjk-item i {
    font-size: 30px;
    margin: 0 auto;
    position: relative;
    color: #f3715f;
    /*color: var(--pastel-orange-dark);*/
}

.preload-mjk-item img {
    display: block;
    width: auto;
    margin: 0 auto;
}

/* =MODAL DIALOG
------------------------------------------------------------ */
.modal-open {
    padding-right: 0 !important;
}

.modal-open .navbar {
    padding-right: 1rem !important;
}

.modal-content {
    border-color: transparent;
    border-radius: 0;
    background-color: transparent;
}

.modal-header {
    border-bottom: none;
    padding: 15px 15px 10px;
    margin-top: 20px;
    background-color: var(--white);
}

.modal-header .modal-title {
    width: 100%;
    text-align: left;
    margin: 0 auto;
    border: none;
    padding-bottom: 0;
    font-weight: 700;
}

.modal-header h1.modal-title {
    font-size: 20px;
    color: var(--color-text-2);
    font-family: var(--font-family-2);
    font-weight: 600;
}

.modal-header h2.modal-title {
    font-size: 20px;
    color: var(--color-text-2);
    font-family: var(--font-family-2);
    font-weight: 600;
}

.modal-header h3.modal-title {
    font-size: 18px;
    color: var(--color-text-2);
    font-family: var(--font-family-2);
    font-weight: 600;
}

.modal-header h4.modal-title {
    font-size: 18px;
    color: var(--color-text-2);
    font-family: var(--font-family-2);
    font-weight: 600;
}

.modal-header h5.modal-title {
    font-size: 16px;
    color: var(--color-text-2);
    font-family: var(--font-family-2);
    font-weight: 600;
}

.modal-header h6.modal-title,
.modal-header p.modal-title {
    font-size: 14px;
}

.modal-header .modal-title img {
    display: block;
    height: 100px;
    width: auto;
    margin: 0 auto;
}

.modal-dialog .close {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 45px;
    height: 45px;
    line-height: 0;
    background-color: #E5E9F2;
    text-shadow: none;
    padding: 0;
    border: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    z-index: 10;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    opacity: 1;
}

.modal-dialog .close i {
    opacity: 1 !important;
    font-size: 16px;
    color: #2C3C4C;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transform-origin: center center;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
}

.modal-dialog .close:hover {
    opacity: 1 !important;
    background-color: #E5E9F2;
}

.modal-dialog .close:hover i {
    opacity: 1 !important;
    color: #2C3C4C;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transform-origin: center center;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
}

.modal-body {
    padding: 10px 15px 15px;
    background-color: var(--white);
}

.modal-body .form-group-mjk label {
    font-size: 14px;
}

.modal-footer {
    padding: 10px 15px 15px;
    justify-content: unset;
    border-top: 1px solid transparent;
    background-color: var(--white);
}

/*welcome*/
.welcomedialog-content .modal-body h1 {
    font-size: 24px;
}

/* =SLIDER
-------------------------------------------------------------*/
.slider-box {
    position: relative;
    display: block;
}

.slider-item {
    position: relative;
    display: block;
}

.slider-img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.slider-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

/*condition photo slider for desktop*/
.slider-img-desktop {
    display: block;
}

/*condition photo slider for mobile*/
.slider-img-mobile {
    display: none;
}

/*content caption hero*/
.slider-caption-box {
    display: none;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(5%, -50%);
    width: 700px;
}

.slider-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
}

.slider-caption-desc {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.slider-caption-desc h1,
.slider-caption-desc h2,
.slider-caption-desc h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    text-align: left;
}

.slider-caption-desc p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: left;
}

.slider-caption-action {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}

.slick-disabled {
    display: none !important;
}

/*caption with animation*/
.slider-box .slick-current.slick-active .slider-caption {
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
}

/*button slider for global*/
.slider-button-prev,
.slider-button-next {
    position: absolute;
    top: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    width: 60px;
}

.slider-button-prev {
    left: 0;
}

.slider-button-next {
    right: 0;
}

.slider-button-prev:hover,
.slider-button-next:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.slider-button-prev .nav-circle-box,
.slider-button-next .nav-circle-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: var(--white);
    text-align: center;
    border: 1px solid var(--white);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.25));
    -webkit-filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.25));
    -moz-filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.25));
}

.slider-button-prev i,
.slider-button-next i {
    font-size: 20px;
    color: var(--color-1);
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

/*button with shadow blur*/
.slider-button-prev.variant-blur {
    left: 0;
    background-image: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 255));
    opacity: 0.6;
}

.slider-button-next.variant-blur {
    right: 0;
    background-image: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 255));
    opacity: 0.6;
}

/*.slider-button-prev.variant-blur{
	box-shadow: -22px 0px 55px rgb(229 229 229 / 84%);
	-webkit-box-shadow: -22px 0px 55px rgb(229 229 229 / 84%);
	-moz-box-shadow: -22px 0px 55px rgb(229 229 229 / 84%);
	background-color: rgb(229 229 229 / 60%);
}
.slider-button-next.variant-blur {
	box-shadow: 22px 0px 55px rgb(229 229 229 / 84%);
	-webkit-box-shadow: 22px 0px 55px rgb(229 229 229 / 84%);
	-moz-box-shadow: 22px 0px 55px rgb(229 229 229 / 84%);
	background-color: rgb(229 229 229 / 60%);
}*/

/*navigation dots - variant 1*/
.slider-box .slick-dots {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 20px;
    bottom: 0;
    text-align: center;
    z-index: 5;
    width: 100%;
}

.slider-box .slick-dots li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    vertical-align: middle;
    margin: 0;
    height: auto;
    width: auto;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.slider-box .slick-dots li button {
    width: 20px;
    height: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    line-height: unset;
}

.slider-box .slick-dots li button:before {
    content: "";
    position: relative;
    top: unset;
    left: unset;
    width: 10px;
    height: 10px;
    background-color: var(--grey-600);
    line-height: unset;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    opacity: 0.5;
}

.slider-box .slick-dots li.slick-active button:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    opacity: 1;
}

.slider-box .slick-dots li.slick-active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

/*navigation dots - variant 2*/
.slider-box.slider-dots-variant-2 .slick-dots {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 30px;
    bottom: 0;
    text-align: center;
    z-index: 5;
    width: 100%;
}

.slider-box.slider-dots-variant-2 .slick-dots li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    vertical-align: middle;
    margin: 0;
    height: auto;
    width: auto;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.slider-box.slider-dots-variant-2 .slick-dots li button {
    width: 20px;
    height: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    line-height: unset;
}

.slider-box.slider-dots-variant-2 .slick-dots li button:before {
    content: "";
    position: relative;
    top: unset;
    left: unset;
    width: 10px;
    height: 10px;
    background-color: var(--grey-500);
    line-height: unset;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    opacity: 0.5;
}

.slider-box.slider-dots-variant-2 .slick-dots li.slick-active button {
    width: 30px;
}

.slider-box.slider-dots-variant-2 .slick-dots li.slick-active button:before {
    content: "";
    width: 30px;
    height: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    opacity: 1;
    background-color: var(--color-1);
}

.slider-box.slider-dots-variant-2 .slick-dots li.slick-active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

/*navigation dots - variant absolute*/
.slider-box.slider-dots-absolute .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 100%;
}

.slider-box.slider-dots-absolute .slick-dots li button:before {
    content: "";
    background-color: var(--white);
}

/* = VARIANT SLIDER
-------------------------------------------------------------*/
/*hero slider with animateion*/
.slick-current.slick-active .home-mjk-caption {
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
}

/* = VARIANT SLIDER - CENTER
-------------------------------------------------------------*/
.slider-box.variant-center .slick-slide img {
    width: 100%;
    max-width: 400px;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.slider-box.variant-center .slick-center img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    z-index: 5;
}

/* = VARIANT SLIDER - PRODUCT
-------------------------------------------------------------*/
/*Thumbnav buttom view slider*/
.slider-detail-product-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.slider-detail-product-box .slider-detail-product-preview .detail-product-img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.slider-detail-product-box .slider-detail-product-preview .detail-product-img [data-aspect-ratio] {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background-color: transparent;
}

.slider-detail-product-box .slider-detail-product-preview .detail-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0px;
    margin: 0 auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.slider-detail-product-box .slider-detail-product-preview .detail-product-img,
.slider-detail-product-box .slider-detail-product-preview .detail-product-img:hover,
.slider-detail-product-box .slider-detail-product-preview .fancybox,
.slider-detail-product-box .slider-detail-product-preview .fancybox:hover {
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

/*thumbnail product detail slider image*/
.slider-detail-product-thumb {
    position: relative;
    display: block;
    z-index: 3;
}

.slider-detail-product-thumb .slider-detail-product-thumb-preview {
    margin: 0 20px 0;
}

.slider-detail-product-thumb .slider-detail-product-thumb-preview .detail-product-img {
    position: relative;
    display: block;
    padding: 0;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.slider-detail-product-thumb .slider-detail-product-thumb-preview .detail-product-img [data-aspect-ratio] {
    background-color: transparent;
}

.slider-detail-product-thumb .slider-detail-product-thumb-preview .detail-product-img img {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0 auto;
    border: 3px solid var(--white);
    object-fit: cover;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

.slider-detail-product-thumb .slider-detail-product-thumb-preview .slick-slide:hover .detail-product-img img {
    filter: brightness(90%);
    -webkit-filter: brightness(90%);
    -moz-filter: brightness(90%);
    border: 3px solid var(--grey-500);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.slider-detail-product-thumb .slider-detail-product-thumb-preview .slick-current.slick-active .detail-product-img img {
    border: 2px solid #0582CA;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.slider-detail-product-thumb .slider-detail-product-thumb-button {}

.slider-detail-product-thumb .slider-detail-product-thumb-button .slider-button-prev,
.slider-detail-product-thumb .slider-detail-product-thumb-button .slider-button-next {
    width: 30px;
}

.slider-detail-product-thumb .slider-detail-product-thumb-button .nav-circle-box {
    height: 30px;
    width: 30px;
}

.slider-detail-product-thumb .slider-detail-product-thumb-button .nav-circle-box i {
    font-size: 18px;
}

.slider-detail-product-thumb .slider-detail-product-thumb-button .slick-slider {
    margin: 0 15px 0;
}

/*thumbnav on view sideleft*/
.slider-detail-product-box.variant-sideleft {
    min-height: 340px;
}

.slider-detail-product-box.variant-sideleft .slider-detail-product-preview {
    padding-left: 100px;
}

.slider-detail-product-box.variant-sideleft .slider-detail-product-thumb {
    display: block;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100px;
    height: auto;
}

.slider-detail-product-box.variant-sideleft .slider-detail-product-thumb .detail-product-img {
    max-width: 85px;
}

.slider-detail-product-box.variant-sideleft .slider-detail-product-thumb .slider-detail-product-thumb-preview {
    margin: 0 auto 0;
}

.slider-detail-product-box.variant-sideleft .slider-detail-product-thumb .slider-detail-product-thumb-button {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.slider-detail-product-box.variant-sideleft .slider-detail-product-thumb .slider-detail-product-thumb-button .slider-button-prev {
    height: 30px;
    top: -40px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.slider-detail-product-box.variant-sideleft .slider-detail-product-thumb .slider-detail-product-thumb-button .slider-button-next {
    height: 30px;
    top: unset;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, 0%);
}

/*slider variant pagination*/
.slider-box.variant-slidecount {
    min-height: 340px;
    padding-left: 80px;
}

.slider-box.variant-slidecount .slider-slidecount-action {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    width: 80px;
    height: 105px;
}

.slider-box.variant-slidecount .slidecount-view {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translate(-50%, 0%);
    margin: 0 auto;
    width: 100%;
    height: 30px;
}

.slider-box.variant-slidecount .slidecount-view .current-slide {
    font-size: 14px;
    line-height: 1;
    padding: 0 3px 0;
}

.slider-box.variant-slidecount .slidecount-view .total-slide {
    font-size: 12px;
    line-height: 1;
    color: var(--grey-600);
    padding: 0 3px 0;
}

.slider-box.variant-slidecount .slider-button-prev,
.slider-box.variant-slidecount .slider-button-next {
    position: absolute;
    display: flex;
    align-items: center;
    width: 30px;
    height: auto;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}

.slider-box.variant-slidecount .slider-button-prev {}

.slider-box.variant-slidecount .slider-button-next {
    top: 70px;
}

.slider-box.variant-slidecount .slider-button-prev .nav-circle-box,
.slider-box.variant-slidecount .slider-button-next .nav-circle-box {
    height: 30px;
    width: 30px;
}

.slider-box.variant-slidecount .slider-button-prev .nav-circle-box i,
.slider-box.variant-slidecount .slider-button-next .nav-circle-box i {
    font-size: 18px;
}

/* = VARIANT SLIDER - OVERFLOW
-------------------------------------------------------------*/
.slider-box.variant-overflow {
    display: block;
    width: 100%;
    position: initial;
}

.slider-box.variant-overflow .slick-list {
    overflow: visible;
}

.slider-box.variant-overflow .slick-slide {
    position: relative;
}

.slider-overflow-action {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: relative;
}

.slider-overflow-action .slider-button-prev,
.slider-overflow-action .slider-button-next {
    position: relative;
    width: 50px;
}

/* = VARIANT SLIDER - LOGO Partner
-------------------------------------------------------------*/
.partner-logo-list {
    display: block;
    position: relative;
}

.partner-logo-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.partner-logo-list .slick-slide {
    display: flex;
    flex: 1 1 30%;
}

.partner-logo-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    width: 100%;
}

.partner-logo-item:hover img {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    box-shadow: 0px 4px 10px 0px rgba(134, 134, 134, 0.25);
}

.partner-logo-item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
}

.partner-logo-item-img img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 140px;
    object-position: center;
}

/* =BANNER TOP PAGES
-------------------------------------------------------------*/
.banner-top-box {
    display: block;
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.banner-top-box .img-banner-top {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.banner-top-box .banner-top-caption {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.banner-top-box .banner-top-caption h1,
.banner-top-box .banner-top-caption h2,
.banner-top-box .banner-top-caption h3 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.banner-top-box .banner-top-caption p {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0;
}

/*banner top variant 2 image tidak terpotong*/
.banner-top-box.variant-2 {
    height: auto;
}

.banner-top-box.variant-2 .img-banner-top {
    object-fit: contain;
    object-position: top;
    width: 100%;
    height: auto;
}

/* =BREADCRUMB
------------------------------------------------------------ */
.breadcrumb-box {
    display: block;
    width: 100%;
    position: relative;
    margin: 0px;
    z-index: 2;
}

.breadcrumb-box {
    background-color: var(--white);
}

.breadcrumb {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--white);
    min-height: 50px;
    margin: 0;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    padding: 10px 0px 10px;
}

.breadcrumb .breadcrumb-item {
    color: #333333;
    font-size: 14px;
    line-height: 1.2;
    padding-right: 0.7rem;
    position: relative;
}

.breadcrumb .breadcrumb-item a {
    color: var(--color-text-1);
    font-size: 14px;
}

.breadcrumb .breadcrumb-item.active {
    color: var(--color-1);
}

.breadcrumb .breadcrumb-item:hover a {
    color: var(--color-1) !important;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 8px;
    color: #999999;
    padding-left: 0;
    padding-right: 0.7rem;
    position: relative;
    top: 3px;
}

/* = BANNER CONTENT
-------------------------------------------------------------*/
.section-banner-mjk {
    display: block;
    position: relative;
    padding: 0;
}

.banner-mjk {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.img-banner-mjk {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
}

.img-banner-mjk-desktop,
.img-banner-mjk-mobile {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
}

.img-banner-mjk-desktop {
    display: block;
}

.img-banner-mjk-mobile {
    display: none;
}

.banner-mjk-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    padding: 20px;
    z-index: 2;
}

.banner-mjk-caption h2,
.banner-mjk-caption h3 {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.banner-mjk-caption p {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/*text center*/
.banner-mjk.variant-center .banner-mjk-caption {
    text-align: center;
    align-items: center;
}

.banner-mjk.variant-center .banner-mjk-caption h2,
.banner-mjk.variant-center .banner-mjk-caption h3,
.banner-mjk.variant-center .banner-mjk-caption p {
    text-align: center;
}

.banner-mjk.variant-center .banner-mjk-caption .btn {
    margin: 0 auto;
}

/*banner with method clip triangle*/
.section-banner-clipath {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 460px;
}

.section-banner-clipath img {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    object-fit: cover;
    z-index: 1;
}

.banner-clipath-slice-top {
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 35%, 100% 100%, 0% 100%);
}

.banner-clipath-slice-bottom {
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 75%);
}

.banner-clipath-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding: 20px;
    z-index: 2;
}

.banner-clipath-caption h2,
.banner-clipath-caption h3 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 20px 0;
}

.banner-clipath-caption p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* =SIDEBARMENU
-------------------------------------------------------------*/
.sidebar-menu-box {
    position: relative;
    padding: 0 25px 0 0;
}

.sidebar-menu-box .sidebar-menu-title {
    margin-bottom: 20px;
}

.sidebar-menu-box .sidebar-menu-title h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0;
}

.sidebar-menu-box .navbar-toggler {
    display: none;
}

.sidebar-menu-box>ul.collapse,
.sidebar-menu-box>ul.collapse.show {
    display: block;
}

.sidebar-menu-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-box li {}

.sidebar-menu-label {
    color: #999999;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sidebar-menu-label.active,
.sidebar-menu-label:hover,
.sidebar-menu-link[aria-expanded="true"] {
    color: #f98341 !important;
    background-color: #FEF3DF;
}

.sidebar-menu-link {
    width: 100%;
    cursor: pointer;
    padding: 15px 15px 15px 15px;
    position: relative;
    display: block;
    font-size: 16px;
    color: #999999 !important;
}

.sidebar-menu-link:hover {
    cursor: pointer;
}

.sidebar-submenu {}

.sidebar-submenu .sidebar-menu-link {
    padding-left: 30px;
    color: #999999;
    background-color: #FEEDD1;
}

.sidebar-submenu .sidebar-menu-link.active,
.sidebar-submenu .sidebar-menu-link:hover {
    color: #f98341 !important;
}

/* sidebar menu caret */
.sidebar-menu-link .caret-show,
.sidebar-menu-link .caret-hide {
    float: right;
    text-align: center;
    width: 15px;
}

.sidebar-menu-link[aria-expanded="false"] .caret-show {
    display: inline-block;
}

.sidebar-menu-link[aria-expanded="true"] .caret-show {
    display: none;
}

.sidebar-menu-link[aria-expanded="false"] .caret-hide {
    display: none;
}

.sidebar-menu-link[aria-expanded="true"] .caret-hide {
    display: inline-block;
}

.sidebar-menu-link[aria-expanded="true"] .caret-hide i {
    color: #f98341;
}

/* =COLLAPSE
-------------------------------------------------------------*/
.collapse-mjk-item {}

.collapse-mjk-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    min-height: 50px;
}

.collapse-mjk-link {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--grey-300);
    padding: 15px 3.2rem 15px 0;
    position: relative;
}

.collapse-mjk-link:link {
    color: unset !important;
}

.collapse-mjk-link[aria-expanded="true"] {
    border-bottom: none;
}

.collapse-mjk-link h4 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: var(--color-text-3);
    font-weight: 600;
    font-family: var(--font-family-2);
}

.collapse-mjk-body {
    border-bottom: 1px solid var(--grey-300);
}

/*with navigation variant 1: icon chevron*/
.collapse-mjk-link.nav-variant-1[aria-expanded="false"]:after,
.collapse-mjk-link.nav-variant-1[aria-expanded="true"]:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--color-text-1);
    font-size: 16px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 10px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-text-1);
    background-color: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.collapse-mjk-link.nav-variant-1[aria-expanded="false"]:after {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}

.collapse-mjk-link.nav-variant-1[aria-expanded="true"]:after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    border: 1px solid var(--color-1);
    color: var(--color-1);
}

.collapse-mjk-link.nav-variant-1[aria-expanded="true"] h4 {
    color: var(--color-1);
}

/*with navigation variant 2: icon plus*/
.collapse-mjk-link.nav-variant-2[aria-expanded="false"]:after,
.collapse-mjk-link.nav-variant-2[aria-expanded="true"]:after {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #333333;
    font-size: 16px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.collapse-mjk-link.nav-variant-2[aria-expanded="false"]:after {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}

.collapse-mjk-link.nav-variant-2[aria-expanded="true"]:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
}

/* =CARD DEFAULT
-------------------------------------------------------------*/
.card-mjk-box {
    display: block;
    position: relative;
    width: 100%;
}

.card-mjk {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
}

.card-mjk-img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0 0 15px;
}

.card-mjk-img [data-aspect-ratio] {
    background-color: transparent;
}

.card-mjk-img img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.card-mjk:hover .card-mjk-img img {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    filter: brightness(80%);
    -webkit-filter: brightness(80%);
    -moz-filter: brightness(80%);
}

.card-mjk-desc {
    position: relative;
    display: block;
    width: 100%;
}

.card-mjk-desc-item {
    margin: 0 0 15px;
}

.card-mjk-desc-item h3 {
    font-size: 16px;
    color: #333333;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}

.card-mjk-desc-item p {
    color: #666666;
    font-size: 14px;
    line-height: 1.2;
    margin: 5px 0;
}

.card-mjk-datetime {
    position: relative;
    display: flex;
    font-size: 14px;
    color: #999999;
    flex-wrap: wrap;
}

.card-mjk-action {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

/*card horizontal*/
.card-mjk-box.variant-horizontal .card-mjk {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.card-mjk-box.variant-horizontal .card-mjk-img {
    width: 190px;
    height: auto;
}

.card-mjk-box.variant-horizontal .card-mjk-desc {
    width: 100%;
    flex: 1;
    padding-left: 15px;
}

/*card meta*/
.card-mjk-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 10px 0 10px;
}

.card-mjk-meta-time {
    margin-bottom: 5px;
}

.card-mjk-meta-time p {
    font-size: 13px;
    line-height: 1;
    color: var(--grey-500);
    margin-bottom: 0;
}

.card-mjk-meta-time i {
    color: var(--grey-500);
}

.card-mjk-meta-tags {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 15px 0 15px;
    position: relative;
}

.card-mjk-meta-tags-label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 0 5px;
    margin-right: 5px;
}

.card-mjk-meta-tags-label i {
    font-size: 13px;
    color: var(--grey-500);
}

.card-mjk-meta-tags ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}

.card-mjk-meta-tags li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 1;
    margin: 0 10px 10px 0;
    padding: 3px 8px 3px;
    background-color: var(--grey-200);
    color: var(--grey-400);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.card-mjk-meta-tags li a {
    color: var(--grey-600);
}

.card-mjk-meta-tags li:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

/* =CARD TESTIMONIAL
------------------------------------------------------------ */
.card-mjk-box.card-testimonial-box {
    display: flex;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    padding: 20px 15px 20px;
    position: relative;
    background-color: var(--grey-50);
}

.card-mjk-box.card-testimonial-box .card-mjk-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.card-mjk-box.card-testimonial-box .card-mjk-img img {
    display: block;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.card-mjk-box.card-testimonial-box .card-mjk-profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.card-mjk-box.card-testimonial-box .card-mjk-profile:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 2px;
    width: 80px;
    background-color: #dddddd;
}

.card-mjk-box.card-testimonial-box .card-mjk-profile h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--grey-600);
    text-align: center;
    margin-bottom: 5px;
}

.card-mjk-box.card-testimonial-box .card-mjk-profile p {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey-600);
    text-align: center;
    margin-bottom: 0;
}

.card-mjk-box.card-testimonial-box .card-mjk-desc i {
    font-size: 30px;
    color: var(--pastel-orange);
}

.card-mjk-box.card-testimonial-box .card-mjk-desc blockquote,
.card-mjk-box.card-testimonial-box .card-mjk-desc p {
    font-size: 16px;
    font-weight: 400;
    color: var(--grey-600);
    text-align: center;
    margin-bottom: 0;
}

/* =CARD PREVIEW IMAGES & VIDEO (fancybox)
------------------------------------------------------------ */
.fancysimple-images,
.fancysimple-video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.fancysimple-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 60px;
    width: 60px;
    border: 2px solid var(--white);
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    z-index: 10;
}

.fancysimple-icon i {
    font-size: 20px;
    color: var(--white);
}

.fancysimple-images:hover img,
.fancysimple-video:hover img {
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    filter: brightness(60%);
    -webkit-filter: brightness(60%);
    -moz-filter: brightness(60%);
}

.fancysimple-video:hover .fancysimple-icon {
    background-color: var(--red);
    border-color: var(--red);
}

/*small version for thumbnail slider*/
.fancysimple-icon.small {
    width: 30px;
    height: 30px;
}

.fancysimple-icon.small i {
    font-size: 10px;
}

.detail-product-img:hover .fancysimple-icon,
.fancybox:hover .fancysimple-icon {
    background-color: var(--red);
    border-color: var(--red);
}

/* =FAQ
------------------------------------------------------------ */
.tab-mjk-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-right: 1px solid var(--grey-300);
    padding-bottom: 30px;
}

.tab-mjk-nav .nav-link {
    background-color: transparent;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    padding: 10px 0 10px;
    color: #666666;
    font-weight: 500;
}

.tab-mjk-nav .nav-link.active {
    background-color: transparent;
    color: var(--color-1);
}

/* = FAQ VARIATION
------------------------------------------------------------ */
.tabs-faq {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-right: unset;
}

.tabs-faq li.nav-item {
    margin-right: 8px;
    margin-bottom: 8px;
}

.tabs-faq.tab-mjk-nav .nav-link.active {
    color: #fff;
    background: #4fb34f;
    border: 1px solid transparent;
}

.tabs-faq.tab-mjk-nav .nav-link {
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #d4cdcd;
}

/* =LOGIN SINGLE PAGE
------------------------------------------------------------ */
.frontsite-auth-row {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
}

.frontsite-auth-col-img {
    display: table-cell;
    width: 40%;
    vertical-align: middle;
    position: relative;
}

.frontsite-auth-col-img img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    position: absolute;
    top: 0;
    left: 0;
}

img.bg-auth-img {}

img.bg-auth-desc {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.frontsite-auth-col-desc {
    display: table-cell;
    width: 60%;
    vertical-align: middle;
    position: relative;
    background-color: var(--white);
}

.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.auth-box {
    display: block;
    max-width: 500px;
    width: 100%;
    margin: 0;
    padding: 20px 25px 20px;
    z-index: 3;
    position: relative;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

.auth-box.register {
    max-width: unset;
}

.auth-box.auth-simple-box {
    max-width: unset;
    margin-top: 30px;
}

.auth-box .auth-header {
    display: block;
    margin-bottom: 20px;
}

.auth-box .auth-header img {
    display: block;
    width: auto;
    height: 45px;
    margin: 0 auto 10px;
}

.auth-box .auth-header h1,
.auth-box .auth-header h2 {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.auth-box .auth-header h3 {
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
}

.auth-box .auth-form {
    display: block;
    margin-bottom: 20px;
}

.auth-box .auth-form .form-group {
    margin-bottom: 10px;
}

.auth-box .auth-form-remember {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.auth-box .auth-form-remember p {
    font-size: 14px;
    margin: 0;
}

.auth-box .auth-form-action {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 8px 0 8px;
}

.auth-box .auth-form-forgot {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.auth-box p {
    font-size: 14px;
    margin: 3px 0;
}

.auth-additional {}

.auth-additional p {
    font-size: 14px;
    margin: 0;
}

/* =REGISTER SINGLE PAGE
------------------------------------------------------------ */
.layout-register-row {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
}

.layout-register-col-img {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    position: relative;
}

.layout-register-col-img img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

img.bg-register-img {}

img.bg-register-desc {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.layout-register-col-desc {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    position: relative;
}

.register-box {
    display: block;
    max-width: 812px;
    margin: 5% auto 5%;
    padding: 20px 25px 20px;
    z-index: 3;
    position: relative;
}

.register-box .register-header {
    display: block;
    margin-bottom: 20px;
}

.register-box .register-header img {
    display: block;
    width: auto;
    height: 48px;
    margin-bottom: 30px;
}

.register-box .register-header h1 {
    font-size: 16px;
    font-weight: 600;
    color: #0c1d6b;
}

.register-box .register-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #0c1d6b;
}

/* =MAP
-------------------------------------------------------------*/
.map-leaflet {
    display: block;
    position: relative;
}

.map-leaflet {
    width: 100%;
    height: 500px;
}

/*leaflet*/
.popupCustom .leaflet-popup-content {
    min-height: 100px;
    margin: 12px;
    position: relative;
    overflow: hidden;
}

.popupCustom .leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.popupCustom .leaflet-content-box {}

.popupCustom .leaflet-content-box h4,
.popupCustom .leaflet-content-box p {
    margin-top: 0;
    margin-bottom: 8px;
    color: #000000;
}

.popupCustom .leaflet-popup-content img {
    width: 100%;
    height: auto;
}

.popupCustom .leaflet-content-image {
    position: relative;
}

.popupCustom .leaflet-content-text {
    margin-bottom: 20px;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    position: relative;
    width: 150px;
}

.leaflet-popup-content ul {
    padding-inline-start: 15px;
}

/* =PAGINATION
------------------------------------------------------------ */
.pagination {
    justify-content: center;
    margin: 15px 0 15px;
}

.pagination .page-link {
    color: #999999;
    font-size: 14px;
    padding: 5px 10px 5px;
    border: 1px solid var(--grey-300);
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid var(--grey-300);
    background-color: var(--white);
    margin: 0 3px 0;
}

.page-item:last-child .page-link {
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.page-item:first-child .page-link {
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.pagination .page-link i {
    font-size: 12px;
}

.pagination .page-link:hover {
    border-color: var(--color-1);
}

.pagination .page-item.active .page-link {
    color: var(--white);
    font-weight: bold;
    border: 1px solid var(--color-1);
    background-color: var(--color-1);
}

.pagination .page-item.active .page-link:hover {
    color: var(--white);
}

.pagination .page-item .page-link:focus {
    outline: none;
    box-shadow: none;
}

.page-item.disabled .page-link {
    color: var(--grey-300);
}

/* = PARALLAX
------------------------------------------------------------ */

.bg-mjk-parallax {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 600px;
}

.bg-mjk-parallax img {
    width: 100%;
    height: auto;
}

.bg-mjk-parallax .fancybox {
    display: none;
}

.section-parallax-right {
    display: block;
    position: relative;
}

.bg-mjk-parallax-right {
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    background-attachment: fixed;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right center;
}

/* = SCROLLING CONTENT HORIZONTAL
------------------------------------------------------------ */
.scrolling-menu-mjk {
    display: block;
    position: relative;
    width: 100%;
}

.scrolling-menu-mjk-frame .scrolling-menu-mjk-slide {
    margin: 0;
    padding: 10px 0;
    height: 100%;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.scrolling-menu-mjk-frame {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 0;
    overflow: hidden;
}

.scrolling-menu-mjk-frame .scrolling-menu-mjk-slide .scrolling-menu-mjk-item {
    float: left;
    margin: 0 5px 0 0;
    width: auto;
    height: 100%;
    padding: 5px 20px;
    background-color: #828282;
    text-align: center;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrolling-menu-mjk-frame .scrolling-menu-mjk-slide .scrolling-menu-mjk-item .scrolling-menu-mjk-link {
    color: var(--white);
}

.scrolling-menu-mjk-frame .scrolling-menu-mjk-slide .scrolling-menu-mjk-item:last-child {
    margin-right: 20px;
}

.scrolling-menu-mjk-frame .scrolling-menu-mjk-slide .scrolling-menu-mjk-item.active {
    background-color: #2055c7;
}

.scrolling-menu-mjk-scrollbar {
    width: 100%;
    height: 6px;
    display: none;
}

.scrolling-menu-mjk-scrollbar .scrolling-menu-mjk-handle {
    width: 100px;
    height: 100%;
    background: #dcdcdc;
}

.scrolling-menu-mjk-controls {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 22px;
}

.scrolling-menu-mjk-controls .prevPage,
.scrolling-menu-mjk-controls .nextPage {
    position: absolute;
    display: block;
}

.scrolling-menu-mjk-controls .prevPage {
    left: -15px;
    z-index: 2;
}

.scrolling-menu-mjk-controls .nextPage {
    right: -15px;
    z-index: 2;
}

.scrolling-menu-mjk-item:hover {
    cursor: pointer;
}

.scrolling-menu-mjk-controls .nav-horimenu-prev.disabled,
.scrolling-menu-mjk-controls .nav-horimenu-next.disabled {
    display: none;
}

.btn-horimenu {
    background-color: #5f5f5f;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 0;
    padding: 0;
}

.btn-horimenu:hover {
    background-color: #3c3c3c;
}

.nav-horimenu-prev,
.nav-horimenu-next {
    display: block;
}

.nav-horimenu-prev:before {
    content: ' ';
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, white, transparent);
    left: -3px;
    top: -6px;
    display: block;
    position: absolute;
    z-index: 1;
}

.nav-horimenu-next:before {
    content: ' ';
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, transparent, white);
    right: -3px;
    top: -6px;
    display: block;
    position: absolute;
    z-index: 1;
}

/* =FOOTER
-------------------------------------------------------------*/
.footer {
    position: relative;
    display: block;
    color: var(--white);
    background-color: var(--white);
}

.footer-top {
    display: block;
    color: var(--white);
    background-color: var(--white);
    padding: 2rem 0 1rem;
}

.footer-middle {
    display: block;
    color: var(--white);
    padding: 1rem 0 2rem;
    background-color: var(--white);
}

.footer-bottom {
    display: block;
    color: var(--color-text-1);
    padding: 1rem 0 1rem;
    background-color: #F2F2F2;
}

.foo-logo {
    display: block;
    width: auto;
}

.foo-logo img {
    display: block;
    width: auto;
    max-height: 140px;
}

.foo-menu {
    position: relative;
}

.foo-menu h3 {
    color: var(--color-text-1);
    font-family: var(--font-family-2);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.foo-menu ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0 15px 0 0;
}

.foo-menu li {
    color: var(--color-text-1);
    display: block;
    margin: 10px 0;
    font-size: 14px;
}

.foo-menu li a {
    color: var(--color-text-1);
}

.foo-menu li a:hover {
    color: #0582CA;
}

.foo-menu .foo-item-icon,
.foo-address .foo-item-icon {
    width: 20px;
}

.foo-address {
    position: relative;
}

.foo-address h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.foo-address ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0 15px 0 0;
}

.foo-address li {
    margin: 10px 0;
}

.foo-address li a {
    color: var(--color-text-1);
    font-size: 14px;
}

.foo-address li a:hover {
    color: var(--color-1);
}

.foo-address i {
    color: #F18646;
}

.foo-menu-static {}

.foo-menu-static ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0;
    margin: 0;
    list-style: none;
}

.foo-menu-static li {
    color: var(--white);
    font-size: 13px;
    border-right: 1px solid var(--white);
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: center;
}

.foo-menu-static li:last-child {
    border-right: none;
}

.foo-menu-static li a {
    margin: 0 10px 0;
    line-height: 1.2;
    color: var(--white);
}

.foo-menu-static li a:hover {
    color: #000000;
}

.foo-list-images h3 {
    color: var(--color-text-1);
    font-family: var(--font-family-2);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.foo-list-images {
    position: relative;
}

.foo-list-images ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0;
    padding: 0;
    width: 100%;
}

.foo-list-images li {
    display: block;
    margin: 0 10px 10px 0;
}

.foo-list-images li img {
    width: 60px;
    max-width: 60px;
}

/*form subscribe*/
.foo-subscribe h3 {
    color: var(--color-text-1);
    font-family: var(--font-family-2);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.foo-subscribe p {
    color: var(--color-text-1);
    font-family: var(--font-family-1);
    font-size: 14px;
    font-weight: 400;
}

/*social media at footer*/
.foo-social-network {
    position: relative;
}

.foo-social-network h3 {
    color: var(--color-text-1);
    font-family: var(--font-family-2);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.foo-social-network ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.foo-social-network li {
    display: inline-flex;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.foo-social-network li:last-child {
    margin-right: 0;
}

.foo-social-network li:hover .social-network-icon-box {
    opacity: 0.8;
    border-color: var(--color-1);
    background-color: transparent;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.foo-social-network li:hover .social-network-icon-box i {
    color: var(--color-1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.foo-social-network .social-network-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-1);
    background-color: var(--color-1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.foo-social-network .social-network-icon-box i {
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

/*copyright*/
.copyright {
    display: block;
}

.copyright p {
    color: var(--color-text-1);
    font-size: 12px;
    margin: 0;
}

.copyright a {
    color: var(--color-text-1);
}

/* =TABS
-------------------------------------------------------------*/
/*Default Tabs*/
.tabs-mjk-nav {
    position: relative;
}

.tabs-mjk-nav .nav-tabs {
    border-bottom: 1px solid #2055c7;
}

.tabs-mjk-nav .nav-tabs .nav-item {
    margin-bottom: unset;
    flex-grow: 1;
    text-align: center;
    margin-right: -1px;
}

.tabs-mjk-nav .nav-tabs .nav-item .nav-link {
    border: none;
    background-color: var(--grey-300);
}

.tabs-mjk-nav .nav-tabs .nav-item .nav-link:hover,
.tabs-mjk-nav .nav-tabs .nav-item.show .nav-link,
.tabs-mjk-nav .nav-tabs .nav-link.active {
    background-color: #2055c7;
    color: var(--white);
}

.tabs-mjk-nav .nav-tabs .nav-item:not(:last-child) .nav-link {
    margin-right: 4px;
}

/*horizontal square tabs */
.tabs-square .tabs-mjk-nav {
    position: relative;
    border-left: 1px solid #2055c7;
    border-right: 1px solid #2055c7;
    border-top: 1px solid #2055c7;
}

.tabs-square .tabs-mjk-nav .nav-tabs {
    border-bottom: 0;
}

.tabs-square .tabs-mjk-nav .nav-tabs .nav-item {
    margin-bottom: unset;
    flex-grow: 1;
    text-align: center;
    border-bottom: 1px solid #2055c7;
    margin-right: -1px;
}

.tabs-square .tabs-mjk-nav .nav-tabs .nav-item .nav-link {
    color: #999999;
    background-color: unset;
}

.tabs-square .tabs-mjk-nav .nav-tabs .nav-item .nav-link:hover {
    background-color: #2055c7;
    color: var(--white);
    border-color: transparent;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
}

.tabs-square .tabs-mjk-nav .nav-tabs .nav-item.show .nav-link,
.tabs-square .tabs-mjk-nav .nav-tabs .nav-link.active {
    border-color: transparent;
    background-color: #2055c7;
    color: var(--white);
    border-top-left-radius: unset;
    border-top-right-radius: unset;
}

.tabs-square .tabs-mjk-nav .nav-tabs .nav-item:not(:last-child) .nav-link {
    margin-right: 2px;
}

.tabs-mjk-content {
    padding: 15px 0 30px;
}

/*vertical tabs */
.tabs-vertical .tabs-mjk-nav {
    border-right: 1px solid #ddd;
}

.tabs-vertical .tabs-mjk-nav .nav {
    flex-direction: column;
}

.tabs-vertical .tabs-mjk-nav .nav h4 {
    padding: .5rem 1rem;
}

.tabs-vertical .tabs-mjk-nav .nav-pills .nav-link {
    text-transform: capitalize;
    font-weight: bold;
}

.tabs-vertical .tabs-mjk-nav .nav-pills .nav-link:hover {
    color: #007bff;
}

.tabs-vertical .tabs-mjk-nav .nav-pills .nav-link.active,
.tabs-vertical .tabs-mjk-nav .nav-pills .show>.nav-link {
    background-color: transparent;
    color: #007bff;
}

/*rounded horizontal tabs */
.tabs-rounded .tabs-mjk-nav {
    position: relative;
    border-radius: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 5px;
}

.tabs-rounded .tabs-mjk-nav .nav-tabs {
    border-bottom: 0;
}

.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item {
    margin-bottom: unset;
    flex-grow: 1;
    text-align: center;
}

.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item .nav-link {
    color: #999999;
    background-color: unset;
}

.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item .nav-link:hover {
    background-color: #2055c7;
    color: var(--white);
    border-color: transparent;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
}

.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item.show .nav-link,
.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-link.active {
    border-color: transparent;
    background-color: #2055c7;
    color: var(--white);
    border-top-left-radius: unset;
    border-top-right-radius: unset;
}

.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item.show:first-child .nav-link,
.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item:first-child .nav-link.active,
.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item:first-child .nav-link:hover {
    border-radius: 40px 0 0 40px;
    -webkit-border-radius: 40px 0 0 40px;
    -moz-border-radius: 40px 0 0 40px;
}

.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item.show:last-child .nav-link,
.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item:last-child .nav-link.active,
.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item:last-child .nav-link:hover {
    border-radius: 0 40px 40px 0;
    -webkit-border-radius: 0 40px 40px 0;
    -moz-border-radius: 0 40px 40px 0;
}

.tabs-rounded .tabs-mjk-nav .nav-tabs .nav-item:not(:last-child) .nav-link {
    margin-right: 2px;
}

/*tabs variant tabs product detail*/
.tabs-mjk-box.tabs-product-detail {}

.tabs-mjk-box.tabs-product-detail .tabs-mjk-nav .nav-tabs {
    border-bottom: 1px solid #B5B5B5;
}

.tabs-mjk-box.tabs-product-detail .tabs-mjk-nav .nav-tabs .nav-item {
    flex-grow: unset;
}

.tabs-mjk-box.tabs-product-detail .tabs-mjk-nav .nav-tabs .nav-item .nav-link {
    font-size: 20px;
    text-align: left;
    background-color: transparent;
    padding: 10px 15px 5px 5px;
    color: var(--color-text-3);
    border-bottom: 2px solid transparent;
    font-family: var(--font-family-2);
    font-weight: 500;
}

.tabs-mjk-box.tabs-product-detail .tabs-mjk-nav .nav-tabs .nav-item:not(:last-child) .nav-link {
    margin-right: 20px;
    margin-bottom: 0;
}

.tabs-mjk-box.tabs-product-detail .tabs-mjk-nav .nav-tabs .nav-item .nav-link:hover {
    font-weight: 500;
    border-bottom: 2px solid var(--color-1);
}

.tabs-mjk-box.tabs-product-detail .tabs-mjk-nav .nav-tabs .nav-item.show .nav-link,
.tabs-mjk-box.tabs-product-detail .tabs-mjk-nav .nav-tabs .nav-item.show .nav-link:hover,
.tabs-mjk-box.tabs-product-detail .tabs-mjk-nav .nav-tabs .nav-link.active,
.tabs-mjk-box.tabs-product-detail .tabs-mjk-nav .nav-tabs .nav-link.active:hover {
    color: var(--color-text-3);
    font-weight: 600;
    border-bottom: 2px solid var(--color-1);
    font-family: var(--font-family-2);
}

/*tabs variant tabs dashboard order*/
.tabs-mjk-box.tabs-dashboard-order {}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav .nav-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: none;
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav .nav-tabs .nav-item {
    display: flex;
    flex-grow: 1;
    margin-bottom: unset;
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav .nav-tabs .nav-item:last-child {
    margin-right: 0;
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav .nav-tabs .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-2);
    font-family: var(--font-family-2);
    background-color: transparent;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    margin: 5px;
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav .nav-tabs .nav-link:hover {
    background-color: transparent;
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav {
    position: relative;
    background-color: transparent;
    padding: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: 1px solid var(--grey-300);
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav .nav-tabs .nav-item.show .nav-link,
.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav .nav-tabs .nav-link.active {
    border-color: transparent;
    background-color: var(--color-1);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav .collapse:not(.show) {
    display: block;
    max-height: 43px;
    overflow-y: hidden;
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-content .filter-mjk-group-box {
    justify-content: flex-start;
    padding: 15px 0 5px;
    border: none;
}

.tabs-mjk-box.tabs-dashboard-order .ohi-box {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-content {
    padding: 0;
}

/* =ARTICLE
-------------------------------------------------------------*/

/*article global style support summernote*/
.article {
    position: relative;
}

.article a {
    overflow-wrap: break-word;
    -webkit-overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-word-wrap: break-word;
    word-break: break-all;
    -webkit-word-break: break-all;
}

.article img {
    margin-bottom: 15px;
}

.article blockquote {
    border-left: 5px solid #c0c0c0;
    background-color: var(--grey-300);
    padding: 10px 15px 10px;
    line-height: 1.6;
    font-weight: 500;
    border-radius: 6px 0 0 6px;
    -webkit-border-radius: 6px 0 0 6px;
    -moz-border-radius: 6px 0 0 6px;
}

.article blockquote>* {
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/*article meta*/
.article-meta {
    position: relative;
}

.article-meta ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.article-meta ul li {
    color: #666666;
    font-size: 14px;
    margin-right: 15px;
}

/*article tags*/
.article-tags {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 15px 0 15px;
    position: relative;
}

.article-tags-label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 0 5px;
    margin-right: 15px;
}

.article-tags-label h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.article-tags-label i {
    font-size: 16px;
    color: #000000;
}

.article-tags ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}

.article-tags li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    margin: 0 10px 10px 0;
    padding: 5px 10px 5px;
    background-color: var(--grey-300);
    color: #000000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.article-tags li a {
    color: #000000;
}

.article-tags li:hover {
    background-color: #999999;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

/*share network*/
.share-network {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.share-network h3 {
    color: #666666;
    font-size: 13px;
    font-weight: 500;
    margin: 0 15px 0 0;
}

.share-network ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.share-network li {
    display: inline-flex;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.share-network li:last-child {
    margin-right: 0;
}

.share-network li:hover .share-network-icon-box {
    opacity: 0.8;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.share-network .share-network-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border: 1px solid var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.share-network .share-network-icon-box i {
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.share-network .share-network-icon-box.facebook {
    background-color: #39579a;
}

.share-network .share-network-icon-box.twitter {
    background-color: #1aa9e4;
}

.share-network .share-network-icon-box.whatsapp {
    background-color: #25D366;
}

.share-network .share-network-icon-box.telegram {
    background-color: #2AABEE;
}

.share-network .share-network-icon-box.link {
    background-color: #37455C;
}

.share-network .share-network-icon-box.print {
    background-color: #738A8D;
}

/* = CAREER
------------------------------------------------------------ */
.card-link-career {
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #efefef;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
}

.card-link-career:hover {
    box-shadow: 1px 7px 20px 3px #6da4e270;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    border: 1px solid #6da4e24a;
}

.card-link-career h4 {
    color: #333333;
    font-size: 18px;
}

.card-link-career p.clc-desc {
    color: #666666;
    margin-bottom: 25px;
}

.career-desc {
    display: flex;
    justify-content: start;
}

.career-desc p {
    margin-bottom: 0;
    align-self: center;
}

.career-desc i {
    margin-right: 8px;
    width: 22px;
    height: 22px;
    text-align: center;
    align-self: center;
    color: var(--color-1);
}

.career-box-item {
    width: 350px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.career-accordion-head {
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
}

.career-accordion .collapse-mjk-head {
    background-color: #f1f1f1;
}

.career-accordion .career-accordion-head {
    padding: 0 20px;
}

.career-accordion-head h4 {
    width: 50%;
    margin-bottom: 0;
    font-size: 25px;
}

.career-accordion-desc {
    display: flex;
    width: 50%
}

.career-accordion-desc div {
    margin-right: 12px;
    min-width: 200px;
}

.career-accordion .collapse-mjk-body {
    padding: 20px;
}

.career-accordion-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.application-box {
    background-color: #ebf1fa;
    border-radius: 5px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

/* = CONTACT
------------------------------------------------------------ */

/*social media at contact*/
.social-network {
    position: relative;
    margin: 20px 0;
}

.social-network ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.social-network li {
    display: inline-flex;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.social-network li:last-child {
    margin-right: 0;
}

.social-network .social-network-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.social-network .social-network-icon-box i {
    color: var(--color-1);
    font-size: 16px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.social-network li:hover .social-network-icon-box {
    opacity: 0.8;
    border-color: var(--color-1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.social-network li:hover .social-network-icon-box {
    background-color: var(--color-1)
}

.social-network li:hover .social-network-icon-box i {
    color: var(--white);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

/* = NOTIFICATION
------------------------------------------------------------ */
.notification-all-box {
    position: relative;
    display: block;
}

.notification-all ul {
    list-style: none;
    padding-left: 0;
}

.notification-all li {
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    padding: 15px;
}

.notification-all li.newest {
    background-color: #FFE1D2;
    border-bottom: none;
}

.notification-all-desc h3 {
    font-size: 16px;
}

.notification-all-desc p {
    font-size: 14px;
    margin-bottom: 0;
}

.notification-all-item {
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
}

.notification-all-time {
    text-align: right;
    align-self: center;
    color: #999999;
    font-size: 14px;
}

.notification-all-desc {
    width: 85%;
    margin-right: 10px;
}

.notification-all-box .notification-sortby h3 {
    color: #999999;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 15px;
}

/* =EMPTY PAGE / BLANK PAGE
-------------------------------------------------------------*/
.section-emptypage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 15px;
    position: relative;
}

.emptypage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 30px;
    width: 420px;
    z-index: 5;
}

.emptypage-img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.emptypage-img img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: auto;
}

.emptypage-label {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.emptypage-label h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #666666;
    margin: 0 10px 0 0;
    text-align: left;
    font-family: var(--font-family-40);
}

.emptypage-label h4 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    color: #666666;
    letter-spacing: -2px;
    margin: 0;
    text-align: center;
    font-family: var(--font-family-40);
}

.emptypage-label h2 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -4px;
    color: #666666;
    margin: 0;
    text-align: center;
    font-family: var(--font-family-40);
}

.emptypage-desc {
    display: block;
    padding: 10px 0 10px;
}

.emptypage-desc p {
    font-size: 16px;
    color: #777777;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
}

.emptypage-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0 0;
}

.section-emptypage .img-bg-emptypage {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/*empty page variant 2*/
.section-emptypage.variant-2 .emptypage {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    width: auto;
}

/* =EMPTY CONTENT
-------------------------------------------------------------*/
.empty-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    padding: 10px;
    margin: 20px 0 20px;
}

.empty-content-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto 10px;
}

.empty-content-img img {
    display: block;
    width: auto;
    height: auto;
    margin: 0 auto;
}

/*empty desc*/
.empty-content-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.empty-content-desc h1,
.empty-content-desc h2,
.empty-content-desc h3 {
    font-size: 18px;
    font-weight: 400;
    color: #777777;
    line-height: 1.2;
    margin-bottom: 5px;
    text-align: center;
}

.empty-content-desc p {
    color: #888888;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 10px;
}

.empty-content-action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* =NOTICE ALERT/MESSAGE SUCCESS / FAIL CONTENT
------------------------------------------------------------ */
.section-notice {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notice-box {
    display: block;
    position: relative;
}

.notice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}

.notice-img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.notice-img img {
    display: block;
    width: auto;
    height: 120px;
    margin: 0 auto;
}

.notice-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.notice-desc h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-2);
    font-family: var(--font-family-2);
}

.notice-desc p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.notice-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* =SITEMAP
------------------------------------------------------------ */
.sitemap-mjk-box {
    position: relative;
    display: block;
}

.sitemap-mjk h3 {
    text-decoration: underline;
}

.sitemap-mjk ul {
    list-style: none;
    margin-bottom: 0;
}

.sitemap-mjk ul:first-child {
    padding-left: 0px;
}

.sitemap-mjk ul li {
    padding: 5px 0 5px;
}

.sitemap-mjk .sitemap-mjk-title {
    background: black;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    min-height: 80px;
}

.sitemap-mjk .sitemap-mjk-title h3 {
    text-decoration: none;
    color: var(--white);
}

.sitemap-mjk .list-style-disc ul {
    list-style: disc;
}

/*Sitemap Alternative 4*/
.sitemap-mjk-title-left h3 {
    text-decoration: none;
    font-size: 24px;
}

/* = COUNTER NUMBER
------------------------------------------------------------ */

/*Counter number box for animation counter*/
.number-box {
    display: block;
    position: relative;
    background: #2055c7;
    padding: 20px;
    color: #ffff;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    box-shadow: 0 3px 3px 0px rgb(168 168 210 / 29%);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
}

.number-box:hover {
    background: #fdfdfd;
    color: #000000;
    box-shadow: 0px 8px 10px 0px rgb(168 168 210 / 29%);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
}

/* = CHART
------------------------------------------------------------ */

.chartjs-doughnut-half-box {
    display: block;
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

#chartjs-tooltip {
    opacity: 1;
    position: absolute;
    background: rgba(255, 255, 255, 1);
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    color: #333;
    border-radius: 4px;
    padding: 50px;
    width: 140px;
    min-height: 50px !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    pointer-events: none;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 5%);
}

.chartjs-tooltip-key {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: "pink";
    margin-right: 10px;
}

.tooltip-title {
    color: #666;
    font-size: 16px;
    font-weight: 900 !important;
}

.tooltip-value {
    color: #63b963;
    font-size: 22px;
    font-weight: 900 !important;
}

/* =FULL CALENDAR 
-------------------------------------------------------------*/
.calendars {
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    position: relative;
}

.fc-toolbar h2 {
    font-size: 18px;
}

.fc-right .fc-today-button {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.fc-toolbar.fc-header-toolbar {
    padding: 0 0 10px 0;
    border-bottom: 1px solid var(--grey-300);
}

.fc-head-container,
.fc-unthemed .fc-row,
.fc-unthemed th,
.fc-unthemed thead {
    border-color: transparent;
}

.fc-icon {
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
}

.fc-button {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.fc-today .fc-day-number {
    font-weight: bold;
}

/* =COOKIE LAW
-------------------------------------------------------------*/
.floating-cookielaw-box {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 0 30px;
    background-color: #f2f2f2;
    z-index: 1020;
    -webkit-box-shadow: 0px 9px 15px 4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 9px 15px 4px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 9px 15px 4px rgba(0, 0, 0, 0.75);
}

.floating-cookielaw .button-close {
    display: block;
    position: absolute;
    top: -10px;
    right: 0;
    z-index: 1021;
}

.floating-cookielaw .button-close i {
    font-size: 30px;
    color: #232323;
    opacity: 0.5;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.floating-cookielaw .button-close:hover i {
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.floating-cookielaw {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 20px;
}

.floating-cookielaw-desc {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.floating-cookielaw-desc h2 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px 0;
    color: #999999;
}

.floating-cookielaw-desc p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #999999;
    margin: 0;
    text-align: justify;
}

.floating-cookielaw-action {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    width: 240px;
    padding: 0 20px 0;
}

.floating-cookielaw-action .btn {
    min-width: 130px;
}

/* =RATIO
------------------------------------------------------------ */
[data-aspect-ratio] {
    display: block;
    max-width: 100%;
    position: relative;
    background-color: #000000;
    overflow: hidden;
}

[data-aspect-ratio]:before {
    content: '';
    display: block;
}

[data-aspect-ratio]>* {
    display: block;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    object-fit: cover;
}

/*for landscape*/
[data-aspect-ratio="13:3"]:before {
    padding-top: 25.33%;
}

[data-aspect-ratio="3:1"]:before {
    padding-top: 33.33%;
}

[data-aspect-ratio="15:7"]:before {
    padding-top: 48%;
}

[data-aspect-ratio="2:1"]:before {
    padding-top: 50%;
}

[data-aspect-ratio="16:9"]:before {
    padding-top: 56.25%;
}

[data-aspect-ratio="3:2"]:before {
    padding-top: 66.66%;
}

[data-aspect-ratio="4:3"]:before {
    padding-top: 75%;
}

/*for square fit*/
[data-aspect-ratio="1:1"]:before {
    padding-top: 100%;
}

/*for potrait*/
[data-aspect-ratio="3:4"]:before {
    padding-top: 133.33%;
}

[data-aspect-ratio="2:3"]:before {
    padding-top: 150%;
}

[data-aspect-ratio="9:16"]:before {
    padding-top: 177.77%;
}

[data-aspect-ratio="1:2"]:before {
    padding-top: 200%;
}

[data-aspect-ratio="1:3"]:before {
    padding-top: 300%;
}

/*class rounded*/
.rounded-mjk-0 {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
}

.rounded-mjk-4 {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.rounded-mjk-6 {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

.rounded-mjk-8 {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}

.rounded-mjk-12 {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
}

.rounded-mjk-15 {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.rounded-mjk-25 {
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
}

.rounded-mjk-sm {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.rounded-mjk-md {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}

.rounded-mjk-lg {
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
}

/* =Bottom Navigation bar
-------------------------------------------------------------*/
.navigabar-bottom-box {
    display: none;
    bottom: -100%;
    left: -100%;
    position: absolute;
    height: 80px;
    background-color: #f2f2f2;
}

.navigabar-bottom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1010;
    background: #f2f2f2;
}

.navigabar-item-list {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: calc(100% - 10px);
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    background: linear-gradient(90deg, #5081C4 0.01%, #45B9EB 99.98%);
    -webkit-box-shadow: 0px 2px 12px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 12px -5px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 12px -5px rgba(0, 0, 0, 0.75);
}

.navigabar-item {
    display: flex;
    position: relative;
    flex: 1;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.navigabar-item .navigabar-item-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.navigabar-item .navigabar-item-menu-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.navigabar-item .navigabar-item-menu-img img {
    display: block;
    width: 24px;
    height: 24px;
}

.navigabar-item .navigabar-item-menu-img i {
    color: var(--white);
    font-size: 18px;
}

.navigabar-item .navigabar-item-menu h3 {
    text-align: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.navigabar-item.active .navigabar-item-menu-img i,
.navigabar-item:hover .navigabar-item-menu-img i,
.navigabar-item.active .navigabar-item-menu h3,
.navigabar-item:hover .navigabar-item-menu h3 {
    color: #fecf57;
}

/*bottom navigation variant product for product detail*/
.navigabar-bottom.variant-product {
    display: none;
}

.navigabar-bottom.variant-product .navigabar-item-list {
    padding: 5px 10px 5px;
}

.navigabar-bottom.variant-product .navigabar-item {
    height: 38px;
}

.navigabar-bottom.variant-product .navigabar-item .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =FLOAT BUTTON
------------------------------------------------------------ */
.floatfly {
    display: block;
    position: fixed;
    bottom: 90px;
    right: 30px;
    padding: 0;
    margin: 0;
    z-index: 910;
    opacity: 1;
}

/*float variant image only*/
.floatfly-char-box {
    display: block;
    position: relative;
    cursor: pointer;
    right: 0;
    bottom: 0;
}

.floatfly-char {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: auto;
    margin: 0 0 0 auto;
}

.floatfly-char img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.floatfly-char-box:hover .floatfly-char img {
    transform: rotate(15deg);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

/*float variant direct button*/
.floatfly-stand-box {
    display: block;
    position: relative;
    cursor: pointer;
    right: 0;
    bottom: 0;
}

.floatfly-stand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 0 0 0 auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: var(--green-dark);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.floatfly-stand i {
    font-size: 22px;
    color: var(--white);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.floatfly-stand-box:hover .floatfly-stand i {
    transform: rotate(15deg);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

/*float variant list*/
.floatfly-more-box {
    display: block;
    position: relative;
    cursor: pointer;
}

.floatfly-more-main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 0 0 0 auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: var(--green-dark);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    position: relative;
    bottom: 0;
    right: 0;
    z-index: 920;
}

.floatfly-more-main i {
    font-size: 22px;
    color: var(--white);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.floatfly-more-box:hover .floatfly-more-main i {
    transform: rotate(15deg);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.floatfly-more-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 913;
}

.floatfly-more-list li {
    position: absolute;
    right: 3px;
    bottom: 3px;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.floatfly-more-list li:hover {
    opacity: 0.8;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.floatfly-more-box:hover .floatfly-more-list li {
    opacity: 1;
    visibility: visible;
}

.floatfly-more-box:hover .floatfly-more-list li:nth-child(1) {
    bottom: 55px;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

.floatfly-more-box:hover .floatfly-more-list li:nth-child(2) {
    bottom: 105px;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

.floatfly-more-box:hover .floatfly-more-list li:nth-child(3) {
    bottom: 155px;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

.floatfly-more-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: var(--green);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.floatfly-more-item i {
    font-size: 20px;
    color: var(--white);
}

/* =OTHER 
-------------------------------------------------------------*/

/*Navigation Button Back to TOP*/
.navtotop.active {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.navtotop {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    padding: 0;
    background-color: rgba(51, 51, 51, 0.6);
    text-align: center;
    bottom: 30px;
    right: 35px;
    z-index: 910;
    cursor: pointer;
    border: 2px solid rgba(102, 102, 102, 0.7);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    overflow: hidden;
}

.navtotop i {
    color: #f2f2f2;
    font-size: 12px;
    line-height: 34px;
}

.navtotop:hover i {
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
}

/*class shadow*/
.shadow-mjk-hvr:hover {
    -webkit-box-shadow: 4px 8px 16px #dedede;
    -moz-box-shadow: 4px 8px 16px #dedede;
    box-shadow: 4px 8px 16px #dedede;
}