@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Prosto+One&display=swap");
body {
  font-family: "Noto Sans", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Prosto One", cursive;
}

#bike {
  box-sizing: border-box;
  padding: 1em;
  height: auto;
  width: 100%;
  opacity: 0;
}
#bike svg {
  width: 100%;
  height: auto;
}

.app {
  box-sizing: border-box;
  margin-top: 100px;
}
.app__header {
  background: white;
  z-index: 9999;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.app__header .container {
  display: -webkit-box;
  display: flex;
  height: 100%;
  border-bottom: 3px solid #168232;
}
.app__logo {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.app__logo h1 {
  padding: 0;
  margin: 0;
  color: #168232;
}
.app__navigation {
  display: -webkit-box;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.app__navigation ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 100%;
}
.app__navigation li {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.app__navigation a {
  box-sizing: border-box;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #333;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  font-weight: 900;
}

.container {
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
}

.bike-configurator {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}
.bike-configurator__preview {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
}
.bike-configurator__background {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.bike-configurator__background svg {
  height: auto;
  width: 100%;
}
.bike-configurator__overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.bike-configurator__actions {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  box-sizing: border-box;
  padding: 1em;
}
.bike-configurator__actions .options {
  display: -webkit-box;
  display: flex;
}
.bike-configurator__actions button {
  cursor: pointer;
  background: white;
  border: 0;
  border-radius: 6px;
  box-sizing: border-box;
  padding: 0.5em;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0 0.25em;
  width: 75px;
}
.bike-configurator__actions button .preview {
  height: 20px;
  width: 20px;
  border-radius: 4px;
  background: black;
  margin-bottom: 0.25em;
}
.bike-configurator__actions button .preview--tan {
  background: #c3ac8e;
}
.bike-configurator__actions button .preview--black {
  background: black;
}
.bike-configurator__actions button .preview--cork {
  background: #a07859;
}
.bike-configurator__actions button .preview--green {
  background: #273d28;
}
.bike-configurator__actions button .preview--red {
  background: #bf5349;
}
.bike-configurator__actions button .preview--blue {
  background: #90dae8;
}

@media screen and (min-width: 768px) {
  .bike-configurator {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row;
  }
}
@media screen and (min-width: 1280px) {
  .bike-configurator__actions {
    -webkit-clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%);
            clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%);
  }
}