@charset "UTF-8";
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.burger {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #8F8F8F;
  border-radius: 9px;
  transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0;
}

.burger span:nth-of-type(2) {
  top: 8px;
  /* Spacing between lines */
}

.burger span:nth-of-type(3) {
  top: 16px;
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 8px;
}

.burger input:checked ~ span:nth-of-type(2) {
  opacity: 0;
  /* Hide the middle span */
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 8px;
}

*::-webkit-scrollbar {
  display: none;
}

.dropdown-menu a:hover {
  background-color: #11151d !important;
}

.dropdown-menu li:hover {
  background-color: #11151d !important;
}

/*** Layout ***/
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 250px;
  height: 100vh;
  overflow-y: auto;
  background: #181E29;
  transition: 0.5s;
  z-index: 999;
}

.content {
  margin-left: 250px;
  min-height: 100vh;
  background: #FFFFFF;
  transition: 0.5s;
}

/*** Navbar ***/
.navbar {
  background: #181e29;
}

.sidebar .navbar .navbar-nav .nav-url {
  width: 100%;
  padding: 10px 20px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: medium;
  display: flex;
  gap: 10px;
  align-items: center;
  outline: none;
  text-decoration: none;
}

.sidebar .navbar .navbar-nav .nav-url:hover,
.sidebar .navbar .navbar-nav .nav-url.active {
  color: white;
  background: #018495;
}

.sidebar-toggler {
  display: none !important;
}

.navbar .nav-link {
  color: white;
}

#Tab2 .active,
.customization .active {
  border: 2px solid #03ccda !important;
}

.main_container {
  padding: 150px;
  margin-top: 40px;
}

input:focus {
  color: white;
}

.platform_para {
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.031rem;
  line-height: 1.5rem;
  margin-bottom: 0.4rem;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 7px 50px;
  transition: 0.3s;
  font-size: 1rem;
  color: white;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #181e29;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #181e29;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
  background-color: #181e29;
  border-radius: 5px;
}

.icon_div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border: 2px solid #353c4a;
  border-right: none;
  height: 38px;
  background: #0e1212;
}
.icon_div i {
  color: #a1a6b0;
}

@media (max-width: 1400px) {
  .main_container {
    padding: 70px;
    margin-top: 20px;
  }
}
@media (max-width: 1200px) {
  .main_container {
    padding: 0px;
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .sidebar {
    margin-left: 0;
  }
  .sidebar.open {
    margin-left: -250px;
  }
  .content {
    width: calc(100% - 250px);
  }
  .content.open {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .sidebar-toggler {
    display: inline-flex !important;
    font-size: 25px;
    color: white;
  }
  .sidebar {
    margin-left: -250px;
  }
  .sidebar.open {
    margin-left: 0;
  }
  .content {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .icon_div {
    width: 15%;
  }
}
.errorlist {
  color: red;
}

#map {
  height: 300px;
}

#map #infowindow-content {
  display: inline;
}

.pac-card {
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  font: 400 18px Roboto, Arial, sans-serif;
  overflow: hidden;
  font-family: Roboto;
  padding: 0;
}

#pac-container {
  padding-bottom: 12px;
  margin-right: 12px;
}

.pac-controls {
  display: inline-block;
  padding: 5px 11px;
}

.pac-controls label {
  font-family: Roboto;
  font-size: 13px;
  font-weight: 300;
}

#pac-input {
  background-color: transparent;
  border: 2px solid #353c4a;
  color: white;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 1rem;
  padding: 0 11px 0 13px;
  text-overflow: ellipsis;
  width: 400px;
  height: 40px;
  border-radius: 30px;
  top: 12px !important;
}

@media (max-width: 487px) {
  #pac-input {
    width: 100%;
  }
}
#pac-input:focus {
  border-color: #4d90fe;
}

#title {
  color: #fff;
  background-color: #4d90fe;
  font-size: 25px;
  font-weight: 500;
  padding: 6px 12px;
}

#target {
  width: 345px;
}

.custom-map-control-button {
  background-color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: 14px;
  padding: 10px;
  margin: 10px;
}

.custom-map-control-button:hover {
  background-color: #f1f1f1;
}

input[type=checkbox]:checked {
  accent-color: #124d51; /* Changes checkbox color in modern browsers */
}

input[type=checkbox] {
  height: 17px;
  width: 17px;
}

#id_phone_Number, #id_whatsapp_Number, #id_customer_support_phone_Number, #id_owner_phone_number {
  border-left: 2px solid #353c4a;
  border-radius: 30px;
  width: 100%;
}

.iti__flag-container {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background-color: #0e1212;
}

.iti--separate-dial-code {
  width: 100%;
}

.iti__country-list {
  background-color: #11151d;
  color: white;
}

.iti__country {
  background-color: #181e29;
}

.iti__country:hover {
  background-color: #11151d;
}

/* for nav tabs */
.nav-link {
  color: #8F8F8F;
  font-weight: 500;
  border: none !important;
}

.nav-link:hover {
  color: #03ccda !important;
}

.nav-link.active {
  background-color: #181e29 !important;
  color: white !important;
}

.dropdown dd,
.dropdown dt,
.dropdown ul {
  margin: 0px;
  padding: 0px;
}

.dropdown dd {
  position: relative;
  z-index: 100;
}

.dropdown dt span {
  border-radius: 30px;
  font-weight: normal;
  color: white;
  display: block;
  padding-right: 20px;
  border: 2px solid #353c4a;
  height: 35px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
}

.dropdown dd ul {
  background: #181e29;
  box-shadow: 0px 0px 10px black;
  display: none;
  left: 0px;
  padding: 5px 0px;
  position: relative;
  top: 2px;
  width: 100%;
  list-style: none;
}

.dropdown span.value {
  display: none;
}

.dropdown dd ul li {
  padding: 15px;
  font-size: medium;
}

.dropdown dd ul li:hover {
  background-color: #11151d;
}

.dropdown img.flag {
  border: none;
  vertical-align: middle;
  margin-right: 10px;
}

.arrowclass::after {
  content: "▼"; /* Unicode for down arrow */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: small;
}/*# sourceMappingURL=dashboard_base_style.css.map */