/* background layout */

.content-wrapper,
.menu-wrapper {
  width: 100%;
  padding: 0px 15px;
  margin-bottom: 0px;
}

.menu-wrapper {
  justify-content: center;
}

body {
  letter-spacing: -1px;
}

.menu,
.content {
  background-color: #00d3fa;
  color: white;
}

.menu {
  text-shadow: 0 4px 0 #0000000f;
  min-height: 122px;
}

.content {
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.content.game-active {
  height: fit-content;
  min-height: calc(100vh - 100px);
}

.links-wrapper > * {
  /* font-weight: bold; */
  /* text-shadow: none; */
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-primary {
  font-size: 18px;
  border-radius: 140px;
}

#search-btn {
  background-color: #96d738;
  width: auto;
  border-radius: 5px;
  padding: 10px;
  height: auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.button-row .btn-primary {
  margin-left: 50px;
  min-width: 175px;
  width: 175px;
  margin-top: 0px;
  margin-bottom: 30px;
  margin-right: 50px;
}

.button-row > .btn-primary:first-child {
  margin-top: 15px;
}

/* .button-row .btn-primary#assign-btn {
  margin-top: 0px;
} */

/* screen flow, transitions */

.screen {
  transition: all 0.5s ease-in-out;
  transform: translateY(100%);
  opacity: 0;
}

.screen.active {
  transform: translateY(0%);
  opacity: 1;
  /* transition: all 0.5s ease-in-out; */
}

#intro-screen .warning {
  position: relative;
}

#preview-screen .btn-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 80%;
}

.preview-restart {
  background-color: #ff9800;
  border-radius: 8px;
  padding: 10px;
  box-shadow: inset 0px -2.5px 0px 0px #0000001f, 0px 3px 8px #0000001f;
  /* align-items: end; */
  /* width: 80%; */
  /* text-align: right; */
  margin-right: 10px;
}

.preview-restart:active {
  box-shadow: inset 0 5px 0 0 rgba(0, 0, 0, 0.03), 0 3px 8px rgba(0, 0, 0, 0.09) !important;
}

/* #game-screen.active {
  height: calc(100vh - 170px);
  max-height: calc(100vh - 170px);
} */

#result-info {
  width: 100%;
  /* height: 200px; */
  display: none;
  height: 100%;
}

#result-info.active {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

h2 {
  text-align: center;
  text-decoration: underline;
}

h3 {
  text-decoration: underline;
}

h3,
h4 {
  margin: 15px 0px;
  text-align: center;
}

.select-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

select {
  /* styling */
  height: 50px;
  margin: 20px;
  background-color: #fff;
  border-width: 0px;
  border-color: #f1f1f1;
  border-radius: 8px;
  border-style: solid;
  /* padding: 10px 20px; */
  color: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -6px 0 #e0e0e0, 0 3px 13px #0000001f;
  /* border-radius: 4px; */
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  cursor: pointer;
  -webkit-appearance: none;

  /* make arrow using CSS */
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px), calc(100% - 2em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  max-width: 400px;
}

select:focus {
  outline: none;
}

.warning-select {
  border: 2px solid red;
}

.warning {
  width: 100%;
  /* position: absolute; */
  display: block;
  font-size: 1rem;
  margin: 0px;
  text-align: center;
}

