.sidebar {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100%;
  color: #f8f2f2;
  justify-content: flex-start;
  display: flex;
  padding-left: 4px;
  line-height: 20px;
  font-size: 16px;
  margin-bottom: 25px;
  font-family: "Exo", sans-serif;
  border-radius: 5px;
  background-color: #bfbbb0;
}

.sidebar__collections {
  font-size: 2rem;
}

.sidebar__collections a {
    text-decoration: none;
    color: rgb(182, 174, 174);
    font-size: 1.2rem;
}

.sidebar__collections a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.sidebar__collections img {
  height: 100px;
  width: 80px;
  margin: 15px;
}

.sidebar__img-container {
  display: flex;
  flex-direction: row;
}

.sidebar__img-container img:hover {
  cursor: pointer;
  transform: translateY(-0.5rem);
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

* {
    transition: all 0.3s ease-in-out 0s;
}

.sidebar__collections-title {
  font-family: "Exo", sans-serif;
  font-size: 25px;
}

.sidebar__welcome-msg {
  font-family: "Exo", sans-serif;
  font-size: 25px;
}

.sidebar__collection {
  margin-top: 10px;
  margin-bottom: 10px;
}

.sidebar__no-login a {
    text-decoration: none;
    color: rgb(182, 174, 174);
    font-size: 1.2rem;
}

.sidebar__no-login a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.sidebar__no-login-collections {
  margin-top: 50px;
  margin-bottom: 50px;
}

.sidebar__no-login-collections-title {
  font-size: 16px;
}

.sidebar__collections > div > a:link {
  text-decoration: none;
}
.sidebar__collections > div > a:hover {
    color: #ff865b;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 27px;
}

/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
  .grid__section {
    display: none;
  }
}
/* Small Tablets */
@media (min-width: 321px) and (max-width: 767px) {
  .grid__section {
    display: none;
  }
}

/* Mobile */
@media (max-width: 320px) {
  .grid__section {
    display: none;
  }
}
