html {
  font-size: 14px;
}

@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;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.input-validation-error{
    border-color: #dc3545;
}
.sticky-offset{
  top: 80px;
}

@media print {
.ToPrint {
    background-color: white;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 15px;
    font-size: 14px;
    line-height: 18px;
  }
}


.shoppingCard {
    transition: transform 0.3s ease;
}

.shoppingCard:hover {
    transform: scale(1.05);
    background-color: rgba(209, 213, 219, 0.3);
}