.flex-container {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.col {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.align-items-center {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.justify-center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.carousel-container {
  width: 500px;
  height: 440px;
  margin: 0 auto;
}

.carousel-container .myCarousel {
  display: block;
  width: 400px;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.carousel-container .myCarousel .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.carousel-container .myCarousel img {
  width: 400px;
}

.carousel-container a {
  color: #916891;
}

.carousel-container ion-icon {
  font-size: 50px;
}

.row-label {
  margin-bottom: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row-label .label-item span {
  font-family: "Poiret One";
  color: #916891;
  font-size: 2em;
}

.label-carousel {
  display: none;
}
/*# sourceMappingURL=carousel.css.map */