$energetic-blue: #43aadc;

*,
*:before,
*:after {
  box-sizing: border-box;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  @media (min-width: 576px) {
    max-width: 540px;
  }
  @media (min-width: 768px) {
    max-width: 720px;
  }
  @media (min-width: 992px) {
    max-width: 960px;
  }
  @media (min-width: 1200px) {
    max-width: 1050px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}

@mixin pricing-border {
  border: 2px solid;
  border-color: #e9ecef;
  border-radius: 20px;
}

.mobile-pricing {
  display: flex;
  @media (min-width: 992px) {
    display: none;
  }
}

.desktop-pricing {
  display: none;
  @media (min-width: 992px) {
    display: flex;
  }
}
.pricing-cell {
  flex: 1;
  @media (max-width: 992px) {
    &:nth-of-type(1) {
      flex: 4;
    }
    &:nth-of-type(2) {
      flex: 3;
    }
  }
  margin: 0 0.5rem;
  overflow-x: auto;
  &:not(:first-of-type) {
    @include pricing-border;
  }
  &-header {
    display: block;
    height: 35px;
    padding: 0.25rem;
    margin-top: 1rem;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    color: $energetic-blue;
  }
  &-highlight {
    color: #ffffff;
    background: $energetic-blue;
    border-radius: 0.25rem;
  }
  &-normal {
    padding: 0.25rem;
    height: 30px;
  }
}
.pricing-cell.border-energetic-blue {
  border: 4px solid $energetic-blue;
}

.pricing-plan {
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0.25rem;
  @media (min-width: 992px) {
    height: 300px !important;
  }
  &-name {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 0.25rem;
  }
}

.text-wrap {
  word-wrap: wrap;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem;
}
