/* Import Default Setup */
@import url('../src/css/game-setup.css');

/* General */
.balloon-pop {
  border-color: #71cedc;
}

/* Title Screen */
.balloon-pop .title-screen {
  background-color: #6fd0dd;
  background-image: url('./img/title-screen-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.balloon-pop .title-screen .start-game-btn {
  margin-top: 280px;
}

/* Game Container */
.balloon-pop .language-arts-game-container {
  border-color: #fff;
  background-color: #6dcedc;
  background-image: url('./img/game-bg.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* No text version */
.balloon-pop[data-display-text='false']
  .language-arts-game-container
  .accessibility-container {
  position: absolute;
  z-index: 2;
}

.balloon-pop[data-display-text='false']
  .language-arts-game-container
  .accessibility-container
  button {
  border-color: #000;
  color: #000;
}

.balloon-pop .game-container .question-container .question-holder {
  background-color: #fff;
  width: calc(100% + 60px);
  margin: -30px 0px 0px -30px;
  border-radius: var(--border-radius) 0px 0px 0px;
  padding: 15px 30px 15px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* No text version */
.balloon-pop[data-display-text='false']
  .game-container
  .question-container
  .question-holder {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.balloon-pop .game-container .question-container .question-holder .text-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.balloon-pop .game-container .question-container .question-holder .text-holder {
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.balloon-pop:not([data-secondary-version='true'])
  .game-container
  .question-container
  .question-holder
  .text-holder
  p {
  margin: 0px !important;
}

.balloon-pop
  .game-container
  .question-container
  .question-holder
  .question-character {
  background-image: url('./img/question-character.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 70px;
  height: 76px;
  margin-right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  pointer-events: none;
  cursor: auto;
}

/* No text version */
.balloon-pop[data-display-text='false']
  .game-container
  .question-container
  .question-holder
  .question-character {
  position: relative;
  margin-right: -48px;
  top: -4px;
  z-index: 3;
  background-image: url('./img/question-character-no-text.png');
  width: 92px;
  height: 100px;
  pointer-events: all;
  cursor: pointer;
}

.language-arts-game[data-display-text='false']
  .game-container
  .question-container
  .question-holder
  .text-holder
  .play-audio {
  padding-left: 80px;
  padding-right: 58px;
  margin-right: 1rem;
}

.balloon-pop .game-container .question-container .question-holder .match-holder,
.balloon-pop
  .game-container
  .question-container
  .question-holder
  .match-holder
  img {
  border-radius: 50%;
  padding: 0px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Prevent match audio button changes when question audio is playing */
.balloon-pop
  .game-container
  .question-container
  .question-holder
  .match-holder
  .play-audio {
  opacity: 1 !important;
  background-color: #595959 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/* Prevent question character changes when match audio is playing */
.balloon-pop
  .game-container
  .question-container
  .question-holder:has(.match-holder .play-audio.active)
  .question-character {
  -webkit-filter: none !important;
  filter: none !important;
}

.balloon-pop
  .game-container
  .question-container
  .question-holder
  .match-holder {
  width: 125px;
  height: 125px;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 20px #fff, 0px 26px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0 20px #fff, 0px 26px 5px rgba(0, 0, 0, 0.2);
  margin-left: 15px;
  margin-right: 15px;
  top: 15px;
  cursor: pointer;
}

/* No text version */
.balloon-pop[data-display-text='false']
  .game-container
  .question-container
  .question-holder
  .match-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 2px;
  width: 150px;
  height: 150px;
  -webkit-box-shadow: 0 0 0 20px #fff, 0px 26px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0 18px #fff, 0px 26px 5px rgba(0, 0, 0, 0.2);
}

.balloon-pop
  .game-container
  .question-container
  .question-holder
  .match-holder
  img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

/* No text version */
.balloon-pop[data-display-text='false']
  .game-container
  .question-container
  .question-holder
  .match-holder
  img {
  top: 0;
}

.balloon-pop
  .game-container
  .question-container
  .question-holder
  .match-holder
  .play-audio {
  position: absolute;
  top: 30px;
  right: -30px;
  z-index: 2;
}

/* No text version */
.balloon-pop[data-display-text='false']
  .game-container
  .question-container
  .question-holder
  .match-holder
  .play-audio {
  all: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 0.85rem;
  padding: 0px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  opacity: 1;
  background-color: #595959;
  border: 2px solid #fff;
  z-index: 2;
  outline: none;
  position: relative;
  top: 0px;
  left: 20px;
}

.balloon-pop .game-container .question-container .balloon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  bottom: 0px;
  overflow: hidden;
  /* width: 100%; */
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: inset(0);
  clip-path: inset(0); /* iPad fix = effectively overflow: hidden */
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  background-size: cover;
  color: #fff;
  width: 110px;
  height: 406px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);
  font-size: 1.5rem;
  -webkit-filter: drop-shadow(8px 15px 8px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(8px 15px 8px rgba(0, 0, 0, 0.2));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.bang {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 110%, cover;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.popped {
  background-image: url('./img/balloon-popped.png') !important;
  background-position: top center;
  color: #fff !important;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75) !important;
  cursor: not-allowed;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder
  .balloon-content {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 110px;
  height: 126px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder
  .balloon-content
  .play-audio,
.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder
  .balloon-content
  .correct-icon,
.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder
  .balloon-content
  .incorrect-icon {
  margin: 5px auto 0px auto;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.audio-only
  .balloon-content
  .play-audio {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  font-size: 1.5rem;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.audio-only
  .balloon-content
  .correct-icon,
.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.audio-only
  .balloon-content
  .incorrect-icon {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  margin: 0 auto;
}

.balloon-pop .correct-icon,
.balloon-pop .incorrect-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.85rem;
  padding: 0px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  z-index: 2;
  font-size: 1.25rem;
  text-shadow: none;
  color: #fff;
}

.balloon-pop .correct-icon {
  border-color: #3b7029;
  background-color: var(--green);
}

.balloon-pop .incorrect-icon {
  border-color: #8c302e;
  background-color: var(--red);
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-green {
  background-image: url('./img/balloon-green.png');
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-green.bang {
  background-image: url('./img/bang.png'), url('./img/balloon-green.png') !important;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-blue {
  background-image: url('./img/balloon-blue.png');
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-blue.bang {
  background-image: url('./img/bang.png'), url('./img/balloon-blue.png') !important;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-purple {
  background-image: url('./img/balloon-purple.png');
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-purple.bang {
  background-image: url('./img/bang.png'), url('./img/balloon-purple.png') !important;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-orange {
  background-image: url('./img/balloon-orange.png');
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-orange.bang {
  background-image: url('./img/bang.png'), url('./img/balloon-orange.png') !important;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-yellow {
  background-image: url('./img/balloon-yellow.png');
  color: #000;
  text-shadow: none;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-yellow.bang {
  background-image: url('./img/bang.png'), url('./img/balloon-yellow.png') !important;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-pink {
  background-image: url('./img/balloon-pink.png');
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder.balloon-pink.bang {
  background-image: url('./img/bang.png'), url('./img/balloon-pink.png') !important;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder:nth-child(1) {
  z-index: 10;
  top: 75px;
  left: 35px;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder:nth-child(2) {
  z-index: 9;
  top: 180px;
  left: 20px;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder:nth-child(3) {
  z-index: 8;
  top: 4px;
  left: -30px;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder:nth-child(4) {
  z-index: 7;
  top: 100px;
  left: -30px;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder:nth-child(5) {
  z-index: 6;
  top: 195px;
  left: -25px;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder:nth-child(6) {
  z-index: 5;
  top: 30px;
  left: -50px;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder:nth-child(7) {
  z-index: 4;
  top: 145px;
  left: -50px;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder:nth-child(8) {
  z-index: 3;
  top: 5px;
  left: -40px;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder:nth-child(9) {
  z-index: 2;
  top: 165px;
  left: -25px;
}

.balloon-pop
  .game-container
  .question-container
  .balloon-container
  .balloon-holder:nth-child(10) {
  z-index: 1;
  top: 50px;
  left: -35px;
}

.balloon-pop .game-container .question-container .match-container .play-audio,
.balloon-pop .game-container .question-container .drag-container .play-audio {
  position: relative;
  top: 45px;
}

.balloon-pop .game-container .question-container .question-holder .play-audio {
  margin-right: 15px;
}

/* Feedback */
.balloon-pop .game-container .question-container .feedback-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.balloon-pop .game-container .question-container .feedback-screen {
  position: relative;
  width: 100%;
  height: 300px;
  text-align: center;
  padding: 30px;
  background: -o-linear-gradient(
    top,
    #fff 0%,
    #fff 50%,
    #71cedc 50%,
    #71cedc 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff),
    color-stop(50%, #fff),
    color-stop(50%, #71cedc),
    to(#71cedc)
  );
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 50%,
    #71cedc 50%,
    #71cedc 100%
  );
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
}

.balloon-pop .feedback-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 250px;
  max-width: 600px;
  margin: 0 auto;
}

.balloon-pop .correct-feedback .feedback-image,
.balloon-pop .incorrect-feedback .feedback-image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  margin-right: 20px;
  width: 64px;
  height: 200px;
  margin-top: 5px;
}

.balloon-pop .correct-feedback .feedback-image {
  background: url('./img/correct-character.png');
}

.balloon-pop .incorrect-feedback .feedback-image {
  background: url('./img/incorrect-character.png');
}

.balloon-pop .feedback {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.balloon-pop .feedback button {
  margin: 0;
}

.balloon-pop .feedback .feedback-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.balloon-pop .feedback .feedback-text .play-audio {
  margin-right: 10px;
}

/* Final Screen */
.balloon-pop .final-screen-container {
  position: absolute;
  z-index: 3; /* just above .accessibility-container for no text version */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6fd0dd;
  background-image: url('./img/final-screen.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.balloon-pop .final-screen-container .final-screen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.balloon-pop .final-screen-container .final-screen #bee-lottie {
  width: 540px;
  margin-bottom: -270px;
  margin-top: -220px;
  position: relative;
}

/* No text version */
.balloon-pop[data-display-text='false']
  .final-screen-container
  .final-screen
  #bee-lottie {
  margin-bottom: -250px;
  margin-top: -253px;
}

.balloon-pop .final-screen-container .final-screen .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.balloon-pop .final-screen-container .final-screen .text-container p.h1 {
  margin-bottom: 0px !important;
}

.balloon-pop .final-screen-container .final-screen .play-audio {
  margin-right: 5px;
}

.balloon-pop .final-screen-container .final-screen .retry-game-btn {
  position: relative;
  z-index: 2;
}

/* Media Queries */
@media all and (max-width: 1199px) {
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder {
    width: 100px;
    height: 372px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder
    .balloon-content {
    height: 120px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(1) {
    top: 100px;
    left: 65px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(2) {
    top: 190px;
    left: 50px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(3) {
    top: 40px;
    left: -10px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(4) {
    top: 110px;
    left: 5px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(5) {
    top: 205px;
    left: 0px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(6) {
    top: 50px;
    left: -22px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(7) {
    top: 155px;
    left: -26px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(8) {
    top: 50px;
    left: -21px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(9) {
    top: 175px;
    left: -30px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(10) {
    top: 70px;
    left: -65px;
  }
  .balloon-pop .final-screen-container .final-screen #bee-lottie {
    width: 450px;
    margin-bottom: -235px;
    margin-top: -176px;
  }
  /* No text version */
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder {
    padding: 0px 30px 0px 40px;
  }
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .question-character {
    top: -2px;
    width: 82px;
    height: 90px;
  }
  .language-arts-game[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .text-holder
    .play-audio {
    height: 50px;
    padding-left: 75px;
    padding-right: 50px;
  }
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .match-holder {
    top: 0px;
    width: 130px;
    height: 130px;
    -webkit-box-shadow: 0 0 0 16px #fff, 0px 24px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 16px #fff, 0px 24px 5px rgba(0, 0, 0, 0.2);
  }
  .balloon-pop[data-display-text='false']
    .final-screen-container
    .final-screen
    #bee-lottie {
    margin-bottom: -200px;
    margin-top: -227px;
  }
  /* Audio Only Additions */
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder.audio-only
    .balloon-content
    .play-audio {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  .game-container
    .question-container
    .balloon-container
    .balloon-holder.audio-only
    .balloon-content
    .correct-icon,
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder.audio-only
    .balloon-content
    .incorrect-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}

@media all and (max-width: 991px) {
  .balloon-pop .title-screen .start-game-btn {
    margin-top: 230px;
  }
  .balloon-pop .game-container .question-container .question-holder {
    padding: 5px 20px 5px 30px;
  }
  .balloon-pop
    .game-container
    .question-container
    .question-holder
    .question-character {
    width: 60px;
    height: 65px;
  }
  .balloon-pop
    .game-container
    .question-container
    .question-holder
    .text-holder {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .balloon-pop
    .game-container
    .question-container
    .question-holder
    .match-holder {
    width: 100px;
    height: 100px;
    -webkit-box-shadow: 0 0 0 5px #fff, 0px 15px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 5px #fff, 0px 15px 5px rgba(0, 0, 0, 0.2);
    top: 10px;
  }
  .balloon-pop
    .game-container
    .question-container
    .question-holder
    .match-holder
    .play-audio {
    top: 23px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder {
    width: 90px;
    height: 333px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(1) {
    top: 100px;
    left: 100px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(2) {
    top: 190px;
    left: 80px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(3) {
    top: 50px;
    left: 9px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(4) {
    top: 115px;
    left: 10px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(5) {
    top: 195px;
    left: 5px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(6) {
    top: 60px;
    left: -30px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(7) {
    top: 155px;
    left: -40px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(8) {
    top: 55px;
    left: -55px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(9) {
    top: 175px;
    left: -75px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(10) {
    top: 70px;
    left: -100px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder
    .balloon-content {
    width: 110px;
    height: 103px;
    font-size: 1.25rem;
  }
  .balloon-pop .final-screen-container .final-screen #bee-lottie {
    width: 400px;
    margin-bottom: -190px;
    margin-top: -130px;
  }
  /* No text version */
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder {
    padding: 0px 20px 0px 30px;
  }
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .question-character {
    top: -1px;
    width: 74px;
    height: 81px;
  }
  .language-arts-game[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .text-holder
    .play-audio {
    height: 45px;
    padding-left: 75px;
    padding-right: 45px;
    margin-right: 5px;
  }
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .match-holder {
    width: 100px;
    height: 100px;
    -webkit-box-shadow: 0 0 0 14px #fff, 0px 21px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 14px #fff, 0px 21px 5px rgba(0, 0, 0, 0.2);
  }
  .balloon-pop[data-display-text='false']
    .final-screen-container
    .final-screen
    #bee-lottie {
    margin-bottom: -170px;
    margin-top: -190px;
  }
}

@media all and (max-width: 767px) {
  .balloon-pop .title-screen .start-game-btn {
    margin-top: 130px;
  }
  .balloon-pop
    .game-container
    .question-container
    .question-holder
    .question-character {
    display: none;
  }
  .balloon-pop .game-container .question-container .question-holder {
    padding: 8px 15px 8px 15px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .question-holder
    .text-holder
    p {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .balloon-pop
    .game-container
    .question-container
    .question-holder
    .match-holder {
    width: 75px;
    height: 75px;
    -webkit-box-shadow: 0 0 0 10px #fff, 0px 15px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 10px #fff, 0px 15px 5px rgba(0, 0, 0, 0.2);
    top: 5px;
  }
  .balloon-pop
    .game-container
    .question-container
    .question-holder
    .match-holder
    .play-audio {
    top: 15px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder {
    width: 70px;
    height: 260px;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder
    .balloon-content {
    width: 110px;
    height: 85px;
    font-size: 1rem;
  }
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder
    .balloon-content
    .play-audio,
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder
    .balloon-content
    .correct-icon,
  .balloon-pop
    .game-container
    .question-container
    .balloon-container
    .balloon-holder
    .balloon-content
    .incorrect-icon {
    width: 25px;
    height: 25px;
    margin: 3px auto 0px auto;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(1) {
    top: 95px;
    left: 95px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(2) {
    top: 160px;
    left: 90px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(3) {
    top: 55px;
    left: 30px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(4) {
    top: 120px;
    left: 20px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(5) {
    top: 150px;
    left: 28px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(6) {
    top: 60px;
    left: -8px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(7) {
    top: 135px;
    left: -30px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(8) {
    top: 55px;
    left: -55px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(9) {
    top: 155px;
    left: -75px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(10) {
    top: 70px;
    left: -95px;
  }
  .balloon-pop .feedback .feedback-text p.h1 {
    font-size: 2rem;
  }
  .balloon-pop .final-screen-container .final-screen .text-container p.h1 {
    font-size: 1.75rem;
  }
  .balloon-pop .final-screen-container .final-screen #bee-lottie {
    width: 290px;
    margin-bottom: -135px;
    margin-top: -85px;
  }
  /* No text version */
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder {
    padding: 0px 20px 0px 30px;
  }
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .question-character {
    display: block;
    top: 2px;
    width: 59px;
    height: 66px;
  }
  .language-arts-game[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .text-holder
    .play-audio {
    height: 45px;
    padding-left: 70px;
    padding-right: 40px;
    margin-right: 0px;
  }
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .match-holder {
    width: 75px;
    height: 75px;
  }
  .balloon-pop[data-display-text='false']
    .final-screen-container
    .final-screen
    #bee-lottie {
    margin-bottom: -125px;
    margin-top: -105px;
  }
  /* Audio Only Additions */
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder.audio-only
    .balloon-content
    .play-audio {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .balloon-holder.audio-only
    .correct-icon,
  .balloon-pop:not([data-secondary-version='true'])
    .balloon-holder.audio-only
    .incorrect-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
}

@media all and (max-width: 575px) {
  .balloon-pop .final-screen-container .final-screen #bee-lottie {
    width: 245px;
    margin-bottom: -120px;
    margin-top: -60px;
  }
  /* No text version */
  .balloon-pop[data-display-text='false']
    .final-screen-container
    .final-screen
    #bee-lottie {
    margin-bottom: -120px;
    margin-top: -105px;
  }
}

@media all and (max-width: 530px) {
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(1) {
    top: 110px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(2) {
    top: 165px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(3) {
    top: 65px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(4) {
    top: 128px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(5) {
    top: 160px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(6) {
    top: 70px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(7) {
    top: 145px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(8) {
    top: 65px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(9) {
    top: 160px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(10) {
    top: 85px;
  }
}

/* iPads */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .balloon-pop .feedback .feedback-text p.h1 {
    font-size: 2.25rem;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(1) {
    top: 50px;
    left: 100px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(2) {
    top: 180px;
    left: 80px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(3) {
    top: 5px;
    left: 25px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(4) {
    top: 100px;
    left: 15px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(5) {
    top: 195px;
    left: 5px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(6) {
    top: 25px;
    left: -35px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(7) {
    top: 145px;
    left: -55px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(8) {
    top: 10px;
    left: -70px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(9) {
    top: 175px;
    left: -90px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(10) {
    top: 70px;
    left: -100px;
  }
  .balloon-pop .final-screen-container .final-screen #bee-lottie {
    width: 400px;
    margin-bottom: -215px;
    margin-top: -165px;
  }
  /* No text version */
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .match-holder {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(1) {
    top: 35px;
    left: 65px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(2) {
    top: 150px;
    left: 50px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(3) {
    top: 3px;
    left: -10px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(4) {
    top: 80px;
    left: 5px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(5) {
    top: 180px;
    left: 0px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(6) {
    top: 30px;
    left: -22px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(7) {
    top: 120px;
    left: -26px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(8) {
    top: 15px;
    left: -21px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(9) {
    top: 165px;
    left: -30px;
  }
  .balloon-pop:not([data-secondary-version='true'])
    .game-container
    .question-container
    .balloon-container
    .balloon-holder:nth-child(10) {
    top: 50px;
    left: -65px;
  }
  .balloon-pop .final-screen-container .final-screen #bee-lottie {
    margin-bottom: -260px;
    margin-top: -210px;
  }
  /* No text version */
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder {
    padding: 10px 30px 10px 40px;
  }
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .match-holder {
    top: 10px;
    width: 145px;
    height: 145px;
    -webkit-box-shadow: 0 0 0 20px #fff, 0px 26px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 20px #fff, 0px 26px 5px rgba(0, 0, 0, 0.2);
  }
  .balloon-pop[data-display-text='false']
    .game-container
    .question-container
    .question-holder
    .match-holder
    img {
    top: -3px;
  }
}

/* Secondary Version */
.balloon-pop[data-secondary-version='true'] {
  border-color: #9ccaef;

  /* Set language-arts-game-container to full height */
  .language-arts-game-container {
    background-image: none;
    background-color: #fff;
    padding: 0px !important;
  }

  /* Set game-container and question-container to full height */
  .game-container,
  .question-container {
    height: 100%;
  }

  /* Title Screen */
  .title-screen {
    background-color: #9ccaef;
    background-image: url('./img/title-screen-bg-secondary.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .title-screen .start-game-btn {
    margin: unset;
    margin-top: 1rem;
    margin-right: 1rem;
  }

  /* Final Screen */
  .final-screen-container {
    background-color: #9ccaef;
    background-image: var(--confetti-background),
      url('./img/final-screen-bg-secondary.jpg');
    background-size: 100%, cover;
    background-position: top center, bottom center;
    background-repeat: no-repeat;
    padding: 30px !important;
  }

  .final-screen-container .final-screen {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .final-screen-container .final-screen .retry-game-btn {
    margin: unset;
    margin-right: 8rem;
    margin-bottom: 2rem;
  }

  /* Use flex layout for question-container */
  .question-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
  }

  .question-container .row {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }

  .question-container > .row div[class*='col-'] {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* Hide question character */
  .game-container .question-container .question-holder .question-character {
    display: none;
  }

  /* Make flush */
  .game-container .question-container .question-holder {
    background-color: transparent;
    margin: 0 auto;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.5rem;
  }

  /* Stack question content */
  .game-container .question-container .question-holder .text-holder {
    display: block;
    font-size: unset;
    font-weight: unset;
    line-height: unset;
  }

  /* Aligns audio button with start of text */
  .game-container
    .question-container
    .question-holder
    .text-holder[data-question-audio] {
    display: flex;
    align-items: flex-start;
  }

  /* Undo elementary styles */
  .game-container .question-container .balloon-container {
    position: relative;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    left: unset;
    bottom: unset;
    width: 100%;
    height: 100%;
  }

  /* Make balloons larger */
  .game-container .question-container .balloon-container .balloon-holder {
    width: 150px;
    position: absolute;
    /*
      Set to none by default
      use text-shadow class instead 
    */
    text-shadow: none;
    /* 
      Removed default color for flexibility
      use Bootstrap color classes instead
    */
    color: unset;
    /* 
      Removed default font size for flexibity
      use Bootstrap font size classes instead
    */
    font-size: unset;
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.text-shadow {
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);
    font-weight: bold;
    color: #fff;
  }

  /* If a white balloon, change to black color */
  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-white.text-shadow {
    color: #000;
    text-shadow: none;
  }

  /* If a white or purple balloon is popped, change to white color without text-shadow */
  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-white.text-shadow.popped,
  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-purple.text-shadow.popped {
    color: #fff !important;
    text-shadow: none;
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder
    .balloon-content {
    width: 100%;
    height: 170px;
    position: relative;
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.popped {
    color: unset !important;
    text-shadow: unset !important;
    filter: unset !important;
    -webkit-filter: unset !important;
  }

  /* .game-container
    .question-container
    .balloon-container
    .balloon-holder.text-shadow.popped {
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75) !important;
  } */

  .game-container
    .question-container
    .balloon-container
    .balloon-holder
    .balloon-content
    .correct-icon,
  .game-container
    .question-container
    .balloon-container
    .balloon-holder
    .balloon-content
    .incorrect-icon {
    position: absolute;
    bottom: 10px;
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.audio-only
    .balloon-content
    .correct-icon,
  .game-container
    .question-container
    .balloon-container
    .balloon-holder.audio-only
    .balloon-content
    .incorrect-icon {
    position: relative;
    bottom: unset;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  /* Balloon colors */
  /* Blue theme */
  /* Unique background image */
  .game-container .question-container[data-layout-theme='blue'] {
    background-image: url('./img/game-bg-secondary-blue.jpg');
  }

  .game-container .question-container[data-layout-theme='blue'].completed {
    background-image: var(--confetti-background),
      url('./img/game-bg-secondary-blue.jpg');
    background-size: 100%, cover;
    background-position: top center, center;
  }

  /* Unique popped image to match balloons */
  .game-container
    .question-container[data-layout-theme='blue']
    .balloon-container
    .balloon-holder.popped {
    background-image: url('./img/balloon-blue-theme-popped.png') !important;
  }

  .game-container
    .question-container[data-layout-theme='blue']:not(.five-balloons-layout)
    .balloon-container
    .balloon-holder {
    filter: drop-shadow(3px 10px 4px rgba(0, 0, 0, 0.25));
    -webkit-filter: drop-shadow(3px 10px 4px rgba(0, 0, 0, 0.25));
  }

  .game-container
    .question-container[data-layout-theme='blue']
    .balloon-container
    .balloon-holder.popped {
    filter: none;
    -webkit-filter: none;
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-blue {
    background-image: url('./img/balloon-blue-secondary.png');
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-blue.bang {
    background-image: url('./img/bang.png'),
      url('./img/balloon-blue-secondary.png') !important;
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-dark-blue {
    background-image: url('./img/balloon-dark-blue-secondary.png');
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-dark-blue.bang {
    background-image: url('./img/bang.png'),
      url('./img/balloon-dark-blue-secondary.png') !important;
  }

  /* Red theme */
  /* Unique background image */
  .game-container .question-container[data-layout-theme='red'] {
    background-image: url('./img/game-bg-secondary-red.jpg');
  }

  .game-container .question-container[data-layout-theme='red'].completed {
    background-image: var(--confetti-background),
      url('./img/game-bg-secondary-red.jpg');
    background-size: 100%, cover;
    background-position: top center, center;
  }

  /* Unique popped image to match balloons */
  .game-container
    .question-container[data-layout-theme='red']
    .balloon-container
    .balloon-holder.popped {
    background-image: url('./img/balloon-red-theme-popped.png') !important;
  }

  .game-container
    .question-container[data-layout-theme='red']:not(.five-balloons-layout)
    .balloon-container
    .balloon-holder {
    filter: drop-shadow(3px 10px 4px rgba(0, 0, 0, 0.25));
    -webkit-filter: drop-shadow(3px 10px 4px rgba(0, 0, 0, 0.25));
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-red {
    background-image: url('./img/balloon-red-secondary.png');
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-red.bang {
    background-image: url('./img/bang.png'),
      url('./img/balloon-red-secondary.png') !important;
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-white {
    background-image: url('./img/balloon-white-secondary.png');
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-white.bang {
    background-image: url('./img/bang.png'),
      url('./img/balloon-white-secondary.png') !important;
  }

  /* Purple theme */
  /* Unique background image */
  .game-container .question-container[data-layout-theme='purple'] {
    background-image: url('./img/game-bg-secondary-purple.jpg');
  }

  .game-container .question-container[data-layout-theme='purple'].completed {
    background-image: var(--confetti-background),
      url('./img/game-bg-secondary-purple.jpg');
    background-size: 100%, cover;
    background-position: top center, center;
  }

  /* Unique popped image to match balloons */
  .game-container
    .question-container[data-layout-theme='purple']
    .balloon-container
    .balloon-holder.popped {
    background-image: url('./img/balloon-purple-theme-popped.png') !important;
  }

  .game-container
    .question-container[data-layout-theme='purple']:not(.five-balloons-layout)
    .balloon-container
    .balloon-holder {
    filter: drop-shadow(3px 10px 4px rgba(0, 0, 0, 0.25));
    -webkit-filter: drop-shadow(3px 10px 4px rgba(0, 0, 0, 0.25));
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-purple {
    background-image: url('./img/balloon-purple-secondary.png');
  }

  .game-container
    .question-container
    .balloon-container
    .balloon-holder.balloon-purple.bang {
    background-image: url('./img/bang.png'),
      url('./img/balloon-purple-secondary.png') !important;
  }

  /* White theme */
  /* Unique background image */
  .game-container .question-container[data-layout-theme='white'] {
    background-image: url('./img/game-bg-secondary-white.jpg');
  }

  .game-container .question-container[data-layout-theme='white'].completed {
    background-image: var(--confetti-background),
      url('./img/game-bg-secondary-white.jpg');
    background-size: 100%, cover;
    background-position: top center, center;
  }

  .game-container
    .question-container[data-layout-theme='white']:not(.five-balloons-layout)
    .balloon-container
    .balloon-holder {
    filter: drop-shadow(3px 10px 3px rgba(0, 0, 0, 0.35));
    -webkit-filter: drop-shadow(3px 10px 3px rgba(0, 0, 0, 0.35));
  }

  /* Unique popped image to match balloons */
  .game-container
    .question-container[data-layout-theme='white']
    .balloon-container
    .balloon-holder.popped {
    background-image: url('./img/balloon-white-theme-popped.png') !important;
  }

  /* Unique popped image to match balloons */
  .game-container
    .question-container[data-layout-theme='white']
    .balloon-container
    .balloon-holder.popped {
    background-image: url('./img/balloon-white-theme-popped.png') !important;
  }

  .game-container
    .question-container[data-layout-theme='white']
    .balloon-container
    .balloon-holder {
    filter: drop-shadow(3px 10px 4px rgba(0, 0, 0, 0.25));
    -webkit-filter: drop-shadow(3px 10px 4px rgba(0, 0, 0, 0.25));
  }

  /* Balloon positioning */
  .question-container .balloon-container .balloon-holder:nth-child(1) {
    z-index: 1;
    top: 40px;
    left: 25px;
  }

  .question-container .balloon-container .balloon-holder:nth-child(2) {
    z-index: 2;
    top: 10px;
    left: 240px;
  }

  .question-container .balloon-container .balloon-holder:nth-child(3) {
    z-index: 3;
    top: 19px;
    left: unset;
    right: 159px;
  }

  .question-container .balloon-container .balloon-holder:nth-child(4) {
    z-index: 4;
    top: unset;
    left: unset;
    bottom: 0px;
    right: 243px;
  }

  .question-container .balloon-container .balloon-holder:nth-child(5) {
    z-index: 5;
    top: 95px;
    right: 12px;
    left: unset;
  }

  .question-container .balloon-container .balloon-holder:nth-child(6) {
    z-index: 6;
    top: unset;
    left: 120px;
    bottom: -20px;
  }

  .question-container .balloon-container .balloon-holder:nth-child(7) {
    z-index: 7;
    top: unset;
    bottom: -180px;
    left: 213px;
  }

  .question-container .balloon-container .balloon-holder:nth-child(8) {
    z-index: 8;
    top: unset;
    left: unset;
    bottom: -195px;
    right: 189px;
  }

  .question-container .balloon-container .balloon-holder:nth-child(9) {
    z-index: 9;
    top: 370px;
    left: 5px;
  }

  .question-container .balloon-container .balloon-holder:nth-child(10) {
    z-index: 10;
    top: 295px;
    left: 520px;
  }

  /* Five balloons layout */
  .question-container.five-balloons-layout
    .balloon-container
    .balloon-holder:nth-child(1) {
    z-index: 1;
    top: 15px;
    left: 25px;
  }

  .question-container.five-balloons-layout
    .balloon-container
    .balloon-holder:nth-child(2) {
    z-index: 2;
    top: 20px;
    left: unset;
    right: 90px;
  }

  .question-container.five-balloons-layout
    .balloon-container
    .balloon-holder:nth-child(3) {
    z-index: 3;
    top: 175px;
    left: unset;
    right: 288px;
  }

  .question-container.five-balloons-layout
    .balloon-container
    .balloon-holder:nth-child(4) {
    z-index: 4;
    top: unset;
    left: 5px;
    bottom: -215px;
    right: unset;
  }

  .question-container.five-balloons-layout
    .balloon-container
    .balloon-holder:nth-child(5) {
    z-index: 5;
    top: unset;
    right: 55px;
    bottom: -210px;
    left: unset;
  }

  .game-container
    .question-container.five-balloons-layout
    .balloon-container
    .balloon-holder {
    width: 210px;
    height: 510px;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));
    -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));
  }

  .game-container
    .question-container.five-balloons-layout
    .balloon-container
    .balloon-holder
    .balloon-content {
    width: 100%;
    height: 257px;
  }

  /* Feedback */
  .game-container .question-container .feedback-container {
    all: unset;
  }

  .game-container .question-container .feedback-container .feedback-content {
    height: auto;
    max-width: auto;
    width: 100%;
    display: block;
    background-color: #a6d6c4;
    border-radius: var(--border-radius);
    text-align: center;
    padding: 1rem;
  }

  @media all and (max-width: 1199px) {
    .game-container .question-container .balloon-container .balloon-holder {
      width: 135px;
    }

    .game-container
      .question-container
      .balloon-container
      .balloon-holder
      .balloon-content {
      height: 155px;
    }

    .game-container
      .question-container
      .balloon-container
      .balloon-holder
      .balloon-content
      .correct-icon,
    .game-container
      .question-container
      .balloon-container
      .balloon-holder
      .balloon-content
      .incorrect-icon {
      bottom: 5px;
    }

    .game-container
      .question-container
      .balloon-container
      .balloon-holder.audio-only
      .balloon-content
      .correct-icon,
    .game-container
      .question-container
      .balloon-container
      .balloon-holder.audio-only
      .balloon-content
      .incorrect-icon {
      bottom: unset;
      width: 45px;
      height: 45px;
      font-size: 1.25rem;
    }

    /* Balloon positioning */
    /* .question-container .balloon-container .balloon-holder:nth-child(n + 2) {
      display: none;
    } */

    .question-container .balloon-container .balloon-holder:nth-child(1) {
      z-index: 1;
      top: 25px;
      left: 10px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(2) {
      z-index: 2;
      top: 10px;
      left: 180px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(3) {
      z-index: 3;
      top: 19px;
      left: unset;
      right: 135px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(4) {
      z-index: 4;
      top: unset;
      left: unset;
      bottom: -45px;
      right: 210px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(5) {
      z-index: 5;
      top: unset;
      left: unset;
      bottom: 10px;
      right: 15px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(6) {
      z-index: 6;
      top: unset;
      left: 100px;
      bottom: -20px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(7) {
      z-index: 7;
      top: unset;
      bottom: -180px;
      left: 160px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(8) {
      z-index: 8;
      top: unset;
      left: unset;
      bottom: -195px;
      right: 148px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(9) {
      z-index: 9;
      top: 280px;
      left: 5px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(10) {
      z-index: 10;
      top: 295px;
      left: 455px;
    }
    /* Five balloons layout */
    .game-container
      .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder {
      width: 185px;
    }

    .game-container
      .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder
      .balloon-content {
      height: 238px;
    }

    .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder:nth-child(1) {
      z-index: 1;
      top: 15px;
      left: 25px;
    }

    .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder:nth-child(2) {
      z-index: 2;
      top: 20px;
      left: unset;
      right: 40px;
    }

    .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder:nth-child(3) {
      z-index: 3;
      top: 145px;
      left: unset;
      right: 215px;
    }

    .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder:nth-child(4) {
      z-index: 4;
      top: unset;
      left: 5px;
      bottom: -260px;
      right: unset;
    }

    .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder:nth-child(5) {
      z-index: 5;
      top: unset;
      right: 20px;
      bottom: -260px;
      left: unset;
    }
    .game-container
      .question-container.question-container.five-balloons-layout
      .balloon-container
      .balloon-holder
      .balloon-content
      .correct-icon,
    .game-container
      .question-container.question-container.five-balloons-layout
      .balloon-container
      .balloon-holder
      .balloon-content
      .incorrect-icon {
      bottom: 18px;
    }
  }

  @media all and (max-width: 991px) {
    .title-screen .start-game-btn {
      margin: unset;
    }

    .game-container .question-container .question-holder {
      padding: 0.5rem;
    }

    .game-container .question-container .balloon-container .balloon-holder {
      width: 110px;
    }

    .game-container
      .question-container
      .balloon-container
      .balloon-holder
      .balloon-content {
      height: 125px;
      font-size: unset;
    }

    .game-container
      .question-container
      .balloon-container
      .balloon-holder
      .balloon-content
      .correct-icon,
    .game-container
      .question-container
      .balloon-container
      .balloon-holder
      .balloon-content
      .incorrect-icon {
      bottom: 3px;
      width: 20px;
      height: 20px;
      font-size: 0.5rem;
    }

    /* Balloon positioning */
    /* .question-container .balloon-container .balloon-holder:nth-child(n + 11) {
      display: none;
    } */

    .question-container .balloon-container .balloon-holder:nth-child(1) {
      z-index: 1;
      top: 10px;
      left: 5px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(2) {
      z-index: 2;
      top: 7px;
      left: 122px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(3) {
      z-index: 3;
      top: 14px;
      left: unset;
      right: 129px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(4) {
      z-index: 4;
      top: unset;
      left: unset;
      bottom: -66px;
      right: 183px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(5) {
      z-index: 5;
      top: unset;
      left: unset;
      bottom: 38px;
      right: 9px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(6) {
      z-index: 6;
      top: unset;
      left: 53px;
      bottom: -68px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(7) {
      z-index: 7;
      top: unset;
      bottom: -185px;
      left: 130px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(8) {
      z-index: 8;
      top: unset;
      left: unset;
      bottom: -177px;
      right: 113px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(9) {
      z-index: 9;
      top: 261px;
      left: 10px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(10) {
      z-index: 10;
      top: 175px;
      left: 351px;
    }

    /* Five balloons layout */
    .game-container
      .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder {
      width: 150px;
      height: 490px;
    }

    .game-container
      .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder
      .balloon-content {
      height: 185px;
    }

    .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder:nth-child(1) {
      z-index: 1;
      top: 10px;
      left: 38px;
    }

    .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder:nth-child(2) {
      z-index: 2;
      top: 10px;
      left: unset;
      right: 50px;
    }

    .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder:nth-child(3) {
      z-index: 3;
      top: 135px;
      left: unset;
      right: 170px;
    }

    .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder:nth-child(4) {
      z-index: 4;
      top: unset;
      left: 10px;
      bottom: -293px;
      right: unset;
    }

    .question-container.five-balloons-layout
      .balloon-container
      .balloon-holder:nth-child(5) {
      z-index: 5;
      top: unset;
      right: 20px;
      bottom: -293px;
      left: unset;
    }

    .game-container
      .question-container.question-container.five-balloons-layout
      .balloon-container
      .balloon-holder
      .balloon-content
      .correct-icon,
    .game-container
      .question-container.question-container.five-balloons-layout
      .balloon-container
      .balloon-holder
      .balloon-content
      .incorrect-icon {
      bottom: 10px;
    }

    /* Final Screen */
    .final-screen-container .final-screen .retry-game-btn {
      margin-right: 4rem;
      margin-bottom: 1rem;
    }
  }

  /* Final size for secondary versions */
  @media all and (max-width: 767px) {
    /* Title Screen */
    .title-screen {
      padding: 0px !important;
    }

    .title-screen .start-game-btn {
      margin-top: 10px;
      margin-right: 10px;
    }

    /* Balloon Positioning */
    .question-container .balloon-container .balloon-holder:nth-child(4) {
      z-index: 4;
      top: unset;
      left: unset;
      bottom: 14px;
      right: 183px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(5) {
      z-index: 5;
      top: unset;
      left: unset;
      bottom: 114px;
      right: 9px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(6) {
      z-index: 6;
      top: unset;
      left: 53px;
      bottom: 7px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(7) {
      z-index: 7;
      top: unset;
      bottom: -105px;
      left: 130px;
    }

    .question-container .balloon-container .balloon-holder:nth-child(8) {
      z-index: 8;
      top: unset;
      left: unset;
      bottom: -106px;
      right: 113px;
    }
  }
}
