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;
  font-family: Calibri;
}

div#branding-logo {
  display: flex;
  padding-top: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

img#site_logo {
  width: 120px;
  margin-left: 0.6rem
}

div.product {
  margin: 10px;
  display: flex;
  justify-content: space-between;
  margin: 10px 10px 10px 0px;
}

.card-footer-btn {
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.btn {
  border-radius: 0px;
}

.btn-cancel {
  margin-right: 1rem;
}

.btn-primary {
  background-color: #c3a879;
  border-color: #c3a879;
}

  .btn-primary, .btn-primary:hover {
    background-color: #c3a879;
    border-color: #c3a879;
  }

.btn-danger, .btn-danger:hover {
  background-color: #000000;
  border-color: #000000;
}

  .btn-danger:hover, .btn-primary:hover {
    box-shadow: 0px 0px 7px #e3d0af;
  }

.card {
  border-radius: 0px;
}

.text-gold {
  color: #c3a879;
}

div#home-loader {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

img.loader-img {
  width: 150px;
}

div.heading {
  margin-top: 25px;
}

div#barber-cart {
  margin-top: 6vh;
}

div.products {
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 5vh;
}


div.pointer:hover {
  cursor: pointer;
  box-shadow: 0px 0px 8px 1px #c1a679;
}

div#empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-link {
  color: #000;
  text-decoration: none
}

.btn-link:hover {
  color: #fff;
}

.btn-link:focus {
  box-shadow: none;
}

.trash-cart {
  padding: 10px 11px;
  border-radius: 100%;
  margin-left: 50%
}
.trash-cart:hover {
  background: #ff000024;
  cursor: pointer;
}

.discounted {
  text-decoration: line-through;
  opacity: 0.5;
}

td.borderless {
  border: none;
}