.style-item-info p {
  margin-top: 5px;
}
.style-item {
  position: relative;
  padding: 20px;
  padding-top: 20px !important;
  border: 2px solid transparent;
  text-align: center;
  transition: border .2s ease-in;
}
.style-item:not(.nohover):hover {
  border: 2px solid #000;
}
.style-item a {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.style-item-img {
  position: relative;
  margin-bottom: 12px;
}

.style-item.nohover .style-item-img img {
  width: 300px;
}

.style-item-img img {
  max-width: 100%;
  width: 250px;
  height: auto;
  object-fit: cover;
  object-position: 50%;
}

.style-area .span3 {
  margin-left: 0 !important;
  flex: 0 1 25%;
}

@media (min-width: 800px) and (max-width: 1023px) {
  .style-area .span3 {
    margin-left: 0;
    flex: 0 1 33.33%;
  }
}
@media (max-width: 799px) {
  .style-area .span3 {
    margin-left: 0;
    flex: 0 1 50%;
  }
}

.style-item-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  justify-content: space-evenly;
  align-items: stretch;
  padding: 2em;
  border: var(--boxed-border);
  border-radius: var(--boxed-corners);
  background-color: var(--boxed-bg-color);
  box-shadow: var(--boxed-shadow);
}
.style-item-group > div:first-child {
  width: 52%;
}
.style-item-group > div:last-child {
  width: 48%;
}
.style-item-group > div:not(:first-child) {
  padding-left: 2em;
}
.style-item-group__squares > div:last-child {
  margin-top: 2em;
}
.style-item-group__style {
  position: relative;
  height: 100%;
}
.style-item-group__style img {
  position: absolute;
  padding-bottom: 2em;
  padding-right: 2em;
  height: 100%;
  width: 100%;
}

.fave-list {
  width: 100%;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.fave-list li:before {
  content: none !important;
}

.fave-list li {
  margin-top: 0 !important;
  max-width: 48%;
  margin-bottom: 40px;
  width: 100%;
  padding: 2em;
  border: var(--boxed-border);
  border-radius: var(--boxed-corners);
  background-color: var(--boxed-bg-color);
  box-shadow: var(--boxed-shadow);
}

.fave-list .style-item-group {
  padding: 0;
  border: 0;
  border-radius: none;
  background-color: transparent;
  box-shadow: none;
}

.fave-list .style-item-group__style {
  height: initial;
}

.fave-list h6 {
  font-size: 16px;
}

.fave-list__item {
  position: relative;
}
.remove-btn {
  position: absolute;
  z-index: 2;
  opacity: .5;
  top: .5em;
  right: .5em;
  display: inline-block;
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  background: transparent;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: opacity 250ms ease-in-out,
  -webkit-appearance: none;
  -moz-appearance: none;
}

.remove-btn:hover {
  opacity: 1;
}

.no-saved-items {
  width: 100%;
}

@media (min-width: 1025px) {
  .fave-list li:nth-last-child(-n+2) {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 1024px) {
  .fave-list li {
    max-width: 100%;
  }
  .fave-list li:last-child {
    max-width: 100%;
    margin-bottom: 0 !important;
  }
}