:root {
    --main-bg-color: rgba(0, 0, 0, 0.75);
    --height: 1200px;
    --width: 900px;
    --scale: 1;
    --translateX: 0px;
    --translateY: 0px;
    font-family: sans-serif;
    --button-color: rgb(0, 170, 182);
    --debug-color: red;
    --menu-overlay-bg-color: rgba(27, 45, 53, 0.95);
  }

html * {
  font-family: "Varela Round", "Trebuchet MS", Verdana, sans-serif;
}

.highlight-blue {
  color: rgb(0, 148, 216);
}

body {
    background-color: white;
    height: 100vh;
    width: 100vw;
    padding: 0px;
    margin: 0px;
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

.mk-container {
    border: 0px solid white;
    color: rgb(50, 50, 50);
    transform: scale(var(--scale)) translate(var(--translateX), var(--translateY));
    background-color: var(--main-bg-color);
    height: var(--height);
    width: var(--width);
}
.grid-card {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 75% 12.5% 12.5%;
}

.grid-lesson-unit {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 80% 20%;
}

/*lesson menu content*/
.mk-lesson-unit-menu-overlay-root {
  z-index: 1;
  position: fixed;
  border: 1px solid var(--debug-color);
  transform: scale(var(--scale)) translate(var(--translateX), var(--translateY));
  height: var(--height);
  width: var(--width);
  border-radius: 20px;
}

.mk-lesson-unit-grid-container {
  margin: 50px;
  border-radius: 25px;
  background-color: var(--menu-overlay-bg-color);
  height: 1100px;
  width: 800px;
  display: grid;
  grid-template-columns: 75px 650px 75px;
  grid-template-rows: 100px 900px 100px;
}

.x-out-button {
  height: 60px;
  width: 60px;
  border-radius: 10px;
  margin: 20px 7.5px 7.5px 7.5px;
  background-color: var(--button-color);
  padding: 0px;
  border: 0px;
}

.x-out-button:active {
  background-color: rgb(234, 255, 252);
}

.mk-h1{
  color: rgb(255, 255, 255);
  font-size: 60px;
  font-weight:bold;
}

.mk-h2{
  color: rgb(255, 255, 255);
  font-size: 30px;
}

.mk-border {
  border: 1px solid var(--debug-color);
}

.grid-container-lesson-unit-title {
  border-radius: 10px;
  background-color: rgb(224, 118, 18);
  margin: 10px;
  height: 60px;
  width: 630px;
  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-rows: 100%;
}

.grid-container-lesson-panel-unlocked {
  border-radius: 10px;
  margin: 10px;
  background-color: rgba(26, 33, 34, 0.75);
  height: 110px;
  width: 630px;
  display: grid;
  grid-template-columns: 35% 65%;
  grid-template-rows: 100%;
}

.grid-container-lesson-panel-lock {
  border-radius: 10px;
  background-color: rgba(26, 33, 34, 0.75);
  margin: 10px;
  height: 110px;
  width: 630px;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
}

.grid-item-lesson-panel {
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  padding: 0px;
  height: 110px;
}

.justify-content-left {
  justify-content: left;
}

.justify-content-right {
  justify-content: right;
}

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

.lesson-icon-passed {
  height: 75px;
  width: 200px;
  border-radius: 10px;
  margin: 0px;
  background-color: rgb(0, 170, 182);
  box-shadow: 0px 0px 10px 5px rgb(255, 232, 183)
}

.lesson-icon-unlocked, .lesson-icon-locked {
  height: 75px;
  width: 200px;
  border-radius: 10px;
  margin: 0px;
  background-color: rgb(117, 138, 138);
  border: 0px;
}

.lesson-icon-passed:active, .lesson-icon-unlocked:active, .lesson-icon-locked:active {
  background-color: rgb(234, 255, 252);
}

.skill-test-game-icon-passed {
  height: 60px;
  width: 60px;
  border-radius: 25%;
  margin: 10px;
  background-color: rgb(16, 153, 172);
  box-shadow: 0px 0px 10px 5px rgb(255, 232, 183)
}

.skill-test-game-icon-unlocked, .skill-test-game-icon-locked {
  height: 60px;
  width: 60px;
  border-radius: 25%;
  margin: 10px;
  background-color: rgb(117, 138, 138);
}

.skill-test-game-icon-passed:active, .skill-test-game-icon-unlocked:active, .skill-test-game-icon-locked:active {
  background-color: rgb(234, 255, 252);
}

.card-text {
  color: white;
}

.grid-container {
  height: 100%;
  width: 100%;
  display: grid;
  background-color: white;
  grid-template-columns: 5% 90% 5%;
  grid-template-rows: 5% 5% 10% 40% 12.5% 12.5% 10% 5%;
}

.grid-item {
  border: 1px solid var(--debug-color);
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: left;
  align-content: flex-start;
  padding: 0px;
}

.grid-item-center {
  border: 1px solid var(--debug-color);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  padding: 0px;
}

.mk-instruction-font {
  color: rgb(231, 79, 41);
  font-weight:bold;
}

.mk-button-contact-us {
  border: none;
  background-color:#00a2c2;
  color: white;
  text-decoration: none;
  height: 150px;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 15px;    
  font-size: 48px;
  box-shadow: 0px 5px #2c626e;

}

.mk-button-contact-us:active {
  background-color:rgb(0, 212, 219);
  position: relative;
  top: 5px;
  box-shadow: 0px 0px #888888;
}

.mk-button-game-progression {
  border: none;
  background-color:#00a2c2;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  height: 110px;
  min-width: 220px;

  border-radius: 15px;    
  font-size: 48px;
  box-shadow: 0px 5px #2c626e;
  position: relative;
  top: 0px;

  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

.mk-button-game-progression:active {
  background-color:rgb(0, 212, 219);
  position: relative;
  top: 5px;
  box-shadow: 0px 0px #888888;

  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

.mk-button-circle {
  border: none;
  background-color:#008eaa;
  box-shadow: 0px 5px #2f6b79;
  color: white;
  text-align: center;
  text-decoration: none;
  height: 175px;
  min-width: 175px;

  padding: 5px;
  margin: 5px;
  border-radius: 50%;
  font-size: 32px;
  top: 0px;
  position: relative;
}

.mk-button-circle-locked {
  border: none;
  background-color: rgba(26, 33, 34, 0.75);
  box-shadow: 0px 5px #2f6b79;
  color: white;
  text-align: center;
  text-decoration: none;
  height: 175px;
  min-width: 175px;

  padding: 5px;
  margin: 5px;
  border-radius: 50%;
  font-size: 32px;
  top: 0px;
  position: relative;
}

.mk-button-circle:active {
  background-color:#609eaa;
  box-shadow: 0px 0px #2c626e;
  top: 5px;
  position: relative;
}

.mk-button {
  border: none;
  background-color:#00a2c2;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  height: 60px;
  min-width: 60px;

  padding: 5px;
  margin: 5px;
  border-radius: 10px;    
  font-size: 32px;
  box-shadow: 0px 5px #2c626e;
  position: relative;
  top: 0px;

  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

.mk-button:active {
  background-color:rgb(0, 212, 219);
  position: relative;
  top: 5px;
  box-shadow: 0px 0px #888888;

  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

.health-bar {

  box-sizing: border-box;
  width: 600px;
  height: 36px;
  padding: 8px;
  background: rgb(86, 103, 121);
  border-radius: 10px;
}

.bar {
  background: rgb(255, 174, 35);
  width: 75%;
  height: 20px;
}

.mk-center {
  margin:auto;
  margin-left: auto;
}

.mk-lesson-unit-card {
  border: none;
  color: black;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  height: 60px;
  min-width: 240px;
  min-height: 280px;

  padding: 25px;
  margin: 5px;
  border-radius: 15px;    
  font-size: 32px;
  position: relative;
  top: 0px;
}

.mk-card {
  border: none;
  color: black;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  height: 60px;
  min-width: 240px;
  min-height: 320px;

  padding: 25px;
  margin: 5px;
  border-radius: 15px;    
  font-size: 32px;
  position: relative;
  top: 0px;
}

.mk-card-not-selected {
  background-color:#00a2c2;
  box-shadow: 0px 7.5px #2c626e;
}

.mk-card-is-selected {
  background-color:#ff7300;
  box-shadow: 0px 7.5px #614a4d;
}

.mk-card:active {
  background-color:rgb(0, 212, 219);
  position: relative;
  top: 7.5px;
  box-shadow: 0px 0px #888888;
}

.mk-flex-container {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: space-around;
}

.mk-fit-100 {
  height: 100%;
  width: 100%;
}

.mk-bold-max {
  font-weight: 900;
}

.mk-font-50 {
  font-size: 50px;
}