html, body {
  margin: 0;
  height: 100%;
}

#c {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (max-width: 450px) {
  .parent {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 250px auto 100px auto auto;
        grid-template-rows: 250px auto 100px auto auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .title {
    text-align: left;
    font-weight: 400;
    font-size: 9pt;
    padding-left: 10px;
    font-style: italic;
    font-weight: bold;
  }
  .title span {
    font-size: 9pt;
    font-weight: 800;
    color: #890C58;
    padding-right: 3px;
  }
  .spec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: xx-large;
    font-weight: 800;
    width: 100%;
    padding-top: 15px;
    margin-bottom: 15px;
    min-height: 50px;
  }
  .spec .small {
    font-size: medium;
  }
  .scene-container {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-area: 1 / 2 / 2 / 4;
  }
  .loading {
    width: 100%;
    background-image: url("../img/thecube/load.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .info {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 / 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .info p {
    padding-left: 15px;
    line-height: 20px;
    text-align: left;
  }
  #l_info {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 / 2;
  }
  .story {
    border: 1px;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: 2 / 1 / 3 / 4;
    margin-bottom: 10px;
  }
  .story span {
    font-weight: 800;
    color: #890C58;
  }
  .story p {
    color: #464646;
    font-style: italic;
    font-size: 11pt;
    padding-left: 15px;
    padding-right: 15px;
    text-align: justify;
  }
  .difficulty {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3 / 1 / 4 / 2;
  }
  .time {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3 / 2 / 4 / 3;
  }
  .disoveries {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 3 / 3 / 4 / 4;
  }
  .pieces {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4 / 1 / 5 / 2;
  }
  .printtime {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 4 / 2 / 5 / 3;
  }
  .buildtime {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 4 / 3 / 5 / 4;
  }
  .images {
    margin-top: -5px;
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: 5 / 1 / 6 / 4;
  }
}

@media only screen and (min-width: 450px) {
  .parent {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
    -ms-grid-rows: (auto)[4];
        grid-template-rows: repeat(4, auto);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .title {
    text-align: left;
    font-weight: 400;
    font-size: 9pt;
    padding-left: 10px;
    font-style: italic;
    font-weight: bold;
  }
  .title span {
    font-size: 9pt;
    font-weight: 800;
    color: #890C58;
    padding-right: 3px;
  }
  .spec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: xx-large;
    font-weight: 800;
    width: 100%;
    padding-top: 15px;
    margin-bottom: 15px;
    min-height: 50px;
  }
  .spec .small {
    font-size: medium;
  }
  .spec img {
    width: 100px;
  }
  .scene-container {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 4;
    grid-area: 1 / 3 / 3 / 7;
  }
  .loading {
    width: 100%;
    background-image: url("../img/thecube/load.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .info {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1 / 1 / 2 / 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .info p {
    padding-left: 15px;
    line-height: 20px;
    text-align: left;
  }
  #l_info {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1 / 1 / 2 / 3;
  }
  .story {
    border: 1px;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2 / 1 / 3 / 3;
    margin-bottom: 10px;
  }
  .story span {
    font-weight: 800;
    color: #890C58;
  }
  .story p {
    color: #464646;
    font-style: italic;
    font-size: 11pt;
    padding-left: 15px;
    padding-right: 15px;
    text-align: justify;
  }
  .difficulty {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3 / 1 / 4 / 2;
  }
  .time {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 3 / 2 / 4 / 3;
  }
  .disoveries {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 3 / 3 / 4 / 4;
  }
  .pieces {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-area: 3 / 4 / 4 / 5;
  }
  .printtime {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
    grid-area: 3 / 5 / 4 / 6;
  }
  .buildtime {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 6;
    -ms-grid-column-span: 1;
    grid-area: 3 / 6 / 4 / 7;
  }
  .images {
    margin-top: -5px;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-area: 4 / 1 / 5 / 7;
  }
}
/*# sourceMappingURL=product.css.map */