@charset "utf-8";
/* CSS Document */



    /* Container utama */
	/*
    .fab-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
    }
	*/
	 .fab-container {
      position:fixed;
	  bottom: 120px;
	  right:20px;
      z-index: 999;
    }

    /* Tombol utama */
    .fab-btn {
      width: 70px;
      height:70px;
      border-radius: 50%;
      background-color: #0056b3;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: transform 0.3s;
    }

    .fab-btn:hover {
      background-color: #003f7f;
      transform: rotate(45deg);
    }

    /* Menu item (tombol kecil) */
    .fab-menu {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s ease;
      pointer-events: none;
    }

    .fab-menu.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .fab-item {
      margin: 8px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: #fff;
      font-size: 14px;
    }

    .fab-icon {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    /* Warna tombol menu */
    .wa { background: #25D366; }
    .call { background: #007bff; }
    .car { background: #28a745; }
    .chart { background: #ff9800; }
    .gear { background: #6c757d; }


@media (max-width: 767px) {
	
	 .fab-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
    }

	 /* Tombol utama */
    .fab-btn {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background-color: #0056b3;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: transform 0.3s;
    }

    .fab-item {
      margin: 10px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: #fff;
      font-size: 14px;
    }

	
	 .fab-icon {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

}