html, body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #1f2937;
    height: 100%;
    margin: 0;
    overflow: hidden;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
}
.cursor-pointer {
    cursor: pointer;
    transition: all 0.2s ease;
}

    .cursor-pointer:hover {
        opacity: 0.85;
        transform: scale(1.03);
    }
/*body {
  margin-bottom: 60px;
}*/

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

body {
    display: flex;
    flex-direction: column;
}

.justifyBetween{
    justify-content: space-between !important;
}

.refresh-location:hover {
    color: #0d6efd;
    transform: rotate(90deg);
    transition: 0.3s;
}

::-webkit-scrollbar {
    display: none;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Scroll thumb */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    /* Hover on thumb */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }