.prices-mask {
  -moz-transform: scale(1, -1);
  -webkit-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

#prices-container {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-image: linear-gradient(to bottom, #f5f6fa, #f0eef6, #ffffff, #f0eef6);
}

.price-offer {
  width: 300px;
  height: 500px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid rgb(245, 245, 245);
  margin: 16px;
  padding: 16px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.prices-girl-on-horse-image {
  max-width: 300px;
  width: 100%;
}

.price-offer-title {
  text-align: center;
}

.price-offer-text {
  text-align: left;
  height: 230px;
  padding: 12px;
}

.prices-offers-container {
  overflow: scroll;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100vw;
}

.prices-offers {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 14px;
  width: 100%;
  min-width: 700px;
}

.prices-price {
  font-size: 46px;
  font-weight: 500;
  text-align: center;
}

.prices-advantages {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
}

.check-mark-circle {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 8px;
  background-color: #7067ff;
}

.price-advantage {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

/* pricing table */

.pricing-row {
  display: flex;
  flex-direction: row;
  font-size: 0.8em;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}


.pricing-element {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16%;
  min-width: 120px;
  padding: 6px;
}

.pricing-top-left-cell {
  border-top: transparent;
  border-left: transparent;
}

.pricing-row-header {
  display: flex;
  color: #7067ff;
  height: 60px;
  text-transform: uppercase;
  font-size: 1.2em;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.pricing-header {
  font-size: 1em;
  height: 40px;
  background-color: #7067ff;
  display: flex;
  justify-content: center;
  color: white;
  align-items: center;
  text-transform: uppercase;
  font-weight: 300;
}

.pricing-header-col-element {
  width: 26%;
  padding: 6px;
  font-size: 1em;
  display: flex;
  justify-content: baseline;
  align-items: center;
  text-align: left;
}

.pricing-row-odd {
  background-color: #f1f1f1;
}

@media only screen and (min-width: 1080px) {
  .prices-offers-container {
    overflow: scroll;
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    width: 100%;
  }
  .prices-offers {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 14px;
  width: 80%;
  min-width: 700px;
}
}