/*!
* PT. IMAJIKU CIPTA MEDIA
* Copyright 2019-2021 IMAJIKU.
*/

/* = GENERAL
-------------------------------------------------------------*/

/*status booking*/
.statusbox[data-status="available"] {
  background-color: var(--pastel-green);
}
.statusbox[data-status="available"] .statusbox-item p {
  color: var(--green-dark);
}
.statusbox[data-status="available"] .statusbox-item i {
  color: var(--green-dark);
}
.statusbox[data-status="booked"] {
  background-color: #fff7dc;
}
.statusbox[data-status="booked"] .statusbox-item p {
  color: var(--yellow-dark);
}
.statusbox[data-status="booked"] .statusbox-item i {
  color: var(--yellow-dark);
}
.statusbox[data-status="fullbooked"] {
  background-color: var(--pastel-red);
}
.statusbox[data-status="fullbooked"] .statusbox-item p {
  color: var(--red);
}
.statusbox[data-status="fullbooked"] .statusbox-item i {
  color: var(--red);
}
.statusbox[data-status="dayoff"] {
  background-color: var(--grey-600);
}
.statusbox[data-status="dayoff"] .statusbox-item p {
  color: var(--grey-900);
}
.statusbox[data-status="dayoff"] .statusbox-item i {
  color: var(--grey-900);
}

/* = CARD
------------------------------------------------------------ */

.kslot-box {
  display: block;
  width: 100%;
  position: relative; 
}
.kslot-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.kslot-list > li {
  display: block;
  width: 100%;
}

.card-grant-empty-box {
  display: block;
  position: relative;
  padding: 0;
  width: 100%;
}
.card-grant-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed var(--white);
  background-color: #434343;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  padding: 15px;
  min-height: 120px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.card-grant-empty:hover {
  background-color: #373737;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.card-grant-empty-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.card-grant-empty-text p {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0;
}
.card-grant-empty-text i {
  font-size: 20px;
  color: var(--white);
}
/* card */
.card-grant-box {
  display: block;
  position: relative;
  padding: 0;
  width: 100%;
}
.card-grant {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--white);
  background-color: #434343;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.card-grant-head {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.card-grant-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100px;
  margin-bottom: 15px;
  overflow: hidden;
}
.card-grant-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

.card-grant-desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 15px;
  flex: 1;
}
.grant-do-category {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  background-color: #373737;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.grant-do-category > ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  row-gap: 10px;
  column-gap: 10px;
}
.grant-do-category > ul > li {
  display: flex;
  width: 100%;
}
.grant-do-category > ul > li .grant-part,
.grant-do-category > ul > li .grant-part-price {
  width: 100%;
}
.grant-do-category > ul > li.orderset-first,
.grant-do-category > ul > li.orderset-first .grant-part {
  width: 50px;
  min-width: unset;
  max-width: unset;
}
.grant-do-rendering {
  display: flex;
  width: 100%;
}
.grant-do-rendering > ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  row-gap: 10px;
  column-gap: 10px;
}
.grant-do-rendering > ul > li {
  display: flex;
  width: 100%;
}
.grant-do-rendering > ul > li .grant-part {
  width: 100%;
}
.grant-part {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
  min-height: 55px;
  min-width: 50px;
  max-width: 160px;
  background-color: #373737;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.grant-part h5 {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 8px;
}
.grant-part p {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
  color: #58ccdb;
}
.grant-part h3 {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  margin: 10px 0 0 0;
  text-wrap: nowrap;
}
.grant-part span {
  display: inline-block;
  vertical-align: top;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  position: relative;
  margin: 0 5px 0 0;
}
.grant-part-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
  min-height: 55px;
  min-width: 60px;
  background-color: #373737;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.grant-part-price h3 {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
}
.card-grant-summary {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 10px;
  width: 100%;
}
.grant-do-price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 10px 12px;
  background-color: #353535;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.grant-do-price h5 {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
}
.grant-do-price h3 {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
}
.grant-do-day {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 10px 12px;
  background-color: #353535;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.grant-do-day h5 {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
}
.grant-do-day h3 {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
}
.card-grant-footer {
  display: flex;
  width: 100%;
}
.card-grant-note {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px 10px 12px;
  background-color: #373737;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.card-grant-note p {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0;
}
.card-grant-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 10px;
  right: -40px;
  width: 40px;
  padding: 8px;
  height: auto;
  row-gap: 5px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
}
.card-grant-action .btn-action-edit,
.card-grant-action .btn-action-delete {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  text-align: center;
  color: var(--grey-900);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.card-grant-action .btn-action-edit i,
.card-grant-action .btn-action-delete i {
  font-size: 10px;
}
.card-grant-action .btn-action-edit {
  background-color: #58ccdb;
}
.card-grant-action .btn-action-delete {
  background-color: #ca3434;
}
.card-grant-action .btn-action-edit:hover {
  background-color: #58ccdb;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.card-grant-action .btn-action-delete:hover {
  background-color: #ca3434;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}

/* = HOME
------------------------------------------------------------ */

/* Section Home Service */
.section-home-services {
  position: relative;
  padding-top: 50px;
  padding-bottom: 180px;
  min-height: 85vh;
  overflow: hidden;
}
.section-home-services::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to top, #5bb6d9 30%, #184b76 95%);
  background-size: 100% 100%;
}
.section-home-services .container {
  position: relative;
  z-index: 10;
}
.campbox-services {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* characters */
.char-blue {
  display: block;
  width: auto;
  height: 180px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(100%, 0%);
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  opacity: 0;
  object-fit: contain;
  z-index: 12;
}
.char-blue-tree-1 {
  display: block;
  width: auto;
  height: 150px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(100%, 0%);
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  opacity: 0;
  object-fit: contain;
  z-index: 10;
}
/* animation */
[data-aos="mov-blue"] {
  transform: translate(100%, 0%);
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  opacity: 0;
}
[data-aos="mov-blue"].aos-animate {
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  opacity: 1;
}

[data-aos="mov-blue-tree-1"] {
  transform: translate(100%, 0%);
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  opacity: 0;
}
[data-aos="mov-blue-tree-1"].aos-animate {
  transform: translate(-360%, 0%);
  -webkit-transform: translate(-360%, 0%);
  -moz-transform: translate(-360%, 0%);
  opacity: 1;
}
.rawbox {
  display: block;
  width: 100%;
  padding: 20px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.rowline {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  z-index: 10;
  background-color: var(--color-1);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.koption-box {
  display: block;
  width: 100%;
  padding: 20px 0 30px 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.tabs-mjk-box.variant-tabs-options .tabs-mjk-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  column-gap: 10px;
  row-gap: 15px;
}
.tabs-mjk-box.variant-tabs-options .tabs-mjk-nav .nav-tabs {
  border-bottom: none;
}
.tabs-mjk-box.variant-tabs-options .tabs-mjk-content {
  padding: 30px 0 0 0;
}
.koption-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin: 0 auto;
  width: 120px;
  min-height: 100px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border: 1px solid transparent;
  background-color: transparent;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.tabs-mjk-box.variant-tabs-options
  .tabs-mjk-nav
  .nav-tabs
  .nav-item
  .active
  .koption-nav {
  cursor: pointer;
  border-color: var(--color-button-1);
  background-color: var(--color-button-1);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.tabs-mjk-box.variant-tabs-options
  .tabs-mjk-nav
  .nav-tabs
  .nav-item
  .active
  .koption-nav
  h4 {
  color: var(--white);
}
.koption-nav:hover {
  cursor: pointer;
  border-color: var(--color-button-1);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.koption-nav h4 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-1);
  margin-bottom: 5px;
}
.koption-nav:hover .koption-nav h4 {
  color: var(--white);
}
.koption-nav img {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
}
.koption-body {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.koption-desc {
  display: block;
  position: relative;
}
.koption-caption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.koption-caption h4 {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 15px 0;
}
.koption-caption p {
  font-weight: 400;
  color: var(--white);
  margin: 0;
}
.koption-desc img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* section about & testimonial */
.section-home-about {
  position: relative;
  padding-top: 50px;
  padding-bottom: 170px;
  min-height: 85vh;
  overflow: hidden;
}
.section-home-about::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to top, #e89eb7 20%, #8272b6 80%);
  background-size: 100% 100%;
}
.section-home-about .container {
  position: relative;
  z-index: 10;
}
.campbox-about {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
/* characters */
.char-purple {
  display: block;
  width: auto;
  height: 180px;
  position: absolute;
  right: 0;
  bottom: -30px;
  transform: translate(100%, 0%);
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  object-fit: contain;
  z-index: 10;
}
.char-purple-tree-1 {
  display: block;
  width: auto;
  height: 160px;
  position: absolute;
  right: 0;
  bottom: -30px;
  transform: translate(100%, 0%);
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  object-fit: contain;
  z-index: 11;
}
.char-purple-tree-2 {
  display: block;
  width: auto;
  height: 160px;
  position: absolute;
  right: 0;
  bottom: -30px;
  transform: translate(100%, 0);
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  object-fit: contain;
  z-index: 12;
}
.char-purple-wave {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(0%, 100%);
  -webkit-transform: translate(0%, 100%);
  -moz-transform: translate(0%, 100%);
  opacity: 0;
  object-fit: cover;
  object-position: center;
  z-index: 5;
}
/* animation */
[data-aos="mov-purple"] {
  transform: translate(100%, 0%);
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  opacity: 0;
}
[data-aos="mov-purple"].aos-animate {
  transform: translate(-80%, 0%);
  -webkit-transform: translate(-80%, 0%);
  -moz-transform: translate(-80%, 0%);
  opacity: 1;
}
[data-aos="mov-purple-tree-1"] {
  transform: translate(100%, 0%);
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  opacity: 0;
}
[data-aos="mov-purple-tree-1"].aos-animate {
  transform: translate(-40%, 0%);
  -webkit-transform: translate(-40%, 0%);
  -moz-transform: translate(-40%, 0%);
  opacity: 1;
}
[data-aos="mov-purple-tree-2"] {
  transform: translate(100%, 0%);
  -webkit-transform: translate(100%, 0%);
  -moz-transform: translate(100%, 0%);
  opacity: 0;
}
[data-aos="mov-purple-tree-2"].aos-animate {
  transform: translate(-190%, 0%);
  -webkit-transform: translate(-190%, 0%);
  -moz-transform: translate(-190%, 0%);
  opacity: 1;
}
[data-aos="mov-purple-wave"] {
  transform: translate(0%, 100%);
  -webkit-transform: translate(0%, 100%);
  -moz-transform: translate(0%, 100%);
  opacity: 0;
}
[data-aos="mov-purple-wave"].aos-animate {
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  opacity: 1;
}

.testimonial-slider-box {
}
.testi-caption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 90px;
}
.testi-caption h4 {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  margin: 10px 0 0 0;
  padding: 5px 10px 5px;
  border: 1px solid var(--white);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
}
.testi-caption p {
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.minicount {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  list-style: none;
  padding: 0;
  column-gap: 20px;
}
.minicount-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  min-width: 150px;
  min-height: 120px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.minicount-item:hover {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -moz-backdrop-filter: blur(4px);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.minicount-item h3 {
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  text-align: center;
}
.minicount-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
}
/* section process */
.section-home-process {
  background-color: #232323;
}
/* section promotion */
.section-home-promotion {
  position: relative;
  overflow: hidden;
}
/* section gallery */
.section-home-gallery {
  position: relative;
  overflow: hidden;
}
/* section faq */
.section-home-faq {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 88vh;
  overflow: hidden;
}
.section-home-faq .img-background {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/* section ending */
.banner-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 420px;
  position: relative;
}
.banner-footer .xlider-item img,
.banner-footer .xlider-item .img-xlider {
  object-fit: cover;
  height: 420px;
}
.banner-footer-caption-box {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: hidden;
}
.banner-footer-caption {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-footer-caption h1,
.banner-footer-caption h2,
.banner-footer-caption h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}
.banner-footer-caption p {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
}
.banner-footer-action {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/* = Process Page 1
------------------------------------------------------------ */
.booking-legend {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 5px;
  column-gap: 20px;
  list-style: none;
  margin: 20px 0 20px;
  padding: 0;
}
.booking-legend li {
  display: flex;
}
.booking-legend p {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0;
}

.booking-set {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  padding: 15px;
  background-color: var(--white);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.booking-set-title {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.booking-set-title h4 {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--grey-900);
}
.booking-set-option {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.booking-set-option li {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
.booking-set-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
}
.setbook {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  min-height: 80px;
  padding: 10px;
  background-color: var(--grey-100);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.setbook-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  text-align: center;
}
.setbook-img i {
  font-size: 16px;
  color: var(--grey-600);
}
.setbook-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  padding-left: 10px;
}
.setbook-desc h4 {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--grey-600);
}
.setbook-date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.setbook-date h5 {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  margin: 0;
  color: var(--grey-800);
}
.setbook-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10px 0 50px;
}
.setbook-action .btn-mjk,
.setbook-action a {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  text-decoration: underline;
}
/* variant 2 */
.setbook.variant-2 {
  border: 1px solid var(--white);
  background-color: rgba(0, 0, 0, 0.3);
  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;
}
.setbook.variant-2 .setbook-desc {
  padding-right: 10px;
}
.setbook.variant-2 .setbook-desc h4 {
  color: var(--white);
}
.setbook.variant-2 .setbook-date h5 {
  color: var(--white);
}
.setbook.variant-2:hover {
  background-color: var(--grey-900);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}

/* = Process Page 2
------------------------------------------------------------ */
.header-pros-box {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.header-pros-box .img-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  z-index: 1;
}
.header-pros {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: nowrap;
  width: 100%;
  padding: 25px 20px 25px;
  z-index: 5;
}
.header-pros-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.header-pros-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.casual {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 70px;
  background-color: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.casual h4 {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 5px;
  text-align: center;
}
.casual-desc {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  padding: 8px;
  min-height: 60px;
  width: 100%;
}
.casual-desc p {
  text-align: center;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  margin: 0;
}
.casual:hover .casual-desc {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -moz-backdrop-filter: blur(4px);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}

.grant-order-summary {
  display: flex;
  width: 100%;
}
.grant-order-summary ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 10px;
  background-color: var(--grey-800);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.grant-order-summary li {
  display: flex;
  width: 100%;
}
.grant-order-summary .gos-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.grant-order-summary .gos-item p {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  text-align: left;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  margin: 0;
}
.grant-order-summary .gos-item h5 {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  text-align: right;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  margin: 0;
}
.grant-order-summary .gos-item.selected {
  background-color: var(--color-1);
}
.grant-order-summary .gos-item.selected p,
.grant-order-summary .gos-item.selected h5 {
  color: var(--grey-900);
}
.grant-order-summary .gos-item.selected-voucher {
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  background-color: #373737;
}
.grant-order-summary .gos-item.selected-voucher img {
  display: block;
  width: 15px;
  height: auto;
  margin: 0 5px 0 0;
}
.grant-order-summary .gos-item.selected-voucher p {
  font-size: 14px;
  width: auto;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-1);
}
.grant-order-summary .gos-item.selected-voucher h5 {
  flex: 1;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
  padding-left: 5px;
  color: var(--white);
  justify-content: flex-start;
}
.grant-order-summary-action {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  row-gap: 10px;
  column-gap: 10px;
}

/* variant checkout */
.secondary-order-summary {
  background-color: var(--grey-100);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.secondary-order-summary .grant-order-summary ul {
  padding: 5px;
  background-color: var(--grey-100);
}
.secondary-order-summary .grant-order-summary .gos-item h5 {
  font-weight: 500;
}

/* list rendering type */
.rendertype-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}
.rendertype-box .rendertype-label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
.rendertype-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  row-gap: 15px;
  column-gap: 15px;
}
.rendertype-list > li {
  display: flex;
}
.rendertype-list .radio-mjk-modern label {
  min-width: unset;
}

/* card rendering type */
.card-rendertype-box {
  display: block;
  position: relative;
}
.card-rendertype {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 260px;
  min-height: 400px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  padding: 10px;
  background-color: var(--grey-100);
}
.card-rendertype-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 160px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.card-rendertype-img img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  min-height: unset;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.radio-mjk-modern label .card-rendertype-img img {
  min-height: unset;
}
.card-rendertype:hover .card-rendertype-img img {
  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);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.card-rendertype-desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.card-rendertype-desc h4 {
  font-size: 14px;
  text-align: left;
  font-weight: 500;
  line-height: 1.2;
  color: var(--grey-900);
}
.card-rendertype-desc p {
  font-size: 14px;
  text-align: left;
  font-weight: 400;
  line-height: 1.2;
  color: var(--grey-900);
  margin: 0;
}
.card-rendertype-footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  row-gap: 10px;
  column-gap: 10px;
  padding: 10px 0 0 0;
  margin: 10px 0 0 0;
  border-top: 1px solid var(--grey-400);
}
.card-rendertype-footer .form-group-mjk {
  width: 100%;
}

/* list render frame */
.renderframe-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}
.renderframe-list > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  row-gap: 15px;
  column-gap: 15px;
}
.renderframe-list > ul > li {
  display: flex;
}
.renderframe-list.variant-2 {
  padding: 15px;
  background-color: var(--grey-100);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

/* card variant render*/
.card-renderframe {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 5px;
}
.card-renderframe-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 65px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.card-renderframe-img img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  min-height: unset;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.card-renderframe h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--grey-900);
  text-align: center;
  margin: 0;
  padding: 5px 0 5px;
  width: 100%;
}
.card-renderframe:hover .card-renderframe-img img {
  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);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}

