Version Description
Download this release
Release Info
| Developer | wpdevteam |
| Plugin | |
| Version | 2.4.1 |
| Comparing to | |
| See all releases | |
Code changes from version 2.4.0 to 2.4.1
- assets/css/style.css +1 -4041
- assets/fonts/dm-sans-v11-latin-500.woff +0 -0
- assets/fonts/dm-sans-v11-latin-500.woff2 +0 -0
- assets/fonts/dm-sans-v11-latin-700.woff +0 -0
- assets/fonts/dm-sans-v11-latin-700.woff2 +0 -0
- assets/fonts/dm-sans-v11-latin-regular.woff +0 -0
- assets/fonts/dm-sans-v11-latin-regular.woff2 +0 -0
- assets/js/disable-comments-settings-scripts.js +39 -29
- disable-comments.php +4 -3
- languages/disable-comments.pot +65 -17
- readme.txt +5 -1
- views/partials/_delete.php +1 -1
- views/partials/_disable.php +3 -3
- views/partials/_sites.php +8 -8
assets/css/style.css
CHANGED
|
@@ -1,4042 +1,2 @@
|
|
| 1 |
-
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
|
| 2 |
-
:root {
|
| 3 |
-
--base-gutter: 30px;
|
| 4 |
-
--md-gutter: 50px;
|
| 5 |
-
--lg-gutter: 70px;
|
| 6 |
-
--xl-gutter: 100px;
|
| 7 |
-
--base-spacer-x: 16px;
|
| 8 |
-
--base-spacer-y: 16px;
|
| 9 |
-
--b-radius-6: 25px;
|
| 10 |
-
}
|
| 11 |
-
|
| 12 |
-
@media (max-width: 1599.98px) {
|
| 13 |
-
:root {
|
| 14 |
-
--base-gutter: 20px;
|
| 15 |
-
--md-gutter: 30px;
|
| 16 |
-
--lg-gutter: 50px;
|
| 17 |
-
--xl-gutter: 70px;
|
| 18 |
-
}
|
| 19 |
-
}
|
| 20 |
-
|
| 21 |
-
@media (max-width: 1399.98px) {
|
| 22 |
-
:root {
|
| 23 |
-
--base-gutter: 20px;
|
| 24 |
-
--md-gutter: 30px;
|
| 25 |
-
--lg-gutter: 40px;
|
| 26 |
-
--xl-gutter: 50px;
|
| 27 |
-
}
|
| 28 |
-
}
|
| 29 |
-
|
| 30 |
-
@media (max-width: 1199.98px) {
|
| 31 |
-
:root {
|
| 32 |
-
--base-spacer-x: 10px;
|
| 33 |
-
--base-spacer-y: 10px;
|
| 34 |
-
--md-gutter: 20px;
|
| 35 |
-
--lg-gutter: 30px;
|
| 36 |
-
--xl-gutter: 40px;
|
| 37 |
-
}
|
| 38 |
-
}
|
| 39 |
-
|
| 40 |
-
@media (max-width: 991.98px) {
|
| 41 |
-
:root {
|
| 42 |
-
--base-spacer-x: 5px;
|
| 43 |
-
--base-spacer-y: 5px;
|
| 44 |
-
--md-gutter: 20px;
|
| 45 |
-
--lg-gutter: 30px;
|
| 46 |
-
--xl-gutter: 40px;
|
| 47 |
-
}
|
| 48 |
-
}
|
| 49 |
-
|
| 50 |
-
.disablecommentswrap {
|
| 51 |
-
font-size: 10px;
|
| 52 |
-
font-family: "DM Sans", sans-serif;
|
| 53 |
-
line-height: 1.7;
|
| 54 |
-
font-weight: 400;
|
| 55 |
-
letter-spacing: 0;
|
| 56 |
-
min-height: 100vh;
|
| 57 |
-
background: #ffffff;
|
| 58 |
-
color: #000000;
|
| 59 |
-
outline: none;
|
| 60 |
-
border: none;
|
| 61 |
-
-webkit-box-sizing: border-box;
|
| 62 |
-
box-sizing: border-box;
|
| 63 |
-
overflow: hidden;
|
| 64 |
-
-webkit-display: flex;
|
| 65 |
-
-moz-display: flex;
|
| 66 |
-
-ms-display: flex;
|
| 67 |
-
-o-display: flex;
|
| 68 |
-
display: -webkit-box;
|
| 69 |
-
display: flex;
|
| 70 |
-
-moz-flex-direction: column;
|
| 71 |
-
-ms-flex-direction: column;
|
| 72 |
-
-o-flex-direction: column;
|
| 73 |
-
-webkit-box-orient: vertical;
|
| 74 |
-
-webkit-box-direction: normal;
|
| 75 |
-
flex-direction: column;
|
| 76 |
-
}
|
| 77 |
-
|
| 78 |
-
.disablecommentswrap * {
|
| 79 |
-
-webkit-box-sizing: border-box;
|
| 80 |
-
box-sizing: border-box;
|
| 81 |
-
}
|
| 82 |
-
|
| 83 |
-
.disablecommentswrap ::-moz-selection {
|
| 84 |
-
color: #ffffff;
|
| 85 |
-
background: rgba(98, 60, 234, 0.8);
|
| 86 |
-
}
|
| 87 |
-
|
| 88 |
-
.disablecommentswrap ::selection {
|
| 89 |
-
color: #ffffff;
|
| 90 |
-
background: rgba(98, 60, 234, 0.8);
|
| 91 |
-
}
|
| 92 |
-
|
| 93 |
-
.disablecommentswrap ul,
|
| 94 |
-
.disablecommentswrap li {
|
| 95 |
-
list-style: none;
|
| 96 |
-
}
|
| 97 |
-
|
| 98 |
-
.disablecommentswrap a {
|
| 99 |
-
color: initial;
|
| 100 |
-
-webkit-transition: all 0.3s linear;
|
| 101 |
-
transition: all 0.3s linear;
|
| 102 |
-
text-decoration: none;
|
| 103 |
-
display: inline-block;
|
| 104 |
-
}
|
| 105 |
-
|
| 106 |
-
.disablecommentswrap label {
|
| 107 |
-
margin-bottom: 0;
|
| 108 |
-
}
|
| 109 |
-
|
| 110 |
-
.disablecommentswrap .button {
|
| 111 |
-
vertical-align: middle;
|
| 112 |
-
font-family: "DM Sans", sans-serif;
|
| 113 |
-
font-weight: 500;
|
| 114 |
-
}
|
| 115 |
-
|
| 116 |
-
.disablecommentswrap .button:hover, .disablecommentswrap .button:focus {
|
| 117 |
-
outline: none;
|
| 118 |
-
}
|
| 119 |
-
|
| 120 |
-
.disablecommentswrap .button:not(:disabled) {
|
| 121 |
-
cursor: pointer;
|
| 122 |
-
}
|
| 123 |
-
|
| 124 |
-
.disablecommentswrap h1,
|
| 125 |
-
.disablecommentswrap h2,
|
| 126 |
-
.disablecommentswrap h3,
|
| 127 |
-
.disablecommentswrap h4,
|
| 128 |
-
.disablecommentswrap h5,
|
| 129 |
-
.disablecommentswrap h6,
|
| 130 |
-
.disablecommentswrap p {
|
| 131 |
-
margin: 0;
|
| 132 |
-
padding: 0;
|
| 133 |
-
}
|
| 134 |
-
|
| 135 |
-
.disablecommentswrap h1,
|
| 136 |
-
.disablecommentswrap h2,
|
| 137 |
-
.disablecommentswrap h3,
|
| 138 |
-
.disablecommentswrap h4,
|
| 139 |
-
.disablecommentswrap h5,
|
| 140 |
-
.disablecommentswrap h6 {
|
| 141 |
-
font-family: "DM Sans", sans-serif;
|
| 142 |
-
font-weight: 700;
|
| 143 |
-
line-height: 1.3;
|
| 144 |
-
margin-top: 0;
|
| 145 |
-
margin-bottom: 0;
|
| 146 |
-
color: inherit;
|
| 147 |
-
}
|
| 148 |
-
|
| 149 |
-
.disablecommentswrap h1 a,
|
| 150 |
-
.disablecommentswrap h2 a,
|
| 151 |
-
.disablecommentswrap h3 a,
|
| 152 |
-
.disablecommentswrap h4 a,
|
| 153 |
-
.disablecommentswrap h5 a,
|
| 154 |
-
.disablecommentswrap h6 a {
|
| 155 |
-
color: inherit;
|
| 156 |
-
}
|
| 157 |
-
|
| 158 |
-
.disablecommentswrap h1 a:hover,
|
| 159 |
-
.disablecommentswrap h2 a:hover,
|
| 160 |
-
.disablecommentswrap h3 a:hover,
|
| 161 |
-
.disablecommentswrap h4 a:hover,
|
| 162 |
-
.disablecommentswrap h5 a:hover,
|
| 163 |
-
.disablecommentswrap h6 a:hover {
|
| 164 |
-
color: inherit;
|
| 165 |
-
}
|
| 166 |
-
|
| 167 |
-
.disablecommentswrap ul,
|
| 168 |
-
.disablecommentswrap ol {
|
| 169 |
-
margin-bottom: 0;
|
| 170 |
-
}
|
| 171 |
-
|
| 172 |
-
.disablecommentswrap img,
|
| 173 |
-
.disablecommentswrap video {
|
| 174 |
-
max-width: 100%;
|
| 175 |
-
}
|
| 176 |
-
|
| 177 |
-
.disablecommentswrap .pt5 {
|
| 178 |
-
padding-top: 5px;
|
| 179 |
-
}
|
| 180 |
-
|
| 181 |
-
.disablecommentswrap .pt10 {
|
| 182 |
-
padding-top: 10px;
|
| 183 |
-
}
|
| 184 |
-
|
| 185 |
-
.disablecommentswrap .mt5 {
|
| 186 |
-
margin-top: 5px;
|
| 187 |
-
}
|
| 188 |
-
|
| 189 |
-
.disablecommentswrap .mt10 {
|
| 190 |
-
margin-top: 10px;
|
| 191 |
-
}
|
| 192 |
-
|
| 193 |
-
.pt50 {
|
| 194 |
-
padding-top: 50px;
|
| 195 |
-
}
|
| 196 |
-
|
| 197 |
-
.pb50 {
|
| 198 |
-
padding-bottom: 50px;
|
| 199 |
-
}
|
| 200 |
-
|
| 201 |
-
.pt70 {
|
| 202 |
-
padding-top: 70px;
|
| 203 |
-
}
|
| 204 |
-
|
| 205 |
-
.pb70 {
|
| 206 |
-
padding-bottom: 70px;
|
| 207 |
-
}
|
| 208 |
-
|
| 209 |
-
.pt110 {
|
| 210 |
-
padding-top: 110px;
|
| 211 |
-
}
|
| 212 |
-
|
| 213 |
-
.pb110 {
|
| 214 |
-
padding-bottom: 110px;
|
| 215 |
-
}
|
| 216 |
-
|
| 217 |
-
.pt120 {
|
| 218 |
-
padding-top: 120px;
|
| 219 |
-
}
|
| 220 |
-
|
| 221 |
-
.pb120 {
|
| 222 |
-
padding-bottom: 120px;
|
| 223 |
-
}
|
| 224 |
-
|
| 225 |
-
.pt150 {
|
| 226 |
-
padding-top: 150px;
|
| 227 |
-
}
|
| 228 |
-
|
| 229 |
-
.pb150 {
|
| 230 |
-
padding-bottom: 150px;
|
| 231 |
-
}
|
| 232 |
-
|
| 233 |
-
.pt200 {
|
| 234 |
-
padding-top: 200px;
|
| 235 |
-
}
|
| 236 |
-
|
| 237 |
-
.pb200 {
|
| 238 |
-
padding-bottom: 200px;
|
| 239 |
-
}
|
| 240 |
-
|
| 241 |
-
.pt300 {
|
| 242 |
-
padding-top: 300px;
|
| 243 |
-
}
|
| 244 |
-
|
| 245 |
-
.pb300 {
|
| 246 |
-
padding-bottom: 300px;
|
| 247 |
-
}
|
| 248 |
-
|
| 249 |
-
.mt10 {
|
| 250 |
-
margin-top: 10px;
|
| 251 |
-
}
|
| 252 |
-
|
| 253 |
-
.mb10 {
|
| 254 |
-
margin-bottom: 10px;
|
| 255 |
-
}
|
| 256 |
-
|
| 257 |
-
.mt15 {
|
| 258 |
-
margin-top: 15px;
|
| 259 |
-
}
|
| 260 |
-
|
| 261 |
-
.mb15 {
|
| 262 |
-
margin-bottom: 15px;
|
| 263 |
-
}
|
| 264 |
-
|
| 265 |
-
.mt20 {
|
| 266 |
-
margin-top: 20px;
|
| 267 |
-
}
|
| 268 |
-
|
| 269 |
-
.mb20 {
|
| 270 |
-
margin-bottom: 20px;
|
| 271 |
-
}
|
| 272 |
-
|
| 273 |
-
.mt30 {
|
| 274 |
-
margin-top: 30px;
|
| 275 |
-
}
|
| 276 |
-
|
| 277 |
-
.mb30 {
|
| 278 |
-
margin-bottom: 30px;
|
| 279 |
-
}
|
| 280 |
-
|
| 281 |
-
.mt50 {
|
| 282 |
-
margin-top: 50px;
|
| 283 |
-
}
|
| 284 |
-
|
| 285 |
-
.mb50 {
|
| 286 |
-
margin-bottom: 50px;
|
| 287 |
-
}
|
| 288 |
-
|
| 289 |
-
.mt70 {
|
| 290 |
-
margin-top: 70px;
|
| 291 |
-
}
|
| 292 |
-
|
| 293 |
-
.mb70 {
|
| 294 |
-
margin-bottom: 70px;
|
| 295 |
-
}
|
| 296 |
-
|
| 297 |
-
.mt80 {
|
| 298 |
-
margin-top: 80px;
|
| 299 |
-
}
|
| 300 |
-
|
| 301 |
-
.mb80 {
|
| 302 |
-
margin-bottom: 80px;
|
| 303 |
-
}
|
| 304 |
-
|
| 305 |
-
.mt100 {
|
| 306 |
-
margin-top: 100px;
|
| 307 |
-
}
|
| 308 |
-
|
| 309 |
-
.mb100 {
|
| 310 |
-
margin-bottom: 100px;
|
| 311 |
-
}
|
| 312 |
-
|
| 313 |
-
.color__primary {
|
| 314 |
-
color: #623cea !important;
|
| 315 |
-
}
|
| 316 |
-
|
| 317 |
-
a.color__primary:hover, a.color__primary:focus {
|
| 318 |
-
color: #4218db;
|
| 319 |
-
-webkit-box-shadow: none;
|
| 320 |
-
box-shadow: none;
|
| 321 |
-
}
|
| 322 |
-
|
| 323 |
-
.color__secondary {
|
| 324 |
-
color: #fa7d51 !important;
|
| 325 |
-
}
|
| 326 |
-
|
| 327 |
-
a.color__secondary:hover, a.color__secondary:focus {
|
| 328 |
-
color: #f9581f;
|
| 329 |
-
-webkit-box-shadow: none;
|
| 330 |
-
box-shadow: none;
|
| 331 |
-
}
|
| 332 |
-
|
| 333 |
-
.color__success {
|
| 334 |
-
color: #05cb6b !important;
|
| 335 |
-
}
|
| 336 |
-
|
| 337 |
-
a.color__success:hover, a.color__success:focus {
|
| 338 |
-
color: #049951;
|
| 339 |
-
-webkit-box-shadow: none;
|
| 340 |
-
box-shadow: none;
|
| 341 |
-
}
|
| 342 |
-
|
| 343 |
-
.color__danger {
|
| 344 |
-
color: #e0061a !important;
|
| 345 |
-
}
|
| 346 |
-
|
| 347 |
-
a.color__danger:hover, a.color__danger:focus {
|
| 348 |
-
color: #ae0514;
|
| 349 |
-
-webkit-box-shadow: none;
|
| 350 |
-
box-shadow: none;
|
| 351 |
-
}
|
| 352 |
-
|
| 353 |
-
.color__info {
|
| 354 |
-
color: #00b2fc !important;
|
| 355 |
-
}
|
| 356 |
-
|
| 357 |
-
a.color__info:hover, a.color__info:focus {
|
| 358 |
-
color: #008ec9;
|
| 359 |
-
-webkit-box-shadow: none;
|
| 360 |
-
box-shadow: none;
|
| 361 |
-
}
|
| 362 |
-
|
| 363 |
-
.color__dark {
|
| 364 |
-
color: #22282d !important;
|
| 365 |
-
}
|
| 366 |
-
|
| 367 |
-
a.color__dark:hover, a.color__dark:focus {
|
| 368 |
-
color: #0c0e10;
|
| 369 |
-
-webkit-box-shadow: none;
|
| 370 |
-
box-shadow: none;
|
| 371 |
-
}
|
| 372 |
-
|
| 373 |
-
.color__white {
|
| 374 |
-
color: #ffffff !important;
|
| 375 |
-
}
|
| 376 |
-
|
| 377 |
-
a.color__white:hover, a.color__white:focus {
|
| 378 |
-
color: #e6e6e6;
|
| 379 |
-
-webkit-box-shadow: none;
|
| 380 |
-
box-shadow: none;
|
| 381 |
-
}
|
| 382 |
-
|
| 383 |
-
.color__black {
|
| 384 |
-
color: #000000 !important;
|
| 385 |
-
}
|
| 386 |
-
|
| 387 |
-
.color__grey {
|
| 388 |
-
color: #f4f6fc !important;
|
| 389 |
-
}
|
| 390 |
-
|
| 391 |
-
a.color__grey:hover, a.color__grey:focus {
|
| 392 |
-
color: #ccd5f1;
|
| 393 |
-
-webkit-box-shadow: none;
|
| 394 |
-
box-shadow: none;
|
| 395 |
-
}
|
| 396 |
-
|
| 397 |
-
.color__grey2 {
|
| 398 |
-
color: #808da1 !important;
|
| 399 |
-
}
|
| 400 |
-
|
| 401 |
-
a.color__grey2:hover, a.color__grey2:focus {
|
| 402 |
-
color: #657389;
|
| 403 |
-
-webkit-box-shadow: none;
|
| 404 |
-
box-shadow: none;
|
| 405 |
-
}
|
| 406 |
-
|
| 407 |
-
.color__twitter {
|
| 408 |
-
color: #1da1f2 !important;
|
| 409 |
-
}
|
| 410 |
-
|
| 411 |
-
a.color__twitter:hover, a.color__twitter:focus {
|
| 412 |
-
color: #0c85d0;
|
| 413 |
-
-webkit-box-shadow: none;
|
| 414 |
-
box-shadow: none;
|
| 415 |
-
}
|
| 416 |
-
|
| 417 |
-
.color__linkedin {
|
| 418 |
-
color: #0077b5 !important;
|
| 419 |
-
}
|
| 420 |
-
|
| 421 |
-
a.color__linkedin:hover, a.color__linkedin:focus {
|
| 422 |
-
color: #005582;
|
| 423 |
-
-webkit-box-shadow: none;
|
| 424 |
-
box-shadow: none;
|
| 425 |
-
}
|
| 426 |
-
|
| 427 |
-
.color__instagram {
|
| 428 |
-
color: #e1306c !important;
|
| 429 |
-
}
|
| 430 |
-
|
| 431 |
-
a.color__instagram:hover, a.color__instagram:focus {
|
| 432 |
-
color: #c21c54;
|
| 433 |
-
-webkit-box-shadow: none;
|
| 434 |
-
box-shadow: none;
|
| 435 |
-
}
|
| 436 |
-
|
| 437 |
-
.background__primary {
|
| 438 |
-
background-color: #623cea !important;
|
| 439 |
-
}
|
| 440 |
-
|
| 441 |
-
.background__secondary {
|
| 442 |
-
background-color: #fa7d51 !important;
|
| 443 |
-
}
|
| 444 |
-
|
| 445 |
-
.background__success {
|
| 446 |
-
background-color: #05cb6b !important;
|
| 447 |
-
}
|
| 448 |
-
|
| 449 |
-
.background__danger {
|
| 450 |
-
background-color: #e0061a !important;
|
| 451 |
-
}
|
| 452 |
-
|
| 453 |
-
.background__info {
|
| 454 |
-
background-color: #00b2fc !important;
|
| 455 |
-
}
|
| 456 |
-
|
| 457 |
-
.background__dark {
|
| 458 |
-
background-color: #22282d !important;
|
| 459 |
-
}
|
| 460 |
-
|
| 461 |
-
.background__white {
|
| 462 |
-
background-color: #ffffff !important;
|
| 463 |
-
}
|
| 464 |
-
|
| 465 |
-
.background__black {
|
| 466 |
-
background-color: #000000 !important;
|
| 467 |
-
}
|
| 468 |
-
|
| 469 |
-
.background__grey {
|
| 470 |
-
background-color: #f4f6fc !important;
|
| 471 |
-
}
|
| 472 |
-
|
| 473 |
-
.background__grey2 {
|
| 474 |
-
background-color: #808da1 !important;
|
| 475 |
-
}
|
| 476 |
-
|
| 477 |
-
.background__twitter {
|
| 478 |
-
background-color: #1da1f2 !important;
|
| 479 |
-
}
|
| 480 |
-
|
| 481 |
-
.background__linkedin {
|
| 482 |
-
background-color: #0077b5 !important;
|
| 483 |
-
}
|
| 484 |
-
|
| 485 |
-
.background__instagram {
|
| 486 |
-
background-color: #e1306c !important;
|
| 487 |
-
}
|
| 488 |
-
|
| 489 |
-
.gradient__primary {
|
| 490 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(98, 60, 234, 0.3)), to(rgba(98, 60, 234, 0.05)));
|
| 491 |
-
background-image: linear-gradient(180deg, rgba(98, 60, 234, 0.3), rgba(98, 60, 234, 0.05));
|
| 492 |
-
color: #623cea;
|
| 493 |
-
}
|
| 494 |
-
|
| 495 |
-
.gradient__secondary {
|
| 496 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 125, 81, 0.3)), to(rgba(250, 125, 81, 0.05)));
|
| 497 |
-
background-image: linear-gradient(180deg, rgba(250, 125, 81, 0.3), rgba(250, 125, 81, 0.05));
|
| 498 |
-
color: #fa7d51;
|
| 499 |
-
}
|
| 500 |
-
|
| 501 |
-
.gradient__success {
|
| 502 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(5, 203, 107, 0.3)), to(rgba(5, 203, 107, 0.05)));
|
| 503 |
-
background-image: linear-gradient(180deg, rgba(5, 203, 107, 0.3), rgba(5, 203, 107, 0.05));
|
| 504 |
-
color: #05cb6b;
|
| 505 |
-
}
|
| 506 |
-
|
| 507 |
-
.gradient__danger {
|
| 508 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(224, 6, 26, 0.3)), to(rgba(224, 6, 26, 0.05)));
|
| 509 |
-
background-image: linear-gradient(180deg, rgba(224, 6, 26, 0.3), rgba(224, 6, 26, 0.05));
|
| 510 |
-
color: #e0061a;
|
| 511 |
-
}
|
| 512 |
-
|
| 513 |
-
.gradient__info {
|
| 514 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 178, 252, 0.3)), to(rgba(0, 178, 252, 0.05)));
|
| 515 |
-
background-image: linear-gradient(180deg, rgba(0, 178, 252, 0.3), rgba(0, 178, 252, 0.05));
|
| 516 |
-
color: #00b2fc;
|
| 517 |
-
}
|
| 518 |
-
|
| 519 |
-
.gradient__dark {
|
| 520 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 40, 45, 0.3)), to(rgba(34, 40, 45, 0.05)));
|
| 521 |
-
background-image: linear-gradient(180deg, rgba(34, 40, 45, 0.3), rgba(34, 40, 45, 0.05));
|
| 522 |
-
color: #22282d;
|
| 523 |
-
}
|
| 524 |
-
|
| 525 |
-
.gradient__white {
|
| 526 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.05)));
|
| 527 |
-
background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
|
| 528 |
-
color: #ffffff;
|
| 529 |
-
}
|
| 530 |
-
|
| 531 |
-
.gradient__black {
|
| 532 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.05)));
|
| 533 |
-
background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05));
|
| 534 |
-
color: #000000;
|
| 535 |
-
}
|
| 536 |
-
|
| 537 |
-
.gradient__grey {
|
| 538 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(244, 246, 252, 0.3)), to(rgba(244, 246, 252, 0.05)));
|
| 539 |
-
background-image: linear-gradient(180deg, rgba(244, 246, 252, 0.3), rgba(244, 246, 252, 0.05));
|
| 540 |
-
color: #f4f6fc;
|
| 541 |
-
}
|
| 542 |
-
|
| 543 |
-
.gradient__grey2 {
|
| 544 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(128, 141, 161, 0.3)), to(rgba(128, 141, 161, 0.05)));
|
| 545 |
-
background-image: linear-gradient(180deg, rgba(128, 141, 161, 0.3), rgba(128, 141, 161, 0.05));
|
| 546 |
-
color: #808da1;
|
| 547 |
-
}
|
| 548 |
-
|
| 549 |
-
.gradient__twitter {
|
| 550 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 161, 242, 0.3)), to(rgba(29, 161, 242, 0.05)));
|
| 551 |
-
background-image: linear-gradient(180deg, rgba(29, 161, 242, 0.3), rgba(29, 161, 242, 0.05));
|
| 552 |
-
color: #1da1f2;
|
| 553 |
-
}
|
| 554 |
-
|
| 555 |
-
.gradient__linkedin {
|
| 556 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 119, 181, 0.3)), to(rgba(0, 119, 181, 0.05)));
|
| 557 |
-
background-image: linear-gradient(180deg, rgba(0, 119, 181, 0.3), rgba(0, 119, 181, 0.05));
|
| 558 |
-
color: #0077b5;
|
| 559 |
-
}
|
| 560 |
-
|
| 561 |
-
.gradient__instagram {
|
| 562 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(225, 48, 108, 0.3)), to(rgba(225, 48, 108, 0.05)));
|
| 563 |
-
background-image: linear-gradient(180deg, rgba(225, 48, 108, 0.3), rgba(225, 48, 108, 0.05));
|
| 564 |
-
color: #e1306c;
|
| 565 |
-
}
|
| 566 |
-
|
| 567 |
-
.cloud__info__card__icon__primary {
|
| 568 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(98, 60, 234, 0.3)), to(rgba(98, 60, 234, 0.05)));
|
| 569 |
-
background-image: linear-gradient(180deg, rgba(98, 60, 234, 0.3), rgba(98, 60, 234, 0.05));
|
| 570 |
-
color: #623cea;
|
| 571 |
-
}
|
| 572 |
-
|
| 573 |
-
.cloud__info__card__icon__secondary {
|
| 574 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 125, 81, 0.3)), to(rgba(250, 125, 81, 0.05)));
|
| 575 |
-
background-image: linear-gradient(180deg, rgba(250, 125, 81, 0.3), rgba(250, 125, 81, 0.05));
|
| 576 |
-
color: #fa7d51;
|
| 577 |
-
}
|
| 578 |
-
|
| 579 |
-
.cloud__info__card__icon__success {
|
| 580 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(5, 203, 107, 0.3)), to(rgba(5, 203, 107, 0.05)));
|
| 581 |
-
background-image: linear-gradient(180deg, rgba(5, 203, 107, 0.3), rgba(5, 203, 107, 0.05));
|
| 582 |
-
color: #05cb6b;
|
| 583 |
-
}
|
| 584 |
-
|
| 585 |
-
.cloud__info__card__icon__danger {
|
| 586 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(224, 6, 26, 0.3)), to(rgba(224, 6, 26, 0.05)));
|
| 587 |
-
background-image: linear-gradient(180deg, rgba(224, 6, 26, 0.3), rgba(224, 6, 26, 0.05));
|
| 588 |
-
color: #e0061a;
|
| 589 |
-
}
|
| 590 |
-
|
| 591 |
-
.cloud__info__card__icon__info {
|
| 592 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 178, 252, 0.3)), to(rgba(0, 178, 252, 0.05)));
|
| 593 |
-
background-image: linear-gradient(180deg, rgba(0, 178, 252, 0.3), rgba(0, 178, 252, 0.05));
|
| 594 |
-
color: #00b2fc;
|
| 595 |
-
}
|
| 596 |
-
|
| 597 |
-
.cloud__info__card__icon__dark {
|
| 598 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 40, 45, 0.3)), to(rgba(34, 40, 45, 0.05)));
|
| 599 |
-
background-image: linear-gradient(180deg, rgba(34, 40, 45, 0.3), rgba(34, 40, 45, 0.05));
|
| 600 |
-
color: #22282d;
|
| 601 |
-
}
|
| 602 |
-
|
| 603 |
-
.cloud__info__card__icon__white {
|
| 604 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.05)));
|
| 605 |
-
background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
|
| 606 |
-
color: #ffffff;
|
| 607 |
-
}
|
| 608 |
-
|
| 609 |
-
.cloud__info__card__icon__black {
|
| 610 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.05)));
|
| 611 |
-
background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05));
|
| 612 |
-
color: #000000;
|
| 613 |
-
}
|
| 614 |
-
|
| 615 |
-
.cloud__info__card__icon__grey {
|
| 616 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(244, 246, 252, 0.3)), to(rgba(244, 246, 252, 0.05)));
|
| 617 |
-
background-image: linear-gradient(180deg, rgba(244, 246, 252, 0.3), rgba(244, 246, 252, 0.05));
|
| 618 |
-
color: #f4f6fc;
|
| 619 |
-
}
|
| 620 |
-
|
| 621 |
-
.cloud__info__card__icon__grey2 {
|
| 622 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(128, 141, 161, 0.3)), to(rgba(128, 141, 161, 0.05)));
|
| 623 |
-
background-image: linear-gradient(180deg, rgba(128, 141, 161, 0.3), rgba(128, 141, 161, 0.05));
|
| 624 |
-
color: #808da1;
|
| 625 |
-
}
|
| 626 |
-
|
| 627 |
-
.cloud__info__card__icon__twitter {
|
| 628 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 161, 242, 0.3)), to(rgba(29, 161, 242, 0.05)));
|
| 629 |
-
background-image: linear-gradient(180deg, rgba(29, 161, 242, 0.3), rgba(29, 161, 242, 0.05));
|
| 630 |
-
color: #1da1f2;
|
| 631 |
-
}
|
| 632 |
-
|
| 633 |
-
.cloud__info__card__icon__linkedin {
|
| 634 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 119, 181, 0.3)), to(rgba(0, 119, 181, 0.05)));
|
| 635 |
-
background-image: linear-gradient(180deg, rgba(0, 119, 181, 0.3), rgba(0, 119, 181, 0.05));
|
| 636 |
-
color: #0077b5;
|
| 637 |
-
}
|
| 638 |
-
|
| 639 |
-
.cloud__info__card__icon__instagram {
|
| 640 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(225, 48, 108, 0.3)), to(rgba(225, 48, 108, 0.05)));
|
| 641 |
-
background-image: linear-gradient(180deg, rgba(225, 48, 108, 0.3), rgba(225, 48, 108, 0.05));
|
| 642 |
-
color: #e1306c;
|
| 643 |
-
}
|
| 644 |
-
|
| 645 |
-
.counter__card__primary .counter__card--icon {
|
| 646 |
-
color: white;
|
| 647 |
-
background: #623cea;
|
| 648 |
-
}
|
| 649 |
-
|
| 650 |
-
.counter__card__primary .counter__card--icon:before {
|
| 651 |
-
background: #623cea;
|
| 652 |
-
}
|
| 653 |
-
|
| 654 |
-
.counter__card__primary .counter__card--content .count__number {
|
| 655 |
-
color: #623cea;
|
| 656 |
-
}
|
| 657 |
-
|
| 658 |
-
.counter__card__secondary .counter__card--icon {
|
| 659 |
-
color: white;
|
| 660 |
-
background: #fa7d51;
|
| 661 |
-
}
|
| 662 |
-
|
| 663 |
-
.counter__card__secondary .counter__card--icon:before {
|
| 664 |
-
background: #fa7d51;
|
| 665 |
-
}
|
| 666 |
-
|
| 667 |
-
.counter__card__secondary .counter__card--content .count__number {
|
| 668 |
-
color: #fa7d51;
|
| 669 |
-
}
|
| 670 |
-
|
| 671 |
-
.counter__card__success .counter__card--icon {
|
| 672 |
-
color: white;
|
| 673 |
-
background: #05cb6b;
|
| 674 |
-
}
|
| 675 |
-
|
| 676 |
-
.counter__card__success .counter__card--icon:before {
|
| 677 |
-
background: #05cb6b;
|
| 678 |
-
}
|
| 679 |
-
|
| 680 |
-
.counter__card__success .counter__card--content .count__number {
|
| 681 |
-
color: #05cb6b;
|
| 682 |
-
}
|
| 683 |
-
|
| 684 |
-
.counter__card__danger .counter__card--icon {
|
| 685 |
-
color: white;
|
| 686 |
-
background: #e0061a;
|
| 687 |
-
}
|
| 688 |
-
|
| 689 |
-
.counter__card__danger .counter__card--icon:before {
|
| 690 |
-
background: #e0061a;
|
| 691 |
-
}
|
| 692 |
-
|
| 693 |
-
.counter__card__danger .counter__card--content .count__number {
|
| 694 |
-
color: #e0061a;
|
| 695 |
-
}
|
| 696 |
-
|
| 697 |
-
.counter__card__info .counter__card--icon {
|
| 698 |
-
color: white;
|
| 699 |
-
background: #00b2fc;
|
| 700 |
-
}
|
| 701 |
-
|
| 702 |
-
.counter__card__info .counter__card--icon:before {
|
| 703 |
-
background: #00b2fc;
|
| 704 |
-
}
|
| 705 |
-
|
| 706 |
-
.counter__card__info .counter__card--content .count__number {
|
| 707 |
-
color: #00b2fc;
|
| 708 |
-
}
|
| 709 |
-
|
| 710 |
-
.counter__card__dark .counter__card--icon {
|
| 711 |
-
color: white;
|
| 712 |
-
background: #22282d;
|
| 713 |
-
}
|
| 714 |
-
|
| 715 |
-
.counter__card__dark .counter__card--icon:before {
|
| 716 |
-
background: #22282d;
|
| 717 |
-
}
|
| 718 |
-
|
| 719 |
-
.counter__card__dark .counter__card--content .count__number {
|
| 720 |
-
color: #22282d;
|
| 721 |
-
}
|
| 722 |
-
|
| 723 |
-
.counter__card__white .counter__card--icon {
|
| 724 |
-
color: #22282d;
|
| 725 |
-
background: #ffffff;
|
| 726 |
-
}
|
| 727 |
-
|
| 728 |
-
.counter__card__white .counter__card--icon:before {
|
| 729 |
-
background: #ffffff;
|
| 730 |
-
}
|
| 731 |
-
|
| 732 |
-
.counter__card__white .counter__card--content .count__number {
|
| 733 |
-
color: #ffffff;
|
| 734 |
-
}
|
| 735 |
-
|
| 736 |
-
.counter__card__black .counter__card--icon {
|
| 737 |
-
color: white;
|
| 738 |
-
background: #000000;
|
| 739 |
-
}
|
| 740 |
-
|
| 741 |
-
.counter__card__black .counter__card--icon:before {
|
| 742 |
-
background: #000000;
|
| 743 |
-
}
|
| 744 |
-
|
| 745 |
-
.counter__card__black .counter__card--content .count__number {
|
| 746 |
-
color: #000000;
|
| 747 |
-
}
|
| 748 |
-
|
| 749 |
-
.counter__card__grey .counter__card--icon {
|
| 750 |
-
color: #22282d;
|
| 751 |
-
background: #f4f6fc;
|
| 752 |
-
}
|
| 753 |
-
|
| 754 |
-
.counter__card__grey .counter__card--icon:before {
|
| 755 |
-
background: #f4f6fc;
|
| 756 |
-
}
|
| 757 |
-
|
| 758 |
-
.counter__card__grey .counter__card--content .count__number {
|
| 759 |
-
color: #f4f6fc;
|
| 760 |
-
}
|
| 761 |
-
|
| 762 |
-
.counter__card__grey2 .counter__card--icon {
|
| 763 |
-
color: white;
|
| 764 |
-
background: #808da1;
|
| 765 |
-
}
|
| 766 |
-
|
| 767 |
-
.counter__card__grey2 .counter__card--icon:before {
|
| 768 |
-
background: #808da1;
|
| 769 |
-
}
|
| 770 |
-
|
| 771 |
-
.counter__card__grey2 .counter__card--content .count__number {
|
| 772 |
-
color: #808da1;
|
| 773 |
-
}
|
| 774 |
-
|
| 775 |
-
.counter__card__twitter .counter__card--icon {
|
| 776 |
-
color: white;
|
| 777 |
-
background: #1da1f2;
|
| 778 |
-
}
|
| 779 |
-
|
| 780 |
-
.counter__card__twitter .counter__card--icon:before {
|
| 781 |
-
background: #1da1f2;
|
| 782 |
-
}
|
| 783 |
-
|
| 784 |
-
.counter__card__twitter .counter__card--content .count__number {
|
| 785 |
-
color: #1da1f2;
|
| 786 |
-
}
|
| 787 |
-
|
| 788 |
-
.counter__card__linkedin .counter__card--icon {
|
| 789 |
-
color: white;
|
| 790 |
-
background: #0077b5;
|
| 791 |
-
}
|
| 792 |
-
|
| 793 |
-
.counter__card__linkedin .counter__card--icon:before {
|
| 794 |
-
background: #0077b5;
|
| 795 |
-
}
|
| 796 |
-
|
| 797 |
-
.counter__card__linkedin .counter__card--content .count__number {
|
| 798 |
-
color: #0077b5;
|
| 799 |
-
}
|
| 800 |
-
|
| 801 |
-
.counter__card__instagram .counter__card--icon {
|
| 802 |
-
color: white;
|
| 803 |
-
background: #e1306c;
|
| 804 |
-
}
|
| 805 |
-
|
| 806 |
-
.counter__card__instagram .counter__card--icon:before {
|
| 807 |
-
background: #e1306c;
|
| 808 |
-
}
|
| 809 |
-
|
| 810 |
-
.counter__card__instagram .counter__card--content .count__number {
|
| 811 |
-
color: #e1306c;
|
| 812 |
-
}
|
| 813 |
-
|
| 814 |
-
.m-0-5 {
|
| 815 |
-
margin: calc( 0.5 * var(--base-spacer-x)) calc( 0.5 * var(--base-spacer-x));
|
| 816 |
-
}
|
| 817 |
-
|
| 818 |
-
.mt-0-5 {
|
| 819 |
-
margin-top: calc( 0.5 * var(--base-spacer-x));
|
| 820 |
-
}
|
| 821 |
-
|
| 822 |
-
.mr-0-5 {
|
| 823 |
-
margin-right: calc( 0.5 * var(--base-spacer-x));
|
| 824 |
-
}
|
| 825 |
-
|
| 826 |
-
.mb-0-5 {
|
| 827 |
-
margin-bottom: calc( 0.5 * var(--base-spacer-x));
|
| 828 |
-
}
|
| 829 |
-
|
| 830 |
-
.ml-0-5 {
|
| 831 |
-
margin-left: calc( 0.5 * var(--base-spacer-x));
|
| 832 |
-
}
|
| 833 |
-
|
| 834 |
-
.my-0-5 {
|
| 835 |
-
margin-top: calc( 0.5 * var(--base-spacer-x));
|
| 836 |
-
margin-bottom: calc( 0.5 * var(--base-spacer-x));
|
| 837 |
-
}
|
| 838 |
-
|
| 839 |
-
.m-1 {
|
| 840 |
-
margin: calc( 1 * var(--base-spacer-x)) calc( 1 * var(--base-spacer-x));
|
| 841 |
-
}
|
| 842 |
-
|
| 843 |
-
.mt-1 {
|
| 844 |
-
margin-top: calc( 1 * var(--base-spacer-x));
|
| 845 |
-
}
|
| 846 |
-
|
| 847 |
-
.mr-1 {
|
| 848 |
-
margin-right: calc( 1 * var(--base-spacer-x));
|
| 849 |
-
}
|
| 850 |
-
|
| 851 |
-
.mb-1 {
|
| 852 |
-
margin-bottom: calc( 1 * var(--base-spacer-x));
|
| 853 |
-
}
|
| 854 |
-
|
| 855 |
-
.ml-1 {
|
| 856 |
-
margin-left: calc( 1 * var(--base-spacer-x));
|
| 857 |
-
}
|
| 858 |
-
|
| 859 |
-
.my-1 {
|
| 860 |
-
margin-top: calc( 1 * var(--base-spacer-x));
|
| 861 |
-
margin-bottom: calc( 1 * var(--base-spacer-x));
|
| 862 |
-
}
|
| 863 |
-
|
| 864 |
-
.m-1-5 {
|
| 865 |
-
margin: calc( 1.5 * var(--base-spacer-x)) calc( 1.5 * var(--base-spacer-x));
|
| 866 |
-
}
|
| 867 |
-
|
| 868 |
-
.mt-1-5 {
|
| 869 |
-
margin-top: calc( 1.5 * var(--base-spacer-x));
|
| 870 |
-
}
|
| 871 |
-
|
| 872 |
-
.mr-1-5 {
|
| 873 |
-
margin-right: calc( 1.5 * var(--base-spacer-x));
|
| 874 |
-
}
|
| 875 |
-
|
| 876 |
-
.mb-1-5 {
|
| 877 |
-
margin-bottom: calc( 1.5 * var(--base-spacer-x));
|
| 878 |
-
}
|
| 879 |
-
|
| 880 |
-
.ml-1-5 {
|
| 881 |
-
margin-left: calc( 1.5 * var(--base-spacer-x));
|
| 882 |
-
}
|
| 883 |
-
|
| 884 |
-
.my-1-5 {
|
| 885 |
-
margin-top: calc( 1.5 * var(--base-spacer-x));
|
| 886 |
-
margin-bottom: calc( 1.5 * var(--base-spacer-x));
|
| 887 |
-
}
|
| 888 |
-
|
| 889 |
-
.m-2 {
|
| 890 |
-
margin: calc( 2 * var(--base-spacer-y)) calc( 2 * var(--base-spacer-x));
|
| 891 |
-
}
|
| 892 |
-
|
| 893 |
-
.mt-2 {
|
| 894 |
-
margin-top: calc( 2 * var(--base-spacer-y));
|
| 895 |
-
}
|
| 896 |
-
|
| 897 |
-
.mr-2 {
|
| 898 |
-
margin-right: calc( 2 * var(--base-spacer-x));
|
| 899 |
-
}
|
| 900 |
-
|
| 901 |
-
.mb-2 {
|
| 902 |
-
margin-bottom: calc( 2 * var(--base-spacer-y));
|
| 903 |
-
}
|
| 904 |
-
|
| 905 |
-
.ml-2 {
|
| 906 |
-
margin-left: calc( 2 * var(--base-spacer-x));
|
| 907 |
-
}
|
| 908 |
-
|
| 909 |
-
.my-2 {
|
| 910 |
-
margin-top: calc( 2 * var(--base-spacer-y));
|
| 911 |
-
margin-bottom: calc( 2 * var(--base-spacer-y));
|
| 912 |
-
}
|
| 913 |
-
|
| 914 |
-
.m-2-5 {
|
| 915 |
-
margin: calc( 2.5 * var(--base-spacer-y)) calc( 2.5 * var(--base-spacer-x));
|
| 916 |
-
}
|
| 917 |
-
|
| 918 |
-
.mt-2-5 {
|
| 919 |
-
margin-top: calc( 2.5 * var(--base-spacer-y));
|
| 920 |
-
}
|
| 921 |
-
|
| 922 |
-
.mr-2-5 {
|
| 923 |
-
margin-right: calc( 2.5 * var(--base-spacer-x));
|
| 924 |
-
}
|
| 925 |
-
|
| 926 |
-
.mb-2-5 {
|
| 927 |
-
margin-bottom: calc( 2.5 * var(--base-spacer-y));
|
| 928 |
-
}
|
| 929 |
-
|
| 930 |
-
.ml-2-5 {
|
| 931 |
-
margin-left: calc( 2.5 * var(--base-spacer-x));
|
| 932 |
-
}
|
| 933 |
-
|
| 934 |
-
.my-2-5 {
|
| 935 |
-
margin-top: calc( 2.5 * var(--base-spacer-y));
|
| 936 |
-
margin-bottom: calc( 2.5 * var(--base-spacer-y));
|
| 937 |
-
}
|
| 938 |
-
|
| 939 |
-
.m-3 {
|
| 940 |
-
margin: calc( 3 * var(--base-spacer-y)) calc( 3 * var(--base-spacer-x));
|
| 941 |
-
}
|
| 942 |
-
|
| 943 |
-
.mt-3 {
|
| 944 |
-
margin-top: calc( 3 * var(--base-spacer-y));
|
| 945 |
-
}
|
| 946 |
-
|
| 947 |
-
.mr-3 {
|
| 948 |
-
margin-right: calc( 3 * var(--base-spacer-x));
|
| 949 |
-
}
|
| 950 |
-
|
| 951 |
-
.mb-3 {
|
| 952 |
-
margin-bottom: calc( 3 * var(--base-spacer-y));
|
| 953 |
-
}
|
| 954 |
-
|
| 955 |
-
.ml-3 {
|
| 956 |
-
margin-left: calc( 3 * var(--base-spacer-x));
|
| 957 |
-
}
|
| 958 |
-
|
| 959 |
-
.my-3 {
|
| 960 |
-
margin-top: calc( 3 * var(--base-spacer-y));
|
| 961 |
-
margin-bottom: calc( 3 * var(--base-spacer-y));
|
| 962 |
-
}
|
| 963 |
-
|
| 964 |
-
.m-3-5 {
|
| 965 |
-
margin: calc( 3.5 * var(--base-spacer-y)) calc( 3.5 * var(--base-spacer-x));
|
| 966 |
-
}
|
| 967 |
-
|
| 968 |
-
.mt-3-5 {
|
| 969 |
-
margin-top: calc( 3.5 * var(--base-spacer-y));
|
| 970 |
-
}
|
| 971 |
-
|
| 972 |
-
.mr-3-5 {
|
| 973 |
-
margin-right: calc( 3.5 * var(--base-spacer-x));
|
| 974 |
-
}
|
| 975 |
-
|
| 976 |
-
.mb-3-5 {
|
| 977 |
-
margin-bottom: calc( 3.5 * var(--base-spacer-y));
|
| 978 |
-
}
|
| 979 |
-
|
| 980 |
-
.ml-3-5 {
|
| 981 |
-
margin-left: calc( 3.5 * var(--base-spacer-x));
|
| 982 |
-
}
|
| 983 |
-
|
| 984 |
-
.my-3-5 {
|
| 985 |
-
margin-top: calc( 3.5 * var(--base-spacer-y));
|
| 986 |
-
margin-bottom: calc( 3.5 * var(--base-spacer-y));
|
| 987 |
-
}
|
| 988 |
-
|
| 989 |
-
.m-4 {
|
| 990 |
-
margin: calc( 4 * var(--base-spacer-x)) calc( 4 * var(--base-spacer-x));
|
| 991 |
-
}
|
| 992 |
-
|
| 993 |
-
.mt-4 {
|
| 994 |
-
margin-top: calc( 4 * var(--base-spacer-x));
|
| 995 |
-
}
|
| 996 |
-
|
| 997 |
-
.mr-4 {
|
| 998 |
-
margin-right: calc( 4 * var(--base-spacer-x));
|
| 999 |
-
}
|
| 1000 |
-
|
| 1001 |
-
.mb-4 {
|
| 1002 |
-
margin-bottom: calc( 4 * var(--base-spacer-x));
|
| 1003 |
-
}
|
| 1004 |
-
|
| 1005 |
-
.ml-4 {
|
| 1006 |
-
margin-left: calc( 4 * var(--base-spacer-x));
|
| 1007 |
-
}
|
| 1008 |
-
|
| 1009 |
-
.my-4 {
|
| 1010 |
-
margin-top: calc( 4 * var(--base-spacer-x));
|
| 1011 |
-
margin-bottom: calc( 4 * var(--base-spacer-x));
|
| 1012 |
-
}
|
| 1013 |
-
|
| 1014 |
-
.m-5 {
|
| 1015 |
-
margin: calc( 5 * var(--base-spacer-x)) calc( 5 * var(--base-spacer-x));
|
| 1016 |
-
}
|
| 1017 |
-
|
| 1018 |
-
.mt-5 {
|
| 1019 |
-
margin-top: calc( 5 * var(--base-spacer-x));
|
| 1020 |
-
}
|
| 1021 |
-
|
| 1022 |
-
.mr-5 {
|
| 1023 |
-
margin-right: calc( 5 * var(--base-spacer-x));
|
| 1024 |
-
}
|
| 1025 |
-
|
| 1026 |
-
.mb-5 {
|
| 1027 |
-
margin-bottom: calc( 5 * var(--base-spacer-x));
|
| 1028 |
-
}
|
| 1029 |
-
|
| 1030 |
-
.ml-5 {
|
| 1031 |
-
margin-left: calc( 5 * var(--base-spacer-x));
|
| 1032 |
-
}
|
| 1033 |
-
|
| 1034 |
-
.my-5 {
|
| 1035 |
-
margin-top: calc( 5 * var(--base-spacer-x));
|
| 1036 |
-
margin-bottom: calc( 5 * var(--base-spacer-x));
|
| 1037 |
-
}
|
| 1038 |
-
|
| 1039 |
-
.mx-auto {
|
| 1040 |
-
margin-left: auto;
|
| 1041 |
-
margin-right: auto;
|
| 1042 |
-
}
|
| 1043 |
-
|
| 1044 |
-
.p-0-5 {
|
| 1045 |
-
padding: calc( 0.5 * var(--base-spacer-x)) calc( 0.5 * var(--base-spacer-x));
|
| 1046 |
-
}
|
| 1047 |
-
|
| 1048 |
-
.pt-0-5 {
|
| 1049 |
-
padding-top: calc( 0.5 * var(--base-spacer-x));
|
| 1050 |
-
}
|
| 1051 |
-
|
| 1052 |
-
.pr-0-5 {
|
| 1053 |
-
padding-right: calc( 0.5 * var(--base-spacer-x));
|
| 1054 |
-
}
|
| 1055 |
-
|
| 1056 |
-
.pb-0-5 {
|
| 1057 |
-
padding-bottom: calc( 0.5 * var(--base-spacer-x));
|
| 1058 |
-
}
|
| 1059 |
-
|
| 1060 |
-
.pl-0-5 {
|
| 1061 |
-
padding-left: calc( 0.5 * var(--base-spacer-x));
|
| 1062 |
-
}
|
| 1063 |
-
|
| 1064 |
-
.py-0-5 {
|
| 1065 |
-
padding-top: calc( 0.5 * var(--base-spacer-x));
|
| 1066 |
-
padding-bottom: calc( 0.5 * var(--base-spacer-x));
|
| 1067 |
-
}
|
| 1068 |
-
|
| 1069 |
-
.p-1 {
|
| 1070 |
-
padding: calc( 1 * var(--base-spacer-x)) calc( 1 * var(--base-spacer-x));
|
| 1071 |
-
}
|
| 1072 |
-
|
| 1073 |
-
.pt-1 {
|
| 1074 |
-
padding-top: calc( 1 * var(--base-spacer-x));
|
| 1075 |
-
}
|
| 1076 |
-
|
| 1077 |
-
.pr-1 {
|
| 1078 |
-
padding-right: calc( 1 * var(--base-spacer-x));
|
| 1079 |
-
}
|
| 1080 |
-
|
| 1081 |
-
.pb-1 {
|
| 1082 |
-
padding-bottom: calc( 1 * var(--base-spacer-x));
|
| 1083 |
-
}
|
| 1084 |
-
|
| 1085 |
-
.pl-1 {
|
| 1086 |
-
padding-left: calc( 1 * var(--base-spacer-x));
|
| 1087 |
-
}
|
| 1088 |
-
|
| 1089 |
-
.py-1 {
|
| 1090 |
-
padding-top: calc( 1 * var(--base-spacer-x));
|
| 1091 |
-
padding-bottom: calc( 1 * var(--base-spacer-x));
|
| 1092 |
-
}
|
| 1093 |
-
|
| 1094 |
-
.p-1-5 {
|
| 1095 |
-
padding: calc( 1.5 * var(--base-spacer-x)) calc( 1.5 * var(--base-spacer-x));
|
| 1096 |
-
}
|
| 1097 |
-
|
| 1098 |
-
.pt-1-5 {
|
| 1099 |
-
padding-top: calc( 1.5 * var(--base-spacer-x));
|
| 1100 |
-
}
|
| 1101 |
-
|
| 1102 |
-
.pr-1-5 {
|
| 1103 |
-
padding-right: calc( 1.5 * var(--base-spacer-x));
|
| 1104 |
-
}
|
| 1105 |
-
|
| 1106 |
-
.pb-1-5 {
|
| 1107 |
-
padding-bottom: calc( 1.5 * var(--base-spacer-x));
|
| 1108 |
-
}
|
| 1109 |
-
|
| 1110 |
-
.pl-1-5 {
|
| 1111 |
-
padding-left: calc( 1.5 * var(--base-spacer-x));
|
| 1112 |
-
}
|
| 1113 |
-
|
| 1114 |
-
.py-1-5 {
|
| 1115 |
-
padding-top: calc( 1.5 * var(--base-spacer-x));
|
| 1116 |
-
padding-bottom: calc( 1.5 * var(--base-spacer-x));
|
| 1117 |
-
}
|
| 1118 |
-
|
| 1119 |
-
.p-2 {
|
| 1120 |
-
padding: calc( 2 * var(--base-spacer-y)) calc( 2 * var(--base-spacer-x));
|
| 1121 |
-
}
|
| 1122 |
-
|
| 1123 |
-
.pt-2 {
|
| 1124 |
-
padding-top: calc( 2 * var(--base-spacer-y));
|
| 1125 |
-
}
|
| 1126 |
-
|
| 1127 |
-
.pr-2 {
|
| 1128 |
-
padding-right: calc( 2 * var(--base-spacer-x));
|
| 1129 |
-
}
|
| 1130 |
-
|
| 1131 |
-
.pb-2 {
|
| 1132 |
-
padding-bottom: calc( 2 * var(--base-spacer-y));
|
| 1133 |
-
}
|
| 1134 |
-
|
| 1135 |
-
.pl-2 {
|
| 1136 |
-
padding-left: calc( 2 * var(--base-spacer-x));
|
| 1137 |
-
}
|
| 1138 |
-
|
| 1139 |
-
.py-2 {
|
| 1140 |
-
padding-top: calc( 2 * var(--base-spacer-y));
|
| 1141 |
-
padding-bottom: calc( 2 * var(--base-spacer-y));
|
| 1142 |
-
}
|
| 1143 |
-
|
| 1144 |
-
.p-2-5 {
|
| 1145 |
-
padding: calc( 2.5 * var(--base-spacer-y)) calc( 2.5 * var(--base-spacer-x));
|
| 1146 |
-
}
|
| 1147 |
-
|
| 1148 |
-
.pt-2-5 {
|
| 1149 |
-
padding-top: calc( 2.5 * var(--base-spacer-y));
|
| 1150 |
-
}
|
| 1151 |
-
|
| 1152 |
-
.pr-2-5 {
|
| 1153 |
-
padding-right: calc( 2.5 * var(--base-spacer-x));
|
| 1154 |
-
}
|
| 1155 |
-
|
| 1156 |
-
.pb-2-5 {
|
| 1157 |
-
padding-bottom: calc( 2.5 * var(--base-spacer-y));
|
| 1158 |
-
}
|
| 1159 |
-
|
| 1160 |
-
.pl-2-5 {
|
| 1161 |
-
padding-left: calc( 2.5 * var(--base-spacer-x));
|
| 1162 |
-
}
|
| 1163 |
-
|
| 1164 |
-
.py-2-5 {
|
| 1165 |
-
padding-top: calc( 2.5 * var(--base-spacer-y));
|
| 1166 |
-
padding-bottom: calc( 2.5 * var(--base-spacer-y));
|
| 1167 |
-
}
|
| 1168 |
-
|
| 1169 |
-
.p-3 {
|
| 1170 |
-
padding: calc( 3 * var(--base-spacer-y)) calc( 3 * var(--base-spacer-x));
|
| 1171 |
-
}
|
| 1172 |
-
|
| 1173 |
-
.pt-3 {
|
| 1174 |
-
padding-top: calc( 3 * var(--base-spacer-y));
|
| 1175 |
-
}
|
| 1176 |
-
|
| 1177 |
-
.pr-3 {
|
| 1178 |
-
padding-right: calc( 3 * var(--base-spacer-x));
|
| 1179 |
-
}
|
| 1180 |
-
|
| 1181 |
-
.pb-3 {
|
| 1182 |
-
padding-bottom: calc( 3 * var(--base-spacer-y));
|
| 1183 |
-
}
|
| 1184 |
-
|
| 1185 |
-
.pl-3 {
|
| 1186 |
-
padding-left: calc( 3 * var(--base-spacer-x));
|
| 1187 |
-
}
|
| 1188 |
-
|
| 1189 |
-
.py-3 {
|
| 1190 |
-
padding-top: calc( 3 * var(--base-spacer-y));
|
| 1191 |
-
padding-bottom: calc( 3 * var(--base-spacer-y));
|
| 1192 |
-
}
|
| 1193 |
-
|
| 1194 |
-
.p-3-5 {
|
| 1195 |
-
padding: calc( 3.5 * var(--base-spacer-y)) calc( 3.5 * var(--base-spacer-x));
|
| 1196 |
-
}
|
| 1197 |
-
|
| 1198 |
-
.pt-3-5 {
|
| 1199 |
-
padding-top: calc( 3.5 * var(--base-spacer-y));
|
| 1200 |
-
}
|
| 1201 |
-
|
| 1202 |
-
.pr-3-5 {
|
| 1203 |
-
padding-right: calc( 3.5 * var(--base-spacer-x));
|
| 1204 |
-
}
|
| 1205 |
-
|
| 1206 |
-
.pb-3-5 {
|
| 1207 |
-
padding-bottom: calc( 3.5 * var(--base-spacer-y));
|
| 1208 |
-
}
|
| 1209 |
-
|
| 1210 |
-
.pl-3-5 {
|
| 1211 |
-
padding-left: calc( 3.5 * var(--base-spacer-x));
|
| 1212 |
-
}
|
| 1213 |
-
|
| 1214 |
-
.py-3-5 {
|
| 1215 |
-
padding-top: calc( 3.5 * var(--base-spacer-y));
|
| 1216 |
-
padding-bottom: calc( 3.5 * var(--base-spacer-y));
|
| 1217 |
-
}
|
| 1218 |
-
|
| 1219 |
-
.p-4 {
|
| 1220 |
-
padding: calc( 4 * var(--base-spacer-x)) calc( 4 * var(--base-spacer-x));
|
| 1221 |
-
}
|
| 1222 |
-
|
| 1223 |
-
.pt-4 {
|
| 1224 |
-
padding-top: calc( 4 * var(--base-spacer-x));
|
| 1225 |
-
}
|
| 1226 |
-
|
| 1227 |
-
.pr-4 {
|
| 1228 |
-
padding-right: calc( 4 * var(--base-spacer-x));
|
| 1229 |
-
}
|
| 1230 |
-
|
| 1231 |
-
.pb-4 {
|
| 1232 |
-
padding-bottom: calc( 4 * var(--base-spacer-x));
|
| 1233 |
-
}
|
| 1234 |
-
|
| 1235 |
-
.pl-4 {
|
| 1236 |
-
padding-left: calc( 4 * var(--base-spacer-x));
|
| 1237 |
-
}
|
| 1238 |
-
|
| 1239 |
-
.py-4 {
|
| 1240 |
-
padding-top: calc( 4 * var(--base-spacer-x));
|
| 1241 |
-
padding-bottom: calc( 4 * var(--base-spacer-x));
|
| 1242 |
-
}
|
| 1243 |
-
|
| 1244 |
-
.p-5 {
|
| 1245 |
-
padding: calc( 5 * var(--base-spacer-x)) calc( 5 * var(--base-spacer-x));
|
| 1246 |
-
}
|
| 1247 |
-
|
| 1248 |
-
.pt-5 {
|
| 1249 |
-
padding-top: calc( 5 * var(--base-spacer-x));
|
| 1250 |
-
}
|
| 1251 |
-
|
| 1252 |
-
.pr-5 {
|
| 1253 |
-
padding-right: calc( 5 * var(--base-spacer-x));
|
| 1254 |
-
}
|
| 1255 |
-
|
| 1256 |
-
.pb-5 {
|
| 1257 |
-
padding-bottom: calc( 5 * var(--base-spacer-x));
|
| 1258 |
-
}
|
| 1259 |
-
|
| 1260 |
-
.pl-5 {
|
| 1261 |
-
padding-left: calc( 5 * var(--base-spacer-x));
|
| 1262 |
-
}
|
| 1263 |
-
|
| 1264 |
-
.py-5 {
|
| 1265 |
-
padding-top: calc( 5 * var(--base-spacer-x));
|
| 1266 |
-
padding-bottom: calc( 5 * var(--base-spacer-x));
|
| 1267 |
-
}
|
| 1268 |
-
|
| 1269 |
-
.px-auto {
|
| 1270 |
-
padding-left: auto;
|
| 1271 |
-
padding-right: auto;
|
| 1272 |
-
}
|
| 1273 |
-
|
| 1274 |
-
.disablecommentswrap {
|
| 1275 |
-
padding: 30px;
|
| 1276 |
-
}
|
| 1277 |
-
|
| 1278 |
-
@media (max-width: 575.98px) {
|
| 1279 |
-
.disablecommentswrap {
|
| 1280 |
-
padding: 30px;
|
| 1281 |
-
}
|
| 1282 |
-
}
|
| 1283 |
-
|
| 1284 |
-
.disablecommentswrap .delete-comments-not-found {
|
| 1285 |
-
width: 60%;
|
| 1286 |
-
margin: 0 auto;
|
| 1287 |
-
text-align: center;
|
| 1288 |
-
}
|
| 1289 |
-
|
| 1290 |
-
.disablecommentswrap .delete-comments-not-found .error-message {
|
| 1291 |
-
margin-top: 30px;
|
| 1292 |
-
color: #444;
|
| 1293 |
-
}
|
| 1294 |
-
|
| 1295 |
-
@media (max-width: 1199.98px) {
|
| 1296 |
-
.sidebar__widget__wrap {
|
| 1297 |
-
margin-top: 50px;
|
| 1298 |
-
}
|
| 1299 |
-
}
|
| 1300 |
-
|
| 1301 |
-
.dc-text__block {
|
| 1302 |
-
background: #ffffff;
|
| 1303 |
-
padding: 20px;
|
| 1304 |
-
border-radius: 10px;
|
| 1305 |
-
}
|
| 1306 |
-
|
| 1307 |
-
.dc-text__block__big__pad {
|
| 1308 |
-
padding: 40px 50px;
|
| 1309 |
-
background: #ffffff;
|
| 1310 |
-
border-radius: 10px;
|
| 1311 |
-
}
|
| 1312 |
-
|
| 1313 |
-
@media (max-width: 767.98px) {
|
| 1314 |
-
.dc-text__block__big__pad {
|
| 1315 |
-
padding: 40px 25px;
|
| 1316 |
-
}
|
| 1317 |
-
}
|
| 1318 |
-
|
| 1319 |
-
.dc-container {
|
| 1320 |
-
width: 100%;
|
| 1321 |
-
max-width: 1200px;
|
| 1322 |
-
margin: 0 auto;
|
| 1323 |
-
}
|
| 1324 |
-
|
| 1325 |
-
.dc-row {
|
| 1326 |
-
display: -webkit-box;
|
| 1327 |
-
display: -ms-flexbox;
|
| 1328 |
-
display: flex;
|
| 1329 |
-
-ms-flex-wrap: wrap;
|
| 1330 |
-
flex-wrap: wrap;
|
| 1331 |
-
margin-right: -15px;
|
| 1332 |
-
margin-left: -15px;
|
| 1333 |
-
}
|
| 1334 |
-
|
| 1335 |
-
.dc-col {
|
| 1336 |
-
-ms-flex-preferred-size: 0;
|
| 1337 |
-
flex-basis: 0;
|
| 1338 |
-
-webkit-box-flex: 1;
|
| 1339 |
-
-ms-flex-positive: 1;
|
| 1340 |
-
flex-grow: 1;
|
| 1341 |
-
max-width: 100%;
|
| 1342 |
-
}
|
| 1343 |
-
|
| 1344 |
-
.dc-col,
|
| 1345 |
-
.dc-col-xs-6,
|
| 1346 |
-
.dc-col-sm-6,
|
| 1347 |
-
.dc-col-md-6,
|
| 1348 |
-
.dc-col-lg-4,
|
| 1349 |
-
.dc-col-lg-3,
|
| 1350 |
-
.dc-col-lg-9 {
|
| 1351 |
-
padding-left: 15px;
|
| 1352 |
-
padding-right: 15px;
|
| 1353 |
-
width: 100%;
|
| 1354 |
-
}
|
| 1355 |
-
|
| 1356 |
-
@media (min-width: 576px) {
|
| 1357 |
-
.dc-col-xs-6 {
|
| 1358 |
-
-webkit-box-flex: 0;
|
| 1359 |
-
-ms-flex: 0 0 50%;
|
| 1360 |
-
flex: 0 0 50%;
|
| 1361 |
-
max-width: 50%;
|
| 1362 |
-
}
|
| 1363 |
-
}
|
| 1364 |
-
|
| 1365 |
-
@media (min-width: 768px) {
|
| 1366 |
-
.dc-col-sm-6 {
|
| 1367 |
-
-webkit-box-flex: 0;
|
| 1368 |
-
-ms-flex: 0 0 50%;
|
| 1369 |
-
flex: 0 0 50%;
|
| 1370 |
-
max-width: 50%;
|
| 1371 |
-
}
|
| 1372 |
-
}
|
| 1373 |
-
|
| 1374 |
-
@media (min-width: 992px) {
|
| 1375 |
-
.dc-col-md-6 {
|
| 1376 |
-
-webkit-box-flex: 0;
|
| 1377 |
-
-ms-flex: 0 0 50%;
|
| 1378 |
-
flex: 0 0 50%;
|
| 1379 |
-
max-width: 50%;
|
| 1380 |
-
}
|
| 1381 |
-
}
|
| 1382 |
-
|
| 1383 |
-
@media (min-width: 1200px) {
|
| 1384 |
-
.dc-col-lg-3 {
|
| 1385 |
-
-webkit-box-flex: 0;
|
| 1386 |
-
-ms-flex: 0 0 25%;
|
| 1387 |
-
flex: 0 0 25%;
|
| 1388 |
-
max-width: 25%;
|
| 1389 |
-
}
|
| 1390 |
-
.dc-col-lg-4 {
|
| 1391 |
-
-webkit-box-flex: 0;
|
| 1392 |
-
-ms-flex: 0 0 33.33%;
|
| 1393 |
-
flex: 0 0 33.33%;
|
| 1394 |
-
max-width: 33.33%;
|
| 1395 |
-
}
|
| 1396 |
-
.dc-col-lg-9 {
|
| 1397 |
-
-webkit-box-flex: 0;
|
| 1398 |
-
-ms-flex: 0 0 75%;
|
| 1399 |
-
flex: 0 0 75%;
|
| 1400 |
-
max-width: 75%;
|
| 1401 |
-
}
|
| 1402 |
-
}
|
| 1403 |
-
|
| 1404 |
-
.form__control {
|
| 1405 |
-
border: 1px solid rgba(0, 0, 0, 0.15) !important;
|
| 1406 |
-
}
|
| 1407 |
-
|
| 1408 |
-
.form__control.w-100 {
|
| 1409 |
-
width: 100%;
|
| 1410 |
-
}
|
| 1411 |
-
|
| 1412 |
-
.d__flex {
|
| 1413 |
-
display: -webkit-box;
|
| 1414 |
-
display: -ms-flexbox;
|
| 1415 |
-
display: flex;
|
| 1416 |
-
}
|
| 1417 |
-
|
| 1418 |
-
.space__between {
|
| 1419 |
-
-webkit-box-pack: justify;
|
| 1420 |
-
-ms-flex-pack: justify;
|
| 1421 |
-
justify-content: space-between;
|
| 1422 |
-
-webkit-box-align: center;
|
| 1423 |
-
-ms-flex-align: center;
|
| 1424 |
-
align-items: center;
|
| 1425 |
-
}
|
| 1426 |
-
|
| 1427 |
-
.icon__input {
|
| 1428 |
-
position: relative;
|
| 1429 |
-
}
|
| 1430 |
-
|
| 1431 |
-
.icon__input .icon {
|
| 1432 |
-
position: absolute;
|
| 1433 |
-
top: 7px;
|
| 1434 |
-
right: 12px;
|
| 1435 |
-
pointer-events: none;
|
| 1436 |
-
}
|
| 1437 |
-
|
| 1438 |
-
.button__primary:not(.hover__highlight) {
|
| 1439 |
-
background: #623cea;
|
| 1440 |
-
color: white;
|
| 1441 |
-
border-color: #623cea;
|
| 1442 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 1443 |
-
transition: all 0.3s ease-in-out 0s;
|
| 1444 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 1445 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 1446 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 1447 |
-
transition-property: background, color, box-shadow, border;
|
| 1448 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 1449 |
-
}
|
| 1450 |
-
|
| 1451 |
-
.button__primary:not(.hover__highlight):disabled {
|
| 1452 |
-
cursor: not-allowed;
|
| 1453 |
-
background: #fa7d51;
|
| 1454 |
-
}
|
| 1455 |
-
|
| 1456 |
-
.button__primary:not(.hover__highlight) .icon {
|
| 1457 |
-
color: #623cea;
|
| 1458 |
-
background: white;
|
| 1459 |
-
}
|
| 1460 |
-
|
| 1461 |
-
.button__primary.hover__highlight {
|
| 1462 |
-
color: #623cea;
|
| 1463 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 1464 |
-
}
|
| 1465 |
-
|
| 1466 |
-
.button__primary.hover__highlight .icon {
|
| 1467 |
-
background: #623cea;
|
| 1468 |
-
color: #ffffff;
|
| 1469 |
-
}
|
| 1470 |
-
|
| 1471 |
-
a.button__primary.active, a.button__primary:hover,
|
| 1472 |
-
button.button__primary.active,
|
| 1473 |
-
button.button__primary:hover {
|
| 1474 |
-
background: #4f25e8;
|
| 1475 |
-
color: white;
|
| 1476 |
-
border-color: #4f25e8;
|
| 1477 |
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
|
| 1478 |
-
}
|
| 1479 |
-
|
| 1480 |
-
a.button__primary.active:disabled, a.button__primary:hover:disabled,
|
| 1481 |
-
button.button__primary.active:disabled,
|
| 1482 |
-
button.button__primary:hover:disabled {
|
| 1483 |
-
cursor: not-allowed;
|
| 1484 |
-
background: #fa7d51;
|
| 1485 |
-
-webkit-box-shadow: none;
|
| 1486 |
-
box-shadow: none;
|
| 1487 |
-
}
|
| 1488 |
-
|
| 1489 |
-
a.button__primary.hover__highlight:hover .icon,
|
| 1490 |
-
button.button__primary.hover__highlight:hover .icon {
|
| 1491 |
-
background: white;
|
| 1492 |
-
color: #623cea;
|
| 1493 |
-
}
|
| 1494 |
-
|
| 1495 |
-
.button__secondary:not(.hover__highlight) {
|
| 1496 |
-
background: #fa7d51;
|
| 1497 |
-
color: white;
|
| 1498 |
-
border-color: #fa7d51;
|
| 1499 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 1500 |
-
transition: all 0.3s ease-in-out 0s;
|
| 1501 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 1502 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 1503 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 1504 |
-
transition-property: background, color, box-shadow, border;
|
| 1505 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 1506 |
-
}
|
| 1507 |
-
|
| 1508 |
-
.button__secondary:not(.hover__highlight):disabled {
|
| 1509 |
-
cursor: not-allowed;
|
| 1510 |
-
background: #fa7d51;
|
| 1511 |
-
}
|
| 1512 |
-
|
| 1513 |
-
.button__secondary:not(.hover__highlight) .icon {
|
| 1514 |
-
color: #fa7d51;
|
| 1515 |
-
background: white;
|
| 1516 |
-
}
|
| 1517 |
-
|
| 1518 |
-
.button__secondary.hover__highlight {
|
| 1519 |
-
color: #623cea;
|
| 1520 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 1521 |
-
}
|
| 1522 |
-
|
| 1523 |
-
.button__secondary.hover__highlight .icon {
|
| 1524 |
-
background: #623cea;
|
| 1525 |
-
color: #ffffff;
|
| 1526 |
-
}
|
| 1527 |
-
|
| 1528 |
-
a.button__secondary.active, a.button__secondary:hover,
|
| 1529 |
-
button.button__secondary.active,
|
| 1530 |
-
button.button__secondary:hover {
|
| 1531 |
-
background: #f96a38;
|
| 1532 |
-
color: white;
|
| 1533 |
-
border-color: #f96a38;
|
| 1534 |
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
|
| 1535 |
-
}
|
| 1536 |
-
|
| 1537 |
-
a.button__secondary.active:disabled, a.button__secondary:hover:disabled,
|
| 1538 |
-
button.button__secondary.active:disabled,
|
| 1539 |
-
button.button__secondary:hover:disabled {
|
| 1540 |
-
cursor: not-allowed;
|
| 1541 |
-
background: #fa7d51;
|
| 1542 |
-
-webkit-box-shadow: none;
|
| 1543 |
-
box-shadow: none;
|
| 1544 |
-
}
|
| 1545 |
-
|
| 1546 |
-
a.button__secondary.hover__highlight:hover .icon,
|
| 1547 |
-
button.button__secondary.hover__highlight:hover .icon {
|
| 1548 |
-
background: white;
|
| 1549 |
-
color: #fa7d51;
|
| 1550 |
-
}
|
| 1551 |
-
|
| 1552 |
-
.button__success:not(.hover__highlight) {
|
| 1553 |
-
background: #05cb6b;
|
| 1554 |
-
color: white;
|
| 1555 |
-
border-color: #05cb6b;
|
| 1556 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 1557 |
-
transition: all 0.3s ease-in-out 0s;
|
| 1558 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 1559 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 1560 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 1561 |
-
transition-property: background, color, box-shadow, border;
|
| 1562 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 1563 |
-
}
|
| 1564 |
-
|
| 1565 |
-
.button__success:not(.hover__highlight):disabled {
|
| 1566 |
-
cursor: not-allowed;
|
| 1567 |
-
background: #fa7d51;
|
| 1568 |
-
}
|
| 1569 |
-
|
| 1570 |
-
.button__success:not(.hover__highlight) .icon {
|
| 1571 |
-
color: #05cb6b;
|
| 1572 |
-
background: white;
|
| 1573 |
-
}
|
| 1574 |
-
|
| 1575 |
-
.button__success.hover__highlight {
|
| 1576 |
-
color: #623cea;
|
| 1577 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 1578 |
-
}
|
| 1579 |
-
|
| 1580 |
-
.button__success.hover__highlight .icon {
|
| 1581 |
-
background: #623cea;
|
| 1582 |
-
color: #ffffff;
|
| 1583 |
-
}
|
| 1584 |
-
|
| 1585 |
-
a.button__success.active, a.button__success:hover,
|
| 1586 |
-
button.button__success.active,
|
| 1587 |
-
button.button__success:hover {
|
| 1588 |
-
background: #04b25e;
|
| 1589 |
-
color: white;
|
| 1590 |
-
border-color: #04b25e;
|
| 1591 |
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
|
| 1592 |
-
}
|
| 1593 |
-
|
| 1594 |
-
a.button__success.active:disabled, a.button__success:hover:disabled,
|
| 1595 |
-
button.button__success.active:disabled,
|
| 1596 |
-
button.button__success:hover:disabled {
|
| 1597 |
-
cursor: not-allowed;
|
| 1598 |
-
background: #fa7d51;
|
| 1599 |
-
-webkit-box-shadow: none;
|
| 1600 |
-
box-shadow: none;
|
| 1601 |
-
}
|
| 1602 |
-
|
| 1603 |
-
a.button__success.hover__highlight:hover .icon,
|
| 1604 |
-
button.button__success.hover__highlight:hover .icon {
|
| 1605 |
-
background: white;
|
| 1606 |
-
color: #05cb6b;
|
| 1607 |
-
}
|
| 1608 |
-
|
| 1609 |
-
.button__danger:not(.hover__highlight) {
|
| 1610 |
-
background: #e0061a;
|
| 1611 |
-
color: white;
|
| 1612 |
-
border-color: #e0061a;
|
| 1613 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 1614 |
-
transition: all 0.3s ease-in-out 0s;
|
| 1615 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 1616 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 1617 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 1618 |
-
transition-property: background, color, box-shadow, border;
|
| 1619 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 1620 |
-
}
|
| 1621 |
-
|
| 1622 |
-
.button__danger:not(.hover__highlight):disabled {
|
| 1623 |
-
cursor: not-allowed;
|
| 1624 |
-
background: #fa7d51;
|
| 1625 |
-
}
|
| 1626 |
-
|
| 1627 |
-
.button__danger:not(.hover__highlight) .icon {
|
| 1628 |
-
color: #e0061a;
|
| 1629 |
-
background: white;
|
| 1630 |
-
}
|
| 1631 |
-
|
| 1632 |
-
.button__danger.hover__highlight {
|
| 1633 |
-
color: #623cea;
|
| 1634 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 1635 |
-
}
|
| 1636 |
-
|
| 1637 |
-
.button__danger.hover__highlight .icon {
|
| 1638 |
-
background: #623cea;
|
| 1639 |
-
color: #ffffff;
|
| 1640 |
-
}
|
| 1641 |
-
|
| 1642 |
-
a.button__danger.active, a.button__danger:hover,
|
| 1643 |
-
button.button__danger.active,
|
| 1644 |
-
button.button__danger:hover {
|
| 1645 |
-
background: #c70517;
|
| 1646 |
-
color: white;
|
| 1647 |
-
border-color: #c70517;
|
| 1648 |
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
|
| 1649 |
-
}
|
| 1650 |
-
|
| 1651 |
-
a.button__danger.active:disabled, a.button__danger:hover:disabled,
|
| 1652 |
-
button.button__danger.active:disabled,
|
| 1653 |
-
button.button__danger:hover:disabled {
|
| 1654 |
-
cursor: not-allowed;
|
| 1655 |
-
background: #fa7d51;
|
| 1656 |
-
-webkit-box-shadow: none;
|
| 1657 |
-
box-shadow: none;
|
| 1658 |
-
}
|
| 1659 |
-
|
| 1660 |
-
a.button__danger.hover__highlight:hover .icon,
|
| 1661 |
-
button.button__danger.hover__highlight:hover .icon {
|
| 1662 |
-
background: white;
|
| 1663 |
-
color: #e0061a;
|
| 1664 |
-
}
|
| 1665 |
-
|
| 1666 |
-
.button__info:not(.hover__highlight) {
|
| 1667 |
-
background: #00b2fc;
|
| 1668 |
-
color: white;
|
| 1669 |
-
border-color: #00b2fc;
|
| 1670 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 1671 |
-
transition: all 0.3s ease-in-out 0s;
|
| 1672 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 1673 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 1674 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 1675 |
-
transition-property: background, color, box-shadow, border;
|
| 1676 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 1677 |
-
}
|
| 1678 |
-
|
| 1679 |
-
.button__info:not(.hover__highlight):disabled {
|
| 1680 |
-
cursor: not-allowed;
|
| 1681 |
-
background: #fa7d51;
|
| 1682 |
-
}
|
| 1683 |
-
|
| 1684 |
-
.button__info:not(.hover__highlight) .icon {
|
| 1685 |
-
color: #00b2fc;
|
| 1686 |
-
background: white;
|
| 1687 |
-
}
|
| 1688 |
-
|
| 1689 |
-
.button__info.hover__highlight {
|
| 1690 |
-
color: #623cea;
|
| 1691 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 1692 |
-
}
|
| 1693 |
-
|
| 1694 |
-
.button__info.hover__highlight .icon {
|
| 1695 |
-
background: #623cea;
|
| 1696 |
-
color: #ffffff;
|
| 1697 |
-
}
|
| 1698 |
-
|
| 1699 |
-
a.button__info.active, a.button__info:hover,
|
| 1700 |
-
button.button__info.active,
|
| 1701 |
-
button.button__info:hover {
|
| 1702 |
-
background: #00a0e3;
|
| 1703 |
-
color: white;
|
| 1704 |
-
border-color: #00a0e3;
|
| 1705 |
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
|
| 1706 |
-
}
|
| 1707 |
-
|
| 1708 |
-
a.button__info.active:disabled, a.button__info:hover:disabled,
|
| 1709 |
-
button.button__info.active:disabled,
|
| 1710 |
-
button.button__info:hover:disabled {
|
| 1711 |
-
cursor: not-allowed;
|
| 1712 |
-
background: #fa7d51;
|
| 1713 |
-
-webkit-box-shadow: none;
|
| 1714 |
-
box-shadow: none;
|
| 1715 |
-
}
|
| 1716 |
-
|
| 1717 |
-
a.button__info.hover__highlight:hover .icon,
|
| 1718 |
-
button.button__info.hover__highlight:hover .icon {
|
| 1719 |
-
background: white;
|
| 1720 |
-
color: #00b2fc;
|
| 1721 |
-
}
|
| 1722 |
-
|
| 1723 |
-
.button__dark:not(.hover__highlight) {
|
| 1724 |
-
background: #22282d;
|
| 1725 |
-
color: white;
|
| 1726 |
-
border-color: #22282d;
|
| 1727 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 1728 |
-
transition: all 0.3s ease-in-out 0s;
|
| 1729 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 1730 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 1731 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 1732 |
-
transition-property: background, color, box-shadow, border;
|
| 1733 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 1734 |
-
}
|
| 1735 |
-
|
| 1736 |
-
.button__dark:not(.hover__highlight):disabled {
|
| 1737 |
-
cursor: not-allowed;
|
| 1738 |
-
background: #fa7d51;
|
| 1739 |
-
}
|
| 1740 |
-
|
| 1741 |
-
.button__dark:not(.hover__highlight) .icon {
|
| 1742 |
-
color: #22282d;
|
| 1743 |
-
background: white;
|
| 1744 |
-
}
|
| 1745 |
-
|
| 1746 |
-
.button__dark.hover__highlight {
|
| 1747 |
-
color: #623cea;
|
| 1748 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 1749 |
-
}
|
| 1750 |
-
|
| 1751 |
-
.button__dark.hover__highlight .icon {
|
| 1752 |
-
background: #623cea;
|
| 1753 |
-
color: #ffffff;
|
| 1754 |
-
}
|
| 1755 |
-
|
| 1756 |
-
a.button__dark.active, a.button__dark:hover,
|
| 1757 |
-
button.button__dark.active,
|
| 1758 |
-
button.button__dark:hover {
|
| 1759 |
-
background: #171b1e;
|
| 1760 |
-
color: white;
|
| 1761 |
-
border-color: #171b1e;
|
| 1762 |
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
|
| 1763 |
-
}
|
| 1764 |
-
|
| 1765 |
-
a.button__dark.active:disabled, a.button__dark:hover:disabled,
|
| 1766 |
-
button.button__dark.active:disabled,
|
| 1767 |
-
button.button__dark:hover:disabled {
|
| 1768 |
-
cursor: not-allowed;
|
| 1769 |
-
background: #fa7d51;
|
| 1770 |
-
-webkit-box-shadow: none;
|
| 1771 |
-
box-shadow: none;
|
| 1772 |
-
}
|
| 1773 |
-
|
| 1774 |
-
a.button__dark.hover__highlight:hover .icon,
|
| 1775 |
-
button.button__dark.hover__highlight:hover .icon {
|
| 1776 |
-
background: white;
|
| 1777 |
-
color: #22282d;
|
| 1778 |
-
}
|
| 1779 |
-
|
| 1780 |
-
.button__white:not(.hover__highlight) {
|
| 1781 |
-
background: #ffffff;
|
| 1782 |
-
color: #623cea;
|
| 1783 |
-
border-color: #ffffff;
|
| 1784 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 1785 |
-
transition: all 0.3s ease-in-out 0s;
|
| 1786 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 1787 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 1788 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 1789 |
-
transition-property: background, color, box-shadow, border;
|
| 1790 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 1791 |
-
}
|
| 1792 |
-
|
| 1793 |
-
.button__white:not(.hover__highlight):disabled {
|
| 1794 |
-
cursor: not-allowed;
|
| 1795 |
-
background: #fa7d51;
|
| 1796 |
-
}
|
| 1797 |
-
|
| 1798 |
-
.button__white:not(.hover__highlight) .icon {
|
| 1799 |
-
color: #ffffff;
|
| 1800 |
-
background: #623cea;
|
| 1801 |
-
}
|
| 1802 |
-
|
| 1803 |
-
.button__white.hover__highlight {
|
| 1804 |
-
color: #623cea;
|
| 1805 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 1806 |
-
}
|
| 1807 |
-
|
| 1808 |
-
.button__white.hover__highlight .icon {
|
| 1809 |
-
background: #623cea;
|
| 1810 |
-
color: #ffffff;
|
| 1811 |
-
}
|
| 1812 |
-
|
| 1813 |
-
a.button__white.active, a.button__white:hover,
|
| 1814 |
-
button.button__white.active,
|
| 1815 |
-
button.button__white:hover {
|
| 1816 |
-
background: #f2f2f2;
|
| 1817 |
-
color: #623cea;
|
| 1818 |
-
border-color: #f2f2f2;
|
| 1819 |
-
text-shadow: 0 1px 1px rgba(98, 60, 234, 0.3);
|
| 1820 |
-
}
|
| 1821 |
-
|
| 1822 |
-
a.button__white.active:disabled, a.button__white:hover:disabled,
|
| 1823 |
-
button.button__white.active:disabled,
|
| 1824 |
-
button.button__white:hover:disabled {
|
| 1825 |
-
cursor: not-allowed;
|
| 1826 |
-
background: #fa7d51;
|
| 1827 |
-
-webkit-box-shadow: none;
|
| 1828 |
-
box-shadow: none;
|
| 1829 |
-
}
|
| 1830 |
-
|
| 1831 |
-
a.button__white.hover__highlight:hover .icon,
|
| 1832 |
-
button.button__white.hover__highlight:hover .icon {
|
| 1833 |
-
background: #623cea;
|
| 1834 |
-
color: #ffffff;
|
| 1835 |
-
}
|
| 1836 |
-
|
| 1837 |
-
.button__black:not(.hover__highlight) {
|
| 1838 |
-
background: #000000;
|
| 1839 |
-
color: white;
|
| 1840 |
-
border-color: #000000;
|
| 1841 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 1842 |
-
transition: all 0.3s ease-in-out 0s;
|
| 1843 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 1844 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 1845 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 1846 |
-
transition-property: background, color, box-shadow, border;
|
| 1847 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 1848 |
-
}
|
| 1849 |
-
|
| 1850 |
-
.button__black:not(.hover__highlight):disabled {
|
| 1851 |
-
cursor: not-allowed;
|
| 1852 |
-
background: #fa7d51;
|
| 1853 |
-
}
|
| 1854 |
-
|
| 1855 |
-
.button__black:not(.hover__highlight) .icon {
|
| 1856 |
-
color: #000000;
|
| 1857 |
-
background: white;
|
| 1858 |
-
}
|
| 1859 |
-
|
| 1860 |
-
.button__black.hover__highlight {
|
| 1861 |
-
color: #623cea;
|
| 1862 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 1863 |
-
}
|
| 1864 |
-
|
| 1865 |
-
.button__black.hover__highlight .icon {
|
| 1866 |
-
background: #623cea;
|
| 1867 |
-
color: #ffffff;
|
| 1868 |
-
}
|
| 1869 |
-
|
| 1870 |
-
a.button__black.active:disabled, a.button__black:hover:disabled,
|
| 1871 |
-
button.button__black.active:disabled,
|
| 1872 |
-
button.button__black:hover:disabled {
|
| 1873 |
-
cursor: not-allowed;
|
| 1874 |
-
background: #fa7d51;
|
| 1875 |
-
-webkit-box-shadow: none;
|
| 1876 |
-
box-shadow: none;
|
| 1877 |
-
}
|
| 1878 |
-
|
| 1879 |
-
a.button__black.hover__highlight:hover .icon,
|
| 1880 |
-
button.button__black.hover__highlight:hover .icon {
|
| 1881 |
-
background: white;
|
| 1882 |
-
color: #000000;
|
| 1883 |
-
}
|
| 1884 |
-
|
| 1885 |
-
.button__grey:not(.hover__highlight) {
|
| 1886 |
-
background: #f4f6fc;
|
| 1887 |
-
color: #623cea;
|
| 1888 |
-
border-color: #f4f6fc;
|
| 1889 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 1890 |
-
transition: all 0.3s ease-in-out 0s;
|
| 1891 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 1892 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 1893 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 1894 |
-
transition-property: background, color, box-shadow, border;
|
| 1895 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 1896 |
-
}
|
| 1897 |
-
|
| 1898 |
-
.button__grey:not(.hover__highlight):disabled {
|
| 1899 |
-
cursor: not-allowed;
|
| 1900 |
-
background: #fa7d51;
|
| 1901 |
-
}
|
| 1902 |
-
|
| 1903 |
-
.button__grey:not(.hover__highlight) .icon {
|
| 1904 |
-
color: #f4f6fc;
|
| 1905 |
-
background: #623cea;
|
| 1906 |
-
}
|
| 1907 |
-
|
| 1908 |
-
.button__grey.hover__highlight {
|
| 1909 |
-
color: #623cea;
|
| 1910 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 1911 |
-
}
|
| 1912 |
-
|
| 1913 |
-
.button__grey.hover__highlight .icon {
|
| 1914 |
-
background: #623cea;
|
| 1915 |
-
color: #ffffff;
|
| 1916 |
-
}
|
| 1917 |
-
|
| 1918 |
-
a.button__grey.active, a.button__grey:hover,
|
| 1919 |
-
button.button__grey.active,
|
| 1920 |
-
button.button__grey:hover {
|
| 1921 |
-
background: #e0e6f7;
|
| 1922 |
-
color: #623cea;
|
| 1923 |
-
border-color: #e0e6f7;
|
| 1924 |
-
text-shadow: 0 1px 1px rgba(98, 60, 234, 0.3);
|
| 1925 |
-
}
|
| 1926 |
-
|
| 1927 |
-
a.button__grey.active:disabled, a.button__grey:hover:disabled,
|
| 1928 |
-
button.button__grey.active:disabled,
|
| 1929 |
-
button.button__grey:hover:disabled {
|
| 1930 |
-
cursor: not-allowed;
|
| 1931 |
-
background: #fa7d51;
|
| 1932 |
-
-webkit-box-shadow: none;
|
| 1933 |
-
box-shadow: none;
|
| 1934 |
-
}
|
| 1935 |
-
|
| 1936 |
-
a.button__grey.hover__highlight:hover .icon,
|
| 1937 |
-
button.button__grey.hover__highlight:hover .icon {
|
| 1938 |
-
background: #623cea;
|
| 1939 |
-
color: #f4f6fc;
|
| 1940 |
-
}
|
| 1941 |
-
|
| 1942 |
-
.button__grey2:not(.hover__highlight) {
|
| 1943 |
-
background: #808da1;
|
| 1944 |
-
color: white;
|
| 1945 |
-
border-color: #808da1;
|
| 1946 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 1947 |
-
transition: all 0.3s ease-in-out 0s;
|
| 1948 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 1949 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 1950 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 1951 |
-
transition-property: background, color, box-shadow, border;
|
| 1952 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 1953 |
-
}
|
| 1954 |
-
|
| 1955 |
-
.button__grey2:not(.hover__highlight):disabled {
|
| 1956 |
-
cursor: not-allowed;
|
| 1957 |
-
background: #fa7d51;
|
| 1958 |
-
}
|
| 1959 |
-
|
| 1960 |
-
.button__grey2:not(.hover__highlight) .icon {
|
| 1961 |
-
color: #808da1;
|
| 1962 |
-
background: white;
|
| 1963 |
-
}
|
| 1964 |
-
|
| 1965 |
-
.button__grey2.hover__highlight {
|
| 1966 |
-
color: #623cea;
|
| 1967 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 1968 |
-
}
|
| 1969 |
-
|
| 1970 |
-
.button__grey2.hover__highlight .icon {
|
| 1971 |
-
background: #623cea;
|
| 1972 |
-
color: #ffffff;
|
| 1973 |
-
}
|
| 1974 |
-
|
| 1975 |
-
a.button__grey2.active, a.button__grey2:hover,
|
| 1976 |
-
button.button__grey2.active,
|
| 1977 |
-
button.button__grey2:hover {
|
| 1978 |
-
background: #718096;
|
| 1979 |
-
color: white;
|
| 1980 |
-
border-color: #718096;
|
| 1981 |
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
|
| 1982 |
-
}
|
| 1983 |
-
|
| 1984 |
-
a.button__grey2.active:disabled, a.button__grey2:hover:disabled,
|
| 1985 |
-
button.button__grey2.active:disabled,
|
| 1986 |
-
button.button__grey2:hover:disabled {
|
| 1987 |
-
cursor: not-allowed;
|
| 1988 |
-
background: #fa7d51;
|
| 1989 |
-
-webkit-box-shadow: none;
|
| 1990 |
-
box-shadow: none;
|
| 1991 |
-
}
|
| 1992 |
-
|
| 1993 |
-
a.button__grey2.hover__highlight:hover .icon,
|
| 1994 |
-
button.button__grey2.hover__highlight:hover .icon {
|
| 1995 |
-
background: white;
|
| 1996 |
-
color: #808da1;
|
| 1997 |
-
}
|
| 1998 |
-
|
| 1999 |
-
.button__twitter:not(.hover__highlight) {
|
| 2000 |
-
background: #1da1f2;
|
| 2001 |
-
color: white;
|
| 2002 |
-
border-color: #1da1f2;
|
| 2003 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 2004 |
-
transition: all 0.3s ease-in-out 0s;
|
| 2005 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 2006 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 2007 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 2008 |
-
transition-property: background, color, box-shadow, border;
|
| 2009 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 2010 |
-
}
|
| 2011 |
-
|
| 2012 |
-
.button__twitter:not(.hover__highlight):disabled {
|
| 2013 |
-
cursor: not-allowed;
|
| 2014 |
-
background: #fa7d51;
|
| 2015 |
-
}
|
| 2016 |
-
|
| 2017 |
-
.button__twitter:not(.hover__highlight) .icon {
|
| 2018 |
-
color: #1da1f2;
|
| 2019 |
-
background: white;
|
| 2020 |
-
}
|
| 2021 |
-
|
| 2022 |
-
.button__twitter.hover__highlight {
|
| 2023 |
-
color: #623cea;
|
| 2024 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 2025 |
-
}
|
| 2026 |
-
|
| 2027 |
-
.button__twitter.hover__highlight .icon {
|
| 2028 |
-
background: #623cea;
|
| 2029 |
-
color: #ffffff;
|
| 2030 |
-
}
|
| 2031 |
-
|
| 2032 |
-
a.button__twitter.active, a.button__twitter:hover,
|
| 2033 |
-
button.button__twitter.active,
|
| 2034 |
-
button.button__twitter:hover {
|
| 2035 |
-
background: #0d95e8;
|
| 2036 |
-
color: white;
|
| 2037 |
-
border-color: #0d95e8;
|
| 2038 |
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
|
| 2039 |
-
}
|
| 2040 |
-
|
| 2041 |
-
a.button__twitter.active:disabled, a.button__twitter:hover:disabled,
|
| 2042 |
-
button.button__twitter.active:disabled,
|
| 2043 |
-
button.button__twitter:hover:disabled {
|
| 2044 |
-
cursor: not-allowed;
|
| 2045 |
-
background: #fa7d51;
|
| 2046 |
-
-webkit-box-shadow: none;
|
| 2047 |
-
box-shadow: none;
|
| 2048 |
-
}
|
| 2049 |
-
|
| 2050 |
-
a.button__twitter.hover__highlight:hover .icon,
|
| 2051 |
-
button.button__twitter.hover__highlight:hover .icon {
|
| 2052 |
-
background: white;
|
| 2053 |
-
color: #1da1f2;
|
| 2054 |
-
}
|
| 2055 |
-
|
| 2056 |
-
.button__linkedin:not(.hover__highlight) {
|
| 2057 |
-
background: #0077b5;
|
| 2058 |
-
color: white;
|
| 2059 |
-
border-color: #0077b5;
|
| 2060 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 2061 |
-
transition: all 0.3s ease-in-out 0s;
|
| 2062 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 2063 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 2064 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 2065 |
-
transition-property: background, color, box-shadow, border;
|
| 2066 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 2067 |
-
}
|
| 2068 |
-
|
| 2069 |
-
.button__linkedin:not(.hover__highlight):disabled {
|
| 2070 |
-
cursor: not-allowed;
|
| 2071 |
-
background: #fa7d51;
|
| 2072 |
-
}
|
| 2073 |
-
|
| 2074 |
-
.button__linkedin:not(.hover__highlight) .icon {
|
| 2075 |
-
color: #0077b5;
|
| 2076 |
-
background: white;
|
| 2077 |
-
}
|
| 2078 |
-
|
| 2079 |
-
.button__linkedin.hover__highlight {
|
| 2080 |
-
color: #623cea;
|
| 2081 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 2082 |
-
}
|
| 2083 |
-
|
| 2084 |
-
.button__linkedin.hover__highlight .icon {
|
| 2085 |
-
background: #623cea;
|
| 2086 |
-
color: #ffffff;
|
| 2087 |
-
}
|
| 2088 |
-
|
| 2089 |
-
a.button__linkedin.active, a.button__linkedin:hover,
|
| 2090 |
-
button.button__linkedin.active,
|
| 2091 |
-
button.button__linkedin:hover {
|
| 2092 |
-
background: #00669c;
|
| 2093 |
-
color: white;
|
| 2094 |
-
border-color: #00669c;
|
| 2095 |
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
|
| 2096 |
-
}
|
| 2097 |
-
|
| 2098 |
-
a.button__linkedin.active:disabled, a.button__linkedin:hover:disabled,
|
| 2099 |
-
button.button__linkedin.active:disabled,
|
| 2100 |
-
button.button__linkedin:hover:disabled {
|
| 2101 |
-
cursor: not-allowed;
|
| 2102 |
-
background: #fa7d51;
|
| 2103 |
-
-webkit-box-shadow: none;
|
| 2104 |
-
box-shadow: none;
|
| 2105 |
-
}
|
| 2106 |
-
|
| 2107 |
-
a.button__linkedin.hover__highlight:hover .icon,
|
| 2108 |
-
button.button__linkedin.hover__highlight:hover .icon {
|
| 2109 |
-
background: white;
|
| 2110 |
-
color: #0077b5;
|
| 2111 |
-
}
|
| 2112 |
-
|
| 2113 |
-
.button__instagram:not(.hover__highlight) {
|
| 2114 |
-
background: #e1306c;
|
| 2115 |
-
color: white;
|
| 2116 |
-
border-color: #e1306c;
|
| 2117 |
-
-webkit-transition: all 0.3s ease-in-out 0s;
|
| 2118 |
-
transition: all 0.3s ease-in-out 0s;
|
| 2119 |
-
-webkit-transition-property: background, color, box-shadow, border;
|
| 2120 |
-
-webkit-transition-property: background, color, border, -webkit-box-shadow;
|
| 2121 |
-
transition-property: background, color, border, -webkit-box-shadow;
|
| 2122 |
-
transition-property: background, color, box-shadow, border;
|
| 2123 |
-
transition-property: background, color, box-shadow, border, -webkit-box-shadow;
|
| 2124 |
-
}
|
| 2125 |
-
|
| 2126 |
-
.button__instagram:not(.hover__highlight):disabled {
|
| 2127 |
-
cursor: not-allowed;
|
| 2128 |
-
background: #fa7d51;
|
| 2129 |
-
}
|
| 2130 |
-
|
| 2131 |
-
.button__instagram:not(.hover__highlight) .icon {
|
| 2132 |
-
color: #e1306c;
|
| 2133 |
-
background: white;
|
| 2134 |
-
}
|
| 2135 |
-
|
| 2136 |
-
.button__instagram.hover__highlight {
|
| 2137 |
-
color: #623cea;
|
| 2138 |
-
border-color: rgba(98, 60, 234, 0.2);
|
| 2139 |
-
}
|
| 2140 |
-
|
| 2141 |
-
.button__instagram.hover__highlight .icon {
|
| 2142 |
-
background: #623cea;
|
| 2143 |
-
color: #ffffff;
|
| 2144 |
-
}
|
| 2145 |
-
|
| 2146 |
-
a.button__instagram.active, a.button__instagram:hover,
|
| 2147 |
-
button.button__instagram.active,
|
| 2148 |
-
button.button__instagram:hover {
|
| 2149 |
-
background: #d81f5e;
|
| 2150 |
-
color: white;
|
| 2151 |
-
border-color: #d81f5e;
|
| 2152 |
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
|
| 2153 |
-
}
|
| 2154 |
-
|
| 2155 |
-
a.button__instagram.active:disabled, a.button__instagram:hover:disabled,
|
| 2156 |
-
button.button__instagram.active:disabled,
|
| 2157 |
-
button.button__instagram:hover:disabled {
|
| 2158 |
-
cursor: not-allowed;
|
| 2159 |
-
background: #fa7d51;
|
| 2160 |
-
-webkit-box-shadow: none;
|
| 2161 |
-
box-shadow: none;
|
| 2162 |
-
}
|
| 2163 |
-
|
| 2164 |
-
a.button__instagram.hover__highlight:hover .icon,
|
| 2165 |
-
button.button__instagram.hover__highlight:hover .icon {
|
| 2166 |
-
background: white;
|
| 2167 |
-
color: #e1306c;
|
| 2168 |
-
}
|
| 2169 |
-
|
| 2170 |
-
.disablecommentswrap .button {
|
| 2171 |
-
height: 50px;
|
| 2172 |
-
line-height: 50px;
|
| 2173 |
-
padding: 0;
|
| 2174 |
-
border-radius: 5px;
|
| 2175 |
-
color: #808da1;
|
| 2176 |
-
font-size: 15px;
|
| 2177 |
-
border: 0;
|
| 2178 |
-
font-weight: 700;
|
| 2179 |
-
padding: 0 20px;
|
| 2180 |
-
-webkit-box-shadow: none;
|
| 2181 |
-
box-shadow: none;
|
| 2182 |
-
font-family: "DM Sans", sans-serif;
|
| 2183 |
-
background: #f4f6fc;
|
| 2184 |
-
}
|
| 2185 |
-
|
| 2186 |
-
.disablecommentswrap .button:hover, .disablecommentswrap .button:focus {
|
| 2187 |
-
-webkit-box-shadow: none;
|
| 2188 |
-
box-shadow: none;
|
| 2189 |
-
border: 0;
|
| 2190 |
-
color: #ffffff;
|
| 2191 |
-
background: #05cb6b;
|
| 2192 |
-
}
|
| 2193 |
-
|
| 2194 |
-
.disablecommentswrap .button.button__fade {
|
| 2195 |
-
display: -webkit-box;
|
| 2196 |
-
display: -ms-flexbox;
|
| 2197 |
-
display: flex;
|
| 2198 |
-
-webkit-box-align: center;
|
| 2199 |
-
-ms-flex-align: center;
|
| 2200 |
-
align-items: center;
|
| 2201 |
-
min-width: 190px;
|
| 2202 |
-
-webkit-box-pack: center;
|
| 2203 |
-
-ms-flex-pack: center;
|
| 2204 |
-
justify-content: center;
|
| 2205 |
-
}
|
| 2206 |
-
|
| 2207 |
-
@media (max-width: 991.98px) {
|
| 2208 |
-
.disablecommentswrap .button {
|
| 2209 |
-
height: 50px;
|
| 2210 |
-
line-height: 46px;
|
| 2211 |
-
font-size: 13px;
|
| 2212 |
-
}
|
| 2213 |
-
}
|
| 2214 |
-
|
| 2215 |
-
.disablecommentswrap .button__delete {
|
| 2216 |
-
color: #ffffff;
|
| 2217 |
-
background: #e0061a;
|
| 2218 |
-
}
|
| 2219 |
-
|
| 2220 |
-
.disablecommentswrap .button__delete:hover, .disablecommentswrap .button__delete:focus {
|
| 2221 |
-
background: red;
|
| 2222 |
-
color: #ffffff;
|
| 2223 |
-
}
|
| 2224 |
-
|
| 2225 |
-
.disablecommentswrap .button__success {
|
| 2226 |
-
color: #ffffff;
|
| 2227 |
-
background: #05cb6b;
|
| 2228 |
-
opacity: 0.6;
|
| 2229 |
-
}
|
| 2230 |
-
|
| 2231 |
-
.disablecommentswrap .button__success:hover, .disablecommentswrap .button__success:focus {
|
| 2232 |
-
background: rgba(5, 203, 107, 0.9);
|
| 2233 |
-
color: #ffffff;
|
| 2234 |
-
}
|
| 2235 |
-
|
| 2236 |
-
.disablecommentswrap .button__success.form-dirty {
|
| 2237 |
-
opacity: 1;
|
| 2238 |
-
}
|
| 2239 |
-
|
| 2240 |
-
.disablecommentswrap .button--sm {
|
| 2241 |
-
height: 40px;
|
| 2242 |
-
line-height: 40px;
|
| 2243 |
-
}
|
| 2244 |
-
|
| 2245 |
-
.disablecommentswrap .button__group .button:not(:last-child) {
|
| 2246 |
-
margin-right: 15px;
|
| 2247 |
-
}
|
| 2248 |
-
|
| 2249 |
-
.cancelButton {
|
| 2250 |
-
padding: 0;
|
| 2251 |
-
border-radius: 5px;
|
| 2252 |
-
color: #808da1 !important;
|
| 2253 |
-
font-size: 15px;
|
| 2254 |
-
border: 0;
|
| 2255 |
-
font-weight: 700;
|
| 2256 |
-
padding: 0 20px;
|
| 2257 |
-
-webkit-box-shadow: none;
|
| 2258 |
-
box-shadow: none;
|
| 2259 |
-
outline: none;
|
| 2260 |
-
background: #f4f6fc !important;
|
| 2261 |
-
}
|
| 2262 |
-
|
| 2263 |
-
.confirmButton {
|
| 2264 |
-
padding: 0;
|
| 2265 |
-
border-radius: 5px;
|
| 2266 |
-
color: #fff !important;
|
| 2267 |
-
font-size: 15px;
|
| 2268 |
-
border: 0;
|
| 2269 |
-
font-weight: 700;
|
| 2270 |
-
padding: 0 20px;
|
| 2271 |
-
-webkit-box-shadow: none;
|
| 2272 |
-
box-shadow: none;
|
| 2273 |
-
outline: none;
|
| 2274 |
-
background: #e0061a !important;
|
| 2275 |
-
}
|
| 2276 |
-
|
| 2277 |
-
.confirmButton:focus {
|
| 2278 |
-
outline: none !important;
|
| 2279 |
-
-webkit-box-shadow: none !important;
|
| 2280 |
-
box-shadow: none !important;
|
| 2281 |
-
}
|
| 2282 |
-
|
| 2283 |
-
#eael-spinner {
|
| 2284 |
-
width: 18px;
|
| 2285 |
-
display: inline-block;
|
| 2286 |
-
float: left;
|
| 2287 |
-
margin: 0 5px 0 0;
|
| 2288 |
-
-webkit-transition-property: -webkit-transform;
|
| 2289 |
-
-webkit-transition-duration: 1.2s;
|
| 2290 |
-
-webkit-animation-name: rotate;
|
| 2291 |
-
-webkit-animation-iteration-count: infinite;
|
| 2292 |
-
-webkit-animation-timing-function: linear;
|
| 2293 |
-
-moz-transition-property: -moz-transform;
|
| 2294 |
-
-moz-animation-name: rotate;
|
| 2295 |
-
-moz-animation-duration: 1.2s;
|
| 2296 |
-
-moz-animation-iteration-count: infinite;
|
| 2297 |
-
-moz-animation-timing-function: linear;
|
| 2298 |
-
transition-property: -webkit-transform;
|
| 2299 |
-
transition-property: transform;
|
| 2300 |
-
transition-property: transform, -webkit-transform;
|
| 2301 |
-
animation-name: rotate;
|
| 2302 |
-
-webkit-animation-duration: 1.2s;
|
| 2303 |
-
animation-duration: 1.2s;
|
| 2304 |
-
animation-iteration-count: infinite;
|
| 2305 |
-
animation-timing-function: linear;
|
| 2306 |
-
}
|
| 2307 |
-
|
| 2308 |
-
@-webkit-keyframes rotate {
|
| 2309 |
-
from {
|
| 2310 |
-
-webkit-transform: rotate(0deg);
|
| 2311 |
-
}
|
| 2312 |
-
to {
|
| 2313 |
-
-webkit-transform: rotate(360deg);
|
| 2314 |
-
}
|
| 2315 |
-
}
|
| 2316 |
-
|
| 2317 |
-
@keyframes rotate {
|
| 2318 |
-
from {
|
| 2319 |
-
-webkit-transform: rotate(0deg);
|
| 2320 |
-
transform: rotate(0deg);
|
| 2321 |
-
}
|
| 2322 |
-
to {
|
| 2323 |
-
-webkit-transform: rotate(360deg);
|
| 2324 |
-
transform: rotate(360deg);
|
| 2325 |
-
}
|
| 2326 |
-
}
|
| 2327 |
-
|
| 2328 |
-
.disable__comment__alert {
|
| 2329 |
-
display: -webkit-box;
|
| 2330 |
-
display: -ms-flexbox;
|
| 2331 |
-
display: flex;
|
| 2332 |
-
-webkit-box-align: center;
|
| 2333 |
-
-ms-flex-align: center;
|
| 2334 |
-
align-items: center;
|
| 2335 |
-
padding: 10px 20px;
|
| 2336 |
-
border: 0;
|
| 2337 |
-
}
|
| 2338 |
-
|
| 2339 |
-
@media (max-width: 767.98px) {
|
| 2340 |
-
.disable__comment__alert {
|
| 2341 |
-
display: block;
|
| 2342 |
-
}
|
| 2343 |
-
.disable__comment__alert .button__group {
|
| 2344 |
-
margin-top: 20px;
|
| 2345 |
-
}
|
| 2346 |
-
}
|
| 2347 |
-
|
| 2348 |
-
.disable__comment__alert .alert__content {
|
| 2349 |
-
display: -webkit-box;
|
| 2350 |
-
display: -ms-flexbox;
|
| 2351 |
-
display: flex;
|
| 2352 |
-
-webkit-box-align: center;
|
| 2353 |
-
-ms-flex-align: center;
|
| 2354 |
-
align-items: center;
|
| 2355 |
-
padding-right: 20px;
|
| 2356 |
-
-ms-flex-wrap: wrap;
|
| 2357 |
-
flex-wrap: wrap;
|
| 2358 |
-
-webkit-box-flex: 1;
|
| 2359 |
-
-ms-flex: 1;
|
| 2360 |
-
flex: 1;
|
| 2361 |
-
}
|
| 2362 |
-
|
| 2363 |
-
@media (max-width: 767.98px) {
|
| 2364 |
-
.disable__comment__alert .alert__content {
|
| 2365 |
-
padding-right: 0;
|
| 2366 |
-
}
|
| 2367 |
-
}
|
| 2368 |
-
|
| 2369 |
-
@media (max-width: 575.98px) {
|
| 2370 |
-
.disable__comment__alert .alert__content {
|
| 2371 |
-
display: block;
|
| 2372 |
-
}
|
| 2373 |
-
}
|
| 2374 |
-
|
| 2375 |
-
.disable__comment__alert .alert__content img {
|
| 2376 |
-
margin-right: 15px;
|
| 2377 |
-
height: 30px;
|
| 2378 |
-
}
|
| 2379 |
-
|
| 2380 |
-
@media (max-width: 575.98px) {
|
| 2381 |
-
.disable__comment__alert .alert__content img {
|
| 2382 |
-
margin-bottom: 10px;
|
| 2383 |
-
}
|
| 2384 |
-
}
|
| 2385 |
-
|
| 2386 |
-
.disable__comment__alert .alert__content p {
|
| 2387 |
-
font-size: 18px;
|
| 2388 |
-
font-weight: 500;
|
| 2389 |
-
color: #22282d;
|
| 2390 |
-
font-family: "DM Sans", sans-serif;
|
| 2391 |
-
}
|
| 2392 |
-
|
| 2393 |
-
.disable__comment__alert .alert__content a.wpinsights-disable-comments-collect {
|
| 2394 |
-
color: #05cb6b;
|
| 2395 |
-
}
|
| 2396 |
-
|
| 2397 |
-
.disable__comment__alert .alert__content a.wpinsights-disable-comments-collect:hover,
|
| 2398 |
-
.disable__comment__alert .alert__content a.wpinsights-disable-comments-collect:visited,
|
| 2399 |
-
.disable__comment__alert .alert__content a.wpinsights-disable-comments-collect:focus {
|
| 2400 |
-
outline: none;
|
| 2401 |
-
border: none;
|
| 2402 |
-
-webkit-box-shadow: none;
|
| 2403 |
-
box-shadow: none;
|
| 2404 |
-
}
|
| 2405 |
-
|
| 2406 |
-
.disable__comment__alert .alert__content .wpinsights-data {
|
| 2407 |
-
margin-top: 10px;
|
| 2408 |
-
}
|
| 2409 |
-
|
| 2410 |
-
.disable__comment__alert .alert__content .wpinsights-data p {
|
| 2411 |
-
font-size: 13px;
|
| 2412 |
-
}
|
| 2413 |
-
|
| 2414 |
-
.disable__comment__alert .button__group {
|
| 2415 |
-
text-align: right;
|
| 2416 |
-
}
|
| 2417 |
-
|
| 2418 |
-
@media (max-width: 767.98px) {
|
| 2419 |
-
.disable__comment__alert .button__group {
|
| 2420 |
-
text-align: left;
|
| 2421 |
-
}
|
| 2422 |
-
}
|
| 2423 |
-
|
| 2424 |
-
.disable__comment__alert .button__group .button {
|
| 2425 |
-
margin-right: 0;
|
| 2426 |
-
margin-top: 5px;
|
| 2427 |
-
margin-bottom: 5px;
|
| 2428 |
-
}
|
| 2429 |
-
|
| 2430 |
-
.disable__comment__alert .button__group .button:not(:last-child) {
|
| 2431 |
-
margin-right: 0;
|
| 2432 |
-
}
|
| 2433 |
-
|
| 2434 |
-
.disable__comment__alert .button__group .button:not(:first-child) {
|
| 2435 |
-
margin-left: 15px;
|
| 2436 |
-
}
|
| 2437 |
-
|
| 2438 |
-
@media (max-width: 767.98px) {
|
| 2439 |
-
.disable__comment__alert .button__group .button {
|
| 2440 |
-
margin-right: 10px;
|
| 2441 |
-
}
|
| 2442 |
-
.disable__comment__alert .button__group .button:not(:last-child) {
|
| 2443 |
-
margin-right: 10px;
|
| 2444 |
-
}
|
| 2445 |
-
.disable__comment__alert .button__group .button:not(:first-child) {
|
| 2446 |
-
margin-left: 0;
|
| 2447 |
-
}
|
| 2448 |
-
}
|
| 2449 |
-
|
| 2450 |
-
.section__header {
|
| 2451 |
-
text-align: center;
|
| 2452 |
-
margin-bottom: 50px;
|
| 2453 |
-
}
|
| 2454 |
-
|
| 2455 |
-
.section__header h2 {
|
| 2456 |
-
font-size: 24px;
|
| 2457 |
-
font-weight: 700;
|
| 2458 |
-
color: #22282d;
|
| 2459 |
-
font-family: "DM Sans", sans-serif;
|
| 2460 |
-
}
|
| 2461 |
-
|
| 2462 |
-
.disable__comment__nav__wrap {
|
| 2463 |
-
background: #ffffff;
|
| 2464 |
-
border-radius: 5px;
|
| 2465 |
-
position: relative;
|
| 2466 |
-
}
|
| 2467 |
-
|
| 2468 |
-
.disable__comment__nav__wrap .plugin__version {
|
| 2469 |
-
position: absolute;
|
| 2470 |
-
font-size: 16px;
|
| 2471 |
-
font-weight: 500;
|
| 2472 |
-
color: #687b95;
|
| 2473 |
-
font-family: "DM Sans", sans-serif;
|
| 2474 |
-
top: 50%;
|
| 2475 |
-
right: 30px;
|
| 2476 |
-
-webkit-transform: translateY(-50%);
|
| 2477 |
-
transform: translateY(-50%);
|
| 2478 |
-
}
|
| 2479 |
-
|
| 2480 |
-
@media (max-width: 767.98px) {
|
| 2481 |
-
.disable__comment__nav__wrap .plugin__version {
|
| 2482 |
-
position: static;
|
| 2483 |
-
top: 0;
|
| 2484 |
-
-webkit-transform: translateY(0);
|
| 2485 |
-
transform: translateY(0);
|
| 2486 |
-
padding: 10px 10px 10px 20px;
|
| 2487 |
-
}
|
| 2488 |
-
}
|
| 2489 |
-
|
| 2490 |
-
.disable__comment__nav__wrap .disable__comment__nav {
|
| 2491 |
-
display: -webkit-box;
|
| 2492 |
-
display: -ms-flexbox;
|
| 2493 |
-
display: flex;
|
| 2494 |
-
-ms-flex-wrap: wrap;
|
| 2495 |
-
flex-wrap: wrap;
|
| 2496 |
-
margin-top: 0;
|
| 2497 |
-
}
|
| 2498 |
-
|
| 2499 |
-
.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item {
|
| 2500 |
-
margin-bottom: 0;
|
| 2501 |
-
}
|
| 2502 |
-
|
| 2503 |
-
.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item .disable__comment__nav__link {
|
| 2504 |
-
font-size: 16px;
|
| 2505 |
-
font-weight: 700;
|
| 2506 |
-
color: #687b95;
|
| 2507 |
-
text-transform: uppercase;
|
| 2508 |
-
font-family: "DM Sans", sans-serif;
|
| 2509 |
-
padding: 17px 20px;
|
| 2510 |
-
outline: none;
|
| 2511 |
-
-webkit-box-shadow: none;
|
| 2512 |
-
box-shadow: none;
|
| 2513 |
-
}
|
| 2514 |
-
|
| 2515 |
-
.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item .disable__comment__nav__link.active {
|
| 2516 |
-
color: #22282d;
|
| 2517 |
-
position: relative;
|
| 2518 |
-
}
|
| 2519 |
-
|
| 2520 |
-
.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item .disable__comment__nav__link.active:before {
|
| 2521 |
-
position: absolute;
|
| 2522 |
-
left: 0;
|
| 2523 |
-
right: 0;
|
| 2524 |
-
bottom: 0;
|
| 2525 |
-
height: 2px;
|
| 2526 |
-
background: #e0061a;
|
| 2527 |
-
content: "";
|
| 2528 |
-
}
|
| 2529 |
-
|
| 2530 |
-
@media (max-width: 991.98px) {
|
| 2531 |
-
.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item .disable__comment__nav__link {
|
| 2532 |
-
font-size: 18px;
|
| 2533 |
-
}
|
| 2534 |
-
}
|
| 2535 |
-
|
| 2536 |
-
@media (max-width: 575.98px) {
|
| 2537 |
-
.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item .disable__comment__nav__link {
|
| 2538 |
-
font-size: 16px;
|
| 2539 |
-
}
|
| 2540 |
-
}
|
| 2541 |
-
|
| 2542 |
-
.disable__comment__tab {
|
| 2543 |
-
padding-top: 25px;
|
| 2544 |
-
}
|
| 2545 |
-
|
| 2546 |
-
.disable__comment__tab__item {
|
| 2547 |
-
display: none;
|
| 2548 |
-
}
|
| 2549 |
-
|
| 2550 |
-
.disable__comment__tab__item.show {
|
| 2551 |
-
display: block;
|
| 2552 |
-
}
|
| 2553 |
-
|
| 2554 |
-
.sites_list_wrapper .sites_list {
|
| 2555 |
-
display: -webkit-box;
|
| 2556 |
-
display: -ms-flexbox;
|
| 2557 |
-
display: flex;
|
| 2558 |
-
width: 100%;
|
| 2559 |
-
-ms-flex-wrap: wrap;
|
| 2560 |
-
flex-wrap: wrap;
|
| 2561 |
-
}
|
| 2562 |
-
|
| 2563 |
-
.sites_list_wrapper .sites_list .subsite__checklist__item {
|
| 2564 |
-
-webkit-box-flex: 0;
|
| 2565 |
-
-ms-flex: 0 0 285px;
|
| 2566 |
-
flex: 0 0 285px;
|
| 2567 |
-
}
|
| 2568 |
-
|
| 2569 |
-
.sites_list_wrapper .sites_list .subsite__checklist__item label {
|
| 2570 |
-
word-break: break-all;
|
| 2571 |
-
}
|
| 2572 |
-
|
| 2573 |
-
.disable__comment__option .title {
|
| 2574 |
-
font-size: 22px;
|
| 2575 |
-
font-weight: 500;
|
| 2576 |
-
color: #22282d;
|
| 2577 |
-
margin-bottom: 5px;
|
| 2578 |
-
}
|
| 2579 |
-
|
| 2580 |
-
.disable__comment__option .subtitle {
|
| 2581 |
-
color: #687b95;
|
| 2582 |
-
font-size: 14px;
|
| 2583 |
-
font-family: "DM Sans", sans-serif;
|
| 2584 |
-
font-weight: 400;
|
| 2585 |
-
padding-left: 0;
|
| 2586 |
-
line-height: 1.5;
|
| 2587 |
-
}
|
| 2588 |
-
|
| 2589 |
-
.disable__comment__option .subtitle .danger {
|
| 2590 |
-
color: #e0061a;
|
| 2591 |
-
font-weight: 500;
|
| 2592 |
-
}
|
| 2593 |
-
|
| 2594 |
-
.disable__comment__option .disable_option {
|
| 2595 |
-
border-radius: 5px;
|
| 2596 |
-
}
|
| 2597 |
-
|
| 2598 |
-
.disable__comment__option .disable_option h3 {
|
| 2599 |
-
font-size: 18px;
|
| 2600 |
-
font-weight: 500;
|
| 2601 |
-
color: #22282d;
|
| 2602 |
-
font-family: "DM Sans", sans-serif;
|
| 2603 |
-
position: relative;
|
| 2604 |
-
line-height: 1.3;
|
| 2605 |
-
display: block;
|
| 2606 |
-
margin-bottom: 15px;
|
| 2607 |
-
}
|
| 2608 |
-
|
| 2609 |
-
.disable__comment__option .disable_option input[type="radio"] {
|
| 2610 |
-
display: none;
|
| 2611 |
-
}
|
| 2612 |
-
|
| 2613 |
-
.disable__comment__option .disable_option input[type="radio"]:checked ~ label:before {
|
| 2614 |
-
border-color: #05cb6b;
|
| 2615 |
-
}
|
| 2616 |
-
|
| 2617 |
-
.disable__comment__option .disable_option input[type="radio"]:checked ~ label:after {
|
| 2618 |
-
opacity: 1;
|
| 2619 |
-
}
|
| 2620 |
-
|
| 2621 |
-
.disable__comment__option .disable_option input[type="radio"] ~ label {
|
| 2622 |
-
font-size: 18px;
|
| 2623 |
-
font-weight: 500;
|
| 2624 |
-
color: #22282d;
|
| 2625 |
-
font-family: "DM Sans", sans-serif;
|
| 2626 |
-
position: relative;
|
| 2627 |
-
line-height: 1.3;
|
| 2628 |
-
padding-left: 25px;
|
| 2629 |
-
display: block;
|
| 2630 |
-
margin-bottom: 15px;
|
| 2631 |
-
}
|
| 2632 |
-
|
| 2633 |
-
.disable__comment__option .disable_option input[type="radio"] ~ label:before {
|
| 2634 |
-
position: absolute;
|
| 2635 |
-
top: 4px;
|
| 2636 |
-
left: 0;
|
| 2637 |
-
height: 12px;
|
| 2638 |
-
width: 12px;
|
| 2639 |
-
border-radius: 50%;
|
| 2640 |
-
border: 1px solid #687b95;
|
| 2641 |
-
content: "";
|
| 2642 |
-
}
|
| 2643 |
-
|
| 2644 |
-
.disable__comment__option .disable_option input[type="radio"] ~ label:after {
|
| 2645 |
-
position: absolute;
|
| 2646 |
-
top: 7px;
|
| 2647 |
-
left: 3px;
|
| 2648 |
-
height: 8px;
|
| 2649 |
-
width: 8px;
|
| 2650 |
-
border-radius: 50%;
|
| 2651 |
-
border: 0;
|
| 2652 |
-
background: #05cb6b;
|
| 2653 |
-
content: "";
|
| 2654 |
-
opacity: 0;
|
| 2655 |
-
-webkit-transition: all 0.3s ease;
|
| 2656 |
-
transition: all 0.3s ease;
|
| 2657 |
-
}
|
| 2658 |
-
|
| 2659 |
-
.disable__comment__option .disable_option input[type="radio"] ~ label span {
|
| 2660 |
-
font-size: 16px;
|
| 2661 |
-
font-weight: 400;
|
| 2662 |
-
color: #687b95;
|
| 2663 |
-
}
|
| 2664 |
-
|
| 2665 |
-
.disable__comment__option .disable_option .disable__checklist {
|
| 2666 |
-
display: -webkit-box;
|
| 2667 |
-
display: -ms-flexbox;
|
| 2668 |
-
display: flex;
|
| 2669 |
-
-ms-flex-wrap: wrap;
|
| 2670 |
-
flex-wrap: wrap;
|
| 2671 |
-
}
|
| 2672 |
-
|
| 2673 |
-
.disable__comment__option .disable_option .disable__checklist .disable__checklist__item {
|
| 2674 |
-
-webkit-box-flex: 0;
|
| 2675 |
-
-ms-flex: 0 0 140px;
|
| 2676 |
-
flex: 0 0 140px;
|
| 2677 |
-
margin-right: 10px;
|
| 2678 |
-
margin-bottom: 10px;
|
| 2679 |
-
}
|
| 2680 |
-
|
| 2681 |
-
.disable__comment__option .disable_option .disable__checklist .disable__checklist__item input {
|
| 2682 |
-
display: none;
|
| 2683 |
-
}
|
| 2684 |
-
|
| 2685 |
-
.disable__comment__option .disable_option .disable__checklist .disable__checklist__item input:checked ~ label:before {
|
| 2686 |
-
border-color: #00b2fc;
|
| 2687 |
-
background: #00b2fc;
|
| 2688 |
-
}
|
| 2689 |
-
|
| 2690 |
-
.disable__comment__option .disable_option .disable__checklist .disable__checklist__item input:checked ~ label:after {
|
| 2691 |
-
opacity: 1;
|
| 2692 |
-
}
|
| 2693 |
-
|
| 2694 |
-
.disable__comment__option .disable_option .disable__checklist .disable__checklist__item label {
|
| 2695 |
-
font-size: 16px;
|
| 2696 |
-
font-weight: 500;
|
| 2697 |
-
color: #687b95;
|
| 2698 |
-
font-family: "DM Sans", sans-serif;
|
| 2699 |
-
position: relative;
|
| 2700 |
-
line-height: 1.3;
|
| 2701 |
-
padding-left: 25px;
|
| 2702 |
-
display: block;
|
| 2703 |
-
}
|
| 2704 |
-
|
| 2705 |
-
.disable__comment__option .disable_option .disable__checklist .disable__checklist__item label:before {
|
| 2706 |
-
position: absolute;
|
| 2707 |
-
top: 4px;
|
| 2708 |
-
left: 0;
|
| 2709 |
-
height: 10px;
|
| 2710 |
-
width: 10px;
|
| 2711 |
-
border: 1px solid #687b95;
|
| 2712 |
-
content: "";
|
| 2713 |
-
}
|
| 2714 |
-
|
| 2715 |
-
.disable__comment__option .disable_option .disable__checklist .disable__checklist__item label:after {
|
| 2716 |
-
position: absolute;
|
| 2717 |
-
top: -2px;
|
| 2718 |
-
left: 2px;
|
| 2719 |
-
height: 11px;
|
| 2720 |
-
width: 11px;
|
| 2721 |
-
border: 0;
|
| 2722 |
-
content: url(../img/check.png);
|
| 2723 |
-
opacity: 0;
|
| 2724 |
-
-webkit-transition: all 0.3s ease;
|
| 2725 |
-
transition: all 0.3s ease;
|
| 2726 |
-
}
|
| 2727 |
-
|
| 2728 |
-
.disable__comment__option .disable_option .delete__checklist {
|
| 2729 |
-
display: -webkit-box;
|
| 2730 |
-
display: -ms-flexbox;
|
| 2731 |
-
display: flex;
|
| 2732 |
-
-ms-flex-wrap: wrap;
|
| 2733 |
-
flex-wrap: wrap;
|
| 2734 |
-
margin-bottom: 10px;
|
| 2735 |
-
}
|
| 2736 |
-
|
| 2737 |
-
.disable__comment__option .disable_option .delete__checklist.disabled__sites .delete__checklist__item {
|
| 2738 |
-
-webkit-box-flex: 0;
|
| 2739 |
-
-ms-flex: 0 1 200px;
|
| 2740 |
-
flex: 0 1 200px;
|
| 2741 |
-
}
|
| 2742 |
-
|
| 2743 |
-
.disable__comment__option .disable_option .delete__checklist.disabled__sites .delete__checklist__item:nth-child(1) {
|
| 2744 |
-
-ms-flex-preferred-size: 100%;
|
| 2745 |
-
flex-basis: 100%;
|
| 2746 |
-
}
|
| 2747 |
-
|
| 2748 |
-
.disable__comment__option .disable_option .delete__checklist.disabled__sites .delete__checklist__item:nth-child(1) label {
|
| 2749 |
-
display: inline-block;
|
| 2750 |
-
}
|
| 2751 |
-
|
| 2752 |
-
.disable__comment__option .disable_option .delete__checklist .delete__checklist__item {
|
| 2753 |
-
-webkit-box-flex: 0;
|
| 2754 |
-
-ms-flex: 0 0 130px;
|
| 2755 |
-
flex: 0 0 130px;
|
| 2756 |
-
margin-right: 10px;
|
| 2757 |
-
margin-bottom: 10px;
|
| 2758 |
-
}
|
| 2759 |
-
|
| 2760 |
-
.disable__comment__option .disable_option .delete__checklist .delete__checklist__item input {
|
| 2761 |
-
display: none;
|
| 2762 |
-
}
|
| 2763 |
-
|
| 2764 |
-
.disable__comment__option .disable_option .delete__checklist .delete__checklist__item input:checked ~ label:before {
|
| 2765 |
-
border-color: #00b2fc;
|
| 2766 |
-
background: #00b2fc;
|
| 2767 |
-
}
|
| 2768 |
-
|
| 2769 |
-
.disable__comment__option .disable_option .delete__checklist .delete__checklist__item input:checked ~ label:after {
|
| 2770 |
-
opacity: 1;
|
| 2771 |
-
}
|
| 2772 |
-
|
| 2773 |
-
.disable__comment__option .disable_option .delete__checklist .delete__checklist__item label {
|
| 2774 |
-
font-size: 18px;
|
| 2775 |
-
font-weight: 500;
|
| 2776 |
-
color: #687b95;
|
| 2777 |
-
font-family: "DM Sans", sans-serif;
|
| 2778 |
-
position: relative;
|
| 2779 |
-
line-height: 1.3;
|
| 2780 |
-
padding-left: 25px;
|
| 2781 |
-
display: block;
|
| 2782 |
-
}
|
| 2783 |
-
|
| 2784 |
-
.disable__comment__option .disable_option .delete__checklist .delete__checklist__item label:before {
|
| 2785 |
-
position: absolute;
|
| 2786 |
-
top: 4px;
|
| 2787 |
-
left: 0;
|
| 2788 |
-
height: 12px;
|
| 2789 |
-
width: 12px;
|
| 2790 |
-
border: 1px solid #687b95;
|
| 2791 |
-
content: "";
|
| 2792 |
-
}
|
| 2793 |
-
|
| 2794 |
-
.disable__comment__option .disable_option .delete__checklist .delete__checklist__item label:after {
|
| 2795 |
-
position: absolute;
|
| 2796 |
-
top: -2px;
|
| 2797 |
-
left: 2px;
|
| 2798 |
-
height: 13px;
|
| 2799 |
-
width: 13px;
|
| 2800 |
-
border: 0;
|
| 2801 |
-
content: url(../img/check.png);
|
| 2802 |
-
opacity: 0;
|
| 2803 |
-
-webkit-transition: all 0.3s ease;
|
| 2804 |
-
transition: all 0.3s ease;
|
| 2805 |
-
}
|
| 2806 |
-
|
| 2807 |
-
.disable__comment__option .disable_option .remove__checklist {
|
| 2808 |
-
display: -webkit-box;
|
| 2809 |
-
display: -ms-flexbox;
|
| 2810 |
-
display: flex;
|
| 2811 |
-
-ms-flex-wrap: wrap;
|
| 2812 |
-
flex-wrap: wrap;
|
| 2813 |
-
margin-bottom: 10px;
|
| 2814 |
-
}
|
| 2815 |
-
|
| 2816 |
-
.disable__comment__option .disable_option .remove__checklist.disabled__sites .remove__checklist__item {
|
| 2817 |
-
-webkit-box-flex: 0;
|
| 2818 |
-
-ms-flex: 0 1 200px;
|
| 2819 |
-
flex: 0 1 200px;
|
| 2820 |
-
}
|
| 2821 |
-
|
| 2822 |
-
.disable__comment__option .disable_option .remove__checklist.disabled__sites .remove__checklist__item:nth-child(1) {
|
| 2823 |
-
-ms-flex-preferred-size: 100%;
|
| 2824 |
-
flex-basis: 100%;
|
| 2825 |
-
}
|
| 2826 |
-
|
| 2827 |
-
.disable__comment__option .disable_option .remove__checklist.disabled__sites .remove__checklist__item:nth-child(1) label {
|
| 2828 |
-
display: inline-block;
|
| 2829 |
-
}
|
| 2830 |
-
|
| 2831 |
-
.disable__comment__option .disable_option .remove__checklist .remove__checklist__item {
|
| 2832 |
-
-webkit-box-flex: 0;
|
| 2833 |
-
-ms-flex: 0 0 130px;
|
| 2834 |
-
flex: 0 0 130px;
|
| 2835 |
-
margin-right: 10px;
|
| 2836 |
-
margin-bottom: 10px;
|
| 2837 |
-
}
|
| 2838 |
-
|
| 2839 |
-
.disable__comment__option .disable_option .remove__checklist .remove__checklist__item input {
|
| 2840 |
-
display: none;
|
| 2841 |
-
}
|
| 2842 |
-
|
| 2843 |
-
.disable__comment__option .disable_option .remove__checklist .remove__checklist__item input:checked ~ label:before {
|
| 2844 |
-
border-color: #00b2fc;
|
| 2845 |
-
background: #00b2fc;
|
| 2846 |
-
}
|
| 2847 |
-
|
| 2848 |
-
.disable__comment__option .disable_option .remove__checklist .remove__checklist__item input:checked ~ label:after {
|
| 2849 |
-
opacity: 1;
|
| 2850 |
-
}
|
| 2851 |
-
|
| 2852 |
-
.disable__comment__option .disable_option .remove__checklist .remove__checklist__item label {
|
| 2853 |
-
font-size: 18px;
|
| 2854 |
-
font-weight: 500;
|
| 2855 |
-
color: #687b95;
|
| 2856 |
-
font-family: "DM Sans", sans-serif;
|
| 2857 |
-
position: relative;
|
| 2858 |
-
line-height: 1.3;
|
| 2859 |
-
padding-left: 25px;
|
| 2860 |
-
display: block;
|
| 2861 |
-
}
|
| 2862 |
-
|
| 2863 |
-
.disable__comment__option .disable_option .remove__checklist .remove__checklist__item label:before {
|
| 2864 |
-
position: absolute;
|
| 2865 |
-
top: 4px;
|
| 2866 |
-
left: 0;
|
| 2867 |
-
height: 12px;
|
| 2868 |
-
width: 12px;
|
| 2869 |
-
border: 1px solid #687b95;
|
| 2870 |
-
content: "";
|
| 2871 |
-
}
|
| 2872 |
-
|
| 2873 |
-
.disable__comment__option .disable_option .remove__checklist .remove__checklist__item label:after {
|
| 2874 |
-
position: absolute;
|
| 2875 |
-
top: -2px;
|
| 2876 |
-
left: 2px;
|
| 2877 |
-
height: 13px;
|
| 2878 |
-
width: 13px;
|
| 2879 |
-
border: 0;
|
| 2880 |
-
content: url(../img/check.png);
|
| 2881 |
-
opacity: 0;
|
| 2882 |
-
-webkit-transition: all 0.3s ease;
|
| 2883 |
-
transition: all 0.3s ease;
|
| 2884 |
-
}
|
| 2885 |
-
|
| 2886 |
-
.disable__comment__option .disable_option .dissable__switch__item {
|
| 2887 |
-
margin-bottom: 10px;
|
| 2888 |
-
}
|
| 2889 |
-
|
| 2890 |
-
.disable__comment__option .disable_option .dissable__switch__item input {
|
| 2891 |
-
display: none;
|
| 2892 |
-
}
|
| 2893 |
-
|
| 2894 |
-
.disable__comment__option .disable_option .dissable__switch__item input:checked ~ label {
|
| 2895 |
-
color: #22282d;
|
| 2896 |
-
}
|
| 2897 |
-
|
| 2898 |
-
.disable__comment__option .disable_option .dissable__switch__item input:checked ~ label .switch {
|
| 2899 |
-
background: #05cb6b;
|
| 2900 |
-
}
|
| 2901 |
-
|
| 2902 |
-
.disable__comment__option .disable_option .dissable__switch__item input:checked ~ label .switch:before {
|
| 2903 |
-
left: 23px;
|
| 2904 |
-
}
|
| 2905 |
-
|
| 2906 |
-
.disable__comment__option .disable_option .dissable__switch__item input:checked ~ label .switch .switch__text {
|
| 2907 |
-
left: 5px;
|
| 2908 |
-
}
|
| 2909 |
-
|
| 2910 |
-
.disable__comment__option .disable_option .dissable__switch__item input:checked ~ label .switch .switch__text.on {
|
| 2911 |
-
display: block;
|
| 2912 |
-
}
|
| 2913 |
-
|
| 2914 |
-
.disable__comment__option .disable_option .dissable__switch__item input:checked ~ label .switch .switch__text.off {
|
| 2915 |
-
display: none;
|
| 2916 |
-
}
|
| 2917 |
-
|
| 2918 |
-
.disable__comment__option .disable_option .dissable__switch__item label {
|
| 2919 |
-
font-size: 16px;
|
| 2920 |
-
font-weight: 500;
|
| 2921 |
-
color: #687b95;
|
| 2922 |
-
font-family: "DM Sans", sans-serif;
|
| 2923 |
-
display: -webkit-inline-box;
|
| 2924 |
-
display: -ms-inline-flexbox;
|
| 2925 |
-
display: inline-flex;
|
| 2926 |
-
-webkit-box-align: center;
|
| 2927 |
-
-ms-flex-align: center;
|
| 2928 |
-
align-items: center;
|
| 2929 |
-
}
|
| 2930 |
-
|
| 2931 |
-
@media (max-width: 479.98px) {
|
| 2932 |
-
.disable__comment__option .disable_option .dissable__switch__item label {
|
| 2933 |
-
font-size: 14px;
|
| 2934 |
-
}
|
| 2935 |
-
}
|
| 2936 |
-
|
| 2937 |
-
.disable__comment__option .disable_option .dissable__switch__item label .switch {
|
| 2938 |
-
-webkit-box-flex: 0;
|
| 2939 |
-
-ms-flex: 0 0 35px;
|
| 2940 |
-
flex: 0 0 35px;
|
| 2941 |
-
height: 16px;
|
| 2942 |
-
width: 35px;
|
| 2943 |
-
margin-right: 20px;
|
| 2944 |
-
border-radius: 10px;
|
| 2945 |
-
background: #99a6b8;
|
| 2946 |
-
display: inline-block;
|
| 2947 |
-
font-size: 8px;
|
| 2948 |
-
text-transform: uppercase;
|
| 2949 |
-
font-weight: 400;
|
| 2950 |
-
color: #ffffff;
|
| 2951 |
-
font-family: "DM Sans", sans-serif;
|
| 2952 |
-
padding: 2px 5px;
|
| 2953 |
-
position: relative;
|
| 2954 |
-
-webkit-transition: all 0.3s ease;
|
| 2955 |
-
transition: all 0.3s ease;
|
| 2956 |
-
}
|
| 2957 |
-
|
| 2958 |
-
@media (max-width: 479.98px) {
|
| 2959 |
-
.disable__comment__option .disable_option .dissable__switch__item label .switch {
|
| 2960 |
-
font-size: 10px;
|
| 2961 |
-
}
|
| 2962 |
-
}
|
| 2963 |
-
|
| 2964 |
-
.disable__comment__option .disable_option .dissable__switch__item label .switch:before {
|
| 2965 |
-
position: absolute;
|
| 2966 |
-
top: 4px;
|
| 2967 |
-
left: 4px;
|
| 2968 |
-
border-radius: 50%;
|
| 2969 |
-
background: #ffffff;
|
| 2970 |
-
height: 8px;
|
| 2971 |
-
width: 8px;
|
| 2972 |
-
content: "";
|
| 2973 |
-
-webkit-transition: all 0.3s ease;
|
| 2974 |
-
transition: all 0.3s ease;
|
| 2975 |
-
}
|
| 2976 |
-
|
| 2977 |
-
.disable__comment__option .disable_option .dissable__switch__item label .switch .switch__text {
|
| 2978 |
-
position: absolute;
|
| 2979 |
-
top: 2px;
|
| 2980 |
-
left: 16px;
|
| 2981 |
-
-webkit-transition: all 0.3s ease;
|
| 2982 |
-
transition: all 0.3s ease;
|
| 2983 |
-
}
|
| 2984 |
-
|
| 2985 |
-
.disable__comment__option .disable_option .dissable__switch__item label .switch .switch__text.on {
|
| 2986 |
-
display: none;
|
| 2987 |
-
}
|
| 2988 |
-
|
| 2989 |
-
.disable__comment__option .disable_option .delete__feedback {
|
| 2990 |
-
margin-bottom: 10px;
|
| 2991 |
-
}
|
| 2992 |
-
|
| 2993 |
-
.disable__comment__option .disable_option .delete__feedback label {
|
| 2994 |
-
font-size: 14px;
|
| 2995 |
-
}
|
| 2996 |
-
|
| 2997 |
-
.disable__comment__option .disable_option .delete__feedback .delete__feedback__item {
|
| 2998 |
-
position: relative;
|
| 2999 |
-
display: inline-block;
|
| 3000 |
-
padding-right: 8px;
|
| 3001 |
-
}
|
| 3002 |
-
|
| 3003 |
-
.disable__comment__option .disable_option .delete__feedback .delete__feedback__item:not(:last-child):before {
|
| 3004 |
-
position: absolute;
|
| 3005 |
-
top: 7px;
|
| 3006 |
-
right: -2px;
|
| 3007 |
-
bottom: 7px;
|
| 3008 |
-
width: 2px;
|
| 3009 |
-
background: #687b95;
|
| 3010 |
-
content: "";
|
| 3011 |
-
}
|
| 3012 |
-
|
| 3013 |
-
.disable__comment__option .disable_option .delete__feedback .delete__feedback__item:last-child {
|
| 3014 |
-
padding-left: 8px;
|
| 3015 |
-
}
|
| 3016 |
-
|
| 3017 |
-
.disable__comment__option .disable_option .delete__feedback .delete__feedback__item a {
|
| 3018 |
-
font-size: 18px;
|
| 3019 |
-
font-weight: 500;
|
| 3020 |
-
color: #687b95;
|
| 3021 |
-
outline: none;
|
| 3022 |
-
-webkit-box-shadow: none;
|
| 3023 |
-
box-shadow: none;
|
| 3024 |
-
}
|
| 3025 |
-
|
| 3026 |
-
.disable__comment__option .disable_option .disable__option__description {
|
| 3027 |
-
font-size: 15px;
|
| 3028 |
-
font-weight: 400;
|
| 3029 |
-
line-height: 1.8;
|
| 3030 |
-
color: #687b95;
|
| 3031 |
-
font-family: "DM Sans", sans-serif;
|
| 3032 |
-
}
|
| 3033 |
-
|
| 3034 |
-
.disable__comment__option .disable_option .disable__option__description .danger {
|
| 3035 |
-
color: #e0061a;
|
| 3036 |
-
font-weight: 500;
|
| 3037 |
-
}
|
| 3038 |
-
|
| 3039 |
-
.disable__comment__option .total-comments {
|
| 3040 |
-
font-size: 16px;
|
| 3041 |
-
line-height: 26px;
|
| 3042 |
-
margin-top: 20px;
|
| 3043 |
-
color: #687b95;
|
| 3044 |
-
}
|
| 3045 |
-
|
| 3046 |
-
.subsite__checklist__item {
|
| 3047 |
-
-webkit-box-flex: 0;
|
| 3048 |
-
-ms-flex: 0 0 130px;
|
| 3049 |
-
flex: 0 0 130px;
|
| 3050 |
-
margin-right: 10px;
|
| 3051 |
-
margin-bottom: 10px;
|
| 3052 |
-
}
|
| 3053 |
-
|
| 3054 |
-
.subsite__checklist__item input {
|
| 3055 |
-
display: none;
|
| 3056 |
-
}
|
| 3057 |
-
|
| 3058 |
-
.subsite__checklist__item input:checked ~ label:before {
|
| 3059 |
-
border-color: #00b2fc;
|
| 3060 |
-
background: #00b2fc;
|
| 3061 |
-
}
|
| 3062 |
-
|
| 3063 |
-
.subsite__checklist__item input:checked ~ label:after {
|
| 3064 |
-
opacity: 1;
|
| 3065 |
-
}
|
| 3066 |
-
|
| 3067 |
-
.subsite__checklist__item label {
|
| 3068 |
-
font-size: 18px;
|
| 3069 |
-
font-weight: 500;
|
| 3070 |
-
color: #687b95;
|
| 3071 |
-
font-family: "DM Sans", sans-serif;
|
| 3072 |
-
position: relative;
|
| 3073 |
-
line-height: 1.3;
|
| 3074 |
-
padding-left: 25px;
|
| 3075 |
-
display: inline-block;
|
| 3076 |
-
}
|
| 3077 |
-
|
| 3078 |
-
.subsite__checklist__item label:before {
|
| 3079 |
-
position: absolute;
|
| 3080 |
-
top: 4px;
|
| 3081 |
-
left: 0;
|
| 3082 |
-
height: 12px;
|
| 3083 |
-
width: 12px;
|
| 3084 |
-
border: 1px solid #687b95;
|
| 3085 |
-
content: "";
|
| 3086 |
-
}
|
| 3087 |
-
|
| 3088 |
-
.subsite__checklist__item label:after {
|
| 3089 |
-
position: absolute;
|
| 3090 |
-
top: -2px;
|
| 3091 |
-
left: 2px;
|
| 3092 |
-
height: 13px;
|
| 3093 |
-
width: 13px;
|
| 3094 |
-
border: 0;
|
| 3095 |
-
content: url(../img/check.png);
|
| 3096 |
-
opacity: 0;
|
| 3097 |
-
-webkit-transition: all 0.3s ease;
|
| 3098 |
-
transition: all 0.3s ease;
|
| 3099 |
-
}
|
| 3100 |
-
|
| 3101 |
-
.paginationjs-pages ul {
|
| 3102 |
-
margin-top: 0;
|
| 3103 |
-
display: -webkit-box;
|
| 3104 |
-
display: -ms-flexbox;
|
| 3105 |
-
display: flex;
|
| 3106 |
-
-webkit-box-align: center;
|
| 3107 |
-
-ms-flex-align: center;
|
| 3108 |
-
align-items: center;
|
| 3109 |
-
}
|
| 3110 |
-
|
| 3111 |
-
.paginationjs-pages ul li a {
|
| 3112 |
-
font-size: 20px;
|
| 3113 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
| 3114 |
-
padding: 0 20px;
|
| 3115 |
-
cursor: pointer;
|
| 3116 |
-
color: #687b95;
|
| 3117 |
-
}
|
| 3118 |
-
|
| 3119 |
-
.paginationjs-pages ul li a:hover {
|
| 3120 |
-
color: #05cb6b;
|
| 3121 |
-
}
|
| 3122 |
-
|
| 3123 |
-
.paginationjs-pages ul li.paginationjs-next a {
|
| 3124 |
-
border-top-right-radius: 8px;
|
| 3125 |
-
border-bottom-right-radius: 8px;
|
| 3126 |
-
}
|
| 3127 |
-
|
| 3128 |
-
.paginationjs-pages ul li.paginationjs-prev a {
|
| 3129 |
-
border-top-left-radius: 8px;
|
| 3130 |
-
border-bottom-left-radius: 8px;
|
| 3131 |
-
}
|
| 3132 |
-
|
| 3133 |
-
.paginationjs-pages ul li.disabled a {
|
| 3134 |
-
cursor: not-allowed;
|
| 3135 |
-
background-color: rgba(0, 0, 0, 0.05);
|
| 3136 |
-
}
|
| 3137 |
-
|
| 3138 |
-
.paginationjs-pages ul li.disabled a:hover {
|
| 3139 |
-
color: #687b95;
|
| 3140 |
-
}
|
| 3141 |
-
|
| 3142 |
-
.has-pagination.disabled .paginationjs-pages li a {
|
| 3143 |
-
opacity: .3;
|
| 3144 |
-
}
|
| 3145 |
-
|
| 3146 |
-
.has-pagination.disabled .paginationjs-pages li a:hover {
|
| 3147 |
-
color: #687b95;
|
| 3148 |
-
}
|
| 3149 |
-
|
| 3150 |
-
.item__number__controller {
|
| 3151 |
-
-webkit-box-align: center;
|
| 3152 |
-
-ms-flex-align: center;
|
| 3153 |
-
align-items: center;
|
| 3154 |
-
}
|
| 3155 |
-
|
| 3156 |
-
.item__number__controller p {
|
| 3157 |
-
margin-right: 10px;
|
| 3158 |
-
}
|
| 3159 |
-
|
| 3160 |
-
.dc-select {
|
| 3161 |
-
position: relative;
|
| 3162 |
-
}
|
| 3163 |
-
|
| 3164 |
-
.dc-select .icon {
|
| 3165 |
-
position: absolute;
|
| 3166 |
-
}
|
| 3167 |
-
|
| 3168 |
-
.dc-select select {
|
| 3169 |
-
-webkit-appearance: none;
|
| 3170 |
-
-moz-appearance: none;
|
| 3171 |
-
appearance: none;
|
| 3172 |
-
}
|
| 3173 |
-
|
| 3174 |
-
.nothing-found {
|
| 3175 |
-
text-align: center;
|
| 3176 |
-
-webkit-box-flex: 1;
|
| 3177 |
-
-ms-flex: 1;
|
| 3178 |
-
flex: 1;
|
| 3179 |
-
}
|
| 3180 |
-
|
| 3181 |
-
.nothing-found p {
|
| 3182 |
-
font-size: 16px;
|
| 3183 |
-
font-weight: 400;
|
| 3184 |
-
color: #808da1;
|
| 3185 |
-
margin-bottom: 15px;
|
| 3186 |
-
}
|
| 3187 |
-
|
| 3188 |
-
.disable__switch {
|
| 3189 |
-
display: -webkit-box;
|
| 3190 |
-
display: -ms-flexbox;
|
| 3191 |
-
display: flex;
|
| 3192 |
-
-ms-flex-wrap: wrap;
|
| 3193 |
-
flex-wrap: wrap;
|
| 3194 |
-
}
|
| 3195 |
-
|
| 3196 |
-
.disable__switch .avatar__status {
|
| 3197 |
-
-webkit-box-flex: 0;
|
| 3198 |
-
-ms-flex: 0 0 170px;
|
| 3199 |
-
flex: 0 0 170px;
|
| 3200 |
-
}
|
| 3201 |
-
|
| 3202 |
-
.disable__switch .avatar__status label {
|
| 3203 |
-
color: #687b95 !important;
|
| 3204 |
-
display: inline-block !important;
|
| 3205 |
-
}
|
| 3206 |
-
|
| 3207 |
-
.dc-item__card_wrap {
|
| 3208 |
-
height: 100%;
|
| 3209 |
-
display: -webkit-box;
|
| 3210 |
-
display: -ms-flexbox;
|
| 3211 |
-
display: flex;
|
| 3212 |
-
}
|
| 3213 |
-
|
| 3214 |
-
.dc-item__card {
|
| 3215 |
-
background: #ffffff;
|
| 3216 |
-
padding: 10px;
|
| 3217 |
-
border-radius: 5px;
|
| 3218 |
-
margin-bottom: 30px;
|
| 3219 |
-
-webkit-box-flex: 1;
|
| 3220 |
-
-ms-flex-positive: 1;
|
| 3221 |
-
flex-grow: 1;
|
| 3222 |
-
}
|
| 3223 |
-
|
| 3224 |
-
.dc-item__card .thumb img {
|
| 3225 |
-
vertical-align: middle;
|
| 3226 |
-
border-style: none;
|
| 3227 |
-
}
|
| 3228 |
-
|
| 3229 |
-
.dc-item__card .card__content {
|
| 3230 |
-
padding: 25px 10px;
|
| 3231 |
-
text-align: center;
|
| 3232 |
-
}
|
| 3233 |
-
|
| 3234 |
-
.dc-item__card .card__content h3 {
|
| 3235 |
-
font-size: 20px;
|
| 3236 |
-
font-weight: 500;
|
| 3237 |
-
font-family: "DM Sans", sans-serif;
|
| 3238 |
-
color: #22282d;
|
| 3239 |
-
margin-bottom: 10px;
|
| 3240 |
-
}
|
| 3241 |
-
|
| 3242 |
-
.dc-item__card .card__content p {
|
| 3243 |
-
font-size: 14px;
|
| 3244 |
-
font-weight: 400;
|
| 3245 |
-
color: #687b95;
|
| 3246 |
-
line-height: 2.14;
|
| 3247 |
-
margin-bottom: 20px;
|
| 3248 |
-
}
|
| 3249 |
-
|
| 3250 |
-
.dc-tutorials {
|
| 3251 |
-
border-radius: 5px;
|
| 3252 |
-
max-width: 450px;
|
| 3253 |
-
padding-bottom: 25px;
|
| 3254 |
-
}
|
| 3255 |
-
|
| 3256 |
-
.dc-tutorials h3 {
|
| 3257 |
-
font-size: 20px;
|
| 3258 |
-
font-weight: 500;
|
| 3259 |
-
color: #22282d;
|
| 3260 |
-
font-family: "DM Sans", sans-serif;
|
| 3261 |
-
margin-bottom: 20px;
|
| 3262 |
-
}
|
| 3263 |
-
|
| 3264 |
-
@media (max-width: 479.98px) {
|
| 3265 |
-
.dc-tutorials h3 {
|
| 3266 |
-
font-size: 20px;
|
| 3267 |
-
}
|
| 3268 |
-
}
|
| 3269 |
-
|
| 3270 |
-
.dc-tutorials .tutorial__list .tutorial__item {
|
| 3271 |
-
display: -webkit-box;
|
| 3272 |
-
display: -ms-flexbox;
|
| 3273 |
-
display: flex;
|
| 3274 |
-
}
|
| 3275 |
-
|
| 3276 |
-
.dc-tutorials .tutorial__list .tutorial__item:not(:last-child) {
|
| 3277 |
-
margin-bottom: 20px;
|
| 3278 |
-
}
|
| 3279 |
-
|
| 3280 |
-
.dc-tutorials .tutorial__list .tutorial__item .icon {
|
| 3281 |
-
-webkit-box-flex: 0;
|
| 3282 |
-
-ms-flex: 0 0 50px;
|
| 3283 |
-
flex: 0 0 50px;
|
| 3284 |
-
max-width: 50px;
|
| 3285 |
-
height: 50px;
|
| 3286 |
-
border-radius: 5px;
|
| 3287 |
-
background: #f4f6fc;
|
| 3288 |
-
padding: 14px;
|
| 3289 |
-
margin-right: 15px;
|
| 3290 |
-
}
|
| 3291 |
-
|
| 3292 |
-
.dc-tutorials .tutorial__list .tutorial__item .icon svg path {
|
| 3293 |
-
fill: #808da1;
|
| 3294 |
-
-webkit-transition: all .3s ease;
|
| 3295 |
-
transition: all .3s ease;
|
| 3296 |
-
}
|
| 3297 |
-
|
| 3298 |
-
.dc-tutorials .tutorial__list .tutorial__item h4 {
|
| 3299 |
-
font-size: 15px;
|
| 3300 |
-
line-height: 1.6;
|
| 3301 |
-
font-weight: 500;
|
| 3302 |
-
color: #687b95;
|
| 3303 |
-
font-family: "DM Sans", sans-serif;
|
| 3304 |
-
-webkit-transition: all .3s ease;
|
| 3305 |
-
transition: all .3s ease;
|
| 3306 |
-
}
|
| 3307 |
-
|
| 3308 |
-
@media (max-width: 1599.98px) {
|
| 3309 |
-
.dc-tutorials .tutorial__list .tutorial__item h4 {
|
| 3310 |
-
font-size: 14px;
|
| 3311 |
-
}
|
| 3312 |
-
}
|
| 3313 |
-
|
| 3314 |
-
.dc-tutorials .tutorial__list .tutorial__item h4 a {
|
| 3315 |
-
outline: none;
|
| 3316 |
-
-webkit-box-shadow: none;
|
| 3317 |
-
box-shadow: none;
|
| 3318 |
-
}
|
| 3319 |
-
|
| 3320 |
-
.dc-tutorials .tutorial__list .tutorial__item:hover .icon svg path {
|
| 3321 |
-
fill: #05cb6b;
|
| 3322 |
-
}
|
| 3323 |
-
|
| 3324 |
-
.dc-tutorials .tutorial__list .tutorial__item:hover h4 {
|
| 3325 |
-
color: #22282d;
|
| 3326 |
-
}
|
| 3327 |
-
|
| 3328 |
-
.blog__post {
|
| 3329 |
-
padding: 5px;
|
| 3330 |
-
border-radius: 5px;
|
| 3331 |
-
background: #ffffff;
|
| 3332 |
-
max-width: 450px;
|
| 3333 |
-
}
|
| 3334 |
-
|
| 3335 |
-
.blog__post .thumb {
|
| 3336 |
-
position: relative;
|
| 3337 |
-
}
|
| 3338 |
-
|
| 3339 |
-
.blog__post .thumb img {
|
| 3340 |
-
width: 100%;
|
| 3341 |
-
}
|
| 3342 |
-
|
| 3343 |
-
.blog__post .thumb .play__btn {
|
| 3344 |
-
position: absolute;
|
| 3345 |
-
top: 50%;
|
| 3346 |
-
left: 50%;
|
| 3347 |
-
-webkit-transform: translate(-50%, -50%);
|
| 3348 |
-
transform: translate(-50%, -50%);
|
| 3349 |
-
height: 50px;
|
| 3350 |
-
width: 50px;
|
| 3351 |
-
border-radius: 50%;
|
| 3352 |
-
background: #05cb6b;
|
| 3353 |
-
display: -webkit-box;
|
| 3354 |
-
display: -ms-flexbox;
|
| 3355 |
-
display: flex;
|
| 3356 |
-
-webkit-box-pack: center;
|
| 3357 |
-
-ms-flex-pack: center;
|
| 3358 |
-
justify-content: center;
|
| 3359 |
-
-webkit-box-align: center;
|
| 3360 |
-
-ms-flex-align: center;
|
| 3361 |
-
align-items: center;
|
| 3362 |
-
outline: none;
|
| 3363 |
-
-webkit-box-shadow: none;
|
| 3364 |
-
box-shadow: none;
|
| 3365 |
-
}
|
| 3366 |
-
|
| 3367 |
-
.blog__post .thumb .play__btn span {
|
| 3368 |
-
width: 0;
|
| 3369 |
-
height: 0;
|
| 3370 |
-
border-top: 8px solid transparent;
|
| 3371 |
-
border-bottom: 8px solid transparent;
|
| 3372 |
-
border-left: 10px solid #ffffff;
|
| 3373 |
-
}
|
| 3374 |
-
|
| 3375 |
-
.blog__post .blog__post__content {
|
| 3376 |
-
padding: 5px 10px;
|
| 3377 |
-
}
|
| 3378 |
-
|
| 3379 |
-
.blog__post .blog__post__content h4 {
|
| 3380 |
-
font-size: 16px;
|
| 3381 |
-
font-weight: 500;
|
| 3382 |
-
color: #22282d;
|
| 3383 |
-
line-height: 1.8;
|
| 3384 |
-
font-family: "DM Sans", sans-serif;
|
| 3385 |
-
}
|
| 3386 |
-
|
| 3387 |
-
.footer {
|
| 3388 |
-
width: 100%;
|
| 3389 |
-
text-align: center;
|
| 3390 |
-
}
|
| 3391 |
-
|
| 3392 |
-
.footer__content {
|
| 3393 |
-
text-align: center;
|
| 3394 |
-
}
|
| 3395 |
-
|
| 3396 |
-
.footer__content .footer__nav ul {
|
| 3397 |
-
display: -webkit-box;
|
| 3398 |
-
display: -ms-flexbox;
|
| 3399 |
-
display: flex;
|
| 3400 |
-
-ms-flex-wrap: wrap;
|
| 3401 |
-
flex-wrap: wrap;
|
| 3402 |
-
-webkit-box-pack: center;
|
| 3403 |
-
-ms-flex-pack: center;
|
| 3404 |
-
justify-content: center;
|
| 3405 |
-
}
|
| 3406 |
-
|
| 3407 |
-
.footer__content .footer__nav ul li {
|
| 3408 |
-
margin-bottom: 15px;
|
| 3409 |
-
padding: 0 10px;
|
| 3410 |
-
position: relative;
|
| 3411 |
-
line-height: 1;
|
| 3412 |
-
}
|
| 3413 |
-
|
| 3414 |
-
.footer__content .footer__nav ul li:not(:last-child):before {
|
| 3415 |
-
position: absolute;
|
| 3416 |
-
top: 2px;
|
| 3417 |
-
bottom: 2px;
|
| 3418 |
-
right: 0;
|
| 3419 |
-
width: 1px;
|
| 3420 |
-
background: #687b95;
|
| 3421 |
-
content: "";
|
| 3422 |
-
}
|
| 3423 |
-
|
| 3424 |
-
.footer__content .footer__nav ul li a {
|
| 3425 |
-
font-size: 16px;
|
| 3426 |
-
font-weight: 400;
|
| 3427 |
-
color: #687b95;
|
| 3428 |
-
line-height: inherit;
|
| 3429 |
-
outline: none;
|
| 3430 |
-
-webkit-box-shadow: none;
|
| 3431 |
-
box-shadow: none;
|
| 3432 |
-
}
|
| 3433 |
-
|
| 3434 |
-
@media (max-width: 767.98px) {
|
| 3435 |
-
.footer__content .footer__nav ul li a {
|
| 3436 |
-
font-size: 14px;
|
| 3437 |
-
}
|
| 3438 |
-
}
|
| 3439 |
-
|
| 3440 |
-
.cancel-dc-setup {
|
| 3441 |
-
text-align: right;
|
| 3442 |
-
margin-bottom: 20px;
|
| 3443 |
-
font-size: 13px;
|
| 3444 |
-
}
|
| 3445 |
-
|
| 3446 |
-
.dc-quick__setup__wrap {
|
| 3447 |
-
padding: 50px 30px 50px;
|
| 3448 |
-
}
|
| 3449 |
-
|
| 3450 |
-
.dc-logo img {
|
| 3451 |
-
max-width: 100%;
|
| 3452 |
-
max-height: 80px;
|
| 3453 |
-
}
|
| 3454 |
-
|
| 3455 |
-
.dc-logo__center {
|
| 3456 |
-
text-align: center;
|
| 3457 |
-
}
|
| 3458 |
-
|
| 3459 |
-
.dc-quick__setup__nav {
|
| 3460 |
-
display: -webkit-box;
|
| 3461 |
-
display: -ms-flexbox;
|
| 3462 |
-
display: flex;
|
| 3463 |
-
-webkit-box-pack: center;
|
| 3464 |
-
-ms-flex-pack: center;
|
| 3465 |
-
justify-content: center;
|
| 3466 |
-
-webkit-box-align: center;
|
| 3467 |
-
-ms-flex-align: center;
|
| 3468 |
-
align-items: center;
|
| 3469 |
-
padding: 0;
|
| 3470 |
-
margin: 0;
|
| 3471 |
-
}
|
| 3472 |
-
|
| 3473 |
-
@media (max-width: 767.98px) {
|
| 3474 |
-
.dc-quick__setup__nav {
|
| 3475 |
-
-ms-flex-wrap: wrap;
|
| 3476 |
-
flex-wrap: wrap;
|
| 3477 |
-
}
|
| 3478 |
-
}
|
| 3479 |
-
|
| 3480 |
-
.dc-quick__setup__nav .quick__setup__item {
|
| 3481 |
-
padding: 0 25px;
|
| 3482 |
-
position: relative;
|
| 3483 |
-
}
|
| 3484 |
-
|
| 3485 |
-
.dc-quick__setup__nav .quick__setup__item:not(:last-child):before {
|
| 3486 |
-
position: absolute;
|
| 3487 |
-
top: 50%;
|
| 3488 |
-
left: 50%;
|
| 3489 |
-
-webkit-transform: translateY(-50%);
|
| 3490 |
-
transform: translateY(-50%);
|
| 3491 |
-
height: 3px;
|
| 3492 |
-
width: 100%;
|
| 3493 |
-
content: "";
|
| 3494 |
-
background: #d8dde7;
|
| 3495 |
-
}
|
| 3496 |
-
|
| 3497 |
-
@media (max-width: 767.98px) {
|
| 3498 |
-
.dc-quick__setup__nav .quick__setup__item:not(:last-child):before {
|
| 3499 |
-
height: 0;
|
| 3500 |
-
width: 0;
|
| 3501 |
-
}
|
| 3502 |
-
}
|
| 3503 |
-
|
| 3504 |
-
@media (max-width: 1199.98px) {
|
| 3505 |
-
.dc-quick__setup__nav .quick__setup__item {
|
| 3506 |
-
padding: 0 15px;
|
| 3507 |
-
}
|
| 3508 |
-
}
|
| 3509 |
-
|
| 3510 |
-
.dc-quick__setup__nav .quick__setup__item .quick__setup__link {
|
| 3511 |
-
text-transform: uppercase;
|
| 3512 |
-
font-size: 14px;
|
| 3513 |
-
font-weight: 500;
|
| 3514 |
-
color: #22282d;
|
| 3515 |
-
width: 200px;
|
| 3516 |
-
text-align: center;
|
| 3517 |
-
padding: 13px 0;
|
| 3518 |
-
background: #ffffff;
|
| 3519 |
-
border-radius: 5px;
|
| 3520 |
-
position: relative;
|
| 3521 |
-
z-index: 1;
|
| 3522 |
-
outline: none;
|
| 3523 |
-
-webkit-box-shadow: none;
|
| 3524 |
-
box-shadow: none;
|
| 3525 |
-
}
|
| 3526 |
-
|
| 3527 |
-
@media (max-width: 1199.98px) {
|
| 3528 |
-
.dc-quick__setup__nav .quick__setup__item .quick__setup__link {
|
| 3529 |
-
width: auto;
|
| 3530 |
-
padding: 13px 20px;
|
| 3531 |
-
}
|
| 3532 |
-
}
|
| 3533 |
-
|
| 3534 |
-
@media (max-width: 767.98px) {
|
| 3535 |
-
.dc-quick__setup__nav .quick__setup__item .quick__setup__link {
|
| 3536 |
-
font-size: 12px;
|
| 3537 |
-
}
|
| 3538 |
-
}
|
| 3539 |
-
|
| 3540 |
-
.dc-quick__setup__nav .quick__setup__item.active:not(:last-child):before {
|
| 3541 |
-
background: #e10619;
|
| 3542 |
-
}
|
| 3543 |
-
|
| 3544 |
-
.dc-quick__setup__nav .quick__setup__item.active .quick__setup__link {
|
| 3545 |
-
background: #e10619;
|
| 3546 |
-
color: #ffffff;
|
| 3547 |
-
}
|
| 3548 |
-
|
| 3549 |
-
.dc-quick__step__item {
|
| 3550 |
-
display: none;
|
| 3551 |
-
}
|
| 3552 |
-
|
| 3553 |
-
.dc-quick__step__item.active {
|
| 3554 |
-
display: block;
|
| 3555 |
-
}
|
| 3556 |
-
|
| 3557 |
-
.dc-quick__step__item .button {
|
| 3558 |
-
display: none;
|
| 3559 |
-
}
|
| 3560 |
-
|
| 3561 |
-
.dc-quick__step__item .quick__setup__item__header h2 {
|
| 3562 |
-
font-size: 32px;
|
| 3563 |
-
font-weight: 700;
|
| 3564 |
-
color: #22282d;
|
| 3565 |
-
font-family: "DM Sans", sans-serif;
|
| 3566 |
-
text-align: center;
|
| 3567 |
-
margin-bottom: 16px;
|
| 3568 |
-
}
|
| 3569 |
-
|
| 3570 |
-
@media (max-width: 767.98px) {
|
| 3571 |
-
.dc-quick__step__item .quick__setup__item__header h2 {
|
| 3572 |
-
font-size: 28px;
|
| 3573 |
-
}
|
| 3574 |
-
}
|
| 3575 |
-
|
| 3576 |
-
@media (max-width: 575.98px) {
|
| 3577 |
-
.dc-quick__step__item .quick__setup__item__header h2 {
|
| 3578 |
-
font-size: 24px;
|
| 3579 |
-
}
|
| 3580 |
-
}
|
| 3581 |
-
|
| 3582 |
-
.dc-quick__step__item .quick__setup__item__header p {
|
| 3583 |
-
text-align: center;
|
| 3584 |
-
font-size: 16px;
|
| 3585 |
-
color: #687b95;
|
| 3586 |
-
max-width: 780px;
|
| 3587 |
-
margin: 0 auto;
|
| 3588 |
-
}
|
| 3589 |
-
|
| 3590 |
-
@media (max-width: 767.98px) {
|
| 3591 |
-
.dc-quick__step__item .quick__setup__item__header p {
|
| 3592 |
-
font-size: 14px;
|
| 3593 |
-
}
|
| 3594 |
-
}
|
| 3595 |
-
|
| 3596 |
-
.dc-quick__step__item .dc-video__area {
|
| 3597 |
-
text-align: center;
|
| 3598 |
-
margin: 0 auto;
|
| 3599 |
-
position: relative;
|
| 3600 |
-
}
|
| 3601 |
-
|
| 3602 |
-
@media (max-width: 1199.98px) {
|
| 3603 |
-
.dc-quick__step__item .dc-video__area {
|
| 3604 |
-
min-height: 300px;
|
| 3605 |
-
}
|
| 3606 |
-
}
|
| 3607 |
-
|
| 3608 |
-
.dc-quick__step__item .dc-video__area .play__btn {
|
| 3609 |
-
position: absolute;
|
| 3610 |
-
top: 50%;
|
| 3611 |
-
left: 50%;
|
| 3612 |
-
-webkit-transform: translate(-50%, -50%);
|
| 3613 |
-
transform: translate(-50%, -50%);
|
| 3614 |
-
height: 70px;
|
| 3615 |
-
width: 70px;
|
| 3616 |
-
border-radius: 50%;
|
| 3617 |
-
background: #05cb6b;
|
| 3618 |
-
display: -webkit-box;
|
| 3619 |
-
display: -ms-flexbox;
|
| 3620 |
-
display: flex;
|
| 3621 |
-
-webkit-box-pack: center;
|
| 3622 |
-
-ms-flex-pack: center;
|
| 3623 |
-
justify-content: center;
|
| 3624 |
-
-webkit-box-align: center;
|
| 3625 |
-
-ms-flex-align: center;
|
| 3626 |
-
align-items: center;
|
| 3627 |
-
outline: none;
|
| 3628 |
-
-webkit-box-shadow: none;
|
| 3629 |
-
box-shadow: none;
|
| 3630 |
-
}
|
| 3631 |
-
|
| 3632 |
-
.dc-quick__step__item .dc-video__area .play__btn span {
|
| 3633 |
-
width: 0;
|
| 3634 |
-
height: 0;
|
| 3635 |
-
border-top: 8px solid transparent;
|
| 3636 |
-
border-bottom: 8px solid transparent;
|
| 3637 |
-
border-left: 10px solid #ffffff;
|
| 3638 |
-
}
|
| 3639 |
-
|
| 3640 |
-
@media (max-width: 767.98px) {
|
| 3641 |
-
.dc-quick__step__item .dc-video__area .play__btn {
|
| 3642 |
-
height: 50px;
|
| 3643 |
-
width: 50px;
|
| 3644 |
-
}
|
| 3645 |
-
}
|
| 3646 |
-
|
| 3647 |
-
.dc-quick__step__item .dc-form__group {
|
| 3648 |
-
padding-left: 27px;
|
| 3649 |
-
text-align: center;
|
| 3650 |
-
border-radius: 10px;
|
| 3651 |
-
margin: 15px auto 0;
|
| 3652 |
-
max-width: 800px;
|
| 3653 |
-
}
|
| 3654 |
-
|
| 3655 |
-
@media (max-width: 575.98px) {
|
| 3656 |
-
.dc-quick__step__item .dc-form__group {
|
| 3657 |
-
text-align: left;
|
| 3658 |
-
}
|
| 3659 |
-
}
|
| 3660 |
-
|
| 3661 |
-
.dc-quick__step__item .dc-form__group input {
|
| 3662 |
-
display: none;
|
| 3663 |
-
}
|
| 3664 |
-
|
| 3665 |
-
.dc-quick__step__item .dc-form__group input:checked ~ label:before {
|
| 3666 |
-
border-color: #00b2fc;
|
| 3667 |
-
background: #00b2fc;
|
| 3668 |
-
}
|
| 3669 |
-
|
| 3670 |
-
.dc-quick__step__item .dc-form__group input:checked ~ label:after {
|
| 3671 |
-
opacity: 1;
|
| 3672 |
-
}
|
| 3673 |
-
|
| 3674 |
-
.dc-quick__step__item .dc-form__group label {
|
| 3675 |
-
font-size: 18px;
|
| 3676 |
-
font-weight: 500;
|
| 3677 |
-
color: #22282d;
|
| 3678 |
-
font-family: "DM Sans", sans-serif;
|
| 3679 |
-
position: relative;
|
| 3680 |
-
}
|
| 3681 |
-
|
| 3682 |
-
@media (max-width: 767.98px) {
|
| 3683 |
-
.dc-quick__step__item .dc-form__group label {
|
| 3684 |
-
font-size: 16px;
|
| 3685 |
-
}
|
| 3686 |
-
}
|
| 3687 |
-
|
| 3688 |
-
.dc-quick__step__item .dc-form__group label:before {
|
| 3689 |
-
position: absolute;
|
| 3690 |
-
top: 5px;
|
| 3691 |
-
left: -27px;
|
| 3692 |
-
height: 12px;
|
| 3693 |
-
width: 12px;
|
| 3694 |
-
border: 1px solid #687b95;
|
| 3695 |
-
content: "";
|
| 3696 |
-
}
|
| 3697 |
-
|
| 3698 |
-
@media (max-width: 767.98px) {
|
| 3699 |
-
.dc-quick__step__item .dc-form__group label:before {
|
| 3700 |
-
top: 4px;
|
| 3701 |
-
}
|
| 3702 |
-
}
|
| 3703 |
-
|
| 3704 |
-
.dc-quick__step__item .dc-form__group label:after {
|
| 3705 |
-
position: absolute;
|
| 3706 |
-
top: -5px;
|
| 3707 |
-
left: -26px;
|
| 3708 |
-
height: 13px;
|
| 3709 |
-
width: 13px;
|
| 3710 |
-
border: 0;
|
| 3711 |
-
content: url(../img/check.png);
|
| 3712 |
-
opacity: 0;
|
| 3713 |
-
-webkit-transition: all 0.3s ease;
|
| 3714 |
-
transition: all 0.3s ease;
|
| 3715 |
-
}
|
| 3716 |
-
|
| 3717 |
-
.dc-quick__step__item .disable_option {
|
| 3718 |
-
border-radius: 5px;
|
| 3719 |
-
}
|
| 3720 |
-
|
| 3721 |
-
.dc-quick__step__item .disable_option.dc-text__block {
|
| 3722 |
-
background: #f4f6fc;
|
| 3723 |
-
}
|
| 3724 |
-
|
| 3725 |
-
.dc-quick__step__item .disable_option input[type="radio"] {
|
| 3726 |
-
display: none;
|
| 3727 |
-
}
|
| 3728 |
-
|
| 3729 |
-
.dc-quick__step__item .disable_option input[type="radio"]:checked ~ label:before {
|
| 3730 |
-
border-color: #05cb6b;
|
| 3731 |
-
}
|
| 3732 |
-
|
| 3733 |
-
.dc-quick__step__item .disable_option input[type="radio"]:checked ~ label:after {
|
| 3734 |
-
opacity: 1;
|
| 3735 |
-
}
|
| 3736 |
-
|
| 3737 |
-
.dc-quick__step__item .disable_option input[type="radio"] ~ label {
|
| 3738 |
-
font-size: 18px;
|
| 3739 |
-
font-weight: 500;
|
| 3740 |
-
color: #22282d;
|
| 3741 |
-
font-family: "DM Sans", sans-serif;
|
| 3742 |
-
position: relative;
|
| 3743 |
-
line-height: 1.3;
|
| 3744 |
-
padding-left: 25px;
|
| 3745 |
-
display: block;
|
| 3746 |
-
margin-bottom: 15px;
|
| 3747 |
-
}
|
| 3748 |
-
|
| 3749 |
-
.dc-quick__step__item .disable_option input[type="radio"] ~ label:before {
|
| 3750 |
-
position: absolute;
|
| 3751 |
-
top: 4px;
|
| 3752 |
-
left: 0;
|
| 3753 |
-
height: 12px;
|
| 3754 |
-
width: 12px;
|
| 3755 |
-
border-radius: 50%;
|
| 3756 |
-
border: 1px solid #687b95;
|
| 3757 |
-
content: "";
|
| 3758 |
-
}
|
| 3759 |
-
|
| 3760 |
-
.dc-quick__step__item .disable_option input[type="radio"] ~ label:after {
|
| 3761 |
-
position: absolute;
|
| 3762 |
-
top: 7px;
|
| 3763 |
-
left: 3px;
|
| 3764 |
-
height: 8px;
|
| 3765 |
-
width: 8px;
|
| 3766 |
-
border-radius: 50%;
|
| 3767 |
-
border: 0;
|
| 3768 |
-
background: #05cb6b;
|
| 3769 |
-
content: "";
|
| 3770 |
-
opacity: 0;
|
| 3771 |
-
-webkit-transition: all 0.3s ease;
|
| 3772 |
-
transition: all 0.3s ease;
|
| 3773 |
-
}
|
| 3774 |
-
|
| 3775 |
-
.dc-quick__step__item .disable_option input[type="radio"] ~ label span {
|
| 3776 |
-
font-size: 16px;
|
| 3777 |
-
font-weight: 400;
|
| 3778 |
-
color: #687b95;
|
| 3779 |
-
}
|
| 3780 |
-
|
| 3781 |
-
.dc-quick__step__item .disable_option .disable__checklist {
|
| 3782 |
-
display: -webkit-box;
|
| 3783 |
-
display: -ms-flexbox;
|
| 3784 |
-
display: flex;
|
| 3785 |
-
-ms-flex-wrap: wrap;
|
| 3786 |
-
flex-wrap: wrap;
|
| 3787 |
-
margin-bottom: 10px;
|
| 3788 |
-
}
|
| 3789 |
-
|
| 3790 |
-
.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item {
|
| 3791 |
-
-webkit-box-flex: 0;
|
| 3792 |
-
-ms-flex: 0 0 140px;
|
| 3793 |
-
flex: 0 0 140px;
|
| 3794 |
-
margin-right: 10px;
|
| 3795 |
-
}
|
| 3796 |
-
|
| 3797 |
-
.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item input {
|
| 3798 |
-
display: none;
|
| 3799 |
-
}
|
| 3800 |
-
|
| 3801 |
-
.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item input:checked ~ label:before {
|
| 3802 |
-
border-color: #00b2fc;
|
| 3803 |
-
background: #00b2fc;
|
| 3804 |
-
}
|
| 3805 |
-
|
| 3806 |
-
.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item input:checked ~ label:after {
|
| 3807 |
-
opacity: 1;
|
| 3808 |
-
}
|
| 3809 |
-
|
| 3810 |
-
.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item label {
|
| 3811 |
-
font-size: 16px;
|
| 3812 |
-
font-weight: 500;
|
| 3813 |
-
color: #687b95;
|
| 3814 |
-
font-family: "DM Sans", sans-serif;
|
| 3815 |
-
position: relative;
|
| 3816 |
-
line-height: 1.3;
|
| 3817 |
-
padding-left: 25px;
|
| 3818 |
-
display: block;
|
| 3819 |
-
}
|
| 3820 |
-
|
| 3821 |
-
.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item label:before {
|
| 3822 |
-
position: absolute;
|
| 3823 |
-
top: 4px;
|
| 3824 |
-
left: 0;
|
| 3825 |
-
height: 10px;
|
| 3826 |
-
width: 10px;
|
| 3827 |
-
border: 1px solid #687b95;
|
| 3828 |
-
content: "";
|
| 3829 |
-
}
|
| 3830 |
-
|
| 3831 |
-
.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item label:after {
|
| 3832 |
-
position: absolute;
|
| 3833 |
-
top: -2px;
|
| 3834 |
-
left: 2px;
|
| 3835 |
-
height: 11px;
|
| 3836 |
-
width: 11px;
|
| 3837 |
-
border: 0;
|
| 3838 |
-
content: url(../img/check.png);
|
| 3839 |
-
opacity: 0;
|
| 3840 |
-
-webkit-transition: all 0.3s ease;
|
| 3841 |
-
transition: all 0.3s ease;
|
| 3842 |
-
}
|
| 3843 |
-
|
| 3844 |
-
.dc-quick__step__item .disable_option .disable__option__description {
|
| 3845 |
-
font-size: 15px;
|
| 3846 |
-
font-weight: 400;
|
| 3847 |
-
color: #687b95;
|
| 3848 |
-
font-family: "DM Sans", sans-serif;
|
| 3849 |
-
}
|
| 3850 |
-
|
| 3851 |
-
.dc-quick__step__item .disable_option .disable__option__description .danger {
|
| 3852 |
-
color: #e0061a;
|
| 3853 |
-
font-weight: 500;
|
| 3854 |
-
}
|
| 3855 |
-
|
| 3856 |
-
.dc-quick__step__item .finalize-thumb {
|
| 3857 |
-
text-align: center;
|
| 3858 |
-
padding: 0 0 30px;
|
| 3859 |
-
}
|
| 3860 |
-
|
| 3861 |
-
.dc-quick__step__item .finalize-thumb img {
|
| 3862 |
-
max-height: 220px;
|
| 3863 |
-
}
|
| 3864 |
-
|
| 3865 |
-
.dc-quick__step__item .doc__button__wrap {
|
| 3866 |
-
text-align: center;
|
| 3867 |
-
}
|
| 3868 |
-
|
| 3869 |
-
.dc-quick__step__item .doc__button__wrap .doc__button {
|
| 3870 |
-
font-size: 16px;
|
| 3871 |
-
font-weight: 500;
|
| 3872 |
-
font-family: "DM Sans", sans-serif;
|
| 3873 |
-
color: #22282d;
|
| 3874 |
-
text-transform: uppercase;
|
| 3875 |
-
border: 1px solid #e10619;
|
| 3876 |
-
border-radius: 5px;
|
| 3877 |
-
padding: 10px 35px;
|
| 3878 |
-
outline: none;
|
| 3879 |
-
-webkit-box-shadow: none;
|
| 3880 |
-
box-shadow: none;
|
| 3881 |
-
}
|
| 3882 |
-
|
| 3883 |
-
.dc-quick__step__item .doc__button__wrap .doc__button:hover {
|
| 3884 |
-
background: #e10619;
|
| 3885 |
-
color: #ffffff;
|
| 3886 |
-
}
|
| 3887 |
-
|
| 3888 |
-
.dc-quick__step__item #whatWeCollect {
|
| 3889 |
-
color: #05cb6b;
|
| 3890 |
-
outline: 0;
|
| 3891 |
-
-webkit-box-shadow: none;
|
| 3892 |
-
box-shadow: none;
|
| 3893 |
-
}
|
| 3894 |
-
|
| 3895 |
-
.dc-quick__step__item #whatWeCollectMessage {
|
| 3896 |
-
display: none;
|
| 3897 |
-
}
|
| 3898 |
-
|
| 3899 |
-
.dc-quick__setup__wrap .button__group {
|
| 3900 |
-
display: -webkit-box;
|
| 3901 |
-
display: -ms-flexbox;
|
| 3902 |
-
display: flex;
|
| 3903 |
-
-ms-flex-wrap: wrap;
|
| 3904 |
-
flex-wrap: wrap;
|
| 3905 |
-
-webkit-box-pack: justify;
|
| 3906 |
-
-ms-flex-pack: justify;
|
| 3907 |
-
justify-content: space-between;
|
| 3908 |
-
-webkit-box-align: center;
|
| 3909 |
-
-ms-flex-align: center;
|
| 3910 |
-
align-items: center;
|
| 3911 |
-
}
|
| 3912 |
-
|
| 3913 |
-
.dc-quick__setup__wrap .button__group .button {
|
| 3914 |
-
width: 160px;
|
| 3915 |
-
text-align: center;
|
| 3916 |
-
}
|
| 3917 |
-
|
| 3918 |
-
.dc-quick__setup__wrap .button__group .button.button--sm {
|
| 3919 |
-
width: 110px;
|
| 3920 |
-
}
|
| 3921 |
-
|
| 3922 |
-
@media (max-width: 767.98px) {
|
| 3923 |
-
.dc-quick__setup__wrap .button__group .button {
|
| 3924 |
-
width: unset;
|
| 3925 |
-
}
|
| 3926 |
-
.dc-quick__setup__wrap .button__group .button.button--sm {
|
| 3927 |
-
width: unset;
|
| 3928 |
-
}
|
| 3929 |
-
}
|
| 3930 |
-
|
| 3931 |
-
.disable_option .select2-container--default .select2-selection--multiple {
|
| 3932 |
-
min-height: 30px;
|
| 3933 |
-
padding: 0;
|
| 3934 |
-
min-width: 290px;
|
| 3935 |
-
width: 100%;
|
| 3936 |
-
display: -webkit-box;
|
| 3937 |
-
display: -ms-flexbox;
|
| 3938 |
-
display: flex;
|
| 3939 |
-
border: 1px solid rgba(0, 0, 0, 0.15);
|
| 3940 |
-
}
|
| 3941 |
-
|
| 3942 |
-
.disable_option .select2-container--default.select2-container--focus .select2-selection--multiple {
|
| 3943 |
-
border-color: rgba(0, 0, 0, 0.15);
|
| 3944 |
-
}
|
| 3945 |
-
|
| 3946 |
-
.disable_option .select2-container {
|
| 3947 |
-
min-width: 290px;
|
| 3948 |
-
width: auto !important;
|
| 3949 |
-
}
|
| 3950 |
-
|
| 3951 |
-
.disable_option .select2-container .select2-search--inline {
|
| 3952 |
-
float: none;
|
| 3953 |
-
}
|
| 3954 |
-
|
| 3955 |
-
.disable_option .select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
| 3956 |
-
width: auto;
|
| 3957 |
-
display: -webkit-inline-box;
|
| 3958 |
-
display: -ms-inline-flexbox;
|
| 3959 |
-
display: inline-flex;
|
| 3960 |
-
-ms-flex-wrap: wrap;
|
| 3961 |
-
flex-wrap: wrap;
|
| 3962 |
-
gap: 0 5px;
|
| 3963 |
-
margin-top: 0;
|
| 3964 |
-
padding: 0 8px;
|
| 3965 |
-
-webkit-box-align: center;
|
| 3966 |
-
-ms-flex-align: center;
|
| 3967 |
-
align-items: center;
|
| 3968 |
-
}
|
| 3969 |
-
|
| 3970 |
-
.disable_option .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
| 3971 |
-
position: static;
|
| 3972 |
-
border-right: 0;
|
| 3973 |
-
line-height: 1;
|
| 3974 |
-
font-size: 16px;
|
| 3975 |
-
margin-right: 3px;
|
| 3976 |
-
}
|
| 3977 |
-
|
| 3978 |
-
.disable_option .select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
|
| 3979 |
-
line-height: 1;
|
| 3980 |
-
}
|
| 3981 |
-
|
| 3982 |
-
.disable_option .select2-container--default .select2-selection--multiple .select2-selection__choice {
|
| 3983 |
-
float: none;
|
| 3984 |
-
display: -webkit-box;
|
| 3985 |
-
display: -ms-flexbox;
|
| 3986 |
-
display: flex;
|
| 3987 |
-
-webkit-box-align: stretch;
|
| 3988 |
-
-ms-flex-align: stretch;
|
| 3989 |
-
align-items: stretch;
|
| 3990 |
-
margin-left: 0;
|
| 3991 |
-
margin-right: 0;
|
| 3992 |
-
padding-left: 0;
|
| 3993 |
-
padding-right: 3px;
|
| 3994 |
-
border: 1px solid rgba(0, 0, 0, 0.15);
|
| 3995 |
-
}
|
| 3996 |
-
|
| 3997 |
-
.disable_option .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
|
| 3998 |
-
padding-left: 5px;
|
| 3999 |
-
border-left: 1px solid rgba(0, 0, 0, 0.15);
|
| 4000 |
-
}
|
| 4001 |
-
|
| 4002 |
-
.disable_option .select2-container--default .select2-search--inline .select2-search__field {
|
| 4003 |
-
margin-top: 0px;
|
| 4004 |
-
margin-left: 0px;
|
| 4005 |
-
height: 30px;
|
| 4006 |
-
padding-top: 7px;
|
| 4007 |
-
width: auto !important;
|
| 4008 |
-
font-size: 12px;
|
| 4009 |
-
}
|
| 4010 |
-
|
| 4011 |
-
.disable_option .select2-container--default .select2-search--inline .select2-search__field::-webkit-input-placeholder {
|
| 4012 |
-
/* Chrome/Opera/Safari */
|
| 4013 |
-
color: #687b95;
|
| 4014 |
-
}
|
| 4015 |
-
|
| 4016 |
-
.disable_option .select2-container--default .select2-search--inline .select2-search__field::-moz-placeholder {
|
| 4017 |
-
/* Firefox 19+ */
|
| 4018 |
-
color: #687b95;
|
| 4019 |
-
}
|
| 4020 |
-
|
| 4021 |
-
.disable_option .select2-container--default .select2-search--inline .select2-search__field:-ms-input-placeholder {
|
| 4022 |
-
/* IE 10+ */
|
| 4023 |
-
color: #687b95;
|
| 4024 |
-
}
|
| 4025 |
-
|
| 4026 |
-
.disable_option .select2-container--default .select2-search--inline .select2-search__field:-moz-placeholder {
|
| 4027 |
-
/* Firefox 18- */
|
| 4028 |
-
color: #687b95;
|
| 4029 |
-
}
|
| 4030 |
-
|
| 4031 |
-
.disable_option .select2-container--default .select2-selection--multiple .select2-selection__choice {
|
| 4032 |
-
margin-top: 0 !important;
|
| 4033 |
-
margin-bottom: 0 !important;
|
| 4034 |
-
}
|
| 4035 |
-
|
| 4036 |
-
.disable_option .select2-container .select2-search--inline .select2-search__field {
|
| 4037 |
-
margin-top: 0 !important;
|
| 4038 |
-
margin-bottom: 0 !important;
|
| 4039 |
-
min-height: 38px !important;
|
| 4040 |
-
padding-top: 11px !important;
|
| 4041 |
-
}
|
| 4042 |
/*# sourceMappingURL=style.css.map */
|
| 1 |
+
@font-face{font-family:"DM Sans";font-style:normal;font-weight:400;src:local(""),url("../fonts/dm-sans-v11-latin-regular.woff2") format("woff2"),url("../fonts/dm-sans-v11-latin-regular.woff") format("woff")}@font-face{font-family:"DM Sans";font-style:normal;font-weight:500;src:local(""),url("../fonts/dm-sans-v11-latin-500.woff2") format("woff2"),url("../fonts/dm-sans-v11-latin-500.woff") format("woff")}@font-face{font-family:"DM Sans";font-style:normal;font-weight:700;src:local(""),url("../fonts/dm-sans-v11-latin-700.woff2") format("woff2"),url("../fonts/dm-sans-v11-latin-700.woff") format("woff")}:root{--base-gutter:30px;--md-gutter:50px;--lg-gutter:70px;--xl-gutter:100px;--base-spacer-x:16px;--base-spacer-y:16px;--b-radius-6:25px}@media (max-width:1599.98px){:root{--base-gutter:20px;--md-gutter:30px;--lg-gutter:50px;--xl-gutter:70px}}@media (max-width:1399.98px){:root{--base-gutter:20px;--md-gutter:30px;--lg-gutter:40px;--xl-gutter:50px}}@media (max-width:1199.98px){:root{--base-spacer-x:10px;--base-spacer-y:10px;--md-gutter:20px;--lg-gutter:30px;--xl-gutter:40px}}@media (max-width:991.98px){:root{--base-spacer-x:5px;--base-spacer-y:5px;--md-gutter:20px;--lg-gutter:30px;--xl-gutter:40px}}.disablecommentswrap{font-size:10px;font-family:"DM Sans",sans-serif;line-height:1.7;font-weight:400;letter-spacing:0;min-height:100vh;background:#ffffff;color:#000000;outline:none;border:none;box-sizing:border-box;overflow:hidden;-webkit-display:flex;-moz-display:flex;-ms-display:flex;-o-display:flex;display:flex;-moz-flex-direction:column;-o-flex-direction:column;flex-direction:column}.disablecommentswrap *{box-sizing:border-box}.disablecommentswrap ::selection{color:#ffffff;background:rgba(98,60,234,0.8)}.disablecommentswrap li,.disablecommentswrap ul{list-style:none}.disablecommentswrap a{color:initial;transition:all 0.3s linear;text-decoration:none;display:inline-block}.disablecommentswrap label{margin-bottom:0}.disablecommentswrap .button{vertical-align:middle;font-family:"DM Sans",sans-serif;font-weight:500}.disablecommentswrap .button:focus,.disablecommentswrap .button:hover{outline:none}.disablecommentswrap .button:not(:disabled){cursor:pointer}.disablecommentswrap h1,.disablecommentswrap h2,.disablecommentswrap h3,.disablecommentswrap h4,.disablecommentswrap h5,.disablecommentswrap h6,.disablecommentswrap p{margin:0;padding:0}.disablecommentswrap h1,.disablecommentswrap h2,.disablecommentswrap h3,.disablecommentswrap h4,.disablecommentswrap h5,.disablecommentswrap h6{font-family:"DM Sans",sans-serif;font-weight:700;line-height:1.3;margin-top:0;margin-bottom:0;color:inherit}.disablecommentswrap h1 a,.disablecommentswrap h2 a,.disablecommentswrap h3 a,.disablecommentswrap h4 a,.disablecommentswrap h5 a,.disablecommentswrap h6 a{color:inherit}.disablecommentswrap h1 a:hover,.disablecommentswrap h2 a:hover,.disablecommentswrap h3 a:hover,.disablecommentswrap h4 a:hover,.disablecommentswrap h5 a:hover,.disablecommentswrap h6 a:hover{color:inherit}.disablecommentswrap ol,.disablecommentswrap ul{margin-bottom:0}.disablecommentswrap img,.disablecommentswrap video{max-width:100%}.disablecommentswrap .pt5{padding-top:5px}.disablecommentswrap .pt10{padding-top:10px}.disablecommentswrap .mt5{margin-top:5px}.disablecommentswrap .mt10{margin-top:10px}.pt50{padding-top:50px}.pb50{padding-bottom:50px}.pt70{padding-top:70px}.pb70{padding-bottom:70px}.pt110{padding-top:110px}.pb110{padding-bottom:110px}.pt120{padding-top:120px}.pb120{padding-bottom:120px}.pt150{padding-top:150px}.pb150{padding-bottom:150px}.pt200{padding-top:200px}.pb200{padding-bottom:200px}.pt300{padding-top:300px}.pb300{padding-bottom:300px}.mt10{margin-top:10px}.mb10{margin-bottom:10px}.mt15{margin-top:15px}.mb15{margin-bottom:15px}.mt20{margin-top:20px}.mb20{margin-bottom:20px}.mt30{margin-top:30px}.mb30{margin-bottom:30px}.mt50{margin-top:50px}.mb50{margin-bottom:50px}.mt70{margin-top:70px}.mb70{margin-bottom:70px}.mt80{margin-top:80px}.mb80{margin-bottom:80px}.mt100{margin-top:100px}.mb100{margin-bottom:100px}.color__primary{color:#623cea!important}a.color__primary:focus,a.color__primary:hover{color:#4218db;box-shadow:none}.color__secondary{color:#fa7d51!important}a.color__secondary:focus,a.color__secondary:hover{color:#f9581f;box-shadow:none}.color__success{color:#05cb6b!important}a.color__success:focus,a.color__success:hover{color:#049951;box-shadow:none}.color__danger{color:#e0061a!important}a.color__danger:focus,a.color__danger:hover{color:#ae0514;box-shadow:none}.color__info{color:#00b2fc!important}a.color__info:focus,a.color__info:hover{color:#008ec9;box-shadow:none}.color__dark{color:#22282d!important}a.color__dark:focus,a.color__dark:hover{color:#0c0e10;box-shadow:none}.color__white{color:#ffffff!important}a.color__white:focus,a.color__white:hover{color:#e6e6e6;box-shadow:none}.color__black{color:#000000!important}.color__grey{color:#f4f6fc!important}a.color__grey:focus,a.color__grey:hover{color:#ccd5f1;box-shadow:none}.color__grey2{color:#808da1!important}a.color__grey2:focus,a.color__grey2:hover{color:#657389;box-shadow:none}.color__twitter{color:#1da1f2!important}a.color__twitter:focus,a.color__twitter:hover{color:#0c85d0;box-shadow:none}.color__linkedin{color:#0077b5!important}a.color__linkedin:focus,a.color__linkedin:hover{color:#005582;box-shadow:none}.color__instagram{color:#e1306c!important}a.color__instagram:focus,a.color__instagram:hover{color:#c21c54;box-shadow:none}.background__primary{background-color:#623cea!important}.background__secondary{background-color:#fa7d51!important}.background__success{background-color:#05cb6b!important}.background__danger{background-color:#e0061a!important}.background__info{background-color:#00b2fc!important}.background__dark{background-color:#22282d!important}.background__white{background-color:#ffffff!important}.background__black{background-color:#000000!important}.background__grey{background-color:#f4f6fc!important}.background__grey2{background-color:#808da1!important}.background__twitter{background-color:#1da1f2!important}.background__linkedin{background-color:#0077b5!important}.background__instagram{background-color:#e1306c!important}.gradient__primary{background-image:linear-gradient(180deg,rgba(98,60,234,0.3),rgba(98,60,234,0.05));color:#623cea}.gradient__secondary{background-image:linear-gradient(180deg,rgba(250,125,81,0.3),rgba(250,125,81,0.05));color:#fa7d51}.gradient__success{background-image:linear-gradient(180deg,rgba(5,203,107,0.3),rgba(5,203,107,0.05));color:#05cb6b}.gradient__danger{background-image:linear-gradient(180deg,rgba(224,6,26,0.3),rgba(224,6,26,0.05));color:#e0061a}.gradient__info{background-image:linear-gradient(180deg,rgba(0,178,252,0.3),rgba(0,178,252,0.05));color:#00b2fc}.gradient__dark{background-image:linear-gradient(180deg,rgba(34,40,45,0.3),rgba(34,40,45,0.05));color:#22282d}.gradient__white{background-image:linear-gradient(180deg,rgba(255,255,255,0.3),rgba(255,255,255,0.05));color:#ffffff}.gradient__black{background-image:linear-gradient(180deg,rgba(0,0,0,0.3),rgba(0,0,0,0.05));color:#000000}.gradient__grey{background-image:linear-gradient(180deg,rgba(244,246,252,0.3),rgba(244,246,252,0.05));color:#f4f6fc}.gradient__grey2{background-image:linear-gradient(180deg,rgba(128,141,161,0.3),rgba(128,141,161,0.05));color:#808da1}.gradient__twitter{background-image:linear-gradient(180deg,rgba(29,161,242,0.3),rgba(29,161,242,0.05));color:#1da1f2}.gradient__linkedin{background-image:linear-gradient(180deg,rgba(0,119,181,0.3),rgba(0,119,181,0.05));color:#0077b5}.gradient__instagram{background-image:linear-gradient(180deg,rgba(225,48,108,0.3),rgba(225,48,108,0.05));color:#e1306c}.cloud__info__card__icon__primary{background-image:linear-gradient(180deg,rgba(98,60,234,0.3),rgba(98,60,234,0.05));color:#623cea}.cloud__info__card__icon__secondary{background-image:linear-gradient(180deg,rgba(250,125,81,0.3),rgba(250,125,81,0.05));color:#fa7d51}.cloud__info__card__icon__success{background-image:linear-gradient(180deg,rgba(5,203,107,0.3),rgba(5,203,107,0.05));color:#05cb6b}.cloud__info__card__icon__danger{background-image:linear-gradient(180deg,rgba(224,6,26,0.3),rgba(224,6,26,0.05));color:#e0061a}.cloud__info__card__icon__info{background-image:linear-gradient(180deg,rgba(0,178,252,0.3),rgba(0,178,252,0.05));color:#00b2fc}.cloud__info__card__icon__dark{background-image:linear-gradient(180deg,rgba(34,40,45,0.3),rgba(34,40,45,0.05));color:#22282d}.cloud__info__card__icon__white{background-image:linear-gradient(180deg,rgba(255,255,255,0.3),rgba(255,255,255,0.05));color:#ffffff}.cloud__info__card__icon__black{background-image:linear-gradient(180deg,rgba(0,0,0,0.3),rgba(0,0,0,0.05));color:#000000}.cloud__info__card__icon__grey{background-image:linear-gradient(180deg,rgba(244,246,252,0.3),rgba(244,246,252,0.05));color:#f4f6fc}.cloud__info__card__icon__grey2{background-image:linear-gradient(180deg,rgba(128,141,161,0.3),rgba(128,141,161,0.05));color:#808da1}.cloud__info__card__icon__twitter{background-image:linear-gradient(180deg,rgba(29,161,242,0.3),rgba(29,161,242,0.05));color:#1da1f2}.cloud__info__card__icon__linkedin{background-image:linear-gradient(180deg,rgba(0,119,181,0.3),rgba(0,119,181,0.05));color:#0077b5}.cloud__info__card__icon__instagram{background-image:linear-gradient(180deg,rgba(225,48,108,0.3),rgba(225,48,108,0.05));color:#e1306c}.counter__card__primary .counter__card--icon{color:white;background:#623cea}.counter__card__primary .counter__card--icon:before{background:#623cea}.counter__card__primary .counter__card--content .count__number{color:#623cea}.counter__card__secondary .counter__card--icon{color:white;background:#fa7d51}.counter__card__secondary .counter__card--icon:before{background:#fa7d51}.counter__card__secondary .counter__card--content .count__number{color:#fa7d51}.counter__card__success .counter__card--icon{color:white;background:#05cb6b}.counter__card__success .counter__card--icon:before{background:#05cb6b}.counter__card__success .counter__card--content .count__number{color:#05cb6b}.counter__card__danger .counter__card--icon{color:white;background:#e0061a}.counter__card__danger .counter__card--icon:before{background:#e0061a}.counter__card__danger .counter__card--content .count__number{color:#e0061a}.counter__card__info .counter__card--icon{color:white;background:#00b2fc}.counter__card__info .counter__card--icon:before{background:#00b2fc}.counter__card__info .counter__card--content .count__number{color:#00b2fc}.counter__card__dark .counter__card--icon{color:white;background:#22282d}.counter__card__dark .counter__card--icon:before{background:#22282d}.counter__card__dark .counter__card--content .count__number{color:#22282d}.counter__card__white .counter__card--icon{color:#22282d;background:#ffffff}.counter__card__white .counter__card--icon:before{background:#ffffff}.counter__card__white .counter__card--content .count__number{color:#ffffff}.counter__card__black .counter__card--icon{color:white;background:#000000}.counter__card__black .counter__card--icon:before{background:#000000}.counter__card__black .counter__card--content .count__number{color:#000000}.counter__card__grey .counter__card--icon{color:#22282d;background:#f4f6fc}.counter__card__grey .counter__card--icon:before{background:#f4f6fc}.counter__card__grey .counter__card--content .count__number{color:#f4f6fc}.counter__card__grey2 .counter__card--icon{color:white;background:#808da1}.counter__card__grey2 .counter__card--icon:before{background:#808da1}.counter__card__grey2 .counter__card--content .count__number{color:#808da1}.counter__card__twitter .counter__card--icon{color:white;background:#1da1f2}.counter__card__twitter .counter__card--icon:before{background:#1da1f2}.counter__card__twitter .counter__card--content .count__number{color:#1da1f2}.counter__card__linkedin .counter__card--icon{color:white;background:#0077b5}.counter__card__linkedin .counter__card--icon:before{background:#0077b5}.counter__card__linkedin .counter__card--content .count__number{color:#0077b5}.counter__card__instagram .counter__card--icon{color:white;background:#e1306c}.counter__card__instagram .counter__card--icon:before{background:#e1306c}.counter__card__instagram .counter__card--content .count__number{color:#e1306c}.m-0-5{margin:calc(0.5 * var(--base-spacer-x)) calc(0.5 * var(--base-spacer-x))}.mt-0-5{margin-top:calc(0.5 * var(--base-spacer-x))}.mr-0-5{margin-right:calc(0.5 * var(--base-spacer-x))}.mb-0-5{margin-bottom:calc(0.5 * var(--base-spacer-x))}.ml-0-5{margin-left:calc(0.5 * var(--base-spacer-x))}.my-0-5{margin-top:calc(0.5 * var(--base-spacer-x));margin-bottom:calc(0.5 * var(--base-spacer-x))}.m-1{margin:calc(1 * var(--base-spacer-x)) calc(1 * var(--base-spacer-x))}.mt-1{margin-top:calc(1 * var(--base-spacer-x))}.mr-1{margin-right:calc(1 * var(--base-spacer-x))}.mb-1{margin-bottom:calc(1 * var(--base-spacer-x))}.ml-1{margin-left:calc(1 * var(--base-spacer-x))}.my-1{margin-top:calc(1 * var(--base-spacer-x));margin-bottom:calc(1 * var(--base-spacer-x))}.m-1-5{margin:calc(1.5 * var(--base-spacer-x)) calc(1.5 * var(--base-spacer-x))}.mt-1-5{margin-top:calc(1.5 * var(--base-spacer-x))}.mr-1-5{margin-right:calc(1.5 * var(--base-spacer-x))}.mb-1-5{margin-bottom:calc(1.5 * var(--base-spacer-x))}.ml-1-5{margin-left:calc(1.5 * var(--base-spacer-x))}.my-1-5{margin-top:calc(1.5 * var(--base-spacer-x));margin-bottom:calc(1.5 * var(--base-spacer-x))}.m-2{margin:calc(2 * var(--base-spacer-y)) calc(2 * var(--base-spacer-x))}.mt-2{margin-top:calc(2 * var(--base-spacer-y))}.mr-2{margin-right:calc(2 * var(--base-spacer-x))}.mb-2{margin-bottom:calc(2 * var(--base-spacer-y))}.ml-2{margin-left:calc(2 * var(--base-spacer-x))}.my-2{margin-top:calc(2 * var(--base-spacer-y));margin-bottom:calc(2 * var(--base-spacer-y))}.m-2-5{margin:calc(2.5 * var(--base-spacer-y)) calc(2.5 * var(--base-spacer-x))}.mt-2-5{margin-top:calc(2.5 * var(--base-spacer-y))}.mr-2-5{margin-right:calc(2.5 * var(--base-spacer-x))}.mb-2-5{margin-bottom:calc(2.5 * var(--base-spacer-y))}.ml-2-5{margin-left:calc(2.5 * var(--base-spacer-x))}.my-2-5{margin-top:calc(2.5 * var(--base-spacer-y));margin-bottom:calc(2.5 * var(--base-spacer-y))}.m-3{margin:calc(3 * var(--base-spacer-y)) calc(3 * var(--base-spacer-x))}.mt-3{margin-top:calc(3 * var(--base-spacer-y))}.mr-3{margin-right:calc(3 * var(--base-spacer-x))}.mb-3{margin-bottom:calc(3 * var(--base-spacer-y))}.ml-3{margin-left:calc(3 * var(--base-spacer-x))}.my-3{margin-top:calc(3 * var(--base-spacer-y));margin-bottom:calc(3 * var(--base-spacer-y))}.m-3-5{margin:calc(3.5 * var(--base-spacer-y)) calc(3.5 * var(--base-spacer-x))}.mt-3-5{margin-top:calc(3.5 * var(--base-spacer-y))}.mr-3-5{margin-right:calc(3.5 * var(--base-spacer-x))}.mb-3-5{margin-bottom:calc(3.5 * var(--base-spacer-y))}.ml-3-5{margin-left:calc(3.5 * var(--base-spacer-x))}.my-3-5{margin-top:calc(3.5 * var(--base-spacer-y));margin-bottom:calc(3.5 * var(--base-spacer-y))}.m-4{margin:calc(4 * var(--base-spacer-x)) calc(4 * var(--base-spacer-x))}.mt-4{margin-top:calc(4 * var(--base-spacer-x))}.mr-4{margin-right:calc(4 * var(--base-spacer-x))}.mb-4{margin-bottom:calc(4 * var(--base-spacer-x))}.ml-4{margin-left:calc(4 * var(--base-spacer-x))}.my-4{margin-top:calc(4 * var(--base-spacer-x));margin-bottom:calc(4 * var(--base-spacer-x))}.m-5{margin:calc(5 * var(--base-spacer-x)) calc(5 * var(--base-spacer-x))}.mt-5{margin-top:calc(5 * var(--base-spacer-x))}.mr-5{margin-right:calc(5 * var(--base-spacer-x))}.mb-5{margin-bottom:calc(5 * var(--base-spacer-x))}.ml-5{margin-left:calc(5 * var(--base-spacer-x))}.my-5{margin-top:calc(5 * var(--base-spacer-x));margin-bottom:calc(5 * var(--base-spacer-x))}.mx-auto{margin-left:auto;margin-right:auto}.p-0-5{padding:calc(0.5 * var(--base-spacer-x)) calc(0.5 * var(--base-spacer-x))}.pt-0-5{padding-top:calc(0.5 * var(--base-spacer-x))}.pr-0-5{padding-right:calc(0.5 * var(--base-spacer-x))}.pb-0-5{padding-bottom:calc(0.5 * var(--base-spacer-x))}.pl-0-5{padding-left:calc(0.5 * var(--base-spacer-x))}.py-0-5{padding-top:calc(0.5 * var(--base-spacer-x));padding-bottom:calc(0.5 * var(--base-spacer-x))}.p-1{padding:calc(1 * var(--base-spacer-x)) calc(1 * var(--base-spacer-x))}.pt-1{padding-top:calc(1 * var(--base-spacer-x))}.pr-1{padding-right:calc(1 * var(--base-spacer-x))}.pb-1{padding-bottom:calc(1 * var(--base-spacer-x))}.pl-1{padding-left:calc(1 * var(--base-spacer-x))}.py-1{padding-top:calc(1 * var(--base-spacer-x));padding-bottom:calc(1 * var(--base-spacer-x))}.p-1-5{padding:calc(1.5 * var(--base-spacer-x)) calc(1.5 * var(--base-spacer-x))}.pt-1-5{padding-top:calc(1.5 * var(--base-spacer-x))}.pr-1-5{padding-right:calc(1.5 * var(--base-spacer-x))}.pb-1-5{padding-bottom:calc(1.5 * var(--base-spacer-x))}.pl-1-5{padding-left:calc(1.5 * var(--base-spacer-x))}.py-1-5{padding-top:calc(1.5 * var(--base-spacer-x));padding-bottom:calc(1.5 * var(--base-spacer-x))}.p-2{padding:calc(2 * var(--base-spacer-y)) calc(2 * var(--base-spacer-x))}.pt-2{padding-top:calc(2 * var(--base-spacer-y))}.pr-2{padding-right:calc(2 * var(--base-spacer-x))}.pb-2{padding-bottom:calc(2 * var(--base-spacer-y))}.pl-2{padding-left:calc(2 * var(--base-spacer-x))}.py-2{padding-top:calc(2 * var(--base-spacer-y));padding-bottom:calc(2 * var(--base-spacer-y))}.p-2-5{padding:calc(2.5 * var(--base-spacer-y)) calc(2.5 * var(--base-spacer-x))}.pt-2-5{padding-top:calc(2.5 * var(--base-spacer-y))}.pr-2-5{padding-right:calc(2.5 * var(--base-spacer-x))}.pb-2-5{padding-bottom:calc(2.5 * var(--base-spacer-y))}.pl-2-5{padding-left:calc(2.5 * var(--base-spacer-x))}.py-2-5{padding-top:calc(2.5 * var(--base-spacer-y));padding-bottom:calc(2.5 * var(--base-spacer-y))}.p-3{padding:calc(3 * var(--base-spacer-y)) calc(3 * var(--base-spacer-x))}.pt-3{padding-top:calc(3 * var(--base-spacer-y))}.pr-3{padding-right:calc(3 * var(--base-spacer-x))}.pb-3{padding-bottom:calc(3 * var(--base-spacer-y))}.pl-3{padding-left:calc(3 * var(--base-spacer-x))}.py-3{padding-top:calc(3 * var(--base-spacer-y));padding-bottom:calc(3 * var(--base-spacer-y))}.p-3-5{padding:calc(3.5 * var(--base-spacer-y)) calc(3.5 * var(--base-spacer-x))}.pt-3-5{padding-top:calc(3.5 * var(--base-spacer-y))}.pr-3-5{padding-right:calc(3.5 * var(--base-spacer-x))}.pb-3-5{padding-bottom:calc(3.5 * var(--base-spacer-y))}.pl-3-5{padding-left:calc(3.5 * var(--base-spacer-x))}.py-3-5{padding-top:calc(3.5 * var(--base-spacer-y));padding-bottom:calc(3.5 * var(--base-spacer-y))}.p-4{padding:calc(4 * var(--base-spacer-x)) calc(4 * var(--base-spacer-x))}.pt-4{padding-top:calc(4 * var(--base-spacer-x))}.pr-4{padding-right:calc(4 * var(--base-spacer-x))}.pb-4{padding-bottom:calc(4 * var(--base-spacer-x))}.pl-4{padding-left:calc(4 * var(--base-spacer-x))}.py-4{padding-top:calc(4 * var(--base-spacer-x));padding-bottom:calc(4 * var(--base-spacer-x))}.p-5{padding:calc(5 * var(--base-spacer-x)) calc(5 * var(--base-spacer-x))}.pt-5{padding-top:calc(5 * var(--base-spacer-x))}.pr-5{padding-right:calc(5 * var(--base-spacer-x))}.pb-5{padding-bottom:calc(5 * var(--base-spacer-x))}.pl-5{padding-left:calc(5 * var(--base-spacer-x))}.py-5{padding-top:calc(5 * var(--base-spacer-x));padding-bottom:calc(5 * var(--base-spacer-x))}.px-auto{padding-left:auto;padding-right:auto}.disablecommentswrap{padding:30px}@media (max-width:575.98px){.disablecommentswrap{padding:30px}}.disablecommentswrap .delete-comments-not-found{width:60%;margin:0 auto;text-align:center}.disablecommentswrap .delete-comments-not-found .error-message{margin-top:30px;color:#444}@media (max-width:1199.98px){.sidebar__widget__wrap{margin-top:50px}}.dc-text__block{background:#ffffff;padding:20px;border-radius:10px}.dc-text__block__big__pad{padding:40px 50px;background:#ffffff;border-radius:10px}@media (max-width:767.98px){.dc-text__block__big__pad{padding:40px 25px}}.dc-container{width:100%;max-width:1200px;margin:0 auto}.dc-row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.dc-col{flex-basis:0;flex-grow:1;max-width:100%}.dc-col,.dc-col-lg-3,.dc-col-lg-4,.dc-col-lg-9,.dc-col-md-6,.dc-col-sm-6,.dc-col-xs-6{padding-left:15px;padding-right:15px;width:100%}@media (min-width:576px){.dc-col-xs-6{flex:0 0 50%;max-width:50%}}@media (min-width:768px){.dc-col-sm-6{flex:0 0 50%;max-width:50%}}@media (min-width:992px){.dc-col-md-6{flex:0 0 50%;max-width:50%}}@media (min-width:1200px){.dc-col-lg-3{flex:0 0 25%;max-width:25%}.dc-col-lg-4{flex:0 0 33.33%;max-width:33.33%}.dc-col-lg-9{flex:0 0 75%;max-width:75%}}.form__control{border:1px solid rgba(0,0,0,0.15)!important}.form__control.w-100{width:100%}.d__flex{display:flex}.space__between{justify-content:space-between;align-items:center}.icon__input{position:relative}.icon__input .icon{position:absolute;top:7px;right:12px;pointer-events:none}.button__primary:not(.hover__highlight){background:#623cea;color:white;border-color:#623cea;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__primary:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__primary:not(.hover__highlight) .icon{color:#623cea;background:white}.button__primary.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__primary.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__primary.active,a.button__primary:hover,button.button__primary.active,button.button__primary:hover{background:#4f25e8;color:white;border-color:#4f25e8;text-shadow:0 1px 1px rgba(255,255,255,0.3)}a.button__primary.active:disabled,a.button__primary:hover:disabled,button.button__primary.active:disabled,button.button__primary:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__primary.hover__highlight:hover .icon,button.button__primary.hover__highlight:hover .icon{background:white;color:#623cea}.button__secondary:not(.hover__highlight){background:#fa7d51;color:white;border-color:#fa7d51;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__secondary:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__secondary:not(.hover__highlight) .icon{color:#fa7d51;background:white}.button__secondary.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__secondary.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__secondary.active,a.button__secondary:hover,button.button__secondary.active,button.button__secondary:hover{background:#f96a38;color:white;border-color:#f96a38;text-shadow:0 1px 1px rgba(255,255,255,0.3)}a.button__secondary.active:disabled,a.button__secondary:hover:disabled,button.button__secondary.active:disabled,button.button__secondary:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__secondary.hover__highlight:hover .icon,button.button__secondary.hover__highlight:hover .icon{background:white;color:#fa7d51}.button__success:not(.hover__highlight){background:#05cb6b;color:white;border-color:#05cb6b;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__success:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__success:not(.hover__highlight) .icon{color:#05cb6b;background:white}.button__success.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__success.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__success.active,a.button__success:hover,button.button__success.active,button.button__success:hover{background:#04b25e;color:white;border-color:#04b25e;text-shadow:0 1px 1px rgba(255,255,255,0.3)}a.button__success.active:disabled,a.button__success:hover:disabled,button.button__success.active:disabled,button.button__success:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__success.hover__highlight:hover .icon,button.button__success.hover__highlight:hover .icon{background:white;color:#05cb6b}.button__danger:not(.hover__highlight){background:#e0061a;color:white;border-color:#e0061a;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__danger:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__danger:not(.hover__highlight) .icon{color:#e0061a;background:white}.button__danger.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__danger.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__danger.active,a.button__danger:hover,button.button__danger.active,button.button__danger:hover{background:#c70517;color:white;border-color:#c70517;text-shadow:0 1px 1px rgba(255,255,255,0.3)}a.button__danger.active:disabled,a.button__danger:hover:disabled,button.button__danger.active:disabled,button.button__danger:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__danger.hover__highlight:hover .icon,button.button__danger.hover__highlight:hover .icon{background:white;color:#e0061a}.button__info:not(.hover__highlight){background:#00b2fc;color:white;border-color:#00b2fc;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__info:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__info:not(.hover__highlight) .icon{color:#00b2fc;background:white}.button__info.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__info.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__info.active,a.button__info:hover,button.button__info.active,button.button__info:hover{background:#00a0e3;color:white;border-color:#00a0e3;text-shadow:0 1px 1px rgba(255,255,255,0.3)}a.button__info.active:disabled,a.button__info:hover:disabled,button.button__info.active:disabled,button.button__info:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__info.hover__highlight:hover .icon,button.button__info.hover__highlight:hover .icon{background:white;color:#00b2fc}.button__dark:not(.hover__highlight){background:#22282d;color:white;border-color:#22282d;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__dark:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__dark:not(.hover__highlight) .icon{color:#22282d;background:white}.button__dark.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__dark.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__dark.active,a.button__dark:hover,button.button__dark.active,button.button__dark:hover{background:#171b1e;color:white;border-color:#171b1e;text-shadow:0 1px 1px rgba(255,255,255,0.3)}a.button__dark.active:disabled,a.button__dark:hover:disabled,button.button__dark.active:disabled,button.button__dark:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__dark.hover__highlight:hover .icon,button.button__dark.hover__highlight:hover .icon{background:white;color:#22282d}.button__white:not(.hover__highlight){background:#ffffff;color:#623cea;border-color:#ffffff;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__white:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__white:not(.hover__highlight) .icon{color:#ffffff;background:#623cea}.button__white.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__white.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__white.active,a.button__white:hover,button.button__white.active,button.button__white:hover{background:#f2f2f2;color:#623cea;border-color:#f2f2f2;text-shadow:0 1px 1px rgba(98,60,234,0.3)}a.button__white.active:disabled,a.button__white:hover:disabled,button.button__white.active:disabled,button.button__white:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__white.hover__highlight:hover .icon,button.button__white.hover__highlight:hover .icon{background:#623cea;color:#ffffff}.button__black:not(.hover__highlight){background:#000000;color:white;border-color:#000000;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__black:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__black:not(.hover__highlight) .icon{color:#000000;background:white}.button__black.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__black.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__black.active:disabled,a.button__black:hover:disabled,button.button__black.active:disabled,button.button__black:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__black.hover__highlight:hover .icon,button.button__black.hover__highlight:hover .icon{background:white;color:#000000}.button__grey:not(.hover__highlight){background:#f4f6fc;color:#623cea;border-color:#f4f6fc;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__grey:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__grey:not(.hover__highlight) .icon{color:#f4f6fc;background:#623cea}.button__grey.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__grey.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__grey.active,a.button__grey:hover,button.button__grey.active,button.button__grey:hover{background:#e0e6f7;color:#623cea;border-color:#e0e6f7;text-shadow:0 1px 1px rgba(98,60,234,0.3)}a.button__grey.active:disabled,a.button__grey:hover:disabled,button.button__grey.active:disabled,button.button__grey:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__grey.hover__highlight:hover .icon,button.button__grey.hover__highlight:hover .icon{background:#623cea;color:#f4f6fc}.button__grey2:not(.hover__highlight){background:#808da1;color:white;border-color:#808da1;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__grey2:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__grey2:not(.hover__highlight) .icon{color:#808da1;background:white}.button__grey2.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__grey2.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__grey2.active,a.button__grey2:hover,button.button__grey2.active,button.button__grey2:hover{background:#718096;color:white;border-color:#718096;text-shadow:0 1px 1px rgba(255,255,255,0.3)}a.button__grey2.active:disabled,a.button__grey2:hover:disabled,button.button__grey2.active:disabled,button.button__grey2:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__grey2.hover__highlight:hover .icon,button.button__grey2.hover__highlight:hover .icon{background:white;color:#808da1}.button__twitter:not(.hover__highlight){background:#1da1f2;color:white;border-color:#1da1f2;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__twitter:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__twitter:not(.hover__highlight) .icon{color:#1da1f2;background:white}.button__twitter.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__twitter.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__twitter.active,a.button__twitter:hover,button.button__twitter.active,button.button__twitter:hover{background:#0d95e8;color:white;border-color:#0d95e8;text-shadow:0 1px 1px rgba(255,255,255,0.3)}a.button__twitter.active:disabled,a.button__twitter:hover:disabled,button.button__twitter.active:disabled,button.button__twitter:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__twitter.hover__highlight:hover .icon,button.button__twitter.hover__highlight:hover .icon{background:white;color:#1da1f2}.button__linkedin:not(.hover__highlight){background:#0077b5;color:white;border-color:#0077b5;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__linkedin:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__linkedin:not(.hover__highlight) .icon{color:#0077b5;background:white}.button__linkedin.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__linkedin.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__linkedin.active,a.button__linkedin:hover,button.button__linkedin.active,button.button__linkedin:hover{background:#00669c;color:white;border-color:#00669c;text-shadow:0 1px 1px rgba(255,255,255,0.3)}a.button__linkedin.active:disabled,a.button__linkedin:hover:disabled,button.button__linkedin.active:disabled,button.button__linkedin:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__linkedin.hover__highlight:hover .icon,button.button__linkedin.hover__highlight:hover .icon{background:white;color:#0077b5}.button__instagram:not(.hover__highlight){background:#e1306c;color:white;border-color:#e1306c;transition:all 0.3s ease-in-out 0s;transition-property:background,color,box-shadow,border}.button__instagram:not(.hover__highlight):disabled{cursor:not-allowed;background:#fa7d51}.button__instagram:not(.hover__highlight) .icon{color:#e1306c;background:white}.button__instagram.hover__highlight{color:#623cea;border-color:rgba(98,60,234,0.2)}.button__instagram.hover__highlight .icon{background:#623cea;color:#ffffff}a.button__instagram.active,a.button__instagram:hover,button.button__instagram.active,button.button__instagram:hover{background:#d81f5e;color:white;border-color:#d81f5e;text-shadow:0 1px 1px rgba(255,255,255,0.3)}a.button__instagram.active:disabled,a.button__instagram:hover:disabled,button.button__instagram.active:disabled,button.button__instagram:hover:disabled{cursor:not-allowed;background:#fa7d51;box-shadow:none}a.button__instagram.hover__highlight:hover .icon,button.button__instagram.hover__highlight:hover .icon{background:white;color:#e1306c}.disablecommentswrap .button{height:50px;line-height:50px;padding:0;border-radius:5px;color:#808da1;font-size:15px;border:0;font-weight:700;padding:0 20px;box-shadow:none;font-family:"DM Sans",sans-serif;background:#f4f6fc}.disablecommentswrap .button:focus,.disablecommentswrap .button:hover{box-shadow:none;border:0;color:#ffffff;background:#05cb6b}.disablecommentswrap .button.button__fade{display:flex;align-items:center;min-width:190px;justify-content:center}@media (max-width:991.98px){.disablecommentswrap .button{height:50px;line-height:46px;font-size:13px}}.disablecommentswrap .button__delete{color:#ffffff;background:#e0061a}.disablecommentswrap .button__delete:focus,.disablecommentswrap .button__delete:hover{background:rgb(255,0,0);color:#ffffff}.disablecommentswrap .button__success{color:#ffffff;background:#05cb6b;opacity:0.6}.disablecommentswrap .button__success:focus,.disablecommentswrap .button__success:hover{background:rgba(5,203,107,0.9);color:#ffffff}.disablecommentswrap .button__success.form-dirty{opacity:1}.disablecommentswrap .button--sm{height:40px;line-height:40px}.disablecommentswrap .button__group .button:not(:last-child){margin-right:15px}.cancelButton{padding:0;border-radius:5px;color:#808da1!important;font-size:15px;border:0;font-weight:700;padding:0 20px;box-shadow:none;outline:none;background:#f4f6fc!important}.confirmButton{padding:0;border-radius:5px;color:#fff!important;font-size:15px;border:0;font-weight:700;padding:0 20px;box-shadow:none;outline:none;background:#e0061a!important}.confirmButton:focus{outline:none!important;box-shadow:none!important}#eael-spinner{width:18px;display:inline-block;float:left;margin:0 5px 0 0;-webkit-transition-property:-webkit-transform;-webkit-transition-duration:1.2s;-webkit-animation-name:rotate;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-transition-property:-moz-transform;-moz-animation-name:rotate;-moz-animation-duration:1.2s;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;transition-property:transform;animation-name:rotate;animation-duration:1.2s;animation-iteration-count:infinite;animation-timing-function:linear}@keyframes rotate{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}.disable__comment__alert{display:flex;align-items:center;padding:10px 20px;border:0}@media (max-width:767.98px){.disable__comment__alert{display:block}.disable__comment__alert .button__group{margin-top:20px}}.disable__comment__alert .alert__content{display:flex;align-items:center;padding-right:20px;flex-wrap:wrap;flex:1}@media (max-width:767.98px){.disable__comment__alert .alert__content{padding-right:0}}@media (max-width:575.98px){.disable__comment__alert .alert__content{display:block}}.disable__comment__alert .alert__content img{margin-right:15px;height:30px}@media (max-width:575.98px){.disable__comment__alert .alert__content img{margin-bottom:10px}}.disable__comment__alert .alert__content p{font-size:18px;font-weight:500;color:#22282d;font-family:"DM Sans",sans-serif}.disable__comment__alert .alert__content a.wpinsights-disable-comments-collect{color:#05cb6b}.disable__comment__alert .alert__content a.wpinsights-disable-comments-collect:focus,.disable__comment__alert .alert__content a.wpinsights-disable-comments-collect:hover,.disable__comment__alert .alert__content a.wpinsights-disable-comments-collect:visited{outline:none;border:none;box-shadow:none}.disable__comment__alert .alert__content .wpinsights-data{margin-top:10px}.disable__comment__alert .alert__content .wpinsights-data p{font-size:13px}.disable__comment__alert .button__group{text-align:right}@media (max-width:767.98px){.disable__comment__alert .button__group{text-align:left}}.disable__comment__alert .button__group .button{margin-right:0;margin-top:5px;margin-bottom:5px}.disable__comment__alert .button__group .button:not(:last-child){margin-right:0}.disable__comment__alert .button__group .button:not(:first-child){margin-left:15px}@media (max-width:767.98px){.disable__comment__alert .button__group .button{margin-right:10px}.disable__comment__alert .button__group .button:not(:last-child){margin-right:10px}.disable__comment__alert .button__group .button:not(:first-child){margin-left:0}}.section__header{text-align:center;margin-bottom:50px}.section__header h2{font-size:24px;font-weight:700;color:#22282d;font-family:"DM Sans",sans-serif}.disable__comment__nav__wrap{background:#ffffff;border-radius:5px;position:relative}.disable__comment__nav__wrap .plugin__version{position:absolute;font-size:16px;font-weight:500;color:#687b95;font-family:"DM Sans",sans-serif;top:50%;right:30px;transform:translateY(-50%)}@media (max-width:767.98px){.disable__comment__nav__wrap .plugin__version{position:static;top:0;transform:translateY(0);padding:10px 10px 10px 20px}}.disable__comment__nav__wrap .disable__comment__nav{display:flex;flex-wrap:wrap;margin-top:0}.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item{margin-bottom:0}.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item .disable__comment__nav__link{font-size:16px;font-weight:700;color:#687b95;text-transform:uppercase;font-family:"DM Sans",sans-serif;padding:17px 20px;outline:none;box-shadow:none}.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item .disable__comment__nav__link.active{color:#22282d;position:relative}.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item .disable__comment__nav__link.active:before{position:absolute;left:0;right:0;bottom:0;height:2px;background:#e0061a;content:""}@media (max-width:991.98px){.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item .disable__comment__nav__link{font-size:18px}}@media (max-width:575.98px){.disable__comment__nav__wrap .disable__comment__nav .disable__comment__nav__item .disable__comment__nav__link{font-size:16px}}.disable__comment__tab{padding-top:25px}.disable__comment__tab__item{display:none}.disable__comment__tab__item.show{display:block}.sites_list_wrapper .sites_list{display:flex;width:100%;flex-wrap:wrap}.sites_list_wrapper .sites_list .subsite__checklist__item{flex:0 0 285px}.sites_list_wrapper .sites_list .subsite__checklist__item label{word-break:break-all}.disable__comment__option .title{font-size:22px;font-weight:500;color:#22282d;margin-bottom:5px}.disable__comment__option .subtitle{color:#687b95;font-size:14px;font-family:"DM Sans",sans-serif;font-weight:400;padding-left:0;line-height:1.5}.disable__comment__option .subtitle .danger{color:#e0061a;font-weight:500}.disable__comment__option .disable_option{border-radius:5px}.disable__comment__option .disable_option h3{font-size:18px;font-weight:500;color:#22282d;font-family:"DM Sans",sans-serif;position:relative;line-height:1.3;display:block;margin-bottom:15px}.disable__comment__option .disable_option input[type=radio]{display:none}.disable__comment__option .disable_option input[type=radio]:checked~label:before{border-color:#05cb6b}.disable__comment__option .disable_option input[type=radio]:checked~label:after{opacity:1}.disable__comment__option .disable_option input[type=radio]~label{font-size:18px;font-weight:500;color:#22282d;font-family:"DM Sans",sans-serif;position:relative;line-height:1.3;padding-left:25px;display:block;margin-bottom:15px}.disable__comment__option .disable_option input[type=radio]~label:before{position:absolute;top:4px;left:0;height:12px;width:12px;border-radius:50%;border:1px solid #687b95;content:""}.disable__comment__option .disable_option input[type=radio]~label:after{position:absolute;top:7px;left:3px;height:8px;width:8px;border-radius:50%;border:0;background:#05cb6b;content:"";opacity:0;transition:all 0.3s ease}.disable__comment__option .disable_option input[type=radio]~label span{font-size:16px;font-weight:400;color:#687b95}.disable__comment__option .disable_option .disable__checklist{display:flex;flex-wrap:wrap}.disable__comment__option .disable_option .disable__checklist .disable__checklist__item{flex:0 0 140px;margin-right:10px;margin-bottom:10px}.disable__comment__option .disable_option .disable__checklist .disable__checklist__item input{display:none}.disable__comment__option .disable_option .disable__checklist .disable__checklist__item input:checked~label:before{border-color:#00b2fc;background:#00b2fc}.disable__comment__option .disable_option .disable__checklist .disable__checklist__item input:checked~label:after{opacity:1}.disable__comment__option .disable_option .disable__checklist .disable__checklist__item label{font-size:16px;font-weight:500;color:#687b95;font-family:"DM Sans",sans-serif;position:relative;line-height:1.3;padding-left:25px;display:block}.disable__comment__option .disable_option .disable__checklist .disable__checklist__item label:before{position:absolute;top:4px;left:0;height:10px;width:10px;border:1px solid #687b95;content:""}.disable__comment__option .disable_option .disable__checklist .disable__checklist__item label:after{position:absolute;top:-2px;left:2px;height:11px;width:11px;border:0;content:url(../img/check.png);opacity:0;transition:all 0.3s ease}.disable__comment__option .disable_option .delete__checklist{display:flex;flex-wrap:wrap;margin-bottom:10px}.disable__comment__option .disable_option .delete__checklist.disabled__sites .delete__checklist__item{flex:0 1 200px}.disable__comment__option .disable_option .delete__checklist.disabled__sites .delete__checklist__item:first-child{flex-basis:100%}.disable__comment__option .disable_option .delete__checklist.disabled__sites .delete__checklist__item:first-child label{display:inline-block}.disable__comment__option .disable_option .delete__checklist .delete__checklist__item{flex:0 0 130px;margin-right:10px;margin-bottom:10px}.disable__comment__option .disable_option .delete__checklist .delete__checklist__item input{display:none}.disable__comment__option .disable_option .delete__checklist .delete__checklist__item input:checked~label:before{border-color:#00b2fc;background:#00b2fc}.disable__comment__option .disable_option .delete__checklist .delete__checklist__item input:checked~label:after{opacity:1}.disable__comment__option .disable_option .delete__checklist .delete__checklist__item label{font-size:18px;font-weight:500;color:#687b95;font-family:"DM Sans",sans-serif;position:relative;line-height:1.3;padding-left:25px;display:block}.disable__comment__option .disable_option .delete__checklist .delete__checklist__item label:before{position:absolute;top:4px;left:0;height:12px;width:12px;border:1px solid #687b95;content:""}.disable__comment__option .disable_option .delete__checklist .delete__checklist__item label:after{position:absolute;top:-2px;left:2px;height:13px;width:13px;border:0;content:url(../img/check.png);opacity:0;transition:all 0.3s ease}.disable__comment__option .disable_option .remove__checklist{display:flex;flex-wrap:wrap;margin-bottom:10px}.disable__comment__option .disable_option .remove__checklist.disabled__sites .remove__checklist__item{flex:0 1 200px}.disable__comment__option .disable_option .remove__checklist.disabled__sites .remove__checklist__item:first-child{flex-basis:100%}.disable__comment__option .disable_option .remove__checklist.disabled__sites .remove__checklist__item:first-child label{display:inline-block}.disable__comment__option .disable_option .remove__checklist .remove__checklist__item{flex:0 0 130px;margin-right:10px;margin-bottom:10px}.disable__comment__option .disable_option .remove__checklist .remove__checklist__item input{display:none}.disable__comment__option .disable_option .remove__checklist .remove__checklist__item input:checked~label:before{border-color:#00b2fc;background:#00b2fc}.disable__comment__option .disable_option .remove__checklist .remove__checklist__item input:checked~label:after{opacity:1}.disable__comment__option .disable_option .remove__checklist .remove__checklist__item label{font-size:18px;font-weight:500;color:#687b95;font-family:"DM Sans",sans-serif;position:relative;line-height:1.3;padding-left:25px;display:block}.disable__comment__option .disable_option .remove__checklist .remove__checklist__item label:before{position:absolute;top:4px;left:0;height:12px;width:12px;border:1px solid #687b95;content:""}.disable__comment__option .disable_option .remove__checklist .remove__checklist__item label:after{position:absolute;top:-2px;left:2px;height:13px;width:13px;border:0;content:url(../img/check.png);opacity:0;transition:all 0.3s ease}.disable__comment__option .disable_option .dissable__switch__item{margin-bottom:10px}.disable__comment__option .disable_option .dissable__switch__item input{display:none}.disable__comment__option .disable_option .dissable__switch__item input:checked~label{color:#22282d}.disable__comment__option .disable_option .dissable__switch__item input:checked~label .switch{background:#05cb6b}.disable__comment__option .disable_option .dissable__switch__item input:checked~label .switch:before{left:23px}.disable__comment__option .disable_option .dissable__switch__item input:checked~label .switch .switch__text{left:5px}.disable__comment__option .disable_option .dissable__switch__item input:checked~label .switch .switch__text.on{display:block}.disable__comment__option .disable_option .dissable__switch__item input:checked~label .switch .switch__text.off{display:none}.disable__comment__option .disable_option .dissable__switch__item label{font-size:16px;font-weight:500;color:#687b95;font-family:"DM Sans",sans-serif;display:inline-flex;align-items:center}@media (max-width:479.98px){.disable__comment__option .disable_option .dissable__switch__item label{font-size:14px}}.disable__comment__option .disable_option .dissable__switch__item label .switch{flex:0 0 35px;height:16px;width:35px;margin-right:20px;border-radius:10px;background:#99a6b8;display:inline-block;font-size:8px;text-transform:uppercase;font-weight:400;color:#ffffff;font-family:"DM Sans",sans-serif;padding:2px 5px;position:relative;transition:all 0.3s ease}@media (max-width:479.98px){.disable__comment__option .disable_option .dissable__switch__item label .switch{font-size:10px}}.disable__comment__option .disable_option .dissable__switch__item label .switch:before{position:absolute;top:4px;left:4px;border-radius:50%;background:#ffffff;height:8px;width:8px;content:"";transition:all 0.3s ease}.disable__comment__option .disable_option .dissable__switch__item label .switch .switch__text{position:absolute;top:2px;left:16px;transition:all 0.3s ease}.disable__comment__option .disable_option .dissable__switch__item label .switch .switch__text.on{display:none}.disable__comment__option .disable_option .delete__feedback{margin-bottom:10px}.disable__comment__option .disable_option .delete__feedback label{font-size:14px}.disable__comment__option .disable_option .delete__feedback .delete__feedback__item{position:relative;display:inline-block;padding-right:8px}.disable__comment__option .disable_option .delete__feedback .delete__feedback__item:not(:last-child):before{position:absolute;top:7px;right:-2px;bottom:7px;width:2px;background:#687b95;content:""}.disable__comment__option .disable_option .delete__feedback .delete__feedback__item:last-child{padding-left:8px}.disable__comment__option .disable_option .delete__feedback .delete__feedback__item a{font-size:18px;font-weight:500;color:#687b95;outline:none;box-shadow:none}.disable__comment__option .disable_option .disable__option__description{font-size:15px;font-weight:400;line-height:1.8;color:#687b95;font-family:"DM Sans",sans-serif}.disable__comment__option .disable_option .disable__option__description .danger{color:#e0061a;font-weight:500}.disable__comment__option .total-comments{font-size:16px;line-height:26px;margin-top:20px;color:#687b95}.subsite__checklist__item{flex:0 0 130px;margin-right:10px;margin-bottom:10px}.subsite__checklist__item input{display:none}.subsite__checklist__item input:checked~label:before{border-color:#00b2fc;background:#00b2fc}.subsite__checklist__item input:checked~label:after{opacity:1}.subsite__checklist__item label{font-size:18px;font-weight:500;color:#687b95;font-family:"DM Sans",sans-serif;position:relative;line-height:1.3;padding-left:25px;display:inline-block}.subsite__checklist__item label:before{position:absolute;top:4px;left:0;height:12px;width:12px;border:1px solid #687b95;content:""}.subsite__checklist__item label:after{position:absolute;top:-2px;left:2px;height:13px;width:13px;border:0;content:url(../img/check.png);opacity:0;transition:all 0.3s ease}.paginationjs-pages ul{margin-top:0;display:flex;align-items:center}.paginationjs-pages ul li a{font-size:20px;border:1px solid rgba(0,0,0,0.1);padding:0 20px;cursor:pointer;color:#687b95}.paginationjs-pages ul li a:hover{color:#05cb6b}.paginationjs-pages ul li.paginationjs-next a{border-top-right-radius:8px;border-bottom-right-radius:8px}.paginationjs-pages ul li.paginationjs-prev a{border-top-left-radius:8px;border-bottom-left-radius:8px}.paginationjs-pages ul li.disabled a{cursor:not-allowed;background-color:rgba(0,0,0,0.05)}.paginationjs-pages ul li.disabled a:hover{color:#687b95}.has-pagination.disabled .paginationjs-pages li a{opacity:0.3}.has-pagination.disabled .paginationjs-pages li a:hover{color:#687b95}.item__number__controller{align-items:center}.item__number__controller p{margin-right:10px}.dc-select{position:relative}.dc-select .icon{position:absolute}.dc-select select{appearance:none}.nothing-found{text-align:center;flex:1}.nothing-found p{font-size:16px;font-weight:400;color:#808da1;margin-bottom:15px}.disable__switch{display:flex;flex-wrap:wrap}.disable__switch .avatar__status{flex:0 0 170px}.disable__switch .avatar__status label{color:#687b95!important;display:inline-block!important}.dc-item__card_wrap{height:100%;display:flex}.dc-item__card{background:#ffffff;padding:10px;border-radius:5px;margin-bottom:30px;flex-grow:1}.dc-item__card .thumb img{vertical-align:middle;border-style:none}.dc-item__card .card__content{padding:25px 10px;text-align:center}.dc-item__card .card__content h3{font-size:20px;font-weight:500;font-family:"DM Sans",sans-serif;color:#22282d;margin-bottom:10px}.dc-item__card .card__content p{font-size:14px;font-weight:400;color:#687b95;line-height:2.14;margin-bottom:20px}.dc-tutorials{border-radius:5px;max-width:450px;padding-bottom:25px}.dc-tutorials h3{font-size:20px;font-weight:500;color:#22282d;font-family:"DM Sans",sans-serif;margin-bottom:20px}@media (max-width:479.98px){.dc-tutorials h3{font-size:20px}}.dc-tutorials .tutorial__list .tutorial__item{display:flex}.dc-tutorials .tutorial__list .tutorial__item:not(:last-child){margin-bottom:20px}.dc-tutorials .tutorial__list .tutorial__item .icon{flex:0 0 50px;max-width:50px;height:50px;border-radius:5px;background:#f4f6fc;padding:14px;margin-right:15px}.dc-tutorials .tutorial__list .tutorial__item .icon svg path{fill:#808da1;transition:all 0.3s ease}.dc-tutorials .tutorial__list .tutorial__item h4{font-size:15px;line-height:1.6;font-weight:500;color:#687b95;font-family:"DM Sans",sans-serif;transition:all 0.3s ease}@media (max-width:1599.98px){.dc-tutorials .tutorial__list .tutorial__item h4{font-size:14px}}.dc-tutorials .tutorial__list .tutorial__item h4 a{outline:none;box-shadow:none}.dc-tutorials .tutorial__list .tutorial__item:hover .icon svg path{fill:#05cb6b}.dc-tutorials .tutorial__list .tutorial__item:hover h4{color:#22282d}.blog__post{padding:5px;border-radius:5px;background:#ffffff;max-width:450px}.blog__post .thumb{position:relative}.blog__post .thumb img{width:100%}.blog__post .thumb .play__btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);height:50px;width:50px;border-radius:50%;background:#05cb6b;display:flex;justify-content:center;align-items:center;outline:none;box-shadow:none}.blog__post .thumb .play__btn span{width:0;height:0;border-top:8px solid transparent;border-bottom:8px solid transparent;border-left:10px solid #ffffff}.blog__post .blog__post__content{padding:5px 10px}.blog__post .blog__post__content h4{font-size:16px;font-weight:500;color:#22282d;line-height:1.8;font-family:"DM Sans",sans-serif}.footer{width:100%;text-align:center}.footer__content{text-align:center}.footer__content .footer__nav ul{display:flex;flex-wrap:wrap;justify-content:center}.footer__content .footer__nav ul li{margin-bottom:15px;padding:0 10px;position:relative;line-height:1}.footer__content .footer__nav ul li:not(:last-child):before{position:absolute;top:2px;bottom:2px;right:0;width:1px;background:#687b95;content:""}.footer__content .footer__nav ul li a{font-size:16px;font-weight:400;color:#687b95;line-height:inherit;outline:none;box-shadow:none}@media (max-width:767.98px){.footer__content .footer__nav ul li a{font-size:14px}}.cancel-dc-setup{text-align:right;margin-bottom:20px;font-size:13px}.dc-quick__setup__wrap{padding:50px 30px 50px}.dc-logo img{max-width:100%;max-height:80px}.dc-logo__center{text-align:center}.dc-quick__setup__nav{display:flex;justify-content:center;align-items:center;padding:0;margin:0}@media (max-width:767.98px){.dc-quick__setup__nav{flex-wrap:wrap}}.dc-quick__setup__nav .quick__setup__item{padding:0 25px;position:relative}.dc-quick__setup__nav .quick__setup__item:not(:last-child):before{position:absolute;top:50%;left:50%;transform:translateY(-50%);height:3px;width:100%;content:"";background:#d8dde7}@media (max-width:767.98px){.dc-quick__setup__nav .quick__setup__item:not(:last-child):before{height:0;width:0}}@media (max-width:1199.98px){.dc-quick__setup__nav .quick__setup__item{padding:0 15px}}.dc-quick__setup__nav .quick__setup__item .quick__setup__link{text-transform:uppercase;font-size:14px;font-weight:500;color:#22282d;width:200px;text-align:center;padding:13px 0;background:#ffffff;border-radius:5px;position:relative;z-index:1;outline:none;box-shadow:none}@media (max-width:1199.98px){.dc-quick__setup__nav .quick__setup__item .quick__setup__link{width:auto;padding:13px 20px}}@media (max-width:767.98px){.dc-quick__setup__nav .quick__setup__item .quick__setup__link{font-size:12px}}.dc-quick__setup__nav .quick__setup__item.active:not(:last-child):before{background:#e10619}.dc-quick__setup__nav .quick__setup__item.active .quick__setup__link{background:#e10619;color:#ffffff}.dc-quick__step__item{display:none}.dc-quick__step__item.active{display:block}.dc-quick__step__item .button{display:none}.dc-quick__step__item .quick__setup__item__header h2{font-size:32px;font-weight:700;color:#22282d;font-family:"DM Sans",sans-serif;text-align:center;margin-bottom:16px}@media (max-width:767.98px){.dc-quick__step__item .quick__setup__item__header h2{font-size:28px}}@media (max-width:575.98px){.dc-quick__step__item .quick__setup__item__header h2{font-size:24px}}.dc-quick__step__item .quick__setup__item__header p{text-align:center;font-size:16px;color:#687b95;max-width:780px;margin:0 auto}@media (max-width:767.98px){.dc-quick__step__item .quick__setup__item__header p{font-size:14px}}.dc-quick__step__item .dc-video__area{text-align:center;margin:0 auto;position:relative}@media (max-width:1199.98px){.dc-quick__step__item .dc-video__area{min-height:300px}}.dc-quick__step__item .dc-video__area .play__btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);height:70px;width:70px;border-radius:50%;background:#05cb6b;display:flex;justify-content:center;align-items:center;outline:none;box-shadow:none}.dc-quick__step__item .dc-video__area .play__btn span{width:0;height:0;border-top:8px solid transparent;border-bottom:8px solid transparent;border-left:10px solid #ffffff}@media (max-width:767.98px){.dc-quick__step__item .dc-video__area .play__btn{height:50px;width:50px}}.dc-quick__step__item .dc-form__group{padding-left:27px;text-align:center;border-radius:10px;margin:15px auto 0;max-width:800px}@media (max-width:575.98px){.dc-quick__step__item .dc-form__group{text-align:left}}.dc-quick__step__item .dc-form__group input{display:none}.dc-quick__step__item .dc-form__group input:checked~label:before{border-color:#00b2fc;background:#00b2fc}.dc-quick__step__item .dc-form__group input:checked~label:after{opacity:1}.dc-quick__step__item .dc-form__group label{font-size:18px;font-weight:500;color:#22282d;font-family:"DM Sans",sans-serif;position:relative}@media (max-width:767.98px){.dc-quick__step__item .dc-form__group label{font-size:16px}}.dc-quick__step__item .dc-form__group label:before{position:absolute;top:5px;left:-27px;height:12px;width:12px;border:1px solid #687b95;content:""}@media (max-width:767.98px){.dc-quick__step__item .dc-form__group label:before{top:4px}}.dc-quick__step__item .dc-form__group label:after{position:absolute;top:-5px;left:-26px;height:13px;width:13px;border:0;content:url(../img/check.png);opacity:0;transition:all 0.3s ease}.dc-quick__step__item .disable_option{border-radius:5px}.dc-quick__step__item .disable_option.dc-text__block{background:#f4f6fc}.dc-quick__step__item .disable_option input[type=radio]{display:none}.dc-quick__step__item .disable_option input[type=radio]:checked~label:before{border-color:#05cb6b}.dc-quick__step__item .disable_option input[type=radio]:checked~label:after{opacity:1}.dc-quick__step__item .disable_option input[type=radio]~label{font-size:18px;font-weight:500;color:#22282d;font-family:"DM Sans",sans-serif;position:relative;line-height:1.3;padding-left:25px;display:block;margin-bottom:15px}.dc-quick__step__item .disable_option input[type=radio]~label:before{position:absolute;top:4px;left:0;height:12px;width:12px;border-radius:50%;border:1px solid #687b95;content:""}.dc-quick__step__item .disable_option input[type=radio]~label:after{position:absolute;top:7px;left:3px;height:8px;width:8px;border-radius:50%;border:0;background:#05cb6b;content:"";opacity:0;transition:all 0.3s ease}.dc-quick__step__item .disable_option input[type=radio]~label span{font-size:16px;font-weight:400;color:#687b95}.dc-quick__step__item .disable_option .disable__checklist{display:flex;flex-wrap:wrap;margin-bottom:10px}.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item{flex:0 0 140px;margin-right:10px}.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item input{display:none}.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item input:checked~label:before{border-color:#00b2fc;background:#00b2fc}.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item input:checked~label:after{opacity:1}.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item label{font-size:16px;font-weight:500;color:#687b95;font-family:"DM Sans",sans-serif;position:relative;line-height:1.3;padding-left:25px;display:block}.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item label:before{position:absolute;top:4px;left:0;height:10px;width:10px;border:1px solid #687b95;content:""}.dc-quick__step__item .disable_option .disable__checklist .disable__checklist__item label:after{position:absolute;top:-2px;left:2px;height:11px;width:11px;border:0;content:url(../img/check.png);opacity:0;transition:all 0.3s ease}.dc-quick__step__item .disable_option .disable__option__description{font-size:15px;font-weight:400;color:#687b95;font-family:"DM Sans",sans-serif}.dc-quick__step__item .disable_option .disable__option__description .danger{color:#e0061a;font-weight:500}.dc-quick__step__item .finalize-thumb{text-align:center;padding:0 0 30px}.dc-quick__step__item .finalize-thumb img{max-height:220px}.dc-quick__step__item .doc__button__wrap{text-align:center}.dc-quick__step__item .doc__button__wrap .doc__button{font-size:16px;font-weight:500;font-family:"DM Sans",sans-serif;color:#22282d;text-transform:uppercase;border:1px solid #e10619;border-radius:5px;padding:10px 35px;outline:none;box-shadow:none}.dc-quick__step__item .doc__button__wrap .doc__button:hover{background:#e10619;color:#ffffff}.dc-quick__step__item #whatWeCollect{color:#05cb6b;outline:0;box-shadow:none}.dc-quick__step__item #whatWeCollectMessage{display:none}.dc-quick__setup__wrap .button__group{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center}.dc-quick__setup__wrap .button__group .button{width:160px;text-align:center}.dc-quick__setup__wrap .button__group .button.button--sm{width:110px}@media (max-width:767.98px){.dc-quick__setup__wrap .button__group .button{width:unset}.dc-quick__setup__wrap .button__group .button.button--sm{width:unset}}.disable_option .select2-container--default .select2-selection--multiple{min-height:30px;padding:0;min-width:290px;width:100%;display:flex;border:1px solid rgba(0,0,0,0.15)}.disable_option .select2-container--default.select2-container--focus .select2-selection--multiple{border-color:rgba(0,0,0,0.15)}.disable_option .select2-container{min-width:290px;width:auto!important}.disable_option .select2-container .select2-search--inline{float:none}.disable_option .select2-container--default .select2-selection--multiple .select2-selection__rendered{width:auto;display:inline-flex;flex-wrap:wrap;gap:0 5px;margin-top:0;padding:0 8px;align-items:center}.disable_option .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{position:static;border-right:0;line-height:1;font-size:16px;margin-right:3px}.disable_option .select2-container--default .select2-selection--multiple .select2-selection__choice__remove span{line-height:1}.disable_option .select2-container--default .select2-selection--multiple .select2-selection__choice{float:none;display:flex;align-items:stretch;margin-left:0;margin-right:0;padding-left:0;padding-right:3px;border:1px solid rgba(0,0,0,0.15)}.disable_option .select2-container--default .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;border-left:1px solid rgba(0,0,0,0.15)}.disable_option .select2-container--default .select2-search--inline .select2-search__field{margin-top:0px;margin-left:0px;height:30px;padding-top:7px;width:auto!important;font-size:12px}.disable_option .select2-container--default .select2-search--inline .select2-search__field::-webkit-input-placeholder{color:#687b95}.disable_option .select2-container--default .select2-search--inline .select2-search__field::-moz-placeholder{color:#687b95}.disable_option .select2-container--default .select2-search--inline .select2-search__field:-ms-input-placeholder{color:#687b95}.disable_option .select2-container--default .select2-search--inline .select2-search__field:-moz-placeholder{color:#687b95}.disable_option .select2-container--default .select2-selection--multiple .select2-selection__choice{margin-top:0!important;margin-bottom:0!important}.disable_option .select2-container .select2-search--inline .select2-search__field{margin-top:0!important;margin-bottom:0!important;min-height:38px!important;padding-top:11px!important}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
/*# sourceMappingURL=style.css.map */
|
assets/fonts/dm-sans-v11-latin-500.woff
ADDED
|
Binary file
|
assets/fonts/dm-sans-v11-latin-500.woff2
ADDED
|
Binary file
|
assets/fonts/dm-sans-v11-latin-700.woff
ADDED
|
Binary file
|
assets/fonts/dm-sans-v11-latin-700.woff2
ADDED
|
Binary file
|
assets/fonts/dm-sans-v11-latin-regular.woff
ADDED
|
Binary file
|
assets/fonts/dm-sans-v11-latin-regular.woff2
ADDED
|
Binary file
|
assets/js/disable-comments-settings-scripts.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
| 1 |
jQuery(document).ready(function ($) {
|
|
|
|
|
|
|
|
|
|
| 2 |
var saveBtn = jQuery("#disableCommentSaveSettings button.button.button__success");
|
| 3 |
var deleteBtn = jQuery("#deleteCommentSettings button.button.button__delete");
|
| 4 |
|
| 5 |
-
|
| 6 |
if(jQuery('.sites_list_wrapper').length){
|
| 7 |
var addSite = function($sites_list, site, type){
|
| 8 |
var id = "sites__option__" + type + "__" + site.site_id;
|
|
@@ -271,13 +273,14 @@ jQuery(document).ready(function ($) {
|
|
| 271 |
type: "post",
|
| 272 |
data: data,
|
| 273 |
beforeSend: function () {
|
|
|
|
| 274 |
saveBtn.html(
|
| 275 |
-
'<svg id="eael-spinner" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 48 48"><circle cx="24" cy="4" r="4" fill="#fff"/><circle cx="12.19" cy="7.86" r="3.7" fill="#fffbf2"/><circle cx="5.02" cy="17.68" r="3.4" fill="#fef7e4"/><circle cx="5.02" cy="30.32" r="3.1" fill="#fef3d7"/><circle cx="12.19" cy="40.14" r="2.8" fill="#feefc9"/><circle cx="24" cy="44" r="2.5" fill="#feebbc"/><circle cx="35.81" cy="40.14" r="2.2" fill="#fde7af"/><circle cx="42.98" cy="30.32" r="1.9" fill="#fde3a1"/><circle cx="42.98" cy="17.68" r="1.6" fill="#fddf94"/><circle cx="35.81" cy="7.86" r="1.3" fill="#fcdb86"/></svg><span>
|
| 276 |
);
|
| 277 |
},
|
| 278 |
success: function (response) {
|
| 279 |
if (response.success) {
|
| 280 |
-
saveBtn.html("Save Settings");
|
| 281 |
Swal.fire({
|
| 282 |
icon: "success",
|
| 283 |
title: response.data.message,
|
|
@@ -291,8 +294,8 @@ jQuery(document).ready(function ($) {
|
|
| 291 |
saveBtn.html("Save Settings");
|
| 292 |
Swal.fire({
|
| 293 |
type: "error",
|
| 294 |
-
title: "Oops...",
|
| 295 |
-
text: "Something went wrong!",
|
| 296 |
});
|
| 297 |
},
|
| 298 |
});
|
|
@@ -302,12 +305,12 @@ jQuery(document).ready(function ($) {
|
|
| 302 |
var $form = jQuery(this);
|
| 303 |
Swal.fire({
|
| 304 |
icon: "error",
|
| 305 |
-
title: "Are you sure?",
|
| 306 |
-
text: "You won't be able to revert this!",
|
| 307 |
showConfirmButton: true,
|
| 308 |
showCancelButton: true,
|
| 309 |
-
confirmButtonText: 'Yes, Delete It',
|
| 310 |
-
cancelButtonText: 'No, Cancel',
|
| 311 |
customClass: {
|
| 312 |
confirmButton: 'confirmButton',
|
| 313 |
cancelButton: 'cancelButton'
|
|
@@ -327,14 +330,14 @@ jQuery(document).ready(function ($) {
|
|
| 327 |
data: $form.serialize(),
|
| 328 |
};
|
| 329 |
deleteBtn.html(
|
| 330 |
-
'<svg id="eael-spinner" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 48 48"><circle cx="24" cy="4" r="4" fill="#fff"/><circle cx="12.19" cy="7.86" r="3.7" fill="#fffbf2"/><circle cx="5.02" cy="17.68" r="3.4" fill="#fef7e4"/><circle cx="5.02" cy="30.32" r="3.1" fill="#fef3d7"/><circle cx="12.19" cy="40.14" r="2.8" fill="#feefc9"/><circle cx="24" cy="44" r="2.5" fill="#feebbc"/><circle cx="35.81" cy="40.14" r="2.2" fill="#fde7af"/><circle cx="42.98" cy="30.32" r="1.9" fill="#fde3a1"/><circle cx="42.98" cy="17.68" r="1.6" fill="#fddf94"/><circle cx="35.81" cy="7.86" r="1.3" fill="#fcdb86"/></svg><span>Deleting Comments
|
| 331 |
);
|
| 332 |
jQuery.post(ajaxurl, data, function (response) {
|
| 333 |
-
deleteBtn.html("Delete Comments");
|
| 334 |
if (response.success) {
|
| 335 |
Swal.fire({
|
| 336 |
icon: "success",
|
| 337 |
-
title: "Deleted",
|
| 338 |
html: response.data.message,
|
| 339 |
timer: 3000,
|
| 340 |
showConfirmButton: false,
|
|
@@ -342,7 +345,7 @@ jQuery(document).ready(function ($) {
|
|
| 342 |
} else {
|
| 343 |
Swal.fire({
|
| 344 |
icon: "error",
|
| 345 |
-
title: "Oops...",
|
| 346 |
html: response.data.message,
|
| 347 |
showConfirmButton: true,
|
| 348 |
});
|
|
@@ -357,8 +360,9 @@ jQuery(document).ready(function ($) {
|
|
| 357 |
saveBtn.addClass('form-dirty');
|
| 358 |
});
|
| 359 |
|
| 360 |
-
|
| 361 |
var excludeByRoleWrapper = jQuery('#exclude_by_role_wrapper');
|
|
|
|
| 362 |
var excludeByRoleSelectWrapper = excludeByRoleWrapper.find('#exclude_by_role_select_wrapper');
|
| 363 |
var excludeByRoleSelect = excludeByRoleSelectWrapper.find('.dc-select2');
|
| 364 |
var options = excludeByRoleSelect.data('options');
|
|
@@ -367,35 +371,41 @@ jQuery(document).ready(function ($) {
|
|
| 367 |
var includedRoles = excludeByRoleWrapper.find('.included-roles');
|
| 368 |
var selectOnChange = function(){
|
| 369 |
var selectedOptions = excludeByRoleSelect.select2('data');
|
|
|
|
| 370 |
excludeByRoleSelectWrapper.show();
|
| 371 |
if(selectedOptions.length){
|
| 372 |
includedRoles.show();
|
| 373 |
excludedRoles.show();
|
| 374 |
-
|
| 375 |
-
return val.
|
| 376 |
});
|
| 377 |
if(options.length == selectedOptions.length){
|
| 378 |
-
excludedRoles.text("Comments are visible to everyone.");
|
| 379 |
includedRoles.hide();
|
| 380 |
}
|
| 381 |
-
else if(
|
| 382 |
if(selectedOptions.length == 1){
|
| 383 |
-
excludedRoles.text("Users who are logged out will see comments.");
|
| 384 |
-
includedRoles.text("No comments will be visible to other roles.");
|
| 385 |
}
|
| 386 |
else{
|
| 387 |
var _selectedOptions = selectedOptions.filter(function(val) {
|
| 388 |
-
return val !== '
|
| 389 |
-
})
|
|
|
|
|
|
|
| 390 |
var text = "<b>" + _selectedOptions.join("</b>, <b>") + "</b>";
|
| 391 |
-
excludedRoles.html("Comments are visible to
|
| 392 |
-
includedRoles.text("No comments will be visible to other roles.");
|
| 393 |
}
|
| 394 |
}
|
| 395 |
else{
|
| 396 |
-
var
|
| 397 |
-
|
| 398 |
-
|
|
|
|
|
|
|
|
|
|
| 399 |
}
|
| 400 |
}
|
| 401 |
else{
|
|
@@ -406,7 +416,7 @@ jQuery(document).ready(function ($) {
|
|
| 406 |
excludeByRoleSelect.select2({
|
| 407 |
multiple: true,
|
| 408 |
data: options,
|
| 409 |
-
placeholder: "Select User Roles",
|
| 410 |
});
|
| 411 |
excludeByRoleSelect.on('change', selectOnChange);
|
| 412 |
selectOnChange();
|
|
@@ -419,6 +429,6 @@ jQuery(document).ready(function ($) {
|
|
| 419 |
}
|
| 420 |
});
|
| 421 |
jQuery('#enable_exclude_by_role').trigger('change');
|
| 422 |
-
});
|
| 423 |
|
| 424 |
});
|
| 1 |
jQuery(document).ready(function ($) {
|
| 2 |
+
var __ = wp.i18n.__;
|
| 3 |
+
var _e = wp.i18n._e;
|
| 4 |
+
var sprintf = wp.i18n.sprintf;
|
| 5 |
var saveBtn = jQuery("#disableCommentSaveSettings button.button.button__success");
|
| 6 |
var deleteBtn = jQuery("#deleteCommentSettings button.button.button__delete");
|
| 7 |
|
|
|
|
| 8 |
if(jQuery('.sites_list_wrapper').length){
|
| 9 |
var addSite = function($sites_list, site, type){
|
| 10 |
var id = "sites__option__" + type + "__" + site.site_id;
|
| 273 |
type: "post",
|
| 274 |
data: data,
|
| 275 |
beforeSend: function () {
|
| 276 |
+
var btnText = __("Saving Settings..", "disable-comments");
|
| 277 |
saveBtn.html(
|
| 278 |
+
'<svg id="eael-spinner" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 48 48"><circle cx="24" cy="4" r="4" fill="#fff"/><circle cx="12.19" cy="7.86" r="3.7" fill="#fffbf2"/><circle cx="5.02" cy="17.68" r="3.4" fill="#fef7e4"/><circle cx="5.02" cy="30.32" r="3.1" fill="#fef3d7"/><circle cx="12.19" cy="40.14" r="2.8" fill="#feefc9"/><circle cx="24" cy="44" r="2.5" fill="#feebbc"/><circle cx="35.81" cy="40.14" r="2.2" fill="#fde7af"/><circle cx="42.98" cy="30.32" r="1.9" fill="#fde3a1"/><circle cx="42.98" cy="17.68" r="1.6" fill="#fddf94"/><circle cx="35.81" cy="7.86" r="1.3" fill="#fcdb86"/></svg><span>' + btnText + '</span>'
|
| 279 |
);
|
| 280 |
},
|
| 281 |
success: function (response) {
|
| 282 |
if (response.success) {
|
| 283 |
+
saveBtn.html(__("Save Settings", "disable-comments"));
|
| 284 |
Swal.fire({
|
| 285 |
icon: "success",
|
| 286 |
title: response.data.message,
|
| 294 |
saveBtn.html("Save Settings");
|
| 295 |
Swal.fire({
|
| 296 |
type: "error",
|
| 297 |
+
title: __("Oops...", "disable-comments"),
|
| 298 |
+
text: __("Something went wrong!", "disable-comments"),
|
| 299 |
});
|
| 300 |
},
|
| 301 |
});
|
| 305 |
var $form = jQuery(this);
|
| 306 |
Swal.fire({
|
| 307 |
icon: "error",
|
| 308 |
+
title: __("Are you sure?", "disable-comments"),
|
| 309 |
+
text: __("You won't be able to revert this!", "disable-comments"),
|
| 310 |
showConfirmButton: true,
|
| 311 |
showCancelButton: true,
|
| 312 |
+
confirmButtonText: __('Yes, Delete It', "disable-comments"),
|
| 313 |
+
cancelButtonText: __('No, Cancel', "disable-comments"),
|
| 314 |
customClass: {
|
| 315 |
confirmButton: 'confirmButton',
|
| 316 |
cancelButton: 'cancelButton'
|
| 330 |
data: $form.serialize(),
|
| 331 |
};
|
| 332 |
deleteBtn.html(
|
| 333 |
+
'<svg id="eael-spinner" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 48 48"><circle cx="24" cy="4" r="4" fill="#fff"/><circle cx="12.19" cy="7.86" r="3.7" fill="#fffbf2"/><circle cx="5.02" cy="17.68" r="3.4" fill="#fef7e4"/><circle cx="5.02" cy="30.32" r="3.1" fill="#fef3d7"/><circle cx="12.19" cy="40.14" r="2.8" fill="#feefc9"/><circle cx="24" cy="44" r="2.5" fill="#feebbc"/><circle cx="35.81" cy="40.14" r="2.2" fill="#fde7af"/><circle cx="42.98" cy="30.32" r="1.9" fill="#fde3a1"/><circle cx="42.98" cy="17.68" r="1.6" fill="#fddf94"/><circle cx="35.81" cy="7.86" r="1.3" fill="#fcdb86"/></svg><span>' + __("Deleting Comments..", "disable-comments") + '</span>'
|
| 334 |
);
|
| 335 |
jQuery.post(ajaxurl, data, function (response) {
|
| 336 |
+
deleteBtn.html(__("Delete Comments", "disable-comments"));
|
| 337 |
if (response.success) {
|
| 338 |
Swal.fire({
|
| 339 |
icon: "success",
|
| 340 |
+
title: __("Deleted", "disable-comments"),
|
| 341 |
html: response.data.message,
|
| 342 |
timer: 3000,
|
| 343 |
showConfirmButton: false,
|
| 345 |
} else {
|
| 346 |
Swal.fire({
|
| 347 |
icon: "error",
|
| 348 |
+
title: __("Oops...", "disable-comments"),
|
| 349 |
html: response.data.message,
|
| 350 |
showConfirmButton: true,
|
| 351 |
});
|
| 360 |
saveBtn.addClass('form-dirty');
|
| 361 |
});
|
| 362 |
|
| 363 |
+
(function() {
|
| 364 |
var excludeByRoleWrapper = jQuery('#exclude_by_role_wrapper');
|
| 365 |
+
if(!excludeByRoleWrapper.length) return;
|
| 366 |
var excludeByRoleSelectWrapper = excludeByRoleWrapper.find('#exclude_by_role_select_wrapper');
|
| 367 |
var excludeByRoleSelect = excludeByRoleSelectWrapper.find('.dc-select2');
|
| 368 |
var options = excludeByRoleSelect.data('options');
|
| 371 |
var includedRoles = excludeByRoleWrapper.find('.included-roles');
|
| 372 |
var selectOnChange = function(){
|
| 373 |
var selectedOptions = excludeByRoleSelect.select2('data');
|
| 374 |
+
console.log(selectedOptions);
|
| 375 |
excludeByRoleSelectWrapper.show();
|
| 376 |
if(selectedOptions.length){
|
| 377 |
includedRoles.show();
|
| 378 |
excludedRoles.show();
|
| 379 |
+
var hasLoggedOutUsers = selectedOptions.find(function(val, index){
|
| 380 |
+
return val.id == 'logged-out-users';
|
| 381 |
});
|
| 382 |
if(options.length == selectedOptions.length){
|
| 383 |
+
excludedRoles.text(__("Comments are visible to everyone.", "disable-comments"));
|
| 384 |
includedRoles.hide();
|
| 385 |
}
|
| 386 |
+
else if(hasLoggedOutUsers){
|
| 387 |
if(selectedOptions.length == 1){
|
| 388 |
+
excludedRoles.text(__("Users who are logged out will see comments.", "disable-comments"));
|
| 389 |
+
includedRoles.text(__("No comments will be visible to other roles.", "disable-comments"));
|
| 390 |
}
|
| 391 |
else{
|
| 392 |
var _selectedOptions = selectedOptions.filter(function(val) {
|
| 393 |
+
return val.id !== 'logged-out-users';
|
| 394 |
+
}).map(function(val, index){
|
| 395 |
+
return val.id;
|
| 396 |
+
});
|
| 397 |
var text = "<b>" + _selectedOptions.join("</b>, <b>") + "</b>";
|
| 398 |
+
excludedRoles.html(sprintf(__("Comments are visible to %s and <b>Logged out users</b>.", "disable-comments"), text));
|
| 399 |
+
includedRoles.text(__("No comments will be visible to other roles.", "disable-comments"));
|
| 400 |
}
|
| 401 |
}
|
| 402 |
else{
|
| 403 |
+
var selectedOptionsLabels = selectedOptions.map(function(val, index){
|
| 404 |
+
return val.text;
|
| 405 |
+
});
|
| 406 |
+
var text = "<b>" + selectedOptionsLabels.join("</b>, <b>") + "</b>";
|
| 407 |
+
excludedRoles.html(sprintf(__("Comments are visible to %s.", "disable-comments"), text));
|
| 408 |
+
includedRoles.text(__("Other roles and logged out users won't see any comments.", "disable-comments"));
|
| 409 |
}
|
| 410 |
}
|
| 411 |
else{
|
| 416 |
excludeByRoleSelect.select2({
|
| 417 |
multiple: true,
|
| 418 |
data: options,
|
| 419 |
+
placeholder: __("Select User Roles", "disable-comments"),
|
| 420 |
});
|
| 421 |
excludeByRoleSelect.on('change', selectOnChange);
|
| 422 |
selectOnChange();
|
| 429 |
}
|
| 430 |
});
|
| 431 |
jQuery('#enable_exclude_by_role').trigger('change');
|
| 432 |
+
})();
|
| 433 |
|
| 434 |
});
|
disable-comments.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
* Plugin Name: Disable Comments
|
| 5 |
* Plugin URI: https://wordpress.org/plugins/disable-comments/
|
| 6 |
* Description: Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. You could bulk delete comments using Tools.
|
| 7 |
-
* Version: 2.4.
|
| 8 |
* Author: WPDeveloper
|
| 9 |
* Author URI: https://wpdeveloper.com
|
| 10 |
* License: GPL-3.0+
|
|
@@ -37,7 +37,7 @@ class Disable_Comments
|
|
| 37 |
|
| 38 |
function __construct()
|
| 39 |
{
|
| 40 |
-
define('DC_VERSION', '2.4.
|
| 41 |
define('DC_PLUGIN_SLUG', 'disable_comments_settings');
|
| 42 |
define('DC_PLUGIN_ROOT_PATH', dirname(__FILE__));
|
| 43 |
define('DC_PLUGIN_VIEWS_PATH', DC_PLUGIN_ROOT_PATH . '/views/');
|
|
@@ -572,7 +572,7 @@ class Disable_Comments
|
|
| 572 |
wp_enqueue_script('sweetalert2', DC_ASSETS_URI . 'js/sweetalert2.all.min.js', array('jquery'), false, true);
|
| 573 |
wp_enqueue_script('pagination', DC_ASSETS_URI . 'js/pagination.min.js', array('jquery'), false, true);
|
| 574 |
wp_enqueue_script('select2', DC_ASSETS_URI . 'js/select2.min.js', array('jquery'), false, true);
|
| 575 |
-
wp_enqueue_script('disable-comments-scripts', DC_ASSETS_URI . 'js/disable-comments-settings-scripts.js', array('jquery', 'select2', 'pagination', 'sweetalert2'), DC_VERSION, true);
|
| 576 |
wp_localize_script(
|
| 577 |
'disable-comments-scripts',
|
| 578 |
'disableCommentsObj',
|
|
@@ -583,6 +583,7 @@ class Disable_Comments
|
|
| 583 |
'_nonce' => wp_create_nonce('disable_comments_save_settings')
|
| 584 |
)
|
| 585 |
);
|
|
|
|
| 586 |
} else {
|
| 587 |
// notice css
|
| 588 |
wp_enqueue_style('disable-comments-notice', DC_ASSETS_URI . 'css/notice.css', [], false);
|
| 4 |
* Plugin Name: Disable Comments
|
| 5 |
* Plugin URI: https://wordpress.org/plugins/disable-comments/
|
| 6 |
* Description: Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. You could bulk delete comments using Tools.
|
| 7 |
+
* Version: 2.4.1
|
| 8 |
* Author: WPDeveloper
|
| 9 |
* Author URI: https://wpdeveloper.com
|
| 10 |
* License: GPL-3.0+
|
| 37 |
|
| 38 |
function __construct()
|
| 39 |
{
|
| 40 |
+
define('DC_VERSION', '2.4.1');
|
| 41 |
define('DC_PLUGIN_SLUG', 'disable_comments_settings');
|
| 42 |
define('DC_PLUGIN_ROOT_PATH', dirname(__FILE__));
|
| 43 |
define('DC_PLUGIN_VIEWS_PATH', DC_PLUGIN_ROOT_PATH . '/views/');
|
| 572 |
wp_enqueue_script('sweetalert2', DC_ASSETS_URI . 'js/sweetalert2.all.min.js', array('jquery'), false, true);
|
| 573 |
wp_enqueue_script('pagination', DC_ASSETS_URI . 'js/pagination.min.js', array('jquery'), false, true);
|
| 574 |
wp_enqueue_script('select2', DC_ASSETS_URI . 'js/select2.min.js', array('jquery'), false, true);
|
| 575 |
+
wp_enqueue_script('disable-comments-scripts', DC_ASSETS_URI . 'js/disable-comments-settings-scripts.js', array('jquery', 'select2', 'pagination', 'sweetalert2', 'wp-i18n'), DC_VERSION, true);
|
| 576 |
wp_localize_script(
|
| 577 |
'disable-comments-scripts',
|
| 578 |
'disableCommentsObj',
|
| 583 |
'_nonce' => wp_create_nonce('disable_comments_save_settings')
|
| 584 |
)
|
| 585 |
);
|
| 586 |
+
wp_set_script_translations( 'disable-comments-scripts', 'disable-comments' );
|
| 587 |
} else {
|
| 588 |
// notice css
|
| 589 |
wp_enqueue_style('disable-comments-notice', DC_ASSETS_URI . 'css/notice.css', [], false);
|
languages/disable-comments.pot
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
# This file is distributed under the GPL-3.0+.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: Disable Comments 2.4.
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/disable-comments\n"
|
| 7 |
-
"POT-Creation-Date: 2022-
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -24,6 +24,22 @@ msgstr ""
|
|
| 24 |
"X-Textdomain-Support: yes\n"
|
| 25 |
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
#: disable-comments.php:155
|
| 28 |
msgid "Want to help make Disable Comments even better?"
|
| 29 |
msgstr ""
|
|
@@ -46,11 +62,11 @@ msgstr ""
|
|
| 46 |
msgid "Disable Comments"
|
| 47 |
msgstr ""
|
| 48 |
|
| 49 |
-
#: disable-comments.php:511 disable-comments.php:
|
| 50 |
msgid "Comments are closed."
|
| 51 |
msgstr ""
|
| 52 |
|
| 53 |
-
#: disable-comments.php:
|
| 54 |
#. translators: %s: disabled post types.
|
| 55 |
msgid ""
|
| 56 |
"Note: The <em>Disable Comments</em> plugin is currently active, and "
|
|
@@ -58,11 +74,11 @@ msgid ""
|
|
| 58 |
"not be applicable for those post types."
|
| 59 |
msgstr ""
|
| 60 |
|
| 61 |
-
#: disable-comments.php:
|
| 62 |
msgid ", "
|
| 63 |
msgstr ""
|
| 64 |
|
| 65 |
-
#: disable-comments.php:
|
| 66 |
#. translators: %s: URL to Disabled Comment settings page.
|
| 67 |
msgid ""
|
| 68 |
"The <strong>Disable Comments</strong> plugin is active, but isn't "
|
|
@@ -70,40 +86,40 @@ msgid ""
|
|
| 70 |
"page</a> to choose which post types to disable comments on."
|
| 71 |
msgstr ""
|
| 72 |
|
| 73 |
-
#: disable-comments.php:
|
| 74 |
msgid "Settings"
|
| 75 |
msgstr ""
|
| 76 |
|
| 77 |
-
#: disable-comments.php:
|
| 78 |
msgid "Tools"
|
| 79 |
msgstr ""
|
| 80 |
|
| 81 |
-
#: disable-comments.php:
|
| 82 |
msgid "Delete Comments"
|
| 83 |
msgstr ""
|
| 84 |
|
| 85 |
-
#: disable-comments.php:
|
| 86 |
msgid "Default (no type)"
|
| 87 |
msgstr ""
|
| 88 |
|
| 89 |
-
#: disable-comments.php:
|
| 90 |
msgid "Logged out users"
|
| 91 |
msgstr ""
|
| 92 |
|
| 93 |
-
#: disable-comments.php:
|
| 94 |
msgid "Saved"
|
| 95 |
msgstr ""
|
| 96 |
|
| 97 |
-
#: disable-comments.php:
|
| 98 |
-
#: disable-comments.php:
|
| 99 |
msgid "All comments have been deleted"
|
| 100 |
msgstr ""
|
| 101 |
|
| 102 |
-
#: disable-comments.php:
|
| 103 |
msgid "Internal error occured. Please try again later."
|
| 104 |
msgstr ""
|
| 105 |
|
| 106 |
-
#: disable-comments.php:
|
| 107 |
msgid "All spam comments have been deleted."
|
| 108 |
msgstr ""
|
| 109 |
|
|
@@ -218,6 +234,10 @@ msgstr ""
|
|
| 218 |
msgid "Enabled Avatar on your entire site. "
|
| 219 |
msgstr ""
|
| 220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 221 |
#: views/partials/_delete.php:15 views/partials/_delete.php:19
|
| 222 |
#: views/partials/_disable.php:19 views/partials/_disable.php:28
|
| 223 |
#: views/partials/_disable.php:33 views/partials/_disable.php:64
|
|
@@ -325,12 +345,20 @@ msgstr ""
|
|
| 325 |
msgid "Off"
|
| 326 |
msgstr ""
|
| 327 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 328 |
#: views/partials/_disable.php:19
|
| 329 |
msgid ""
|
| 330 |
"If you enable Site Wise settings, you need to configure your “Disable "
|
| 331 |
"Comments” settings individually on every website in the network."
|
| 332 |
msgstr ""
|
| 333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 334 |
#: views/partials/_disable.php:28
|
| 335 |
msgid ""
|
| 336 |
"All the underneath settings (except Avatar settings) will be applied for "
|
|
@@ -365,6 +393,10 @@ msgid ""
|
|
| 365 |
"posts. Comments will be visible on all other post types."
|
| 366 |
msgstr ""
|
| 367 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 368 |
#: views/partials/_disable.php:91
|
| 369 |
msgid "This will exclude all the above settings for the selected user roles."
|
| 370 |
msgstr ""
|
|
@@ -480,6 +512,22 @@ msgstr ""
|
|
| 480 |
msgid "Select All"
|
| 481 |
msgstr ""
|
| 482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 483 |
#: views/settings.php:6
|
| 484 |
msgid "Version"
|
| 485 |
msgstr ""
|
|
@@ -503,7 +551,7 @@ msgstr ""
|
|
| 503 |
msgid "https://wpdeveloper.com"
|
| 504 |
msgstr ""
|
| 505 |
|
| 506 |
-
#: disable-comments.php:
|
| 507 |
msgctxt "settings menu title"
|
| 508 |
msgid "Disable Comments"
|
| 509 |
msgstr ""
|
| 2 |
# This file is distributed under the GPL-3.0+.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: Disable Comments 2.4.1\n"
|
| 6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/disable-comments\n"
|
| 7 |
+
"POT-Creation-Date: 2022-08-10 06:24:31+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 24 |
"X-Textdomain-Support: yes\n"
|
| 25 |
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
| 26 |
|
| 27 |
+
#: views/partials/_sites.php:36
|
| 28 |
+
msgid "20"
|
| 29 |
+
msgstr ""
|
| 30 |
+
|
| 31 |
+
#: views/partials/_sites.php:37
|
| 32 |
+
msgid "50"
|
| 33 |
+
msgstr ""
|
| 34 |
+
|
| 35 |
+
#: views/partials/_sites.php:38
|
| 36 |
+
msgid "100"
|
| 37 |
+
msgstr ""
|
| 38 |
+
|
| 39 |
+
#: views/partials/_sites.php:39
|
| 40 |
+
msgid "200"
|
| 41 |
+
msgstr ""
|
| 42 |
+
|
| 43 |
#: disable-comments.php:155
|
| 44 |
msgid "Want to help make Disable Comments even better?"
|
| 45 |
msgstr ""
|
| 62 |
msgid "Disable Comments"
|
| 63 |
msgstr ""
|
| 64 |
|
| 65 |
+
#: disable-comments.php:511 disable-comments.php:662 disable-comments.php:669
|
| 66 |
msgid "Comments are closed."
|
| 67 |
msgstr ""
|
| 68 |
|
| 69 |
+
#: disable-comments.php:618
|
| 70 |
#. translators: %s: disabled post types.
|
| 71 |
msgid ""
|
| 72 |
"Note: The <em>Disable Comments</em> plugin is currently active, and "
|
| 74 |
"not be applicable for those post types."
|
| 75 |
msgstr ""
|
| 76 |
|
| 77 |
+
#: disable-comments.php:618
|
| 78 |
msgid ", "
|
| 79 |
msgstr ""
|
| 80 |
|
| 81 |
+
#: disable-comments.php:653
|
| 82 |
#. translators: %s: URL to Disabled Comment settings page.
|
| 83 |
msgid ""
|
| 84 |
"The <strong>Disable Comments</strong> plugin is active, but isn't "
|
| 86 |
"page</a> to choose which post types to disable comments on."
|
| 87 |
msgstr ""
|
| 88 |
|
| 89 |
+
#: disable-comments.php:742 views/partials/_disable.php:3
|
| 90 |
msgid "Settings"
|
| 91 |
msgstr ""
|
| 92 |
|
| 93 |
+
#: disable-comments.php:743
|
| 94 |
msgid "Tools"
|
| 95 |
msgstr ""
|
| 96 |
|
| 97 |
+
#: disable-comments.php:762 views/partials/_delete.php:72
|
| 98 |
msgid "Delete Comments"
|
| 99 |
msgstr ""
|
| 100 |
|
| 101 |
+
#: disable-comments.php:827
|
| 102 |
msgid "Default (no type)"
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
+
#: disable-comments.php:856
|
| 106 |
msgid "Logged out users"
|
| 107 |
msgstr ""
|
| 108 |
|
| 109 |
+
#: disable-comments.php:1036
|
| 110 |
msgid "Saved"
|
| 111 |
msgstr ""
|
| 112 |
|
| 113 |
+
#: disable-comments.php:1111 disable-comments.php:1145
|
| 114 |
+
#: disable-comments.php:1168
|
| 115 |
msgid "All comments have been deleted"
|
| 116 |
msgstr ""
|
| 117 |
|
| 118 |
+
#: disable-comments.php:1113 disable-comments.php:1117
|
| 119 |
msgid "Internal error occured. Please try again later."
|
| 120 |
msgstr ""
|
| 121 |
|
| 122 |
+
#: disable-comments.php:1179
|
| 123 |
msgid "All spam comments have been deleted."
|
| 124 |
msgstr ""
|
| 125 |
|
| 234 |
msgid "Enabled Avatar on your entire site. "
|
| 235 |
msgstr ""
|
| 236 |
|
| 237 |
+
#: views/partials/_delete.php:10
|
| 238 |
+
msgid "Delete comments in the following sites:"
|
| 239 |
+
msgstr ""
|
| 240 |
+
|
| 241 |
#: views/partials/_delete.php:15 views/partials/_delete.php:19
|
| 242 |
#: views/partials/_disable.php:19 views/partials/_disable.php:28
|
| 243 |
#: views/partials/_disable.php:33 views/partials/_disable.php:64
|
| 345 |
msgid "Off"
|
| 346 |
msgstr ""
|
| 347 |
|
| 348 |
+
#: views/partials/_disable.php:17
|
| 349 |
+
msgid "Enable Site Wise settings."
|
| 350 |
+
msgstr ""
|
| 351 |
+
|
| 352 |
#: views/partials/_disable.php:19
|
| 353 |
msgid ""
|
| 354 |
"If you enable Site Wise settings, you need to configure your “Disable "
|
| 355 |
"Comments” settings individually on every website in the network."
|
| 356 |
msgstr ""
|
| 357 |
|
| 358 |
+
#: views/partials/_disable.php:23
|
| 359 |
+
msgid "Disable comments in the following sites:"
|
| 360 |
+
msgstr ""
|
| 361 |
+
|
| 362 |
#: views/partials/_disable.php:28
|
| 363 |
msgid ""
|
| 364 |
"All the underneath settings (except Avatar settings) will be applied for "
|
| 393 |
"posts. Comments will be visible on all other post types."
|
| 394 |
msgstr ""
|
| 395 |
|
| 396 |
+
#: views/partials/_disable.php:76
|
| 397 |
+
msgid "Exclude Disable Comments Settings Based On User Roles"
|
| 398 |
+
msgstr ""
|
| 399 |
+
|
| 400 |
#: views/partials/_disable.php:91
|
| 401 |
msgid "This will exclude all the above settings for the selected user roles."
|
| 402 |
msgstr ""
|
| 512 |
msgid "Select All"
|
| 513 |
msgstr ""
|
| 514 |
|
| 515 |
+
#: views/partials/_sites.php:13
|
| 516 |
+
msgid "0 selected"
|
| 517 |
+
msgstr ""
|
| 518 |
+
|
| 519 |
+
#: views/partials/_sites.php:21
|
| 520 |
+
msgid "Search by domain name..."
|
| 521 |
+
msgstr ""
|
| 522 |
+
|
| 523 |
+
#: views/partials/_sites.php:26
|
| 524 |
+
msgid "No subsite found"
|
| 525 |
+
msgstr ""
|
| 526 |
+
|
| 527 |
+
#: views/partials/_sites.php:30
|
| 528 |
+
msgid "Show Items:"
|
| 529 |
+
msgstr ""
|
| 530 |
+
|
| 531 |
#: views/settings.php:6
|
| 532 |
msgid "Version"
|
| 533 |
msgstr ""
|
| 551 |
msgid "https://wpdeveloper.com"
|
| 552 |
msgstr ""
|
| 553 |
|
| 554 |
+
#: disable-comments.php:752
|
| 555 |
msgctxt "settings menu title"
|
| 556 |
msgid "Disable Comments"
|
| 557 |
msgstr ""
|
readme.txt
CHANGED
|
@@ -5,7 +5,7 @@ Tags: comments, delete comments, disable comments, spam comment, disable, stop s
|
|
| 5 |
Requires at least: 5.0
|
| 6 |
Tested up to: 6.0
|
| 7 |
Requires PHP: 5.6
|
| 8 |
-
Stable tag: 2.4.
|
| 9 |
License: GPL-3.0-or-later
|
| 10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
| 11 |
|
|
@@ -194,6 +194,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
| 194 |
and this project adheres to [Semantic Versioning](http://semver.org/).
|
| 195 |
This will be maiintained from August 19, 2020 - @asif2bd
|
| 196 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 197 |
= [2.4.0] - 2022-07-27 =
|
| 198 |
* New Feature: Exclude Disable Comments settings based on user roles.
|
| 199 |
* Few minor bug fix and improvement.
|
| 5 |
Requires at least: 5.0
|
| 6 |
Tested up to: 6.0
|
| 7 |
Requires PHP: 5.6
|
| 8 |
+
Stable tag: 2.4.1
|
| 9 |
License: GPL-3.0-or-later
|
| 10 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
| 11 |
|
| 194 |
and this project adheres to [Semantic Versioning](http://semver.org/).
|
| 195 |
This will be maiintained from August 19, 2020 - @asif2bd
|
| 196 |
|
| 197 |
+
= [2.4.1] - 2022-08-10 =
|
| 198 |
+
* Improvement: Localized missing strings in plugin.
|
| 199 |
+
* Improvement: Included the fonts in plugin distribution.
|
| 200 |
+
|
| 201 |
= [2.4.0] - 2022-07-27 =
|
| 202 |
* New Feature: Exclude Disable Comments settings based on user roles.
|
| 203 |
* Few minor bug fix and improvement.
|
views/partials/_delete.php
CHANGED
|
@@ -7,7 +7,7 @@
|
|
| 7 |
<div class="disable__comment__option mb50">
|
| 8 |
<?php if(is_network_admin()):?>
|
| 9 |
<div class="disable_option sites_list_wrapper dc-text__block mb30 mt30" data-type="delete">
|
| 10 |
-
<h3
|
| 11 |
<?php
|
| 12 |
$type = 'delete';
|
| 13 |
include DC_PLUGIN_VIEWS_PATH . 'partials/_sites.php';
|
| 7 |
<div class="disable__comment__option mb50">
|
| 8 |
<?php if(is_network_admin()):?>
|
| 9 |
<div class="disable_option sites_list_wrapper dc-text__block mb30 mt30" data-type="delete">
|
| 10 |
+
<h3><?php _e("Delete comments in the following sites:", "disable-comments"); ?></h3>
|
| 11 |
<?php
|
| 12 |
$type = 'delete';
|
| 13 |
include DC_PLUGIN_VIEWS_PATH . 'partials/_sites.php';
|
views/partials/_disable.php
CHANGED
|
@@ -14,13 +14,13 @@
|
|
| 14 |
<span class="switch__text on"><?php _e('On', 'disable-comments'); ?></span>
|
| 15 |
<span class="switch__text off"><?php _e('Off', 'disable-comments'); ?></span>
|
| 16 |
</span>
|
| 17 |
-
Enable Site Wise settings.
|
| 18 |
</label>
|
| 19 |
<p class="disable__option__description"><span class="danger"><?php _e('Note:', 'disable-comments'); ?></span> <?php _e('If you enable Site Wise settings, you need to configure your “Disable Comments” settings individually on every website in the network.', 'disable-comments'); ?></p>
|
| 20 |
</div>
|
| 21 |
</div>
|
| 22 |
<div class="disable_option sites_list_wrapper dc-text__block mb30 mt30" data-type="disabled">
|
| 23 |
-
<h3
|
| 24 |
<?php
|
| 25 |
$type = 'disabled';
|
| 26 |
include DC_PLUGIN_VIEWS_PATH . 'partials/_sites.php';
|
|
@@ -73,7 +73,7 @@
|
|
| 73 |
<span class="switch__text on"><?php _e('On', 'disable-comments'); ?></span>
|
| 74 |
<span class="switch__text off"><?php _e('Off', 'disable-comments'); ?></span>
|
| 75 |
</span>
|
| 76 |
-
Exclude Disable Comments Settings Based On User Roles
|
| 77 |
</label>
|
| 78 |
</div>
|
| 79 |
<div id="exclude_by_role_select_description_wrapper">
|
| 14 |
<span class="switch__text on"><?php _e('On', 'disable-comments'); ?></span>
|
| 15 |
<span class="switch__text off"><?php _e('Off', 'disable-comments'); ?></span>
|
| 16 |
</span>
|
| 17 |
+
<?php _e('Enable Site Wise settings.', 'disable-comments');?>
|
| 18 |
</label>
|
| 19 |
<p class="disable__option__description"><span class="danger"><?php _e('Note:', 'disable-comments'); ?></span> <?php _e('If you enable Site Wise settings, you need to configure your “Disable Comments” settings individually on every website in the network.', 'disable-comments'); ?></p>
|
| 20 |
</div>
|
| 21 |
</div>
|
| 22 |
<div class="disable_option sites_list_wrapper dc-text__block mb30 mt30" data-type="disabled">
|
| 23 |
+
<h3><?php _e('Disable comments in the following sites:', 'disable-comments');?></h3>
|
| 24 |
<?php
|
| 25 |
$type = 'disabled';
|
| 26 |
include DC_PLUGIN_VIEWS_PATH . 'partials/_sites.php';
|
| 73 |
<span class="switch__text on"><?php _e('On', 'disable-comments'); ?></span>
|
| 74 |
<span class="switch__text off"><?php _e('Off', 'disable-comments'); ?></span>
|
| 75 |
</span>
|
| 76 |
+
<?php _e('Exclude Disable Comments Settings Based On User Roles', 'disable-comments'); ?>
|
| 77 |
</label>
|
| 78 |
</div>
|
| 79 |
<div id="exclude_by_role_select_description_wrapper">
|
views/partials/_sites.php
CHANGED
|
@@ -10,7 +10,7 @@
|
|
| 10 |
>
|
| 11 |
<label for='sites__option__<?php echo $type;?>__check__all'>
|
| 12 |
<b><?php _e('Select All', 'disable-comments'); ?></b>
|
| 13 |
-
<small>(0 selected)</small>
|
| 14 |
</label>
|
| 15 |
</div>
|
| 16 |
<div class="mb10" style="text-align: right; flex: 0 0 230px;">
|
|
@@ -18,25 +18,25 @@
|
|
| 18 |
<span class="icon">
|
| 19 |
<img src="<?php echo esc_url(DC_ASSETS_URI . 'img/search.svg'); ?>" alt="">
|
| 20 |
</span>
|
| 21 |
-
<input type="text" class="form__control w-100 sub-site-search" placeholder="Search by domain name..." style="padding-right: 35px;">
|
| 22 |
</div>
|
| 23 |
</div>
|
| 24 |
</div>
|
| 25 |
<div class="sites_list">
|
| 26 |
-
<div class="nothing-found"><p
|
| 27 |
</div>
|
| 28 |
<div class="d__flex space__between">
|
| 29 |
<div class="d__flex item__number__controller sub__site_control page__size__wrapper">
|
| 30 |
-
<p
|
| 31 |
<div class="dc-select">
|
| 32 |
<span class="icon"></span>
|
| 33 |
<select class="form__control page__size">
|
| 34 |
<!-- <option value="2">2</option> -->
|
| 35 |
<!-- <option value="10">10</option> -->
|
| 36 |
-
<option value="20"
|
| 37 |
-
<option value="50" selected
|
| 38 |
-
<option value="100"
|
| 39 |
-
<option value="200"
|
| 40 |
</select>
|
| 41 |
</div>
|
| 42 |
</div>
|
| 10 |
>
|
| 11 |
<label for='sites__option__<?php echo $type;?>__check__all'>
|
| 12 |
<b><?php _e('Select All', 'disable-comments'); ?></b>
|
| 13 |
+
<small>(<?php _e('0 selected', 'disable-comments'); ?>)</small>
|
| 14 |
</label>
|
| 15 |
</div>
|
| 16 |
<div class="mb10" style="text-align: right; flex: 0 0 230px;">
|
| 18 |
<span class="icon">
|
| 19 |
<img src="<?php echo esc_url(DC_ASSETS_URI . 'img/search.svg'); ?>" alt="">
|
| 20 |
</span>
|
| 21 |
+
<input type="text" class="form__control w-100 sub-site-search" placeholder="<?php _e('Search by domain name...', 'disable-comments'); ?>" style="padding-right: 35px;">
|
| 22 |
</div>
|
| 23 |
</div>
|
| 24 |
</div>
|
| 25 |
<div class="sites_list">
|
| 26 |
+
<div class="nothing-found"><p><?php _e('No subsite found', 'disable-comments'); ?></p></div>
|
| 27 |
</div>
|
| 28 |
<div class="d__flex space__between">
|
| 29 |
<div class="d__flex item__number__controller sub__site_control page__size__wrapper">
|
| 30 |
+
<p><?php _e('Show Items:', 'disable-comments'); ?></p>
|
| 31 |
<div class="dc-select">
|
| 32 |
<span class="icon"></span>
|
| 33 |
<select class="form__control page__size">
|
| 34 |
<!-- <option value="2">2</option> -->
|
| 35 |
<!-- <option value="10">10</option> -->
|
| 36 |
+
<option value="20"><?php _e('20', 'disable-comments'); ?></option>
|
| 37 |
+
<option value="50" selected><?php _e('50', 'disable-comments'); ?></option>
|
| 38 |
+
<option value="100"><?php _e('100', 'disable-comments'); ?></option>
|
| 39 |
+
<option value="200"><?php _e('200', 'disable-comments'); ?></option>
|
| 40 |
</select>
|
| 41 |
</div>
|
| 42 |
</div>
|
