/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}
.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #11101D;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}
.sidebar.open{
  width: 250px;
}
.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
}
.sidebar .logo-details #btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  text-align: right;
}
.sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}
.sidebar li{
  position: relative;
  margin: 8px 0;
  list-style: none;
}
.sidebar li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip{
  display: none;
}
.sidebar input{
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #1d1b31;
}
.sidebar.open input{
  padding: 0 20px 0 50px;
  width: 100%;
}

.sidebar li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #11101D;
  color: white;
}
.sidebar li a:hover{
  background: #FFF;
  color: #11101D
}
.sidebar li a .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  flex-grow: 1;
  text-align: left;
  margin-left: 10px; /* Sesuaikan nilai ini untuk posisi teks */
}
.sidebar.open li a .links_name{
  opacity: 1;
  pointer-events: auto;
  margin-top: 5px; /* Penyesuaian margin agar posisi lebih baik */

}
.sidebar li a:hover .links_name,
.sidebar li a:hover i{
  transition: all 0.5s ease;
  color: #11101D;
}

.sidebar li a .active {
  background: #FFF;
  color: #11101D;
}

.direct-btn {
  display: flex;
  align-items:center; /* Mengatur agar ikon dan teks sejajar vertikal */
  text-decoration: none; /* Menghilangkan underline bawaan dari anchor tag */
}




.sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}

.sidebar li img{
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}

.home-section{
  position: relative;
  background: #E4E9F7;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
}
.sidebar.open ~ .home-section{
  left: 250px;
  width: calc(100% - 250px);
}
.home-section .text{
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 500;
  margin: 18px
}
@media (max-width: 420px) {
  .sidebar li .tooltip{
    display: none;
  }
}

/*.direct-sidebar .search-panel {
  background-color: blue;
  
}*/

.traffic-sidebar {
  position:absolute;
  left: -300px;
  top: 0;
  height: 100%;
  width: 100px;
  background: #1d1b31;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}

.traffic-sidebar.open {
  width: 400px;
  left: 0;
}

.traffic-sidebar.open .title-details{
  height: 60px;
  display: contents;
  align-items: center;
  position: relative;
}

.traffic-sidebar .title-details .title_name{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px; /* Memberikan jarak di atas teks */
  opacity: 0;
  transition: all 0.5s ease;
}

.traffic-sidebar.open .title-details .title_name{
  opacity: 1;
}

.traffic-sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}

.traffic-sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}
.traffic-sidebar li{
  position: relative;
  margin: 8px 0;
  list-style: none;
}
 
.traffic-sidebar li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #11101D;
}

.traffic-sidebar li a:hover{
  background: #FFF;
}
.traffic-sidebar li a .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  flex-grow: 1;
  text-align: left;
  margin-left: 10px; /* Sesuaikan nilai ini untuk posisi teks */
}

.traffic-sidebar.open li a .links_name{
  opacity: 1;
  pointer-events: auto;
}
.traffic-sidebar li a:hover .links_name,
.traffic-sidebar li a:hover i{
  transition: all 0.5s ease;
  color: #11101D;
}
.traffic-sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}



.direct-sidebar {
  position:absolute;
  left: -300px;
  top: 0;
  height: 100%;
  width: 100px;
  background: #1d1b31;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}

.direct-sidebar.open {
  width: 300px;
  left: 0;
}

.direct-sidebar.open .title-details{
  height: 60px;
  display: contents;
  align-items: center;
  position: relative;
}

.direct-sidebar .title-details .title_name{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px; /* Memberikan jarak di atas teks */
  opacity: 0;
  transition: all 0.5s ease;
}

.direct-sidebar.open .title-details .title_name{
  opacity: 1;
}

/*.direct-sidebar .search-panel {
  background-color: blue;
  
}*/

.direct-sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}

.direct-sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}

.direct-sidebar li{
  position: relative;
  margin: 8px 0;
  list-style: none;
}

.direct-sidebar li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #11101D;
}

.direct-sidebar li a:hover{
  background: #FFF;
}

.direct-sidebar li a .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  flex-grow: 1;
  text-align: left;
  margin-left: 10px; /* Sesuaikan nilai ini untuk posisi teks */
}

.direct-sidebar.open li a .links_name{
  opacity: 1;
  pointer-events: auto;
}
.direct-sidebar li a:hover .links_name,
.direct-sidebar li a:hover i{
  transition: all 0.5s ease;
  color: #11101D;
}
.direct-sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}

