.review-container {
  display: flex;
  height: 30rem;
  width: 80%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;

  align-items: center;
  justify-content: center;
}

@media (max-width: 1030px) {
  .review-container {
    flex-direction: column;
    height: 60rem;
    width: 95%;
  }
}

@media (max-width: 1030px) {
  .entry-box {
    margin-bottom: 5rem;
  }
}

.review--box {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  position: relative;
}

.review {
  display: flex;
  justify-content: center;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background: -webkit-linear-gradient(
    left,
    rgb(227, 230, 235) 0%,
    rgb(236, 192, 157) 100%
  );
  padding-bottom: 0.5rem;
}

.review:not(:last-child) {
  margin-bottom: 1rem;
}

.review-profile {
  /* width: ; */
  height: 4rem;
  padding: 0 1rem;
  align-self: flex-start;
}

.review--profile__picture {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.profile-info {
  width: 90%;
}

.profile-info--name {
  margin: 0;
  padding: 0;
}

.profile-info--date {
  display: block;
  margin-bottom: 0.5rem;
}

.cross {
  font-size: 2rem;
  color: brown;
  padding-right: 1rem;
  cursor: pointer;
}

/* feedback */

.feedback {
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background: -webkit-linear-gradient(
    left,
    rgb(227, 230, 235) 0%,
    rgb(236, 192, 157) 100%
  );
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1.2rem;
  margin: 5rem 0 1rem 0;
}

/* loader */

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid rgb(110, 95, 60);
  border-color: rgb(110, 95, 60) transparent rgb(110, 95, 60) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}
