| 1 |
.buttonizer-button{ |
| 2 |
position:fixed; |
| 3 |
right: 40px; |
| 4 |
bottom: 40px; |
| 5 |
z-index: 9999; |
| 6 |
transition: all 0.2s ease-in-out; |
| 7 |
-moz-transition: all 0.2s ease-in-out; |
| 8 |
-webkit-transition: all 0.2s ease-in-out; |
| 9 |
-o-transition: all 0.2s ease-in-out; |
| 10 |
} |
| 11 |
|
| 12 |
.buttonizer-button .buttonizer_inner { |
| 13 |
position: relative; |
| 14 |
} |
| 15 |
|
| 16 |
.buttonizer-button:hover .c5 { |
| 17 |
opacity: 1; |
| 18 |
} |
| 19 |
|
| 20 |
.buttonizer-button a, .buttonizer-button a:hover, .buttonizer-button a:active, .buttonizer-button a:focus{ |
| 21 |
text-decoration: none; |
| 22 |
color: #fff; |
| 23 |
box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15); |
| 24 |
} |
| 25 |
|
| 26 |
.c5 { |
| 27 |
font-family: Arial, \'Helvetica Neue\', Helvetica, sans-serif; |
| 28 |
position: absolute !important; |
| 29 |
opacity: 0; |
| 30 |
bottom: -23px; |
| 31 |
height: 15px !important; |
| 32 |
line-height: 15px !important; |
| 33 |
right: 0; |
| 34 |
font-size: 8px; |
| 35 |
background-color: rgba(0, 0, 0, 0.4) !important; |
| 36 |
color: #FFFFFF; |
| 37 |
text-align: center; |
| 38 |
border-radius: 2px !important; |
| 39 |
-moz-border-radius: 2px !important; |
| 40 |
-webkit-border-radius: 2px !important; |
| 41 |
} |
| 42 |
|
| 43 |
.buttonizer-button a:hover, |
| 44 |
.buttonizer-button a:focus{ |
| 45 |
background: #1D9BDB; |
| 46 |
} |
| 47 |
|
| 48 |
.buttonizer-button a{ |
| 49 |
background: #48A4DC; |
| 50 |
border-radius:50%; |
| 51 |
width:56px; |
| 52 |
height:56px; |
| 53 |
display: block; |
| 54 |
vertical-align: middle; |
| 55 |
text-align:center; |
| 56 |
color: #FFFFFF; |
| 57 |
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); |
| 58 |
cursor:pointer; |
| 59 |
outline:none; |
| 60 |
position: relative; |
| 61 |
transition: all 0.2s ease-out; |
| 62 |
-moz-transition: all 0.2s ease-out; |
| 63 |
-webkit-transition: all 0.2s ease-out; |
| 64 |
-o-transition: all 0.2s ease-out; |
| 65 |
margin-top: 5px; |
| 66 |
line-height: 56px; |
| 67 |
} |
| 68 |
|
| 69 |
.buttonizer-button a.buttonizer_head { |
| 70 |
position: absolute; |
| 71 |
z-index: 999; |
| 72 |
bottom: 0; |
| 73 |
right: 0; |
| 74 |
} |
| 75 |
|
| 76 |
.buttonizer-button .buttonizer_inner a.buttonizer_head i { |
| 77 |
font-size: 40px; |
| 78 |
font-style: normal; |
| 79 |
width: 56px; |
| 80 |
height: 56px; |
| 81 |
line-height: 56px; |
| 82 |
display: block; |
| 83 |
text-align: center; |
| 84 |
} |
| 85 |
|
| 86 |
.buttonizer-button .buttonizer_inner.exit_intent_animation a.buttonizer_head { |
| 87 |
animation: buttonizer_exit_intent 1s; |
| 88 |
} |
| 89 |
|
| 90 |
.buttonizer-button a.buttonizer_head .text { |
| 91 |
top: 15px; |
| 92 |
right: 70px; |
| 93 |
opacity: 0; |
| 94 |
visibility: hidden; |
| 95 |
} |
| 96 |
|
| 97 |
.buttonizer-button a.buttonizer_head.onlyone:hover .text, .buttonizer-button a.buttonizer_head .text.showlabel { |
| 98 |
opacity: 1; |
| 99 |
visibility: visible; |
| 100 |
} |
| 101 |
|
| 102 |
.buttonizer-button a.buttonizer_head.onlyone i { |
| 103 |
font-size: 26px !important; |
| 104 |
} |
| 105 |
|
| 106 |
.buttonizer-button .buttonizer_inner a.buttonizer_head i, .buttonizer-button .buttonizer_inner a.buttonizer_head img { |
| 107 |
transition: all 0.2s ease-in-out; |
| 108 |
-moz-transition: all 0.2s ease-in-out; |
| 109 |
-webkit-transition: all 0.2s ease-in-out; |
| 110 |
-o-transition: all 0.2s ease-in-out; |
| 111 |
} |
| 112 |
|
| 113 |
.buttonizer-button .buttonizer_inner.opened a.buttonizer_head i, .buttonizer-button .buttonizer_inner.opened a.buttonizer_head img { |
| 114 |
-webkit-transform: rotate(45deg); |
| 115 |
-moz-transform: rotate(45deg); |
| 116 |
-o-transform: rotate(45deg); |
| 117 |
-ms-transform: rotate(45deg); |
| 118 |
transform: rotate(45deg); |
| 119 |
} |
| 120 |
|
| 121 |
.buttonizer-button i.isicon-fa { |
| 122 |
font-size: 30px !important; |
| 123 |
} |
| 124 |
|
| 125 |
.buttonizer-button .buttonizer_inner a.is_extra { |
| 126 |
position: absolute; |
| 127 |
top: 0; |
| 128 |
z-index: 1; |
| 129 |
opacity: 0; |
| 130 |
right: 9px; |
| 131 |
width: 40px; |
| 132 |
height: 40px; |
| 133 |
line-height: 40px; |
| 134 |
} |
| 135 |
|
| 136 |
.buttonizer-button .buttonizer_inner a.is_extra i { |
| 137 |
font-size: 18px; |
| 138 |
} |
| 139 |
|
| 140 |
.buttonizer-button.hide .buttonizer_inner a.buttonizer_head, |
| 141 |
.buttonizer-button.hide .buttonizer_inner a.is_extra { |
| 142 |
width:0; |
| 143 |
height: 0; |
| 144 |
bottom: 20px; |
| 145 |
right: 20px; |
| 146 |
opacity: 0; |
| 147 |
} |
| 148 |
|
| 149 |
.buttonizer-button.hide #buttonizer-sys { |
| 150 |
width:0; |
| 151 |
height: 0; |
| 152 |
bottom: 20px; |
| 153 |
right: 20px; |
| 154 |
opacity: 0; |
| 155 |
} |
| 156 |
|
| 157 |
.buttonizer-button .buttonizer_inner.opened .bt_0 { |
| 158 |
opacity: 1; |
| 159 |
top: -110px; |
| 160 |
} |
| 161 |
|
| 162 |
.buttonizer-button .buttonizer_inner.opened .bt_1 { |
| 163 |
opacity: 1; |
| 164 |
top: -160px; |
| 165 |
} |
| 166 |
|
| 167 |
.buttonizer-button .buttonizer_inner.opened .bt_2 { |
| 168 |
opacity: 1; |
| 169 |
top: -210px; |
| 170 |
} |
| 171 |
|
| 172 |
.buttonizer-button .buttonizer_inner.opened .bt_3 { |
| 173 |
opacity: 1; |
| 174 |
top: -260px; |
| 175 |
} |
| 176 |
|
| 177 |
.buttonizer-button .buttonizer_inner.opened .bt_4 { |
| 178 |
opacity: 1; |
| 179 |
top: -310px; |
| 180 |
} |
| 181 |
|
| 182 |
.buttonizer-button .buttonizer_inner.opened .share_1 { |
| 183 |
opacity: 1; |
| 184 |
left: -105px; |
| 185 |
top: -53px; |
| 186 |
} |
| 187 |
|
| 188 |
.buttonizer-button .buttonizer_inner.opened .share_2 { |
| 189 |
opacity: 1; |
| 190 |
left: -154px; |
| 191 |
top: -53px; |
| 192 |
} |
| 193 |
|
| 194 |
.buttonizer-button .buttonizer_inner.opened .share_3 { |
| 195 |
opacity: 1; |
| 196 |
left: -202px; |
| 197 |
top: -53px; |
| 198 |
} |
| 199 |
|
| 200 |
.buttonizer-button .buttonizer_inner.opened .share_1 .text, |
| 201 |
.buttonizer-button .buttonizer_inner.opened .share_2 .text, |
| 202 |
.buttonizer-button .buttonizer_inner.opened .share_3 .text { |
| 203 |
top: -35px; |
| 204 |
right: -53px; |
| 205 |
} |
| 206 |
|
| 207 |
.buttonizer-button a .text { |
| 208 |
position: absolute; |
| 209 |
top: 7px; |
| 210 |
right: 55px; |
| 211 |
text-align: right; |
| 212 |
color: #ffffff; |
| 213 |
height: 26px; |
| 214 |
line-height: 26px; |
| 215 |
font-size: 12px; |
| 216 |
padding: 0 10px; |
| 217 |
transition: all 0.1s ease-out; |
| 218 |
-moz-transition: all 0.1s ease-out; |
| 219 |
-webkit-transition: all 0.1s ease-out; |
| 220 |
-o-transition: all 0.1s ease-out; |
| 221 |
display: block; |
| 222 |
white-space: nowrap; |
| 223 |
background: #4e4c4c; |
| 224 |
border-radius: 3px; |
| 225 |
-moz-border-radius: 3px; |
| 226 |
-webkit-border-radius: 3px; |
| 227 |
} |
| 228 |
|
| 229 |
.buttonizer-button .share .text { |
| 230 |
opacity: 0; |
| 231 |
visibility: hidden; |
| 232 |
} |
| 233 |
|
| 234 |
.buttonizer-button a.share:hover .text { |
| 235 |
visibility: visible; |
| 236 |
opacity: 1; |
| 237 |
} |
| 238 |
|
| 239 |
.buttonizer-button a i { |
| 240 |
font-size:24px; |
| 241 |
width:24px; |
| 242 |
height:24px; |
| 243 |
} |
| 244 |
|