File size: 1,145 Bytes
db242f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.plan {
  @apply flex flex-col overflow-hidden rounded-3xl p-6 shadow-lg;
  @apply shadow-gray-900/5 bg-white;

  &.featured {
    @apply order-first bg-gray-900 lg:order-none;
  }

  .plan-title {
    @apply flex items-center text-sm font-semibold text-gray-900;

    .logo {
      @apply h-6 w-6 flex-none;
    }
  }

  .plan-price {
    @apply relative mt-5 flex text-3xl tracking-tight text-gray-900;
  }

  .plan-description {
    @apply mt-3 text-sm text-gray-700;
  }

  .plan-features {
    @apply order-last mt-6;

    .features-list {
      @apply -my-2 divide-y text-sm divide-gray-200 text-gray-700;
    }

    .feature-item {
      @apply flex py-2;
    }
  }

  .plan-button {
    @apply mt-6;
  }
}

.featured {
  .plan-title,
  .plan-price {
    @apply text-white;
  }

  .plan-description {
    @apply text-gray-300;
  }

  .features-list {
    @apply divide-gray-800 text-gray-300;
  }

  .check-icon {
    @apply text-white;
  }
}

.price-transition {
  @apply transition duration-300;
}

.price-hidden {
  @apply pointer-events-none translate-x-6 select-none opacity-0;
}

.price-absolute {
  @apply absolute left-0 top-0;
}