/* Data/style_game.css */

.content-root {
  max-width: 1280px;
  margin: auto;
  margin-top: 48px;
}

.content {
  max-width: 1280px;
  margin: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 4px;
  color: black;
}

#webgl-container {
  z-index: 0;
  position: relative;
  width: 100%;
}

#webgl-canvas {
  width: 100%;
  height: auto;
  background: #383838;
  display: block;
}

.webgl-desktop {
  width: 100%;
  height: auto;
}

#loading-frame {
  position: absolute;
  top: 38%;
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
}

#loading-logo {
  width: 25%;
  height: 100%;
  background: url('resources/Data/DawdleLogo.png') center no-repeat;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
}

#start-button {
  position: absolute;
  top: -45%;
  cursor: pointer;
  font-size: 2em;
  padding: 12px 24px;
  color: white;
  background-color: rgba(167, 255, 179, 0.425);

  border: 4px solid transparent;
  background-clip: padding-box;

  border-image: url("resources/Data/progress_bar.png") 9 12 12 9 fill / 8px 11px 11px 8px;
  border-image-repeat: repeat;
}

#progress {
  position: relative;
  padding-top: 3%;
  height: 15%;
  width: 25%;
  margin-top: 1%;
  margin-left: auto;
  margin-right: auto;
  visibility: hidden;
}

#progress-bar {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('resources/Data/progress_bar.png') no-repeat center;
  background-size: contain;
}

#progress-fill {
  position: absolute;
  width: 96%;
  height: 50%;
  margin-top: 3%;
  margin-left: 2%;
  background-color: rgba(65, 88, 65, 0.39);
  overflow: hidden;
}

#progress-fillColor {
  position: absolute;
  left: -103%;
  top: 0;
  height: 100%;
  width: 107%;
  background-color: rgb(150, 224, 143);

  mask-image: url('resources/Data/progress_fill.png');
  mask-repeat: repeat-y;
  mask-size: cover;
  mask-position: 0% 100%;

  -webkit-mask-image: url('resources/Data/progress_fill.png');
  -webkit-mask-repeat: repeat-y;
  -webkit-mask-size: cover;
  -webkit-mask-position: 0% 100%;
}

#webgl-footer {
   display: none;
  height: 44px;
}

/* #fullscreen-container {
 
} */

#fullscreen-button {
  cursor: pointer;
  float: right;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.637);

  mask-image: url("resources/Data/fullscreen-button.png");
  mask-size: contain;
  mask-repeat: no-repeat;

  -webkit-mask-image: url("resources/Data/fullscreen-button.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

#fullscreen-label {
  padding-right: 8px;
  font-size: 1.5em;
  float: right;
}

#info {
  background-color: rgba(255, 255, 255, 0.13);
}

#webgl-warning {
  font-size: 1.5em;
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  border-image: url("resources/Data/panel.png") 8 11 11 8 fill / 8px 11px 11px 8px;
  border-image-repeat: repeat;
  padding: 10px;
  display: none;
}

.disclaimer {
  font-size: 0.8em;
}

.desc-section {
  /* margin-bottom: 8px; */
  /* margin-top: 4px; */
  /* margin-bottom: 4px; */
  background-color: rgba(255, 255, 255, 0.288);
  /* padding: 8px; */
  /* padding-top: 2px; */
  border-radius: 8px;
}

.darker{
  /* background-color: var(--darker); */
   border: 2px solid white;
}

ul {
  list-style: none;
  /* padding-left: 2em; */

    width: fit-content;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

li::before {
  content: "■";
  position: relative;
  font-size: 0.5em;
  top: -0.5em;
  left: -1em;
  color: rgba(163, 7, 168, 0.89);
}

ul ul > li::before {
  content: "□";
}


section h3  {
color: rgb(214, 0, 161);

}

section h4 {
color: rgb(56, 139, 74);

}

.desc-section li {
  margin-bottom: 6px;
  line-height: 1em;
  font-weight: 100;
}

.desc-section img{
  width: 100%;
  margin-bottom: -4px;
  
  border-radius: 4px;
}

.feature-row
{
    display: flex;
    flex-direction: row;
    align-items: center;
   
    position: relative;
  }

.feature-row.reverse
{
    flex-direction: row-reverse;
}

.feature-row img
{
    width: 60%;
    border-radius: 4px;
    margin-bottom: 0px;
    display: block;
    /* margin-left: -20px; */
    /* margin-right: -20px; */
}

.feature-text
{
  flex: 1;
  margin: 8px;
  margin-bottom: 4em;
}

