body {
  font-family: "Roboto", sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__input {
  display: flex;
  align-items: center;
  width: 400px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid #2b2c2e;
  padding-left: 5px;
}
.header__input input {
  height: 30px;
  border: none;
  outline: none;
  padding: 0 0 0 10px;
  font-size: 1em;
}
.header__logo img {
  width: 200px;
  height: auto;
}
.header .navbar__menu {
  display: flex;
  list-style: none;
}
.header .navbar__menu li {
  margin: 5px;
}
.header .navbar__menu a {
  color: #2b2c2e;
  text-decoration: none;
}
.header .navbar__menu a i {
  font-size: 30px;
}
.header .navbar__menu ul {
  background-color: red;
  padding: 0;
}
.header .navbar .carrito {
  border: 1px solid black;
  width: 300px;
  position: absolute;
  left: -280px;
  top: 17px;
  background-color: white;
  display: none;
  padding: 10px 5px 10px 0;
  border-radius: 5px;
}
.header .navbar .carrito .table {
  width: 100%;
  padding: 10px;
  text-align: center;
}
.header .navbar .carrito .table td a {
  margin-left: 5px;
  color: red;
  font-size: 1.3em;
}
.header .navbar .carrito__footer {
  display: flex;
  justify-content: center;
}
.header .navbar .carrito #vaciar-carrito {
  background-color: red;
  color: white;
  padding: 10px;
  border-radius: 3px;
}
.header .navbar .carrito #procesar-pedido {
  background-color: green;
  color: white;
  padding: 10px;
  margin-left: 10px;
  border-radius: 3px;
}
.header .navbar__menu li:nth-of-type(1) {
  position: relative;
}
.header .navbar__menu li:nth-of-type(1):hover .carrito {
  display: block;
}

@media (max-width: 767px) {
  .header__input {
    display: none;
  }
}
.content {
  display: flex;
}
.content .menu {
  width: 200px;
  text-align: center;
}
.content .menu ul {
  list-style: none;
  padding: 0;
}
.content .menu ul li {
  margin: 10px 0;
}
.content .menu ul li a {
  color: black;
}
.content .menu h3 {
  padding-bottom: 5px;
  border-bottom: 1px solid black;
}
.content .products {
  width: 100%;
}
.content .products__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  margin: 0 30px 30px 30px;
}

.item {
  text-align: center;
  padding: 0 0 20px 0;
  border: 1px solid gray;
  border-radius: 5px;
}
.item img {
  max-width: 100%;
  height: auto;
}
.item p {
  font-size: 1.5em;
}
.item a {
  background-color: #042a46;
  color: white;
  width: 100%;
  padding: 10px 50px;
  font-weight: 900;
  border-radius: 5px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .content .menu {
    display: none;
  }
  .content .products__items {
    grid-template-columns: 1fr;
  }

  main .container {
    width: 100%;
  }

  #procesar-pago table thead th {
    text-align: center;
    font-size: 1em;
    padding: 0 11px;
  }
  #procesar-pago table thead th:nth-of-type(1) {
    padding-right: 35px;
    text-align: center;
  }
  #procesar-pago table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
    border-bottom: 1px solid #ddd;
    font-size: 0.8em;
    text-align: center;
  }
}
.footer {
  display: grid;
  grid-template-columns: repeat(3, auto);
  background-color: #042a46;
  font-weight: 300;
  color: white;
  justify-content: space-around;
  font-size: 0.8em;
}
.footer li {
  margin: 5px 0;
}
.footer li i {
  margin-right: 3px;
}
.footer a {
  color: white;
}
.footer__contact {
  grid-column: 1;
}
.footer__tienda {
  grid-column: 2;
}
.footer__social {
  grid-column: 3;
}
.footer__by {
  grid-column: 1/-1;
  text-align: center;
}

@media (max-width: 767px) {
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__contact {
    grid-column: 1;
  }
  .footer__tienda {
    grid-column: 1;
  }
  .footer__social {
    grid-column: 1;
  }
}
.container {
  width: 70%;
  margin: auto;
}
.container .compra__titulo {
  text-align: center;
}
.container .compra .form__cliente {
  margin: 10px 0;
}
.container .compra .form__email {
  margin: 15px 0 40px 0;
}
.container .compra .form input {
  width: 70%;
  height: 30px;
  margin-left: 10px;
}
.container .compra .form__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.container .compra .form__btn--volver a {
  color: white;
  padding: 10px;
  background-color: blue;
  margin-right: 20px;
  border-radius: 5px;
  margin-right: 20px;
  border-radius: 5px;
  box-shadow: 1px 1px 3px 1px black;
}
.container .compra .form__btn--comprar button {
  background-color: green;
  color: white;
  padding: 10px;
  font-size: 1em;
  font-weight: 600;
  box-shadow: 1px 1px 3px 1px black;
  border: none;
}
.container .compra__tabla--tabla tr {
  text-align: center;
}
.container .compra__tabla--tabla th {
  padding: 0 30px;
}
.container .compra__tabla--tabla a {
  color: red;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.9s ease-in;
  opacity: 0;
  visibility: hidden;
}
.overlay .modal {
  border: 1px solid black;
  color: white;
  width: 300px;
  animation: modalIn 0.8s forwards;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  font-family: Arial, Helvetica, sans-serif;
}
.overlay .modal .cerrar {
  color: white;
  position: relative;
  float: right;
}
.overlay .modal .btn {
  padding: 5px 10px;
  background-color: yellowgreen;
  color: white;
  border: none;
  box-shadow: inset 0 -0.2em rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  outline: 0;
  cursor: pointer;
  transition: 0.2s;
  will-change: transform;
}
.overlay .modal-carrito {
  background-color: #18255f;
}
.overlay .modal-producto {
  background-color: red;
}
.overlay .modal-compra {
  background-color: red;
}
.overlay .modal-form {
  background-color: #18255f;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@keyframes modalIn {
  0% {
    transform: translateY(-3000px);
  }
  60% {
    transform: translateY(25px);
  }
  75% {
    transform: translateY(-10px);
  }
  90% {
    transform: translateY(5px);
  }
}
@keyframes modalOut {
  0% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateY(25px);
  }
  100% {
    transform: translateY(-3000px);
  }
}

/*# sourceMappingURL=style.css.map */
