html {
  position: absolute;
  max-width: 100% !important;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background-color: white;
}

body {
  position: absolute;
  width: calc(100%);
  padding: 0;
  margin: 0;
  top: 0;
}

h4 {
  margin-bottom: 0.1rem;
}

p {
  margin-top: 0;
}

.logo-container {
  position: relative;
  top: 0;
  background-color: white;
  padding-left: 1rem;
  padding-right: 1rem;
  width: fit-content;
  height: 100%;
  border-radius: 0 0 1rem 0rem;
}

.logo {
  position: relative;
  font-family: 'Alvesto Bold', sans-serif;
  font-size: 3rem;
  color: #c72b20;
  width: fit-content;
}

.message_container {
  max-height: 25rem;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  background-color: white;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: black;
  /*border: 0.1rem solid black;*/
}

.message_container--overlay {
  border-radius: 1rem;
  background-color: white;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: orange;
  /*border: 0.1rem solid black;*/
}

.wallpaper--clouds_top {
  position: fixed;
  width: 100%;
  max-width: 60rem;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
}

.content {
  position: relative;
  width: calc(100% - 2rem);
  max-width: 80rem;
  left: 50%;
  transform: translateX(-50%);
}

header {
  position: sticky;
  top: 0;
  height: 6rem;
  padding: 0;
  width: 100%;
  z-index: 999;
}

main {
  position: relative;
}

.message {
  position: relative;
  /*pointer-events: none;*/
  width: calc(100% - 2rem);
  max-width: 78rem;
  left: 50%;
  transform: translateX(-50%);
}

footer {
  position: sticky;
  bottom: 0;
  height: fit-content;
  width: 100%;
  background-color: white;
  overflow-x: scroll;
}

.stack {
  position: relative;
  float: left;
  width: fit-content;
  height: 100%;
}

.vertical_divider {
  position: relative;
  float: left;
  margin-left: 1rem;
  margin-right: 1rem;
  width: 1px;
  background-color: black;
  height: 100%;
}

.vertically_centered {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.flex {
  position: relative;
  display: flex;
}

.wallpaper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  z-index: 0;
}

.show_more--overlay {
  display: block;
  position: absolute;
  background-image: linear-gradient(transparent 0%, white 95%);
  bottom: 0px;
  height: 15rem;
  width: 100%;
  text-align: center;
  line-height: 7.5rem;
}

.show_more--text {
  display: block;
  position: absolute;
  background-color: transparent;
  bottom: 0px;
  height: 2rem;
  width: 100%;
  text-align: center;
  line-height: 2rem;
  cursor: pointer;
}

.bom_grid {
  display: flex;
  flex-direction: row;
  /*grid-template-columns: 1fr 1fr 1fr 1fr;*/
  column-gap: 1rem;
  row-gap: 5rem;
}

.bom_grid--item {
  width: 100%;
  height: auto;
  /*height: fit-content;*/
  left: 1rem;
  background-color: white;
  border-radius: 1rem;
}

.bom-img {
  width: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
  height: 15rem;
  object-fit: contain;
}

.bom-input-row {
  width: max-content;
  margin-left: 50%;
  transform: translateX(-50%);
  height: 3rem;
  line-height: 3rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0;
}

.text_center {
  text-align: center;
  width: 100%;
}

.margin-container-1 {
  position: relative;
  margin-top: 1rem;
  margin-left: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
}

/* input[type=checkbox] #hybrid_option_container {
    -webkit-appearance: none;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-color: red;
    border-radius: 5px;
    border: 3px solid black;
    margin-right: 10px;

}
input[type=checkbox]:checked {
    background-color: lightgreen;
 } */

input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

label {
  cursor: pointer;
  text-indent: -9999px;
  width: 4rem;
  height: 2rem;
  background: grey;
  display: block;
  border-radius: 2rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 1rem;
}

label:after {
  content: '';
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  border-radius: 1.8rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

input:checked + label {
  background: #bada55;
}

input:checked + label:after {
  left: calc(100% - 0.1rem);
  transform: translateX(-100%);
}

label:active:after {
  width: 130px;
}

button {
  position: relative;
  height: 3rem;
  background-color: #c72b20;
  border: none;
  font-size: medium;
  border-radius: 1rem;
  color: white;
  cursor: pointer;
  margin-bottom: 1rem;
  /*bottom: 0;*/
}

.button-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: min-content;
  /*background-color: green;*/
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1 / 1;
  /*row-gap: 1rem;*/
}

.button-grid-item {
  position: relative;
  width: 100%;
  height: 4rem;
  width: 4rem;
  /*background-color: blue;*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.small-grid-item-desktop {
  max-width: 15rem;
}

.input-fix {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  margin-bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
  header {
    height: 4rem;
  }
}

@media only screen and (max-width: 600px) {
  .logo-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 0 0 0.5rem 0rem;
  }
}

@media only screen and (max-width: 600px) {
  .logo {
    font-size: 1.75rem;
  }
}

@media only screen and (max-width: 600px) {
  .message_container {
    max-height: 15rem;
    overflow: hidden;
  }
}

@media only screen and (max-width: 600px) {
  .show_more--overlay {
    display: block;
    position: absolute;
    background-image: linear-gradient(transparent 0%, white 95%);
    bottom: 0px;
    height: 15rem;
    width: 100%;
    text-align: center;
    line-height: 7.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .show_more--text {
    display: block;
    position: absolute;
    background-color: transparent;
    bottom: 0px;
    height: 2rem;
    width: 100%;
    text-align: center;
    line-height: 2rem;
  }
}

@media only screen and (max-width: 600px) {
  .bom_grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

@media only screen and (max-width: 600px) {
  .small-grid-item-desktop {
    max-width: unset;
  }
}

