* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#main-content {
  min-height: 80vh;
}

.page-footer {
  overflow: h;
  margin-top: auto;
  width: 100%;
  color: #333;
  text-align: center;
}

#shop {
  background-color: #fff;
}

.bg-black {
  background: #000 !important;
}

.text-title {
  color: black !important;
}

.social-link {
  margin: 5px;
  display: inline;
}

.fa-facebook {
  color: #966f33;
  padding: 10px;
  font-size: 23px;
  width: 40px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

.fa-twitter {
  color: #966f33;
  padding: 10px;
  font-size: 23px;
  width: 45px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

.fa-pinterest {
  color: #966f33;
  padding: 10px;
  font-size: 23px;
  width: 45px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

.fa-instagram {
  color: #966f33;
  padding: 10px;
  font-size: 23px;
  width: 45px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

.btt-button {
  height: 42px;
  width: 45px;
  position: fixed;
  bottom: 10px;
  right: 10px;
}

.btt-link,
.update-link,
.remove-item {
  cursor: pointer;
}

.default {
  background-color: black;
  color: white !important;
}

.btn-outline-black {
  background: white;
  color: black !important; /* use important to override link colors for <a> elements */
  border: 1px solid black;
}

.btn-outline-black:hover,
.btn-outline-black:active,
.btn-outline-black:focus {
  background: black;
  color: white !important;
}

.icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  height: 1.5rem;
  width: 1.5rem;
}

.main-logo-link {
  width: fit-content;
}

.text-black {
  color: #000 !important;
}

.text-wood {
  color: #966f33;
}

.footer-header {
  color: #966f33;
}

.btn-outline-wood {
  background: #966f33;
  color: white !important; /* use important to override link colors for <a> elements */
  border: 1px solid #966f33;
  opacity: 92%;
  transition: opacity 0.8s;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  transition: all 3.5s easy-in-out;
}

#sub-dropdown:hover #sub-dropdown-menu {
  display: block;
}

.btn-outline-wood:hover {
  opacity: 120%;
  transition: opacity 0.5s;
}

.border-black {
  border: 1px solid black !important;
}

.border-wood {
  border: 1px solid #966f33 !important;
}

.lead-2 {
  font-size: 14px;
  color: black;
}
.overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background: white;
  z-index: -1;
}

.product-title {
  color: #000;
}

.font-weight-bold {
  color: #966f33 !important;
  font-size: 20px;
}

.fa-arrow-up {
  color: #966f33;
}

.message-container {
  position: fixed;
  top: 72px;
  right: 15px;
  z-index: 99999999999;
}

.custom-toast {
  overflow: visible;
}

.toast-capper {
  height: 2px;
}

/* from CSS-tricks.com: https://css-tricks.com/snippets/css/css-triangle/ */
.arrow-up {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 10px solid;
  position: absolute;
  top: -10px;
  right: 36px;
}

/* Convenience classes - colors copied from Bootstrap */
.arrow-primary {
  border-bottom-color: #007bff !important;
}

.arrow-secondary {
  border-bottom-color: #6c757d !important;
}

.arrow-success {
  border-bottom-color: #28a745 !important;
}

.arrow-danger {
  border-bottom-color: #dc3545 !important;
}

.arrow-warning {
  border-bottom-color: #ffc107 !important;
}

.arrow-info {
  border-bottom-color: #17a2b8 !important;
}

.arrow-light {
  border-bottom-color: #f8f9fa !important;
}

.arrow-dark {
  border-bottom-color: #343a40 !important;
}

.bag-notification-wrapper {
  height: 100px;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Product Form */

.custom-checkbox .custom-control-label::before {
  border-radius: 0;
  border-color: #dc3545;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #dc3545;
  border-color: #dc3545;
  border-radius: 0;
}

.stick-bottom {
  margin-top: -50px;
}

/* --------------------------------Sliders */

.carousel-inner {
  margin-top: -124px;
}
.carousel {
  max-height: 90.5vh;
  min-height: 50vh;
}
.carousel-item {
  max-height: 90.5vh;
  min-height: 50vh;
}
.carousel-item img {
  max-height: 90.5vh;
  min-height: 50vh;
}

.carousel-control-next-icon {
  margin-top: 60px;
}

.carousel-control-prev-icon {
  margin-top: 60px;
}

input[name="q"]::placeholder {
  color: #aab7c4;
}

/* Allauth form formatting */

.allauth-form-inner-content p {
  margin-top: 1.5rem; /* mt-4 */
  color: #6c757d; /* text-secondary */
}

.allauth-form-inner-content input {
  border-color: #000;
  border-radius: 0;
}

.allauth-form-inner-content label:not([for="id_remember"]) {
  display: none;
}

.allauth-form-inner-content input::placeholder {
  color: #aab7c4;
}

.allauth-form-inner-content button,
.allauth-form-inner-content input[type="submit"] {
  /* btn */
  display: inline-block;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #000;
  border: 1px solid #000;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;

  /* standard bootstrap btn transitions */
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.allauth-form-inner-content button:hover,
.allauth-form-inner-content input[type="submit"]:hover {
  color: #fff;
  background-color: #222;
  border-color: #222;
}

.allauth-form-inner-content a {
  color: #17a2b8; /* text-info */
}

/* -------------------------------- Media Queries */

/* Slightly larger container on xl screens */
@media (min-width: 1200px) {
  .container {
    max-width: 80%;
  }
}

@media (max-width: 992px) {
  .carousel-control-next-icon {
    margin-top: 60px;
  }
}

@media (max-width: 992px) {
  .carousel-control-prev-icon {
    margin-top: 60px;
  }
  .nav-link {
    display: block;
    padding: 0.5rem 0rem !important;
  }
}

/* fixed top navbar only on medium and up */
@media (min-width: 992px) {
  .fixed-top-desktop-only {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }

  .header-container {
    padding-top: 164px;
  }
}

@media (max-width: 992px) {
  .carousel-inner {
    margin-top: 0px;
  }
}

@media (max-width: 992px) {
  .logo-font {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .logo-font {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .header-container {
    padding-top: 100px;
  }

  body {
    height: calc(100vh - 116px);
  }
}

.home-col {
  min-height: 470px;
}
.bg-paste {
  background-color: #9ad0b6;
}
.bg-brown {
  background-color: #ffe9da;
}
.bg-pink {
  background-color: #fe7291;
}
.banner-img {
  position: absolute;
  width: 300px;
  bottom: 0;
}
.bg-dark-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.product-thumbnail {
  width: 100%;
  height: 200px;
}

.shop-logo {
  width: 80px;
  height: 70px;
}
.app-link img {
  width: 170px;
  margin: 5px;
}
