
/*====MOBILE VERSION==== */

.bodyDL {

}

body {
  font-family: Raleway;
  font-size: 18px;
  margin: 0px; padding: 0px; border: 0px;
  display:grid;
  grid-template-columns: 100vw;
  grid-template-rows: 10vh 80vh 10vh;
}

a {text-decoration:none}

#h3Salmon, #h3Olive, #h3Blue, #h3alert{
  display: contents;
  margin:0;
}

#h3Salmon{color:salmon;}
#h3Olive{color:olive;}
#h3Blue{color:blue;}
#h3alert{color:FireBrick;}

h4{
  display: contents;
}

.header{
  background-color:black;
  grid-column: 1/2;
  grid-row: 1/2;
  border-bottom: 1px solid white;
}

.footer{
  background-color:black;
  grid-column: 1/2;
  grid-row: 3/4;
  border-top: 1px solid white;
}
.diamond{
  position:absolute;
  transform: rotate(45deg);
  width:10vh;
  height:10vh;
  background-color: black;
  margin-left: 10vw;
  margin-top: 0vh;
  z-index: 0;
  transition: 0.5s;
}

.bodyMain{
  margin-top: 3vh;
  margin-left: 5vw;
  margin-right: 5vw;
  overflow: scroll;
}


.headerTitle{
  position:absolute;
  color: white;
  font-size: 6vh;
  width:100vw;
  z-index: 2;
  text-align: center;
}


.stepBoxCont{
  display:grid;
  grid-template-columns: 25vw, 25vw, 25vw, 25vw;
  grid-template-rows: 5vh;
  background-color: aqua;
}
.stepBox{
  grid-row: 1/2;
  text-align: center;
}

#getdatCode, #getDatEmail, #submitForm{
  width:90vw;
  background-color: beige;
  border: 2px solid #627092;
  border-radius: 0px;
  font-size: 30px;
  color: #627092;
}
#getdatCode::selection {
  color: red;
  background: green;
}


.dlItemBOX{
  display:grid;
  grid-template-columns: 35vw, 65vw;
  grid-template-rows: auto;
}

.dlItemBOX_A{
  grid-column: 1 / 2;
  grid-row: 1/2;
}

.dlItemBOX_B{
  grid-column: 2/3;
  grid-row: 1/2;
}

.dlItemImage{
  width: 35vw;
  height: 35vw;
}

a{text-decoration:none; color: steelblue;}
h6{display: inline; margin: 0;color: grey; font-weight: normal;}

@media(min-width:600px){
/*====DESKTOP VERSION==== */

  body {
    display:block;
  }

  .bodyDL {
    display:grid;
    grid-template-columns: auto;
    grid-template-rows: 60px auto 60px;
    color: black;
    overflow: hidden;
    border: 0.1px solid white;
    margin:0px;
    padding:6px;

  }

  #getdatCode, #getDatEmail, #submitForm{
    width: 100%;
  }
  #submitForm{
      width: 250px;
  }

  .bodyMain{
    overflow:hidden;
    display: block;
    text-align: left;
  }

  .diamond{
    width:50px;
    height:50px;
    margin-top: 20px;
  }

  .headerTitle{
    display:block;
    font-size: 40px;
    width:825px;
    height: inherit;
    padding-top:10px;
    text-align: center;

  }

  .dlItemImage{
    width: 250px;
    height: 250px;
  }



}



/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
