html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.form-floating{
  padding-bottom: 6px;
}
.form-select{
  -moz-padding-start: 0.75rem;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Custom Toast */

.toast-alert-floating-container {
    position: fixed;
    z-index: 1055;
    top: 50px;
    right: 0;
}

.toast-alert {
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.toast-alert .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: width linear;
    border-radius: 0 0 0.375rem 0.375rem;
}

.toast-alert.paused .toast-progress {
    animation-play-state: paused !important;
}
