  /* width */

  ::-webkit-scrollbar {
    width: 0.65rem;
  }

  /* Track */

  ::-webkit-scrollbar-track {
    background: #DBEAFE;
  }

  /* Handle */

  ::-webkit-scrollbar-thumb {
    background: #93C5FD;
    border-radius: 0rem;
  }

  /* Handle on hover */

  ::-webkit-scrollbar-thumb:hover {
    background: #60A5FA;
  }

  @media only screen and (max-width: 768px) {
    /* For mobile phones: */
    ::-webkit-scrollbar {
      display: none;
    }
    /* Track */
    ::-webkit-scrollbar-track {
      display: none;
    }
    /* Handle */
    ::-webkit-scrollbar-thumb {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  }

  .shadow-navigation {
    -webkit-box-shadow: 0px -3px 15px -2px rgba(199, 199, 199, 0.6);
    box-shadow: 0px -3px 15px -2px rgba(199, 199, 199, 0.6);
  }

  .gradient-pricing {
    background: rgb(59, 130, 246);
    background: linear-gradient(90deg, rgba(59, 130, 246, 1) 20%, rgba(139, 92, 246, 1) 100%);
  }

  .thumbnail {
    width: 340px;
    height: 340px;
  }

  .mt-72 {
    margin-top: 18rem;
  }

  .mt-80 {
    margin-top: 20rem;
  }

  .mt-96 {
    margin-top: 24rem;
  }

  .mr-72 {
    margin-right: 18rem;
  }

  .mr-80 {
    margin-right: 20rem;
  }

  .mr-96 {
    margin-right: 24rem;
  }

  .mb-72 {
    margin-bottom: 18rem;
  }

  .mb-80 {
    margin-bottom: 20rem;
  }

  .mb-96 {
    margin-bottom: 24rem;
  }

  .ml-72 {
    margin-left: 18rem;
  }

  .ml-80 {
    margin-left: 20rem;
  }

  .ml-96 {
    margin-left: 24rem;
  }

  .-ml-40 {
    margin-left: -10rem;
  }

  .-ml-96 {
    margin-left: -24rem;
  }

  /* WIDTH */

  .w-96 {
    width: 24rem;
  }

  .w-14 {
    width: 3.5rem;
  }

  /* WIDTH */

  /* HEIGHT */

  .h-14 {
    height: 3.5rem;
  }

  .h-0-5 {
    height: 0.125rem;
  }

  /* HEIGHT */

  .bg-section-1 {
    background: rgb(254, 237, 230);
    background: linear-gradient(180deg, rgba(254, 237, 230, 1) 0%, rgba(255, 255, 255, 1) 100%);
  }

  .box {
    animation-name: box;
    animation-duration: 4s;
    animation-iteration-count: infinite;
  }

  @keyframes box {
    0% {
      left: 0px;
      top: 0px;
    }
    25% {
      left: 15px;
      top: 0px;
    }
    50% {
      left: 15px;
      top: 15px;
    }
    75% {
      left: 0px;
      top: 15px;
    }
    100% {
      left: 0px;
      top: 0px;
    }
  }

  .box2 {
    animation-name: box2;
    animation-iteration-count: infinite;
  }

  @keyframes box2 {
    0% {
      left: 0px;
      top: 0px;
    }
    25% {
      left: 0px;
      top: 10px;
    }
    55% {
      left: 0px;
      top: 35px;
    }
    75% {
      left: 0px;
      top: 40px;
    }
    100% {
      left: 0px;
      top: 0px;
    }
  }

  .pen {
    animation-name: pen;
    animation-duration: 4s;
    animation-iteration-count: infinite;
  }

  @keyframes pen {
    0% {
      left: 0px;
      top: 0px;
    }
    50% {
      left: 20px;
      top: 00px;
    }
    100% {
      left: 0px;
      top: 0px;
    }
  }

  .circle {
    animation-name: circle;
    animation-duration: 4s;
    animation-iteration-count: infinite;
  }

  @keyframes circle {
    10% {
      transform: scale(1, 1);
    }
    60% {
      transform: scale(1.3, 1.3);
    }
    96% {
      transform: scale(1, 1);
    }
  }

  .box2 {
    animation-name: box2;
    animation-duration: 4s;
    animation-iteration-count: infinite;
  }

  @keyframes box2 {
    0% {
      left: 0px;
      top: 0px;
    }
    50% {
      left: 0px;
      top: 20px;
    }
    100% {
      left: 0px;
      top: 0px;
    }
  }

  .container-glass {
    background-color: rgba(255, 255, 255, .25);
    backdrop-filter: blur(5px);
  }

  .container-regis {
    background-color: rgba(255, 255, 255, .75);
    backdrop-filter: blur(4px);
  }

  .max-h-0 {
    max-height: 0px;
  }

  .hide-scrollbar-x::-webkit-scrollbar {
    display: none;
  }

  .hide-scrollbar-x {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: scroll;
    /* Must be 'scroll' not 'auto' */
    -webkit-overflow-scrolling: touch;
  }

  .hide-scroll-x {
    overflow-x: scroll;
  }

  .hide-scroll-x::-webkit-scrollbar {
    height: 8px;
  }

  /* Track */

  .hide-scroll-x::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(211, 211, 211);
    border-radius: 2px;
  }

  /* Handle */

  .hide-scroll-x::-webkit-scrollbar-thumb {
    background: red;
    border-radius: 10px;
  }

  /* Handle on hover */

  .hide-scroll-x::-webkit-scrollbar-thumb:hover {
    background: #b30000;
  }

  .hide-scrollbar::-webkit-scrollbar {
    display: none;
  }

  .hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .truncate-1 {
    overflow: hidden;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .truncate-2 {
    overflow: hidden;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .truncate-3 {
    overflow: hidden;
    max-width: 100%;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .truncate-4 {
    overflow: hidden;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .truncate-5 {
    overflow: hidden;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }

  .truncate-6 {
    overflow: hidden;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
  }

  .show-text {
    display: inline-block;
    height: 100%;
  }

  .p-status-order {
    padding: 0.05rem 0.5rem;
  }

  .category-slider .tns-item {
    width: min-content !important;
    padding: 0.5rem 1rem !important;
    white-space: nowrap !important;
  }

  .unselectable {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .tns-nav {
    height: 0px !important;
  }

  .extras input[type="checkbox"] {
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    color: #363839;
    border: 1px solid #bdc1c6;
    border-radius: 4px;
    appearance: none;
    outline: 0;
    cursor: pointer;
    transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
  }

  .extras input[type="checkbox"]::before {
    position: absolute;
    content: '';
    display: block;
    top: 0.6px;
    left: 5px;
    width: 6px;
    height: 12px;
    border-style: solid;
    border-color: #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
  }

  .extras input[type="checkbox"]:checked {
    color: #fff;
    border-color: #F24C00;
    background: #F24C00;
  }

  .extras input[type="checkbox"]:checked::before {
    opacity: 1;
  }

  .extras input[type="checkbox"]:checked~label::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .extras label {
    position: relative;
    cursor: pointer;
    padding: 0 0.55em 0;
    user-select: none;
  }

  .extras label::before {
    position: absolute;
    content: attr(data-content);
    color: #9c9e9f;
    clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: #363839;
    transition: clip-path 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .tooltip {}

  .tooltip .tooltiptext {
    visibility: hidden;
    background-color: rgba(56, 56, 56, 0.85);
    color: #fff;
    /* margin-top: -28px; */
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    transition-delay: 0.25s;
  }

  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

  .main-content {
    margin-left: 20rem;
  }

  .sidebar {}

  .sidebar a:hover {
    background-color: #fcd2bf;
  }

  .sidebar a:hover div {
    background-color: #F24C00;
    -webkit-box-shadow: 0px 3px 8px 0px #f6824d;
    box-shadow: 0px 3px 8px 0px #f6824d;
  }

  .sidebar a:hover p {
    color: #F24C00;
    font-weight: bold;
  }

  .sidebar a:hover div svg {
    color: white;
  }

  .sidebar .active {
    background-color: #fcd2bf;
  }

  .sidebar .active div {
    background-color: #F24C00;
    -webkit-box-shadow: 0px 3px 8px 0px #f6824d;
    box-shadow: 0px 3px 8px 0px #f6824d;
  }

  .sidebar .active p {
    color: #F24C00;
    font-weight: bold;
  }

  .sidebar .active div svg {
    color: white;
  }

  .bg-create-password {
    background-image: url("/static/images/116.png");
    background-repeat: repeat;
    opacity: 0.05;
  }

  @media only screen and (max-width: 600px) {
    /* For mobile: */
    .h-80 {
      height: 8rem;
    }
  }

  @media only screen and (min-width: 600px) {
    /* For tablets: */
    .h-80 {
      height: 20rem;
    }
  }

  @media only screen and (min-width: 768px) {
    /* For desktop: */
    .h-80 {
      height: 20rem;
    }
  }

  /* ******************* Selection Radio Item */

  .selected-content {
    border-width: 2px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 2px 4px 0 rgba(219, 215, 215, 0);
    background: #fff;
    /* max-width: 280px; */
    height: 330px;
    padding: 15px;
    display: grid;
    grid-gap: 15px;
    place-content: center;
    transition: .3s ease-in-out all;
  }

  .selected-content img {
    width: 160px;
    margin: 0 auto;
  }

  .selected-label {
    position: relative;
  }

  .selected-label input {
    display: none;
  }

  .selected-label .icon {
    width: 20px;
    height: 20px;
    border: solid 2px #e3e3e3;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 15px;
    transition: .3s ease-in-out all;
    transform: scale(1);
    z-index: 1;
  }

  .selected-label .icon:before {
    content: "\2713";
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: #000;
    text-align: center;
    opacity: 0;
    transition: .2s ease-in-out all;
    transform: scale(2);
  }

  .selected-label input:checked+.icon {
    background: #F24C00;
    border-color: #F24C00;
    transform: scale(1.2);
  }

  .selected-label input:checked+.icon:before {
    color: #fff;
    opacity: 1;
    transform: scale(.8);
  }

  .selected-label input:checked~.selected-content {
    box-shadow: 0 2px 4px 0 rgba(219, 215, 215, 0.5);
    border: solid 2px #F24C00;
  }

  /* ++++++++++++++++++++++++++++++++++ checkbox swith ++++++++++++++++++++++++++++++++++ */

  /* SWITCH STYLES */

  .openclose {
    position: relative;
    width: 64px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

  .openclose-checkbox {
    display: none;
  }

  .openclose-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    /* border: 2px solid #fff; */
    border-radius: 12px;
  }

  .openclose-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
  }

  .openclose-inner:before, .openclose-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 24px;
    padding: 0;
    line-height: 24px;
    font-size: 12px;
    color: black;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
  }

  .openclose-inner:before {
    content: "Buka";
    padding-left: 8px;
    background-color: #10B981;
    color: #fff;
  }

  .openclose-inner:after {
    content: "Tutup";
    padding-right: 8px;
    background-color: #b6bbd5;
    color: #fff;
    text-align: right;
  }

  .openclose-switch {
    display: block;
    width: 16px;
    margin: 4px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 40px;
    /* border: 1px solid #fff; */
    border-radius: 12px;
    transition: all 0.3s ease-in 0s;
  }

  .openclose-checkbox:checked+.openclose-label .openclose-inner {
    margin-left: 0;
  }

  .openclose-checkbox:checked+.openclose-label .openclose-switch {
    right: 0px;
  }

  /* ++++++++++++++++++++++++++++++++++ checkbox swith ++++++++++++++++++++++++++++++++++ */

  .switch input[type="checkbox"] {
    position: relative;
    width: 40px;
    height: 20px;
    -webkit-appearance: none;
    background: #c6c6c6;
    border-radius: 100px;
    outline: none;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
    transition: .5s;
  }

  .switch input:checked[type="checkbox"] {
    background: #fc7a1e;
  }

  .switch input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    transform: scale(1.1);
    transition: .5s;
  }

  .switch input:checked[type="checkbox"]::before {
    left: 50%;
  }

  /* Loading */

  .shine {
    background: #eeeff0;
    background-image: linear-gradient(to right, #eeeff0 0%, #f7f7f7 20%, #eeeff0 40%, #eeeff0 100%);
    background-repeat: no-repeat;
    background-size: 200% 100%;
    display: inline-block;
    position: relative;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: placeholderShimmer;
    -webkit-animation-timing-function: linear;
  }

  @-webkit-keyframes placeholderShimmer {
    0% {
      background-position: -468px 0;
    }
    100% {
      background-position: 468px 0;
    }
  }

  /* Loading */

  @media (min-width: 1024px) {
    .shadow-navigation {
      -webkit-box-shadow: 0px -3px 15px -2px rgba(199, 199, 199, 0);
      box-shadow: 0px -3px 15px -2px rgba(199, 199, 199, 0);
    }
  }

  /* CSS READ MORE */

  .content-inner {
    max-height: 64px;
    overflow: hidden;
  }

  .read-more {
    display: inline-block;
    cursor: pointer;
  }

  /* CSS READ MORE */

  .gradient-blog {
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, .75) 20%, rgba(255, 255, 255, 0.2) 100%);
  }

  .grayscale {
    filter: grayscale(1);
    opacity: .3;
  }

  .grayscale:hover {
    filter: none;
    opacity: 1;
  }

  .grayscale-partner {
    filter: grayscale(1);
    opacity: .6;
  }

  .grayscale-white {
    filter: brightness(0) invert(1);
    opacity: .6;
  }

  .bg-register {
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7094188017003676) 15%, rgba(0, 0, 0, 0.30325633671437324) 35%, rgba(0, 0, 0, 1) 100%);
  }

  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }

  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }