.subscriptions.groupSubscription {
  .card {
    min-width: 451px;
    min-height: 437px;
    padding: 16px;

    .card-top {
      width: 100%;
      display: flex;
      gap: 16px;
      justify-content: flex-start;
      align-items: flex-start;

      .tag {
        width: 97px;
        min-height: 97px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        /* overflow: hidden; */

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      .level-and-status {
        flex: 1;
        display: flex;
        gap: 15px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;

        .level-status {
          width: 100%;
          display: flex;
          justify-content: center;
          align-items: stretch;
          gap: 10px;

          .level,
          .status {
            flex: 1;
            background: rgba(116, 124, 39, 1);
            color: rgba(255, 255, 255, 1);
            padding: 6px;
            font-size: 12px;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            font-weight: 400;
            font-size: 16.33px;
          }
          .level {
            &.purple {
              background: rgba(125, 49, 95, 1);
            }
            &.green {
              background: rgba(116, 124, 39, 1);
            }
          }
          .status {
            font-weight: 500;
            background: transparent;
            border: 2px solid rgba(190, 197, 255, 1);
            color: rgba(18, 17, 23, 1);
          }
        }

        .teacher-info {
          display: flex;
          gap: 30px;
          justify-content: space-between;
          align-items: stretch;

          .teacher01,
          .teacher02 {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;

            span {
              font-size: 14px;
              color: rgba(0, 0, 0, 0.5);
            }
            h4 {
              font-weight: 600;
              font-size: 14px;
              color: rgba(0, 0, 0, 0.7);
            }
          }

          .verticalLine {
            width: 2px;
            background: rgba(220, 220, 229, 1);
          }
        }
      }
    }

    .title-desc {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 4px;

      h1 {
        font-weight: 600;
        font-size: 20.99px;
        color: rgba(18, 17, 23, 1);
      }

      p {
        font-size: 14.33px;
        color: rgba(0, 0, 0, 0.7);
      }
    }

    .schedule {
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;

      .day {
        width: 84px;
        display: flex;
        gap: 8px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;

        label {
          font-weight: 500;
          font-size: 14px;
          line-height: 24px;
          color: rgba(18, 17, 23, 0.5);
          margin-bottom: 4px;
          display: block;
          text-align: center;
        }

        .horizontalLine {
          height: 1px;
          background: rgba(220, 220, 229, 1);
        }

        .time {
          width: 80px;
          min-height: 39px;
          padding: 9px;
          border: 1px solid rgba(220, 220, 229, 1);
          border-radius: 9.33px;
          font-size: 12px;
          font-weight: 600;
          -webkit-border-radius: 9.33px;
          -moz-border-radius: 9.33px;
          -ms-border-radius: 9.33px;
          -o-border-radius: 9.33px;
          display: flex;
          justify-content: center;
          align-items: center;
          color: rgba(18, 17, 23, 1);
        }

        &.active {
          label {
            color: rgba(18, 17, 23, 1);
          }
        }
      }
    }

    .btn {
      width: 100%;
      border: 2.33px solid rgba(220, 220, 229, 1);
      border-radius: 9.33px;
      padding: 14px;
      font-weight: 500;
      font-size: 16.33px;
      color: rgba(0, 0, 0, 1);
      cursor: pointer;
      transition: background 0.2s ease;
      -webkit-border-radius: 9.33px;
      -moz-border-radius: 9.33px;
      -ms-border-radius: 9.33px;
      -o-border-radius: 9.33px;
      -webkit-transition: background 0.2s ease;
      -moz-transition: background 0.2s ease;
      -ms-transition: background 0.2s ease;
      -o-transition: background 0.2s ease;
      background: transparent;
      font-family: poppins, sans-serif;

      &:hover {
        background-color: rgba(0, 0, 0, 0.05);
      }
    }

    .anotherOptions {
      align-items: stretch !important;
    }
  }

  .bottomPart {
    .anotherOptions {
      min-height: unset;
      .anotherOptions_card {
        height: 100%;
      }
    }
  }
}
