.example-wrapper {
  background: whitesmoke;
  margin-bottom: 20px;
}

.example-wrapper > * {
  visibility: hidden;
}

.example-wrapper.loaded {
  background: #fff;
}

.example-wrapper.loaded > * {
  visibility: visible;
}

.pricing-box {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  background: linear-gradient(26deg, #ffffff 0%, #f9faff 100%);
  box-shadow:
    0px 1px 0px rgba(0, 0, 0, 0.03),
    0px 0px 8px rgba(0, 0, 0, 0.05),
    0px 5px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #d9dff1;
  border-radius: 0.5rem;
  padding: 32px;
  overflow: hidden;
  white-space: normal;
  position: relative;
  max-width: 480px;
  margin-bottom: 50px;
}

.pricing-box * {
  font-family: Helvetica, sans-serif;
}

.pricing-border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, #fc7753 0%, #fc5122 100%);
  display: block;
}

.pricing-box-content-backdrop {
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  border-radius: 0.375rem;
  background: #fff;
  display: block;
}

.pricing-box-content {
  color: #403d58;
  font-weight: 200;
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
  position: relative;
  height: 100%;
  text-align: center;
}

.plan-title {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  font-family: Helvetica, sans-serif;
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

h2.price {
  font-weight: 200;
  font-size: 28px;
  margin-top: 0;
}

.features li {
  transition: opacity 250ms;
  opacity: 1;
}

.button {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  padding: 8px 32px;
  height: 3rem;
  font-weight: 600;
  transition: all 0.2s;
  width: 100%;
  background: #fff;
  color: #fc5122;
  border: solid 1px #fc7753;
  text-decoration: none;
}

.button:visited {
  color: #fc5122;
}

.button:hover {
  border: solid 1px #dd3303;
  background: #fc7753;
  color: #fff;
}

.not-loaded {
  visibility: hidden;
}

.hide {
  visibility: hidden !important;
}