.pr-custom .warning {
  position: relative;
  /* top: 20px; */
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

/* instructions screen (and custom list info) */
.list-info,
.instructions {
  /* margin: 15px; */
  background-color: #fff;
  border-width: 0px;
  border-color: #f1f1f1;
  border-radius: 8px;
  border-style: solid;
  color: rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 -6px 0 #e0e0e0, 0 3px 13px #0000001f;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  font: inherit;
  text-shadow: none;
  /*   line-height: 1.5em; */
  /*   padding: 0.5em 3.5em 0.5em 1em;   */
  /*   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  padding: 15px;
  max-width: 400px;
  margin: 15px auto;
}

.list-info {
  margin-top: 30px;
}

.list-info span {
  font-weight: lighter;
}

.instructions ul {
  margin-right: 10px;
}

.options-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.options-header {
  display: none;
  font-weight: bold;
}

.options-header.active {
  display: block;
}

.options-select-container {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 4px #0000001c;
  width: fit-content;
  border-radius: 8px;
  background-color: white;
  /* z-index: 2; */
}

.options-select-container > * {
  /* border-left: 2px solid #00d3fa;
  border-top: 2px solid #00d3fa;
  border-bottom: 2px solid #00d3fa; */
  border: none;
  /* font-size: 20px; */
  /* padding-top: 15px; */
  /* padding-bottom: 15px; */
  /* padding-left: 15px; */
  padding: 15px;
  color: rgba(0, 0, 0, 0.4);
  min-width: 100px;
  box-shadow: inset 0 -4px 0 0 #0000002b;
  text-align: center;
  /* line-height: 40px; */
  /* margin: 10px 0px; */
  border-right: 0.5px solid rgba(0, 0, 0, 0.4);
}

.options-select-container > *:first-child {
  border-radius: 8px 0px 0px 8px;
}

.options-select-container > *:last-child {
  border-right: 0px;
  border-radius: 0px 8px 8px 0px;
}

/* options-select-container button:last-child {
  border-right: 2px solid #00d3fa;
} */

/* .options-select-container button:hover {
  color: white;
  background-color: #00d3fa;
} */

.options-select-container > *.active {
  /* border-radius: 40px; */
  color: white;
  background-color: #96d738;
  /* border-collapse: collapse; */
}

/* .options-select-container button.active:hover {
  color: white;
} */

/* game-screen */

.header-wrapper {
  width: 100%;
  /* position: relative; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-container {
  /*   text-align: center; */
  font-size: 1.75rem;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  /*   justify-content: space-between; */
  align-items: center;
  margin-bottom: 15px;
}

.fa-heart {
  color: red;
}

.fa-dizzy {
  color: grey;
}

.game-restart {
  font-size: 0.8em;
  position: absolute;
  right: -5px;
  top: 10px;
}

#sentence-container {
  /* margin: auto auto; */
  /* height: 20vh; */
  max-height: 30vh;
  overflow-y: auto;
  min-height: 13vh;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  /* margin-top: 15px; */
}

.sentence-wrapper {
  margin: auto;
}

.sentence {
  font-size: 2rem;
  text-align: center;
  padding-bottom: 10px;
}

.subtext {
  text-align: center;
}

/* listening mode specific css */
#question-audio.hidden {
  display: none;
}

#question-audio .fa-female,
#question-audio .fa-male {
  font-size: 35px;
  margin-right: 5px;
}

#question-audio .fa-volume-up {
  padding: 10px;
  border-radius: 50%;
  background: white;
  color: rgba(0, 0, 0, 0.5);
}

#question-audio .fa-volume-up:hover {
  background-color: rgba(255, 70, 146, 0.75);
}

#sentence-container.lm {
  display: none;
  min-height: 50px;
  /* visibility: hidden; */
}

#sentence-container.lm .sentence {
  font-size: 1.4rem;
  padding-bottom: 0;
}

#sentence-container.lm .subtext {
  font-size: 1.2rem;
}

#sentence-container.lm.active {
  display: block;
}

.glow {
  animation: glow 1000ms ease-out infinite alternate;
}

/* glow effect */
@keyframes glow {
  0% {
    box-shadow: 0 0 0px rgba(255, 70, 146, 0);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 70, 146, 1);
  }
}

#writing-container {
  display: none;
  /* margin: 1rem; */
  height: 115px;
}

#writing-container.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

#writing-container input {
  border-radius: 6px 0px 0px 6px;
  padding: 0px 15px;
  /* border-radius: 4px 0px 0px 4px; */
  height: 100%;
  width: auto;
  border: none;
  flex-basis: 100%;
}

#writing-container button {
  background-color: #ff9800;
  border: none;
  border-radius: 0px 6px 6px 0px;
  flex-basis: 75px;
  height: 100%;
  min-width: 50px;
  color: white;
}

