.content {
  grid-row: 3/4;
  grid-column: 1;
  background: url(../pic/content.jpg);
  display: grid;
  grid-template-rows: min-content;
  grid-auto-rows: min-content;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  padding: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 80%;
}

.item {
  border: 1px solid black;
  border-radius: 15px;
  background: #fff;
  text-align: left;
  overflow: hidden;
  text-indent: 10px;
  line-height: 25px;
  cursor: default;
}

.head {
  width: 100%;
  height: 25px;
  border-bottom: 1px solid #888;
  border-radius: 15px;
  background: url(../pic/stars.png) no-repeat;
  background-position: 100px;
  margin-bottom: 1px;
}

.text {
  text-align: center;
}

.add_wrap {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1f;
}

.add_new {
  width: 150px;
  height: 20px;
  border-radius: 7px;
  border: none;
  box-shadow: -2px 2px 5px 2px;
  background: silver;
  margin: 40px auto;
}

.add_new:hover {
  background: #fff;
  cursor: pointer;
}

.add_new:active {
  background: #abe35f;
}

#active {
  color: #000;
}

.reviewWrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.9;
  left: 0;
  top: 0;
  z-index: 100;
}

.reviewWindow {
  display: block;
  position: relative;
  width: 700px;
  height: 500px;
  background: #fff;
  top: 300px;
  margin: 0 auto;
  border-radius: 35px;
}

.reviewText {
  position: relative;
  display: block;
  width: 500px;
  height: 150px;
  border-radius: 8px;
  top: 140px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 110%;
}

.saveBtn {
  position: relative;
  display: block;
  width: 310px;
  height: 35px;
  border-radius: 8px;
  top: 170px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 110%;
  background: #abe35f;
}

.reviewClose {
  border-radius: 8px;
  position: absolute;
  width: 25px;
  height: 25px;
  right: 12px;
  top: 12px;
  text-align: center;
  line-height: 5px;
  background: #888;
}

.reviewOutput {
  position: relative;
  display: block;
  width: 300px;
  height: 30px;
  border-radius: 8px;
  top: -150px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 110%;
  text-align: center;
}

.reviewName {
  position: absolute;
  display: block;
  width: 300px;
  height: 30px;
  border-radius: 8px;
  top: 80px;
  left: 200px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 110%;
}

/* ---------------------------------------------------------max-width: 1000px --------------------------------------------------*/

@media (max-width: 1000px) {
  .content {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 5px;
    padding: 5px;
  }
}

/* ---------------------------------------------------------max-width: 700px --------------------------------------------------*/

@media (max-width: 700px) {
  .content {
    grid-template-rows: auto;
    grid-template-columns: auto;
    margin-right: 5px;
    grid-gap: 5px;
    padding: 5px;
  }
}
