/*  Mapa - Array */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.iconoTransicion {
  transition: scale 3s;
}

.iconoTransicion:hover {
  transform: scale(1.3);
  filter: opacity(0.5);
}

.iconoZoom {
  animation: zoom 5s infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.iconoZoomCarritoHover:hover {
  animation: zoom 5s infinite;
}

@keyframes zoomCarritoHover {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.colorFondoNav {
  background-color: rgb(33, 37, 41);
}

.imgFondo {
  object-fit: cover;
  width: 100%;
  height: 25vh;
}

.parrafoSmall {
  font-size: small;
}

.imgCardProductos {
  height: 420px;
  width: 80%;
  padding-top: 10px;
  border-radius: 10%;
}

.bolded {
  font-weight: bold;
}

.imgFondoCarousel {
  object-fit: cover;
  width: 100%;
  height: 30vh;
}

.card {
  background-color: #fff;
  border: none;
  border-radius: 10px;
  width: 190px;
  min-height: 475px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.card .image-container {
  position: relative;
}
.card .first {
  position: absolute;
  width: 100%;
  padding: 9px;
}
.card .thumbnail-image {
  border-radius: 10px !important;
  height: 300px;
  width: 100%;
}
.card .discount {
  background-color: red;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 10px;
  border-radius: 6px;
  color: #fff;
}
.card .wishlist {
  height: 25px;
  width: 25px;
  background-color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.card .dress-name {
  font-size: 13px;
  font-weight: bold;
  width: 75%;
}
.card .new-price {
  font-size: 13px;
  font-weight: bold;
  color: red;
}
.card .old-price {
  font-size: 8px;
  font-weight: bold;
  color: grey;
}

.btn {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  padding: 3px;
}

.creme {
  background-color: #fff;
  border: 2px solid grey;
}

.creme:hover {
  border: 3px solid grey;
}

.creme:focus {
  background-color: grey;
}

.red {
  background-color: #fff;
  border: 2px solid red;
}

.red:hover {
  border: 3px solid red;
}

.red:focus {
  background-color: red;
}

.blue {
  background-color: #fff;
  border: 2px solid #40C4FF;
}

.blue:hover {
  border: 3px solid #40C4FF;
}

.blue:focus {
  background-color: #40C4FF;
}

.darkblue {
  background-color: #fff;
  border: 2px solid #01579B;
}

.darkblue:hover {
  border: 3px solid #01579B;
}

.darkblue:focus {
  background-color: #01579B;
}

.yellow {
  background-color: #fff;
  border: 2px solid #FFCA28;
}

.yellow:hover {
  border-radius: 3px solid #FFCA28;
}

.yellow:focus {
  background-color: #FFCA28;
}

.item-size {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid grey;
  color: grey;
  font-size: 10px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}

.rating-star {
  font-size: 10px !important;
}

.rating-number {
  font-size: 10px;
  color: grey;
}

.buy {
  font-size: 12px;
  color: purple;
  font-weight: 500;
}

.voutchers {
  background-color: #fff;
  border: none;
  border-radius: 10px;
  width: 190px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  overflow: hidden;
}

.voutcher-divider {
  display: flex;
}

.voutcher-left {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voutcher-name {
  color: grey;
  font-size: 9px;
  font-weight: 500;
}

.voutcher-code {
  color: red;
  font-size: 11px;
  font-weight: bold;
  margin: 0%;
}

.voutcher-right {
  width: 40%;
  background-color: purple;
  color: #fff;
}

.discount-percent {
  font-size: 12px;
  font-weight: bold;
  position: relative;
  top: 5px;
}

.off {
  font-size: 14px;
  position: relative;
  bottom: 5px;
}

.thumb {
  margin-bottom: 30px;
}

.page-top {
  margin-top: 85px;
}

img.zoom {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  object-fit: cover;
  border: solid 1px;
  opacity: 95%;
  border-color: #a5a3a3;
}

.imagenAnimacion:hover .imagen {
  /*
  -webkit-transform:scale(1);transform:scale(1.4);
  */
  transform: scale(1.1);
}

.imagenAnimacion .imagen {
  transition: scale 3s;
  border-radius: 30px;
  overflow: hidden;
}

.divTestimonios {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #231834;
}

.cardTestimonio {
  border: none;
  background-color: rgb(255, 255, 255);
  height: 100%;
  border-radius: 10px;
  margin-left: 15px;
  margin-right: 15px;
}
.cardTestimonio .user-content p {
  margin-top: 5px;
  font-size: 12px;
}

.divContacto {
  background: -webkit-linear-gradient(left, #2c85f1, #68c2db);
  background: rgb(33, 37, 41);
  background: linear-gradient(174deg, rgb(33, 37, 41) 0%, rgba(33, 37, 41, 0.8911939776) 51%, rgb(255, 255, 255) 100%);
  height: 750px;
  display: flex;
  align-items: center;
}
.divContacto .contact-form {
  background: #fff;
  margin-top: 10%;
  margin-bottom: 5%;
  width: 70%;
  border-radius: 5px;
}
.divContacto .contact-form .form-control {
  border-radius: 1rem;
}
.divContacto .contact-image {
  text-align: center;
}
.divContacto .contact-image img {
  /*border-radius: 6rem;*/
  width: 10%;
  margin-top: -3%;
  /* transform: rotate(-29deg); */
}
.divContacto .contact-form form {
  padding: 14%;
}
.divContacto .contact-form form .row {
  margin-bottom: -7%;
}
.divContacto .contact-form h3 {
  margin-bottom: 8%;
  margin-top: -10%;
  text-align: center;
  color: #0062cc;
}
.divContacto .contact-form .btnContact {
  width: 50%;
  border: none;
  border-radius: 1rem;
  padding: 1.5%;
  background: rgb(93, 135, 226);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}
.divContacto .btnContactSubmit {
  width: 50%;
  border-radius: 1rem;
  padding: 1.5%;
  color: #fff;
  background-color: #0062cc;
  border: none;
  cursor: pointer;
}

@media screen and (width <= 768px) {
  .divContacto .contact-form .btnContact {
    width: 80%;
    padding: 1.5%;
    font-weight: 600;
  }
}
.error-container {
  text-align: center;
  font-size: 106px;
  font-family: "Catamaran", sans-serif;
  font-weight: 800;
  margin: 70px 15px;
}

.error-container > span {
  display: inline-block;
  position: relative;
}

.error-container > span.four {
  width: 136px;
  height: 43px;
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.07) 43%, transparent 44%, transparent 100%), linear-gradient(105deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.06) 41%, rgba(0, 0, 0, 0.07) 76%, transparent 77%, transparent 100%), linear-gradient(to right, #d89ca4, #e27b7e);
}

.error-container > span.four:before,
.error-container > span.four:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 999px;
}

.error-container > span.four:before {
  width: 43px;
  height: 156px;
  left: 60px;
  bottom: -43px;
  background: linear-gradient(128deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.07) 40%, transparent 41%, transparent 100%), linear-gradient(116deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.07) 50%, transparent 51%, transparent 100%), linear-gradient(to top, #99749D, #B895AB, #CC9AA6, #D7969E, #E0787F);
}

.error-container > span.four:after {
  width: 137px;
  height: 43px;
  transform: rotate(-49.5deg);
  left: -18px;
  bottom: 36px;
  background: linear-gradient(to right, #99749D, #B895AB, #CC9AA6, #D7969E, #E0787F);
}

.error-container > span.zero {
  vertical-align: text-top;
  width: 156px;
  height: 156px;
  border-radius: 999px;
  background: linear-gradient(-45deg, transparent 0%, rgba(0, 0, 0, 0.06) 50%, transparent 51%, transparent 100%), linear-gradient(to top right, #99749D, #99749D, #B895AB, #CC9AA6, #D7969E, #ED8687, #ED8687);
  overflow: hidden;
  animation: bgshadow 5s infinite;
}

.error-container > span.zero:before {
  content: "";
  display: block;
  position: absolute;
  transform: rotate(45deg);
  width: 90px;
  height: 90px;
  background-color: transparent;
  left: 0px;
  bottom: 0px;
  background: linear-gradient(95deg, transparent 0%, transparent 8%, rgba(0, 0, 0, 0.07) 9%, transparent 50%, transparent 100%), linear-gradient(85deg, transparent 0%, transparent 19%, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.07) 91%, transparent 92%, transparent 100%);
}

.error-container > span.zero:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 999px;
  width: 70px;
  height: 70px;
  left: 43px;
  bottom: 43px;
  background: #FDFAF5;
  box-shadow: -2px 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.screen-reader-text {
  position: absolute;
  top: -9999em;
  left: -9999em;
}

@keyframes bgshadow {
  0% {
    box-shadow: inset -160px 160px 0px 5px rgba(0, 0, 0, 0.4);
  }
  45% {
    box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  }
  55% {
    box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: inset 160px -160px 0px 5px rgba(0, 0, 0, 0.4);
  }
}
/* demo stuff */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  text-align: center;
  margin: 30px 15px;
}

.zoom-area {
  max-width: 500px;
  margin: 30px auto 30px;
  font-size: 16px;
  text-align: center;
}

.link-container {
  text-align: center;
}

a.more-link {
  text-transform: uppercase;
  font-size: 13px;
  background-color: #de7e85;
  padding: 10px 15px;
  border-radius: 0;
  color: #fff;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  line-height: 1.5;
  text-decoration: none;
  margin-top: 50px;
  letter-spacing: 1px;
}

.parrafoCentrado {
  text-align: center;
}

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