@charset "UTF-8";
.btn-warning {
  background-color: #FFDD00;
}

html, body {
  margin: 0;
  padding: 0;
}

form {
  padding: 0px 20px;
  width: 100%;
}

.btn, .form-control {
  border-color: black !important;
  height: 50px;
  padding: 0 40px;
  line-height: 50px;
  border-radius: 40px !important;
}

.jconfirm-box .btn {
  height: auto;
}

.btn {
  border: none;
}

h1 {
  font-size: 20px;
  margin: 30px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

* {
  font-family: "Inter", sans-serif !important;
  box-sizing: border-box;
}

body {
  background: #FFDD00;
}

section > .container {
  max-width: 600px;
  padding: 0;
}

header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
}
header .logo {
  height: 100px;
}

.btn-secondary {
  color: black;
  background: #D9D9D9;
}

.jconfirm-buttons .btn {
  min-width: 100px;
}

article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 210px);
  background: white;
  overflow: auto;
  border-radius: 100px 0 0 0;
  padding: 20px 0;
}

section {
  display: flex;
  justify-content: center;
  align-content: center;
  height: 100vh;
  width: 100vw;
  overflow: auto;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: #fff;
}
footer .logo {
  height: 40px;
}

.form-step {
  display: none;
  transition: opacity 0.3s ease;
}

.form-step.active {
  display: block;
  opacity: 1;
}

.steps-indicator {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  right: 10px;
  bottom: 0px;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.3s;
}

.step-dot.active {
  background: black;
}

.step-dot.done {
  background: #000;
}

a {
  color: black;
}

.cadastrese {
  margin-top: 50px;
}

.user-dropdown {
  position: absolute;
  top: 20px;
  left: 20px;
}
.user-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-dropdown .dropdown-toggle:after {
  display: none;
}
.user-dropdown span {
  width: 40px;
  line-height: 16px;
  display: inline-block;
  white-space: normal;
}
.user-dropdown img {
  height: 30px;
}

.card {
  position: relative;
}
.card.active {
  background-color: #FFDD00;
}
.card .card-body {
  width: calc(100% - 50px);
}
.card .del {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 10px;
  z-index: 99;
}

.input-pay {
  cursor: pointer;
  background: url("../img/icon-money.svg") no-repeat 4px 4px !important;
}

.mapa {
  margin-top: -20px;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.mapa-link {
  color: #FFDD00;
}

.bike {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: -20px;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: url("../img/bg-road.png") no-repeat center bottom;
  background-size: cover;
}
.bike figure {
  display: inline-block;
  position: relative;
  height: 100%;
  margin: 90px 0 0 20px;
}
.bike figure img {
  height: 300px;
}
.bike figure figcaption {
  position: absolute;
  top: 20px;
  display: flex;
  flex-direction: column;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.bike figure figcaption span {
  margin: 16px 0px 0px 15px;
  font-size: 10px;
  font-weight: bold;
}
.bike .text {
  background: black;
  padding: 20px;
  font-size: 14px;
  color: white;
  border-radius: 20px 0 0 20px;
}
.bike .text span {
  color: #FFDD00;
}

.alert {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #FFDD00;
  color: black;
}
.alert img {
  flex-shrink: 0;
}

.hamburger {
  position: absolute;
  border: none;
  background: none;
  right: 10px;
  top: 20px;
  font-weight: bold;
  font-size: 20px;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #fff;
  color: #000;
  padding-top: 2rem;
  transition: left 0.3s ease;
  z-index: 1001;
}
.sidebar .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar nav ul li {
  margin: 1rem 0;
}
.sidebar nav ul li a {
  color: #000;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  display: block;
  transition: background 0.2s ease;
}
.sidebar nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.sidebar.active {
  right: 0;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.backdrop.active {
  opacity: 1;
  visibility: visible;
}

#password-rules {
  margin: 30px 0;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
#password-rules.hidden {
  display: none;
}
#password-rules li {
  list-style: none;
  margin: 5px 0;
  color: inherit;
  opacity: 0.5;
}
#password-rules li.valid {
  color: green;
  opacity: 1;
}
#password-rules li.invalid {
  color: red;
  opacity: 1;
}
#password-rules li span {
  margin-left: 10px;
  font-weight: bold;
}
#password-rules li span::before {
  content: "";
}
#password-rules li.valid span::before {
  content: "✔";
  color: green;
}
#password-rules li.invalid span::before {
  content: "✖";
  color: red;
}

.options {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.options .item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid black;
}
.options .item.active {
  background: #FFDD00;
}
.options .item input {
  display: none;
}

.flatpickr-day.selected {
  border: none !important;
  color: black !important;
  background-color: #FFDD00 !important;
}

.bike-header {
  text-align: center;
  margin-bottom: 20px;
}

.bike-header svg {
  width: 50px;
  height: 50px;
  fill: #006c3d;
}

.calendar-card {
  max-width: 300px;
}

.time-list {
  margin-top: 20px;
}

.time-list .btn {
  color: black;
  border: 1px solid black !important;
  border-radius: 30px;
  margin: 5px;
}
.time-list .btn.active {
  background: #FFDD00;
  color: black;
}
.time-list .btn:hover {
  background: #FFDD00;
  color: balck;
}

.btn-agendar {
  width: 100%;
  margin-top: 25px;
  background: #FFDD00;
  color: black;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
}/*# sourceMappingURL=app.css.map */