.hidden {
  pointer-events: none;
  opacity: 0;
}

.shown {
  pointer-events: auto;
  opacity: 1;
}

.hiddenDown {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.shownUp {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.listOpenedMobile {
  top: 20%;
  width: 80% !important;
  margin-left: -40% !important;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  z-index: 25;
}

.greenText {
  color: #9EBF56;
}

.grayText {
  color: #b4b4b4;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  color: #b4b4b4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p, span, li {
  font-family: 'Righteous', cursive;
}

span {
  font-size: 36px;
  color: #494949;
}

label {
  color: #494949;
}

input, select {
  width: 250px;
  height: 40px;
  background-color: #fff;
  border: none;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  color: #494949;
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #b4b4b4;
}

input:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #b4b4b4;
}

input::-ms-input-placeholder, select::-ms-input-placeholder {
  color: #b4b4b4;
}

input::placeholder, select::placeholder {
  color: #b4b4b4;
}

button, input[type="submit"] {
  width: 300px;
  height: 50px;
  background: #f26522;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 20px;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
  font-family: 'Righteous', cursive;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

button:hover, input[type="submit"]:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

h1 {
  font-family: 'Sacramento', cursive;
  color: #494949;
  font-size: 54px;
  line-height: 60px;
  font-weight: 400;
  z-index: 5;
  text-align: center;
  margin-top: 3%;
  padding-bottom: 8px;
}

@media (max-width: 1024px) {
  h1 {
    margin-top: 6%;
  }
}

@media (max-width: 850px) and (orientation: landscape) {
  h1 {
    line-height: 30px;
    font-size: 30px;
    margin-top: 3%;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  h1 {
    line-height: 30px;
    font-size: 30px;
    margin-top: 10%;
  }
}

@-webkit-keyframes hit {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes hit {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.containerBg {
  width: 100%;
  height: 100vh;
  background-color: rgba(242, 101, 34, 0.4);
  position: relative;
  overflow: hidden;
}

.containerBg .container {
  position: absolute;
  top: 30px;
  left: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background-color: #fff;
  border: 6px solid rgba(242, 101, 34, 0.5);
}

.containerBg .container header {
  text-align: center;
}

.containerBg .container .dataRepresentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8vh;
}

.containerBg .container .dataRepresentation p {
  width: 300px;
  text-align: center;
}

.containerBg .container .dataRepresentation .graphics {
  width: 40vmin;
  height: 40vmin;
  position: relative;
}

.containerBg .container .dataRepresentation .graphics .weatherImg {
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-transition: opacity 1000ms ease-in-out;
  transition: opacity 1000ms ease-in-out;
}

.containerBg .container .dataRepresentation .graphics .bikeImg {
  position: absolute;
  bottom: 0;
  width: 90%;
  margin-left: 5%;
  z-index: 22;
}

.containerBg .container .dataRepresentation .graphics #changableImg {
  z-index: 20;
}

.containerBg .container .startSection {
  position: absolute;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  margin-top: 7vh;
  text-align: center;
}

.containerBg .container .startSection .startListContainer {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.containerBg .container .startSection .startListContainer .startBtnContainer {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 20px 20px 0px 0px;
}

.containerBg .container .startSection .startListContainer .startBtnContainer #startBtn {
  width: 100%;
  font-size: 18px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.containerBg .container .startSection .startListContainer .startBtnContainer #startBtn:hover {
  -webkit-transform: none;
          transform: none;
}

.containerBg .container .startSection .startListContainer .startBtnContainer .startListHandle {
  position: absolute;
  right: 10px;
  top: 10px;
  height: 30px;
  width: 30px;
  border-radius: 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.containerBg .container .startSection .startListContainer .startBtnContainer .startListHandle:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.containerBg .container .startSection .startListContainer .startBtnContainer .startListHandle img {
  position: absolute;
  right: 10px;
  top: 38%;
  width: 10px;
  height: auto;
  color: #fff;
}

.containerBg .container .startSection .startListContainer .list {
  position: relative;
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
  border-radius: 20px;
  z-index: 1;
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}

.containerBg .container .startSection .startListContainer .list li {
  list-style-type: none;
  background-color: rgba(242, 101, 34, 0.07);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #eb4034;
  text-align: center;
  font-size: 18px;
  line-height: 50px;
  border-radius: 20px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.containerBg .container .startSection .startListContainer .list li:hover {
  background-color: rgba(242, 101, 34, 0.2);
}

.containerBg .container .helpBtn {
  position: fixed;
  bottom: 50px;
  left: 50px;
  width: 40px;
  height: 40px;
  background-color: rgba(242, 101, 34, 0.4);
  border-radius: 50%;
  color: #494949;
  z-index: 5;
}

.containerBg .container .result {
  position: absolute;
  bottom: 50px;
  width: 100%;
  font-family: 'Righteous', cursive;
  font-size: 45px;
  z-index: 0;
  -webkit-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.containerBg .modal {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.94);
  border: none;
  padding: 6px;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  z-index: 30;
}

.containerBg .modal .closeX {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.containerBg .modal .closeX:hover {
  -webkit-transform: rotate(180deg) scale(1.2);
          transform: rotate(180deg) scale(1.2);
}

.containerBg .modal h1:nth-child(2) {
  font-family: 'Righteous', cursive;
}

.containerBg .modal p {
  max-width: 60%;
  margin: 40px auto;
  color: #494949;
}

.containerBg .modal button,
.containerBg .modal img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.containerBg .modal button {
  background-color: #fff;
  color: #494949;
}

.containerBg .modal footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

.containerBg .modal footer img {
  width: 80px;
}

.containerBg .modal footer p {
  margin: 15px auto 20px auto;
}

.containerBg .modal label,
.containerBg .modal input,
.containerBg .modal select {
  display: block;
  margin: 20px auto;
}

.containerBg .modal input,
.containerBg .modal select {
  padding-left: 1%;
}

.containerBg .modal .temp,
.containerBg .modal .rain {
  width: 150px;
}

.containerBg .modal #preferencesSubmitBtn {
  margin-top: 80px;
}

@media (max-width: 1280px) and (orientation: landscape) {
  .containerBg .container .dataRepresentation .graphics {
    width: 30vmin;
    height: 30vmin;
  }
  .containerBg .container .startSection {
    width: 250px;
    margin-left: -125px;
  }
  .containerBg .container .startSection .startListContainer .startBtnContainer #startBtn {
    font-size: 15px;
  }
  .containerBg .container .startSection .startListContainer .startBtnContainer .startListHandle {
    right: 0;
  }
  .containerBg .container .startSection .startListContainer .list li {
    font-size: 15px;
  }
  .containerBg .modal h1:first-child {
    display: none;
  }
  .containerBg .modal h1:nth-child(2) {
    font-size: 25px;
    margin-top: 1%;
  }
  .containerBg .modal label {
    font-size: 16px;
  }
  .containerBg .modal img {
    display: none;
  }
  .containerBg .modal #preferencesSubmitBtn {
    margin-top: 40px;
  }
  .containerBg .modal footer {
    display: none;
  }
}

@media (max-width: 1024px) {
  .containerBg .container .dataRepresentation p {
    font-size: 18px;
  }
  .containerBg .container .dataRepresentation span {
    font-size: 25px;
  }
  .containerBg .modal h1:nth-child(2) {
    font-size: 35px;
  }
  .containerBg .modal p {
    max-width: 80%;
    font-size: 16px;
  }
  .containerBg .modal button {
    width: 250px;
  }
  .containerBg .modal #preferencesSubmitBtn {
    margin-top: 40px;
  }
}

@media (max-width: 850px) and (orientation: landscape) {
  .containerBg .container {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
  .containerBg .container header p {
    font-size: 12px;
  }
  .containerBg .container .dataRepresentation p {
    font-size: 14px;
  }
  .containerBg .container .dataRepresentation span {
    font-size: 20px;
  }
  .containerBg .container .startSection {
    width: 250px;
    margin-left: -125px;
  }
  .containerBg .container .startSection .startListContainer .startBtnContainer #startBtn {
    height: 40px;
    font-size: 13px;
  }
  .containerBg .container .startSection .startListContainer .startBtnContainer .startListHandle {
    top: 5px;
  }
  .containerBg .container .startSection .startListContainer .list {
    bottom: 40px;
  }
  .containerBg .container .startSection .startListContainer .list li {
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .containerBg .container .helpBtn {
    bottom: 35px;
    left: 35px;
  }
  .containerBg .container .result {
    font-size: 22px;
    bottom: 30%;
    left: 30%;
  }
  .containerBg .modal {
    padding-bottom: 30px;
    overflow-y: auto;
  }
  .containerBg .modal h1:nth-child(2) {
    font-size: 20px;
  }
  .containerBg .modal #preferencesSubmitBtn {
    width: 180px;
    height: 40px;
  }
  .containerBg .modal footer {
    display: none;
  }
}

@media (max-width: 850px) and (orientation: portrait) {
  .containerBg .container {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .containerBg .container header p {
    font-size: 13px;
  }
  .containerBg .container .dataRepresentation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .containerBg .container .dataRepresentation .graphics,
  .containerBg .container .dataRepresentation .temp,
  .containerBg .container .dataRepresentation .rain {
    margin-top: 20px;
  }
  .containerBg .container .dataRepresentation .graphics {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 50vmin;
    height: 50vmin;
    margin-top: 0;
  }
  .containerBg .container .dataRepresentation .temp {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .containerBg .container .dataRepresentation .rain {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .containerBg .container .startSection {
    width: 250px;
    margin-left: -125px;
  }
  .containerBg .container .startSection .startListContainer .startBtnContainer #startBtn {
    height: 40px;
    font-size: 14px;
  }
  .containerBg .container .startSection .startListContainer .startBtnContainer .startListHandle {
    top: 5px;
  }
  .containerBg .container .startSection .startListContainer .list {
    bottom: 40px;
  }
  .containerBg .container .startSection .startListContainer .list li {
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .containerBg .container .helpBtn {
    width: 30px;
    height: 30px;
    bottom: 30px;
    left: 30px;
  }
  .containerBg .container .result {
    font-size: 35px;
  }
  .containerBg .modal {
    padding-bottom: 30px;
    overflow-y: auto;
  }
  .containerBg .modal .closeX {
    top: 10px;
    right: 10px;
  }
  .containerBg .modal h1:nth-child(2),
  .containerBg .modal span {
    font-size: 25px;
  }
  .containerBg .modal #preferencesSubmitBtn {
    width: 180px;
    height: 40px;
  }
  .containerBg .modal footer {
    display: none;
  }
}

@media (max-width: 850px) and (max-height: 650px) {
  .containerBg .container .startSection .startListContainer .list li {
    background-color: #fff;
  }
}
/*# sourceMappingURL=index.css.map */