.input-wrapper {
  border: 2px solid #ff9800;
  /* margin: 15px; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 8px;
}

.record-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.record-container.hidden {
  display: none;
}

.record-btn-wrapper {
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .far.fa-stop-circle {
  display: none;
  font-size: 40px;
  transition: all 0.5s;
} */

/* .fas.fa-microphone-slash {
  font-size: 30px;
  display: none;
  transition: all 0.5s;
} */

/* #comparison-text {
  padding: 10px;
  width: 500px;
} */

.game-btn {
  /* display: none; */
  border: none;
  padding: 0;
  border-radius: 100%;
  width: 75px;
  height: 75px;
  font-size: 1.5em;
  color: white;
  padding: 0;
  margin: 20px;
  /* margin: 0; */
  position: relative;
  /* display: inline-block; */
  line-height: 50px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  /* opacity: 0.5; */
  cursor: pointer;
  transition: all 0.5s;
  box-shadow: 0 0.3125rem 1.25rem 0 rgba(0, 0, 0, 0.24);
  background: grey;
}

.game-btn:focus {
  outline: none;
}

.fa-microphone {
  font-size: 30px;
}

.fas.fa-microphone-slash {
  font-size: 30px;
  display: none;
}

#game-btn-start.active .fa-microphone {
  display: inline-block;
}

#game-btn-start.active .fa-microphone {
  display: inline-block;
}

#game-btn-start.active.denied {
  pointer-events: none;
}

#game-btn-start.active.denied .fa-microphone {
  display: none;
}

#game-btn-start.active.denied .fa-microphone-slash {
  display: block;
  color: black;
}

#game-btn-record.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  background: #ff3d7f;
  color: #fff;
  -ms-touch-action: none;
  touch-action: none;
}

#game-btn-record.active.hidden {
  display: none;
}

#game-btn-record:disabled {
  pointer-events: none;
  color: white;
}

.pulse-ring {
  visibility: hidden;
}

#game-btn-record.active .pulse-ring {
  visibility: visible;
  content: "";
  width: 75px;
  height: 75px;
  border: 5px solid #ff3d7f;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  animation: pulsate infinite 2s ease-in-out;
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.4, 1.4);
    opacity: 0;
  }
}

#game-btn-next.active {
  font-size: 1.2em;
  background-color: #ff9800;
  display: inline-block;
}

#game-btn-redo.active {
  font-size: 1.2em;
  background-color: #ff9800;
  display: inline-block;
}

#game-btn-over.active {
  font-size: 1.2em;
  display: inline-block;
  background: grey;
}

#game-btn-start:hover,
#game-btn-next:hover,
#game-btn-over:hover,
#game-btn-redo:hover {
  background-color: rgba(255, 70, 146, 0.75);
  color: white;
  cursor: pointer;
}

.fa-spinner {
  display: none;
  animation: fa-spin 2s linear infinite;
}

.fa-spinner.active {
  display: inline-block;
}

/* #game-btn-start.denied:hover {
  background-color: grey;
  color: initial;
  cursor: default;
} */

.result-container {
  min-height: 120px;
  width: 100%;
  background-color: white;
  /*   height: 50px;
  margin: 20px; */
  background-color: #fff;
  border-width: 0px;
  border-color: #f1f1f1;
  border-radius: 8px;
  border-style: solid;
  /* padding: 10px 20px; */
  color: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -6px 0 #e0e0e0, 0 3px 13px #0000001f;
  /* border-radius: 4px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  /*   line-height: 1.5em; */
  /*   padding: 0.5em 3.5em 0.5em 1em;   */
  /*   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  padding: 15px;
  margin-top: 15px;
}

#record-msg {
  text-align: center;
  /* position: absolute; */
  font-size: 1em;
  margin: 0px;
  font-style: italic;
  /* bottom: -2.5px; */
  /* height: 100%; */
}

#record-msg.denied {
  color: red;
}

.result-text {
  text-align: center;
  padding: 15px;
  /* padding-bottom: 10px; */
  /* overflow-y: scroll; */
  /* font-size: 24px; */
}

.result-score {
  padding-bottom: 15px;
  /* display: block; */
  font-weight: bold;
  font-size: 0.8em;
  /* font-size: 24px; */
  text-align: center;
  text-shadow: none;
}

.score-percent {
  padding: 3px;
}

.score-percent[data-grade="perfect"] {
  background-color: #00ff00;
}

.score-percent[data-grade="good"] {
  background-color: #ffff00;
}

.score-percent[data-grade="okay"] {
  background-color: orange;
}

.score-percent[data-grade="bad"] {
  background-color: red;
}

.fa-volume-up {
  font-size: 20px;
}

.result-confidence {
  /* font-size: 16px; */
  font-style: italic;
}

.result-text span {
  font-size: 0.8em;
  display: inline-block;
  padding: 3px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  /* text-align: center; */
}

#game-controls {
  margin: 20px 0px;
  border: none;
  border-radius: 8px;
  background-color: #96d738;
  box-shadow: inset 0 -4px 0 0 #00000014, 0 3px 4px #0000001c;
}

.translate-text.active {
  /* visibility: visible; */
  display: block;
}

.playback-speed {
  /* */
  padding: 0px 15px;
  justify-content: center;
  display: flex;
  text-align: center;
  font-size: 0.6em;
  align-items: center;
}

.playback-speed input {
  margin-left: 10px;
  width: initial;
  height: initial;
  margin-right: 5px;
}

.controls-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.audio-btn-wrapper {
  /* background: white; */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.audio-btn-container {
  font-size: 1em;
  margin: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fa-female,
.fa-male,
.fa-user {
  color: #ff9800;
}

.fa-female,
.fa-male {
  font-size: 1.2em;
}

.fa-user {
  /* font-size: 0.9em; */
}

.fa-volume-up {
  margin-left: 5px;
  /* margin-right: 15px; */
}

.translate-btn {
  margin: 10px 15px;
  font-size: 1.5rem;
}

.translate-container {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.translate-text {
  display: none;
  color: rgba(0, 0, 0, 0.75);
  font-size: 0.75em;
  /* visibility: hidden; */
  font-family: "Courier New";
  padding: 5px;
}

.match {
  background-color: green;
  color: white;
}

.no-match {
  background-color: red;
  color: white;
}

.tooltip .popuptext {
  color: rgba(0, 0, 0, 0.75);
  background-color: white;
  box-shadow: 0 0.3125rem 1.25rem 0 rgba(0, 0, 0, 0.24);
  width: 200px;
  bottom: 150%;
  margin-left: -150px;
  font-size: 0.8rem;
  z-index: 4;
  font-weight: lighter;
}

.tooltip .popuptext::after {
  display: none;
}

.tooltip .popuptext ul {
  padding-left: 20px;
}

.tooltip .popuptext li {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  text-align: left;
}

.tooltip:hover .popuptext {
  visibility: visible;
}

.popup .assign-info.popuptext {
  font-size: 1rem;
  white-space: break-spaces;
  line-height: 1rem;
}

.fa-info-circle {
  margin-left: 5px;
  color: #96d738;
}

/* end screen */

.stats-container {
  margin: 0px auto;
  width: 250px;
  /* margin: 15px; */
  background-color: #fff;
  border-width: 0px;
  border-color: #f1f1f1;
  border-radius: 8px;
  border-style: solid;
  color: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -6px 0 #e0e0e0, 0 3px 13px #0000001f;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  font: inherit;
  /*   line-height: 1.5em; */
  /*   padding: 0.5em 3.5em 0.5em 1em;   */
  /*   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  padding: 15px;
}

tr > td {
  padding-bottom: 5px;
}

td:first-child {
  font-weight: bold;
}

#form-save {
  position: relative;
}

.end-screen-info {
  /* max-width: 400px; */
  padding: 0px 15px;
}

.end-screen-info h4 {
  margin-top: 1.33em;
  font-size: 1.2em;
}

.end-screen-info p {
  font-size: 1em;
  font-style: italic;
  text-align: center;
}

.input-container {
  max-width: 400px;
  margin-bottom: 10px;
}

#end-btn-save {
  margin-top: 10px;
  /* margin-bottom: 20px; */
}

#end-btn-login {
  margin-bottom: 20px;
}

#end-btn-restart {
  margin-bottom: 20px;
}

#form-save .warning {
  position: relative;
  /* top: 0px; */
}

/* Leaderboard Screen */

#leaderboard-screen h2,
#preview-screen h2 {
  margin-top: 0;
}

