html {
  font-size: 14px;
}

.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;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.nav-item a {
    width: 100px;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid #000000;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 5px 10px !important;
}
a.dropdown-item {
    width: 100%;
}
.nav-item:last-child {
    width: 100%;
}

.nav-item:last-child a {
    background-color:red;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}


@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 431px) {
    .nav-item {
        width:100%;
    }
        .nav-item a{
            width: 100% !important;
        }
}