/*!
* PT. IMAJIKU CIPTA MEDIA
* Copyright 2019-2021 IMAJIKU.
*/


/* =LAYOUT
-------------------------------------------------------------*/
.wrapper {}

.section {
    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;
}

.layout-page-full {
    height: 100vh;
    min-height: unset;
    overflow: auto;
}

.boxed-mjk {
    padding: 15px;
    background-color: var(--grey-100);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    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);
}

.section-overflow {
    overflow: hidden;
}

/* =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;
}

/* =scrollbar custom
------------------------------------------------------------ */
/*firefox*/
.y-scroll {
    /*scrollbar-width: thin;*/
    /*scrollbar-color: #666666 #dddddd;*/
    /*scrollbar-width: 8px !important;
    scrollbar-color: rgb(102, 102, 102) rgb(210, 210, 210) !important;*/
}

/*chrome*/
.y-scroll::-webkit-scrollbar {
    width: 8px;
}

.y-scroll::-webkit-scrollbar-track {
    background: #dddddd;
}

.y-scroll::-webkit-scrollbar-thumb {
    background-color: #666666;
    border-radius: 12px;
    border: 1px solid #666666;
}

/* scroll shadow on bottom */
.y-scroll-shadow {
    display: block;
    position: relative;
}

.y-scroll-shadow:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    z-index: 10;
}

/* =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;
    border-radius: 30px 30px 0 0;
    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;
}

.modal-header h2.modal-title {
    font-size: 20px;
}

.modal-header h3.modal-title {
    font-size: 18px;
}

.modal-header h4.modal-title {
    font-size: 18px;
}

.modal-header h5.modal-title {
    font-size: 16px;
}

.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;
    border-radius: 0 0 30px 30px;
    background-color: var(--white);
}

.modal-body .form-group-mjk label {
    font-size: 12px;
}

.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;
    width: 100%;
    height: auto;
}

.slider-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.img-slider {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    height: calc(100vh - 60px);
}

/*condition photo slider for desktop*/
.slider-img-desktop {
    display: block !important;
}

/*condition photo slider for mobile*/
.slider-img-mobile {
    display: none !important;
}

/*content caption hero*/
.slider-caption-box {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: hidden;
    padding-bottom: 20px;
}

.slider-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 60%;
    max-width: 800px;
    padding: 0px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    margin: 0 auto 0 0;
}

.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;
    color: var(--color-text-1);
}

.slider-caption-action {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}

.slick-disabled {
    display: none !important;
}

/* caption hero position right */
.slider-caption-box.right {
    justify-content: flex-end;
}

.slider-caption-box.right .slider-caption {
    margin: 0 0 0 auto;
}

/*caption with animation*/
.slider-box.variant-animation .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;
}

/* slider with parallax */
.slider-box.variant-parallax {
    height: 640px;
}

.slider-box.variant-parallax .img-slider {
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    object-fit: unset;
    object-position: unset;
    z-index: 1;
}

/*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;
    opacity: 0.6;
}

.slider-button-prev {
    left: auto;
    right: 85px;
    align-items: flex-end;
    top: auto;
    bottom: 50px;
}

.slider-button-next {
    right: 30px;
    align-items: flex-end;
    top: auto;
    bottom: 50px;
}

.slider-button-prev:hover,
.slider-button-next:hover {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    opacity: 1;
}

.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(--grey-800);
    text-align: center;
    border: 1px solid var(--grey-800);
    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);
}

.slider-button-prev i,
.slider-button-next i {
    font-size: 20px;
    color: var(--white);
}

.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 - position */
.slider-box.slider-dots-outside {
    margin-bottom: 50px !important;
}

.slider-box.slider-dots-outside .slick-dots {
    bottom: -50px !important;
}

/*navigation dots - variant 1*/
.slider-box .slick-dots {
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 30px;
    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 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.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;
}

/* = 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,
.slider-box.variant-center .slick-slide .img-slider {
    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,
.slider-box.variant-center .slick-center .img-slider {
    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-syncing-box {
    position: relative;
    display: block;
}

.slider-syncing-box .slider-syncing-preview .xsp-img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.slider-syncing-box .slider-syncing-preview .xsp-img [data-aspect-ratio] {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    background-color: transparent;
}

.slider-syncing-box .slider-syncing-preview .xsp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0px;
    margin: 0 auto;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.slider-syncing-box .slider-syncing-preview .xsp-img,
.slider-syncing-box .slider-syncing-preview .xsp-img:hover,
.slider-syncing-box .slider-syncing-preview .fancybox,
.slider-syncing-box .slider-syncing-preview .fancybox:hover {
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

/*thumbnail product detail slider image*/
.slider-syncing-thumb {
    position: relative;
    display: block;
    z-index: 3;
}

