@import "_variable.scss";
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
@charset "UTF-8";

.uta-pricing-table {
  text-align: center;
  border-radius: 6px;

  ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 30px;

    li {
      line-height: 40px;
      list-style: none !important;

      &:last-child {
        border-bottom: none !important;
      }
    }
  }

  .uta-pricing-item {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px #f0eaea;
    padding: 30px 0px;

    h4 {
      font-size: 18px;
      font-weight: 400;
      margin-bottom:5px 0px;
      text-transform: uppercase;
    }

    h2 {
      font-size: 44px;
      font-weight: 900;
      margin-bottom: 14px;

      sup {
        font-size: 35px;
      }
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    
    ul li {
      border-bottom: 1px solid #eeeded;
      line-height: 30px;
      font-size: 14px;
      padding: 8px 0px;
    }

    .pricing-btn {
      margin-top: 25px;

      a {
        background:$brand_color;
        display: inline-block;
        padding: 10px 20px;
        color: #fff;
        font-size: 14px;
        text-transform: uppercase;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        border-radius: 40px;

        &:hover {
          background: $brand_hover_color;
        }
      }
    }
  }

  .uta-pricing-badge{
    background: $brand_color;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .uta-currency {
    font-size: 16px;
  }

 
  /*-------- Style default ------------*/

  .uta-pricing-item.style-default {
    li {
      border: none;
    }

    .active {
      position: relative;

     
    }

    .uta-pricing-badge {
      position: absolute;
      content: "";
      left: 40%;
      top: -15px;
      color: #fff;
      padding: 3px 15px;
      -webkit-box-shadow: 0px 10px 20px 0px rgba(142, 142, 142, 0.38);
      box-shadow: 0px 10px 20px 0px rgba(142, 142, 142, 0.38);
      border-radius: 20px;
    }

    .uta-price {
      font-size: 52px;
      font-weight: bold;
      margin-bottom: 5px;
      margin: 30px 0;
    }

    .uta-pricing-package {
      color: #000;
      border: 1px solid;
      border-radius: 20px;
      padding: 0 20px;
    }


  }
  /*-------- Style 01 ------------*/

  .style-1 {
    overflow: hidden;

    .uta-pricing-badge {
      position: absolute;
      top: 16px;
      right: -64px;
      color: #fff;
      padding: 10px 68px;
      transform: rotate(40deg);
    }

  }


  /*-------- Style 02 ------------*/

  .uta-pricing-item.style-2 {
    float: left;
    width: 100%;
    text-align: left;
    background: #fff;
    position: relative;
    padding: 32px;
    border-radius: 20px;
    overflow: hidden;

    .uta-pricing-badge {
      position: absolute;
      top: 16px;
      right: -64px;
      color: #fff;
      padding: 10px 68px;
      transform: rotate(40deg);
    }

    ul li {
      overflow: hidden;
       display:flex;
       align-items:center;

      i {
        color: #00c58d;
        background: rgba(0, 197, 141, 0.1);
        font-size: 10px;
        width: 20px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        float: left;
        margin-top: 0px;
        margin-right: 7px;
      }
    }

  }


}
