body {
  margin: 0;
}

* {
  font-family: 'Roboto',sans-serif;
}

.contenedorPrincipal {
  background-color: #16a085;
  height: auto;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contenedorPrincipal .contenedorBlanco {
  width: 90%;
  padding: 20px;
  padding-bottom: 180px;
  background-color: #fff;
  margin: 50px auto 0 auto;
  border-radius: 7px;
  background-image: url("img/bicycle.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0% 250px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -ms-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.contenedorPrincipal .contenedorBlanco .orderHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contenedorPrincipal .contenedorBlanco .orderHead h3 {
  margin: 0;
  font-size: 1.5em;
  font-weight: 700;
}

.contenedorPrincipal .contenedorBlanco .orderHead img {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 100px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
}

.contenedorPrincipal .contenedorBlanco .orderHead img:hover {
  -webkit-box-shadow: 0px 0px 0px 8px #f0f0f0;
  box-shadow: 0px 0px 0px 8px #f0f0f0;
}

.contenedorPrincipal .contenedorBlanco .orderContent > p {
  color: #ccc;
}

.contenedorPrincipal .contenedorBlanco .orderContent .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.1em;
}

.contenedorPrincipal .contenedorBlanco .orderContent .item p {
  color: #000;
  font-weight: bold;
}

.contenedorPrincipal .contenedorBlanco .orderContent .item p:first-child {
  color: #5c5c5c;
}

.contenedorPrincipal .contenedorBlanco .orderContent .item.total p:first-child {
  font-weight: bold;
}

@media (min-width: 768px) {
  .contenedorPrincipal {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contenedorPrincipal .contenedorBlanco {
    width: 600px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 70px 70px 200px 70px;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=styles.css.map */