.games_wrapper + .games_wrapper {
  margin-top: 1rem;
}
.games_wrapper .head {
  display: flex;
  align-items: center;
  height: 80px;
  border: 1px solid rgb(145, 145, 145);
  justify-content: space-between;
  padding: 0rem 2rem;
  cursor: pointer;
  border-radius: 10px;
}
.games_wrapper .head > h1 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 28px;
}
.games_wrapper .body_area {
  padding: 2rem 2rem;
  display: none;
}
.games_wrapper.active .body_area {
  display: block;
}
.rounds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid #ddd;
  padding-bottom: 1rem;
}
.rounds .left_area {
  padding-left: 2rem;
}
.rounds .left_area ul {
  padding-left: 2rem;
}
.rounds + .rounds {
  padding-top: 2rem;
}
.rounds .right_area > img {
  width: 100%;
}
.rounds .left_area > h1 {
  font-size: 25px;
  font-weight: 500;
}
.rounds .left_area ul {
  margin-top: 1rem;
}
.rounds .left_area ul > * + * {
  margin-top: 0.5rem;
}
.rounds .left_area ul li h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.opener {
  background-color: rgb(233, 233, 233);
  grid-column: span 2;
  border-radius: 10px;
  display: none;
  margin-top: 1rem;
  padding: 0rem 2rem;
  padding-bottom: 4rem;
}
.rounds .opener {
  display: grid;
}
.rounds > .left_area {
  position: relative;
}
.rounds .plus_area {
  position: absolute;
  bottom: -32px;
  background-color: #ddd;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  color: #fff;
  align-items: center;
  background-color: #008c8c;
  cursor: pointer;
}
.opener > h1 {
  font-size: 25px;
  font-weight: 500;
  padding-left: 1rem;
  margin-top: 4rem;
}
.opener .content_area_opener {
  grid-template-columns: 1fr 1fr;
  display: grid;
  margin-top: 2rem;
}
.opener .content_area_opener > *:first-child {
  padding-left: 0rem;
}
.opener .content_area_opener > ul {
  padding-left: 2rem !important;
}
.opener .content_area_opener > ul li h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.opener .content_area_opener > ul > * + * {
  margin-top: 1rem;
}
.opener .content_area_opener .right_area img {
  width: 100%;
}
@media screen and (max-width: 714px) {
  .rounds .left_area,
  .rounds .left_area ul {
    padding-left: 0px;
  }
}

@media screen and (max-width: 650px) {
  .games_wrapper .head > h1 {
    font-size: 20px;
  }
  .games_wrapper .head p {
    font-size: 14px;
  }
  .rounds .left_area > h1 {
    font-size: 17px;
  }
  .rounds .left_area ul li p {
    font-size: 14px;
  }
  .rounds .left_area ul li h2 {
    font-size: 15px;
  }
}
@media screen and (max-width: 500px) {
  .rounds .left_area ul {
    margin-bottom: 2rem;
  }
  .opener > h1 {
    font-size: 17px;
  }
  .rounds {
    grid-template-columns: 1fr;
  }
  .rounds > *:first-child,
  .opener .content_area_opener > *:first-child {
    order: 2;
  }

  .rounds > *:nth-child(2),
  .opener .content_area_opener > *:last-child {
    order: 1;
    margin-bottom: 2rem;
  }
  .rounds .opener {
    order: 3;
    grid-column: span 1;
  }
  .opener > h1 {
    margin-top: 2rem;
    padding-left: 0px;
  }
  .opener .content_area_opener > *:first-child {
    padding-left: 0px !important;
  }
  .opener .content_area_opener {
    grid-template-columns: 1fr;
  }
  .opener .content_area_opener > ul li h2 {
    font-size: 15px;
  }
  .opener .content_area_opener > ul li p {
    font-size: 14px;
  }
}