/* card variant render mini*/
.card-mile-box {
  position: relative;
}
.card-mile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.card-mile-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border: 1px solid transparent;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -moz-backdrop-filter: blur(4px);
  text-align: center;
  z-index: 5;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.card-mile-icon i {
  font-size: 14px;
  color: var(--color-1);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.card-mile:hover .card-mile-icon {
  border-color: var(--white);
  background-color: var(--white);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.card-mile:hover .card-mile-icon i {
  color: var(--color-1);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.card-mile-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 65px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  z-index: 2;
}
.card-mile-img img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  min-height: unset;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.card-mile h4 {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--grey-900);
  text-align: center;
  margin: 0;
  padding: 5px 0 5px;
  width: 100%;
}
.card-mile:hover .card-mile-img img {
  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);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}

/* card checked radio custome */
.minidio {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  min-height: 50px;
  padding: 5px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  background-color: var(--grey-400);
}
.minidio-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
}
.minidio-img .minidot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  position: relative;
  margin: 0 auto;
  background-color: var(--white);
  border: 1px solid var(--color-1);
  z-index: 5;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.minidio-img .minidot-point {
  display: flex;
  width: 10px;
  height: 10px;
  position: relative;
  margin: 0 auto;
  background-color: var(--color-1);
  z-index: 7;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  opacity: 0;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
}
.minidio-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  padding-left: 5px;
}
.minidio-desc h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--grey-900);
  text-align: left;
  margin: 0;
}
.minidio-desc p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: var(--grey-900);
  text-align: left;
  margin: 5px 0 0 0;
}
.card-rendertype-box .minidio {
  background-color: var(--grey-400);
}

