.container-plans {
    width: 100%;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e2e2e2;
    padding: 1rem;
    border-radius: 1rem;
    overflow: hidden;
  }
  .container-plans .table-subscriptions {
    margin: 0;
    display: block;
    width: 100%;
    overflow-x: auto;
    background-color: #fff;
    border: 0;
    border-spacing: 1rem rem(8);
  }
  .container-plans .table-subscriptions th,
  .container-plans .table-subscriptions td {
    padding: 0;
    border: 0;
    line-height: 1rem;
  }
  .container-plans .table-subscriptions__head {
    font-size: rem(14);
  }
  .container-plans .table-subscriptions__head-tr {
    background-color: #fff;
  }
  .container-plans .table-subscriptions__head-tr th {
    background-color: #fff;
    max-width: rem(80);
    line-height: 1rem;
    text-align: left;
    vertical-align: top;
    font-size: rem(14);
  }

  .container-plans .table-subscriptions__head-tr th:nth-child(3),th:nth-child(4) {
    color:#2b41ee;
  }

  .container-plans .table-subscriptions__head-tr h3 {
    font-weight: 500;
    color:#637d95;
    font-size: rem(14);
  }
  .container-plans .table-subscriptions__item:first-child .table-subscriptions__item-title {
    font-weight: 400;
    font-family: 'GilroyLight', sans-serif;
    color: #3f4957;
  }
  .container-plans .table-subscriptions__item-title {
    color: #3f4957;
    font-size: rem(14);
    width: 100%;
  }
  .container-plans .table-subscriptions__item-title--gray {
    font-weight: 400;
  }
  .container-plans .table-subscriptions__item-icon {
    text-align: center;
  }
  table-subscriptions__item-icon no-check
  .container-plans .table-subscriptions__item-icon.no-check {
    position: relative;
    text-align: center;
  }
  .container-plans .table-subscriptions__item-icon.no-check::before {
    content: "";
    position: absolute;
    width: rem(14);
    height: rem(14);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-position: center;
    background-image: url(../../../images/icons/reject.svg);
    background-repeat: no-repeat;
  }
  .container-plans .table-subscriptions__item-icon.check {
    position: relative;
    text-align: center;
  }
  .container-plans .table-subscriptions__item-icon.check::before {
    content: "";
    position: absolute;
    width: rem(17);
    height: rem(12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-position: center;
    background-image: url(../../../images/icons/check.svg);
  }