@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

body {
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #282828;
  touch-action: manipulation;
}

@media (max-width: 720px) {
  body {
    font-size: 1.3em;
  }
}

@media (max-width: 500px) {
  body {
    font-size: 1em;
  }
}

.right {
  text-align: right;
}


header {
  background-color: #282828;
  height: 50px;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  color: #ffffff;
  line-height: 50px;
  font-weight: 500;
  z-index: 10000;
  display: none;
}
#cart {
  float: right;
  padding-right: 20px;
}

.logo {
  text-align: center;
}
.logo img {
  margin: 45px 0px;
  width: 125px;
  margin-left: -150px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1350px) {
  .logo {
    text-align: left;
  }
  .logo img {
    margin: 45px 0px;
    width: 125px;
    margin-left: -150px;
  }
}

.hero {
  font-size: 2em;
}
.hero img {
  max-width: 100%;
}
@media (max-width: 1350px) {
  .hero {
    text-align: center;
  }
  .hero img {
    margin-left: -7%;
  }
  .slogan {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .hero img {
    margin-left: -10%;
  }
}


.hero .text {
  font-weight: 100;
  margin-top: 23px;
}
.hero .price {
  font-size: 0.9em;
  font-weight: 500;
  margin: 15px 0px;
}
.hero .more {
  font-size: 0.8em;
  font-weight: 300;
}
.hero span {
  text-decoration: underline;
  cursor: pointer;
}

.specifications {
  font-weight: 300;
  font-size: 1.3em;
  line-height: 1.7em;
  display: none;
}
.specifications img {
  max-width: 90%;
}
.specifications .question {
  font-weight: 400;
  margin-top: 30px;
}




.slogan {
  margin-top: 90px;
  margin-bottom: 120px;
  font-size: 2em;
  font-weight: 100;
}

.heading {
  padding: 12px 0px;
  font-size: 1.4em;
  font-weight: 300;
  margin-bottom: 30px;
  margin-top: 60px;
  line-height: 2.1em;
}
.heading span {
  background-color: #282828;
  color: #ffffff;
  padding: 12px;
}
@media (max-width: 600px) {
  .heading {
    margin-bottom: 15px;
  }
}



.selection {
  font-size: 1.3em;
  font-weight: 100;
  margin-top: 20px;
}
.selection.quantity {
  margin-top: 0px;
}
.selection .heading {
  padding: 12px 0px;
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: -15px;
  margin-top: 0px;
}

.selection label {
  font-weight: 300;
}






[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 38px;
    cursor: pointer;
    line-height: 40px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    border: 1px solid #282828;
    border-radius: 100%;
    background: #282828;
}

[type="radio"]:checked:disabled + label:before,
[type="radio"]:not(:checked):disabled  + label:before {
  border: 1px solid #aaaaaa;
  background: #aaaaaa;
}
[type="radio"]:checked:disabled + label,
[type="radio"]:not(:checked):disabled  + label {
  color: #aaaaaa;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 16px;
    height: 16px;
    background: #ffffff;
    position: absolute;
    top: 10px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}