* {
  box-sizing: border-box;
}
body {
    background-color: rgb(240, 246, 252);
    font-family: Verdana, serif;
    text-align: center;
}
.container {
    display: grid;
    align-content: start;
    border: 2px solid lightblue;
    border-bottom: 0px;
    margin: auto;
    height: 100%;
    width: 100%;
    min-height: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: 
        'faq'
        'top'
        'span'
        'textwall'
        'imagetext'
        'textimage'
        'products'
        'comp-container'
        'compleft'
        'compright'
        'checkoutSelect'
        'checkoutList'
        'fineprint'
    ;
}
.container div {
    padding: 10px;
    text-align: center;
    margin: auto;
} 
div img {
    max-width: 100%;
}
h1, p {
    margin: 0;
}
button {
    border-radius: 15%;
    display: inline-block;
    background-color: lightcyan;
    text-decoration: none;
    border: 1px solid lightskyblue;
    margin: 3px;
    transition-duration: 0.2s;
    size: 10px;
    padding: 4px 8px;
} 
button img {
    max-height: 12px;
}
a {
    text-decoration: none;
    color: black;
}
button:hover {
    background-color: rgb(253, 255, 255);
    border: 1px solid transparent;
}
.faq {
    grid-column: 2 / span 8;
}
#ans1, #ans2, #ans3 {
    display: none;
}
.top {
    grid-column: span 10;
    text-align: center;
    margin: auto;
    border-bottom: 2px solid lightblue;
    color: rgb(23, 27, 29);
}
.span {
    grid-column: span 10;
    text-align: center;
    margin: auto;
}
.textwall {
    grid-column: 2 / span 8;
    text-align: center;
}
.imagetext {
    grid-column: 2 / span 5;
}
.textimage {
    grid-column: span 3;
}
.galleryimages {
    display: none;
    max-width: 100%;
    width: 100%;
}
.gallery-container {
  max-width: 100%;
  margin: auto;
  width: 100%;
  position: relative;
}
.products {
    grid-column: 3 / span 6;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 40%;
  user-select: none;
  background-color: rgb(69, 111, 129);
}

.next {
  right: -30px;
}

.prev {
  left: -30px;
}

.prev:hover, .next:hover {
  background-color: rgb(34, 34, 65);
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}
.comp-container {
  grid-column: inherit;
  max-width: 100%;
}
.compleft {
    grid-column: 2 / 6;
}
.compright {
    grid-column: 6 / 10;
}
.flex {
    display: flex;
    flex-flow: row wrap;
}
.checkoutSelect {
    min-width: 100%;
    display: flex;
    flex-flow: column wrap;
    grid-column: 3 / span 3;
}
.checkoutSelect div {
    border: 1px solid black;
    border-radius: 3px;
    margin: 1px;
    display: grid;
    grid-template-columns: 2fr auto auto;
    text-align: left;
}
.checkoutSelect div p {
    padding: auto;
    justify-content: center;
}
.checkoutSelect div button {
    max-height: 25px;
}
.checkoutList {
    grid-column: 6 / span 3;
    padding: 0px;
}
#list {
    display: flex;
    flex-direction: column;
    top: 0px;
    min-height: 100%;
    margin: 0px;
    padding: 0px;
}
.checkoutItem {
    display: none;
    margin: 0px;
    padding: 0px;
    align-self: flex-start;
}
.removebutton {
    margin: 0px 10px;
}
.orderbuttons {
    border: 1px solid black;
    border-radius: 5px;
}
.fineprint {
    grid-column: span 10;
    bottom: 0px;
    grid-row: span;
    position: absolute;
    left: 20%;
    right: 20%;
}
.secretCompanyLink {
    text-decoration: underline;
    color: blue;
}
.secretCompanyLink:visited {
    text-decoration: underline;
    color: blue;
}
@media only screen and (orientation: portrait) {
    .imagetext {grid-column: span 10;}
    .textimage {grid-column: span 10;}
    .products {grid-column: span 10;}
    .prev {left: 0px; opacity: 0.9;}
    .next {right: 0px; opacity: 0.9;}
    .compleft {grid-column: 1 / 6;}
    .compright {grid-column: 6 / 11;}
    .faq {grid-column: 1 / span 10;}
    .checkoutSelect {grid-column: 1 / span 5;}
    .checkoutList {grid-column: 6 / span 5;}
}