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

.moods-container {
  max-width: 1200px;
  margin: auto;
}
.moods-container .decor-of-the-month {
  padding-bottom: 2.5rem;
}
.moods-container a {
  color: inherit;
  text-decoration: none;
}
.moods-container .enter {
  -webkit-animation: expand 0.5s ease 0s 1 normal forwards;
  animation: expand 0.5s ease 0s 1 normal forwards;
}
.moods-container .exit {
  -webkit-animation: exitExpand 0.5s ease 0s 1 normal forwards;
  animation: exitExpand 0.5s ease 0s 1 normal forwards;
}

.moods-container .product-expand {
  display: flex;
  gap: 3.5rem;
  border-bottom: 1px solid black;
  padding-bottom: 2rem;
}
@media (max-width: 980px) {
  .moods-container .product-expand {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
.decor-of-the-month .product-expand {
  padding-bottom: 2.5rem;
}
.moods-container .expanded-image-wrap {
  width: 50%;
}
@media (max-width: 980px) {
  .moods-container .expanded-image-wrap {
    width: 70%;
  }
}
@media (max-width: 680px) {
  .moods-container .expanded-image-wrap {
    width: 100%;
  }
}
.moods-container .expanded-image-wrap .expanded-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.moods-container .product-info-wrap {
  width: 50%;
}
@media (max-width: 980px) {
  .moods-container .product-info-wrap {
    width: 70%;
  }
}
@media (max-width: 680px) {
  .moods-container .product-info-wrap {
    width: 100%;
  }
}
.moods-container .product-heading {
  margin-bottom: 0.625rem;
}
.moods-container .product-text {
  line-height: 1.575rem;
  margin-bottom: 2rem;
}
.moods-container .product-text-wrap {
  border-bottom: 1px solid black;
  margin-bottom: 1.7rem;
}
.moods-container .used-decors {
  margin-bottom: 1rem;
}
.moods-container .used-decors-container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 0.3rem;
}
@media (max-width: 1480px) {
  .moods-container .product-text {
    margin-bottom: 0.7rem;
  }
  .moods-container .product-text-wrap {
    margin-bottom: 0.4rem;
  }
}

@media (max-width: 480px) {
  .moods-container .used-decors-container {
    grid-gap: 0.3rem;
  }
}
.moods-container .used-decors-container .used-decor {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 15px;
}
@media (max-width: 480px) {
  .moods-container .used-decors-container .used-decor {
    gap: 0.5rem;
  }
}
.moods-container .used-decors-container .used-decor .used-decor-info {
  display: flex;
  flex-direction: column;
}
.moods-container
  .used-decors-container
  .used-decor
  .used-decor-info
  .used-decor-title {
  font-weight: bold;
  line-height: 20px;
}
.moods-container
  .used-decors-container
  .used-decor
  .used-decor-info
  .used-decor-collection {
  line-height: 14px;
}
.moods-container .used-decors-container .used-decor .used-decor-image-wrap {
  width: 100px;
  height: 49px;
}
.moods-container
  .used-decors-container
  .used-decor
  .used-decor-image-wrap
  .used-decor-image {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: unset;
}
.moods-container .products-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3.5rem;
}
@media (max-width: 980px) {
  .moods-container .products-wrap {
    gap: 1rem;
  }
}
@media (max-width: 580px) {
  .moods-container .products-wrap {
    gap: 0.6rem;
  }
}
.moods-container .products-wrap img {
  display: block;
}
.moods-container .products-wrap .product-container {
  flex-basis: 20%;
  flex-grow: 1;
  background-color: black;
  max-width: 23.75%;
}
.moods-container .products-wrap .product-main-image-wrap {
  cursor: pointer;
}
.moods-container .products-wrap .expand-active {
  opacity: 0.5;
}

.custom-loader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20rem;
  margin-bottom: 5rem;
}
.custom-loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
}

.custom-loader::after,
.custom-loader::before {
  content: "";
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  animation: animcustom-loader 2s linear infinite;
}

.custom-loader::after {
  animation-delay: 1s;
}

@keyframes animcustom-loader {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes expand {
  0% {
    transform: scale(0);
    transform-origin: 50% 0%;
  }
  100% {
    transform: scale(1);
    transform-origin: 50% 0%;
  }
}

@keyframes expand {
  0% {
    transform: scale(0);
    transform-origin: 50% 0%;
  }
  100% {
    transform: scale(1);
    transform-origin: 50% 0%;
  }
}
@-webkit-keyframes exitExpand {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes exitExpand {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