.slider-syncing-thumb .slider-syncing-thumb-preview {
    margin: 0 20px 0;
}

.slider-syncing-thumb .slider-syncing-thumb-preview .xst-img {
    position: relative;
    display: block;
    padding: 0;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.slider-syncing-thumb .slider-syncing-thumb-preview .xst-img [data-aspect-ratio] {
    background-color: transparent;
}

.slider-syncing-thumb .slider-syncing-thumb-preview .xst-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-syncing-thumb .slider-syncing-thumb-preview .slick-slide:hover .xst-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-syncing-thumb .slider-syncing-thumb-preview .slick-current.slick-active .xst-img img {
    border: 3px solid var(--grey-800);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

.slider-syncing-thumb .slider-syncing-thumb-button {}

.slider-syncing-thumb .slider-syncing-thumb-button .slider-button-prev,
.slider-syncing-thumb .slider-syncing-thumb-button .slider-button-next {
    width: 30px;
}

.slider-syncing-thumb .slider-syncing-thumb-button .nav-circle-box {
    height: 30px;
    width: 30px;
}

.slider-syncing-thumb .slider-syncing-thumb-button .nav-circle-box i {
    font-size: 18px;
}

.slider-syncing-thumb .slider-syncing-thumb-button .slick-slider {
    margin: 0 15px 0;
}

/*thumbnav on view sideleft*/
.slider-syncing-box.variant-sideleft {
    min-height: 280px;
}

.slider-syncing-box.variant-sideleft .slider-syncing-preview {
    padding-left: 120px;
}

.slider-syncing-box.variant-sideleft .slider-syncing-thumb {
    display: block;
    position: absolute;
    top: 40px;
    left: 0;
    width: 120px;
    height: auto;
}

.slider-syncing-box.variant-sideleft .slider-syncing-thumb .xst-img {
    max-width: 85px;
}

.slider-syncing-box.variant-sideleft .slider-syncing-thumb .slider-syncing-thumb-preview {
    margin: 0 auto 0;
}

.slider-syncing-box.variant-sideleft .slider-syncing-thumb .slider-syncing-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-syncing-box.variant-sideleft .slider-syncing-thumb .slider-syncing-thumb-button .slider-button-prev {
    height: 30px;
    top: -40px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.slider-syncing-box.variant-sideleft .slider-syncing-thumb .slider-syncing-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 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    row-gap: 15px;
    column-gap: 15px;
}

.partner-logo-list li {
    display: flex;
    flex: 1 1 30%;
}

.partner-logo-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    margin: 0 auto;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.partner-logo-item:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.partner-logo-item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 80px;
}

.partner-logo-item-img img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    object-position: center;
}

/* =BREADCRUMB
------------------------------------------------------------ */
.breadcrumb-box {
    display: block;
    width: 100%;
    position: relative;
    margin: 10px 0 10px;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--grey-50);
    min-height: 50px;
    margin: 0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    padding: 10px 20px 10px;
    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);
}

.breadcrumb .breadcrumb-item {
    color: #333333;
    font-size: 14px;
    line-height: 1.2;
    padding-right: 0.7rem;
    position: relative;
}

.breadcrumb .breadcrumb-item a {
    color: #333333;
    font-size: 14px;
}

.breadcrumb .breadcrumb-item.active {
    color: #f98341;
}

