Your IP : 3.145.156.17


Current Path : /home/lentoinv/finationglobal.com/scss/elements/
Upload File :
Current File : //home/lentoinv/finationglobal.com/scss/elements/_pricing_tables.scss

/*=================================================*/
/*-------------- [Pricing_Tables] -----------------*/
/*=================================================*/
.price-table {
  position: relative;
  display: block;
  background: var(--bg-silver);
  padding-bottom: 45px;
  border-radius: 8px;
  @include transition(all 300ms ease-out 0s);
  .table-header {
    position: relative;
    display: block;
    .pricing-plan-name {
      position: relative;
      display: block;
      color: var(--text-white);
      font-weight: normal;
      padding: 20px 0;
      background: var(--webex-primary-color);
      background-image: url(../images/objects/6.png);
      background-size: contain;
      background-repeat: no-repeat;
      border-radius: 8px 8px 0 0;
    }
    .price {
      font-size: 56px;
      color: #0b2239;
      background: var(--bg-white);
      padding: 30px 0;
      border: 1px solid #ddd;
      .price-currency {
        font-size: 36px;
        margin-right: 10px;
        vertical-align: middle;
        font-weight: 600;
      }
      .price-duration {
        font-size: 15px;
        letter-spacing: 0.3px;
        font-weight: 500;
      }
    }
  }
  .table-content {
    position: relative;
    display: block;
    margin-bottom: 44px;
    .list-items li {
      padding: 12px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      i {
        margin-right: 20px;
      }
      &:nth-child(odd) {
        background: var(--bg-silver-light);
      }
    }
  }
  &.active {
    @include box-shadow(0 5px 35px rgba(0, 0, 0, 0.1));
  }
  .recommended {
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
    padding: 3px;
    background: #b62b7d;
    margin: 0 auto;
    width: 40%;
    border-radius: 30px;
    color: var(--text-white);
    font-size: 13px;
  }
}

//Pricing Switch
.pricing-switcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    vertical-align: middle;
    margin: 0 12px;
    input {
      opacity: 0;
      width: 0;
      height: 0;
      &:checked + {
        .slider {
          background-color: var(--webex-primary-color2);
          &:before {
            -webkit-transform: translateX(26px);
            -ms-transform: translateX(26px);
            transform: translateX(26px);
          }
        }
      }
    }
    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: var(--webex-primary-color);
      -webkit-transition: 0.4s;
      transform: translate(0px, 0px);
      transition: 0.6s ease transform, 0.6s box-shadow;
      &:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: var(--bg-white);
        -webkit-transition: 0.4s;
        transition: 0.4s;
      }
      &.round {
        border-radius: 34px;
        &:before {
          border-radius: 50%;
        }
      }
    }
  }
}
.yearlyPrice,
.monthlyPrice {
  font-size: 36px;
  background: var(--bg-white);
  padding: 30px 15px;
  border: 1px solid #eee;
  span {
    font-size: 24px;
    font-weight: 500;
    color: var(--body-font-color);
    margin-left: 5px;
  }
}

?>