@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --background: #1e1f1c;
  --secondary: #2a2827;
  --primary: #bf3063;
  --white: #ecf0f3;
  --black: #181614;
  --light-gray: #747379;
  --title: "Inter", sans-serif;
  --description: "Atkinson Hyperlegible Next", sans-serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background: var(--background);
  font-family: var(--description);
}

header {
  height: 77px;
  background: var(--secondary);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 10;
}
header .corner-left {
  position: fixed;
  top: 76px;
  left: 61px;
}
header .header-left {
  display: flex;
  gap: 45px;
  align-items: center;
}
header .header-left .brand {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}
header .header-center {
  background: var(--background);
  padding: 5px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-center .search .bi-binoculars-fill {
  color: var(--light-gray);
  font-size: 18px;
}
header .header-center .search input {
  background: none;
  border: none;
  margin: 0 10px 0 5px;
  width: 420px;
  color: var(--white);
}
header .header-center .search input:focus {
  outline: none;
  border: none;
}
header .header-center .search button {
  background: none;
  border: none;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 4px 12px 4px 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 300ms ease;
}
header .header-center .search button i {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1px;
}
header .header-center .search button:hover {
  background: var(--primary);
  color: var(--white);
}
header .header-right .likes,
header .header-right .cart,
header .header-right .home {
  background: var(--background);
  color: var(--light-gray);
  position: relative;
  text-decoration: none;
  margin-right: 15px;
  border-radius: 4px;
  transition: all 300ms ease;
  border: none;
  padding: 10px;
}
header .header-right .likes .total,
header .header-right .cart .total,
header .header-right .home .total {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 10px;
  color: var(--primary);
}
header .header-right .likes:hover,
header .header-right .cart:hover,
header .header-right .home:hover {
  color: var(--white);
}
header .header-right .cart {
  margin-right: 0;
}

aside {
  position: relative;
  z-index: 9;
}
aside .aside {
  position: fixed;
  left: 0;
  height: 100%;
  top: 0;
  background: var(--secondary);
  width: 64px;
  z-index: 10;
  overflow-y: auto;
  padding-bottom: 55px;
  padding-top: 55px;
  margin: auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
aside .aside .aside-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
aside .aside .aside-items a {
  padding: 10px;
  color: var(--light-gray);
  background: none;
  border: none;
  font-size: 17px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 300ms ease;
  border-radius: 2px;
  position: relative;
}
aside .aside .aside-items a:hover {
  border: 1px solid var(--light-gray);
}
aside .aside .aside-items a.active {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}
aside .aside .aside-items .divider {
  margin: 10px 0;
  height: 1px;
  width: 65%;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--light-gray) 35%, var(--light-gray) 50%, var(--light-gray) 65%, rgba(255, 255, 255, 0) 100%);
}

@media only screen and (max-width: 900px) {
  header .header-center {
    display: none;
  }
  header .header-right .search-toggle {
    display: unset;
  }
}
@media only screen and (max-width: 450px) {
  header {
    justify-content: center;
  }
  header .header-left {
    position: fixed;
    rotate: -90deg;
    left: -14px;
    top: 55px;
    font-size: 20px;
  }
}/*# sourceMappingURL=globals.css.map */