.tt-popup {
  padding-top: 7px;
}
.tt-search-box-input {
  width: calc(100% - 40px);
}


.map .icon {
  height: 30px;
  width: 30px;
}
.map .tt-icon.-finish {
  height: 16px;
  width: 16px;
}
.map .icon-spacing {
  margin-right: 14px;
  margin-top: 24px;
}
.map .searchbox {
  flex: 1;
}
.map .searchbox-wrapper {
  display: flex;
  min-height: 52px;
}
.map .draggable-marker {
  align-items: center;
  background-color: #4a90e2;
  border: solid 3px #2faaff;
  border-radius: 50%;
  display: flex;
  height: 32px;
  justify-content: center;
  transition: width .1s, height .1s;
  width: 32px;
}
.summary-header {
  border-bottom: 1px solid #f2f2f2;
  font-size: 16px;
  font-weight: bold;
  padding: 24px;
}
.summary-details-top {
  font-size: 16px;
  font-weight: bold;
  padding: 24px 24px 0;
}
.summary-details-bottom {
  display: flex;
}
.summary-icon-wrapper {
  padding: 24px;
  width: 98px;
}
.summary-details-text {
  padding: 24px 24px 24px 0;
  width: calc(100% - 98px);
}
.summary-details-info {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}
.summary-details-info.-second {
  margin-top: 10px;
}
.tt-icon.-car {
  height: 50px !important;
  width: 50px !important;
}


.sidebar .custom-icon {
  position: fixed;
  height: 103px;
  width: auto;
  display: flex;
  left: auto;
  position: relative;
  padding: 10px 10px;
  transition: all 0.5s ease;
  overflow: hidden;
  opacity: 0;
}

.sidebar.open .logo-details .custom-icon {
  opacity: 1;
}

.traffic-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; /* Sesuaikan jika diperlukan */
}

.switch {
  display: flex;
  height: 20px;
  position: relative;
  width: 36px;
  right: 10px;
}

.switch input {
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
  
}

.toggle {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
  
}

.toggle.round {
  border-radius: 22px;
}

.toggle.round:before {
  border-radius: 50%;
}

.toggle:before {
  background-color: #fff;
  bottom: 2px;
  content: "";
  height: 16px;
  left: 2px;
  position: absolute;
  transition: 0.2s;
  width: 16px;
}

input:checked+.toggle {
  background-color: #3d9fef;
}

input:checked+.toggle:before {
  transform: translateX(16px);
}


.small-logo {
  position: absolute;
  bottom: 10px; /* Jarak dari bawah */
  right: 10px; /* Jarak dari kanan */
  width: 80px; /* Sesuaikan dengan lebar yang diinginkan */
  height: auto; /* Biarkan ketinggian menyesuaikan proporsi */
  z-index: 1000; /* Pastikan lebih tinggi dari z-index elemen lain jika perlu */
}

.incident-side-panel {
  background-color: #f2f2f2;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .16);
  display: flex;
  flex-direction: column;
  font-family: Gotham, Helvetica, Arial, sans-serif;
  height: 100vh; /*100vh*/
  justify-content: space-between;
  overflow: visible;
  margin: 0;
  width: 376px; /*376px*/
  z-index: 1; /*1 */
  left: -300px;
  top: 0;
  transition: all 0.5s ease;
  position: absolute;
  border-top-left-radius: 15px; /* Round top-left corner */
  border-top-right-radius: 15px; /* Round top-right corner */
}

.traffic-sidebar.open .incident-side-panel {
  left: 0;
}
/*.incident-side-panel.-folded {
      display: none;
  }*/

.incident-side-panel__header {
  background-color: #ffffff;
  padding: 24px 24px 24px 16px;
}

.incident-side-panel__header.-traffic {
      background-color: white;
      box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .09);
      display: flex;
      min-height: 67px;
      padding: 24px 16px;
      position: relative;
      z-index: 1;
      border-top-left-radius: 15px; /* Round top-left corner */
      border-top-right-radius: 15px; /* Round top-right corner */
  }

.incident-side-panel__header.-traffic > div {
          cursor: pointer;
          font-size: 14px;
          font-weight: bold;
          width: 27.5%;
}

.incident-side-panel__header.-traffic > div:first-child {
    width: 45%;
}