/* radio modern with card */
.radio-mjk-modern.radio-section
  input[type="radio"]:checked
  + label
  .minidot-point {
  opacity: 1;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
}

/* card active */
.card-rendertype-box.selected .card-rendertype {
  border: 1px solid var(--color-4);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
}
.card-rendertype-box.selected .card-rendertype::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border: 22px solid;
  border-bottom-color: transparent;
  border-top-color: var(--color-4);
  border-left-color: transparent;
  border-right-color: var(--color-4);
  z-index: 10;
}
.card-rendertype-box.selected .card-rendertype::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  position: absolute;
  top: 4px;
  font-size: 12px;
  right: 5px;
  color: var(--white);
  z-index: 11;
}

/* card label tabs */
.minidio-label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  min-height: 45px;
  padding: 5px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.minidio-label-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
}
.minidio-label-img img {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
}
.minidio-label-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  padding-left: 5px;
}
.minidio-label-desc h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--grey-900);
  text-align: left;
  margin: 0;
}
.minidio-label-desc p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--grey-900);
  text-align: left;
  margin: 5px 0 0 0;
}

/* spinner form */
.kop-spinner-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
.kop-spinner-price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.kop-spinner-price p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  text-align: left;
  margin: 0;
  padding: 5px 0 5px;
}

