.addon-feature{
  position: absolute;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 700px;
  min-height: max-content;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  background-color: #f0f8f8;
  z-index: 10;
  right: 0;
  left: 50%;
  top: 100px;
  transform: translate(-50%, 0);
  .addon-icon{
    position: relative;
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 50px;
    margin-top: 100px;
    i{
      position: absolute;
      width: 100%;
      height: 100%;
      &:after{
        position: absolute;
        content: '';
        right: 0;
        width: 26px;
        height: 26px;
        border-radius: 12px;
        background: url(../icons/lock.svg) no-repeat center;
      }
      &.google-calendar{
        background: url("../icons/addons/google-calendar/google_calendar.svg") no-repeat center;
      }
      &.pro, &.payments{
        background: url("../icons/addons/payments/payments.svg") no-repeat center;
      }
    }
  }
  &.activation{
    height: max-content;
    padding-bottom: 30px;
    .addon-icon{
      margin-top: 30px;
    }
  }
  .title{
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    margin-bottom:10px;
    height: 24px;
  }
  .activation-link{
    width: 80%;
    text-align: center;
    line-height: 26px;
    font-size: 16px;
  }
  .price{
    p{
      margin: 0;
      color: $base-color;
      font-weight: 700;
      font-size: 16px;
      .plan-period{
        font-weight: 400;
      }
      .active-plan{
        opacity: 0.5;
      }
    }

  }
  .info{
    color:#000000;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 24px;
    opacity: 0.7;
    max-width: 500px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    a{
      color: #006666;
    }
  }
  .action{
    position: relative;
    display: flex;
    bottom: 0;
    margin-bottom:90px;
    div{
      position: relative;
      display: flex;
      bottom: 0;
      margin-top:30px;
      @import '../components/custom-select';
    }

    .custom-options {
      bottom: auto;
    }
  }
  .developer-info{
    color: #273044;
    opacity: 0.7;
    font-size: 14px;
    margin-top: 10px;
    span{
      .version-label{
        color: #9397a1;
      }
      a{
        color:inherit;
      }
    }

  }
}