.leaderboard-wrapper {
  /* margin-bottom: 30px; */
  border: 2px solid white;
  width: 90%;
  max-width: 650px;
  margin: 20px auto;
  text-align: left;
  border: none;
  border-radius: 8px;
  background-color: #96d738;
  box-shadow: inset 0 -4px 0 0 #00000014, 0 3px 4px #0000001c;
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* transition: all 2s ease-in-out; */
  /* max-height: 200vh; */
  margin-bottom: 40px;
}

.leaderboard {
  /* transition: all 2s ease-in-out; */
  width: 100%;
  table-layout: fixed;
}

.leaderboard th {
  color: rgba(0, 0, 0, 0.6);
  /* padding-top: 10px; */
  padding-bottom: 10px;
  width: 10px;
  /*   font-size: 1.2em; */
}

.leaderboard td {
  /* overflow: hidden; */
  /* max-height: 60px; */
  /* line-height: 60px; */
}

/* only for default PG game, not custom leaderboard */
.leaderboard.default th:nth-child(3),
.leaderboard.default td:nth-child(3) {
  display: none;
}

.default .name-col {
  width: 35%;
}

.default .language-col {
  width: 40%;
}

/* mode-col is the 'third' column after original column is hidden*/
.default .mode-col {
  width: 25%;
}

.default .streak-col {
  width: 0%;
}

.lb-row-info {
  /* text-align: center; */
  max-height: 25px;
  overflow: hidden;
  /* text-overflow: ellipsis;
  white-space: nowrap; */
  margin-right: 10px;
}

/* modal window for browser support msg */
#browser-support-modal.active {
  display: flex;
}

#browser-support-modal .modal-content {
  justify-content: flex-start;
}

.fa-chevron-circle-left {
  align-self: flex-start;
  color: #ff9800;
  font-size: 18px;
}

.back-btn-start-text {
  font-family: "Varela Round", sans-serif;
  font-size: 18px;
  color: #ff9800;
}

.fa-stack {
  margin: 30px;
  position: relative;
}

#browser-support-modal .fas.fa-circle {
  top: 15px;
  left: 5px;
  position: absolute;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.75);
}

#browser-support-modal .fas.fa-exclamation-triangle {
  /* background-color: rgba(0,0,0,.75); */
  color: rgba(255, 213, 43, 1);
  font-size: 80px;
}
/*  CUSTOM LIST PAGE CSS, throwing this in here for now */

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.modal-icon {
  color: #96d738;
  font-size: 3rem;
  text-align: center;
  padding-bottom: 10px;
}

.settings-container {
  grid-area: settings;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  /* border-bottom: 0.5px solid lightgrey; */
}

#status-msg {
  color: rgba(0, 0, 0, 0.52);
}

.menu-icons > * {
  margin-left: 20px;
}

.fa-cog {
  color: rgba(0, 0, 0, 0.5);
}

.pr-edit .fa-info-circle {
  border-radius: 50%;
  color: white;
}

.fa-info-circle.glow {
  animation: glow 1000ms ease-out infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 70, 146, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 70, 146, 1);
  }
}

.user-list .label,
.info .label {
  width: 150px;
  text-align: center;
  font-weight: bold;
}

.user-list input,
.info input {
  /* border: 2px solid #ff9800; */
  border-width: 0px;
  color: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -6px 0 #e0e0e0, 0 3px 13px #0000001f;
  border-color: #f1f1f1;
  height: 50px;
  margin: 20px;
  border-radius: 8px;
  padding: 0px 15px;
  /* border-radius: 4px 0px 0px 4px; */
  max-width: 400px;
  /* border: none; */
  flex-basis: 100%;
}

/* search bar */
.search .btn {
  background-color: grey;
}

#create-modal input,
#create-modal select {
  border-width: 1px;
  border-color: #96d738;
}

#assign-modal input,
#assign-modal select {
  border-width: 1px;
  border-color: #96d738;
  min-width: 200px;
}

#assign-modal .flex {
  flex-wrap: wrap;
  /* width: 200px; */
}

#assign-modal .save-btn-container.flex {
  flex-wrap: nowrap;
}

