/*--- Variables ---*/
:root {
  --pink: #d03086;
  --light-grey: #f2f2f2;
}

/*-- Globals --*/
html,
body {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
}

body {
  margin: 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/*-- DESKTOP NAV --*/
.nav-social-icon {
  margin-right: 10px;
}
.nav-shopping_cart {
  margin-left: 10px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin-bottom: 0;
}

.desktop-nav-background {
  background-color: black;
}

.dektop-nav-link {
  color: white;
  transition: 0.2s;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  margin-right: 16px;
}

.dektop-nav-link:hover {
  color: rgb(194, 193, 193);
}

.divider {
  border-left: 3px solid white;
  height: 20px;
  margin-right: 16px;
}

.account-divider {
  margin: 5px;
}

.account-link {
  color: black;
  text-decoration: none;
  margin: 5px;
}

/*-- SEARCH BAR --*/
.search-container {
  width: 80%;
  max-height: 40px;
  display: flex;
  align-items: center;
}

.search-input {
  border: 2px solid var(--pink);
  width: 80%;
  height: 35px;
  padding-left: 10px;
  font-size: 20px;
}

.search-input::placeholder {
  font-size: 20px;
}

.search-input:focus {
  outline: none !important;
  border: 2px solid var(--pink);
}

.search-button {
  background-color: var(--pink);
  border: none;
  height: 100%;
  max-height: 35px;
  padding: 6px;
}

@media only screen and (max-width: 768px) {
  .search-container {
    width: 100%;
    justify-content: center;
    margin: 5px 0;
    max-height: 40px;
    display: flex;
    align-items: center;
  }
}

#mobile-side-menu {
  width: 0;
  height: 100vh;
  background-color: white;
  z-index: 2;
  overflow-x: hidden;
  top: 0;
  right: 0;
  position: absolute;
  transition: 0.5s;
}

#overlay {
  background-color: rgba(173, 173, 173, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: none;
}

#close-icon {
  margin: 10px 30px 0 auto;
}

.mobile-menu-links {
  list-style: none;
}

.mobile-menu-link a {
  text-decoration: none;
  color: black;
  margin-top: 8px;
  display: block;
  white-space: nowrap;
}

.mobile-menu-icon {
  width: 16px;
}

@media only screen and (max-width: 768px) {
  #desktop-header {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  #mobile-nav {
    display: none;
  }
}

/*-- Footer --*/
.footer {
  background-color: black;
}

.footer-title {
  color: white;
  text-transform: uppercase;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: 0.2s;
  display: block;
  margin-bottom: 5px;
}

.footer-link:hover {
  color: rgb(194, 193, 193);
}