.breadcrumb .breadcrumb-item:hover a {
    color: #f86b54 !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 TOP PAGES
-------------------------------------------------------------*/
.banner-top-box {
    display: block;
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.img-banner-top {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.banner-top-caption-box {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: hidden;
}

.banner-top-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background-color: transparent;
    margin: 10px auto 30px;
    text-align: left;
}

.banner-top-caption h1,
.banner-top-caption h2,
.banner-top-caption h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-top-caption p {
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    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;
}

/* banner top variant parallax */
.banner-top-box.variant-parallax .img-banner-top {
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    object-fit: unset;
    object-position: unset;
    z-index: 1;
}

/* = BANNER CONTENT
-------------------------------------------------------------*/
.banner-box {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.img-banner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.banner-caption-box {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    overflow: hidden;
}

.banner-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
    margin: 0 auto;
    text-align: center;
}

.banner-caption h1,
.banner-caption h2,
.banner-caption h3 {
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.banner-caption p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0;
}

.banner-caption-action {}

/*condition banner content for desktop*/
.banner-img-desktop {
    display: block !important;
}

/*condition banner content for mobile*/
.banner-img-mobile {
    display: none !important;
}

/* banner content variant left */
.banner-box.variant-left .banner-caption {
    align-items: flex-start;
    text-align: left;
    margin: 0;
}

/*banner content with video*/
.banner-box .fancysimple-images:hover img,
.banner-box .fancysimple-video:hover img {
    object-fit: unset;
    transform: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
}

/* banner content variant parallax */
.banner-box.variant-parallax {
    height: 400px;
    overflow: hidden;
}

.banner-box.variant-parallax .img-banner {
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    object-fit: unset;
    object-position: unset;
    z-index: 1;
}

/* banner content variant clip path triangle */
.banner-box.variant-slice {
    background-color: #ffffff;
}

.banner-box.variant-slice .banner-item-slice-top {
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 35%, 100% 100%, 0% 100%);
}

.banner-box.variant-slice .banner-item-slice-bottom {
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 75%);
}

/* =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: 1px solid transparent;
}

.collapse-mjk-link h4 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.collapse-mjk-body {
    padding: 0;
    border-bottom: 1px solid var(--grey-300);
}

.collapse-mjk-content {
    padding: 5px 15px 15px;
}

/*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: #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.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.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(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
}

/*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.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.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.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

.card-mjk:hover .card-mjk-img 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%);
    object-fit: cover;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

.card-mjk-desc {
    position: relative;
    display: block;
    width: 100%;
}

.card-mjk-desc-text {
    margin: 0 0 15px;
    text-overflow: ellipsis;
}

.card-mjk-desc-text h3 {
    font-size: 16px;
    color: var(--color-text-1);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}

.card-mjk-desc-text p {
    color: var(--color-text-2);
    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 variant textwrap */
.card-mjk-box.variant-textwrap .card-mjk-desc-text h3 {
    display: box;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-mjk-box.variant-textwrap .card-mjk-desc-text p {
    display: box;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*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: block;
    position: relative;
}

.card-mjk-box.card-testimonial-box .card-mjk {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    padding: 20px 15px 20px;
    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:hover .card-mjk-img img {
    filter: none;
    -webkit-filter: none;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.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;
    width: 100%;
    height: 100%;
    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: rgb(255 255 255);
    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: #ED2224;
}

.fancysimple-images img,
.fancysimple-video img {
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

.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%);
    object-fit: cover;
    transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
}

.fancysimple-video:hover .fancysimple-icon {
    background-color: var(--red);
    border-color: var(--red);
}

.fancysimple-video:hover .fancysimple-icon i {
    color: white;
}

/*small version for thumbnail slider*/
.fancysimple-icon.small {
    width: 30px;
    height: 30px;
}

.fancysimple-icon.small i {
    font-size: 10px;
}

.xst-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: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    height: 100%;
    position: relative;
}

.frontsite-auth-col-img {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    width: 400px;
    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: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    flex: 1;
    position: relative;
    background-color: var(--white);
    overflow-y: auto;
}

.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.auth-box {
    display: block;
    width: 350px;
    margin: 0 auto 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;
}

.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,
.auth-box .auth-form-remember label,
.auth-box .auth-form-remember .custom-control-label {
    font-size: 14px;
    margin-bottom: 0;
}

.auth-box .auth-form-aggrement p,
.auth-box .auth-form-aggrement label,
.auth-box .auth-form-aggrement .custom-control-label {
    font-size: 14px;
    margin-bottom: 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 .auth-form-forgot p {
    font-size: 14px;
    margin: 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;
    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;
    background-color: var(--white);
    margin: 0 3px 0;
}

.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:first-child .page-link,
.page-item:last-child .page-link {
    border-color: transparent;
}

.page-item.disabled .page-link {
    color: var(--grey-300);
}

/* = PARALLAX
------------------------------------------------------------ */
.pallax-group {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 70vh;
    padding: 50px 0 50px;
}

.pallax-layer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;

    transition: 2s ease-in-out;
    -webkit-transition: 2s ease-in-out;
    -moz-transition: 2s ease-in-out;

    transition-property: background-position;
    -webkit-transition-property: background-position;
    -moz-transition-property: background-position;
}

.pallax-content {
    position: sticky;
    top: 0;
    z-index: 10;
}

.pallax-layer.layer-1 {}