/* = TABS variant 3
------------------------------------------------------------ */
.tabs-mjk-box.variant-3 {
  background-color: transparent;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.tabs-mjk-box.variant-3 .tabs-mjk-nav .nav-tabs {
  border-color: transparent;
}
.tabs-mjk-box.variant-3 .tabs-mjk-nav .nav-tabs .nav-item .nav-link {
  border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  background-color: var(--grey-400);
}
.tabs-mjk-box.variant-3 .tabs-mjk-nav .nav-tabs .nav-item .nav-link:hover,
.tabs-mjk-box.variant-3 .tabs-mjk-nav .nav-tabs .nav-item.show .nav-link,
.tabs-mjk-box.variant-3 .tabs-mjk-nav .nav-tabs .nav-link.active {
  background-color: var(--grey-100);
}
.tabs-mjk-box.variant-3 .tabs-mjk-nav .nav-tabs .nav-item .nav-link:hover {
  background-color: var(--grey-500);
}
.tabs-mjk-box.variant-3 .tabs-mjk-content {
  padding: 15px;
  border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  background-color: var(--grey-100);
}

/* = CAREER
------------------------------------------------------------ */

/* = CONTACT
------------------------------------------------------------ */

/* = Checkout
------------------------------------------------------------ */
.order-summary-timeline {
  display: block;
  width: 100%;
  position: relative;
  background-color: var(--grey-100);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  padding: 15px;
}
.order-summary-timeline ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  row-gap: 10px;
  column-gap: 40px;
}
.order-summary-timeline li {
  display: block;
  width: auto;
}
.order-summary-timeline .odtime-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.order-summary-timeline .odtime-item h4 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--grey-700);
  margin-bottom: 0;
}
.order-summary-timeline .odtime-item p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--grey-900);
  padding-left: 10px;
  margin-bottom: 0;
}