.sentences {
  margin: 0px;
  width: 80%;
  /* --sentence-display-width: 80%; */
}

.sentence-wrapper input {
  border: none;
  background-color: #00d3fa;
  color: white;
  border-bottom: 2px solid white;
  border-radius: 0px;
  height: initial;
  padding: 5px;
  margin-left: 10px;
  margin-right: 10px;
}

.sentences input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.sentences input:focus {
  outline: none;
}

.sentence-extra-wrapper {
  justify-content: flex-end;
}

.subtext-wrapper {
  font-size: 0.8em;
  border: none;
  background-color: #96d738;
  display: flex;
  align-items: center;
  padding: 5px;
  margin-top: 5px;
  margin-left: 10px;
  margin-right: 40px;
  border-radius: 8px;
  width: 80%;
}

.subtext-wrapper > span:first-child {
  width: 70px;
}

.subtext-wrapper input {
  width: 100%;
  background-color: #96d738;
  border: none;
  color: white;
  height: initial;
  margin-left: 5px;
}

.add-btn-wrapper {
  /* align-content: flex-start; */
  margin-left: 100px;
  width: 80%;
  /* display: flex; */
  justify-content: flex-start;
  align-items: flex-start;
}

.add-line {
  width: 70px;
  height: 30px;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 24px;
  background-color: rgba(0, 0, 0, 0.229);
}

.delete-line {
  text-align: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: white;
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.229);
}

.save-btn-container {
  /* margin: 30px; */
}

.save-btn-container .warning {
  top: 0;
  position: relative;
}

#delete-modal.pr-edit .warning {
  margin-top: 20px;
  position: relative;
}

/*  CUSTOM LIST HOME PAGE CSS, throwing this in here for now */
.menu-btns {
  margin: auto;
  max-width: 400px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.menu-btns > * {
  padding: 10px;
  border-radius: 8px;
}

.pr-home .sentences,
.pr-custom .sentences {
  margin-bottom: 60px;
}

.pr-home .subtext-wrapper,
.pr-custom .subtext-wrapper {
  margin-right: 10px;
}

/* random new css */

#info-score-saved,
#info-signup-promo {
  display: none;
}

#info-score-saved.active,
#info-signup-promo.active {
  display: block;
}

#options-select-container.disabled {
  pointer-events: none;
  opacity: 0.25;
}

/* Responsive design: media queries */
/* BOOTSTRAP breakpoints */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .content-wrapper,
  .menu-wrapper {
    width: 80%;
    /*     margin: 0 auto; */
  }
  .header-wrapper {
    margin-top: 20px;
  }
  .game-restart {
    top: 0px;
    right: 0px;
  }
  .button-row .btn-primary,
  .button-row .btn-primary:first-child {
    margin: 20px;
  }
  .result-container {
    /* height: 160px; */
    min-height: 160px;
    font-size: 26px;
  }
  .result-text span {
    font-size: 26px;
  }
  #game-controls {
    padding: 10px;
  }
  .playback-speed {
    font-size: 1em;
    justify-content: flex-start;
  }
  .controls-btn-wrapper {
    font-size: 1.3em;
  }
  .fa-volume-up {
    margin-left: 10px;
    font-size: 1.2em;
  }
  .translate-btn {
    font-size: 1.4em;
  }
  .translate-text {
    font-size: 1em;
  }
  .end-screen-info {
    max-width: 400px;
    margin: 20px auto;
  }
  .input-container {
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .leaderboard {
    text-align: center;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #assign-modal .flex {
    width: 400px;
  }
  /*   :root {
    font-size: 18px;
  } */
  .content-wrapper,
  .menu-wrapper {
    max-width: 800px;
  }
  .sentence {
    font-size: 3rem;
  }
  .subtext {
    font-size: 2rem;
  }
  .tooltip .popuptext {
    font-size: 1rem;
    width: 350px;
  }
  .leaderboard.default th:nth-child(3),
  .leaderboard.default td:nth-child(3) {
    display: table-cell;
  }
  .default .name-col {
    width: 35%;
  }
  .default .language-col {
    width: 30%;
  }
  .default .mode-col {
    width: 20%;
  }
  .default .streak-col {
    width: 15%;
  }
}