.pallax-layer.layer-2 {}

.pallax-layer.layer-3 {}

/*parallax 2*/
.telo-section {
    position: relative;
    transform-origin: center top;
    transform: scaleY(calc(1 - 0.1));
}

.telo-img {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
}

.telo-img img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.telo-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -48vh auto 0;
    padding: 20px 15px 20px;
    background-color: white;
    z-index: 1;
}

.telo-section.layer-1 {}

.telo-section.layer-2 .telo-content {}

.telo-section.layer-2 .telo-content h4 {}



/* = 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: #111111;
}

.footer-top {
    display: block;
    color: var(--white);
    background-color: #232323;
    padding: 2rem 0 2rem;
}

.footer-middle {
    display: block;
    color: var(--white);
    padding: 3rem 0 3rem;
    background-color: #222222;
}

.footer-bottom {
    display: block;
    color: var(--white);
    padding: 1rem 0 1rem;
    background-color: #111111;
}

.foo-logo {
    display: block;
    width: auto;
}

.foo-logo img {
    display: block;
    width: auto;
    max-height: 75px;
}

.foo-menu {
    position: relative;
}

.foo-menu h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.foo-menu ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0 15px 0 0;
}

.foo-menu li {
    color: var(--white);
    display: block;
}

.foo-menu li a {
    color: var(--white);
}

.foo-menu li a:hover {
    color: #000000;
}

.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 {}

.foo-address li a {
    color: var(--white);
}

.foo-address li a:hover {
    color: #000000;
}

.foo-address i {
    color: var(--white);
}

.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(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.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(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/*social media at footer*/
.foo-social-network {
    position: relative;
}

.foo-social-network h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    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: #111111;
    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: #111111;
    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 #666666;
    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(--white);
    font-size: 12px;
    margin: 0;
}

.copyright a {
    color: var(--white);
}

/* =TABS
-------------------------------------------------------------*/
/*Default Tabs*/
.tabs-mjk-nav {
    position: relative;
}

.tabs-mjk-nav .nav-tabs {
    border-bottom: 1px solid #2055c7;
    column-gap: 3px;
}

.tabs-mjk-nav .nav-tabs .nav-item {
    margin-bottom: unset;
    flex-grow: 1;
    text-align: center;
    margin-right: 0;
}

.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);
}

/*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: 30px 0;
}

/*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 var(--grey-100);
}

.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: 18px;
    text-align: left;
    background-color: transparent;
    padding: 10px 15px 5px 5px;
    color: var(--color-text-2);
    border-bottom: 2px solid transparent;
}

.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: 400;
    border-bottom: 2px solid var(--color-text-2);
}

.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-1);
    font-weight: 600;
    border-bottom: 2px solid var(--color-1);
}

/*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: 12px;
    font-weight: 600;
    color: var(--color-text-1);
    background-color: #ffffff;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    text-align: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin: 5px;
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav .nav-tabs .nav-link:hover {
    background-color: var(--grey-300);
}

.tabs-mjk-box.tabs-dashboard-order .tabs-mjk-nav {
    position: relative;
    background-color: #ffffff;
    padding: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    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(--grey-400);
    border: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    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 a:hover {
    text-decoration: underline;
}

.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 a:hover {
    text-decoration: none;
}

.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-career-box {
    display: block;
    position: relative;
}

.card-career {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border: 1px solid var(--grey-300);
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

.card-career:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

.card-career-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15px;
}

.card-career-title h4 {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-career-title p {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--grey-700);
}

.card-career-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.card-career-info h5 {
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--grey-700);
}

.card-career-info h5:first-child {
    margin-right: 20px;
}

.card-career-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-top: 1px solid var(--grey-300);
    padding: 10px 0 0 0;
}

/* card career accordion */
.collapse-mjk-item.variant-career {
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border: 1px solid var(--grey-300);
}

.collapse-mjk-item.variant-career:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

.collapse-mjk-item.variant-career .collapse-mjk-link {
    padding-left: 15px;
}

.collapse-mjk-item.variant-career .collapse-mjk-body {
    padding: 15px;
}

.career-link-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.career-link-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.career-link-title h4 {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0;
}

.career-link-info {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: auto;
    margin-top: 10px;
    padding: 10px 10px 5px;
    border-left: 3px solid var(--grey-400);
    background-color: #f2f2f2;
}

.career-link-info h5 {
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--grey-700);
}

.career-link-info h5:first-child {
    margin-right: 20px;
}