/* message */
.message-box {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #eaf3f6;
}
.message-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-height: 250px;
  overflow: hidden;
  list-style: none;
  padding: 0 0 25px 0;
  margin: 0 0 30px 0;
  position: relative;
}
.message-list.active {
  height: auto;
  max-height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behaviour: smooth;
}
.message-list li {
  margin-bottom: 10px;
}
.mesg {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  min-height: 80px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #dfebed;
}
.mesg-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60px;
}
.mesg-img img {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.mesg-desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  padding: 5px 10px 5px;
}
.mesg-desc-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
}
.mesg-desc-label h4 {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: 0;
}
.mesg-desc-label p {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--grey-700);
  margin-bottom: 0;
}
.mesg-desc-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.mesg-desc-text p {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--grey-900);
  margin-bottom: 0;
}
.mesg.admin {
  background-color: #c5e4eb;
  margin-left: 30px;
}
.mesg-reply {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 5px 0 5px;
}
.mesg-reply .btn-mjk {
  font-size: 12px;
}
.message-note-box {
  display: block;
  width: 100%;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  margin-top: 15px;
}
.message-note {
  display: block;
  width: 100%;
}
.message-action {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

/* summernote custome */
.note-editable {
  color: #232323;
}
.note-editor.note-airframe,
.note-editor.note-frame {
  border: 1px solid #58ccdb;
}
.note-editor .note-toolbar,
.note-popover .popover-content {
  background-color: var(--grey-200);
}

/* dashboard order status */
.dash-filternav-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border: 1px solid var(--white);
  background-color: var(--grey-800);
  padding: 10px 15px 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.dash-filternav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.dash-filternav-label {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 75px;
}
.dash-filternav-label h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.dash-filternav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  flex: 1;
  list-style: none;
  row-gap: 10px;
  column-gap: 10px;
}
.dash-filternav-list li {
}
.dash-filternav-list li .btn-mjk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 100px;
  font-size: 12px;
  padding: 5px 10px 5px;
  border: 1px solid var(--white);
  background-color: #333333;
}
.dash-filternav-list li.active .btn-mjk {
  border-color: var(--color-button-1);
  background-color: var(--color-button-1);
}
.dash-filternav-list li .btn-mjk:hover {
  background-color: var(--color-button-2);
}

