9.1
15832144755
2021-09-01 c6d9be2aac4965e847fd958288170e26e79b219d
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* norbu */
 
.pricing--norbu {
  .pricing__item {
    margin: 1em;
    color: $white;
    cursor: default;
    background: $m-color_12;
    border-radius: 10px;
    border: 1px solid $dark;
    -webkit-transition: border-color 0.3s, background 0.3s;
    transition: border-color 0.3s, background 0.3s;
 
    &:hover {
      color: $m-color_14;
      border: 1px solid $m-color_14;
    }
  }
 
  .pricing__title {
    font-size: 26px;
    font-weight: 600;
    margin: 0.5em 0;
    padding: 1em;
    position: relative;
 
    &::after {
      content: '';
      position: absolute;
      width: 20%;
      height: 1px;
      background: $dark;
      left: 40%;
      bottom: 0;
    }
  }
 
  .pricing__item:hover .pricing__title::after {
    background: $m-color_14;
  }
 
  .icon {
    display: inline-block;
    min-width: 2em;
  }
 
  .pricing__price {
    font-size: 50px;
    padding: 0.5em 0 0 0;
    font-weight: 600;
    position: relative;
    z-index: 100;
  }
 
  .pricing__currency {
    font-size: 0.5em;
    vertical-align: super;
  }
 
  .pricing__period {
    font-size: 15px;
    padding: 1em;
  }
 
  .pricing__sentence {
    padding: 1em 2em;
    font-size: 1em;
    margin: 0 auto 1em;
  }
 
  .pricing__feature-list {
    font-size: 1.15em;
    letter-spacing: 0;
    padding: 2em 0;
    list-style: none;
  }
 
  .pricing__feature {
    line-height: 1.6;
    font-size: 15px;
 
    svg {
      width: 15px;
      height: 15px;
    }
  }
 
  .pricing__action {
    text-transform: uppercase;
    flex: none;
    padding: 12px 45px;
    color: $m-color_6;
    border: solid 1px $m-color_6;
    font-weight: 600;
    border-radius: 6px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
 
  .pricing__item:hover .pricing__action {
    color: $m-color_3;
    background: $m-color_14;
    border: solid 1px $m-color_14;
    box-shadow: 0px 5px 20px 0 rgba(0, 0, 0, 0.1);
    will-change: opacity, transform;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
  }
 
  .pricing__action {
    &:hover, &:focus {
      color: $l-primary;
      background: $primary;
      border-color: $primary;
      box-shadow: 0px 5px 20px 0 rgba(0, 0, 0, 0.1);
      will-change: opacity, transform;
      transition: all 0.3s ease-out;
      -webkit-transition: all 0.3s ease-out;
    }
  }
}