html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
h2 {
  text-transform: uppercase;
  text-align: center;
  margin: 3rem 1rem;
}

ol, ul {
  list-style: none;
}
ul {
  padding-left: 2rem;
}
img {
  max-width: 100%;
  height: auto;
}
section {
  margin: 2rem;
}
body {
  width: 100%;
  font-family: termina,sans-serif;
  margin: 0;
}
#header button {
  display: inline-block;
}
.header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.dropbtn {
  color: black;
  padding: 4px 8px;
  font-size: 16px;
  border: none;
  margin: .5rem;
  padding: .4rem;
  background-color: lightgrey;
  border-radius: 5px;
  border: 1px solid grey;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  right: 7px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #808080;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #808080;}
button {
  margin: .5rem;
  padding: .3rem;
}
.flex-container * {
  display: inline-block;
}
.flex-container {
  display: flex;
  flex-flow: row nowrap;
}
.form input {
  margin-bottom: 1rem;
}
/*<--logged in-->*/
.logged-in {
  float: left;
}

.logged-in {
  display: inline;
}
.black_divider {
  background-color: black;
  width: 100%;
  height: 20px;
}
.header {
  padding: 1rem;
-webkit-box-shadow: 2px 5px 16px 0px #000000, -4px 16px 15px -17px rgba(0,0,0,0);
box-shadow: 2px 5px 16px 0px #000000, -4px 16px 15px -17px rgba(0,0,0,0);
}
.header img {
  max-width: 300px;
  height: auto;
}
#main {
  max-width: 80%;
  margin: 2rem auto;
}
#main p {
  text-transform: uppercase;
}
#main form {
  margin-left: 2rem;
}
#myCanvas {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 922px;
  border: 1px dotted gray;
  height: 136px;
}
.left, .right {
  display: flex;
  flex-flow: row nowrap;
}
.left {
  justify-content: flex-start;
}
.right {
  justify-content: flex-end;
}
/*
#myCanvas > * {
  padding-left: 1rem;
}
*/
.info {
  padding-left: 1rem;
}
.pic {
  border-right: 1px dotted gray;
}
.pic img.logo {
  position: absolute;
  max-width: 25px;
  height: auto;
  margin-top: 1rem;
}
.info h3{
  min-height: 2rem;
}
.info h3, .info p {
  margin: 10px 2px 0 0;
}
.pic {
  padding: 0 1rem;
  height: 136px;
  width: 136px;
  flex-shrink: 0;
}
.pic img {
  max-width: 100%;
  height: auto;
  margin-bottom: -1rem;
}
.price {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}
.price .old {
  text-decoration: line-through;
  margin-bottom: 0;
}

 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.cssanimation {
  animation-duration: 1s;
  animation-fill-mode: both;
  display: inline-block;
}


.zoomInRight { animation-name: zoomInRight }


@keyframes zoomInRight {
    from {
        transform: scale(10) translateX(50%);
        opacity: 0;
    }
}

@media print{
 html,
 body{
  width: 100%;
  margin: 0;
 }
 body div{
  max-width: 100%;
 }
 #print {
  display: none;
 }
}
@media print{@page {size: landscape}}