
/** ADD YOUR AWESOME CODES HERE **/

* {
  box-sizing: border-box;
}

.pricing_container {
  margin: 0 auto;
  text-align: center;
  font-family: "Libre Baskerville", serif;
}

.card {
  display: inline-block;
  position: relative;
  background: #edddd4;
  color: #283d3b;
  width: 300px;
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 11px 26px 1px #0000004a, inset 0 -16px 90px #c4453640;
}

  h12, h14, h15{
    display: inline-block;
    margin: 0;
    width: 100%;
    font-size: 30px;
    padding: 20px 0;
    color: #edddd4;
    box-shadow: inset 0px 5px 4px -4px #ecddd461;
  }
  h12 {
    background: #c44536;
  }
  h14 {
    background: #283d3b;
  }
  h15 {
    background: #781940;
    
  }
  h13 {
    margin: 20px 0;
    font-size: 20px;
    text-shadow: 3px 2px 2px #283d3b38;
    
  }
    h20{
    display: inline-block;
    margin: 0;
    width: 100%;
    font-size: 30px;
    padding: 20px 0;
    color: #edddd4;
    box-shadow: inset 0px 5px 4px -4px #ecddd461;
    font-weight: bold;
    text-align: center;
  }
  p {
    font-style: italic;
    margin: 0 0 30px 0;
  }

  ul {
    text-align: left;
    padding: 0 50px;
    margin: 0;
    li {
      display: block;

      &:not(:last-child) {
        margin-bottom: 10px;
      }

      &.aval::before {
        font-family: "Font Awesome 5 Free";
        content: "\f00c";
        font-weight: 900;
        font-size: 20px;
        color: #197278;
        width: 40px;
        display: inline-block;
      }
      &.unaval::before {
        font-family: "Font Awesome 5 Free";
        content: "\f00d";
        font-weight: 900;
        font-size: 20px;
        color: #c44536;
        width: 40px;
        display: inline-block;
      }
    }
  }

  .select {
    cursor: pointer;
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    font-weight: 700;
    background: #3e3e3e;
    color: #efefef;
    font-size: 15px;
    font-family: inherit;
    box-shadow: 0 8px 18px 4px #283d3b4d;

    &::before {
      font-family: "Font Awesome 5 Free";
      content: "\f07a";
      font-weight: 900;
      margin-right: 15px;
    }
  }

  &-11,
  &-13 {
    position: relative;
    transform: scale(0.9);
  }
  &-11 {
    left: 40px;
    margin-left: -60px;
    z-index: 0;
    h12 {
      background: #197278;
    }
  }
  &-12 {
    z-index: 1;
  }
  &-13 {
    left: -40px;
    margin-right: -60px;
    z-index: 0;
    h12 {
      background: #781940;
    }
  }
}

.hot-badge::after {
  content: "HOT";
  position: absolute;
  background: linear-gradient(to right, #ffd400, #ffbc00);
  padding: 5px 54px;
  box-shadow: 0 0 5px 3px #715e006e;
  top: 17px;
  right: -46px;
  color: #5d4d00;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.creator-link {
  &:link,
  &:visited {
    text-decoration: none;
    color: #d8d8d8;
    background: #2d2d2d;
    text-shadow: 0 1px 3px black;
    position: fixed;
    bottom: 40px;
    right: -54px;
    padding: 5px 0px;
    margin: 0 auto;
    width: 230px;
    text-align: center;
    display: block;
    font-size: 20px;
    font-family: "Nunito", sans-serif;
    margin-top: 50px;
    transform: rotateZ(-45deg);
    z-index: 10;
    transition: 150ms;
  }
  &:hover {
    background: #56251f;
    color: white;
  }
}
// Made by Zvi Kantor
