@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  :root {
    /* ===== Colors ===== */
    --body-color: #E4E9F7;
    --sidebar-color: #FFF;
    --primary-color: #069ce2;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #059EFF;
    --icon-cardo: #059EFF;
    --kotak-menu: #ffffff;
    --text-menu: #000000;
    --kotak-cardo1: #00ABDA;
    --price-color: #00814b;

    /* ====== Transition ====== */
    --tran-03: all 0.2s ease;
    --tran-05: all 0.3s ease;
  }

  body {
    min-height: 100vh;
    background-color: var(--body-color);
    transition: var(--tran-05);
  }

  ::selection {
    background-color: var(--primary-color);
    color: #fff;
  }

  body.dark {
    --body-color: #18191a;
    --sidebar-color: #242526;
    --primary-color: #3a3b3c;
    --primary-color-light: #3a3b3c;
    --toggle-color: #fff;
    --text-color: #ccc;
    --icon-cardo: #000000;
    --kotak-menu: #2c2c2c;
    --text-menu: #ffffff;
    --kotak-cardo1: #3f3e3e;
    --price-color: #72f1bd;
  }

  /* ===== Sidebar ===== */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 150px;
    padding: 10px 14px;
    background: var(--sidebar-color);
    transition: var(--tran-05);
    z-index: 100;
  }

  .sidebar.close {
    width: 58px;
  }

  /* ===== Reusable code - Here ===== */
  .sidebar li {
    height: 30px;
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 10px;
  }

  .sidebar header .image,
  .sidebar .icon {
    min-width: 30px;
    border-radius: 6px;
  }

  .sidebar .icon {
    min-width: 30px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .sidebar .text,
  .sidebar .icon {
    color: var(--text-color);
    transition: var(--tran-03);
  }

  .sidebar li.search-box .text,
  .sidebar li.search-box .icon {
    color: #fff;
    transition: var(--tran-03);
  }

  .sidebar .text {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
  }

  .sidebar.close .text {
    opacity: 0;
  }

  /* =========================== */

  .sidebar header {
    position: relative;
  }

  .sidebar header .image-text {
    display: flex;
    align-items: center;
  }

  .sidebar header .logo-text {
    display: flex;
    flex-direction: column;
  }

  header .image-text .name {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 600;
  }

  header .image-text .profession {
    font-size: 12px;
    margin-top: -2px;
    display: block;
  }

  .sidebar header .image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sidebar header .image img {
    width: 30px;
    border-radius: 6px;
  }

  .sidebar header .toggle {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(180deg);
    height: 20px;
    width: 20px;
    background-color: var(--primary-color);
    color: var(--sidebar-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--tran-05);
  }

  body.dark .sidebar header .toggle {
    color: var(--text-color);
  }

  .sidebar.close .toggle {
    transform: translateY(-50%) rotate(0deg);
  }

  .sidebar .menu {
    margin-top: 40px;
  }


  .sidebar li.search-box {
    border-radius: 6px;
    background-color: var(--primary-color);
    cursor: pointer;
    transition: var(--tran-05);
  }

  .sidebar li a {
    list-style: none;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--tran-03);
  }

  .sidebar li a:hover {
    background-color: var(--primary-color);
  }

  .sidebar li a:hover .icon,
  .sidebar li a:hover .text {
    color: var(--sidebar-color);
  }

  body.dark .sidebar li a:hover .icon,
  body.dark .sidebar li a:hover .text {
    color: var(--text-color);
  }

  .sidebar .menu-bar {
    height: calc(100% - 55px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
  }

  .menu-bar::-webkit-scrollbar {
    display: none;
  }

  .sidebar .menu-bar .mode {
    border-radius: 6px;
    background-color: var(--primary-color-light);
    position: relative;
    transition: var(--tran-05);
  }

  .menu-bar .mode .sun-moon {
    height: 30px;
    width: 60px;
  }

  .mode .sun-moon i {
    position: absolute;
  }

  .mode .sun-moon i.sun {
    opacity: 0;
  }

  body.dark .mode .sun-moon i.sun {
    opacity: 1;
  }

  body.dark .mode .sun-moon i.moon {
    opacity: 0;
  }

  .menu-bar .bottom-content .toggle-switch {
    position: absolute;
    right: 0;
    height: 100%;
    min-width: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
  }

  .toggle-switch .switch {
    position: relative;
    height: 15px;
    width: 30px;
    border-radius: 25px;
    background-color: var(--toggle-color);
    transition: var(--tran-05);
  }

  .switch::before {
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    transition: var(--tran-04);
  }

  body.dark .switch::before {
    left: 15px;
  }

  .home {
    margin-top: 50px;
    padding: 0.5rem;
    margin-left: 58px;
    background-color: var(--body-color);
    transition: var(--tran-05);
  }

  .home .text {
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    padding: 12px 60px;
  }

  .sidebar.close~.home {
    height: 100vh;
    width: calc(100% - 59px);
  }

  body.dark .home .text {
    color: var(--text-color);
  }

  /*========== HEADER ==========*/
  #kotak-header {
    width: 100%;
    height: 55px;
    background: var(--sidebar-color);
    transition: var(--tran-05);
    color: #fff;
    font-family: Fredoka One;
    font-size: 16px;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 15%;
    z-index: 10;
    border-radius: 0 0 20px 15px;
    box-shadow: 0 0 5px #ccc;

  }

  /*========== ANGKA PESAN ==========*/
  .pesan2 {
    width: 15px;
    height: 15px;
    background-color: red;
    color: #fff;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    position: fixed;
    top: 137px;
    left: 30px;
    z-index: 120;
    border-radius: 100%;
  }

  /*========== KONTAINER 3 ==========*/
  .kontainer-ketiga {
    width: 100%;
    height: auto;
    background-color: var(--body-color);
    transition: var(--tran-05);
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 40px;
    box-shadow: 0 0 0px #808080;
    padding-top: 10px;
    z-index: 0;
  }

  /*========== CARDO ==========*/
  .mySlides {
    display: none;
  }


  .cardo6 {
    box-shadow: 0 0 5px #ccc;
    height: auto;
    text-align: left;
    border-radius: 15px;
    margin-bottom: 4%;
    margin-left: 4%;
    margin-right: 4%;
    background: var(--kotak-cardo1);
    transition: var(--tran-03);
    user-select: none;

  }

  .cardo6 a {
    cursor: none;
  }

  .cardo7 {
    box-shadow: 0 0 5px #ccc;
    height: auto;
    text-align: left;
    border-radius: 15px;
    margin-bottom: 4%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    background-color: #ffffff;
    user-select: none;
  }

  .cardo7 a {
    cursor: none;
  }

  .imgs5 {
    padding: 0px;
    margin-bottom: -3.5px;
    border-radius: 5px;
    filter: invert(100%);
    padding: 5px;
    border: 2px solid #000;
  }

  .slider4 {
    width: 100%;
    height: 25px;
    overflow: hidden;
    font-family: sans-serif;
    text-align: left;
  }

  .slider4 .slide4 {
    height: 27px;
    line-height: 40px;
    color: #000;
    overflow: hidden;
  }

  .slider4-2 .slide4 {
    animation: slide4-2 7s ease-in-out infinite;
  }

  @keyframes slide4-2 {
    100% {
      transform: translateY(0);
    }

    50%,
    95.4545454545% {
      transform: translateY(-40px);
    }

    0%,
    45.4545454545% {
      transform: translateY(0);
    }
  }

  .topup {
    width: 29%;
    float: right;
    margin: 2px;
    margin-top: 0%;
    text-align: center;
  }

  /*========== TABEL REGIST ==========*/
  .tabel {
    width: 100%;
    float: left;
    border: 0px;
    padding: 5px;
    margin-top: 10px;
  }

  /*========== KOTAK REGIST ==========*/
  .kotak-pot {
    width: 48%;
    height: 190px;
    border: 0px;
    float: left;
    box-shadow: 0 0 0px #ccc;
    border-radius: 7px;

  }

  /*========== GAMBAR REGIST ==========*/
  .gambar {
    width: 100%;
    height: 80px;
    border: 0px;
    box-shadow: 0 0 5px #ccc;
    border-radius: 0px 0px 0px 0px;

  }

  /*========== KOTAK KANAN REGIST ==========*/
  #kotak-kanan {
    margin-left: 4%;
  }

  /*========== TITLE REGIST ==========*/
  .tulisan {
    width: 100%;
    float: left;
    color: var(--text-menu);
    transition: var(--tran-03);
    text-align: left;
    margin-left: 5px;
    margin-top: 2px;
    font-size: 9px;
    font-weight: bold;

  }

  /*========== MENU UTAMA ==========*/
  .navigasi {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    background: transparent;
    border: 0px solid #c1c1c1;
    margin: 0px;
    margin-top: 5px;

  }

  .tombol {
    width: 50px;
    height: 50px;
    border-radius: 30%;
    box-shadow: 3px 2px 7px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #EFD800 20%, #EFD800 80%);
    border: 0px;
    padding: 4px 5px;
    margin-bottom: 8px;
    margin-top: 5px;


  }

  .tombol2 {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border: 2px;
    padding: 3px 4px;
    margin-bottom: 8px;
    margin-top: 10px;

  }

  .tombol2:hover {
    background-color: #059EFF;
    border-radius: 20%;
    box-shadow: 4px 5px 9px 0px #CFCFCF;
  }

  .tombol2:hover {
    border-radius: 20%;
    box-shadow: 4px 5px 9px 0px #CFCFCF;
  }

  /*========== KONTAINER 1 ==========*/
  .kontainer {
    width: 100%;
    height: auto;
    background-color: transparent;
    padding-top: 10px;
    z-index: 5;
  }

  /*========== BUTTON ID ==========*/
  .tablink {
    width: 105px;
    margin: 8px;
    background-color: var(--kotak-menu);
    transition: var(--tran-03);
    color: var(--text-menu);
    transition: var(--tran-03);
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 7px;
    text-align: center;
    font-family: poppins;
    font-size: 10px;
    margin-left: 5px;
    border-radius: 15px;
    box-shadow: 0 0 5px #ccc;
    transition: var(--tran-03);
  }

  .tablink:hover {
    background-color: #00abda;
  }

  .tabcontent {
    color: #000;
    display: none;
    padding: 10px;
    padding-top: 40px;
    height: auto;
  }

  #recommend {
    background-color: var(--body-color);
    transition: var(--tran-03);
  }

  #belanja {
    background-color: var(--body-color);
    transition: var(--tran-03);
  }

  #terbaru {
    background-color: var(--body-color);
    transition: var(--tran-03);
  }

  #terdekat {
    background-color: var(--body-color);
    transition: var(--tran-03);
  }

  #register {
    background-color: var(--body-color);
    transition: var(--tran-03);
  }

  /*========== PRODUK TERBARU ==========*/
  .cardAyoudieSlide {
    box-shadow: 0 0 5px #ccc;
    text-align: left;
    font-weight: bold;
    float: left;
    border-radius: 10px;
    background: var(--kotak-menu);
    transition: var(--tran-03);
    width: 125px;
    height: auto;
    margin-bottom: 5px;
    margin-top: 5px;
    margin-left: 15px;
    display: inline-block;
    overflow: hidden;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
    text-decoration: none;
  }

  .cardAyoudieSlide:hover {
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.0);
    border: 1px #eaeaea solid;
    display: inline-block;
    overflow: hidden;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
    text-decoration: none;
    color: white;
    transform: scale(0.98);
    transition: transform 0.3s ease-in-out;
  }


  .cardAyoudieSlide:hover:after {
    content: "";
    background: #0080D1;
    display: block;
    padding-top: 120%;
    padding-right: 350%;
    margin-left: -20px !important;
    margin-top: -120%;
    opacity: 0;
    transition: all 0.8s
  }


  .cardAyoudieSlide:hover:active:after {
    padding: 0%;
    margin: 0%;
    opacity: 80%;
    transition: 0s background white;
  }

  .AyoudieImageSlide {
    height: auto;
    width: 100%;
  }

  .AyoudietitleSlide {
    white-space: nowrap;
    margin-left: 5px;
    margin-top: 5px;
    color: var(--text-menu);
    transition: var(--tran-03);
    font-size: 60%;
    display: inline-block;
  }

  .AyoudiePriceSlide {
    margin-left: 5px;
    margin-bottom: 5px;
    font-weight: bold;
    margin-top: 0;
    font-size: 80%;
    color: var(--price-color);
    transition: var(--tran-03);
    display: inline-block;
  }

  .AyoudiePriceSlideDisk {
    margin-left: 5px;
    font-weight: bold;
    margin-top: 0;
    font-size: 50%;
    color: grey;
    display: inline-block;
  }

  .AyoudieLabelSlideFloatUMK {
    margin-top: 0;
    border-radius: 0px 0px 15px 0px;
    top: 0px;
    opacity: 90%;
    width: 80%;
    background: linear-gradient(to right, #0080D1 10%, #0080D1 80%);
    color: white;
    font-size: 10px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: bold;
    text-align: center;
    top: 0%;
  }

  .AyoudieLabelSlideFloatFD {
    margin-top: -100%;
    float: right;
    margin-right: 0%;
    border-radius: 0px 0px 0px 15px;
    opacity: 95%;
    width: 50%;
    background: #0080D1;
    color: white;
    font-size: 12px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: bold;
    text-align: center;
    top: 0;
  }


  .AyoudiePriceSlideDiskVR {
    text-align: left;
    margin-left: 5px;
    font-weight: bold;
    font-size: 12px !important;
    color: rgb(252, 5, 5);
    display: inline-block;
  }

  /*========== PENJUAL TERDEKAT ==========*/
  .item-nearby-row {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    background: var(--kotak-menu);
    transition: var(--tran-03);
    float: left;
    border-radius: 10px;
    width: 130px;
    height: 200px;
    margin-left: 10px !important;
    margin-right: 0px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 50px;
    max-width: 130px;
    overflow: hidden;
    font-family: arial;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
    box-shadow: 0 0 5px #ccc;
  }

  .item-nearby-link {
    width: 100%;
    text-decoration: none;
    color: black;
  }

  .item-nearby-image {
    width: 100% ! important;
    border-radius: 0px 0px 0px 0px;
    margin: 0px !important;
  }

  .item-nearby-title {
    margin-left: 0px;
    display: block;
    font-size: 11px !important;
    border-radius: 0px 0px 15px 0px;
    top: 0px;
    opacity: 90%;
    width: 90%;
    height: 20px;
    background: linear-gradient(to right, #0080D1 10%, #0080D1 80%);
    color: white;
    font-size: 11px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: bold;
    text-align: center;
    top: 0%;
  }


  .item-nearby-distance {
    margin-left: 5px;
    margin-top: 4px;
    color: var(--price-color);
    transition: var(--tran-03);
    display: block;
    font-size: 17px !important;
  }

  .item-nearby-status {
    margin-bottom: 5px;
    margin-left: 5px;
    color: green;
    font-weight: bold;
    font-size: 11px !important;
  }

  .item-nearby-status-note {
    display: none;
    margin-bottom: 5px;
    color: #d30000;
    font-size: 13px !important;
    font-weight: bold;
  }


  .item-nearby-status-open {
    margin-top: -139%;
    float: right;
    margin-right: 0%;
    border-radius: 0px 0px 0px 15px;
    opacity: 95%;
    width: 50%;
    height: 20px;
    background: #0080D1;
    color: white;
    font-size: 12px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: bold;
    text-align: center;
    top: 5px;
  }

  /*========== TITLE MENU UTAMA ==========*/
  .texttittle6 {
    color: var(--text-menu);
    transition: var(--tran-03);
    font-weight: bold;
    text-align: left;
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 0px;
    margin-left: 7%;
  }

  .texttittle7 {
    color: grey;
    text-align: left;
    font-size: 8px;
    margin: 0px 0px;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-left: 7%;
  }

  .lainya206 {
    font-weight: bold;
    font-size: 10px;
    margin-bottom: 5px;
    margin-top: 0px;
    margin-right: 7%;
    float: right;
    background-color: var(--icon-cardo);
    transition: var(--tran-03);
    width: 20%;
    height: auto;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
    text-decoration: none;
    box-shadow: 0 0 5px #ccc;
  }


  .lainya206:hover {
    text-decoration: none;
    display: inline-block;
    color: #0080D1;
    background-color: #FFFFFF;
    transition-duration: 0.2s;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
    text-decoration: none;
  }

  /*========== TITLE BELANJAIN, KULINER TERBARU, PENJUAL TERDEKAT, REGIST ==========*/
  .texttittle9 {
    color: var(--text-menu);
    transition: var(--tran-03);
    font-weight: bold;
    text-align: left;
    font-size: 12px;
    margin-top: -25px;
    margin-bottom: 0px;
    margin-left: 4%;
  }

  .texttittle10 {
    color: var(--text-menu);
    transition: var(--tran-03);
    text-align: left;
    font-size: 10px;
    margin: 0px 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 4%;
  }

  .lainya209 {
    font-weight: bold;
    font-size: 10px;
    margin-bottom: 5px;
    margin-top: 0px;
    margin-right: 2%;
    float: right;
    background-color: var(--icon-cardo);
    transition: var(--tran-03);
    width: 20%;
    height: auto;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
    text-decoration: none;
    box-shadow: 0 0 5px #ccc;
  }


  .lainya209:hover {
    text-decoration: none;
    display: inline-block;
    color: #0080D1;
    background-color: #FFFFFF;
    transition-duration: 0.2s;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
    text-decoration: none;
  }

  /*========== TITLE PRODUK SHOP TERBARU ==========*/
  .texttittle11 {
    color: var(--text-menu);
    transition: var(--tran-03);
    font-weight: bold;
    text-align: left;
    font-size: 12px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 4%;
  }

  .texttittle13 {
    color: var(--text-menu);
    transition: var(--tran-03);
    text-align: left;
    font-size: 10px;
    margin: 0px 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 4%;
  }

  .lainya2012 {
    font-weight: bold;
    font-size: 10px;
    margin-bottom: 5px;
    margin-top: 0px;
    margin-right: 2%;
    float: right;
    background-color: var(--icon-cardo);
    transition: var(--tran-03);
    width: 20%;
    height: auto;
    color: #FFFFFF;
    text-align: center;
    border-radius: 20px;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
    text-decoration: none;
    box-shadow: 0 0 5px #ccc;
  }


  .lainya2012:hover {
    text-decoration: none;
    display: inline-block;
    color: #0080D1;
    background-color: #FFFFFF;
    transition-duration: 0.2s;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
    text-decoration: none;
  }

  /*========== FLASH SALE ==========*/
  .kotak1 {
    width: 180px;
    height: 140px;
    background-color: var(--kotak-menu);
    transition: var(--tran-03);
    border: 0px solid #ccc;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 0 5px #ccc;
    font-family: arial;
    font-size: 12px;
    text-align: left;
  }

  .imgs3 {
    width: 100%;
    height: 110px;
    border-radius: 5px 5px 5px 5px;
    margin-bottom: 3px;
  }

  .diskon {
    width: auto;
    height: auto;
    font-family: poppins;
    font-size: 11px;
    color: white;
    background-color: #ff1493;
    padding: 1px;
    border-radius: 5px;
    text-align: center;
  }

  .namaprodukflashsale {
    width: auto;
    height: auto;
    font-family: poppins;
    font-size: 11px;
    font-weight: bold;
    color: var(--text-menu);
    transition: var(--tran-03);
  }

  .harga {
    width: auto;
    height: auto;
    font-family: poppins;
    font-size: 12px;
    font-weight: bold;
    color: var(--text-menu);
    transition: var(--tran-03);
  }

  .stiker1 {
    width: 100%;
    height: auto;
    font-family: poppins;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    background-color: green;
    padding: 1px 9px;
    border-radius: 5px;
  }

  .stiker2 {
    width: 100%;
    height: auto;
    font-family: poppins;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    background-color: purple;
    padding: 1px 9px;
    border-radius: 5px;
  }

  .waktu {
    width: 40%;
    margin-top: -30px;
    background-color: transparent;
    color: #000;
    position: absolute;
    right: 2%;
    float: left;
  }

  #hari {
    width: 20%;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    background-color: teal;
    color: #fff;
    position: absolute;
    margin-left: -110%;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
  }

  #jam {
    width: 20%;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    background-color: teal;
    color: #fff;
    position: absolute;
    margin-left: -85%;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
  }

  #menit {
    width: 20%;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    background-color: teal;
    color: #fff;
    position: absolute;
    margin-left: -60%;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
  }

  #detik {
    width: 20%;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    background-color: red;
    color: #fff;
    position: absolute;
    margin-left: -35%;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
  }

  /*========== KONTAINER 2 ==========*/
  .kontainer-kedua {
    width: 74%;
    height: auto;
    background-color: #F7F7F7;
    border-radius: 0px 00px 0 0;
    position: absolute;
    margin-top: -20px;
    box-shadow: 0 0 0px #808080;

  }

  /*========== SLIDE BANNER ==========*/
  .mySlides {
    display: flex;
  }

  /* Slideshow container */
  .slideshow-container {
    max-width: 90%;
    margin-left: 5%;
    margin-top: 6%;
  }


  /* The dots/bullets/indicators */
  .dot {
    height: 8px;
    width: 10px;
    margin: 5px 7px 5px 5px;
    background-color: #D0D0D0;
    box-shadow: 0 0 5px #ccc;
    border-radius: 40%;
    display: inline-block;
    transition: background-color 0.6s ease;
    opacity: 9;
    float: left;

  }

  .active {
    height: 8px;
    width: 25px;
    margin: 5px 5px 5px 5px;
    background-color: #0080D1;
    border-radius: 20%;

  }

  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    animation-name: fade;
    animation-duration: 2s;
  }

  @-webkit-keyframes fade {
    from {
      opacity: .8
    }

    to {
      opacity: 5
    }
  }

  @keyframes fade {
    from {
      opacity: .8
    }

    to {
      opacity: 5
    }
  }

  /*========== KONTAINER MENU LAINNYA ==========*/
  .efek-saldo {
    height: 0;
    width: 84%;
    position: fixed;
    z-index: 5;
    bottom: -70px;
    left: 60px;
    background-color: var(--kotak-cardo1);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 20px;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 0 5px #808080;
  }

  .efek-saldo .close2btn {
    position: absolute;
    top: 15px;
    right: 20px;
    margin-left: 0px;
  }

  /*========== PUSAT BANTUAN ==========*/
  .gambar-pusatbantuan {
    width: 35px;
    height: 35px;
    border-radius: 20px;
    box-shadow: 0 0 5px #ccc;
    background-color: #059EFF;
    padding: 3px 4px;
    margin-bottom: 8px;
    margin-top: 12px;
    position: absolute;
    left: 10px;
  }

  .tulisan-pusatbantuan {
    width: auto;
    height: auto;
    font-family: Arial;
    font-weight: bold;
    font-size: 10px;
    color: var(--text-menu);
    transition: var(--tran-03);
    position: absolute;
    top: 23px;
    left: 55px;
    z-index: 2;
  }

  .tombol-pusatbantuan {
    width: 73px;
    height: 25px;
    padding: 0px;
    font-family: Arial;
    font-weight: bold;
    font-size: 9px;
    border-radius: 10px;
    background-color: #059EFF;
    box-shadow: 0 0 5px #ccc;
    color: #ffffff;
    position: absolute;
    right: 10px;
    top: 17px;
    z-index: 2;
    text-align: center;
    line-height: 27px;
  }