@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../../fonts/Roboto_Mono/static/RobotoMono-Regular.ttf") format("truetype");
}
:root {
  background-color: #fff;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

header {
  color: #fff;
  background-color: rgba(94, 51, 131, 0.8705882353);
}
header section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header section section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 3.5rem;
}
header section section div:first-child {
  display: flex;
  flex-direction: column;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header section section div:first-child div {
  align-self: center;
}
header section section div:first-child div:first-child img {
  height: 3rem;
  width: auto;
}
header section section div:nth-child(2) div h1 {
  font-size: 1rem;
  text-align: center;
}
header section section div:nth-child(2) div h1 a p {
  padding: 0.2rem 0;
  color: #fff;
}

/* Estilos para pantallas medianas */
@media screen and (min-width: 576px) and (max-width: 991px) {
  header section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
  }
  header section section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  header section section div:first-child div:first-child img {
    height: 4.5rem;
    width: auto;
  }
  header section section div:first-child div:nth-child(2) div h1 {
    font-size: 1.8rem;
  }
}
/* Estilos para pantallas grandes */
@media screen and (min-width: 992px) {
  header {
    width: 100%;
  }
  header section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
  }
  header section section {
    display: flex;
    justify-content: space-evenly;
  }
  header section section div:first-child div:first-child img {
    height: 13vh;
    width: auto;
  }
  header section section div:nth-child(2) div h1 {
    margin: 0rem 3rem;
    font-size: 1.5rem;
    text-align: center;
  }
}
/* Estilos para pantallas pequeñas */
@media screen and (max-width: 575px) {
  .header_position {
    position: fixed;
    z-index: 999;
    bottom: 0%;
    left: 0;
    width: 100vw;
    height: 5rem;
  }
  .header_position section {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .menu ul {
    position: absolute;
    bottom: 5rem;
    left: 0;
    background-color: rgba(94, 51, 131, 0.8705882353);
    width: 100%;
  }
}
/* Estilos para pantallas medianas */
@media all and (min-width: 576px) and (max-width: 991px) {
  .header_position {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100vw;
    height: 5rem;
  }
  .header_position section {
    position: relative;
    height: 100%;
  }
  .menu ul {
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: rgba(94, 51, 131, 0.8705882353);
  }
}
/* Estilos para pantallas grandes */
@media all and (min-width: 992px) {
  .header_position {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100vw;
    height: 20vh;
  }
  .header_position section {
    position: relative;
    height: 100%;
  }
  .header_position section section {
    height: 100%;
  }
  .menu ul {
    position: relative;
    top: 0;
    right: 0;
    background-color: transparent;
  }
}
/* ********** Botón Menu de hamburguesa ********** */
.menu-btn {
  border: 0;
  cursor: pointer;
  background-color: transparent;
}

.menu-btn img {
  fill: transparent;
  height: 1.5rem;
  width: auto;
}

.none {
  display: none;
}

/* ********** Barra de navegación-Menú hamburguesa  ********** */
.menu {
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
}
.menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu ul li {
  width: 100%;
  height: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu ul li:hover {
  background-color: #3ab9c8;
}
.menu ul li a {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  color: #fff;
}
.menu ul li a > div:first-child {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.menu ul li a > div:first-child div img {
  padding-right: 1rem;
  height: 2.3rem;
  width: auto;
}
.menu ul li a > div:nth-child(2) {
  width: 50%;
  height: auto;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 300;
}

.menu.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 576px) and (max-width: 991px) {
  .menu-btn img {
    fill: transparent;
    height: 3rem;
    width: auto;
  }
  .menu ul {
    justify-content: center;
    align-items: center;
  }
  .menu ul li {
    height: 4rem;
    padding: 0.3rem 0rem;
  }
  .menu ul li a {
    border-bottom: 0px;
  }
  .menu ul li a div {
    font-size: 2rem;
    font-weight: 300;
  }
  .menu ul li a div img {
    height: 3rem;
    width: auto;
    margin-right: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .menu-btn {
    display: none;
  }
  .navbar {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .menu {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 1;
    pointer-events: auto;
    height: 100%;
  }
  .menu ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 100%;
  }
  .menu ul:hover {
    background-color: transparent;
  }
  .menu ul li {
    color: transparent;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .menu ul li:hover {
    background-color: #3ab9c8;
  }
  .menu ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 0px;
  }
  .menu ul li a div {
    width: max-content;
    padding: 0vw 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu ul li a div:first-child {
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
  .menu ul li a div:first-child div img {
    height: 5vh;
    width: auto;
  }
  .menu ul li a div:nth-child(2) {
    width: fit-content;
    height: auto;
    text-align: center;
    font-size: 3vh;
    font-weight: 300;
  }
  .menu ul:last-child {
    padding-right: 0;
  }
}
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer section {
  width: 100%;
}
footer section:first-child {
  padding: 1rem;
  background-color: #f6a51e;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
footer section:first-child div:first-child img {
  height: auto;
  width: 5rem;
}
footer section:first-child div:nth-child(2) a {
  font-family: "Roboto";
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0.4rem;
}
footer section:first-child div:last-child {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer section:first-child div:last-child span {
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}
footer section:first-child div:last-child a {
  padding: 0rem 0.3rem;
}
footer section:first-child div:last-child a img {
  height: 1.5rem;
  width: 100%;
}
footer section:nth-child(2) {
  padding: 1rem 0rem;
  background-color: #3ab9c8;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
footer section:nth-child(2) div {
  padding: 0.5rem 0rem 0rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
footer section:nth-child(3) {
  padding: 1rem 2rem;
  background-color: #a8c83f;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
footer section:nth-child(3) div {
  padding: 0.5rem 0rem 0rem;
}
footer section:nth-child(3) div img {
  height: 2rem;
  width: auto;
}

.empty_footer {
  width: 100%;
  height: 5rem;
}

@media all and (min-width: 575px) {
  .empty_footer {
    display: none;
  }
}
/* Estilos para pantallas medianas */
@media screen and (min-width: 576px) and (max-width: 991px) {
  footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer section {
    width: 100%;
  }
  footer section:first-child {
    padding: 0.5rem;
  }
  footer section:first-child div:first-child {
    width: 30%;
  }
  footer section:first-child div:first-child img {
    height: 2.5rem;
    width: auto;
    padding-left: 4rem;
  }
  footer section:first-child div:nth-child(2) a {
    font-size: 2rem;
  }
  footer section:first-child div:last-child {
    width: 30%;
  }
  footer section:first-child div:last-child a {
    padding: 0rem 0.3rem;
  }
  footer section:first-child div:last-child a img {
    height: 1.7rem;
    width: auto;
  }
  footer section:nth-child(2) {
    padding: 0.5rem 0rem;
  }
  footer section:nth-child(2) div {
    padding: 0.5rem 0rem 0rem;
    font-size: 0.8rem;
  }
  footer section:nth-child(3) {
    padding: 0.4rem 2rem;
  }
  footer section:nth-child(3) div {
    padding: 0.5rem 0rem 0rem;
  }
  footer section:nth-child(3) div img {
    height: 1.7rem;
    width: auto;
  }
}
/* Estilos para pantallas grandes */
@media only screen and (min-width: 992px) {
  footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer section {
    width: 100%;
  }
  footer section:first-child {
    padding: 1vh;
  }
  footer section:first-child div:first-child {
    width: 30%;
  }
  footer section:first-child div:first-child img {
    height: 8vh;
    width: auto;
  }
  footer section:first-child div:nth-child(2) a {
    color: #fff;
    font-size: 5vh;
  }
  footer section:first-child div:last-child {
    width: 30%;
  }
  footer section:first-child div:last-child a {
    padding: 0rem 1vw;
  }
  footer section:first-child div:last-child a img {
    height: 5vh;
    width: auto;
  }
  footer section:nth-child(2) {
    padding: 1vh 0rem;
  }
  footer section:nth-child(2) div {
    padding: 1vh 0rem 0rem;
    font-size: 1.8vh;
  }
  footer section:nth-child(3) {
    padding: 1vh 2vh;
  }
  footer section:nth-child(3) div {
    padding: 2vh 0rem 0rem;
  }
  footer section:nth-child(3) div img {
    height: 5vh;
    width: auto;
  }
}
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
}

.carrito_de_compras {
  margin: 5vh 0vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.carrito_de_compras > article {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.carrito_de_compras > article:first-child {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 2vh;
}
.carrito_de_compras > article:first-child h2 {
  font-size: 1.5rem;
  color: #5e3383;
  font-weight: 300;
  text-align: center;
}
.carrito_de_compras > article:nth-child(2) > section {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  text-align: center;
}
.carrito_de_compras > article:nth-child(2) > section:first-child {
  background-color: #5e3383;
  border-color: #000;
  border-style: solid;
  border-width: 0.2rem;
  border-radius: 1rem 1rem 0rem 0rem;
  color: #fff;
  font-weight: 700;
  height: 6rem;
}
.carrito_de_compras > article:nth-child(2) > section:first-child div:first-child {
  width: 20%;
}
.carrito_de_compras > article:nth-child(2) > section:first-child div:nth-child(2) {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.carrito_de_compras > article:nth-child(2) > section:first-child div:nth-child(2) span:first-child {
  font-weight: 700;
}
.carrito_de_compras > article:nth-child(2) > section:first-child div:nth-child(2) span:last-child {
  font-weight: 300;
  font-style: italic;
}
.carrito_de_compras > article:nth-child(2) > section:first-child div:nth-child(3) {
  width: 30%;
  font-size: 2rem;
}
.carrito_de_compras > article:nth-child(2) > section:first-child div:nth-child(4) {
  height: 3rem;
  width: auto;
  fill: #fff;
  margin-right: 2rem;
}
.carrito_de_compras > article:nth-child(2) > section:first-child div:last-child img {
  height: 3rem;
  width: auto;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article {
  width: 100%;
  border-color: #000;
  border-style: solid;
  border-width: 0rem 0.2rem 0.2rem;
  padding: 1rem;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article:nth-child(even) {
  background-color: rgba(94, 51, 131, 0.5843137255);
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article:nth-child(odd) {
  background-color: rgba(94, 51, 131, 0.168627451);
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div {
  padding: 0.5rem 0rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div span {
  padding: 0rem 0.5rem;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div span:first-child {
  width: 50%;
  color: #5e3383;
  font-weight: 700;
  text-align: right;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div span:nth-child(2) {
  width: 50%;
  color: #5e3383;
  font-weight: 300;
  font-style: italic;
  text-align: left;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div:nth-child(7) span:first-child {
  width: 50%;
  color: #5e3383;
  font-weight: 700;
  text-align: right;
  padding-right: 1rem;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div:nth-child(7) span:nth-child(2) {
  width: 5%;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div:nth-child(7) span:nth-child(2) button {
  border: none;
  background-color: transparent;
  color: #5e3383;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  font-size: 2rem;
  cursor: pointer;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div:nth-child(7) span:nth-child(3) {
  width: 5%;
  color: #5e3383;
  font-weight: 700;
  font-style: italic;
  text-align: right;
  font-size: 1.2rem;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div:nth-child(7) span:nth-child(4) {
  width: 25%;
  color: #5e3383;
  font-weight: 300;
  font-style: italic;
  text-align: left;
  font-size: 1.2rem;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div:nth-child(7) span:nth-child(5) {
  width: 5%;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(2) article div:nth-child(7) span:nth-child(5) button {
  border: none;
  background-color: transparent;
  color: #5e3383;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  font-size: 2rem;
  cursor: pointer;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(3) {
  background-color: #3ab7c8;
  height: 6rem;
  border-color: #000;
  border-style: solid;
  border-width: 0rem 0.2rem 0.2rem;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(3) span {
  font-size: 1.5rem;
  font-weight: 700;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(3) span:first-child {
  color: #fff;
}
.carrito_de_compras > article:nth-child(2) > section:nth-child(3) span:last-child {
  color: #dc3545;
}
.carrito_de_compras > article:nth-child(2) > section:last-child {
  background-color: #198754;
  height: 6rem;
  border-color: #000;
  border-style: solid;
  border-width: 0rem 0.2rem 0.2rem;
  border-radius: 0rem 0rem 1rem 1rem;
}
.carrito_de_compras > article:nth-child(2) > section:last-child a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.carrito_de_compras > article:nth-child(2) > section:last-child a span {
  padding: 0rem 1rem;
}
.carrito_de_compras > article:nth-child(2) > section:last-child a span:first-child {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}
.carrito_de_compras > article:nth-child(2) > section:last-child a span:last-child {
  height: 2rem;
  width: auto;
}
.carrito_de_compras > article:last-child {
  padding: 1rem;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem 1rem;
}
.carrito_de_compras > article:last-child > section {
  height: 4rem;
  background-color: #5e3383;
  border-style: none;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: no-wrap;
}
.carrito_de_compras > article:last-child > section div:first-child {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding: 0rem 0.5rem 0rem 1rem;
}
.carrito_de_compras > article:last-child > section div:last-child img {
  height: 2rem;
  width: auto;
  padding: 0rem 1rem 0rem 0.5rem;
}

/* Estilos para pantallas medianas */
@media all and (min-width: 576px) and (max-width: 991px) {
  .carrito_de_compras {
    width: 80vw;
  }
}
/* Estilos para pantallas grandes */
@media all and (min-width: 992px) {
  .carrito_de_compras {
    width: 60vw;
  }
}
.selector_carrito_de_compras {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin: 3vh 0vh 6vh;
}
.selector_carrito_de_compras > article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
}
.selector_carrito_de_compras > article:first-child {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin: 4vh 0vh;
}
.selector_carrito_de_compras > article:first-child h2 {
  font-size: 1.5rem;
  color: #5e3383;
  font-weight: 700;
  text-align: center;
}
.selector_carrito_de_compras > article:first-child h2 span {
  font-style: italic;
  font-weight: 300;
}
.selector_carrito_de_compras > article:nth-child(2) > section:first-child {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-color: #000;
  border-style: solid;
  border-width: 0.2rem;
  border-radius: 1rem 1rem 0rem 0rem;
  background-color: #5e3383;
  width: 100%;
}
.selector_carrito_de_compras > article:nth-child(2) > section:first-child div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0rem;
}
.selector_carrito_de_compras > article:nth-child(2) > section:first-child div:first-child {
  width: 70%;
}
.selector_carrito_de_compras > article:nth-child(2) > section:first-child div:first-child h2 {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
.selector_carrito_de_compras > article:nth-child(2) > section:first-child div:first-child img {
  height: 2.5rem;
  width: auto;
}
.selector_carrito_de_compras > article:nth-child(2) > section:first-child div:last-child {
  width: 30%;
}
.selector_carrito_de_compras > article:nth-child(2) > section:first-child div:last-child img {
  height: 2.5rem;
  width: auto;
}
.selector_carrito_de_compras > article:nth-child(2) > section:last-child {
  padding: 0.5rem 0rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-color: #000;
  border-style: solid;
  border-width: 0rem 0.2rem 0.2rem;
  border-radius: 0rem 0rem 1rem 1rem;
  background-color: #198754;
  width: 100%;
  display: flex;
}
.selector_carrito_de_compras > article:nth-child(2) > section:last-child:hover {
  background-color: #3f8866;
  cursor: pointer;
}
.selector_carrito_de_compras > article:nth-child(2) > section:last-child button {
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.selector_carrito_de_compras > article:nth-child(2) > section:last-child button h2 {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: 0rem 1rem 0rem 0rem;
}
.selector_carrito_de_compras > article:nth-child(2) > section:last-child button img {
  height: 2.5rem;
  width: auto;
}
.selector_carrito_de_compras > article:nth-child(2) > form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:first-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(3), .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(5), .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(7) {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  border-color: #000;
  border-style: solid;
  border-width: 0rem 0.2rem 0.2rem;
  background-color: rgba(94, 51, 131, 0.168627451);
  width: 100%;
  padding: 0.5rem 0rem;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:first-child div:first-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(3) div:first-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(5) div:first-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(7) div:first-child {
  color: #5e3383;
  font-size: 1rem;
  font-weight: 600;
  width: 50%;
  text-align: center;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:first-child div:last-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(3) div:last-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(5) div:last-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(7) div:last-child {
  width: 50%;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:first-child div:last-child select, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(3) div:last-child select, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(5) div:last-child select, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(7) div:last-child select {
  width: 80%;
  padding: 0.3rem;
  border-color: #5e3383;
  border-radius: 0.2rem;
  color: #5e3383;
  font-style: italic;
  outline: none;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:first-child div:last-child select option, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(3) div:last-child select option, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(5) div:last-child select option, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(7) div:last-child select option {
  border-color: #5e3383;
  border-radius: 0.2rem;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:first-child div:last-child select option:hover, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(3) div:last-child select option:hover, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(5) div:last-child select option:hover, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(7) div:last-child select option:hover {
  color: #fff;
  background-color: #5e3383;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(2), .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(4), .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(6) {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  border-color: #000;
  border-style: solid;
  border-width: 0rem 0.2rem 0.2rem;
  background-color: rgba(94, 51, 131, 0.5843137255);
  width: 100%;
  padding: 0.5rem 0rem;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(2) div:first-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(4) div:first-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(6) div:first-child {
  color: #5e3383;
  font-size: 1rem;
  font-weight: 600;
  width: 50%;
  text-align: center;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(2) div:last-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(4) div:last-child, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(6) div:last-child {
  width: 50%;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(2) div:last-child select, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(4) div:last-child select, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(6) div:last-child select {
  width: 80%;
  padding: 0.3rem;
  border-color: #5e3383;
  border-radius: 0.2rem;
  color: #5e3383;
  font-style: italic;
  outline: none;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(2) div:last-child select option, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(4) div:last-child select option, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(6) div:last-child select option {
  border-color: #5e3383;
  border-radius: 0.2rem;
}
.selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(2) div:last-child select option:hover, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(4) div:last-child select option:hover, .selector_carrito_de_compras > article:nth-child(2) > form > section:nth-child(6) div:last-child select option:hover {
  color: #fff;
  background-color: #5e3383;
}

.listado_de_productos {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}
.listado_de_productos > article {
  border-color: #000;
  border-style: solid;
  border-width: 0rem 0.2rem 0.2rem;
  padding: 0.5rem 0rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.listado_de_productos > article:nth-child(odd) {
  background-color: rgba(94, 51, 131, 0.5843137255);
}
.listado_de_productos > article:nth-child(odd) > div:nth-child(2) div {
  padding: 0.5rem 0rem;
}
.listado_de_productos > article:nth-child(odd) > div:nth-child(2) div:nth-child(7) {
  height: 15%;
  padding: 1.5rem 0rem;
}
.listado_de_productos > article:nth-child(odd) > div:nth-child(2) div:nth-child(7) span:first-child {
  background-color: #5e3383;
  color: #fff;
}
.listado_de_productos > article:nth-child(odd) > div:nth-child(2) div:nth-child(7) span:nth-child(2) {
  background-color: #b6a5c3;
  color: #5e3383;
}
.listado_de_productos > article:nth-child(odd) > div:nth-child(2) div:nth-child(7) span:last-child {
  background-color: #5e3383;
  color: #fff;
}
.listado_de_productos > article:nth-child(even) {
  background-color: rgba(94, 51, 131, 0.168627451);
}
.listado_de_productos > article:nth-child(even) > div:nth-child(2) div {
  padding: 0.5rem 0rem;
}
.listado_de_productos > article:nth-child(even) > div:nth-child(2) div:nth-child(7) {
  padding: 5vh 0vh;
}
.listado_de_productos > article:nth-child(even) > div:nth-child(2) div:nth-child(7) span:first-child {
  background-color: #5e3383;
  color: #fff;
}
.listado_de_productos > article:nth-child(even) > div:nth-child(2) div:nth-child(7) span:nth-child(2) {
  background-color: #b6a5c3;
  color: #5e3383;
}
.listado_de_productos > article:nth-child(even) > div:nth-child(2) div:nth-child(7) span:last-child {
  background-color: #5e3383;
  color: #fff;
}
.listado_de_productos > article > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-evenly;
}
.listado_de_productos > article > div:first-child {
  width: 50%;
}
.listado_de_productos > article > div:first-child img {
  width: 90%;
  height: auto;
}
.listado_de_productos > article > div:last-child {
  width: 50%;
}
.listado_de_productos > article > div:last-child > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0rem;
  color: #5e3383;
}
.listado_de_productos > article > div:last-child > div > span:first-child {
  font-weight: 700;
  font-size: 0.9rem;
}
.listado_de_productos > article > div:last-child > div > span:last-child {
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
}

.agregar_quitar_carrito {
  width: 90%;
  height: 4rem !important;
}
.agregar_quitar_carrito span {
  font-size: 1.5rem !important;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
}
.agregar_quitar_carrito span:first-child {
  border-color: #000;
  border-style: solid;
  border-width: 0.1rem;
  border-radius: 0.2rem 0rem 0rem 0.2rem;
}
.agregar_quitar_carrito span:nth-child(2) {
  border-color: #000;
  border-style: solid;
  border-width: 0.1rem 0rem;
  border-radius: 0rem;
}
.agregar_quitar_carrito span:last-child {
  border-color: #000;
  border-style: solid;
  border-width: 0.1rem;
  border-radius: 0rem 0.2rem 0.2rem 0rem;
}
.agregar_quitar_carrito span button {
  stroke: none;
  background-color: transparent;
  border: none;
  color: inherit;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Estilos para pantallas medianas */
@media all and (min-width: 576px) and (max-width: 991px) {
  .selector_carrito_de_compras {
    margin-top: 15vh;
    width: 80vw;
  }
}
/* Estilos para pantallas grandes */
@media all and (min-width: 992px) {
  .selector_carrito_de_compras {
    margin-top: 20vh;
    width: 60vw;
  }
}
.empty_header {
  width: 100%;
  height: 2rem;
  position: absolute;
  top: -5rem;
}/*# sourceMappingURL=carrito_de_compras.css.map */