.career-link-action {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    border-top: 1px solid var(--grey-300);
    padding: 10px 0 0 0;
}

/* = CONTACT
------------------------------------------------------------ */

/*social media at contact*/
.social-network {
    position: relative;
}

.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 #666666;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.social-network .social-network-icon-box i {
    color: #232323;
    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: #232323;
    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 i {
    color: #232323;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

/* = NAVBAR NOTIFICATION
------------------------------------------------------------ */
.notifica-dropdown {
    left: unset;
    right: 0;
    padding: 0;
}

.notifica-dropdown .notifica-container {
    display: block;
    width: 280px;
}

.notifica-dropdown .notifica-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 5px 15px 5px;
    background-color: var(--grey-100);
}

.notifica-dropdown .notifica-header h4 {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

.notifica-dropdown .notifica-list-box {
    height: 400px;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0;
}

.notifica-dropdown .notifica-list {
    padding: 5px;
}

.notifica-dropdown .notifica-list {}

.notifica-dropdown .notifica-item-label {
    margin-bottom: 5px;
}

.notifica-dropdown .notifica-item-label h4 {
    font-size: 11px;
}

.notifica-dropdown .notifica-item-label h5 {
    font-size: 11px;
}

.notifica-dropdown .notifica-item-desc h4 {
    font-size: 11px;
    font-weight: 500;
}

.notifica-dropdown .notifica-item-desc p {
    font-size: 11px;
}

.notifica-dropdown .notifica-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 30px;
    padding: 5px 15px 5px;
    background-color: var(--grey-100);
}

.notifica-dropdown .notifica-footer a {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}


/* = DASHBOARD NOTIFICATION
------------------------------------------------------------ */
.notifica-list-box {
    display: flex;
    width: 100%;
    position: relative;
}

.notifica-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}

.notifica-list li {
    margin-bottom: 10px;
}

.notifica-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 10px;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: var(--white);
}

.notifica-item:hover {
    transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
    background-color: var(--grey-100);
    cursor: pointer;
}

.notifica-list .unread .notifica-item {
    background-color: var(--pastel-green);
}

.notifica-item-label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
}

.notifica-item-label h4 {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    margin: 0 10px 0 0;
    color: var(--grey-600);
}

.notifica-item-label i {
    color: var(--grey-600);
}

.notifica-item-label h5 {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
    color: var(--grey-600);
}

.notifica-item-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.notifica-item-desc h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--color-text-1);
}

.notifica-item-desc p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
    color: var(--grey-700);
}

.notifica-setting-action {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.notifica-setting-action-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 45px;
    height: 45px;
    color: var(--color-text-1);
    background-color: var(--white);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

/* =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.2;
    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);
    -moz-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: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #232323;
    text-align: center;
}

.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-mjk-box {
    border: 1px solid var(--grey-50);
    background-color: var(--white);
    padding: 8px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.calendars-mjk {
    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-toolbar.fc-header-toolbar {
    border-color: var(--white) !important;
}

.fc .fc-toolbar.fc-header-toolbar {
    padding: 10px !important;
    background-color: var(--pastel-orange) !important;
    margin-bottom: 5px !important;
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
}

.fc-theme-standard .fc-scrollgrid {
    border-color: var(--white) !important;
}

.fc-theme-standard td,
.fc-theme-standard th {
    border-color: var(--grey-50) !important;
}

.fc-icon {
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
}

.fc-toolbar-chunk button.fc-prev-button,
.fc-toolbar-chunk button.fc-next-button {
    background-color: var(--pastel-orange) !important;
    border-color: var(--pastel-orange) !important;
    width: 25px !important;
    height: 25px !important;
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
}

.fc-button-primary:focus,
.fc-button-primary:focus {
    box-shadow: rgba(76, 91, 106, 0.2) 0px 0px 0px 2px !important;
}

.fc-button {
    color: #ffffff !important;
}

.fc-today .fc-day-number {
    font-weight: bold;
}

.fc .fc-button-primary {
    font-size: 13px !important;
    color: #333333 !important;
    background-color: #f9bd8b !important;
    border-color: #f9bd8b !important;
    padding: 3px 5px 3px !important;
}

.fc .fc-toolbar-title {
    display: inline-block !important;
    vertical-align: middle !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #333333 !important;
    padding: 0 5px 0 !important;
}

.fc .fc-button .fc-icon {
    font-size: 13px !important;
    color: #333333 !important;
}

.fc .fc-col-header-cell-cushion {
    font-weight: 400 !important;
    font-size: 14px !important;
    color: var(--color-text-1) !important;
}

.fc-h-event .fc-event-title {
    font-size: 12px !important;
}

.fc .fc-daygrid-day-frame {
    min-height: 100px !important;
}

.fc .fc-daygrid-day-number {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #666666 !important;
}

/* =COOKIE LAW
-------------------------------------------------------------*/
.cookielawpop-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);
}

