_pricing-table.scss 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /* Pricing table style 01 */
  2. .pricing-table-style-01 {
  3. &.popular-item {
  4. margin-top: -30px;
  5. }
  6. }
  7. /* Pricing table style 02 */
  8. .pricing-table-style-02 {
  9. .popular-item {
  10. left: -10px;
  11. position: relative;
  12. z-index: 1;
  13. width: calc(100% + 20px);
  14. }
  15. .popular-label {
  16. position: absolute;
  17. top: 0;
  18. left: 50%;
  19. padding: 1px 20px;
  20. @include prefix(transform, translate(-50%, -50%), webkit);
  21. }
  22. }
  23. /* Pricing table style 04 */
  24. .pricing-table-style-04 {
  25. .accordion-item {
  26. border-radius:5px !important;
  27. padding: 16px 35px;
  28. .accordion-body {
  29. padding: 10px 0;
  30. }
  31. .icon-round {
  32. position: absolute;
  33. top: 50%;
  34. right: 0;
  35. text-align: center;
  36. @include prefix(border-radius, 100%, webkit);
  37. @include prefix(transform, translateY(-50%), webkit);
  38. i {
  39. left: 0;
  40. font-size: 13px;
  41. }
  42. }
  43. &.active-accordion {
  44. padding: 30px 40px;
  45. background-color: var(--base-color) !important;
  46. color: var(--white) !important;
  47. .accordion-header {
  48. .accordion-title {
  49. color: var(--white) !important;
  50. }
  51. }
  52. .icon-round {
  53. background-color: rgba(0, 0, 0, .4);
  54. color: var(--white) !important;
  55. }
  56. }
  57. }
  58. }
  59. /* Pricing table style 07 */
  60. .pricing-table-style-07 {
  61. .nav-tabs {
  62. padding: 0;
  63. .nav-item {
  64. width: 100%;
  65. padding: 0 15px;
  66. .nav-link {
  67. border: 0;
  68. color: var(--medium-gray);
  69. .icon {
  70. border-color: rgba(23,23,23,.2) !important;
  71. i {
  72. opacity: 0;
  73. }
  74. }
  75. .text-dark-gray {
  76. @include prefix(transition, 0.3s, webkit);
  77. }
  78. &:hover, &.active {
  79. box-shadow: none;
  80. background-color: var(--base-color);
  81. color: var(--white) !important;
  82. .text-dark-gray {
  83. color: var(--white) !important;
  84. }
  85. .icon {
  86. i {
  87. opacity: 1;
  88. }
  89. }
  90. .offer {
  91. background-color: var(--dark-gray);
  92. border-color: var(--dark-gray) !important;
  93. }
  94. }
  95. &.active {
  96. .icon {
  97. border-color: rgba(255,255,255,1) !important;
  98. }
  99. .offer {
  100. background-color: var(--dark-gray);
  101. border-color: var(--dark-gray) !important;
  102. }
  103. }
  104. }
  105. }
  106. }
  107. }
  108. /* Pricing table style 08 */
  109. .pricing-table-style-08 {
  110. .nav-tabs {
  111. position: relative;
  112. > li {
  113. &.nav-item {
  114. padding: 0;
  115. margin: 0;
  116. > a {
  117. &.nav-link {
  118. position: relative;
  119. padding: 0;
  120. border: 0;
  121. color: var(--medium-gray);
  122. .tab-nav-text {
  123. margin: 0 15px;
  124. }
  125. }
  126. &:before {
  127. content: '';
  128. display: inline-block;
  129. width: 22px;
  130. height: 22px;
  131. position: absolute;
  132. bottom: 5px;
  133. left: calc(50% - 15px);
  134. opacity: 0;
  135. border-radius: 50em;
  136. background-color: #fff;
  137. @include prefix(transform, scale(.5), webkit);
  138. transition: transform .65s cubic-bezier(.23,1,.32,1),opacity .65s cubic-bezier(.23,1,.32,1);
  139. @include box-shadow(0 0 20px rgba(0,0,0,.5));
  140. }
  141. &:after {
  142. content: '';
  143. display: inline-block;
  144. width: 100%;
  145. height: 32px;
  146. background-color: #152bca;
  147. }
  148. &.active {
  149. color: var(--dark-gray);
  150. background-color: transparent;
  151. &:before {
  152. opacity: 1;
  153. @include prefix(transform, scale(1), webkit);
  154. }
  155. }
  156. }
  157. &:first-child {
  158. a {
  159. flex-direction: row;
  160. &:before {
  161. left: auto;
  162. right: 0px;
  163. }
  164. &:after {
  165. border-radius: 50em 0 0 50em;
  166. width: 28px;
  167. }
  168. }
  169. }
  170. &:last-child {
  171. a {
  172. flex-direction: row-reverse;
  173. &:after {
  174. width: 30px;
  175. border-radius: 0 50em 50em 0;
  176. }
  177. &:before {
  178. left: 2px;
  179. }
  180. }
  181. }
  182. }
  183. }
  184. }
  185. }
  186. /* Pricing table style 09 */
  187. .pricing-table-style-09 {
  188. .row{
  189. @include prefix(transition, all 400ms cubic-bezier(0.61, 1, 0.88, 1), webkit);
  190. img, i {
  191. @include prefix(transition, all 400ms cubic-bezier(0.61, 1, 0.88, 1), webkit);
  192. }
  193. &:hover{
  194. @include box-shadow(0 20px 50px rgba(0,0,0,.08));
  195. img, i {
  196. @include prefix(transform, scale(1.1), webkit);
  197. }
  198. }
  199. }
  200. .action {
  201. @include prefix(transition, 0.3s, webkit);
  202. &:hover {
  203. margin-right: -5px;
  204. }
  205. }
  206. }
  207. /* Pricing table style 10 */
  208. .pricing-table-style-10 {
  209. .cover-background {
  210. filter: grayscale(0);
  211. @include prefix(transition, all 700ms cubic-bezier(0.61, 1, 0.88, 1), webkit);
  212. }
  213. .popular-label {
  214. position: absolute;
  215. top: 0;
  216. right: 50px;
  217. z-index: 1;
  218. height: 100px;
  219. width: 100px;
  220. display: flex;
  221. align-items: center;
  222. justify-content: center;
  223. @include prefix(transform, translate(0, -50%), webkit);
  224. }
  225. &:hover{
  226. .cover-background {
  227. filter: grayscale(100%);
  228. }
  229. }
  230. }
  231. /* Pricing table style 11 */
  232. .pricing-table-style-11{
  233. li {
  234. list-style: none;
  235. padding: 25px 0;
  236. position: relative;
  237. @include prefix(transition, all 200ms cubic-bezier(0.37, 0.80, 0.63, 1), webkit);
  238. .popular-label {
  239. position: absolute;
  240. border-radius: 100%;
  241. display: flex;
  242. align-items: center;
  243. justify-content: center;
  244. }
  245. &:hover {
  246. @include prefix(transform, scale(1.03), webkit);
  247. }
  248. }
  249. }
  250. /* Pricing table style 12 */
  251. .pricing-table-style-12 {
  252. padding:0;
  253. margin: 0;
  254. list-style:none;
  255. li {
  256. display: -webkit-box;
  257. display: -ms-flexbox;
  258. display: flex;
  259. -webkit-box-align: center;
  260. -ms-flex-align: center;
  261. align-items: center;
  262. padding: 15px 0;
  263. @include prefix(transition, all 500ms cubic-bezier(0.61, 1, 0.88, 1), webkit);
  264. &:last-child {
  265. padding-bottom:0;
  266. }
  267. &:hover{
  268. @include prefix(transform, translateX(15px), webkit);
  269. }
  270. }
  271. }
  272. /* Pricing table style 13 */
  273. .pricing-table-style-13 {
  274. padding:0;
  275. margin: 0;
  276. list-style:none;
  277. li {
  278. display: -webkit-box;
  279. display: -ms-flexbox;
  280. display: flex;
  281. -webkit-box-align: center;
  282. -ms-flex-align: center;
  283. align-items: center;
  284. padding: 25px 0;
  285. @include prefix(transition, all 500ms cubic-bezier(0.61, 1, 0.88, 1), webkit);
  286. &:last-child {
  287. padding-bottom:0;
  288. }
  289. &:hover{
  290. @include prefix(transform, translateX(15px), webkit);
  291. }
  292. }
  293. }