/*
 * SDG Game styles — ported verbatim from the legacy site (cmsroot common.css, .sdg-game block).
 * The generic `.wrapper` and `.more-btn` helpers the game markup relies on are scoped under
 * `.sdg-game` here so they do NOT collide with the new Webflow theme (which defines its own
 * global `.more-btn`). The `.sdg-game__*` BEM rules below are already collision-free.
 */

/* --- scoped container helper (legacy .wrapper) --- */
.sdg-game .wrapper {
  width: 100%;
  max-width: 1496px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* --- scoped button helper (legacy .more-btn); resets props that leak from the theme's .more-btn --- */
/* `display` is set at low specificity via :where() so the game's own responsive show/hide
   toggles (.sdg-game__{help,level}-next-btn--mobile { display:none/block }) still win — a plain
   `.sdg-game .more-btn { display }` (0,2,0) would outrank those single-class toggles (0,1,0). */
.sdg-game :where(.more-btn) {
  display: inline-block;
}
.sdg-game .more-btn {
  align-self: auto;
  grid-column-gap: 0;
  grid-row-gap: 0;
  text-decoration: none;
  position: relative;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  padding: 14px 28px;
  margin-top: 12px;
  background-color: #2a61c8;
  border: 1px #2a61c8 solid;
  border-radius: 8px;
}
.sdg-game .more-btn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 2px #fff solid;
  border-right: 2px #fff solid;
  transform: rotate(45deg);
  margin-top: -4px;
  margin-left: 4px;
  transition: 0.3s all ease;
  position: relative;
  left: 0;
}
.sdg-game .more-btn:hover:after {
  left: 5px;
}
.sdg-game .more-btn--border-white {
  border-color: #fff;
}
.sdg-game .more-btn--bg-transparent {
  background-color: transparent;
}
.sdg-game .more-btn--text-blue {
  color: #2a61c8;
}
.sdg-game .more-btn--text-blue:after {
  border-top-color: #2a61c8;
  border-right-color: #2a61c8;
}

/* --- legacy .sdg-game block (common.css 4074-5322), verbatim --- */
.sdg-game {
  position: relative;
  color: #2a61c8;
}

.sdg-game:before {
  content: "";
  display: block;
  width: 50vw;
  height: 5px;
  background-color: #2a61c8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.sdg-game:after {
  content: "";
  display: block;
  width: calc(100% - 48px);
  max-width: 1400px;
  height: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #2a61c8;
  transform: skewX(-50deg) translateX(-50%);
}

.sdg-game__section {
  position: relative;
  background-color: #fdffef;
}

.sdg-game__section .wrapper {
  position: relative;
  padding-top: 38px;
  padding-bottom: 38px;
}

.sdg-game__landing {
  background-image: url(../images/education-knowledge/sdg-game/cloud-pollute-1.png), url(../images/education-knowledge/sdg-game/cloud-pollute-2.png);
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: 105% center, 30% 105%;
}

.sdg-game__landing .wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.sdg-game__landing-body {
  padding: 98px 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .sdg-game__landing-body {
    padding: 48px 0;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sdg-game__landing-textarea {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .sdg-game__landing-textarea {
    width: 100%;
    margin-bottom: 28px;
  }
}
.sdg-game__landing-title {
  font-size: 4.25rem;
  font-style: italic;
  max-width: 320px;
  line-height: 1;
  padding-bottom: 9px;
  margin-bottom: 12px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .sdg-game__landing-title {
    font-size: 3rem;
    max-width: 260px;
  }
}
.sdg-game__landing-title:before, .sdg-game__landing-title:after {
  content: "";
  display: block;
  width: 95%;
  height: 1px;
  background-color: #2a61c8;
  position: absolute;
  left: 0;
  bottom: 9px;
}

.sdg-game__landing-title:after {
  width: 85%;
  bottom: 0;
}

.sdg-game__landing-desc {
  font-weight: 400;
  max-width: 500px;
}

.sdg-game__landing-city {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .sdg-game__landing-city {
    width: 100%;
  }
}
.sdg-game__landing-city > img {
  width: 100%;
  padding: 0 48px;
}

@media screen and (max-width: 375px) {
  .sdg-game__landing-city > img {
    padding: 0;
  }
}
.sdg-game__game {
  display: none;
}

.sdg-game__game-head {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 28px;
}

@media screen and (max-width: 768px) {
  .sdg-game__game-head {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sdg-game__game-title {
  font-size: 2rem;
  font-style: italic;
  position: relative;
  padding-bottom: 9px;
  margin-right: 48px;
}

@media screen and (max-width: 768px) {
  .sdg-game__game-title {
    margin-right: 0;
  }
}
.sdg-game__game-title:before, .sdg-game__game-title:after {
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background-color: #2a61c8;
  position: absolute;
  left: 0;
  bottom: 6px;
}

.sdg-game__game-title:after {
  width: 80%;
  bottom: 0;
}

.sdg-game__game-clock {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 0 14px rgba(211, 211, 211, 0.3);
  position: relative;
  padding: 12px 24px;
  padding-left: 42px;
}

@media screen and (max-width: 768px) {
  .sdg-game__game-clock {
    width: 100%;
    margin-top: 12px;
  }
}
@media screen and (max-width: 480px) {
  .sdg-game__game-clock {
    padding: 6px 24px;
    padding-left: 28px;
  }
}
.sdg-game__game-clock-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: calc(100% + 4px);
}

.sdg-game__game-timeline {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 5px;
  background-color: #2a61c8;
  transform: skewX(-50deg);
  margin: 0 12px;
}

.sdg-game__game-timeline-process {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #9ff6ff;
  position: relative;
  top: -3px;
  left: -4px;
}

.sdg-game__game-time {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 600;
}

.sdg-game__game-body {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .sdg-game__game-body {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sdg-game__game-right {
  width: 30%;
  margin-left: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .sdg-game__game-right {
    width: 100%;
    margin-top: 28px;
  }
}
.sdg-game__game-ranking {
  position: relative;
  padding: 148px 24px;
  background-color: #e1fbfc;
  border-radius: 30px;
  box-shadow: 0px 7px 9px rgba(34, 34, 34, 0.1);
}

@media screen and (max-width: 768px) {
  .sdg-game__game-ranking {
    padding: 58px 24px;
  }
}
.sdg-game__game-ranking-img {
  font-size: 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sdg-game__game-ranking-img {
    max-width: 320px;
    margin: 0 auto;
  }
}
.sdg-game__game-ranking-img img {
  width: 100%;
}

.sdg-game__game-ranking-img-clean {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  transition: 0.3s width ease;
  background-color: #e1fbfc;
  background-image: url(../images/education-knowledge/sdg-game/city.svg);
  background-size: 352px auto;
  background-position: right center;
  background-repeat: no-repeat;
}

.sdg-game__game-ranking-plus {
  position: absolute;
  width: calc(100% - 48px);
  max-width: 160px;
  left: 24px;
  bottom: 0;
  opacity: 0;
  transition: 0.3s all ease;
}

.sdg-game__game-ranking-plus.active {
  opacity: 1;
  bottom: 24px;
}

@media screen and (max-width: 768px) {
  .sdg-game__game-ranking-plus {
    width: 100px;
    top: 44px;
    bottom: auto;
  }

  .sdg-game__game-ranking-plus.active {
    top: 24px;
    bottom: auto;
  }
}
.sdg-game__game-left {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 48px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sdg-game__game-left {
    width: 100%;
    padding-right: 0;
  }
}
.sdg-game__card-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sdg-game__card {
  position: relative;
  width: calc(20% - 10px);
  margin: 5px;
}

.sdg-game__card.complete {
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all ease;
  transition-delay: 1s;
}

.sdg-game__card:after {
  /* content: attr(data-sdg); */
  content: "";
  font-size: 1.75rem;
  position: absolute;
  top: 12px;
  left: 12px;
}

@media screen and (max-width: 768px) {
  .sdg-game__card {
    width: calc(25% - 10px);
  }
}
.sdg-game__card-cover {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-image: url(../images/education-knowledge/sdg-game/card-cover.svg);
  background-size: cover;
  background-position: center;
  transition: 0.3s all linear;
  transition-delay: 0.3s;
}

.active .sdg-game__card-cover, .complete .sdg-game__card-cover {
  transform: scaleX(0);
  transition-delay: 0s;
}

.sdg-game__card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: 0.3s all linear;
  transform: scaleX(0);
}

.active .sdg-game__card-img, .complete .sdg-game__card-img {
  transform: scaleX(1);
  transition-delay: 0.3s;
}

.sdg-game__complete-card-holder {
  position: relative;
  width: 15%;
  margin: 12px;
  margin-left: auto;
  align-self: center;
}

.sdg-game__complete-card-holder:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.sdg-game__complete-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: rotate(-10deg) translateZ(0);
}

.sdg-game__complete-card:nth-child(even) {
  transform: rotate(10deg) translateZ(0);
}

.sdg-game__complete-card:nth-child(3), .sdg-game__complete-card:nth-child(4) {
  top: -5px;
  left: 5px;
}

.sdg-game__complete-card:nth-child(5), .sdg-game__complete-card:nth-child(6) {
  top: -10px;
  left: 10px;
}

.sdg-game__teach {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 37, 83, 0.8);
}

.sdg-game__teach .wrapper {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.sdg-game__teach-item-container {
  /* display: -ms-flexbox; */
  /* display: -webkit-flex; */
  /* display: flex; */
  /* -webkit-justify-content: space-between; */
  /* -ms-flex-pack: justify; */
  /* justify-content: space-between; */
}

.sdg-game__teach-item-container .swiper-wrapper {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.sdg-game__teach-item {
  /* width: calc(25% - 12px); */
  height: auto;
  background-color: #fff;
  padding: 38px 24px;
  border-radius: 30px;
}

.sdg-game__teach-item p {
  margin-bottom: 12px;
}

.sdg-game__teach-item p:last-child {
  margin-bottom: 0;
}

.sdg-game__teach-item img {
  width: 100%;
  padding-bottom: 12px;
}

@media screen and (max-width: 1279px) {
  .sdg-game__teach-item img {
    display: block;
    max-width: 200px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .sdg-game__teach-item img {
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.sdg-game__teach-item--blue {
  background-color: #2a61c8;
  color: #fff;
}

.sdg-game__teach-pagination {
  position: relative;
  bottom: auto !important;
  text-align: center;
  margin-top: 12px;
}

@media screen and (min-width: 1200px) {
  .sdg-game__teach-pagination {
    display: none;
  }
}
.sdg-game__teach-pagination .swiper-pagination-bullet {
  background: #fff;
}

.sdg-game__teach-question-mark {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.sdg-game__teach-question-mark span {
  font-size: 4.875rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sdg-game__start-btn {
  width: 100%;
}

.sdg-game__card-compare {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.sdg-game__card-compare-body {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 480px) {
  .sdg-game__card-compare-body {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sdg-game__card-compare-card {
  width: 45%;
  max-width: 300px;
  margin: 12px;
  position: relative;
}

@media screen and (max-width: 480px) {
  .sdg-game__card-compare-card {
    width: 65%;
  }
}
.sdg-game__card-compare-card:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.sdg-game__card-compare-desc {
  color: #fff;
}

.sdg-game__card-compare-desc p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px;
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow: auto;
  font-size: 1.25rem;
}

@media screen and (max-width: 991px) {
  .sdg-game__card-compare-desc p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .sdg-game__card-compare-desc p {
    font-size: 1rem;
  }
}
.sdg-game__question {
  display: none;
}

.sdg-game__question-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 640px) {
  .sdg-game__question-container {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sdg-game__question-img {
  width: 200px;
  margin-right: 48px;
  font-size: 0;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 640px) {
  .sdg-game__question-img {
    width: 100px;
    margin: 0 auto 12px;
  }
}
.sdg-game__question-img:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.sdg-game__question-body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 420px;
}

@media screen and (max-width: 640px) {
  .sdg-game__question-body {
    max-width: none;
  }
}
.sdg-game__question-title {
  font-size: 2.125rem;
  margin-bottom: 28px;
}

@media screen and (max-width: 640px) {
  .sdg-game__question-title {
    font-size: 1.5rem;
  }
}
.sdg-game__question-multiple-text {
  display: none;
  margin-top: -28px;
  font-weight: 400;
}

.sdg-game__question-option-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sdg-game__question-option {
  padding: 12px;
  border: 2px #2a61c8 solid;
  border-radius: 50px;
  color: #2a61c8;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 9px 0;
  transition: 0.3s all ease;
}

.sdg-game__question-option:hover {
  color: #fff;
  background-color: #2a61c8;
}

.sdg-game__question-option.correct {
  border-color: #74ced9;
  background-color: #74ced9;
  color: #fff;
}

.sdg-game__question-option.wrong {
  animation-name: wrong;
  animation-iteration-count: infinite;
  animation-duration: 0.5s;
}

.sdg-game__help {
  display: none;
  background-color: #dfe8f7;
}

.sdg-game__help .sdg-game__game-ranking-img-clean {
  background-color: #dfe8f7;
  background-size: 320px auto;
}

.sdg-game__help-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  .sdg-game__help-container {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sdg-game__help-container .sdg-game__help-ranking-img {
    display: none;
  }
}
.sdg-game__help-left {
  width: 320px;
  margin-right: 24px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .sdg-game__help-left {
    width: 100%;
    margin-right: 0;
  }
}
.sdg-game__help-left .sdg-game__game-title {
  margin-right: 0;
  display: inline-block;
}

.sdg-game__help-title {
  font-size: 2.375rem;
  margin: 18px 0;
}

@media screen and (max-width: 480px) {
  .sdg-game__help-title {
    font-size: 1.75rem;
  }
}
.sdg-game__help-next-btn {
  margin-bottom: 44px;
}

.sdg-game__help-next-btn.disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}

@media screen and (max-width: 991px) {
  .sdg-game__help-next-btn {
    display: none;
  }
}
.sdg-game__help-next-btn--mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  .sdg-game__help-next-btn--mobile {
    display: block;
    margin: 28px auto 0;
  }
}
.sdg-game__help-right {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 24px;
  background-color: #fff;
  border-radius: 30px;
}

@media screen and (max-width: 991px) {
  .sdg-game__help-right {
    width: 100%;
  }
}
.sdg-game__help-btn {
  width: 16.6666666667%;
  position: relative;
  font-size: 0;
}

@media screen and (max-width: 768px) {
  .sdg-game__help-btn {
    width: 20%;
  }
}
@media screen and (max-width: 560px) {
  .sdg-game__help-btn {
    width: 25%;
  }
}
@media screen and (max-width: 480px) {
  .sdg-game__help-btn {
    width: 33.3333333333%;
  }
}
.sdg-game__help-btn:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.sdg-game__help-btn img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s all ease;
}

.sdg-game__help-btn:hover {
  opacity: 0.8;
}

.active .sdg-game__help-img-1 {
  opacity: 0;
}

.sdg-game__help-img-2 {
  opacity: 0;
}

.active .sdg-game__help-img-2 {
  opacity: 1;
}

.sdg-game__level {
  display: none;
  background-color: #dfe8f7;
}

.sdg-game__level .sdg-game__game-ranking-img-clean {
  background-color: #dfe8f7;
}

@media screen and (max-width: 991px) {
  .sdg-game__level .sdg-game__help-ranking-img {
    display: none;
  }
}
.sdg-game__level-next-btn {
  margin-bottom: 44px;
}

.sdg-game__level-next-btn.disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}

@media screen and (max-width: 991px) {
  .sdg-game__level-next-btn {
    display: none;
  }
}
.sdg-game__level-next-btn--mobile {
  display: none;
}

@media screen and (max-width: 991px) {
  .sdg-game__level-next-btn--mobile {
    display: block;
    margin: 28px auto 0;
  }
}
.sdg-game__level-right {
  width: 100%;
}

.sdg-game__level-btn-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sdg-game__level-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 24px;
  background-color: #fff;
  border-radius: 30px;
  color: #2a61c8;
  font-size: 1.125rem;
  text-align: center;
  width: calc(33.3333333333% - 14px);
}

.sdg-game__level-btn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 2px #2a61c8 solid;
  border-right: 2px #2a61c8 solid;
  transform: rotate(45deg);
  margin-top: -4px;
  margin-left: 4px;
  transition: 0.3s all ease;
  position: relative;
  left: 0;
}

.sdg-game__level-btn ul {
  margin: 0;
}

.sdg-game__level-btn ul > li:before {
  top: 5px;
}

.sdg-game__level-btn.active {
  background-color: #2a61c8;
  color: #fff;
  /* ul > li:before {
      background-color: #fff;
  }
  .sdg-game__level-btn-title:after {
      border-top: 2px #fff solid;
      border-right: 2px #fff solid;
  } */
}

.sdg-game__level-btn.active:after {
  border-top: 2px #fff solid;
  border-right: 2px #fff solid;
}

.sdg-game__level-content {
  display: none;
  padding: 24px;
  margin-top: 24px;
  background-color: #fff;
  border-radius: 30px;
}

.sdg-game__level-btn-title {
  font-size: 1.125rem;
  font-weight: bold;
}

.sdg-game__level-btn-desc {
  display: block;
}

.sdg-game__thank {
  display: none;
  background-color: #c2efef;
  background-image: url(../images/education-knowledge/sdg-game/cloud-1.png), url(../images/education-knowledge/sdg-game/cloud-2.png);
}

.sdg-game__thank .sdg-game__game-title {
  max-width: 300px;
}

@media screen and (max-width: 991px) {
  .sdg-game__thank .sdg-game__landing-city {
    width: 100%;
    text-align: center;
  }

  .sdg-game__thank .sdg-game__landing-city > img {
    max-width: 400px;
  }
}
@media screen and (max-width: 991px) {
  .sdg-game__thank-body {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .sdg-game__thank-textarea {
    width: 100%;
    margin-bottom: 28px;
  }
}
.sdg-game__thank-title {
  color: #64b7be;
  font-size: 3.625rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  max-width: 420px;
  margin: 12px 0 24px;
}

@media screen and (max-width: 480px) {
  .sdg-game__thank-title {
    font-size: 2.125rem;
  }
}
.sdg-game__thank-sdg {
  font-size: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sdg-game__thank-sdg img {
  width: 150px;
}

@media screen and (max-width: 480px) {
  .sdg-game__thank-sdg img {
    width: 120px;
  }
}
.sdg-game__thank-level {
  margin-left: 24px;
}

.sdg-game__thank-level-head {
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.sdg-game__thank-level-title {
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  .sdg-game__thank-level-title {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-top: 6px;
  }
}
.sdg-game__popup {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 255, 239, 0.9);
  z-index: 10;
}

.sdg-game__popup-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px;
}

.sdg-game__popup-textarea {
  display: none;
  width: 560px;
  background-color: #fff;
  border-radius: 30px;
  padding: 48px;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  text-align: center;
}

.sdg-game__popup-title {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.sdg-game__popup-timeup .sdg-game__popup-title {
  font-size: 2.375rem;
}

.sdg-game__popup-btn-container .more-btn {
  margin: 6px 12px;
}

.sdg-game__share {
  margin-top: 48px;
  margin-left: auto;
  text-align: right;
}

.sdg-game__share-body {
  display: inline-block;
  text-align: left;
}

.sdg-game__share-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 9px;
}

.sdg-game__share-btn-container {
  margin: 0 -9px;
  font-size: 0;
}

.sdg-game__share-btn {
  margin: 6px 9px;
  display: inline-block;
  vertical-align: middle;
  transition: 0.3s all ease;
}

.sdg-game__share-btn:hover {
  opacity: 0.8;
}

@keyframes wrong {
  0%, 100% {
    background-color: #fff;
    border-color: #2a61c8;
  }
  50% {
    color: #fff;
    background-color: red;
    border-color: red;
  }
}