.cookielawpop .button-close {
    display: block;
    position: absolute;
    top: -10px;
    right: 0;
    z-index: 1021;
}

.cookielawpop .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;
}

.cookielawpop .button-close:hover i {
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.cookielawpop {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 20px;
}

.cookielawpop-desc {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.cookielawpop-desc h2 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px 0;
    color: #999999;
}

.cookielawpop-desc p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #999999;
    margin: 0;
    text-align: justify;
}

.cookielawpop-action {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    width: 240px;
    padding: 0 20px 0;
}

.cookielawpop-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;
}

/* =FLOAT BUTTON
------------------------------------------------------------ */
.floatfly {
    display: block;
    position: fixed;
    bottom: 30px;
    right: 15px;
    padding: 0;
    margin: 0;
    z-index: 910;
    opacity: 1;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.floatfly.active {
    bottom: 80px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.floatfly-piece-box {
    display: block;
    position: relative;
    cursor: pointer;
    right: 0;
    bottom: 0;
}

.floatfly-piece-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.floatfly-piece-list li {
    margin: 0 5px 0;
}

.floatfly-piece-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 50px;
    height: 50px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    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.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.floatfly-piece-item-img {
    display: flex;
    position: relative;
    padding: 10px;
    z-index: 912;
}

.floatfly-piece-item-img img {
    display: block;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.floatfly-piece-item-img i {
    font-size: 22px;
    color: var(--white);
}

.floatfly-piece-item-label {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 911;
    width: 0;
    padding-left: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.floatfly-piece-item-label h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0;
    text-align: center;
    color: var(--white);
}

.floatfly-piece-item:hover {
    transform: scale(1.06);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.floatfly-piece-item:hover .floatfly-piece-item-label {
    width: 90px;
    padding-left: 15px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.floatfly-piece-item:hover .floatfly-piece-item-img img {
    transform: rotate(12deg);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

/* variant 2 */
.floatfly-piece-item.variant-2 {
    width: auto;
    min-width: unset;
    height: auto;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

.floatfly-piece-item.variant-2 .floatfly-piece-item-img {
    padding: 0;
}

.floatfly-piece-item.variant-2 .floatfly-piece-item-img img {
    width: 90px;
    height: 90px;
}

.floatfly-piece-item.variant-2:hover {
    transform: rotate(12deg);
}

.floatfly-piece-item.variant-2:hover .floatfly-piece-item-img img {
    transform: none;
}

/*float variant vertical */
.floatfly-piece-vertical-box {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.floatfly-piece-vertical-primary {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 922;
    padding: 0 5px 0;
    cursor: pointer;
}

.floatfly-piece-vertical-primary .floatfly-piece-item {
    width: 50px;
}

.floatfly-piece-vertical-box .floatfly-piece-vertical-primary .floatfly-piece-item-img .img-icon-1 {
    transform: rotate(0deg);
}

.floatfly-piece-vertical-box .floatfly-piece-vertical-primary .floatfly-piece-item-img .img-icon-2 {
    display: none;
    transform: rotate(0deg);
    width: 20px;
    height: 20px;
}

.floatfly-piece-vertical-box:hover .floatfly-piece-vertical-primary .floatfly-piece-item-img .img-icon-1 {
    display: none;
}

.floatfly-piece-vertical-box:hover .floatfly-piece-vertical-primary .floatfly-piece-item-img .img-icon-2 {
    display: block;
    transform: rotate(0deg);
}

.floatfly-piece-vertical-secondary {
    padding: 0 5px 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    bottom: -5px;
}

.floatfly-piece-vertical-secondary .floatfly-piece-list {
    flex-direction: column-reverse;
    top: 175px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.floatfly-piece-vertical-secondary .floatfly-piece-list li {
    margin: 5px 0 5px;
}

.floatfly-piece-vertical-box:hover .floatfly-piece-vertical-secondary {
    height: 100%;
    bottom: 5px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.floatfly-piece-vertical-box:hover .floatfly-piece-vertical-secondary .floatfly-piece-list {
    top: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

/* =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: 25px;
    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;
}