.marker-icon {
  background-position: center;
  background-size: 22px 22px;
  border-radius: 50%;
  height: 22px;
  left: 4px;
  position: absolute;
  text-align: center;
  top: 3px;
  transform: rotate(45deg);
  width: 22px;
}
.marker {
  height: 30px;
  width: 30px;
}
.marker-content {
  background: #c30b82;
  border-radius: 50% 50% 50% 0;
  height: 30px;
  left: 50%;
  margin: -15px 0 0 -15px;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  width: 30px;
}
.marker-content::before {
  background: #ffffff;
  border-radius: 50%;
  content: "";
  height: 24px;
  margin: 3px 0 0 3px;
  position: absolute;
  width: 24px;
}


.traffic-side-panel {
  background: #ececec;
  display: block;
}
.traffic-side-panel.scrollable {
  overflow-y: scroll;
}
.traffic__panel {
  overflow-y: hidden;
}
.traffic__panel.-dynamic-content {
  padding-top: 0;
}

.buttons-wrapper {
  display: flex;
  margin-top: 12px;
}

.form-wrapper {
  background-color: #ffffff;
  padding: 24px 16px;
}

.traffic__panel.-dynamic-content .form-wrapper {
  padding: 0;
}



.directOption-side-panel {
  background-color: #ffffff;
    padding: 20px;
    margin: 0;
    border-radius: 10px;
    width: auto;
    height: auto;
}

.traffic-sidebar.open .directOption-side-panel {
  left: 0;
}

.buttons-wrapper {
  display: flex;
  margin-top: 12px;
}
.form-wrapper {
  background-color: #ffffff;
  padding: 24px 16px;
}
.route-button {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  color: #7a7e80;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding: 8px 24px;
  text-align: center;
  width: 50%;
}
.route-button.-checked {
  background: #e0e2e3;
  color: #000000;
}
.route-icon {
  border-radius: 50%;
  height: 12px;
  margin: 5px 8px 0 0;
  width: 12px;
}
.route-information {
  font-family: Noway, Gotham, Arial;
  font-size: 14px;
  line-height: 1.8;
}
.route-information div:first-of-type {
  font-family: Gotham, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 6px;
}
.route-marker {
  align-items: center;
  background-color: #4a90e2;
  border: solid 3px #2faaff;
  border-radius: 50%;
  display: flex;
  height: 32px;
  justify-content: center;
  transition: width .1s, height .1s;
  width: 32px;
}
.route-option-text {
  color: #7a7e80;
}
.route-wrapper {
  cursor: pointer;
  display: flex;
  padding: 16px;
}
.route-wrapper:hover {
  background: #f3f3f3;
}
.types-wrapper {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin: 32px 0;
}


.popup-about {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 700px;
  text-align: center;
}

.close-popup-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}

.team-profile {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.profile {
  text-align: center;
  width: 30%;
}

.profile img {
  width: 100%;
  height: auto;
  aspect-ratio: 0/0; /* Make the image square */
  object-fit: cover; /* Ensure the image covers the entire area */
}

.profile h3 {
  font-size: 1.2em;
}

.profile p {
  font-size: 1em;
  color: #555;
}
.button-container {
  display: flex;
  gap: 20px; /* Space between buttons */
  justify-content: center; /* Center buttons horizontally */
  margin-top: 20px;
}

.btn {
  padding: 5px 10px; /* Smaller padding */
  border-radius: 12px; /* More rounded corners */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* Remove underline from text */
}

.github-text, .drive-text {
  font-size: 1.2vw;
  font-weight: bold; /* Bold text */
}

#github-button {
  background-color: black;
  border: none;
  color: white; /* Changed to white */
  font: 700 14px/1.14 Gotham;
  padding: 5px 10px; /* Smaller padding */
  border-radius: 12px; /* More rounded corners */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#github-button i {
  margin-right: 4px; /* Reduced margin */
}

#github-button:hover {
  background-color: #333;
}

#drive-button {
  background-color: #008080; /* Teal color */
  border: none;
  color: white; /* Text color */
  font: 700 14px/1.14 Gotham;
  padding: 5px 10px; /* Smaller padding */
  border-radius: 12px; /* More rounded corners */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#drive-button i {
  margin-right: 4px; /* Reduced margin */
}

#drive-button:hover {
  background-color: #005f5f; /* Darker teal for hover effect */
}


.tt-traffic-icon {
  float: left;
  margin-bottom: 5px;
  margin-right: 5px;
}
h4 {
  clear: both;
}