/* ecommerce extra */
.tipleftbox {
  display: block;
  position: relative;
  padding: 5px;
  border-left: 3px solid var(--grey-400);
}
.tipmood-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 15px;
  row-gap: 10px;
}
.tipmood {
  display: flex;
  background-color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid var(--grey-100);
  padding: 10px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  min-width: 120px;
  min-height: 60px;
}
.tipmood h4 {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: var(--grey-900);
  margin-bottom: 5px;
}
.tipmood h6 {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: var(--grey-800);
  margin-bottom: 0;
}
.tipmood p {
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  color: var(--grey-800);
  margin-bottom: 0;
}

/* floating button new style */
.floataccel {
  display: block;
  position: fixed;
  bottom: 90px;
  right: 20px;
  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;
}
.floataccel.active {
  bottom: 140px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.floataccel-board {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  right: 0;
  bottom: 0;
  overflow: visible;
  width: 50px;
  height: 140px;
}
.floataccel-board-knop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #174d73;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 20;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  opacity: 1;
}
.floataccel-board-knop i {
  font-size: 16px;
  color: var(--white);
  line-height: 1;
}
.floataccel-board-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 140px;
  padding: 15px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: var(--white);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  opacity: 0;
  transform: translate(100%, 0);
}
.floataccel-board:hover {
  overflow: hidden;
  width: 270px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.floataccel-board:hover .floataccel-board-knop {
  height: 140px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.floataccel-board:hover .floataccel-board-knop i {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
}
.floataccel-board:hover .floataccel-board-content {
  right: 65px;
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.floataccel-board-content h5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  text-align: center;
  color: var(--black);
}

/* update */
.etta-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  row-gap: 15px;
  column-gap: 15px;
  position: relative;
}
.etta-list li {
}
.card-etta-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 220px;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.card-etta-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}
.range-currency-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: 100%;
}
.range-currency {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 160px;
  padding: 10px;
  background-color: #434343;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.range-currency-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  margin-right: 10px;
}
.range-currency-img i {
  font-size: 16px;
  color: var(--grey-600);
}
.range-currency .form-group-mjk {
  display: flex;
  flex: 1;
  margin-bottom: 0;
}

/* =SLIDER SWIPER
-------------------------------------------------------------*/
.xwiper {
}
.xwiper .swiper-wrapper {
  transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
}
.xwiper-button-next::after,
.xwiper-button-prev::after {
  content: "";
  display: none;
}
.xwiper-button-next,
.xwiper-button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  margin: 0;
  width: 60px;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.xwiper-button-next {
  right: 0;
  background-image: linear-gradient(to left, #2b2b2b, rgba(43, 43, 43, 1));
}
.xwiper-button-prev {
  left: 0;
  background-image: linear-gradient(to right, #2b2b2b, rgba(43, 43, 43, 1));
}
.xwiper-button-prev .nav-circle-box,
.xwiper-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: #009bbd;
  text-align: center;
  border: 1px solid #009bbd;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transform: scale(0.5);
  opacity: 0;
}
.xwiper-button-prev i,
.xwiper-button-next i {
  font-size: 20px;
  color: var(--white);
}
.xwiper:hover .xwiper-button-prev,
.xwiper:hover .xwiper-button-next {
  opacity: 0.8;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.xwiper:hover .xwiper-button-prev .nav-circle-box,
.xwiper:hover .xwiper-button-next .nav-circle-box {
  transform: scale(1);
  opacity: 1;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
}
.xwiper .swiper-slide {
  width: auto;
}
