| @@ -1,0 +1,87 @@ | ||
| 1 | +.king-addons-feature-list-center .king-addons-feature-list-item { | |
| 2 | + display: flex; | |
| 3 | + align-items: center; | |
| 4 | + flex-direction: column; | |
| 5 | +} | |
| 6 | + | |
| 7 | +.king-addons-feature-list-center .king-addons-feature-list-content-wrap { | |
| 8 | + text-align: center; | |
| 9 | +} | |
| 10 | + | |
| 11 | +.king-addons-feature-list-right .king-addons-feature-list-item { | |
| 12 | + display: flex; | |
| 13 | + align-items: center; | |
| 14 | + flex-direction: row-reverse; | |
| 15 | +} | |
| 16 | + | |
| 17 | +.king-addons-feature-list-right .king-addons-feature-list-content-wrap { | |
| 18 | + text-align: right; | |
| 19 | +} | |
| 20 | + | |
| 21 | +.king-addons-feature-list-align-flex-start .king-addons-feature-list-title, | |
| 22 | +.king-addons-feature-list-align-flex-start .king-addons-feature-list-description { | |
| 23 | + text-align: left; | |
| 24 | +} | |
| 25 | + | |
| 26 | +.king-addons-feature-list-align-flex-end .king-addons-feature-list-title, | |
| 27 | +.king-addons-feature-list-align-flex-end .king-addons-feature-list-description { | |
| 28 | + text-align: right; | |
| 29 | +} | |
| 30 | + | |
| 31 | +.king-addons-feature-list-rhombus .king-addons-feature-list-icon-inner-wrap { | |
| 32 | + transform: rotate(45deg); | |
| 33 | +} | |
| 34 | + | |
| 35 | +.king-addons-feature-list-rhombus .king-addons-feature-list-icon-wrap i, | |
| 36 | +.king-addons-feature-list-rhombus .king-addons-feature-list-icon-wrap img { | |
| 37 | + transform: rotate(-45deg); | |
| 38 | +} | |
| 39 | + | |
| 40 | +.king-addons-feature-list-wrap .king-addons-feature-list-icon-inner-wrap { | |
| 41 | + display: flex; | |
| 42 | + overflow: hidden; | |
| 43 | + align-items: center; | |
| 44 | + justify-content: center; | |
| 45 | +} | |
| 46 | + | |
| 47 | +.king-addons-feature-list { | |
| 48 | + padding: 0; | |
| 49 | +} | |
| 50 | + | |
| 51 | +.king-addons-feature-list-line-yes .king-addons-feature-list-icon-wrap { | |
| 52 | + position: relative; | |
| 53 | +} | |
| 54 | + | |
| 55 | +.king-addons-feature-list-icon-wrap img { | |
| 56 | + width: 100%; | |
| 57 | + max-width: 100%; | |
| 58 | +} | |
| 59 | + | |
| 60 | +.king-addons-feature-list-center .king-addons-feature-list-line { | |
| 61 | + display: none; | |
| 62 | +} | |
| 63 | + | |
| 64 | +.king-addons-feature-list-item:not(:last-of-type) .king-addons-feature-list-line { | |
| 65 | + position: absolute; | |
| 66 | + top: 100%; | |
| 67 | + left: 50%; | |
| 68 | + width: 0; | |
| 69 | + height: 0; | |
| 70 | + transform: translateX(-50%); | |
| 71 | +} | |
| 72 | + | |
| 73 | +.king-addons-feature-list .king-addons-feature-list-item:last-child .king-addons-feature-list-line, | |
| 74 | +.king-addons-feature-list-item:last-of-type .king-addons-feature-list-line { | |
| 75 | + display: none; | |
| 76 | +} | |
| 77 | + | |
| 78 | +.king-addons-feature-list-title, | |
| 79 | +.king-addons-feature-list-description { | |
| 80 | + margin: 0; | |
| 81 | +} | |
| 82 | + | |
| 83 | +.king-addons-feature-list-left .king-addons-feature-list-item { | |
| 84 | + display: flex; | |
| 85 | + align-items: center; | |
| 86 | + text-align: left; | |
| 87 | +} | |