| @@ -1,2075 +1,2737 @@ | ||
| 1 | -/** | |
| 2 | - * Convert font-size from px to rem with px fallback | |
| 3 | - * | |
| 4 | - * @param $size - the value in pixel you want to convert | |
| 5 | - * | |
| 6 | - * e.g. p font-size: fs-rem(12px); | |
| 7 | - * e.g. p {@include fontSize(12px);} | |
| 8 | - * | |
| 9 | - */ | |
| 10 | -/*-------------------------------------- | |
| 11 | - - Base | |
| 12 | -/** | |
| 13 | - * Convert font-size from px to rem with px fallback | |
| 14 | - * | |
| 15 | - * @param $size - the value in pixel you want to convert | |
| 16 | - * | |
| 17 | - * e.g. p {@include fontSize(12px);} | |
| 18 | - * | |
| 19 | - */ | |
| 20 | -@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"); | |
| 21 | -.col { | |
| 22 | - position: relative; | |
| 23 | - width: 100%; | |
| 24 | - padding-right: 15px; | |
| 25 | - padding-left: 15px; | |
| 26 | -} | |
| 27 | - | |
| 28 | -/*-------------------------------------- | |
| 29 | - - Utilities | |
| 30 | -:root { | |
| 31 | - --container-width: 100%; | |
| 32 | - --container-sm: 33.75rem; | |
| 33 | - --container-md: 45rem; | |
| 34 | - --container-lg: 60rem; | |
| 35 | - --container-xl: 71.25rem; | |
| 36 | - --container-xxl: 90rem; | |
| 37 | - --container-fluid: 100%; | |
| 38 | - --gutter-x: 1.875rem; | |
| 39 | - --gutter-3: 0.125rem; | |
| 40 | - --gutter-5: 0.225rem; | |
| 41 | - --gutter-10: 0.625rem; | |
| 42 | - --gutter-15: 0.9375rem; | |
| 43 | - --gutter-20: 1.25rem; | |
| 44 | - --gutter-25: 1.5625rem; | |
| 45 | - --gutter-30: 1.875rem; | |
| 46 | - --gutter-32: 2rem; | |
| 47 | - --gutter-35: 2.1875rem; | |
| 48 | - --gutter-40: 2.5rem; | |
| 49 | - --gutter-45: 2.8125rem; | |
| 50 | - --gutter-50: 3.125rem; | |
| 51 | - --ff-roboto: "Roboto", sans-serif; | |
| 52 | - --fw-100: 100; | |
| 53 | - --fw-200: 200; | |
| 54 | - --fw-300: 300; | |
| 55 | - --fw-400: 400; | |
| 56 | - --fw-500: 500; | |
| 57 | - --fw-600: 600; | |
| 58 | - --fw-700: 700; | |
| 59 | - --fw-800: 800; | |
| 60 | - --fw-900: 900; | |
| 61 | - --fs-12: 0.75rem; | |
| 62 | - --fs-13: 0.8125rem; | |
| 63 | - --fs-14: 0.875rem; | |
| 64 | - --fs-15: 0.9375rem; | |
| 65 | - --fs-16: 1rem; | |
| 66 | - --fs-17: 1.0625rem; | |
| 67 | - --fs-18: 1.125rem; | |
| 68 | - --fs-20: 1.25rem; | |
| 69 | - --fs-21: 1.3125rem; | |
| 70 | - --fs-24: 1.5rem; | |
| 71 | - --fs-25: 1.5625rem; | |
| 72 | - --fs-28: 1.75rem; | |
| 73 | - --fs-30: 1.875rem; | |
| 74 | - --fs-32: 2rem; | |
| 75 | - --fs-35: 2.1875rem; | |
| 76 | - --fs-40: 2.5rem; | |
| 77 | - --fs-45: 2.8125rem; | |
| 78 | - --hr-bg: var(--clr-black); | |
| 79 | - --hr-width: 100%; | |
| 80 | - --hr-height: 0.3125rem; | |
| 81 | - --hr-gutter-y: 1.875rem; | |
| 82 | - --hr-gutter-x: 0; | |
| 83 | - --hr-padding: 0; | |
| 84 | - --hr-radius: 0; | |
| 85 | - --m: 0; | |
| 86 | - --mt: 0; | |
| 87 | - --mr: 0; | |
| 88 | - --mb: 0; | |
| 89 | - --ml: 0; | |
| 90 | - --mx: 0; | |
| 91 | - --my: 0; | |
| 92 | - --m-auto: auto; | |
| 93 | - --my-auto: auto; | |
| 94 | - --mx-auto: auto; | |
| 95 | - --p: 0; | |
| 96 | - --pt: 0; | |
| 97 | - --pr: 0; | |
| 98 | - --pb: 0; | |
| 99 | - --pl: 0; | |
| 100 | - --px: 0; | |
| 101 | - --py: 0; | |
| 102 | - --p-auto: auto; | |
| 103 | - --py-auto: auto; | |
| 104 | - --px-auto: auto; | |
| 105 | - --border-width: 0.0625rem; | |
| 106 | - --border-style: solid; | |
| 107 | - --border-clr: transparent; | |
| 108 | - --border: var(--border-width) var(--border-style) var(--border-clr); | |
| 109 | - --border-t: var(--border-width) var(--border-style) var(--border-clr); | |
| 110 | - --border-r: var(--border-width) var(--border-style) var(--border-clr); | |
| 111 | - --border-b: var(--border-width) var(--border-style) var(--border-clr); | |
| 112 | - --border-l: var(--border-width) var(--border-style) var(--border-clr); | |
| 113 | - --border-x: var(--border-width) var(--border-style) var(--border-clr); | |
| 114 | - --border-y: var(--border-width) var(--border-style) var(--border-clr); | |
| 115 | - --radius: 0; | |
| 116 | - --radius-t: 0; | |
| 117 | - --radius-r: 0; | |
| 118 | - --radius-b: 0; | |
| 119 | - --radius-l: 0; | |
| 120 | - --radius-full: 50%; | |
| 121 | - --btn-bg: transparent; | |
| 122 | - --btn-clr: inherit; | |
| 123 | - --btn-ff: var(--ff-roboto); | |
| 124 | - --btn-fs: var(--fs-15); | |
| 125 | - --btn-py: 0.625rem; | |
| 126 | - --btn-px: 1.125rem; | |
| 127 | - --btn-my: var(--my); | |
| 128 | - --btn-mx: var(--mx); | |
| 129 | - --clr-black: #000; | |
| 130 | - --clr-black-100: #0D0E2B; | |
| 131 | - --clr-dark: #252733; | |
| 132 | - --clr-text: #575766; | |
| 133 | - --clr-text-light: #9199A1; | |
| 134 | - --clr-white: #fff; | |
| 135 | - --clr-blue: #4C4CF1; | |
| 136 | - --clr-orange: #ff5a46; | |
| 137 | - --clr-yellow: #FFE132; | |
| 138 | - --black_50: #ebebeb; | |
| 139 | - --black_100: #d6d9dc; | |
| 140 | - --black_150: #c8ccd0; | |
| 141 | - --black_200: #bbc0c4; | |
| 142 | - --black_300: #9fa6ad; | |
| 143 | - --black_350: #9199a1; | |
| 144 | - --black_400: #848d95; | |
| 145 | - --black_500: #6a737c; | |
| 146 | - --black_600: #535a60; | |
| 147 | - --black_700: #3c4146; | |
| 148 | - --black_750: #2f3337; | |
| 149 | - --black_800: #242729; | |
| 150 | - --black_900: #0c0d0e; | |
| 151 | -} | |
| 152 | - | |
| 153 | -/* Box sizing rules */ | |
| 154 | -*, | |
| 155 | -*::before, | |
| 156 | -*::after { | |
| 157 | - box-sizing: border-box; | |
| 158 | -} | |
| 159 | - | |
| 160 | -/* Remove default margin */ | |
| 161 | -body, | |
| 162 | -h1, | |
| 163 | -h2, | |
| 164 | -h3, | |
| 165 | -h4, | |
| 166 | -p, | |
| 167 | -figure, | |
| 168 | -blockquote, | |
| 169 | -dl, | |
| 170 | -dd { | |
| 171 | - margin: 0; | |
| 172 | -} | |
| 173 | - | |
| 174 | -/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */ | |
| 175 | -ul[role=list], | |
| 176 | -ol[role=list] { | |
| 177 | - list-style: none; | |
| 178 | -} | |
| 179 | - | |
| 180 | -/* Set core root defaults */ | |
| 181 | -html:focus-within { | |
| 182 | - scroll-behavior: smooth; | |
| 183 | -} | |
| 184 | - | |
| 185 | -/* Set core body defaults */ | |
| 186 | -body { | |
| 187 | - font-family: var(--ff-roboto); | |
| 188 | - font-weight: 400; | |
| 189 | - font-size: var(--fs-15); | |
| 190 | - line-height: 1.5625rem; | |
| 191 | - text-rendering: optimizeSpeed; | |
| 192 | - color: var(--clr-black); | |
| 193 | -} | |
| 194 | - | |
| 195 | -/* A elements that don't have a class get default styles */ | |
| 196 | -a:not([class]) { | |
| 197 | - text-decoration-skip-ink: auto; | |
| 198 | -} | |
| 199 | - | |
| 200 | -/* Make images easier to work with */ | |
| 201 | -img, | |
| 202 | -picture { | |
| 203 | - max-width: 100%; | |
| 204 | - display: block; | |
| 205 | -} | |
| 206 | - | |
| 207 | -/* Inherit fonts for inputs and buttons */ | |
| 208 | -input, | |
| 209 | -button, | |
| 210 | -textarea, | |
| 211 | -select { | |
| 212 | - font: inherit; | |
| 213 | -} | |
| 214 | - | |
| 215 | -button { | |
| 216 | - border: none; | |
| 217 | - background: transparent; | |
| 218 | - outline: none; | |
| 219 | - cursor: pointer; | |
| 220 | -} | |
| 221 | - | |
| 222 | -.hr { | |
| 223 | - background: var(--clr-black-200); | |
| 224 | - width: 100%; | |
| 225 | - height: 1px; | |
| 226 | - margin: 50px 0; | |
| 227 | - padding: 0; | |
| 228 | - border: none; | |
| 229 | - border-radius: 0; | |
| 230 | - opacity: 1; | |
| 231 | -} | |
| 232 | - | |
| 233 | -/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */ | |
| 234 | -@media (prefers-reduced-motion: reduce) { | |
| 235 | - html:focus-within { | |
| 236 | - scroll-behavior: auto; | |
| 237 | - } | |
| 238 | - *, | |
| 239 | - *::before, | |
| 240 | - *::after { | |
| 241 | - animation-duration: 0.01ms !important; | |
| 242 | - animation-iteration-count: 1 !important; | |
| 243 | - transition-duration: 0.01ms !important; | |
| 244 | - scroll-behavior: auto !important; | |
| 245 | - } | |
| 246 | -} | |
| 247 | -.fill-current { | |
| 248 | - fill: currentColor; | |
| 249 | -} | |
| 250 | - | |
| 251 | -.scrollToTop { | |
| 252 | - width: 30px; | |
| 253 | - height: 30px; | |
| 254 | - line-height: 30px; | |
| 255 | - text-align: center; | |
| 256 | - color: var(--clr-blue); | |
| 257 | - font-size: 25px; | |
| 258 | - background: transparent; | |
| 259 | - position: fixed; | |
| 260 | - right: 20px; | |
| 261 | - bottom: 50px; | |
| 262 | - display: none; | |
| 263 | - z-index: 99999; | |
| 264 | - border-radius: 50%; | |
| 265 | -} | |
| 266 | -@media screen and (min-width: 576px) { | |
| 267 | - .scrollToTop { | |
| 268 | - width: 50px; | |
| 269 | - height: 50px; | |
| 270 | - line-height: 50px; | |
| 271 | - } | |
| 272 | -} | |
| 273 | -.scrollToTop:hover { | |
| 274 | - color: var(--clr-blue); | |
| 275 | -} | |
| 276 | - | |
| 277 | -.no-scroll-y { | |
| 278 | - overflow-y: hidden; | |
| 279 | -} | |
| 280 | - | |
| 281 | -.text-blue { | |
| 282 | - color: var(--clr-blue); | |
| 283 | -} | |
| 284 | - | |
| 285 | -.green { | |
| 286 | - color: #27ae60; | |
| 287 | -} | |
| 288 | - | |
| 289 | -.red { | |
| 290 | - color: #e74c3c; | |
| 291 | -} | |
| 292 | - | |
| 293 | -h1, | |
| 294 | -h2, | |
| 295 | -h3, | |
| 296 | -h4, | |
| 297 | -h5, | |
| 298 | -h6 { | |
| 299 | - font-family: var(--ff-roboto); | |
| 300 | - color: #14183E; | |
| 301 | - line-height: 1.4; | |
| 302 | -} | |
| 303 | - | |
| 304 | -h1 a, | |
| 305 | -h2 a, | |
| 306 | -h3 a, | |
| 307 | -h4 a, | |
| 308 | -h5 a, | |
| 309 | -h6 a { | |
| 310 | - color: inherit; | |
| 311 | -} | |
| 312 | - | |
| 313 | -h1 { | |
| 314 | - font-size: 2rem; | |
| 315 | -} | |
| 316 | -@media screen and (min-width: 20rem) { | |
| 317 | - h1 { | |
| 318 | - font-size: calc(2rem + 1.75 * (100vw - 20rem) / 55); | |
| 319 | - } | |
| 320 | -} | |
| 321 | -@media screen and (min-width: 75rem) { | |
| 322 | - h1 { | |
| 323 | - font-size: 3.75rem; | |
| 324 | - } | |
| 325 | -} | |
| 326 | - | |
| 327 | -h2 { | |
| 328 | - font-size: 2rem; | |
| 329 | -} | |
| 330 | -@media screen and (min-width: 20rem) { | |
| 331 | - h2 { | |
| 332 | - font-size: calc(2rem + 1 * (100vw - 20rem) / 55); | |
| 333 | - } | |
| 334 | -} | |
| 335 | -@media screen and (min-width: 75rem) { | |
| 336 | - h2 { | |
| 337 | - font-size: 3rem; | |
| 338 | - } | |
| 339 | -} | |
| 340 | - | |
| 341 | -h3 { | |
| 342 | - font-size: 1.375rem; | |
| 343 | -} | |
| 344 | -@media screen and (min-width: 20rem) { | |
| 345 | - h3 { | |
| 346 | - font-size: calc(1.375rem + 0.125 * (100vw - 20rem) / 55); | |
| 347 | - } | |
| 348 | -} | |
| 349 | -@media screen and (min-width: 75rem) { | |
| 350 | - h3 { | |
| 351 | - font-size: 1.5rem; | |
| 352 | - } | |
| 353 | -} | |
| 354 | - | |
| 355 | -h4 { | |
| 356 | - font-size: 1rem; | |
| 357 | -} | |
| 358 | -@media screen and (min-width: 20rem) { | |
| 359 | - h4 { | |
| 360 | - font-size: calc(1rem + 0.125 * (100vw - 20rem) / 55); | |
| 361 | - } | |
| 362 | -} | |
| 363 | -@media screen and (min-width: 75rem) { | |
| 364 | - h4 { | |
| 365 | - font-size: 1.125rem; | |
| 366 | - } | |
| 367 | -} | |
| 368 | - | |
| 369 | -ul { | |
| 370 | - margin: 0; | |
| 371 | - padding: 0; | |
| 372 | -} | |
| 373 | - | |
| 374 | -li { | |
| 375 | - list-style: none; | |
| 376 | -} | |
| 377 | - | |
| 378 | -hr { | |
| 379 | - background: #c2cfff; | |
| 380 | - width: 50px; | |
| 381 | - height: 3px; | |
| 382 | - margin: 35px 0; | |
| 383 | - padding: 0; | |
| 384 | - border: none; | |
| 385 | -} | |
| 386 | -@media screen and (min-width: 768px) { | |
| 387 | - hr { | |
| 388 | - margin-top: 25px; | |
| 389 | - margin-bottom: 25px; | |
| 390 | - } | |
| 391 | -} | |
| 392 | - | |
| 393 | -p { | |
| 394 | - margin: 0; | |
| 395 | -} | |
| 396 | - | |
| 397 | -label { | |
| 398 | - color: var(--clr-black); | |
| 399 | - cursor: pointer; | |
| 400 | - font-size: 14px; | |
| 401 | - font-weight: 400; | |
| 402 | -} | |
| 403 | - | |
| 404 | -/*Home 3 Default Font Family*/ | |
| 405 | -.home-3 { | |
| 406 | - font-size: var(--fs-15); | |
| 407 | - font-weight: var(--fw-400); | |
| 408 | - color: var(--clr-black); | |
| 409 | - font-family: var(--font-quicksand); | |
| 410 | -} | |
| 411 | - | |
| 412 | -/*Home 3 Default Font Family*/ | |
| 413 | -.home-4 { | |
| 414 | - font-size: var(--fs-15); | |
| 415 | - font-weight: var(--fw-400); | |
| 416 | - font-family: var(--font-arimo); | |
| 417 | -} | |
| 418 | - | |
| 419 | -.alignment-center { | |
| 420 | - align-items: center; | |
| 421 | -} | |
| 422 | - | |
| 423 | -.justify-content-between { | |
| 424 | - justify-content: space-between; | |
| 425 | -} | |
| 426 | - | |
| 427 | -.justify-content-end { | |
| 428 | - justify-content: end; | |
| 429 | -} | |
| 430 | - | |
| 431 | -/*-------------------------------------- | |
| 432 | - - Color | |
| 433 | -.color { | |
| 434 | - color: var(--clr-black); | |
| 435 | -} | |
| 436 | - | |
| 437 | -.text-black { | |
| 438 | - color: var(--clr-black) !important; | |
| 439 | -} | |
| 440 | - | |
| 441 | -.bg-black { | |
| 442 | - background: var(--clr-black); | |
| 443 | -} | |
| 444 | - | |
| 445 | -.text-white { | |
| 446 | - color: var(--clr-white) !important; | |
| 447 | -} | |
| 448 | - | |
| 449 | -.bg-white { | |
| 450 | - background: var(--clr-white); | |
| 451 | -} | |
| 452 | - | |
| 453 | -.d-block { | |
| 454 | - display: block; | |
| 455 | -} | |
| 456 | - | |
| 457 | -.d-inline-block { | |
| 458 | - display: inline-block; | |
| 459 | -} | |
| 460 | - | |
| 461 | -.d-grid { | |
| 462 | - display: grid; | |
| 463 | -} | |
| 464 | - | |
| 465 | -.d-flex { | |
| 466 | - display: flex; | |
| 467 | -} | |
| 468 | - | |
| 469 | -.flex-row { | |
| 470 | - flex-direction: row; | |
| 471 | -} | |
| 472 | - | |
| 473 | -.flex-reverse { | |
| 474 | - flex-direction: row-reverse; | |
| 475 | -} | |
| 476 | - | |
| 477 | -.flex-column { | |
| 478 | - flex-direction: column; | |
| 479 | -} | |
| 480 | - | |
| 481 | -.flex-column-reverse { | |
| 482 | - flex-direction: column-reverse; | |
| 483 | -} | |
| 484 | - | |
| 485 | -/*-- | |
| 486 | - - Font Famaly | |
| 487 | -/*-- | |
| 488 | - - Font weight | |
| 489 | -.font-regular { | |
| 490 | - font-weight: var(--fw-400); | |
| 491 | -} | |
| 492 | - | |
| 493 | -.font-medium { | |
| 494 | - font-weight: var(--fw-500); | |
| 495 | -} | |
| 496 | - | |
| 497 | -.font-semi-bold { | |
| 498 | - font-weight: var(--fw-600); | |
| 499 | -} | |
| 500 | - | |
| 501 | -.font-bold { | |
| 502 | - font-weight: var(--fw-700); | |
| 503 | -} | |
| 504 | - | |
| 505 | -.font-black { | |
| 506 | - font-weight: var(--fw-900); | |
| 507 | -} | |
| 508 | - | |
| 509 | -/*-- | |
| 510 | - - Font Size | |
| 511 | -/*-- | |
| 512 | - - Margin | |
| 513 | -.mt-n3 { | |
| 514 | - margin-top: -0.4375rem; | |
| 515 | -} | |
| 516 | - | |
| 517 | -.mt-n4 { | |
| 518 | - margin-top: -0.75rem; | |
| 519 | -} | |
| 520 | - | |
| 521 | -.m-auto { | |
| 522 | - margin: auto; | |
| 523 | -} | |
| 524 | - | |
| 525 | -.mx-auto { | |
| 526 | - margin-left: auto; | |
| 527 | - margin-right: auto; | |
| 528 | -} | |
| 529 | - | |
| 530 | -.mt-0 { | |
| 531 | - margin-top: 0; | |
| 532 | -} | |
| 533 | - | |
| 534 | -.mt-73 { | |
| 535 | - margin-top: 4.5625rem; | |
| 536 | -} | |
| 537 | - | |
| 538 | -.mb-8 { | |
| 539 | - margin-bottom: 2rem; | |
| 540 | -} | |
| 541 | - | |
| 542 | -.mr-1 { | |
| 543 | - margin-right: 0.25rem; | |
| 544 | -} | |
| 545 | - | |
| 546 | -@media (min-width: 768px) { | |
| 547 | - .mt-md-n4 { | |
| 548 | - margin-top: -0.75rem; | |
| 549 | - } | |
| 550 | -} | |
| 551 | - | |
| 552 | -.mt-40 { | |
| 553 | - margin-top: 40px; | |
| 554 | -} | |
| 555 | - | |
| 556 | -/*--- | |
| 557 | -/*----------------------------------------*/ | |
| 558 | -/* Component CSS | |
| 559 | -/*----------------------------------------*/ | |
| 560 | -.easydocs-accordion { | |
| 561 | - position: relative; | |
| 562 | - padding: 0; | |
| 563 | - list-style: none; | |
| 564 | - margin: 10px 0 20px; | |
| 565 | - background: var(--clr-white); | |
| 566 | - border-radius: 5px; | |
| 567 | - overflow: hidden; | |
| 568 | - border: 1px solid #edeae9; | |
| 569 | -} | |
| 570 | -.easydocs-accordion .acc_active .accordion-title { | |
| 571 | - border-bottom: 1px solid #edeae9; | |
| 572 | -} | |
| 573 | -.easydocs-accordion .acc_active .accordion-title::before { | |
| 574 | - transform: translateY(-50%) rotate(90deg); | |
| 575 | -} | |
| 576 | -.easydocs-accordion .ui-state-highlight { | |
| 577 | - height: 50px; | |
| 578 | - background: #f9f9f9; | |
| 579 | - border-top: 1px solid #afabac; | |
| 580 | - border-bottom: 1px solid #afabac; | |
| 581 | -} | |
| 582 | - | |
| 583 | -.easydocs-accordion-item { | |
| 584 | - width: 100%; | |
| 585 | - margin: 0; | |
| 586 | -} | |
| 587 | -.easydocs-accordion-item + .easydocs-accordion-item { | |
| 588 | - border-top: 1px solid #edeae9; | |
| 589 | -} | |
| 590 | -.easydocs-accordion-item.is-accordion-open:last-child .accordion-title { | |
| 591 | - border-bottom-left-radius: 0; | |
| 592 | - border-bottom-right-radius: 0; | |
| 593 | -} | |
| 594 | -.easydocs-accordion-item.child-one .child-right-content { | |
| 595 | - align-items: center; | |
| 596 | -} | |
| 597 | -.easydocs-accordion-item.child-one .child-right-content .progress-text { | |
| 598 | - font-size: var(--fs-12); | |
| 599 | - color: var(--clr-text-light); | |
| 600 | - margin-right: var(--gutter-30); | |
| 601 | -} | |
| 602 | -.easydocs-accordion-item.child-one .accordion-title::before { | |
| 603 | - transform: translateY(-50%); | |
| 604 | -} | |
| 605 | -.easydocs-accordion-item.child-one.acc_active .accordion-title::before { | |
| 606 | - transform: translateY(-50%) rotate(90deg); | |
| 607 | -} | |
| 608 | -.easydocs-accordion-item.child-one a { | |
| 609 | - padding: 0; | |
| 610 | -} | |
| 611 | -.easydocs-accordion-item.child-one .accordion-title.has-child a.section-last-label { | |
| 612 | - margin-left: 19px; | |
| 613 | -} | |
| 614 | -.easydocs-accordion-item.child-one .accordion-title.has-child::before { | |
| 615 | - left: 52px; | |
| 616 | -} | |
| 617 | -.easydocs-accordion-item.child-one .nesting-accordion a.child-last-label { | |
| 618 | - margin: 10px 50px 10px 70px; | |
| 619 | -} | |
| 620 | - | |
| 621 | -.accordion-title { | |
| 622 | - position: relative; | |
| 623 | - background: #fff; | |
| 624 | - padding: 13px 30px 13px 30px; | |
| 625 | - cursor: pointer; | |
| 626 | - display: flex; | |
| 627 | - align-items: center; | |
| 628 | - justify-content: space-between; | |
| 629 | -} | |
| 630 | -@media (max-width: 1440px) { | |
| 631 | - .accordion-title { | |
| 632 | - padding: 12px 20px 12px 34px; | |
| 633 | - } | |
| 634 | -} | |
| 635 | -.accordion-title.ez-section-title h4 { | |
| 636 | - font-weight: var(--fw-500); | |
| 637 | -} | |
| 638 | -@media (max-width: 1440px) { | |
| 639 | - .accordion-title.ez-section-title::before { | |
| 640 | - left: 20px; | |
| 641 | - } | |
| 642 | -} | |
| 643 | -.accordion-title.has-child::before { | |
| 644 | - content: ""; | |
| 645 | - top: 50%; | |
| 646 | - left: 32px; | |
| 647 | - position: absolute; | |
| 648 | - width: 0; | |
| 649 | - height: 0; | |
| 650 | - border-style: solid; | |
| 651 | - border-width: 5px 0 5px 6px; | |
| 652 | - border-color: transparent transparent transparent var(--clr-text); | |
| 653 | - display: block; | |
| 654 | - transform: translateY(-50%); | |
| 655 | - -webkit-transition: 0.3s ease-out; | |
| 656 | - transition: 0.3s ease-out; | |
| 657 | -} | |
| 658 | -@media (max-width: 1440px) { | |
| 659 | - .accordion-title.has-child::before { | |
| 660 | - left: 20px; | |
| 661 | - } | |
| 662 | -} | |
| 663 | -.accordion-title .count { | |
| 664 | - margin-left: 5px; | |
| 665 | - color: #fff; | |
| 666 | - background: var(--black_200); | |
| 667 | -} | |
| 668 | -.accordion-title ul.actions { | |
| 669 | - display: flex; | |
| 670 | -} | |
| 671 | -.accordion-title ul.actions li { | |
| 672 | - margin: 0; | |
| 673 | -} | |
| 674 | -.accordion-title:hover { | |
| 675 | - background: #f9f9f9; | |
| 676 | -} | |
| 677 | -.accordion-title:hover h4 { | |
| 678 | - color: var(--clr-dark); | |
| 679 | -} | |
| 680 | -.accordion-title:hover ul.actions { | |
| 681 | - display: flex; | |
| 682 | -} | |
| 683 | -.accordion-title:hover ul.actions li { | |
| 684 | - margin: 0; | |
| 685 | - line-height: normal; | |
| 686 | -} | |
| 687 | -.accordion-title h4 { | |
| 688 | - font-size: var(--fs-14); | |
| 689 | - color: var(--clr-text); | |
| 690 | - display: flex; | |
| 691 | - align-items: center; | |
| 692 | - font-weight: normal; | |
| 693 | -} | |
| 694 | -.accordion-title h4 a { | |
| 695 | - text-decoration: none; | |
| 696 | -} | |
| 697 | -.accordion-title .accordion-category-icon { | |
| 698 | - width: 1.25rem; | |
| 699 | - height: 1.25rem; | |
| 700 | - line-height: 1.25rem; | |
| 701 | - border-radius: 50%; | |
| 702 | - text-align: center; | |
| 703 | - margin-left: 5px; | |
| 704 | -} | |
| 705 | -.accordion-title .light-green { | |
| 706 | - background: rgba(45, 178, 45, 0.1); | |
| 707 | - --category-icon: #2db22d; | |
| 708 | -} | |
| 709 | -.accordion-title .light-orange { | |
| 710 | - background: rgba(204, 128, 51, 0.1); | |
| 711 | - --category-icon: #cc8033; | |
| 712 | -} | |
| 713 | -.accordion-title .light-blue { | |
| 714 | - background: rgba(2, 117, 216, 0.1); | |
| 715 | - --category-icon: var(--clr-blue); | |
| 716 | -} | |
| 717 | -.accordion-title .light-gray { | |
| 718 | - background: rgba(66, 66, 66, 0.1); | |
| 719 | - --category-icon: #424242; | |
| 720 | -} | |
| 721 | -.accordion-title ul.actions { | |
| 722 | - display: none; | |
| 723 | - align-items: center; | |
| 724 | - gap: var(--gutter-10); | |
| 725 | - --section-icon: #9199a1; | |
| 726 | - margin-left: 15px; | |
| 727 | -} | |
| 728 | -.accordion-title ul.actions .duplicate { | |
| 729 | - order: 1; | |
| 730 | -} | |
| 731 | -.accordion-title ul.actions .delete { | |
| 732 | - order: 2; | |
| 733 | -} | |
| 734 | -.accordion-title ul.actions li:hover { | |
| 735 | - --section-icon: var(--clr-dark); | |
| 736 | -} | |
| 737 | -.accordion-title ul.actions li a { | |
| 738 | - text-decoration: none; | |
| 739 | -} | |
| 740 | -.accordion-title ul.actions li a .dashicons { | |
| 741 | - color: var(--black_150); | |
| 742 | - font-size: 18px; | |
| 743 | - padding-top: 3px; | |
| 744 | -} | |
| 745 | -.accordion-title ul.actions li a .dashicons:hover { | |
| 746 | - color: var(--black_400); | |
| 747 | -} | |
| 748 | -.accordion-title ul.actions li a img { | |
| 749 | - opacity: 0.5; | |
| 750 | -} | |
| 751 | -.accordion-title ul.actions li a img:hover { | |
| 752 | - opacity: 1; | |
| 753 | -} | |
| 754 | -.accordion-title ul.actions li a.st-pro-notice .dashicons { | |
| 755 | - color: #f1bd6c; | |
| 756 | -} | |
| 757 | -.accordion-title .left-content { | |
| 758 | - display: flex; | |
| 759 | - align-items: center; | |
| 760 | -} | |
| 761 | -.accordion-title .left-content .topic-status { | |
| 762 | - width: 30px; | |
| 763 | - height: 20px; | |
| 764 | - text-align: left; | |
| 765 | - margin-right: 5px; | |
| 766 | -} | |
| 767 | -.accordion-title .right-content { | |
| 768 | - display: flex; | |
| 769 | - align-items: center; | |
| 770 | -} | |
| 771 | -.accordion-title .right-content .progress-text { | |
| 772 | - font-size: var(--fs-12); | |
| 773 | - color: var(--clr-text-light); | |
| 774 | - margin-left: var(--gutter-30); | |
| 775 | -} | |
| 776 | - | |
| 777 | -.easydocs-accordion-body { | |
| 778 | - background: var(--clr-white); | |
| 779 | - color: var(--clr-text); | |
| 780 | - font-size: var(--fs-14); | |
| 781 | - padding: 10px 50px 10px 50px; | |
| 782 | -} | |
| 783 | - | |
| 784 | -.nesting-accordion { | |
| 785 | - padding: 0; | |
| 786 | -} | |
| 787 | -.nesting-accordion a { | |
| 788 | - text-decoration: none; | |
| 789 | -} | |
| 790 | - | |
| 791 | -.child-docs-wrap { | |
| 792 | - border-bottom: 1px solid #edeae9; | |
| 793 | -} | |
| 794 | -.child-docs-wrap:hover { | |
| 795 | - background-color: #f9f9f9; | |
| 796 | -} | |
| 797 | -.child-docs-wrap .child-right-content { | |
| 798 | - visibility: hidden; | |
| 799 | -} | |
| 800 | -.child-docs-wrap:hover .child-right-content { | |
| 801 | - visibility: visible; | |
| 802 | -} | |
| 803 | - | |
| 804 | -a.child-delete, | |
| 805 | -a.child-view-link { | |
| 806 | - padding-left: 5px !important; | |
| 807 | - padding-right: 5px !important; | |
| 808 | -} | |
| 809 | -a.child-delete img, | |
| 810 | -a.child-view-link img { | |
| 811 | - opacity: 0.5; | |
| 812 | -} | |
| 813 | -a.child-delete img:hover, | |
| 814 | -a.child-view-link img:hover { | |
| 815 | - opacity: 1; | |
| 816 | -} | |
| 817 | - | |
| 818 | -a.child-delete { | |
| 819 | - padding-right: 28px !important; | |
| 820 | -} | |
| 821 | - | |
| 822 | -/* replies count */ | |
| 823 | -.count-replies span { | |
| 824 | - position: absolute; | |
| 825 | - top: 1px; | |
| 826 | - left: 8px; | |
| 827 | - color: #fff; | |
| 828 | - font-size: 0.55em; | |
| 829 | -} | |
| 830 | - | |
| 831 | -.bbpc-reply-count { | |
| 832 | - box-sizing: border-box; | |
| 833 | - display: block; | |
| 834 | - padding: 0; | |
| 835 | - min-width: 22px; | |
| 836 | - height: 2em; | |
| 837 | - border-radius: 5px; | |
| 838 | - background-color: var(--black_200); | |
| 839 | - color: #fff; | |
| 840 | - font-size: 10px; | |
| 841 | - line-height: 1.9090909; | |
| 842 | - text-align: center; | |
| 843 | - margin-left: 10px; | |
| 844 | -} | |
| 845 | -.bbpc-reply-count:after { | |
| 846 | - content: ""; | |
| 847 | - display: block; | |
| 848 | - margin-left: 11px; | |
| 849 | - width: 0; | |
| 850 | - height: 0; | |
| 851 | - border-top: 5px solid var(--black_200); | |
| 852 | - border-right: 5px solid transparent; | |
| 853 | -} | |
| 854 | -.bbpc-reply-count.bbpc-published-replies { | |
| 855 | - background-color: #cc8033; | |
| 856 | -} | |
| 857 | -.bbpc-reply-count.bbpc-published-replies:after { | |
| 858 | - border-top: 5px solid #cc8033; | |
| 859 | -} | |
| 860 | - | |
| 861 | -.bbpc-pending-replies:hover, .bbpc-pending-replies:active { | |
| 862 | - background: #0275d8; | |
| 863 | -} | |
| 864 | -.bbpc-pending-replies:hover:after, .bbpc-pending-replies:active:after { | |
| 865 | - border-top-color: #0275d8; | |
| 866 | -} | |
| 867 | - | |
| 868 | -.bbpc-nested-replies { | |
| 869 | - margin-left: 30px; | |
| 870 | - display: none; | |
| 871 | -} | |
| 872 | - | |
| 873 | -.ez-section-title div:has(.active) .bbpc-pending-replies { | |
| 874 | - background: #0275d8; | |
| 875 | -} | |
| 876 | -.ez-section-title div:has(.active) .bbpc-pending-replies:after { | |
| 877 | - border-top-color: #0275d8; | |
| 878 | -} | |
| 879 | - | |
| 880 | -.bbpc-reply-wrap { | |
| 881 | - background-color: #fff; | |
| 882 | - padding: 8px 0; | |
| 883 | - margin-left: 20px; | |
| 884 | -} | |
| 885 | -.bbpc-reply-wrap a { | |
| 886 | - width: 22px; | |
| 887 | - height: 22px; | |
| 888 | - display: inline-block; | |
| 889 | -} | |
| 890 | -.bbpc-reply-wrap:hover { | |
| 891 | - background: #f9f9f9; | |
| 892 | -} | |
| 893 | -.bbpc-reply-wrap:not(:last-child) { | |
| 894 | - border-bottom: 1px solid #edeae9; | |
| 895 | -} | |
| 896 | - | |
| 897 | -.ezd-btn { | |
| 898 | - --btn-fs: var(--fs-16); | |
| 899 | - --btn-ff: var(--ff-roboto); | |
| 900 | - --btn-py: 0.5rem; | |
| 901 | - --btn-px: 1.6rem; | |
| 902 | - position: relative; | |
| 903 | - font-family: var(--btn-ff); | |
| 904 | - font-size: var(--btn-fs); | |
| 905 | - font-weight: var(--fw-400); | |
| 906 | - line-height: 1.5; | |
| 907 | - background: var(--btn-bg); | |
| 908 | - color: var(--btn-clr); | |
| 909 | - border: var(--btn-bw, var(--border-width)) var(--btn-bs, var(--border-style)) var(--btn-bc, var(--btn-bg)); | |
| 910 | - text-transform: capitalize; | |
| 911 | - text-decoration: none; | |
| 912 | - border-radius: var(--btn-radius, var(--radius)); | |
| 913 | - padding: var(--btn-py) var(--btn-px); | |
| 914 | - margin: var(--btn-mx) var(--btn-mx); | |
| 915 | - display: inline-block; | |
| 916 | - overflow: hidden; | |
| 917 | - text-align: center; | |
| 918 | - cursor: pointer; | |
| 919 | - -webkit-transition: 0.3s ease-out; | |
| 920 | - transition: 0.3s ease-out; | |
| 921 | -} | |
| 922 | -.ezd-btn-sm { | |
| 923 | - --btn-py: 0.3125rem; | |
| 924 | -} | |
| 925 | -.ezd-btn-lg { | |
| 926 | - --btn-py: 0.625rem; | |
| 927 | -} | |
| 928 | -.ezd-btn-xl { | |
| 929 | - --btn-py: 0.75rem; | |
| 930 | -} | |
| 931 | -.ezd-btn-none { | |
| 932 | - --btn-radius: 0; | |
| 933 | -} | |
| 934 | -.ezd-btn-round { | |
| 935 | - --btn-radius: 0.375rem; | |
| 936 | -} | |
| 937 | -.ezd-btn-rounded { | |
| 938 | - --btn-radius: 1.875rem; | |
| 939 | -} | |
| 940 | -.ezd-btn-round-full { | |
| 941 | - --btn-radius: 50%; | |
| 942 | -} | |
| 943 | -.ezd-btn-disabled { | |
| 944 | - pointer-events: none; | |
| 945 | - opacity: 0.65; | |
| 946 | -} | |
| 947 | -.ezd-btn-black-light { | |
| 948 | - --btn-bg: rgba(13, 14, 43, 0.1); | |
| 949 | - --btn-clr: #0D0E2B; | |
| 950 | - --btn-bc: transparent; | |
| 951 | -} | |
| 952 | -.ezd-btn-black-light:hover { | |
| 953 | - --btn-clr: #0D0E2B; | |
| 954 | - --btn-bg: rgba(13, 14, 43, 0.1); | |
| 955 | - --btn-bc: #0D0E2B; | |
| 956 | -} | |
| 957 | -.ezd-btn-black-light:focus { | |
| 958 | - outline: 0; | |
| 959 | - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 960 | -} | |
| 961 | -.ezd-btn-green-light { | |
| 962 | - --btn-bg: rgba(45, 178, 45, 0.1); | |
| 963 | - --btn-clr: #2DB22D; | |
| 964 | - --btn-bc: transparent; | |
| 965 | -} | |
| 966 | -.ezd-btn-green-light:hover { | |
| 967 | - --btn-clr: #2DB22D; | |
| 968 | - --btn-bg: rgba(45, 178, 45, 0.1); | |
| 969 | - --btn-bc: #2DB22D; | |
| 970 | -} | |
| 971 | -.ezd-btn-green-light:focus { | |
| 972 | - outline: 0; | |
| 973 | - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 974 | -} | |
| 975 | -.ezd-btn-blue-light { | |
| 976 | - --btn-bg: rgba(2, 117, 216, 0.1); | |
| 977 | - --btn-clr: #0275D8; | |
| 978 | - --btn-bc: transparent; | |
| 979 | -} | |
| 980 | -.ezd-btn-blue-light:hover { | |
| 981 | - --btn-clr: #0275D8; | |
| 982 | - --btn-bg: rgba(2, 117, 216, 0.1); | |
| 983 | - --btn-bc: #0275D8; | |
| 984 | -} | |
| 985 | -.ezd-btn-blue-light:focus { | |
| 986 | - outline: 0; | |
| 987 | - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 988 | -} | |
| 989 | -.ezd-btn-orange-light { | |
| 990 | - --btn-bg: rgba(204, 128, 51, 0.1); | |
| 991 | - --btn-clr: #CC8033; | |
| 992 | - --btn-bc: transparent; | |
| 993 | -} | |
| 994 | -.ezd-btn-orange-light:hover { | |
| 995 | - --btn-clr: #CC8033; | |
| 996 | - --btn-bg: rgba(204, 128, 51, 0.1); | |
| 997 | - --btn-bc: #CC8033; | |
| 998 | -} | |
| 999 | -.ezd-btn-orange-light:focus { | |
| 1000 | - outline: 0; | |
| 1001 | - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 1002 | -} | |
| 1003 | -.ezd-btn-gray-light { | |
| 1004 | - --btn-bg: rgba(66, 66, 66, 0.1); | |
| 1005 | - --btn-clr: #424242; | |
| 1006 | - --btn-bc: transparent; | |
| 1007 | -} | |
| 1008 | -.ezd-btn-gray-light:hover { | |
| 1009 | - --btn-clr: #424242; | |
| 1010 | - --btn-bg: rgba(66, 66, 66, 0.1); | |
| 1011 | - --btn-bc: #424242; | |
| 1012 | -} | |
| 1013 | -.ezd-btn-gray-light:focus { | |
| 1014 | - outline: 0; | |
| 1015 | - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 1016 | -} | |
| 1017 | -.ezd-btn-blue { | |
| 1018 | - --btn-bg: var(--clr-blue); | |
| 1019 | - --btn-clr: var(--clr-white); | |
| 1020 | - --btn-bc: var(--clr-blue); | |
| 1021 | -} | |
| 1022 | -.ezd-btn-blue:hover { | |
| 1023 | - --btn-clr: var(--clr-blue); | |
| 1024 | - --btn-bg: transparent; | |
| 1025 | - --btn-bc: var(--clr-blue); | |
| 1026 | -} | |
| 1027 | -.ezd-btn-blue:focus { | |
| 1028 | - outline: 0; | |
| 1029 | - box-shadow: 0 0 0 0.4rem rgba(65, 65, 230, 0.5); | |
| 1030 | -} | |
| 1031 | -.ezd-btn-outline-blue { | |
| 1032 | - --btn-clr: #4141E6; | |
| 1033 | - --btn-bc: #4141E6; | |
| 1034 | -} | |
| 1035 | -.ezd-btn-outline-blue:hover { | |
| 1036 | - --btn-clr: var(--clr-white); | |
| 1037 | - --btn-bg: #4141E6; | |
| 1038 | - --btn-bc: #4141E6; | |
| 1039 | -} | |
| 1040 | -.ezd-btn-outline-blue:focus { | |
| 1041 | - outline: 0; | |
| 1042 | - box-shadow: 0 0 0 0.4rem rgba(65, 65, 230, 0.5); | |
| 1043 | -} | |
| 1044 | -.ezd-btn-white { | |
| 1045 | - --btn-bg: var(--clr-white); | |
| 1046 | - --btn-clr: var(--clr-white); | |
| 1047 | - --btn-bc: var(--clr-white); | |
| 1048 | -} | |
| 1049 | -.ezd-btn-white:hover { | |
| 1050 | - --btn-clr: var(--clr-white); | |
| 1051 | - --btn-bg: transparent; | |
| 1052 | - --btn-bc: var(--clr-white); | |
| 1053 | -} | |
| 1054 | -.ezd-btn-white:focus { | |
| 1055 | - outline: 0; | |
| 1056 | - box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.5); | |
| 1057 | -} | |
| 1058 | -.ezd-btn-outline-white { | |
| 1059 | - --btn-clr: var(--clr-white); | |
| 1060 | - --btn-bc: var(--clr-white); | |
| 1061 | -} | |
| 1062 | -.ezd-btn-outline-white:hover { | |
| 1063 | - --btn-clr: var(--clr-black); | |
| 1064 | - --btn-bg: var(--clr-white); | |
| 1065 | - --btn-bc: var(--clr-white); | |
| 1066 | -} | |
| 1067 | -.ezd-btn-outline-white:focus { | |
| 1068 | - outline: 0; | |
| 1069 | - box-shadow: 0 0 0 0.4rem rgba(var(--clr-white), 0.5); | |
| 1070 | -} | |
| 1071 | -.ezd-btn-gray { | |
| 1072 | - --btn-bg: rgba(37, 39, 51, 0.1); | |
| 1073 | - --btn-clr: var(--clr-dark); | |
| 1074 | - --btn-bc: transparent; | |
| 1075 | -} | |
| 1076 | -.ezd-btn-gray:hover { | |
| 1077 | - --btn-clr: var(--clr-white); | |
| 1078 | - --btn-bg: var(--clr-blue); | |
| 1079 | - --btn-bc: transparent; | |
| 1080 | -} | |
| 1081 | -.ezd-btn-gray:focus { | |
| 1082 | - outline: 0; | |
| 1083 | - box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 1084 | -} | |
| 1085 | - | |
| 1086 | -.easydocs-dropdown { | |
| 1087 | - top: 130%; | |
| 1088 | - right: -20px; | |
| 1089 | - position: absolute; | |
| 1090 | - -webkit-box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1) 0 0 0 rgba(var(--clr-black), 1); | |
| 1091 | - -moz-box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1) 0 0 0 rgba(var(--clr-black), 1); | |
| 1092 | - box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1) 0 0 0 rgba(var(--clr-black), 1); | |
| 1093 | - background-color: var(--clr-white); | |
| 1094 | - border-radius: 0.5rem; | |
| 1095 | - z-index: 999; | |
| 1096 | - -webkit-transition: 0.3s ease-out; | |
| 1097 | - transition: 0.3s ease-out; | |
| 1098 | - display: none; | |
| 1099 | -} | |
| 1100 | -.easydocs-dropdown.is-active { | |
| 1101 | - opacity: 1; | |
| 1102 | - visibility: visible; | |
| 1103 | - top: 130%; | |
| 1104 | -} | |
| 1105 | - | |
| 1106 | -.notification-dropdown { | |
| 1107 | - width: 340px; | |
| 1108 | - border-bottom: 1px solid rgba(0, 0, 0, 0.08); | |
| 1109 | - border-left: 1px solid rgba(0, 0, 0, 0.05); | |
| 1110 | - border-radius: 3px; | |
| 1111 | - box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08); | |
| 1112 | -} | |
| 1113 | -.notification-dropdown::before { | |
| 1114 | - content: ""; | |
| 1115 | - top: -0.625rem; | |
| 1116 | - right: 28px; | |
| 1117 | - position: absolute; | |
| 1118 | - width: 0; | |
| 1119 | - height: 0; | |
| 1120 | - border-style: solid; | |
| 1121 | - border-width: 0 10px 10px 10px; | |
| 1122 | - border-color: transparent transparent #f9f9f9 transparent; | |
| 1123 | - display: block; | |
| 1124 | -} | |
| 1125 | - | |
| 1126 | -.notification-head { | |
| 1127 | - padding: 9px 12px; | |
| 1128 | - background: #f9f9f9; | |
| 1129 | - -webkit-box-shadow: 0 1px 0 0 #edeef2; | |
| 1130 | - -moz-box-shadow: 0 1px 0 0 #edeef2; | |
| 1131 | - box-shadow: 0 1px 0 0 #edeef2; | |
| 1132 | -} | |
| 1133 | -.notification-head.no-notification-text { | |
| 1134 | - padding: 20px 12px; | |
| 1135 | - background: rgba(190, 190, 190, 0.1490196078); | |
| 1136 | - display: block; | |
| 1137 | - text-align: center; | |
| 1138 | -} | |
| 1139 | -.notification-head .header-text { | |
| 1140 | - color: var(--clr-dark); | |
| 1141 | - font-size: var(--fs-13); | |
| 1142 | - font-weight: var(--fw-500); | |
| 1143 | - line-height: 1; | |
| 1144 | -} | |
| 1145 | -.notification-head .right-text { | |
| 1146 | - color: var(--clr-text); | |
| 1147 | - font-size: var(--fs-12); | |
| 1148 | - line-height: 1; | |
| 1149 | -} | |
| 1150 | - | |
| 1151 | -.form-control { | |
| 1152 | - font-family: var(--ff-roboto); | |
| 1153 | - font-size: var(--fs-14); | |
| 1154 | - color: #9199a1; | |
| 1155 | - background: transparent; | |
| 1156 | - text-transform: capitalize; | |
| 1157 | - padding: 0.75rem 1.25rem; | |
| 1158 | - margin: 0 auto; | |
| 1159 | - width: 100%; | |
| 1160 | - height: auto; | |
| 1161 | - max-width: 37.5rem; | |
| 1162 | - border: 1px solid #EDEAE9; | |
| 1163 | - border-radius: 0.625rem; | |
| 1164 | - -webkit-transition: 0.3s ease-out; | |
| 1165 | - transition: 0.3s ease-out; | |
| 1166 | -} | |
| 1167 | -.form-control:focus { | |
| 1168 | - outline: none; | |
| 1169 | -} | |
| 1170 | -.form-control:focus { | |
| 1171 | - background: white; | |
| 1172 | - box-shadow: none !important; | |
| 1173 | - border: 1px solid #4c4cf1 !important; | |
| 1174 | - border-radius: 0.625rem; | |
| 1175 | - box-sizing: border-box !important; | |
| 1176 | - line-height: unset !important; | |
| 1177 | -} | |
| 1178 | -.form-control:focus ~ .search-icon { | |
| 1179 | - background: var(--clr-blue); | |
| 1180 | - --search-icon: var(--clr-white); | |
| 1181 | -} | |
| 1182 | -.form-control:focus ~ .search-icon .dashicons { | |
| 1183 | - color: #fff; | |
| 1184 | -} | |
| 1185 | - | |
| 1186 | -.easydocs-search-form { | |
| 1187 | - position: relative; | |
| 1188 | - max-width: 37.5rem; | |
| 1189 | - flex: 1; | |
| 1190 | - margin-left: auto; | |
| 1191 | - margin-right: auto; | |
| 1192 | -} | |
| 1193 | -.easydocs-search-form .search-icon { | |
| 1194 | - position: absolute; | |
| 1195 | - -webkit-transition: 0.3s ease-out; | |
| 1196 | - transition: 0.3s ease-out; | |
| 1197 | - left: 20px; | |
| 1198 | - transform: translateY(50%); | |
| 1199 | -} | |
| 1200 | -.easydocs-search-form input#bbpc-search { | |
| 1201 | - color: #9199a1; | |
| 1202 | - padding: 10px 15px 10px 48px; | |
| 1203 | - border: 1px solid #EDEAE9; | |
| 1204 | - box-sizing: border-box; | |
| 1205 | - line-height: unset; | |
| 1206 | - box-shadow: 0 1px 1px rgba(11, 80, 115, 0.3), 0 1px 5px rgba(60, 64, 67, 0.1); | |
| 1207 | - background: rgba(255, 255, 255, 0.35); | |
| 1208 | - border-radius: 25px; | |
| 1209 | -} | |
| 1210 | -.easydocs-search-form input#bbpc-search:hover { | |
| 1211 | - box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15); | |
| 1212 | -} | |
| 1213 | -.easydocs-search-form input#bbpc-search:focus { | |
| 1214 | - background: #fff; | |
| 1215 | - color: #242729; | |
| 1216 | - outline: none; | |
| 1217 | -} | |
| 1218 | - | |
| 1219 | -.easydocs-accordion-item progress { | |
| 1220 | - -webkit-appearance: none; | |
| 1221 | - appearance: none; | |
| 1222 | - height: 6px; | |
| 1223 | - border-radius: 32px; | |
| 1224 | - width: 100px; | |
| 1225 | -} | |
| 1226 | -.easydocs-accordion-item progress::-webkit-progress-bar { | |
| 1227 | - background-color: #e74c3c; | |
| 1228 | -} | |
| 1229 | -.easydocs-accordion-item progress::-webkit-progress-value { | |
| 1230 | - background-color: #27ae60; | |
| 1231 | -} | |
| 1232 | - | |
| 1233 | -.badge { | |
| 1234 | - display: inline-block; | |
| 1235 | - padding: 0.35em 0.65em 0.3em; | |
| 1236 | - font-size: 0.75em; | |
| 1237 | - font-weight: 400; | |
| 1238 | - line-height: 1; | |
| 1239 | - color: #fff; | |
| 1240 | - text-align: center; | |
| 1241 | - white-space: nowrap; | |
| 1242 | - vertical-align: baseline; | |
| 1243 | - border-radius: 0.25rem; | |
| 1244 | -} | |
| 1245 | - | |
| 1246 | -/*----------------------------------------*/ | |
| 1247 | -/* 02. Header Area | |
| 1248 | -/*----------------------------------------*/ | |
| 1249 | -.easydocs-header-area { | |
| 1250 | - padding-top: 40px; | |
| 1251 | - padding-bottom: 50px; | |
| 1252 | -} | |
| 1253 | -.easydocs-header-area .easydocs-row { | |
| 1254 | - margin-left: 0; | |
| 1255 | - margin-right: 0; | |
| 1256 | -} | |
| 1257 | - | |
| 1258 | -.navbar-left { | |
| 1259 | - gap: var(--gutter-20); | |
| 1260 | -} | |
| 1261 | -.navbar-left .easydocs-btn { | |
| 1262 | - --btn-icon: var(--clr-blue); | |
| 1263 | - --btn-py: 0.5rem; | |
| 1264 | - --btn-px: 1rem; | |
| 1265 | - --btn-fs: var(--fs-12); | |
| 1266 | - font-weight: 500; | |
| 1267 | - gap: 6px; | |
| 1268 | - display: flex; | |
| 1269 | - border: 1px solid var(--clr-blue); | |
| 1270 | - align-items: center; | |
| 1271 | - text-decoration: none; | |
| 1272 | - padding: 8px 15px; | |
| 1273 | - border-radius: 6px; | |
| 1274 | - color: var(--clr-blue); | |
| 1275 | -} | |
| 1276 | -.navbar-left .easydocs-btn span.dashicons { | |
| 1277 | - font-size: 14px; | |
| 1278 | - margin-bottom: -4px; | |
| 1279 | -} | |
| 1280 | -.navbar-left .easydocs-btn:hover { | |
| 1281 | - --btn-icon: var(--clr-white); | |
| 1282 | - background: var(--clr-blue); | |
| 1283 | -} | |
| 1284 | -.navbar-left .easydocs-btn:focus { | |
| 1285 | - box-shadow: 0 0 0 0.4rem rgba(65, 65, 230, 0.5); | |
| 1286 | -} | |
| 1287 | - | |
| 1288 | -.easydocs-logo-area a { | |
| 1289 | - text-decoration: none; | |
| 1290 | - color: var(--clr-dark); | |
| 1291 | - font-size: var(--fs-24); | |
| 1292 | - font-weight: var(--fw-700); | |
| 1293 | -} | |
| 1294 | - | |
| 1295 | -:is(.easydocs-notification, .easydocs-settings) .header-notify-icon { | |
| 1296 | - width: 2.5rem; | |
| 1297 | - height: 2.5rem; | |
| 1298 | - line-height: 2.5rem; | |
| 1299 | - border-radius: 50%; | |
| 1300 | - background: rgba(37, 39, 51, 0.05); | |
| 1301 | - text-align: center; | |
| 1302 | - cursor: pointer; | |
| 1303 | -} | |
| 1304 | -:is(.easydocs-notification, .easydocs-settings) .header-notify-icon:hover { | |
| 1305 | - background: rgba(37, 39, 51, 0.09); | |
| 1306 | -} | |
| 1307 | -:is(.easydocs-notification, .easydocs-settings) .header-notify-icon svg { | |
| 1308 | - position: relative; | |
| 1309 | - top: 0.3rem; | |
| 1310 | -} | |
| 1311 | - | |
| 1312 | -.easydocs-notification { | |
| 1313 | - margin-right: 1.6875rem; | |
| 1314 | - position: relative; | |
| 1315 | -} | |
| 1316 | -.easydocs-notification .easydocs-badge { | |
| 1317 | - top: -0.4375rem; | |
| 1318 | - right: -0.5rem; | |
| 1319 | - position: absolute; | |
| 1320 | - background: #FA3E3E; | |
| 1321 | - color: var(--clr-white); | |
| 1322 | - top: -0.4375rem; | |
| 1323 | - right: -0.2rem; | |
| 1324 | - position: absolute; | |
| 1325 | - padding: 0 4px; | |
| 1326 | - min-width: 18px; | |
| 1327 | - max-width: 18px; | |
| 1328 | - border-radius: 50%; | |
| 1329 | - text-align: center; | |
| 1330 | - font-size: 10px; | |
| 1331 | - font-weight: 700; | |
| 1332 | - line-height: 18px; | |
| 1333 | - height: 16px; | |
| 1334 | - display: inline-table; | |
| 1335 | - font-family: "Roboto"; | |
| 1336 | -} | |
| 1337 | - | |
| 1338 | -.easydocs-settings .header-notify-icons a { | |
| 1339 | - text-decoration: none; | |
| 1340 | - padding-top: 5px; | |
| 1341 | - display: inline-block; | |
| 1342 | -} | |
| 1343 | - | |
| 1344 | -:is(.knobs, .layer) { | |
| 1345 | - inset: 0; | |
| 1346 | - position: absolute; | |
| 1347 | -} | |
| 1348 | - | |
| 1349 | -.navbar-right .js-darkmode-btn .day svg { | |
| 1350 | - color: #fff; | |
| 1351 | -} | |
| 1352 | -.navbar-right .js-darkmode-btn .night svg { | |
| 1353 | - color: var(--clr-dark); | |
| 1354 | -} | |
| 1355 | - | |
| 1356 | -.body_dark .navbar-right .js-darkmode-btn .day svg { | |
| 1357 | - --toggle-icon: #575766; | |
| 1358 | -} | |
| 1359 | -.body_dark .navbar-right .js-darkmode-btn .night svg { | |
| 1360 | - --toggle-icon: #fff; | |
| 1361 | -} | |
| 1362 | - | |
| 1363 | -.navbar-right { | |
| 1364 | - display: flex; | |
| 1365 | - align-items: center; | |
| 1366 | - justify-content: flex-end; | |
| 1367 | -} | |
| 1368 | -.navbar-right > ul { | |
| 1369 | - align-items: center; | |
| 1370 | - gap: 8px; | |
| 1371 | -} | |
| 1372 | -.navbar-right .js-darkmode-btn { | |
| 1373 | - display: flex; | |
| 1374 | - align-items: center; | |
| 1375 | - justify-content: space-between; | |
| 1376 | - width: 5rem; | |
| 1377 | - height: 2.5rem; | |
| 1378 | - position: relative; | |
| 1379 | - background: rgba(37, 39, 51, 0.05); | |
| 1380 | - padding: 0 10px; | |
| 1381 | - color: #fff; | |
| 1382 | - border-radius: 24px; | |
| 1383 | - -webkit-transition: 0.3s ease-out; | |
| 1384 | - transition: 0.3s ease-out; | |
| 1385 | -} | |
| 1386 | -.navbar-right .js-darkmode-btn .day svg { | |
| 1387 | - --toggle-icon: #fff; | |
| 1388 | - -webkit-transition: 0.3s ease-out; | |
| 1389 | - transition: 0.3s ease-out; | |
| 1390 | - margin-top: 7px; | |
| 1391 | -} | |
| 1392 | -.navbar-right .js-darkmode-btn .night svg { | |
| 1393 | - --toggle-icon: #575766; | |
| 1394 | - -webkit-transition: 0.3s ease-out; | |
| 1395 | - transition: 0.3s ease-out; | |
| 1396 | - margin-top: 7px; | |
| 1397 | -} | |
| 1398 | -.navbar-right .js-darkmode-btn label { | |
| 1399 | - margin: 0; | |
| 1400 | - cursor: pointer; | |
| 1401 | - position: relative; | |
| 1402 | - z-index: 2; | |
| 1403 | -} | |
| 1404 | -.navbar-right .js-darkmode-btn .ball { | |
| 1405 | - height: 30px; | |
| 1406 | - width: 30px; | |
| 1407 | - position: absolute; | |
| 1408 | - background-color: var(--clr-blue); | |
| 1409 | - border-radius: 50%; | |
| 1410 | - left: 4px; | |
| 1411 | - top: 50%; | |
| 1412 | - transform: translateY(-50%); | |
| 1413 | - cursor: default; | |
| 1414 | - transition: all 0.3s linear 0s; | |
| 1415 | - z-index: 1; | |
| 1416 | -} | |
| 1417 | -.navbar-right .js-darkmode-btn svg { | |
| 1418 | - font-size: 16px; | |
| 1419 | - transition: all 0.3s linear 0s; | |
| 1420 | -} | |
| 1421 | -.navbar-right .js-darkmode-btn input { | |
| 1422 | - display: none; | |
| 1423 | -} | |
| 1424 | - | |
| 1425 | -.settings-pro-icon { | |
| 1426 | - position: absolute; | |
| 1427 | - right: 0px; | |
| 1428 | - top: -5px; | |
| 1429 | -} | |
| 1430 | - | |
| 1431 | -.swal2-styled.swal2-confirm.upgrade-premium-button > a { | |
| 1432 | - color: black; | |
| 1433 | - font-weight: normal; | |
| 1434 | - text-decoration: none; | |
| 1435 | -} | |
| 1436 | - | |
| 1437 | -.swal2-footer.notification-pro-footer-wrap > a { | |
| 1438 | - text-decoration: none; | |
| 1439 | -} | |
| 1440 | - | |
| 1441 | -.notification-body .filter-button-group { | |
| 1442 | - display: flex; | |
| 1443 | - gap: 8px; | |
| 1444 | - padding-left: var(--gutter-25); | |
| 1445 | - padding-right: var(--gutter-25); | |
| 1446 | -} | |
| 1447 | -.notification-body .filter-button-group svg { | |
| 1448 | - top: 0; | |
| 1449 | -} | |
| 1450 | -.notification-body .filter-button-group .easydocs-btn { | |
| 1451 | - --notification-icon: var(--clr-dark); | |
| 1452 | - --btn-px: 1rem; | |
| 1453 | - --btn-fs: var(--fs-14); | |
| 1454 | - --btn-py: 0.4rem; | |
| 1455 | - display: flex; | |
| 1456 | - align-items: center; | |
| 1457 | - gap: 1px; | |
| 1458 | - --btn-bg: #e4e6eb; | |
| 1459 | - --btn-clr: var(--clr-dark); | |
| 1460 | - --btn-bc: transparent; | |
| 1461 | -} | |
| 1462 | -.notification-body .filter-button-group .easydocs-btn.mixitup-control-active { | |
| 1463 | - background-color: #e7f3ff; | |
| 1464 | - color: #1877f2; | |
| 1465 | - --notification-icon: #1877f2; | |
| 1466 | -} | |
| 1467 | -.notification-body .filter-button-group .easydocs-btn.mixitup-control-active .dashicons-screenoptions:before { | |
| 1468 | - color: #1877f2; | |
| 1469 | -} | |
| 1470 | -.notification-body .filter-button-group .easydocs-btn.mixitup-control-active:hover { | |
| 1471 | - background-color: #d2e6f9; | |
| 1472 | -} | |
| 1473 | -.notification-body .filter-button-group .easydocs-btn:hover { | |
| 1474 | - --notification-icon: var(--clr-white); | |
| 1475 | - background: #cdcdcd; | |
| 1476 | -} | |
| 1477 | - | |
| 1478 | -.notify-column { | |
| 1479 | - max-height: 25rem; | |
| 1480 | - overflow-y: auto; | |
| 1481 | - scrollbar-width: thin; | |
| 1482 | - /* Notification updated css */ | |
| 1483 | -} | |
| 1484 | -.notify-column::-webkit-scrollbar-track { | |
| 1485 | - background-color: var(--clr-text-light); | |
| 1486 | -} | |
| 1487 | -.notify-column::-webkit-scrollbar { | |
| 1488 | - width: 8px; | |
| 1489 | - background-color: #F5F5F5; | |
| 1490 | -} | |
| 1491 | -.notify-column::-webkit-scrollbar-thumb { | |
| 1492 | - background-color: var(--clr-text); | |
| 1493 | -} | |
| 1494 | -.notify-column ul li { | |
| 1495 | - border-bottom: 1px solid #f1f2f3; | |
| 1496 | - margin-bottom: 0; | |
| 1497 | -} | |
| 1498 | -.notify-column ul li a { | |
| 1499 | - text-decoration: none; | |
| 1500 | - gap: 9px; | |
| 1501 | - align-content: space-around; | |
| 1502 | - padding: 10px; | |
| 1503 | - box-sizing: border-box; | |
| 1504 | -} | |
| 1505 | -.notify-column ul li a .notify-icon { | |
| 1506 | - padding-top: 5px; | |
| 1507 | -} | |
| 1508 | -.notify-column ul li a .notify-content-wrap { | |
| 1509 | - width: -webkit-fill-available; | |
| 1510 | -} | |
| 1511 | -.notify-column ul li a .notify-content-wrap .notify-content-header { | |
| 1512 | - color: hsl(210, 8%, 35%); | |
| 1513 | - font-size: 12px; | |
| 1514 | -} | |
| 1515 | -.notify-column ul li a .notify-content-wrap .notify-content-header .noti-type { | |
| 1516 | - color: var(--black_800); | |
| 1517 | - font-weight: 500; | |
| 1518 | -} | |
| 1519 | -.notify-column ul li a .notify-content-wrap .notify-content-summary p { | |
| 1520 | - color: hsl(206, 100%, 40%); | |
| 1521 | - font-size: 13px; | |
| 1522 | -} | |
| 1523 | -.notify-column ul li a:focus { | |
| 1524 | - box-shadow: none; | |
| 1525 | -} | |
| 1526 | -.notify-column ul li:hover { | |
| 1527 | - background: hsl(210, 8%, 90%); | |
| 1528 | -} | |
| 1529 | -.notify-column ul li:last-child { | |
| 1530 | - border-bottom: none; | |
| 1531 | -} | |
| 1532 | - | |
| 1533 | -.notification-item { | |
| 1534 | - display: flex; | |
| 1535 | - align-items: flex-start; | |
| 1536 | - cursor: pointer; | |
| 1537 | - gap: var(--gutter-10); | |
| 1538 | - padding: var(--gutter-10) 15px; | |
| 1539 | - margin-left: var(--gutter-10); | |
| 1540 | - margin-right: var(--gutter-10); | |
| 1541 | - -webkit-transition: 0.3s ease-out; | |
| 1542 | - transition: 0.3s ease-out; | |
| 1543 | - border-radius: 0.3125rem; | |
| 1544 | -} | |
| 1545 | -.notification-item .notification-image { | |
| 1546 | - width: 2.5rem; | |
| 1547 | - height: 2.5rem; | |
| 1548 | - border-radius: 50%; | |
| 1549 | - position: relative; | |
| 1550 | -} | |
| 1551 | -.notification-item .notification-image .notify-badge { | |
| 1552 | - right: 0; | |
| 1553 | - bottom: 0; | |
| 1554 | - position: absolute; | |
| 1555 | - width: 1.125rem; | |
| 1556 | - height: 1.125rem; | |
| 1557 | - line-height: 1.125rem; | |
| 1558 | - border-radius: 50%; | |
| 1559 | - text-align: center; | |
| 1560 | -} | |
| 1561 | -.notification-item .notification-image .notify-badge .dashicons { | |
| 1562 | - top: 0; | |
| 1563 | -} | |
| 1564 | -.notification-item .notification-image .notify-badge-blue { | |
| 1565 | - background-color: #22AAF1; | |
| 1566 | - background-image: linear-gradient(180deg, #22AAF1 0%, #066BDA 100%); | |
| 1567 | -} | |
| 1568 | -.notification-item .notification-image .notify-badge-blue .dashicons { | |
| 1569 | - font-size: 12px; | |
| 1570 | - color: white; | |
| 1571 | - padding-top: 2.5px; | |
| 1572 | -} | |
| 1573 | -.notification-item .notification-image .notify-badge-green { | |
| 1574 | - background-color: #62D77E; | |
| 1575 | - background-image: linear-gradient(180deg, #62D77E 0%, #2BB64E 100%); | |
| 1576 | -} | |
| 1577 | -.notification-item .notification-image .notify-badge-green .dashicons { | |
| 1578 | - font-size: 12px; | |
| 1579 | - color: white; | |
| 1580 | - padding-top: 4px; | |
| 1581 | -} | |
| 1582 | -.notification-item:hover { | |
| 1583 | - background: rgba(76, 76, 241, 0.05); | |
| 1584 | -} | |
| 1585 | - | |
| 1586 | -.notification-content .notify-name { | |
| 1587 | - font-size: var(--fs-14); | |
| 1588 | - font-weight: var(--fw-500); | |
| 1589 | - color: var(--clr-dark); | |
| 1590 | - padding-right: 0.5rem; | |
| 1591 | - margin: 0; | |
| 1592 | - line-height: 1; | |
| 1593 | -} | |
| 1594 | -.notification-content .notify-name a { | |
| 1595 | - text-decoration: none; | |
| 1596 | -} | |
| 1597 | -.notification-content .reply-text { | |
| 1598 | - font-size: 14px; | |
| 1599 | - color: var(--clr-text-light); | |
| 1600 | - line-height: 1; | |
| 1601 | - margin-top: 5px; | |
| 1602 | -} | |
| 1603 | - | |
| 1604 | -.notify-short-description { | |
| 1605 | - font-size: var(--fs-14); | |
| 1606 | - color: var(--clr-text); | |
| 1607 | - line-height: 1; | |
| 1608 | - margin-top: 0.325rem; | |
| 1609 | -} | |
| 1610 | - | |
| 1611 | -.notify-date { | |
| 1612 | - text-align: left; | |
| 1613 | - color: var(--clr-text-light); | |
| 1614 | - line-height: 1; | |
| 1615 | - margin-top: 0.375rem; | |
| 1616 | -} | |
| 1617 | - | |
| 1618 | -.eazydocs-no-content { | |
| 1619 | - display: block; | |
| 1620 | - text-align: center; | |
| 1621 | - margin-top: 250px; | |
| 1622 | -} | |
| 1623 | -.eazydocs-no-content img { | |
| 1624 | - width: auto; | |
| 1625 | - max-width: 50px; | |
| 1626 | - height: auto; | |
| 1627 | - margin: 0px auto 10px; | |
| 1628 | -} | |
| 1629 | - | |
| 1630 | -.bbpc-trash-filter { | |
| 1631 | - border-radius: 1.875rem; | |
| 1632 | - margin-bottom: 0; | |
| 1633 | - background-color: rgba(212, 23, 23, 0.1); | |
| 1634 | - transition: all 0.3s; | |
| 1635 | -} | |
| 1636 | -.bbpc-trash-filter:hover { | |
| 1637 | - background-color: rgba(212, 23, 23, 0.3); | |
| 1638 | -} | |
| 1639 | -.bbpc-trash-filter:hover a { | |
| 1640 | - color: #c10000; | |
| 1641 | -} | |
| 1642 | -.bbpc-trash-filter svg { | |
| 1643 | - fill: rgb(212, 23, 23); | |
| 1644 | -} | |
| 1645 | -.bbpc-trash-filter a { | |
| 1646 | - justify-content: center; | |
| 1647 | - gap: 0.3125rem; | |
| 1648 | - padding: 5px 15px; | |
| 1649 | - font-size: 14px; | |
| 1650 | - display: flex; | |
| 1651 | - align-items: center; | |
| 1652 | - color: rgb(212, 23, 23); | |
| 1653 | - text-decoration: none; | |
| 1654 | -} | |
| 1655 | - | |
| 1656 | -.bbpc-settings-icon { | |
| 1657 | - background: rgba(0, 0, 255, 0.058); | |
| 1658 | - padding: 10px; | |
| 1659 | - border-radius: 50%; | |
| 1660 | -} | |
| 1661 | - | |
| 1662 | -/*----------------------------------------*/ | |
| 1663 | -/* Grid Layout | |
| 1664 | -/*----------------------------------------*/ | |
| 1665 | -.container { | |
| 1666 | - width: 100%; | |
| 1667 | - padding-right: 15px; | |
| 1668 | - padding-left: 15px; | |
| 1669 | - margin-right: auto; | |
| 1670 | - margin-left: auto; | |
| 1671 | -} | |
| 1672 | -@media (min-width: 576px) { | |
| 1673 | - .container { | |
| 1674 | - max-width: 540px; | |
| 1675 | - } | |
| 1676 | -} | |
| 1677 | -@media (min-width: 768px) { | |
| 1678 | - .container { | |
| 1679 | - max-width: 720px; | |
| 1680 | - } | |
| 1681 | -} | |
| 1682 | -@media (min-width: 992px) { | |
| 1683 | - .container { | |
| 1684 | - max-width: 960px; | |
| 1685 | - } | |
| 1686 | -} | |
| 1687 | -@media (min-width: 1200px) { | |
| 1688 | - .container { | |
| 1689 | - max-width: 1170px; | |
| 1690 | - } | |
| 1691 | -} | |
| 1692 | -@media (min-width: 1441px) { | |
| 1693 | - .container { | |
| 1694 | - max-width: 1170px; | |
| 1695 | - } | |
| 1696 | -} | |
| 1697 | - | |
| 1698 | -.container-fluid { | |
| 1699 | - width: 100%; | |
| 1700 | - padding-right: 15px; | |
| 1701 | - padding-left: 15px; | |
| 1702 | - margin-right: auto; | |
| 1703 | - margin-left: auto; | |
| 1704 | -} | |
| 1705 | - | |
| 1706 | -.row { | |
| 1707 | - display: flex; | |
| 1708 | - flex-wrap: wrap; | |
| 1709 | - margin-right: -15px; | |
| 1710 | - margin-left: -15px; | |
| 1711 | -} | |
| 1712 | - | |
| 1713 | -.no-gutters { | |
| 1714 | - margin-right: 0; | |
| 1715 | - margin-left: 0; | |
| 1716 | -} | |
| 1717 | -.no-gutters > .col, | |
| 1718 | -.no-gutters > [class*=col-] { | |
| 1719 | - padding-right: 0; | |
| 1720 | - padding-left: 0; | |
| 1721 | -} | |
| 1722 | - | |
| 1723 | -html, body { | |
| 1724 | - height: auto !important; | |
| 1725 | -} | |
| 1726 | - | |
| 1727 | -body.bbpc-forum-ui { | |
| 1728 | - background: radial-gradient(80.99% 100% at 50% 0%, #00FF0A 0%, #36008E 100%), radial-gradient(50% 123.47% at 50% 50%, #EFE7C8 0%, #36008E 100%), linear-gradient(301.28deg, #FF006B 0%, #48DD9E 100%), linear-gradient(294.84deg, #5A60E4 0%, #D30000 100%), linear-gradient(52.29deg, #000000 0%, #00FF85 100%), radial-gradient(100% 138.69% at 100% 0%, #0007A5 0%, #FF7A00 100%), radial-gradient(70.41% 100% at 50% 0%, #D5B300 0%, #2200AA 100%); | |
| 1729 | - background-blend-mode: screen, screen, lighten, overlay, lighten, difference, normal; | |
| 1730 | -} | |
| 1731 | - | |
| 1732 | -/*----------------------------------------*/ | |
| 1733 | -/* 03. Sidebar Area | |
| 1734 | -/*----------------------------------------*/ | |
| 1735 | -.tab-container { | |
| 1736 | - display: flex; | |
| 1737 | -} | |
| 1738 | - | |
| 1739 | -.tab-menu { | |
| 1740 | - position: relative; | |
| 1741 | - background: #000000; | |
| 1742 | - background: -moz-linear-gradient(to right, #000000 0%, #0a1852 100%); | |
| 1743 | - background: -webkit-linear-gradient(to right, #000000 0%, #0a1852 100%); | |
| 1744 | - background: linear-gradient(to right, #000000 0%, #0a1852 100%); | |
| 1745 | - flex: 0 0 auto; | |
| 1746 | - width: auto; | |
| 1747 | -} | |
| 1748 | -.tab-menu.short { | |
| 1749 | - height: 100vh; | |
| 1750 | -} | |
| 1751 | -@media (max-width: 1680px) { | |
| 1752 | - .tab-menu { | |
| 1753 | - width: 30%; | |
| 1754 | - } | |
| 1755 | -} | |
| 1756 | -.tab-menu .tab-menu-left-layer { | |
| 1757 | - position: absolute; | |
| 1758 | - top: 0; | |
| 1759 | - left: 0; | |
| 1760 | - width: 80px; | |
| 1761 | - height: 100%; | |
| 1762 | - -webkit-transition: 0.3s ease-out; | |
| 1763 | - transition: 0.3s ease-out; | |
| 1764 | - background: rgba(143, 143, 143, 0.3); | |
| 1765 | -} | |
| 1766 | - | |
| 1767 | -.easydocs-tab { | |
| 1768 | - display: none; | |
| 1769 | -} | |
| 1770 | -.easydocs-tab.tab-active { | |
| 1771 | - display: block; | |
| 1772 | -} | |
| 1773 | - | |
| 1774 | -.easydocs-navitem { | |
| 1775 | - display: flex; | |
| 1776 | - align-items: center; | |
| 1777 | - justify-content: space-between; | |
| 1778 | - padding: 12px 30px 12px 15px; | |
| 1779 | - margin-bottom: 5px; | |
| 1780 | - cursor: pointer; | |
| 1781 | - -webkit-transition: 0.3s ease-out; | |
| 1782 | - transition: 0.3s ease-out; | |
| 1783 | - position: relative; | |
| 1784 | - border-left: 5px solid transparent; | |
| 1785 | -} | |
| 1786 | -@media (max-width: 1680px) { | |
| 1787 | - .easydocs-navitem { | |
| 1788 | - padding: 13px 25px 13px 20px; | |
| 1789 | - } | |
| 1790 | -} | |
| 1791 | -.easydocs-navitem .link-wrapper { | |
| 1792 | - display: flex; | |
| 1793 | - align-items: center; | |
| 1794 | - justify-content: end; | |
| 1795 | - width: 110px; | |
| 1796 | -} | |
| 1797 | -.easydocs-navitem.is-active { | |
| 1798 | - border-left-color: #b88eff; | |
| 1799 | - background: rgba(159, 162, 180, 0.2); | |
| 1800 | - --title-opacity: 1; | |
| 1801 | - --total-page-opacity: 1; | |
| 1802 | -} | |
| 1803 | -.easydocs-navitem.is-active::before { | |
| 1804 | - content: ""; | |
| 1805 | - right: 0; | |
| 1806 | - position: absolute; | |
| 1807 | - width: 0; | |
| 1808 | - height: 0; | |
| 1809 | - border-style: solid; | |
| 1810 | - border-width: 7px 10px 7px 0; | |
| 1811 | - border-color: transparent var(--clr-white) transparent transparent; | |
| 1812 | - display: block; | |
| 1813 | -} | |
| 1814 | -.easydocs-navitem.is-active .total-page { | |
| 1815 | - display: none; | |
| 1816 | -} | |
| 1817 | -.easydocs-navitem.is-active .link { | |
| 1818 | - display: flex; | |
| 1819 | -} | |
| 1820 | -.easydocs-navitem .title { | |
| 1821 | - display: flex; | |
| 1822 | - align-items: center; | |
| 1823 | - gap: 20px; | |
| 1824 | - -webkit-transition: 0.3s ease-out; | |
| 1825 | - transition: 0.3s ease-out; | |
| 1826 | - text-decoration: none; | |
| 1827 | - font-size: var(--fs-16); | |
| 1828 | - font-weight: 500; | |
| 1829 | - color: var(--clr-white); | |
| 1830 | - opacity: var(--title-opacity, 0.7); | |
| 1831 | -} | |
| 1832 | -.easydocs-navitem .title .featured-image { | |
| 1833 | - background: #fff; | |
| 1834 | - width: 40px; | |
| 1835 | - height: 40px; | |
| 1836 | - padding: 5px; | |
| 1837 | - border-radius: 7px; | |
| 1838 | - display: flex; | |
| 1839 | - align-items: center; | |
| 1840 | - justify-content: center; | |
| 1841 | -} | |
| 1842 | -.easydocs-navitem .title .featured-image img { | |
| 1843 | - width: 100%; | |
| 1844 | - height: auto; | |
| 1845 | -} | |
| 1846 | -.easydocs-navitem .title .featured-image span.dashicons { | |
| 1847 | - width: 32px; | |
| 1848 | - color: #000; | |
| 1849 | -} | |
| 1850 | -.easydocs-navitem .title span.easydocs-forums-title { | |
| 1851 | - padding-left: 20px; | |
| 1852 | -} | |
| 1853 | -.easydocs-navitem .total-page { | |
| 1854 | - font-size: var(--fs-12); | |
| 1855 | - color: var(--clr-white); | |
| 1856 | - opacity: var(--total-page-opacity, 0.5); | |
| 1857 | - -webkit-transition: 0.3s ease-out; | |
| 1858 | - transition: 0.3s ease-out; | |
| 1859 | - position: absolute; | |
| 1860 | - right: 30px; | |
| 1861 | -} | |
| 1862 | -.easydocs-navitem:hover { | |
| 1863 | - background: rgba(159, 162, 180, 0.2); | |
| 1864 | - --title-opacity: 1; | |
| 1865 | - --total-page-opacity: 1; | |
| 1866 | -} | |
| 1867 | -.easydocs-navitem:hover .total-page { | |
| 1868 | - display: none; | |
| 1869 | -} | |
| 1870 | -.easydocs-navitem:hover .link { | |
| 1871 | - display: flex; | |
| 1872 | -} | |
| 1873 | -.easydocs-navitem:hover .link a { | |
| 1874 | - padding-left: 2px; | |
| 1875 | - padding-right: 2px; | |
| 1876 | -} | |
| 1877 | - | |
| 1878 | -.link { | |
| 1879 | - align-items: center; | |
| 1880 | - gap: 0.325rem; | |
| 1881 | - display: none; | |
| 1882 | - -webkit-transition: 0.3s ease-out; | |
| 1883 | - transition: 0.3s ease-out; | |
| 1884 | -} | |
| 1885 | -.link a { | |
| 1886 | - text-decoration: none; | |
| 1887 | -} | |
| 1888 | -.link a .dashicons { | |
| 1889 | - color: var(--black_200); | |
| 1890 | - font-size: 18px; | |
| 1891 | - padding-top: 2px; | |
| 1892 | -} | |
| 1893 | -.link a .dashicons:hover { | |
| 1894 | - color: #fff; | |
| 1895 | -} | |
| 1896 | -.link a.st-pro-notice .dashicons { | |
| 1897 | - color: #f1bd6c; | |
| 1898 | -} | |
| 1899 | -.link:hover svg { | |
| 1900 | - color: #fff; | |
| 1901 | - fill-color: #fff; | |
| 1902 | -} | |
| 1903 | - | |
| 1904 | -.easydocs-tab-content { | |
| 1905 | - flex: 1; | |
| 1906 | - width: auto; | |
| 1907 | - padding: 0 40px 40px 40px; | |
| 1908 | -} | |
| 1909 | -@media (max-width: 1680px) { | |
| 1910 | - .easydocs-tab-content { | |
| 1911 | - width: 70%; | |
| 1912 | - } | |
| 1913 | -} | |
| 1914 | -@media (max-width: 1440px) { | |
| 1915 | - .easydocs-tab-content { | |
| 1916 | - width: 70%; | |
| 1917 | - padding: 20px; | |
| 1918 | - } | |
| 1919 | -} | |
| 1920 | -.easydocs-tab-content .button { | |
| 1921 | - padding: 6px 25px; | |
| 1922 | -} | |
| 1923 | - | |
| 1924 | -.easydocs-filter-container { | |
| 1925 | - background: var(--clr-white); | |
| 1926 | - padding: var(--gutter-15) var(--gutter-30); | |
| 1927 | - border-radius: 0.375rem; | |
| 1928 | - display: flex; | |
| 1929 | - align-items: center; | |
| 1930 | - justify-content: space-between; | |
| 1931 | - background: linear-gradient(125.95deg, #C700BF 10.95%, #7DA900 100%), linear-gradient(341.1deg, #00C2FF 7.52%, #4E00B1 77.98%), linear-gradient(222.34deg, #A90000 12.99%, #00FFE0 87.21%), linear-gradient(130.22deg, #8FA600 18.02%, #5A31FF 100%); | |
| 1932 | - background-blend-mode: screen, color-dodge, color-dodge, normal; | |
| 1933 | - padding-left: 16px; | |
| 1934 | -} | |
| 1935 | -@media (max-width: 1440px) { | |
| 1936 | - .easydocs-filter-container { | |
| 1937 | - padding: 10px 20px; | |
| 1938 | - } | |
| 1939 | -} | |
| 1940 | - | |
| 1941 | -.single-item-filter { | |
| 1942 | - display: flex; | |
| 1943 | - align-items: center; | |
| 1944 | - gap: 5px; | |
| 1945 | -} | |
| 1946 | -.single-item-filter.all-available li { | |
| 1947 | - padding: 5px 15px; | |
| 1948 | -} | |
| 1949 | -.single-item-filter .easydocs-btn { | |
| 1950 | - display: flex; | |
| 1951 | - align-items: center; | |
| 1952 | - justify-content: center; | |
| 1953 | - font-size: 12px; | |
| 1954 | - gap: 0.3125rem; | |
| 1955 | - --btn-fs: var(--fs-14); | |
| 1956 | - transition: all 0.3s; | |
| 1957 | - border-radius: 15px; | |
| 1958 | - padding: 5px 25px; | |
| 1959 | - cursor: pointer; | |
| 1960 | - margin: 0; | |
| 1961 | -} | |
| 1962 | -.single-item-filter .easydocs-btn:hover { | |
| 1963 | - background-color: rgba(0, 0, 0, 0.1); | |
| 1964 | -} | |
| 1965 | -.single-item-filter .easydocs-btn.is-active { | |
| 1966 | - background-color: rgba(0, 0, 0, 0.8); | |
| 1967 | - color: #f1f1f1; | |
| 1968 | -} | |
| 1969 | -.single-item-filter .easydocs-btn.is-active img { | |
| 1970 | - filter: brightness(0) invert(1); | |
| 1971 | -} | |
| 1972 | -.single-item-filter .easydocs-btn.easydocs-btn-black-light { | |
| 1973 | - --btn-icon: #0D0E2B; | |
| 1974 | -} | |
| 1975 | -.single-item-filter .easydocs-btn.easydocs-btn-black-light svg { | |
| 1976 | - fill: #0D0E2B; | |
| 1977 | -} | |
| 1978 | -.single-item-filter .easydocs-btn.easydocs-btn-black-light.mixitup-control-active { | |
| 1979 | - --btn-bg: #0D0E2B; | |
| 1980 | - --btn-clr: var(--clr-white); | |
| 1981 | - --btn-icon: var(--clr-white); | |
| 1982 | -} | |
| 1983 | -.single-item-filter .easydocs-btn.easydocs-btn-black-light.mixitup-control-active svg { | |
| 1984 | - fill: #ffffff; | |
| 1985 | -} | |
| 1986 | -.single-item-filter .easydocs-btn.easydocs-btn-green-light { | |
| 1987 | - --btn-icon: #2DB22D; | |
| 1988 | -} | |
| 1989 | -.single-item-filter .easydocs-btn.easydocs-btn-green-light svg { | |
| 1990 | - fill: #2DB22D; | |
| 1991 | -} | |
| 1992 | -.single-item-filter .easydocs-btn.easydocs-btn-green-light.mixitup-control-active { | |
| 1993 | - --btn-bg: #2DB22D; | |
| 1994 | - --btn-clr: var(--clr-white); | |
| 1995 | - --btn-icon: var(--clr-white); | |
| 1996 | -} | |
| 1997 | -.single-item-filter .easydocs-btn.easydocs-btn-green-light.mixitup-control-active svg { | |
| 1998 | - fill: #ffffff; | |
| 1999 | -} | |
| 2000 | -.single-item-filter .easydocs-btn.easydocs-btn-blue-light { | |
| 2001 | - --btn-icon: #0275D8; | |
| 2002 | -} | |
| 2003 | -.single-item-filter .easydocs-btn.easydocs-btn-blue-light svg { | |
| 2004 | - fill: #0275D8; | |
| 2005 | -} | |
| 2006 | -.single-item-filter .easydocs-btn.easydocs-btn-blue-light.mixitup-control-active { | |
| 2007 | - --btn-bg: #0275D8; | |
| 2008 | - --btn-clr: var(--clr-white); | |
| 2009 | - --btn-icon: var(--clr-white); | |
| 2010 | -} | |
| 2011 | -.single-item-filter .easydocs-btn.easydocs-btn-blue-light.mixitup-control-active svg { | |
| 2012 | - fill: #fff; | |
| 2013 | -} | |
| 2014 | -.single-item-filter .easydocs-btn.easydocs-btn-orange-light { | |
| 2015 | - --btn-icon: #CC8033; | |
| 2016 | -} | |
| 2017 | -.single-item-filter .easydocs-btn.easydocs-btn-orange-light svg { | |
| 2018 | - fill: #CC8033; | |
| 2019 | -} | |
| 2020 | -.single-item-filter .easydocs-btn.easydocs-btn-orange-light.mixitup-control-active { | |
| 2021 | - --btn-bg: #CC8033; | |
| 2022 | - --btn-clr: var(--clr-white); | |
| 2023 | - --btn-icon: var(--clr-white); | |
| 2024 | -} | |
| 2025 | -.single-item-filter .easydocs-btn.easydocs-btn-orange-light.mixitup-control-active svg { | |
| 2026 | - fill: #fff; | |
| 2027 | -} | |
| 2028 | -.single-item-filter .easydocs-btn.easydocs-btn-gray-light { | |
| 2029 | - --btn-icon: #424242; | |
| 2030 | -} | |
| 2031 | -.single-item-filter .easydocs-btn.easydocs-btn-gray-light.mixitup-control-active { | |
| 2032 | - --btn-bg: #424242; | |
| 2033 | - --btn-clr: var(--clr-white); | |
| 2034 | - --btn-icon: var(--clr-white); | |
| 2035 | -} | |
| 2036 | - | |
| 2037 | -.single-grid-container { | |
| 2038 | - display: flex; | |
| 2039 | - align-items: center; | |
| 2040 | - border: 1px solid #EDEAE9; | |
| 2041 | - border-radius: 0.375rem; | |
| 2042 | - --grid-icon: #9199A1; | |
| 2043 | -} | |
| 2044 | -.single-grid-container a { | |
| 2045 | - text-decoration: none; | |
| 2046 | - padding: 0.3rem 0.5rem 0.5rem; | |
| 2047 | - height: 1.875rem; | |
| 2048 | -} | |
| 2049 | -.single-grid-container a:first-child { | |
| 2050 | - border-right: 1px solid #EDEAE9; | |
| 2051 | -} | |
| 2052 | -.single-grid-container .is-active { | |
| 2053 | - background: rgba(37, 39, 51, 0.05); | |
| 2054 | - --grid-icon: var(--clr-blue); | |
| 2055 | -} | |
| 2056 | - | |
| 2057 | -@media screen and (min-width: 1200px) { | |
| 2058 | - .container { | |
| 2059 | - max-width: 1170px; | |
| 2060 | - } | |
| 2061 | -} | |
| 2062 | -#wpcontent { | |
| 2063 | - height: 100vh; | |
| 2064 | -} | |
| 2065 | - | |
| 2066 | -/*# sourceMappingURL=admin-ui-style.css.map */ | |
| 1 | +@charset "UTF-8"; | |
| 2 | +/** | |
| 3 | + * Convert font-size from px to rem with px fallback | |
| 4 | + * | |
| 5 | + * @param $size - the value in pixel you want to convert | |
| 6 | + * | |
| 7 | + * e.g. p font-size: fs-rem(12px); | |
| 8 | + * e.g. p {@include fontSize(12px);} | |
| 9 | + * | |
| 10 | + */ | |
| 11 | +/*-------------------------------------- | |
| 12 | + - Base | |
| 13 | +----------------------------------------*/ | |
| 14 | +/** | |
| 15 | + * Convert font-size from px to rem with px fallback | |
| 16 | + * | |
| 17 | + * @param $size - the value in pixel you want to convert | |
| 18 | + * | |
| 19 | + * e.g. p {@include fontSize(12px);} | |
| 20 | + * | |
| 21 | + */ | |
| 22 | +@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"); | |
| 23 | +.col { | |
| 24 | + position: relative; | |
| 25 | + width: 100%; | |
| 26 | + padding-right: 15px; | |
| 27 | + padding-left: 15px; | |
| 28 | +} | |
| 29 | + | |
| 30 | +/*-------------------------------------- | |
| 31 | + - Utilities | |
| 32 | +----------------------------------------*/ | |
| 33 | +:root { | |
| 34 | + --container-width: 100%; | |
| 35 | + --container-sm: 33.75rem; | |
| 36 | + --container-md: 45rem; | |
| 37 | + --container-lg: 60rem; | |
| 38 | + --container-xl: 71.25rem; | |
| 39 | + --container-xxl: 90rem; | |
| 40 | + --container-fluid: 100%; | |
| 41 | + --gutter-x: 1.875rem; | |
| 42 | + --gutter-3: 0.125rem; | |
| 43 | + --gutter-5: 0.225rem; | |
| 44 | + --gutter-10: 0.625rem; | |
| 45 | + --gutter-15: 0.9375rem; | |
| 46 | + --gutter-20: 1.25rem; | |
| 47 | + --gutter-25: 1.5625rem; | |
| 48 | + --gutter-30: 1.875rem; | |
| 49 | + --gutter-32: 2rem; | |
| 50 | + --gutter-35: 2.1875rem; | |
| 51 | + --gutter-40: 2.5rem; | |
| 52 | + --gutter-45: 2.8125rem; | |
| 53 | + --gutter-50: 3.125rem; | |
| 54 | + --ff-roboto: "Roboto", sans-serif; | |
| 55 | + --fw-100: 100; | |
| 56 | + --fw-200: 200; | |
| 57 | + --fw-300: 300; | |
| 58 | + --fw-400: 400; | |
| 59 | + --fw-500: 500; | |
| 60 | + --fw-600: 600; | |
| 61 | + --fw-700: 700; | |
| 62 | + --fw-800: 800; | |
| 63 | + --fw-900: 900; | |
| 64 | + --fs-12: 0.75rem; | |
| 65 | + --fs-13: 0.8125rem; | |
| 66 | + --fs-14: 0.875rem; | |
| 67 | + --fs-15: 0.9375rem; | |
| 68 | + --fs-16: 1rem; | |
| 69 | + --fs-17: 1.0625rem; | |
| 70 | + --fs-18: 1.125rem; | |
| 71 | + --fs-20: 1.25rem; | |
| 72 | + --fs-21: 1.3125rem; | |
| 73 | + --fs-24: 1.5rem; | |
| 74 | + --fs-25: 1.5625rem; | |
| 75 | + --fs-28: 1.75rem; | |
| 76 | + --fs-30: 1.875rem; | |
| 77 | + --fs-32: 2rem; | |
| 78 | + --fs-35: 2.1875rem; | |
| 79 | + --fs-40: 2.5rem; | |
| 80 | + --fs-45: 2.8125rem; | |
| 81 | + --hr-bg: var(--clr-black); | |
| 82 | + --hr-width: 100%; | |
| 83 | + --hr-height: 0.3125rem; | |
| 84 | + --hr-gutter-y: 1.875rem; | |
| 85 | + --hr-gutter-x: 0; | |
| 86 | + --hr-padding: 0; | |
| 87 | + --hr-radius: 0; | |
| 88 | + --m: 0; | |
| 89 | + --mt: 0; | |
| 90 | + --mr: 0; | |
| 91 | + --mb: 0; | |
| 92 | + --ml: 0; | |
| 93 | + --mx: 0; | |
| 94 | + --my: 0; | |
| 95 | + --m-auto: auto; | |
| 96 | + --my-auto: auto; | |
| 97 | + --mx-auto: auto; | |
| 98 | + --p: 0; | |
| 99 | + --pt: 0; | |
| 100 | + --pr: 0; | |
| 101 | + --pb: 0; | |
| 102 | + --pl: 0; | |
| 103 | + --px: 0; | |
| 104 | + --py: 0; | |
| 105 | + --p-auto: auto; | |
| 106 | + --py-auto: auto; | |
| 107 | + --px-auto: auto; | |
| 108 | + --border-width: 0.0625rem; | |
| 109 | + --border-style: solid; | |
| 110 | + --border-clr: transparent; | |
| 111 | + --border: var(--border-width) var(--border-style) var(--border-clr); | |
| 112 | + --border-t: var(--border-width) var(--border-style) var(--border-clr); | |
| 113 | + --border-r: var(--border-width) var(--border-style) var(--border-clr); | |
| 114 | + --border-b: var(--border-width) var(--border-style) var(--border-clr); | |
| 115 | + --border-l: var(--border-width) var(--border-style) var(--border-clr); | |
| 116 | + --border-x: var(--border-width) var(--border-style) var(--border-clr); | |
| 117 | + --border-y: var(--border-width) var(--border-style) var(--border-clr); | |
| 118 | + --radius: 0; | |
| 119 | + --radius-t: 0; | |
| 120 | + --radius-r: 0; | |
| 121 | + --radius-b: 0; | |
| 122 | + --radius-l: 0; | |
| 123 | + --radius-full: 50%; | |
| 124 | + --btn-bg: transparent; | |
| 125 | + --btn-clr: inherit; | |
| 126 | + --btn-ff: var(--ff-roboto); | |
| 127 | + --btn-fs: var(--fs-15); | |
| 128 | + --btn-py: 0.625rem; | |
| 129 | + --btn-px: 1.125rem; | |
| 130 | + --btn-my: var(--my); | |
| 131 | + --btn-mx: var(--mx); | |
| 132 | + --clr-black: #000; | |
| 133 | + --clr-black-100: #0D0E2B; | |
| 134 | + --clr-dark: #252733; | |
| 135 | + --clr-text: #575766; | |
| 136 | + --clr-text-light: #9199A1; | |
| 137 | + --clr-white: #fff; | |
| 138 | + --frmx_brand_color: #6a28ea; | |
| 139 | + --clr-orange: #ff5a46; | |
| 140 | + --clr-yellow: #FFE132; | |
| 141 | + --black_50: #ebebeb; | |
| 142 | + --black_100: #d6d9dc; | |
| 143 | + --black_150: #c8ccd0; | |
| 144 | + --black_200: #bbc0c4; | |
| 145 | + --black_300: #9fa6ad; | |
| 146 | + --black_350: #9199a1; | |
| 147 | + --black_400: #848d95; | |
| 148 | + --black_500: #6a737c; | |
| 149 | + --black_600: #535a60; | |
| 150 | + --black_700: #3c4146; | |
| 151 | + --black_750: #2f3337; | |
| 152 | + --black_800: #242729; | |
| 153 | + --black_900: #0c0d0e; | |
| 154 | +} | |
| 155 | + | |
| 156 | +/* Box sizing rules */ | |
| 157 | +*, | |
| 158 | +*::before, | |
| 159 | +*::after { | |
| 160 | + box-sizing: border-box; | |
| 161 | +} | |
| 162 | + | |
| 163 | +/* Remove default margin */ | |
| 164 | +body, | |
| 165 | +h1, | |
| 166 | +h2, | |
| 167 | +h3, | |
| 168 | +h4, | |
| 169 | +p, | |
| 170 | +figure, | |
| 171 | +blockquote, | |
| 172 | +dl, | |
| 173 | +dd { | |
| 174 | + margin: 0; | |
| 175 | +} | |
| 176 | + | |
| 177 | +/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */ | |
| 178 | +ul[role=list], | |
| 179 | +ol[role=list] { | |
| 180 | + list-style: none; | |
| 181 | +} | |
| 182 | + | |
| 183 | +/* Set core root defaults */ | |
| 184 | +html:focus-within { | |
| 185 | + scroll-behavior: smooth; | |
| 186 | +} | |
| 187 | + | |
| 188 | +/* Set core body defaults */ | |
| 189 | +body { | |
| 190 | + font-family: var(--ff-roboto); | |
| 191 | + font-weight: 400; | |
| 192 | + font-size: var(--fs-15); | |
| 193 | + line-height: 1.5625rem; | |
| 194 | + text-rendering: optimizeSpeed; | |
| 195 | + color: var(--clr-black); | |
| 196 | +} | |
| 197 | + | |
| 198 | +/* A elements that don't have a class get default styles */ | |
| 199 | +a:not([class]) { | |
| 200 | + text-decoration-skip-ink: auto; | |
| 201 | +} | |
| 202 | + | |
| 203 | +/* Make images easier to work with */ | |
| 204 | +img, | |
| 205 | +picture { | |
| 206 | + max-width: 100%; | |
| 207 | + display: block; | |
| 208 | +} | |
| 209 | + | |
| 210 | +/* Inherit fonts for inputs and buttons */ | |
| 211 | +input, | |
| 212 | +button, | |
| 213 | +textarea, | |
| 214 | +select { | |
| 215 | + font: inherit; | |
| 216 | +} | |
| 217 | + | |
| 218 | +button { | |
| 219 | + border: none; | |
| 220 | + background: transparent; | |
| 221 | + outline: none; | |
| 222 | + cursor: pointer; | |
| 223 | +} | |
| 224 | + | |
| 225 | +.hr { | |
| 226 | + background: var(--clr-black-200); | |
| 227 | + width: 100%; | |
| 228 | + height: 1px; | |
| 229 | + margin: 50px 0; | |
| 230 | + padding: 0; | |
| 231 | + border: none; | |
| 232 | + border-radius: 0; | |
| 233 | + opacity: 1; | |
| 234 | +} | |
| 235 | + | |
| 236 | +/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */ | |
| 237 | +@media (prefers-reduced-motion: reduce) { | |
| 238 | + html:focus-within { | |
| 239 | + scroll-behavior: auto; | |
| 240 | + } | |
| 241 | + *, | |
| 242 | + *::before, | |
| 243 | + *::after { | |
| 244 | + animation-duration: 0.01ms !important; | |
| 245 | + animation-iteration-count: 1 !important; | |
| 246 | + transition-duration: 0.01ms !important; | |
| 247 | + scroll-behavior: auto !important; | |
| 248 | + } | |
| 249 | +} | |
| 250 | +.fill-current { | |
| 251 | + fill: currentColor; | |
| 252 | +} | |
| 253 | + | |
| 254 | +.scrollToTop { | |
| 255 | + width: 30px; | |
| 256 | + height: 30px; | |
| 257 | + line-height: 30px; | |
| 258 | + text-align: center; | |
| 259 | + color: var(--frmx_brand_color); | |
| 260 | + font-size: 25px; | |
| 261 | + background: transparent; | |
| 262 | + position: fixed; | |
| 263 | + right: 20px; | |
| 264 | + bottom: 50px; | |
| 265 | + display: none; | |
| 266 | + z-index: 99999; | |
| 267 | + border-radius: 50%; | |
| 268 | +} | |
| 269 | +@media screen and (min-width: 576px) { | |
| 270 | + .scrollToTop { | |
| 271 | + width: 50px; | |
| 272 | + height: 50px; | |
| 273 | + line-height: 50px; | |
| 274 | + } | |
| 275 | +} | |
| 276 | +.scrollToTop:hover { | |
| 277 | + color: var(--frmx_brand_color); | |
| 278 | +} | |
| 279 | + | |
| 280 | +.no-scroll-y { | |
| 281 | + overflow-y: hidden; | |
| 282 | +} | |
| 283 | + | |
| 284 | +.text-blue { | |
| 285 | + color: var(--frmx_brand_color); | |
| 286 | +} | |
| 287 | + | |
| 288 | +.green { | |
| 289 | + color: #27ae60; | |
| 290 | +} | |
| 291 | + | |
| 292 | +.red { | |
| 293 | + color: #e74c3c; | |
| 294 | +} | |
| 295 | + | |
| 296 | +h1, | |
| 297 | +h2, | |
| 298 | +h3, | |
| 299 | +h4, | |
| 300 | +h5, | |
| 301 | +h6 { | |
| 302 | + font-family: var(--ff-roboto); | |
| 303 | + color: #14183E; | |
| 304 | + line-height: 1.4; | |
| 305 | +} | |
| 306 | + | |
| 307 | +h1 a, | |
| 308 | +h2 a, | |
| 309 | +h3 a, | |
| 310 | +h4 a, | |
| 311 | +h5 a, | |
| 312 | +h6 a { | |
| 313 | + color: inherit; | |
| 314 | +} | |
| 315 | + | |
| 316 | +h1 { | |
| 317 | + font-size: 2rem; | |
| 318 | +} | |
| 319 | +@media screen and (min-width: 20rem) { | |
| 320 | + h1 { | |
| 321 | + font-size: calc(2rem + 1.75 * (100vw - 20rem) / 55); | |
| 322 | + } | |
| 323 | +} | |
| 324 | +@media screen and (min-width: 75rem) { | |
| 325 | + h1 { | |
| 326 | + font-size: 3.75rem; | |
| 327 | + } | |
| 328 | +} | |
| 329 | + | |
| 330 | +h2 { | |
| 331 | + font-size: 2rem; | |
| 332 | +} | |
| 333 | +@media screen and (min-width: 20rem) { | |
| 334 | + h2 { | |
| 335 | + font-size: calc(2rem + 1 * (100vw - 20rem) / 55); | |
| 336 | + } | |
| 337 | +} | |
| 338 | +@media screen and (min-width: 75rem) { | |
| 339 | + h2 { | |
| 340 | + font-size: 3rem; | |
| 341 | + } | |
| 342 | +} | |
| 343 | + | |
| 344 | +h3 { | |
| 345 | + font-size: 1.375rem; | |
| 346 | +} | |
| 347 | +@media screen and (min-width: 20rem) { | |
| 348 | + h3 { | |
| 349 | + font-size: calc(1.375rem + 0.125 * (100vw - 20rem) / 55); | |
| 350 | + } | |
| 351 | +} | |
| 352 | +@media screen and (min-width: 75rem) { | |
| 353 | + h3 { | |
| 354 | + font-size: 1.5rem; | |
| 355 | + } | |
| 356 | +} | |
| 357 | + | |
| 358 | +h4 { | |
| 359 | + font-size: 1rem; | |
| 360 | +} | |
| 361 | +@media screen and (min-width: 20rem) { | |
| 362 | + h4 { | |
| 363 | + font-size: calc(1rem + 0.125 * (100vw - 20rem) / 55); | |
| 364 | + } | |
| 365 | +} | |
| 366 | +@media screen and (min-width: 75rem) { | |
| 367 | + h4 { | |
| 368 | + font-size: 1.125rem; | |
| 369 | + } | |
| 370 | +} | |
| 371 | + | |
| 372 | +ul { | |
| 373 | + margin: 0; | |
| 374 | + padding: 0; | |
| 375 | +} | |
| 376 | + | |
| 377 | +li { | |
| 378 | + list-style: none; | |
| 379 | +} | |
| 380 | + | |
| 381 | +hr { | |
| 382 | + background: #c2cfff; | |
| 383 | + width: 50px; | |
| 384 | + height: 3px; | |
| 385 | + margin: 35px 0; | |
| 386 | + padding: 0; | |
| 387 | + border: none; | |
| 388 | +} | |
| 389 | +@media screen and (min-width: 768px) { | |
| 390 | + hr { | |
| 391 | + margin-top: 25px; | |
| 392 | + margin-bottom: 25px; | |
| 393 | + } | |
| 394 | +} | |
| 395 | + | |
| 396 | +p { | |
| 397 | + margin: 0; | |
| 398 | +} | |
| 399 | + | |
| 400 | +label { | |
| 401 | + color: var(--clr-black); | |
| 402 | + cursor: pointer; | |
| 403 | + font-size: 14px; | |
| 404 | + font-weight: 400; | |
| 405 | +} | |
| 406 | + | |
| 407 | +/*Home 3 Default Font Family*/ | |
| 408 | +.home-3 { | |
| 409 | + font-size: var(--fs-15); | |
| 410 | + font-weight: var(--fw-400); | |
| 411 | + color: var(--clr-black); | |
| 412 | + font-family: var(--font-quicksand); | |
| 413 | +} | |
| 414 | + | |
| 415 | +/*Home 3 Default Font Family*/ | |
| 416 | +.home-4 { | |
| 417 | + font-size: var(--fs-15); | |
| 418 | + font-weight: var(--fw-400); | |
| 419 | + font-family: var(--font-arimo); | |
| 420 | +} | |
| 421 | + | |
| 422 | +.alignment-center { | |
| 423 | + align-items: center; | |
| 424 | +} | |
| 425 | + | |
| 426 | +.justify-content-between { | |
| 427 | + justify-content: space-between; | |
| 428 | +} | |
| 429 | + | |
| 430 | +.justify-content-end { | |
| 431 | + justify-content: end; | |
| 432 | +} | |
| 433 | + | |
| 434 | +/*-------------------------------------- | |
| 435 | + - Color | |
| 436 | +----------------------------------------*/ | |
| 437 | +.color { | |
| 438 | + color: var(--clr-black); | |
| 439 | +} | |
| 440 | + | |
| 441 | +.text-black { | |
| 442 | + color: var(--clr-black) !important; | |
| 443 | +} | |
| 444 | + | |
| 445 | +.bg-black { | |
| 446 | + background: var(--clr-black); | |
| 447 | +} | |
| 448 | + | |
| 449 | +.text-white { | |
| 450 | + color: var(--clr-white) !important; | |
| 451 | +} | |
| 452 | + | |
| 453 | +.bg-white { | |
| 454 | + background: var(--clr-white); | |
| 455 | +} | |
| 456 | + | |
| 457 | +.d-block { | |
| 458 | + display: block; | |
| 459 | +} | |
| 460 | + | |
| 461 | +.d-inline-block { | |
| 462 | + display: inline-block; | |
| 463 | +} | |
| 464 | + | |
| 465 | +.d-grid { | |
| 466 | + display: grid; | |
| 467 | +} | |
| 468 | + | |
| 469 | +.d-flex { | |
| 470 | + display: flex; | |
| 471 | +} | |
| 472 | + | |
| 473 | +.flex-row { | |
| 474 | + flex-direction: row; | |
| 475 | +} | |
| 476 | + | |
| 477 | +.flex-reverse { | |
| 478 | + flex-direction: row-reverse; | |
| 479 | +} | |
| 480 | + | |
| 481 | +.flex-column { | |
| 482 | + flex-direction: column; | |
| 483 | +} | |
| 484 | + | |
| 485 | +.flex-column-reverse { | |
| 486 | + flex-direction: column-reverse; | |
| 487 | +} | |
| 488 | + | |
| 489 | +/*-- | |
| 490 | + - Font Famaly | |
| 491 | +-----------------------------------------*/ | |
| 492 | +/*-- | |
| 493 | + - Font weight | |
| 494 | +-----------------------------------------*/ | |
| 495 | +.font-regular { | |
| 496 | + font-weight: var(--fw-400); | |
| 497 | +} | |
| 498 | + | |
| 499 | +.font-medium { | |
| 500 | + font-weight: var(--fw-500); | |
| 501 | +} | |
| 502 | + | |
| 503 | +.font-semi-bold { | |
| 504 | + font-weight: var(--fw-600); | |
| 505 | +} | |
| 506 | + | |
| 507 | +.font-bold { | |
| 508 | + font-weight: var(--fw-700); | |
| 509 | +} | |
| 510 | + | |
| 511 | +.font-black { | |
| 512 | + font-weight: var(--fw-900); | |
| 513 | +} | |
| 514 | + | |
| 515 | +/*-- | |
| 516 | + - Font Size | |
| 517 | +-----------------------------------------*/ | |
| 518 | +/*-- | |
| 519 | + - Margin | |
| 520 | +-------------------------------------------*/ | |
| 521 | +.mt-n3 { | |
| 522 | + margin-top: -0.4375rem; | |
| 523 | +} | |
| 524 | + | |
| 525 | +.mt-n4 { | |
| 526 | + margin-top: -0.75rem; | |
| 527 | +} | |
| 528 | + | |
| 529 | +.m-auto { | |
| 530 | + margin: auto; | |
| 531 | +} | |
| 532 | + | |
| 533 | +.mx-auto { | |
| 534 | + margin-left: auto; | |
| 535 | + margin-right: auto; | |
| 536 | +} | |
| 537 | + | |
| 538 | +.mt-0 { | |
| 539 | + margin-top: 0; | |
| 540 | +} | |
| 541 | + | |
| 542 | +.mt-73 { | |
| 543 | + margin-top: 4.5625rem; | |
| 544 | +} | |
| 545 | + | |
| 546 | +.mb-8 { | |
| 547 | + margin-bottom: 2rem; | |
| 548 | +} | |
| 549 | + | |
| 550 | +.mr-1 { | |
| 551 | + margin-right: 0.25rem; | |
| 552 | +} | |
| 553 | + | |
| 554 | +@media (min-width: 768px) { | |
| 555 | + .mt-md-n4 { | |
| 556 | + margin-top: -0.75rem; | |
| 557 | + } | |
| 558 | +} | |
| 559 | + | |
| 560 | +.mt-40 { | |
| 561 | + margin-top: 40px; | |
| 562 | +} | |
| 563 | + | |
| 564 | +/*--- | |
| 565 | +-- Padding | |
| 566 | +-------------------------------------------*/ | |
| 567 | +/*----------------------------------------*/ | |
| 568 | +/* Component CSS | |
| 569 | +/*----------------------------------------*/ | |
| 570 | +.easydocs-accordion { | |
| 571 | + position: relative; | |
| 572 | + padding: 0; | |
| 573 | + list-style: none; | |
| 574 | + margin: 10px 0 20px; | |
| 575 | + background: var(--clr-white); | |
| 576 | + border-radius: 5px; | |
| 577 | + overflow: hidden; | |
| 578 | + border: 1px solid #edeae9; | |
| 579 | +} | |
| 580 | +.easydocs-accordion .acc_active .accordion-title { | |
| 581 | + border-bottom: 1px solid #edeae9; | |
| 582 | +} | |
| 583 | +.easydocs-accordion .acc_active .accordion-title::before { | |
| 584 | + transform: translateY(-50%) rotate(90deg); | |
| 585 | +} | |
| 586 | +.easydocs-accordion .ui-state-highlight { | |
| 587 | + height: 50px; | |
| 588 | + background: #f9f9f9; | |
| 589 | + border-top: 1px solid #afabac; | |
| 590 | + border-bottom: 1px solid #afabac; | |
| 591 | +} | |
| 592 | + | |
| 593 | +.easydocs-accordion-item { | |
| 594 | + width: 100%; | |
| 595 | + margin: 0; | |
| 596 | +} | |
| 597 | +.easydocs-accordion-item + .easydocs-accordion-item { | |
| 598 | + border-top: 1px solid #edeae9; | |
| 599 | +} | |
| 600 | +.easydocs-accordion-item.is-accordion-open:last-child .accordion-title { | |
| 601 | + border-bottom-left-radius: 0; | |
| 602 | + border-bottom-right-radius: 0; | |
| 603 | +} | |
| 604 | +.easydocs-accordion-item.child-one .child-right-content { | |
| 605 | + align-items: center; | |
| 606 | +} | |
| 607 | +.easydocs-accordion-item.child-one .child-right-content .progress-text a { | |
| 608 | + font-size: 14px; | |
| 609 | + color: var(--clr-text-light); | |
| 610 | + margin-right: var(--gutter-30); | |
| 611 | + text-decoration: none; | |
| 612 | +} | |
| 613 | +.easydocs-accordion-item.child-one .accordion-title::before { | |
| 614 | + transform: translateY(-50%); | |
| 615 | +} | |
| 616 | +.easydocs-accordion-item.child-one.acc_active .accordion-title::before { | |
| 617 | + transform: translateY(-50%) rotate(90deg); | |
| 618 | +} | |
| 619 | +.easydocs-accordion-item.child-one a { | |
| 620 | + padding: 0; | |
| 621 | +} | |
| 622 | +.easydocs-accordion-item.child-one .accordion-title.has-child a.section-last-label { | |
| 623 | + margin-left: 19px; | |
| 624 | +} | |
| 625 | +.easydocs-accordion-item.child-one .accordion-title.has-child::before { | |
| 626 | + left: 52px; | |
| 627 | +} | |
| 628 | +.easydocs-accordion-item.child-one .nesting-accordion a.child-last-label { | |
| 629 | + margin: 10px 50px 10px 70px; | |
| 630 | +} | |
| 631 | + | |
| 632 | +.accordion-title { | |
| 633 | + position: relative; | |
| 634 | + background: #fff; | |
| 635 | + padding: 15px 30px 15px 30px; | |
| 636 | + cursor: pointer; | |
| 637 | +} | |
| 638 | +@media (max-width: 1440px) { | |
| 639 | + .accordion-title { | |
| 640 | + padding: 12px 20px 12px 34px; | |
| 641 | + } | |
| 642 | +} | |
| 643 | +.accordion-title.ez-section-title h4 { | |
| 644 | + font-weight: var(--fw-500); | |
| 645 | +} | |
| 646 | +@media (max-width: 1440px) { | |
| 647 | + .accordion-title.ez-section-title::before { | |
| 648 | + left: 20px; | |
| 649 | + } | |
| 650 | +} | |
| 651 | +.accordion-title.has-child::before { | |
| 652 | + content: ""; | |
| 653 | + top: 50%; | |
| 654 | + left: 32px; | |
| 655 | + position: absolute; | |
| 656 | + width: 0; | |
| 657 | + height: 0; | |
| 658 | + border-style: solid; | |
| 659 | + border-width: 5px 0 5px 6px; | |
| 660 | + border-color: transparent transparent transparent var(--clr-text); | |
| 661 | + display: block; | |
| 662 | + transform: translateY(-50%); | |
| 663 | + -webkit-transition: 0.3s ease-out; | |
| 664 | + transition: 0.3s ease-out; | |
| 665 | +} | |
| 666 | +@media (max-width: 1440px) { | |
| 667 | + .accordion-title.has-child::before { | |
| 668 | + left: 20px; | |
| 669 | + } | |
| 670 | +} | |
| 671 | +.accordion-title .count { | |
| 672 | + margin-left: 5px; | |
| 673 | + color: #fff; | |
| 674 | + background: var(--black_200); | |
| 675 | +} | |
| 676 | +.accordion-title ul.actions { | |
| 677 | + display: flex; | |
| 678 | +} | |
| 679 | +.accordion-title ul.actions li { | |
| 680 | + margin: 0; | |
| 681 | +} | |
| 682 | +.accordion-title:hover { | |
| 683 | + background: #f9f9f9; | |
| 684 | +} | |
| 685 | +.accordion-title:hover h4 { | |
| 686 | + color: var(--clr-dark); | |
| 687 | +} | |
| 688 | +.accordion-title:hover ul.actions { | |
| 689 | + display: flex; | |
| 690 | +} | |
| 691 | +.accordion-title:hover ul.actions li { | |
| 692 | + margin: 0; | |
| 693 | + line-height: normal; | |
| 694 | +} | |
| 695 | +.accordion-title { | |
| 696 | + display: flex; | |
| 697 | + align-items: center; | |
| 698 | + justify-content: space-between; | |
| 699 | +} | |
| 700 | +.accordion-title h4 { | |
| 701 | + font-size: var(--fs-14); | |
| 702 | + color: var(--clr-text); | |
| 703 | + display: flex; | |
| 704 | + align-items: center; | |
| 705 | + font-weight: normal; | |
| 706 | +} | |
| 707 | +.accordion-title h4 a { | |
| 708 | + text-decoration: none; | |
| 709 | +} | |
| 710 | +.accordion-title .accordion-category-icon { | |
| 711 | + width: 1.25rem; | |
| 712 | + height: 1.25rem; | |
| 713 | + line-height: 1.25rem; | |
| 714 | + border-radius: 50%; | |
| 715 | + text-align: center; | |
| 716 | + margin-left: 5px; | |
| 717 | +} | |
| 718 | +.accordion-title .light-green { | |
| 719 | + background: rgba(45, 178, 45, 0.1); | |
| 720 | + --category-icon: #2db22d; | |
| 721 | +} | |
| 722 | +.accordion-title .light-orange { | |
| 723 | + background: rgba(204, 128, 51, 0.1); | |
| 724 | + --category-icon: #cc8033; | |
| 725 | +} | |
| 726 | +.accordion-title .light-blue { | |
| 727 | + background: rgba(2, 117, 216, 0.1); | |
| 728 | + --category-icon: var(--frmx_brand_color); | |
| 729 | +} | |
| 730 | +.accordion-title .light-gray { | |
| 731 | + background: rgba(66, 66, 66, 0.1); | |
| 732 | + --category-icon: #424242; | |
| 733 | +} | |
| 734 | +.accordion-title ul.actions { | |
| 735 | + display: none; | |
| 736 | + align-items: center; | |
| 737 | + gap: var(--gutter-10); | |
| 738 | + --section-icon: #9199a1; | |
| 739 | + margin-left: 15px; | |
| 740 | +} | |
| 741 | +.accordion-title ul.actions .duplicate { | |
| 742 | + order: 1; | |
| 743 | +} | |
| 744 | +.accordion-title ul.actions .delete { | |
| 745 | + order: 2; | |
| 746 | +} | |
| 747 | +.accordion-title ul.actions li:hover { | |
| 748 | + --section-icon: var(--clr-dark); | |
| 749 | +} | |
| 750 | +.accordion-title ul.actions li a { | |
| 751 | + text-decoration: none; | |
| 752 | +} | |
| 753 | +.accordion-title ul.actions li a .dashicons { | |
| 754 | + color: var(--black_150); | |
| 755 | + font-size: 18px; | |
| 756 | + padding-top: 3px; | |
| 757 | +} | |
| 758 | +.accordion-title ul.actions li a .dashicons:hover { | |
| 759 | + color: var(--black_400); | |
| 760 | +} | |
| 761 | +.accordion-title ul.actions li a img { | |
| 762 | + opacity: 0.5; | |
| 763 | +} | |
| 764 | +.accordion-title ul.actions li a img:hover { | |
| 765 | + opacity: 1; | |
| 766 | +} | |
| 767 | +.accordion-title ul.actions li a.st-pro-notice .dashicons { | |
| 768 | + color: #f1bd6c; | |
| 769 | +} | |
| 770 | +.accordion-title .left-content { | |
| 771 | + display: flex; | |
| 772 | + align-items: center; | |
| 773 | +} | |
| 774 | +.accordion-title .left-content .topic-status { | |
| 775 | + width: 30px; | |
| 776 | + height: 20px; | |
| 777 | + text-align: left; | |
| 778 | + margin-right: 5px; | |
| 779 | +} | |
| 780 | +.accordion-title .left-content .bbpc-author-name { | |
| 781 | + font-size: 14px; | |
| 782 | + color: var(--clr-text-light); | |
| 783 | +} | |
| 784 | +.accordion-title .left-content .bbpc-author-name a { | |
| 785 | + text-decoration: none; | |
| 786 | +} | |
| 787 | +.accordion-title .right-content { | |
| 788 | + display: flex; | |
| 789 | + align-items: center; | |
| 790 | +} | |
| 791 | +.accordion-title .right-content .progress-text a { | |
| 792 | + font-size: 14px; | |
| 793 | + color: var(--clr-text-light); | |
| 794 | + margin-left: var(--gutter-30); | |
| 795 | + text-decoration: none; | |
| 796 | +} | |
| 797 | + | |
| 798 | +.easydocs-accordion-body { | |
| 799 | + background: var(--clr-white); | |
| 800 | + color: var(--clr-text); | |
| 801 | + font-size: var(--fs-14); | |
| 802 | + padding: 10px 50px 10px 50px; | |
| 803 | +} | |
| 804 | + | |
| 805 | +.nesting-accordion { | |
| 806 | + padding: 0; | |
| 807 | +} | |
| 808 | +.nesting-accordion a { | |
| 809 | + text-decoration: none; | |
| 810 | +} | |
| 811 | + | |
| 812 | +.child-docs-wrap { | |
| 813 | + border-bottom: 1px solid #edeae9; | |
| 814 | +} | |
| 815 | +.child-docs-wrap:hover { | |
| 816 | + background-color: #f9f9f9; | |
| 817 | +} | |
| 818 | +.child-docs-wrap .child-right-content { | |
| 819 | + visibility: hidden; | |
| 820 | +} | |
| 821 | +.child-docs-wrap:hover .child-right-content { | |
| 822 | + visibility: visible; | |
| 823 | +} | |
| 824 | + | |
| 825 | +a.child-delete, | |
| 826 | +a.child-view-link { | |
| 827 | + padding-left: 5px !important; | |
| 828 | + padding-right: 5px !important; | |
| 829 | +} | |
| 830 | +a.child-delete img, | |
| 831 | +a.child-view-link img { | |
| 832 | + opacity: 0.5; | |
| 833 | +} | |
| 834 | +a.child-delete img:hover, | |
| 835 | +a.child-view-link img:hover { | |
| 836 | + opacity: 1; | |
| 837 | +} | |
| 838 | + | |
| 839 | +a.child-delete { | |
| 840 | + padding-right: 28px !important; | |
| 841 | +} | |
| 842 | + | |
| 843 | +/* replies count */ | |
| 844 | +.count-replies span { | |
| 845 | + position: absolute; | |
| 846 | + top: 1px; | |
| 847 | + left: 8px; | |
| 848 | + color: #fff; | |
| 849 | + font-size: 0.55em; | |
| 850 | +} | |
| 851 | + | |
| 852 | +.bbpc-reply-count { | |
| 853 | + box-sizing: border-box; | |
| 854 | + display: block; | |
| 855 | + padding: 0; | |
| 856 | + min-width: 22px; | |
| 857 | + height: 2em; | |
| 858 | + border-radius: 5px; | |
| 859 | + background-color: var(--black_200); | |
| 860 | + color: #fff; | |
| 861 | + font-size: 10px; | |
| 862 | + line-height: 1.9090909; | |
| 863 | + text-align: center; | |
| 864 | + margin-left: 10px; | |
| 865 | +} | |
| 866 | +.bbpc-reply-count:after { | |
| 867 | + content: ""; | |
| 868 | + display: block; | |
| 869 | + margin-left: 11px; | |
| 870 | + width: 0; | |
| 871 | + height: 0; | |
| 872 | + border-top: 5px solid var(--black_200); | |
| 873 | + border-right: 5px solid transparent; | |
| 874 | +} | |
| 875 | +.bbpc-reply-count.bbpc-published-replies { | |
| 876 | + background-color: #cc8033; | |
| 877 | +} | |
| 878 | +.bbpc-reply-count.bbpc-published-replies:after { | |
| 879 | + border-top: 5px solid #cc8033; | |
| 880 | +} | |
| 881 | + | |
| 882 | +.bbpc-pending-replies:hover, .bbpc-pending-replies:active { | |
| 883 | + background: #0275d8; | |
| 884 | +} | |
| 885 | +.bbpc-pending-replies:hover:after, .bbpc-pending-replies:active:after { | |
| 886 | + border-top-color: #0275d8; | |
| 887 | +} | |
| 888 | + | |
| 889 | +.bbpc-nested-replies { | |
| 890 | + margin-left: 30px; | |
| 891 | + display: none; | |
| 892 | +} | |
| 893 | + | |
| 894 | +.ez-section-title div:has(.active) .bbpc-pending-replies { | |
| 895 | + background: #0275d8; | |
| 896 | +} | |
| 897 | +.ez-section-title div:has(.active) .bbpc-pending-replies:after { | |
| 898 | + border-top-color: #0275d8; | |
| 899 | +} | |
| 900 | + | |
| 901 | +.bbpc-reply-wrap { | |
| 902 | + background-color: #fff; | |
| 903 | + padding: 8px 0; | |
| 904 | + margin-left: 20px; | |
| 905 | +} | |
| 906 | +.bbpc-reply-wrap a { | |
| 907 | + width: 22px; | |
| 908 | + height: 22px; | |
| 909 | + display: inline-block; | |
| 910 | +} | |
| 911 | +.bbpc-reply-wrap:hover { | |
| 912 | + background: #f9f9f9; | |
| 913 | +} | |
| 914 | +.bbpc-reply-wrap:not(:last-child) { | |
| 915 | + border-bottom: 1px solid #edeae9; | |
| 916 | +} | |
| 917 | + | |
| 918 | +.bbpc-admin-pagination { | |
| 919 | + margin-bottom: 15px; | |
| 920 | +} | |
| 921 | +.bbpc-admin-pagination button { | |
| 922 | + border: 1px solid; | |
| 923 | + min-width: 35px; | |
| 924 | + border-radius: 4px; | |
| 925 | + background: rgba(0, 0, 0, 0.8); | |
| 926 | + color: white; | |
| 927 | +} | |
| 928 | +.bbpc-admin-pagination button:hover, .bbpc-admin-pagination button.mixitup-control-active { | |
| 929 | + background: var(--frmx_brand_color); | |
| 930 | +} | |
| 931 | + | |
| 932 | +.ezd-btn { | |
| 933 | + --btn-fs: var(--fs-16); | |
| 934 | + --btn-ff: var(--ff-roboto); | |
| 935 | + --btn-py: 0.5rem; | |
| 936 | + --btn-px: 1.6rem; | |
| 937 | + position: relative; | |
| 938 | + font-family: var(--btn-ff); | |
| 939 | + font-size: var(--btn-fs); | |
| 940 | + font-weight: var(--fw-400); | |
| 941 | + line-height: 1.5; | |
| 942 | + background: var(--btn-bg); | |
| 943 | + color: var(--btn-clr); | |
| 944 | + border: var(--btn-bw, var(--border-width)) var(--btn-bs, var(--border-style)) var(--btn-bc, var(--btn-bg)); | |
| 945 | + text-transform: capitalize; | |
| 946 | + text-decoration: none; | |
| 947 | + border-radius: var(--btn-radius, var(--radius)); | |
| 948 | + padding: var(--btn-py) var(--btn-px); | |
| 949 | + margin: var(--btn-mx) var(--btn-mx); | |
| 950 | + display: inline-block; | |
| 951 | + overflow: hidden; | |
| 952 | + text-align: center; | |
| 953 | + cursor: pointer; | |
| 954 | + -webkit-transition: 0.3s ease-out; | |
| 955 | + transition: 0.3s ease-out; | |
| 956 | +} | |
| 957 | +.ezd-btn-sm { | |
| 958 | + --btn-py: 0.3125rem; | |
| 959 | +} | |
| 960 | +.ezd-btn-lg { | |
| 961 | + --btn-py: 0.625rem; | |
| 962 | +} | |
| 963 | +.ezd-btn-xl { | |
| 964 | + --btn-py: 0.75rem; | |
| 965 | +} | |
| 966 | +.ezd-btn-none { | |
| 967 | + --btn-radius: 0; | |
| 968 | +} | |
| 969 | +.ezd-btn-round { | |
| 970 | + --btn-radius: 0.375rem; | |
| 971 | +} | |
| 972 | +.ezd-btn-rounded { | |
| 973 | + --btn-radius: 1.875rem; | |
| 974 | +} | |
| 975 | +.ezd-btn-round-full { | |
| 976 | + --btn-radius: 50%; | |
| 977 | +} | |
| 978 | +.ezd-btn-disabled { | |
| 979 | + pointer-events: none; | |
| 980 | + opacity: 0.65; | |
| 981 | +} | |
| 982 | +.ezd-btn-black-light { | |
| 983 | + --btn-bg: rgba(13, 14, 43, 0.1); | |
| 984 | + --btn-clr: #0D0E2B; | |
| 985 | + --btn-bc: transparent; | |
| 986 | +} | |
| 987 | +.ezd-btn-black-light:hover { | |
| 988 | + --btn-clr: #0D0E2B; | |
| 989 | + --btn-bg: rgba(13, 14, 43, 0.1); | |
| 990 | + --btn-bc: #0D0E2B; | |
| 991 | +} | |
| 992 | +.ezd-btn-black-light:focus { | |
| 993 | + outline: 0; | |
| 994 | + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 995 | +} | |
| 996 | +.ezd-btn-green-light { | |
| 997 | + --btn-bg: rgba(45, 178, 45, 0.1); | |
| 998 | + --btn-clr: #2DB22D; | |
| 999 | + --btn-bc: transparent; | |
| 1000 | +} | |
| 1001 | +.ezd-btn-green-light:hover { | |
| 1002 | + --btn-clr: #2DB22D; | |
| 1003 | + --btn-bg: rgba(45, 178, 45, 0.1); | |
| 1004 | + --btn-bc: #2DB22D; | |
| 1005 | +} | |
| 1006 | +.ezd-btn-green-light:focus { | |
| 1007 | + outline: 0; | |
| 1008 | + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 1009 | +} | |
| 1010 | +.ezd-btn-blue-light { | |
| 1011 | + --btn-bg: rgba(2, 117, 216, 0.1); | |
| 1012 | + --btn-clr: #0275D8; | |
| 1013 | + --btn-bc: transparent; | |
| 1014 | +} | |
| 1015 | +.ezd-btn-blue-light:hover { | |
| 1016 | + --btn-clr: #0275D8; | |
| 1017 | + --btn-bg: rgba(2, 117, 216, 0.1); | |
| 1018 | + --btn-bc: #0275D8; | |
| 1019 | +} | |
| 1020 | +.ezd-btn-blue-light:focus { | |
| 1021 | + outline: 0; | |
| 1022 | + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 1023 | +} | |
| 1024 | +.ezd-btn-orange-light { | |
| 1025 | + --btn-bg: rgba(204, 128, 51, 0.1); | |
| 1026 | + --btn-clr: #CC8033; | |
| 1027 | + --btn-bc: transparent; | |
| 1028 | +} | |
| 1029 | +.ezd-btn-orange-light:hover { | |
| 1030 | + --btn-clr: #CC8033; | |
| 1031 | + --btn-bg: rgba(204, 128, 51, 0.1); | |
| 1032 | + --btn-bc: #CC8033; | |
| 1033 | +} | |
| 1034 | +.ezd-btn-orange-light:focus { | |
| 1035 | + outline: 0; | |
| 1036 | + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 1037 | +} | |
| 1038 | +.ezd-btn-gray-light { | |
| 1039 | + --btn-bg: rgba(66, 66, 66, 0.1); | |
| 1040 | + --btn-clr: #424242; | |
| 1041 | + --btn-bc: transparent; | |
| 1042 | +} | |
| 1043 | +.ezd-btn-gray-light:hover { | |
| 1044 | + --btn-clr: #424242; | |
| 1045 | + --btn-bg: rgba(66, 66, 66, 0.1); | |
| 1046 | + --btn-bc: #424242; | |
| 1047 | +} | |
| 1048 | +.ezd-btn-gray-light:focus { | |
| 1049 | + outline: 0; | |
| 1050 | + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 1051 | +} | |
| 1052 | +.ezd-btn-blue { | |
| 1053 | + --btn-bg: var(--frmx_brand_color); | |
| 1054 | + --btn-clr: var(--clr-white); | |
| 1055 | + --btn-bc: var(--frmx_brand_color); | |
| 1056 | +} | |
| 1057 | +.ezd-btn-blue:hover { | |
| 1058 | + --btn-clr: var(--frmx_brand_color); | |
| 1059 | + --btn-bg: transparent; | |
| 1060 | + --btn-bc: var(--frmx_brand_color); | |
| 1061 | +} | |
| 1062 | +.ezd-btn-blue:focus { | |
| 1063 | + outline: 0; | |
| 1064 | + box-shadow: 0 0 0 0.4rem rgba(65, 65, 230, 0.5); | |
| 1065 | +} | |
| 1066 | +.ezd-btn-outline-blue { | |
| 1067 | + --btn-clr: #4141E6; | |
| 1068 | + --btn-bc: #4141E6; | |
| 1069 | +} | |
| 1070 | +.ezd-btn-outline-blue:hover { | |
| 1071 | + --btn-clr: var(--clr-white); | |
| 1072 | + --btn-bg: #4141E6; | |
| 1073 | + --btn-bc: #4141E6; | |
| 1074 | +} | |
| 1075 | +.ezd-btn-outline-blue:focus { | |
| 1076 | + outline: 0; | |
| 1077 | + box-shadow: 0 0 0 0.4rem rgba(65, 65, 230, 0.5); | |
| 1078 | +} | |
| 1079 | +.ezd-btn-white { | |
| 1080 | + --btn-bg: var(--clr-white); | |
| 1081 | + --btn-clr: var(--clr-white); | |
| 1082 | + --btn-bc: var(--clr-white); | |
| 1083 | +} | |
| 1084 | +.ezd-btn-white:hover { | |
| 1085 | + --btn-clr: var(--clr-white); | |
| 1086 | + --btn-bg: transparent; | |
| 1087 | + --btn-bc: var(--clr-white); | |
| 1088 | +} | |
| 1089 | +.ezd-btn-white:focus { | |
| 1090 | + outline: 0; | |
| 1091 | + box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.5); | |
| 1092 | +} | |
| 1093 | +.ezd-btn-outline-white { | |
| 1094 | + --btn-clr: var(--clr-white); | |
| 1095 | + --btn-bc: var(--clr-white); | |
| 1096 | +} | |
| 1097 | +.ezd-btn-outline-white:hover { | |
| 1098 | + --btn-clr: var(--clr-black); | |
| 1099 | + --btn-bg: var(--clr-white); | |
| 1100 | + --btn-bc: var(--clr-white); | |
| 1101 | +} | |
| 1102 | +.ezd-btn-outline-white:focus { | |
| 1103 | + outline: 0; | |
| 1104 | + box-shadow: 0 0 0 0.4rem rgba(var(--clr-white), 0.5); | |
| 1105 | +} | |
| 1106 | +.ezd-btn-gray { | |
| 1107 | + --btn-bg: rgba(37, 39, 51, 0.1); | |
| 1108 | + --btn-clr: var(--clr-dark); | |
| 1109 | + --btn-bc: transparent; | |
| 1110 | +} | |
| 1111 | +.ezd-btn-gray:hover { | |
| 1112 | + --btn-clr: var(--clr-white); | |
| 1113 | + --btn-bg: var(--frmx_brand_color); | |
| 1114 | + --btn-bc: transparent; | |
| 1115 | +} | |
| 1116 | +.ezd-btn-gray:focus { | |
| 1117 | + outline: 0; | |
| 1118 | + box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); | |
| 1119 | +} | |
| 1120 | + | |
| 1121 | +.forumax-empty-actions { | |
| 1122 | + display: flex; | |
| 1123 | + align-items: center; | |
| 1124 | + justify-content: center; | |
| 1125 | + gap: 12px; | |
| 1126 | + margin-top: 20px; | |
| 1127 | +} | |
| 1128 | +.forumax-empty-actions .ezd-btn { | |
| 1129 | + display: inline-flex; | |
| 1130 | + align-items: center; | |
| 1131 | + gap: 6px; | |
| 1132 | +} | |
| 1133 | +.forumax-empty-actions .ezd-btn .dashicons { | |
| 1134 | + font-size: 18px; | |
| 1135 | + width: 18px; | |
| 1136 | + height: 18px; | |
| 1137 | + line-height: 1; | |
| 1138 | +} | |
| 1139 | + | |
| 1140 | +.forumax-actions-separator { | |
| 1141 | + color: #6b7280; | |
| 1142 | + font-size: 14px; | |
| 1143 | + font-weight: 500; | |
| 1144 | +} | |
| 1145 | + | |
| 1146 | +.forumax-import-demo-btn { | |
| 1147 | + background: linear-gradient(135deg, #7c3aed, #a855f7) !important; | |
| 1148 | + border-color: transparent !important; | |
| 1149 | + color: #fff !important; | |
| 1150 | + transition: all 0.3s ease; | |
| 1151 | +} | |
| 1152 | +.forumax-import-demo-btn:hover { | |
| 1153 | + background: linear-gradient(135deg, #6d28d9, #9333ea) !important; | |
| 1154 | + transform: translateY(-1px); | |
| 1155 | + box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3); | |
| 1156 | +} | |
| 1157 | +.forumax-import-demo-btn:focus { | |
| 1158 | + outline: none; | |
| 1159 | + box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3); | |
| 1160 | +} | |
| 1161 | +.forumax-import-demo-btn .dashicons { | |
| 1162 | + color: #fff; | |
| 1163 | +} | |
| 1164 | + | |
| 1165 | +.easydocs-dropdown { | |
| 1166 | + top: 130%; | |
| 1167 | + right: -20px; | |
| 1168 | + position: absolute; | |
| 1169 | + -webkit-box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1) 0 0 0 rgba(var(--clr-black), 1); | |
| 1170 | + -moz-box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1) 0 0 0 rgba(var(--clr-black), 1); | |
| 1171 | + box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1) 0 0 0 rgba(var(--clr-black), 1); | |
| 1172 | + background-color: var(--clr-white); | |
| 1173 | + border-radius: 0.5rem; | |
| 1174 | + z-index: 999; | |
| 1175 | + -webkit-transition: 0.3s ease-out; | |
| 1176 | + transition: 0.3s ease-out; | |
| 1177 | + display: none; | |
| 1178 | +} | |
| 1179 | +.easydocs-dropdown.is-active { | |
| 1180 | + opacity: 1; | |
| 1181 | + visibility: visible; | |
| 1182 | + top: 130%; | |
| 1183 | +} | |
| 1184 | + | |
| 1185 | +.notification-dropdown { | |
| 1186 | + width: 400px; | |
| 1187 | + max-width: 95vw; | |
| 1188 | + border-radius: 12px; | |
| 1189 | + box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04); | |
| 1190 | + overflow: hidden; | |
| 1191 | + animation: notificationSlideIn 0.25s ease-out; | |
| 1192 | +} | |
| 1193 | +@keyframes notificationSlideIn { | |
| 1194 | + from { | |
| 1195 | + opacity: 0; | |
| 1196 | + transform: translateY(-10px) scale(0.98); | |
| 1197 | + } | |
| 1198 | + to { | |
| 1199 | + opacity: 1; | |
| 1200 | + transform: translateY(0) scale(1); | |
| 1201 | + } | |
| 1202 | +} | |
| 1203 | +.notification-dropdown::before { | |
| 1204 | + content: ""; | |
| 1205 | + position: absolute; | |
| 1206 | + top: -8px; | |
| 1207 | + right: 24px; | |
| 1208 | + width: 16px; | |
| 1209 | + height: 16px; | |
| 1210 | + background: var(--frmx_brand_color); | |
| 1211 | + transform: rotate(45deg); | |
| 1212 | + border-radius: 2px; | |
| 1213 | + box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05); | |
| 1214 | +} | |
| 1215 | + | |
| 1216 | +.notification-head { | |
| 1217 | + padding: 16px 20px; | |
| 1218 | + background: var(--frmx_brand_color); | |
| 1219 | + position: relative; | |
| 1220 | + overflow: hidden; | |
| 1221 | + display: flex; | |
| 1222 | + align-items: center; | |
| 1223 | + justify-content: space-between; | |
| 1224 | +} | |
| 1225 | +.notification-head::before { | |
| 1226 | + content: ""; | |
| 1227 | + position: absolute; | |
| 1228 | + top: 0; | |
| 1229 | + left: 0; | |
| 1230 | + right: 0; | |
| 1231 | + bottom: 0; | |
| 1232 | + background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%); | |
| 1233 | + pointer-events: none; | |
| 1234 | +} | |
| 1235 | +.notification-head.no-notification-text { | |
| 1236 | + padding: 40px 20px; | |
| 1237 | + background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%); | |
| 1238 | + display: flex; | |
| 1239 | + flex-direction: column; | |
| 1240 | + align-items: center; | |
| 1241 | + justify-content: center; | |
| 1242 | + text-align: center; | |
| 1243 | + color: #6b7280; | |
| 1244 | + font-size: 14px; | |
| 1245 | + font-weight: 500; | |
| 1246 | +} | |
| 1247 | +.notification-head.no-notification-text::before { | |
| 1248 | + content: "🔔"; | |
| 1249 | + font-size: 32px; | |
| 1250 | + margin-bottom: 10px; | |
| 1251 | + opacity: 0.6; | |
| 1252 | +} | |
| 1253 | +.notification-head .header-text { | |
| 1254 | + color: #fff; | |
| 1255 | + font-size: 16px; | |
| 1256 | + font-weight: 700; | |
| 1257 | + letter-spacing: 0.3px; | |
| 1258 | + position: relative; | |
| 1259 | + z-index: 1; | |
| 1260 | + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); | |
| 1261 | +} | |
| 1262 | +.notification-head .notification-action-btn { | |
| 1263 | + background: rgba(255, 255, 255, 0.15); | |
| 1264 | + border: 1px solid rgba(255, 255, 255, 0.2); | |
| 1265 | + border-radius: 20px; | |
| 1266 | + padding: 6px 14px; | |
| 1267 | + font-size: 12px; | |
| 1268 | + font-weight: 500; | |
| 1269 | + color: #fff; | |
| 1270 | + cursor: pointer; | |
| 1271 | + transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); | |
| 1272 | + backdrop-filter: blur(4px); | |
| 1273 | + display: flex; | |
| 1274 | + align-items: center; | |
| 1275 | + gap: 6px; | |
| 1276 | + position: relative; | |
| 1277 | + z-index: 1; | |
| 1278 | +} | |
| 1279 | +.notification-head .notification-action-btn:hover { | |
| 1280 | + background: rgba(255, 255, 255, 0.25); | |
| 1281 | + transform: translateY(-1px); | |
| 1282 | + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); | |
| 1283 | +} | |
| 1284 | +.notification-head .notification-action-btn:active { | |
| 1285 | + transform: translateY(0); | |
| 1286 | +} | |
| 1287 | +.notification-head .notification-action-btn .dashicons { | |
| 1288 | + font-size: 14px; | |
| 1289 | + width: 14px; | |
| 1290 | + height: 14px; | |
| 1291 | +} | |
| 1292 | + | |
| 1293 | +.notification-tabs { | |
| 1294 | + display: flex; | |
| 1295 | + padding: 0 16px; | |
| 1296 | + background: #fff; | |
| 1297 | + border-bottom: 1px solid #f1f5f9; | |
| 1298 | + gap: 16px; | |
| 1299 | +} | |
| 1300 | +.notification-tabs .notification-tab { | |
| 1301 | + padding: 14px 4px; | |
| 1302 | + background: transparent; | |
| 1303 | + border: none; | |
| 1304 | + border-bottom: 2px solid transparent; | |
| 1305 | + font-size: 13px; | |
| 1306 | + font-weight: 500; | |
| 1307 | + color: #64748b; | |
| 1308 | + cursor: pointer; | |
| 1309 | + transition: all 0.2s ease; | |
| 1310 | + display: flex; | |
| 1311 | + align-items: center; | |
| 1312 | + gap: 6px; | |
| 1313 | + position: relative; | |
| 1314 | +} | |
| 1315 | +.notification-tabs .notification-tab:hover { | |
| 1316 | + color: #334155; | |
| 1317 | +} | |
| 1318 | +.notification-tabs .notification-tab:hover .tab-count { | |
| 1319 | + background: #e2e8f0; | |
| 1320 | +} | |
| 1321 | +.notification-tabs .notification-tab.is-active { | |
| 1322 | + color: var(--frmx_brand_color); | |
| 1323 | + border-bottom-color: var(--frmx_brand_color); | |
| 1324 | +} | |
| 1325 | +.notification-tabs .notification-tab.is-active .tab-count { | |
| 1326 | + background: var(--frmx_brand_color); | |
| 1327 | + color: #fff; | |
| 1328 | +} | |
| 1329 | +.notification-tabs .notification-tab .tab-count { | |
| 1330 | + background: #f1f5f9; | |
| 1331 | + color: #64748b; | |
| 1332 | + padding: 2px 8px; | |
| 1333 | + border-radius: 12px; | |
| 1334 | + font-size: 11px; | |
| 1335 | + font-weight: 600; | |
| 1336 | + min-width: 20px; | |
| 1337 | + text-align: center; | |
| 1338 | + transition: all 0.2s ease; | |
| 1339 | +} | |
| 1340 | + | |
| 1341 | +.notification-body { | |
| 1342 | + background: #fff; | |
| 1343 | + position: relative; | |
| 1344 | +} | |
| 1345 | + | |
| 1346 | +.notify-column { | |
| 1347 | + max-height: 400px; | |
| 1348 | + overflow-y: auto; | |
| 1349 | + scrollbar-width: thin; | |
| 1350 | + scrollbar-color: #cbd5e1 transparent; | |
| 1351 | +} | |
| 1352 | +.notify-column::-webkit-scrollbar { | |
| 1353 | + width: 5px; | |
| 1354 | +} | |
| 1355 | +.notify-column::-webkit-scrollbar-track { | |
| 1356 | + background: transparent; | |
| 1357 | +} | |
| 1358 | +.notify-column::-webkit-scrollbar-thumb { | |
| 1359 | + background-color: #cbd5e1; | |
| 1360 | + border-radius: 20px; | |
| 1361 | + border: 2px solid transparent; | |
| 1362 | + background-clip: content-box; | |
| 1363 | +} | |
| 1364 | +.notify-column::-webkit-scrollbar-thumb:hover { | |
| 1365 | + background-color: #94a3b8; | |
| 1366 | +} | |
| 1367 | +.notify-column ul { | |
| 1368 | + list-style: none; | |
| 1369 | + margin: 0; | |
| 1370 | + padding: 0; | |
| 1371 | +} | |
| 1372 | +.notify-column .notify-item { | |
| 1373 | + border-bottom: 1px solid #f1f5f9; | |
| 1374 | + margin: 0; | |
| 1375 | + position: relative; | |
| 1376 | + transition: background 0.2s ease; | |
| 1377 | +} | |
| 1378 | +.notify-column .notify-item:last-child { | |
| 1379 | + border-bottom: none; | |
| 1380 | +} | |
| 1381 | +.notify-column .notify-item:hover { | |
| 1382 | + background: #f8fafc; | |
| 1383 | +} | |
| 1384 | +.notify-column .notify-item:hover .notify-content-summary p { | |
| 1385 | + color: #1e293b; | |
| 1386 | +} | |
| 1387 | +.notify-column .notify-item.is-unread { | |
| 1388 | + background: #fdfeff; | |
| 1389 | +} | |
| 1390 | +.notify-column .notify-item.is-unread::before { | |
| 1391 | + content: ""; | |
| 1392 | + position: absolute; | |
| 1393 | + left: 0; | |
| 1394 | + top: 0; | |
| 1395 | + bottom: 0; | |
| 1396 | + width: 3px; | |
| 1397 | + background: var(--frmx_brand_color); | |
| 1398 | + box-shadow: 2px 0 8px rgba(102, 126, 234, 0.4); | |
| 1399 | +} | |
| 1400 | +.notify-column .notify-item > a { | |
| 1401 | + display: flex; | |
| 1402 | + padding: 16px 20px; | |
| 1403 | + gap: 16px; | |
| 1404 | + text-decoration: none; | |
| 1405 | + align-items: flex-start; | |
| 1406 | +} | |
| 1407 | +.notify-column .notify-icon { | |
| 1408 | + flex-shrink: 0; | |
| 1409 | +} | |
| 1410 | +.notify-column .notify-icon-wrapper { | |
| 1411 | + width: 44px; | |
| 1412 | + height: 44px; | |
| 1413 | + border-radius: 12px; | |
| 1414 | + display: flex; | |
| 1415 | + align-items: center; | |
| 1416 | + justify-content: center; | |
| 1417 | + background: #f1f5f9; | |
| 1418 | + transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); | |
| 1419 | + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); | |
| 1420 | +} | |
| 1421 | +.notify-column .notify-icon-wrapper.type-reply { | |
| 1422 | + background: linear-gradient(135deg, #34d399 0%, #10b981 100%); | |
| 1423 | + box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2); | |
| 1424 | +} | |
| 1425 | +.notify-column .notify-icon-wrapper.type-closed { | |
| 1426 | + background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); | |
| 1427 | + box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2); | |
| 1428 | +} | |
| 1429 | +.notify-column .notify-icon-wrapper.type-solved { | |
| 1430 | + background: var(--frmx_brand_color); | |
| 1431 | + box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2); | |
| 1432 | +} | |
| 1433 | +.notify-column .notify-icon-wrapper .dashicons, | |
| 1434 | +.notify-column .notify-icon-wrapper .icon_check_alt { | |
| 1435 | + color: #fff; | |
| 1436 | + filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)); | |
| 1437 | +} | |
| 1438 | +.notify-column .notify-icon-wrapper .dashicons { | |
| 1439 | + font-size: 20px; | |
| 1440 | + width: 20px; | |
| 1441 | + height: 20px; | |
| 1442 | +} | |
| 1443 | +.notify-column .notify-icon-wrapper .icon_check_alt { | |
| 1444 | + font-size: 18px; | |
| 1445 | +} | |
| 1446 | +.notify-column .notify-content-wrap { | |
| 1447 | + flex: 1; | |
| 1448 | + min-width: 0; | |
| 1449 | +} | |
| 1450 | +.notify-column .notify-content-header { | |
| 1451 | + display: flex; | |
| 1452 | + align-items: center; | |
| 1453 | + justify-content: space-between; | |
| 1454 | + margin-bottom: 6px; | |
| 1455 | + gap: 8px; | |
| 1456 | +} | |
| 1457 | +.notify-column .noti-type { | |
| 1458 | + font-size: 11px; | |
| 1459 | + font-weight: 700; | |
| 1460 | + color: #475569; | |
| 1461 | + background: #e2e8f0; | |
| 1462 | + padding: 2px 8px; | |
| 1463 | + border-radius: 6px; | |
| 1464 | + text-transform: uppercase; | |
| 1465 | + letter-spacing: 0.5px; | |
| 1466 | + display: inline-block; | |
| 1467 | +} | |
| 1468 | +.notify-column .noti-type.resolved { | |
| 1469 | + background: #e0e7ff; | |
| 1470 | + color: var(--frmx_brand_color); | |
| 1471 | +} | |
| 1472 | +.notify-column .notify-creation { | |
| 1473 | + font-size: 11px; | |
| 1474 | + color: #94a3b8; | |
| 1475 | + white-space: nowrap; | |
| 1476 | +} | |
| 1477 | +.notify-column .notify-content-summary p { | |
| 1478 | + font-size: 13px; | |
| 1479 | + line-height: 1.5; | |
| 1480 | + color: #64748b; | |
| 1481 | + margin: 0; | |
| 1482 | + display: -webkit-box; | |
| 1483 | + -webkit-line-clamp: 2; | |
| 1484 | + -webkit-box-orient: vertical; | |
| 1485 | + overflow: hidden; | |
| 1486 | + font-weight: 400; | |
| 1487 | +} | |
| 1488 | + | |
| 1489 | +.notification-loading { | |
| 1490 | + padding: 16px; | |
| 1491 | + text-align: center; | |
| 1492 | + background: #f9fafb; | |
| 1493 | + border-top: 1px solid #f3f4f6; | |
| 1494 | +} | |
| 1495 | +.notification-loading .loading-spinner { | |
| 1496 | + display: inline-block; | |
| 1497 | + width: 20px; | |
| 1498 | + height: 20px; | |
| 1499 | + border: 2px solid #e5e7eb; | |
| 1500 | + border-top-color: var(--frmx_brand_color); | |
| 1501 | + border-radius: 50%; | |
| 1502 | + animation: notificationSpin 0.8s linear infinite; | |
| 1503 | +} | |
| 1504 | +@keyframes notificationSpin { | |
| 1505 | + to { | |
| 1506 | + transform: rotate(360deg); | |
| 1507 | + } | |
| 1508 | +} | |
| 1509 | +.notification-loading .loading-text { | |
| 1510 | + font-size: 12px; | |
| 1511 | + color: #9ca3af; | |
| 1512 | + margin-top: 6px; | |
| 1513 | +} | |
| 1514 | + | |
| 1515 | +.notification-end { | |
| 1516 | + padding: 14px; | |
| 1517 | + text-align: center; | |
| 1518 | + font-size: 12px; | |
| 1519 | + color: #9ca3af; | |
| 1520 | + background: #f9fafb; | |
| 1521 | + border-top: 1px solid #f3f4f6; | |
| 1522 | +} | |
| 1523 | +.notification-end::before { | |
| 1524 | + content: "✓"; | |
| 1525 | + display: inline-block; | |
| 1526 | + margin-right: 6px; | |
| 1527 | + color: #10b981; | |
| 1528 | +} | |
| 1529 | + | |
| 1530 | +.notification-footer { | |
| 1531 | + padding: 12px 16px; | |
| 1532 | + background: #f8f9fb; | |
| 1533 | + border-top: 1px solid #e5e7eb; | |
| 1534 | + display: flex; | |
| 1535 | + align-items: center; | |
| 1536 | + justify-content: center; | |
| 1537 | +} | |
| 1538 | +.notification-footer .view-all-link { | |
| 1539 | + font-size: 13px; | |
| 1540 | + font-weight: 500; | |
| 1541 | + color: var(--frmx_brand_color); | |
| 1542 | + text-decoration: none; | |
| 1543 | + display: flex; | |
| 1544 | + align-items: center; | |
| 1545 | + gap: 6px; | |
| 1546 | + transition: all 0.2s ease; | |
| 1547 | +} | |
| 1548 | +.notification-footer .view-all-link:hover { | |
| 1549 | + color: #764ba2; | |
| 1550 | + gap: 10px; | |
| 1551 | +} | |
| 1552 | +.notification-footer .view-all-link .dashicons { | |
| 1553 | + font-size: 14px; | |
| 1554 | + width: 14px; | |
| 1555 | + height: 14px; | |
| 1556 | + transition: transform 0.2s ease; | |
| 1557 | +} | |
| 1558 | +.notification-footer .view-all-link:hover .dashicons { | |
| 1559 | + transform: translateX(3px); | |
| 1560 | +} | |
| 1561 | + | |
| 1562 | +.notification-empty { | |
| 1563 | + padding: 40px 20px; | |
| 1564 | + text-align: center; | |
| 1565 | +} | |
| 1566 | +.notification-empty .empty-icon { | |
| 1567 | + width: 64px; | |
| 1568 | + height: 64px; | |
| 1569 | + margin: 0 auto 16px; | |
| 1570 | + background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); | |
| 1571 | + border-radius: 50%; | |
| 1572 | + display: flex; | |
| 1573 | + align-items: center; | |
| 1574 | + justify-content: center; | |
| 1575 | +} | |
| 1576 | +.notification-empty .empty-icon .dashicons { | |
| 1577 | + font-size: 28px; | |
| 1578 | + width: 28px; | |
| 1579 | + height: 28px; | |
| 1580 | + color: #9ca3af; | |
| 1581 | +} | |
| 1582 | +.notification-empty .empty-title { | |
| 1583 | + font-size: 15px; | |
| 1584 | + font-weight: 600; | |
| 1585 | + color: #374151; | |
| 1586 | + margin-bottom: 6px; | |
| 1587 | +} | |
| 1588 | +.notification-empty .empty-text { | |
| 1589 | + font-size: 13px; | |
| 1590 | + color: #9ca3af; | |
| 1591 | + line-height: 1.5; | |
| 1592 | +} | |
| 1593 | + | |
| 1594 | +.notification-skeleton { | |
| 1595 | + padding: 14px 16px; | |
| 1596 | + display: flex; | |
| 1597 | + gap: 12px; | |
| 1598 | + animation: skeletonPulse 1.5s ease-in-out infinite; | |
| 1599 | +} | |
| 1600 | +@keyframes skeletonPulse { | |
| 1601 | + 0%, 100% { | |
| 1602 | + opacity: 1; | |
| 1603 | + } | |
| 1604 | + 50% { | |
| 1605 | + opacity: 0.5; | |
| 1606 | + } | |
| 1607 | +} | |
| 1608 | +.notification-skeleton .skeleton-icon { | |
| 1609 | + width: 40px; | |
| 1610 | + height: 40px; | |
| 1611 | + border-radius: 10px; | |
| 1612 | + background: #e5e7eb; | |
| 1613 | +} | |
| 1614 | +.notification-skeleton .skeleton-content { | |
| 1615 | + flex: 1; | |
| 1616 | +} | |
| 1617 | +.notification-skeleton .skeleton-content .skeleton-line { | |
| 1618 | + height: 12px; | |
| 1619 | + background: #e5e7eb; | |
| 1620 | + border-radius: 4px; | |
| 1621 | + margin-bottom: 8px; | |
| 1622 | +} | |
| 1623 | +.notification-skeleton .skeleton-content .skeleton-line:first-child { | |
| 1624 | + width: 40%; | |
| 1625 | +} | |
| 1626 | +.notification-skeleton .skeleton-content .skeleton-line:last-child { | |
| 1627 | + width: 80%; | |
| 1628 | + margin-bottom: 0; | |
| 1629 | +} | |
| 1630 | + | |
| 1631 | +.form-control { | |
| 1632 | + font-family: var(--ff-roboto); | |
| 1633 | + font-size: var(--fs-14); | |
| 1634 | + color: #9199a1; | |
| 1635 | + background: transparent; | |
| 1636 | + text-transform: capitalize; | |
| 1637 | + padding: 0.75rem 1.25rem; | |
| 1638 | + margin: 0 auto; | |
| 1639 | + width: 100%; | |
| 1640 | + height: auto; | |
| 1641 | + max-width: 37.5rem; | |
| 1642 | + border: 1px solid #EDEAE9; | |
| 1643 | + border-radius: 0.625rem; | |
| 1644 | + -webkit-transition: 0.3s ease-out; | |
| 1645 | + transition: 0.3s ease-out; | |
| 1646 | +} | |
| 1647 | +.form-control:focus { | |
| 1648 | + outline: none; | |
| 1649 | +} | |
| 1650 | +.form-control:focus { | |
| 1651 | + background: white; | |
| 1652 | + box-shadow: none !important; | |
| 1653 | + border: 1px solid #4c4cf1 !important; | |
| 1654 | + border-radius: 0.625rem; | |
| 1655 | + box-sizing: border-box !important; | |
| 1656 | + line-height: unset !important; | |
| 1657 | +} | |
| 1658 | +.form-control:focus ~ .search-icon { | |
| 1659 | + background: var(--frmx_brand_color); | |
| 1660 | + --search-icon: var(--clr-white); | |
| 1661 | +} | |
| 1662 | +.form-control:focus ~ .search-icon .dashicons { | |
| 1663 | + color: #fff; | |
| 1664 | +} | |
| 1665 | + | |
| 1666 | +.easydocs-search-form { | |
| 1667 | + position: relative; | |
| 1668 | + max-width: 37.5rem; | |
| 1669 | + flex: 1; | |
| 1670 | + margin-left: auto; | |
| 1671 | + margin-right: auto; | |
| 1672 | +} | |
| 1673 | +.easydocs-search-form .search-icon { | |
| 1674 | + position: absolute; | |
| 1675 | + -webkit-transition: 0.3s ease-out; | |
| 1676 | + transition: 0.3s ease-out; | |
| 1677 | + left: 20px; | |
| 1678 | + transform: translateY(50%); | |
| 1679 | +} | |
| 1680 | +.easydocs-search-form input#bbpc-search { | |
| 1681 | + color: #9199a1; | |
| 1682 | + padding: 10px 15px 10px 48px; | |
| 1683 | + border: 1px solid #EDEAE9; | |
| 1684 | + box-sizing: border-box; | |
| 1685 | + line-height: unset; | |
| 1686 | + box-shadow: 0 1px 1px rgba(11, 80, 115, 0.3), 0 1px 5px rgba(60, 64, 67, 0.1); | |
| 1687 | + background: rgba(255, 255, 255, 0.35); | |
| 1688 | + border-radius: 25px; | |
| 1689 | +} | |
| 1690 | +.easydocs-search-form input#bbpc-search:hover { | |
| 1691 | + box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15); | |
| 1692 | +} | |
| 1693 | +.easydocs-search-form input#bbpc-search:focus { | |
| 1694 | + background: #fff; | |
| 1695 | + color: #242729; | |
| 1696 | + outline: none; | |
| 1697 | +} | |
| 1698 | +@media screen and (max-width: 1440px) { | |
| 1699 | + .easydocs-search-form { | |
| 1700 | + margin: 0 10px; | |
| 1701 | + } | |
| 1702 | +} | |
| 1703 | + | |
| 1704 | +.easydocs-accordion-item progress { | |
| 1705 | + -webkit-appearance: none; | |
| 1706 | + appearance: none; | |
| 1707 | + height: 6px; | |
| 1708 | + border-radius: 32px; | |
| 1709 | + width: 100px; | |
| 1710 | +} | |
| 1711 | +.easydocs-accordion-item progress::-webkit-progress-bar { | |
| 1712 | + background-color: #e74c3c; | |
| 1713 | +} | |
| 1714 | +.easydocs-accordion-item progress::-webkit-progress-value { | |
| 1715 | + background-color: #27ae60; | |
| 1716 | +} | |
| 1717 | + | |
| 1718 | +.badge { | |
| 1719 | + display: inline-block; | |
| 1720 | + padding: 0.35em 0.65em 0.3em; | |
| 1721 | + font-size: 0.75em; | |
| 1722 | + font-weight: 400; | |
| 1723 | + line-height: 1; | |
| 1724 | + color: #fff; | |
| 1725 | + text-align: center; | |
| 1726 | + white-space: nowrap; | |
| 1727 | + vertical-align: baseline; | |
| 1728 | + border-radius: 0.25rem; | |
| 1729 | +} | |
| 1730 | + | |
| 1731 | +/*----------------------------------------*/ | |
| 1732 | +/* 02. Header Area | |
| 1733 | +/*----------------------------------------*/ | |
| 1734 | +.easydocs-header-area { | |
| 1735 | + padding-top: 40px; | |
| 1736 | + padding-bottom: 50px; | |
| 1737 | + padding-right: 40px; | |
| 1738 | +} | |
| 1739 | +.easydocs-header-area .easydocs-row { | |
| 1740 | + margin-left: 0; | |
| 1741 | + margin-right: 0; | |
| 1742 | +} | |
| 1743 | + | |
| 1744 | +.navbar-left { | |
| 1745 | + gap: var(--gutter-20); | |
| 1746 | +} | |
| 1747 | +.navbar-left .easydocs-btn { | |
| 1748 | + --btn-icon: var(--frmx_brand_color); | |
| 1749 | + --btn-py: 0.5rem; | |
| 1750 | + --btn-px: 1rem; | |
| 1751 | + --btn-fs: var(--fs-12); | |
| 1752 | + font-weight: 500; | |
| 1753 | + gap: 6px; | |
| 1754 | + display: flex; | |
| 1755 | + border: 1px solid var(--frmx_brand_color); | |
| 1756 | + align-items: center; | |
| 1757 | + text-decoration: none; | |
| 1758 | + padding: 8px 15px; | |
| 1759 | + border-radius: 6px; | |
| 1760 | + color: var(--frmx_brand_color); | |
| 1761 | +} | |
| 1762 | +.navbar-left .easydocs-btn span.dashicons { | |
| 1763 | + font-size: 14px; | |
| 1764 | + margin-bottom: -4px; | |
| 1765 | +} | |
| 1766 | +.navbar-left .easydocs-btn:hover { | |
| 1767 | + --btn-icon: var(--clr-white); | |
| 1768 | + background: var(--frmx_brand_color); | |
| 1769 | +} | |
| 1770 | +.navbar-left .easydocs-btn:focus { | |
| 1771 | + box-shadow: 0 0 0 0.4rem rgba(65, 65, 230, 0.5); | |
| 1772 | +} | |
| 1773 | + | |
| 1774 | +.easydocs-logo-area a { | |
| 1775 | + text-decoration: none; | |
| 1776 | + color: var(--clr-dark); | |
| 1777 | + font-size: var(--fs-24); | |
| 1778 | + font-weight: var(--fw-700); | |
| 1779 | +} | |
| 1780 | + | |
| 1781 | +:is(.easydocs-notification, .easydocs-settings) .header-notify-icon { | |
| 1782 | + width: 2.5rem; | |
| 1783 | + height: 2.5rem; | |
| 1784 | + line-height: 2.5rem; | |
| 1785 | + border-radius: 50%; | |
| 1786 | + background: rgba(37, 39, 51, 0.05); | |
| 1787 | + text-align: center; | |
| 1788 | + cursor: pointer; | |
| 1789 | +} | |
| 1790 | +:is(.easydocs-notification, .easydocs-settings) .header-notify-icon:hover { | |
| 1791 | + background: rgba(37, 39, 51, 0.09); | |
| 1792 | +} | |
| 1793 | +:is(.easydocs-notification, .easydocs-settings) .header-notify-icon svg { | |
| 1794 | + position: relative; | |
| 1795 | + top: 0.3rem; | |
| 1796 | +} | |
| 1797 | + | |
| 1798 | +.easydocs-notification { | |
| 1799 | + margin-right: 1.6875rem; | |
| 1800 | + position: relative; | |
| 1801 | +} | |
| 1802 | +.easydocs-notification .easydocs-badge { | |
| 1803 | + top: -0.4375rem; | |
| 1804 | + right: -0.5rem; | |
| 1805 | + position: absolute; | |
| 1806 | + background: #FA3E3E; | |
| 1807 | + color: var(--clr-white); | |
| 1808 | + top: -0.4375rem; | |
| 1809 | + right: -0.2rem; | |
| 1810 | + position: absolute; | |
| 1811 | + padding: 0 4px; | |
| 1812 | + min-width: 18px; | |
| 1813 | + max-width: 18px; | |
| 1814 | + border-radius: 50%; | |
| 1815 | + text-align: center; | |
| 1816 | + font-size: 10px; | |
| 1817 | + font-weight: 700; | |
| 1818 | + line-height: 18px; | |
| 1819 | + height: 16px; | |
| 1820 | + display: inline-table; | |
| 1821 | + font-family: "Roboto"; | |
| 1822 | +} | |
| 1823 | + | |
| 1824 | +.easydocs-settings .header-notify-icons a { | |
| 1825 | + text-decoration: none; | |
| 1826 | + padding-top: 5px; | |
| 1827 | + display: inline-block; | |
| 1828 | +} | |
| 1829 | + | |
| 1830 | +:is(.knobs, .layer) { | |
| 1831 | + inset: 0; | |
| 1832 | + position: absolute; | |
| 1833 | +} | |
| 1834 | + | |
| 1835 | +.navbar-right .js-darkmode-btn .day svg { | |
| 1836 | + color: #fff; | |
| 1837 | +} | |
| 1838 | +.navbar-right .js-darkmode-btn .night svg { | |
| 1839 | + color: var(--clr-dark); | |
| 1840 | +} | |
| 1841 | + | |
| 1842 | +.body_dark .navbar-right .js-darkmode-btn .day svg { | |
| 1843 | + --toggle-icon: #575766; | |
| 1844 | +} | |
| 1845 | +.body_dark .navbar-right .js-darkmode-btn .night svg { | |
| 1846 | + --toggle-icon: #fff; | |
| 1847 | +} | |
| 1848 | + | |
| 1849 | +.navbar-right { | |
| 1850 | + display: flex; | |
| 1851 | + align-items: center; | |
| 1852 | + justify-content: flex-end; | |
| 1853 | +} | |
| 1854 | +.navbar-right > ul { | |
| 1855 | + align-items: center; | |
| 1856 | + gap: 8px; | |
| 1857 | +} | |
| 1858 | +.navbar-right .js-darkmode-btn { | |
| 1859 | + display: flex; | |
| 1860 | + align-items: center; | |
| 1861 | + justify-content: space-between; | |
| 1862 | + width: 5rem; | |
| 1863 | + height: 2.5rem; | |
| 1864 | + position: relative; | |
| 1865 | + background: rgba(37, 39, 51, 0.05); | |
| 1866 | + padding: 0 10px; | |
| 1867 | + color: #fff; | |
| 1868 | + border-radius: 24px; | |
| 1869 | + -webkit-transition: 0.3s ease-out; | |
| 1870 | + transition: 0.3s ease-out; | |
| 1871 | +} | |
| 1872 | +.navbar-right .js-darkmode-btn .day svg { | |
| 1873 | + --toggle-icon: #fff; | |
| 1874 | + -webkit-transition: 0.3s ease-out; | |
| 1875 | + transition: 0.3s ease-out; | |
| 1876 | + margin-top: 7px; | |
| 1877 | +} | |
| 1878 | +.navbar-right .js-darkmode-btn .night svg { | |
| 1879 | + --toggle-icon: #575766; | |
| 1880 | + -webkit-transition: 0.3s ease-out; | |
| 1881 | + transition: 0.3s ease-out; | |
| 1882 | + margin-top: 7px; | |
| 1883 | +} | |
| 1884 | +.navbar-right .js-darkmode-btn label { | |
| 1885 | + margin: 0; | |
| 1886 | + cursor: pointer; | |
| 1887 | + position: relative; | |
| 1888 | + z-index: 2; | |
| 1889 | +} | |
| 1890 | +.navbar-right .js-darkmode-btn .ball { | |
| 1891 | + height: 30px; | |
| 1892 | + width: 30px; | |
| 1893 | + position: absolute; | |
| 1894 | + background-color: var(--frmx_brand_color); | |
| 1895 | + border-radius: 50%; | |
| 1896 | + left: 4px; | |
| 1897 | + top: 50%; | |
| 1898 | + transform: translateY(-50%); | |
| 1899 | + cursor: default; | |
| 1900 | + transition: all 0.3s linear 0s; | |
| 1901 | + z-index: 1; | |
| 1902 | +} | |
| 1903 | +.navbar-right .js-darkmode-btn svg { | |
| 1904 | + font-size: 16px; | |
| 1905 | + transition: all 0.3s linear 0s; | |
| 1906 | +} | |
| 1907 | +.navbar-right .js-darkmode-btn input { | |
| 1908 | + display: none; | |
| 1909 | +} | |
| 1910 | + | |
| 1911 | +.settings-pro-icon { | |
| 1912 | + position: absolute; | |
| 1913 | + right: 0px; | |
| 1914 | + top: -5px; | |
| 1915 | +} | |
| 1916 | + | |
| 1917 | +.swal2-styled.swal2-confirm.upgrade-premium-button > a { | |
| 1918 | + color: black; | |
| 1919 | + font-weight: normal; | |
| 1920 | + text-decoration: none; | |
| 1921 | +} | |
| 1922 | + | |
| 1923 | +.swal2-footer.notification-pro-footer-wrap > a { | |
| 1924 | + text-decoration: none; | |
| 1925 | +} | |
| 1926 | + | |
| 1927 | +.notification-body .filter-button-group { | |
| 1928 | + display: flex; | |
| 1929 | + gap: 8px; | |
| 1930 | + padding-left: var(--gutter-25); | |
| 1931 | + padding-right: var(--gutter-25); | |
| 1932 | +} | |
| 1933 | +.notification-body .filter-button-group svg { | |
| 1934 | + top: 0; | |
| 1935 | +} | |
| 1936 | +.notification-body .filter-button-group .easydocs-btn { | |
| 1937 | + --notification-icon: var(--clr-dark); | |
| 1938 | + --btn-px: 1rem; | |
| 1939 | + --btn-fs: var(--fs-14); | |
| 1940 | + --btn-py: 0.4rem; | |
| 1941 | + display: flex; | |
| 1942 | + align-items: center; | |
| 1943 | + gap: 1px; | |
| 1944 | + --btn-bg: #e4e6eb; | |
| 1945 | + --btn-clr: var(--clr-dark); | |
| 1946 | + --btn-bc: transparent; | |
| 1947 | +} | |
| 1948 | +.notification-body .filter-button-group .easydocs-btn.mixitup-control-active { | |
| 1949 | + background-color: #e7f3ff; | |
| 1950 | + color: #1877f2; | |
| 1951 | + --notification-icon: #1877f2; | |
| 1952 | +} | |
| 1953 | +.notification-body .filter-button-group .easydocs-btn.mixitup-control-active .dashicons-screenoptions:before { | |
| 1954 | + color: #1877f2; | |
| 1955 | +} | |
| 1956 | +.notification-body .filter-button-group .easydocs-btn.mixitup-control-active:hover { | |
| 1957 | + background-color: #d2e6f9; | |
| 1958 | +} | |
| 1959 | +.notification-body .filter-button-group .easydocs-btn:hover { | |
| 1960 | + --notification-icon: var(--clr-white); | |
| 1961 | + background: #cdcdcd; | |
| 1962 | +} | |
| 1963 | + | |
| 1964 | +.notify-column { | |
| 1965 | + max-height: 25rem; | |
| 1966 | + overflow-y: auto; | |
| 1967 | + scrollbar-width: thin; | |
| 1968 | +} | |
| 1969 | +.notify-column::-webkit-scrollbar-track { | |
| 1970 | + background-color: var(--clr-text-light); | |
| 1971 | +} | |
| 1972 | +.notify-column::-webkit-scrollbar { | |
| 1973 | + width: 8px; | |
| 1974 | + background-color: #F5F5F5; | |
| 1975 | +} | |
| 1976 | +.notify-column::-webkit-scrollbar-thumb { | |
| 1977 | + background-color: var(--clr-text); | |
| 1978 | +} | |
| 1979 | +.notify-column { | |
| 1980 | + /* Notification updated css */ | |
| 1981 | +} | |
| 1982 | +.notify-column ul li { | |
| 1983 | + border-bottom: 1px solid #f1f2f3; | |
| 1984 | + margin-bottom: 0; | |
| 1985 | +} | |
| 1986 | +.notify-column ul li a { | |
| 1987 | + text-decoration: none; | |
| 1988 | + gap: 9px; | |
| 1989 | + align-content: space-around; | |
| 1990 | + padding: 10px; | |
| 1991 | + box-sizing: border-box; | |
| 1992 | +} | |
| 1993 | +.notify-column ul li a .notify-icon { | |
| 1994 | + padding-top: 5px; | |
| 1995 | +} | |
| 1996 | +.notify-column ul li a .notify-content-wrap { | |
| 1997 | + width: -webkit-fill-available; | |
| 1998 | +} | |
| 1999 | +.notify-column ul li a .notify-content-wrap .notify-content-header { | |
| 2000 | + color: hsl(210, 8%, 35%); | |
| 2001 | + font-size: 12px; | |
| 2002 | +} | |
| 2003 | +.notify-column ul li a .notify-content-wrap .notify-content-header .noti-type { | |
| 2004 | + color: var(--black_800); | |
| 2005 | + font-weight: 500; | |
| 2006 | +} | |
| 2007 | +.notify-column ul li a .notify-content-wrap .notify-content-summary p { | |
| 2008 | + color: hsl(206, 100%, 40%); | |
| 2009 | + font-size: 13px; | |
| 2010 | +} | |
| 2011 | +.notify-column ul li a:focus { | |
| 2012 | + box-shadow: none; | |
| 2013 | +} | |
| 2014 | +.notify-column ul li:hover { | |
| 2015 | + background: hsl(210, 8%, 90%); | |
| 2016 | +} | |
| 2017 | +.notify-column ul li:last-child { | |
| 2018 | + border-bottom: none; | |
| 2019 | +} | |
| 2020 | + | |
| 2021 | +.notification-item { | |
| 2022 | + display: flex; | |
| 2023 | + align-items: flex-start; | |
| 2024 | + cursor: pointer; | |
| 2025 | + gap: var(--gutter-10); | |
| 2026 | + padding: var(--gutter-10) 15px; | |
| 2027 | + margin-left: var(--gutter-10); | |
| 2028 | + margin-right: var(--gutter-10); | |
| 2029 | + -webkit-transition: 0.3s ease-out; | |
| 2030 | + transition: 0.3s ease-out; | |
| 2031 | + border-radius: 0.3125rem; | |
| 2032 | +} | |
| 2033 | +.notification-item .notification-image { | |
| 2034 | + width: 2.5rem; | |
| 2035 | + height: 2.5rem; | |
| 2036 | + border-radius: 50%; | |
| 2037 | + position: relative; | |
| 2038 | +} | |
| 2039 | +.notification-item .notification-image .notify-badge { | |
| 2040 | + right: 0; | |
| 2041 | + bottom: 0; | |
| 2042 | + position: absolute; | |
| 2043 | + width: 1.125rem; | |
| 2044 | + height: 1.125rem; | |
| 2045 | + line-height: 1.125rem; | |
| 2046 | + border-radius: 50%; | |
| 2047 | + text-align: center; | |
| 2048 | +} | |
| 2049 | +.notification-item .notification-image .notify-badge .dashicons { | |
| 2050 | + top: 0; | |
| 2051 | +} | |
| 2052 | +.notification-item .notification-image .notify-badge-blue { | |
| 2053 | + background-color: #22AAF1; | |
| 2054 | + background-image: linear-gradient(180deg, #22AAF1 0%, #066BDA 100%); | |
| 2055 | +} | |
| 2056 | +.notification-item .notification-image .notify-badge-blue .dashicons { | |
| 2057 | + font-size: 12px; | |
| 2058 | + color: white; | |
| 2059 | + padding-top: 2.5px; | |
| 2060 | +} | |
| 2061 | +.notification-item .notification-image .notify-badge-green { | |
| 2062 | + background-color: #62D77E; | |
| 2063 | + background-image: linear-gradient(180deg, #62D77E 0%, #2BB64E 100%); | |
| 2064 | +} | |
| 2065 | +.notification-item .notification-image .notify-badge-green .dashicons { | |
| 2066 | + font-size: 12px; | |
| 2067 | + color: white; | |
| 2068 | + padding-top: 4px; | |
| 2069 | +} | |
| 2070 | +.notification-item:hover { | |
| 2071 | + background: rgba(76, 76, 241, 0.05); | |
| 2072 | +} | |
| 2073 | + | |
| 2074 | +.notification-content .notify-name { | |
| 2075 | + font-size: var(--fs-14); | |
| 2076 | + font-weight: var(--fw-500); | |
| 2077 | + color: var(--clr-dark); | |
| 2078 | + padding-right: 0.5rem; | |
| 2079 | + margin: 0; | |
| 2080 | + line-height: 1; | |
| 2081 | +} | |
| 2082 | +.notification-content .notify-name a { | |
| 2083 | + text-decoration: none; | |
| 2084 | +} | |
| 2085 | +.notification-content .reply-text { | |
| 2086 | + font-size: 14px; | |
| 2087 | + color: var(--clr-text-light); | |
| 2088 | + line-height: 1; | |
| 2089 | + margin-top: 5px; | |
| 2090 | +} | |
| 2091 | + | |
| 2092 | +.notify-short-description { | |
| 2093 | + font-size: var(--fs-14); | |
| 2094 | + color: var(--clr-text); | |
| 2095 | + line-height: 1; | |
| 2096 | + margin-top: 0.325rem; | |
| 2097 | +} | |
| 2098 | + | |
| 2099 | +.notify-date { | |
| 2100 | + text-align: left; | |
| 2101 | + color: var(--clr-text-light); | |
| 2102 | + line-height: 1; | |
| 2103 | + margin-top: 0.375rem; | |
| 2104 | +} | |
| 2105 | + | |
| 2106 | +.eazydocs-no-content { | |
| 2107 | + display: flex; | |
| 2108 | + flex-direction: column; | |
| 2109 | + align-items: center; | |
| 2110 | + justify-content: center; | |
| 2111 | + margin: 80px auto; | |
| 2112 | + max-width: 600px; | |
| 2113 | + background: #fff; | |
| 2114 | + padding: 60px 40px; | |
| 2115 | + border-radius: 16px; | |
| 2116 | + box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01); | |
| 2117 | + border: 1px solid #f3f4f6; | |
| 2118 | + text-align: center; | |
| 2119 | +} | |
| 2120 | +.eazydocs-no-content img { | |
| 2121 | + width: 140px; | |
| 2122 | + max-width: 100%; | |
| 2123 | + height: auto; | |
| 2124 | + margin: 0 auto 24px; | |
| 2125 | + filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05)); | |
| 2126 | + transition: transform 0.3s ease; | |
| 2127 | +} | |
| 2128 | +.eazydocs-no-content img:hover { | |
| 2129 | + transform: scale(1.05); | |
| 2130 | +} | |
| 2131 | +.eazydocs-no-content .big-p { | |
| 2132 | + font-size: 1.25rem; | |
| 2133 | + color: #374151; | |
| 2134 | + font-weight: 600; | |
| 2135 | + margin-bottom: 32px; | |
| 2136 | + line-height: 1.5; | |
| 2137 | +} | |
| 2138 | +.eazydocs-no-content .forumax-empty-actions { | |
| 2139 | + display: flex; | |
| 2140 | + align-items: center; | |
| 2141 | + justify-content: center; | |
| 2142 | + gap: 16px; | |
| 2143 | + margin-top: 0; | |
| 2144 | + width: 100%; | |
| 2145 | +} | |
| 2146 | +.eazydocs-no-content .forumax-empty-actions .ezd-btn { | |
| 2147 | + display: inline-flex; | |
| 2148 | + align-items: center; | |
| 2149 | + justify-content: center; | |
| 2150 | + padding: 12px 28px; | |
| 2151 | + font-weight: 500; | |
| 2152 | + border-radius: 10px; | |
| 2153 | + transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); | |
| 2154 | + font-size: 0.95rem; | |
| 2155 | + gap: 8px; | |
| 2156 | +} | |
| 2157 | +.eazydocs-no-content .forumax-empty-actions .ezd-btn.button-primary { | |
| 2158 | + background: var(--frmx_brand_color); | |
| 2159 | + color: white; | |
| 2160 | + border: 1px solid transparent; | |
| 2161 | + box-shadow: 0 4px 6px -1px rgba(76, 76, 241, 0.3), 0 2px 4px -1px rgba(76, 76, 241, 0.1); | |
| 2162 | +} | |
| 2163 | +.eazydocs-no-content .forumax-empty-actions .ezd-btn.button-primary:hover { | |
| 2164 | + background-color: rgb(52.3497409326, 52.3497409326, 239.1502590674); | |
| 2165 | + transform: translateY(-2px); | |
| 2166 | + box-shadow: 0 10px 15px -3px rgba(76, 76, 241, 0.4), 0 4px 6px -2px rgba(76, 76, 241, 0.2); | |
| 2167 | +} | |
| 2168 | +.eazydocs-no-content .forumax-empty-actions .ezd-btn.button-primary:active { | |
| 2169 | + transform: translateY(0); | |
| 2170 | +} | |
| 2171 | +.eazydocs-no-content .forumax-empty-actions .ezd-btn.forumax-import-demo-btn:hover { | |
| 2172 | + transform: translateY(-2px); | |
| 2173 | + box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.3), 0 4px 6px -2px rgba(124, 58, 237, 0.2); | |
| 2174 | +} | |
| 2175 | +.eazydocs-no-content .forumax-empty-actions .ezd-btn .dashicons { | |
| 2176 | + font-size: 18px; | |
| 2177 | + width: 18px; | |
| 2178 | + height: 18px; | |
| 2179 | + line-height: 1; | |
| 2180 | + margin: 0; | |
| 2181 | +} | |
| 2182 | +.eazydocs-no-content .forumax-empty-actions .forumax-actions-separator { | |
| 2183 | + color: #9ca3af; | |
| 2184 | + font-weight: 500; | |
| 2185 | + font-size: 0.9rem; | |
| 2186 | + text-transform: uppercase; | |
| 2187 | + letter-spacing: 0.05em; | |
| 2188 | +} | |
| 2189 | + | |
| 2190 | +.bbpc-trash-filter { | |
| 2191 | + border-radius: 1.875rem; | |
| 2192 | + margin-bottom: 0; | |
| 2193 | + background-color: rgba(212, 23, 23, 0.1); | |
| 2194 | + transition: all 0.3s; | |
| 2195 | +} | |
| 2196 | +.bbpc-trash-filter:hover { | |
| 2197 | + background-color: rgba(212, 23, 23, 0.3); | |
| 2198 | +} | |
| 2199 | +.bbpc-trash-filter:hover a { | |
| 2200 | + color: #c10000; | |
| 2201 | +} | |
| 2202 | +.bbpc-trash-filter svg { | |
| 2203 | + fill: rgb(212, 23, 23); | |
| 2204 | +} | |
| 2205 | +.bbpc-trash-filter a { | |
| 2206 | + justify-content: center; | |
| 2207 | + gap: 0.3125rem; | |
| 2208 | + padding: 5px 15px; | |
| 2209 | + font-size: 14px; | |
| 2210 | + display: flex; | |
| 2211 | + align-items: center; | |
| 2212 | + color: rgb(212, 23, 23); | |
| 2213 | + text-decoration: none; | |
| 2214 | +} | |
| 2215 | +@media screen and (max-width: 1440px) { | |
| 2216 | + .bbpc-trash-filter .filter-label-trash { | |
| 2217 | + display: none; | |
| 2218 | + } | |
| 2219 | +} | |
| 2220 | + | |
| 2221 | +.bbpc-settings-icon { | |
| 2222 | + background: rgba(0, 0, 255, 0.058); | |
| 2223 | + padding: 10px; | |
| 2224 | + border-radius: 50%; | |
| 2225 | +} | |
| 2226 | + | |
| 2227 | +/*----------------------------------------*/ | |
| 2228 | +/* Grid Layout | |
| 2229 | +/*----------------------------------------*/ | |
| 2230 | +.container { | |
| 2231 | + width: 100%; | |
| 2232 | + padding-right: 15px; | |
| 2233 | + padding-left: 15px; | |
| 2234 | + margin-right: auto; | |
| 2235 | + margin-left: auto; | |
| 2236 | +} | |
| 2237 | +@media (min-width: 576px) { | |
| 2238 | + .container { | |
| 2239 | + max-width: 540px; | |
| 2240 | + } | |
| 2241 | +} | |
| 2242 | +@media (min-width: 768px) { | |
| 2243 | + .container { | |
| 2244 | + max-width: 720px; | |
| 2245 | + } | |
| 2246 | +} | |
| 2247 | +@media (min-width: 992px) { | |
| 2248 | + .container { | |
| 2249 | + max-width: 960px; | |
| 2250 | + } | |
| 2251 | +} | |
| 2252 | +@media (min-width: 1200px) { | |
| 2253 | + .container { | |
| 2254 | + max-width: 1170px; | |
| 2255 | + } | |
| 2256 | +} | |
| 2257 | +@media (min-width: 1441px) { | |
| 2258 | + .container { | |
| 2259 | + max-width: 1170px; | |
| 2260 | + } | |
| 2261 | +} | |
| 2262 | + | |
| 2263 | +.container-fluid { | |
| 2264 | + width: 100%; | |
| 2265 | + padding-right: 15px; | |
| 2266 | + padding-left: 15px; | |
| 2267 | + margin-right: auto; | |
| 2268 | + margin-left: auto; | |
| 2269 | +} | |
| 2270 | + | |
| 2271 | +.row { | |
| 2272 | + display: flex; | |
| 2273 | + flex-wrap: wrap; | |
| 2274 | + margin-right: -15px; | |
| 2275 | + margin-left: -15px; | |
| 2276 | +} | |
| 2277 | + | |
| 2278 | +.no-gutters { | |
| 2279 | + margin-right: 0; | |
| 2280 | + margin-left: 0; | |
| 2281 | +} | |
| 2282 | +.no-gutters > .col, | |
| 2283 | +.no-gutters > [class*=col-] { | |
| 2284 | + padding-right: 0; | |
| 2285 | + padding-left: 0; | |
| 2286 | +} | |
| 2287 | + | |
| 2288 | +html, body { | |
| 2289 | + height: auto !important; | |
| 2290 | +} | |
| 2291 | + | |
| 2292 | +body.bbpc-forum-ui { | |
| 2293 | + background: radial-gradient(80.99% 100% at 50% 0%, #00FF0A 0%, #36008E 100%), radial-gradient(50% 123.47% at 50% 50%, #EFE7C8 0%, #36008E 100%), linear-gradient(301.28deg, #FF006B 0%, #48DD9E 100%), linear-gradient(294.84deg, #5A60E4 0%, #D30000 100%), linear-gradient(52.29deg, #000000 0%, #00FF85 100%), radial-gradient(100% 138.69% at 100% 0%, #0007A5 0%, #FF7A00 100%), radial-gradient(70.41% 100% at 50% 0%, #D5B300 0%, #2200AA 100%); | |
| 2294 | + background-blend-mode: screen, screen, lighten, overlay, lighten, difference, normal; | |
| 2295 | +} | |
| 2296 | + | |
| 2297 | +/*----------------------------------------*/ | |
| 2298 | +/* 03. Sidebar Area | |
| 2299 | +/*----------------------------------------*/ | |
| 2300 | +.tab-container { | |
| 2301 | + display: flex; | |
| 2302 | +} | |
| 2303 | + | |
| 2304 | +.tab-menu { | |
| 2305 | + position: relative; | |
| 2306 | + background: #1e1e2d; | |
| 2307 | + flex: 0 0 auto; | |
| 2308 | + width: 380px; | |
| 2309 | + border-right: 1px solid rgba(255, 255, 255, 0.05); | |
| 2310 | +} | |
| 2311 | +.tab-menu.short { | |
| 2312 | + height: 100vh; | |
| 2313 | +} | |
| 2314 | +@media (max-width: 1680px) { | |
| 2315 | + .tab-menu { | |
| 2316 | + width: 25%; | |
| 2317 | + } | |
| 2318 | +} | |
| 2319 | +.tab-menu .tab-menu-left-layer { | |
| 2320 | + position: absolute; | |
| 2321 | + top: 0; | |
| 2322 | + left: 0; | |
| 2323 | + width: 100%; | |
| 2324 | + height: 100%; | |
| 2325 | + pointer-events: none; | |
| 2326 | + display: none; | |
| 2327 | +} | |
| 2328 | + | |
| 2329 | +.easydocs-tab { | |
| 2330 | + display: none; | |
| 2331 | +} | |
| 2332 | +.easydocs-tab.tab-active { | |
| 2333 | + display: block; | |
| 2334 | +} | |
| 2335 | + | |
| 2336 | +.easydocs-navbar { | |
| 2337 | + padding: 20px 0; | |
| 2338 | + margin: 0; | |
| 2339 | +} | |
| 2340 | + | |
| 2341 | +.easydocs-navitem { | |
| 2342 | + display: flex; | |
| 2343 | + align-items: center; | |
| 2344 | + justify-content: space-between; | |
| 2345 | + padding: 12px 20px 12px 22px; | |
| 2346 | + margin: 0 0 5px; | |
| 2347 | + cursor: pointer; | |
| 2348 | + -webkit-transition: 0.3s ease-out; | |
| 2349 | + transition: 0.3s ease-out; | |
| 2350 | + position: relative; | |
| 2351 | + border-radius: 0 8px 8px 0; | |
| 2352 | + border-left: 3px solid transparent; | |
| 2353 | + transition: all 0.2s ease; | |
| 2354 | +} | |
| 2355 | +.easydocs-navitem .link-wrapper { | |
| 2356 | + display: none; | |
| 2357 | + align-items: center; | |
| 2358 | + justify-content: end; | |
| 2359 | + width: auto; | |
| 2360 | + opacity: 0; | |
| 2361 | + transform: translateX(10px); | |
| 2362 | + transition: all 0.2s ease; | |
| 2363 | +} | |
| 2364 | +.easydocs-navitem.is-active { | |
| 2365 | + background: rgba(54, 153, 255, 0.1); | |
| 2366 | + color: #fff; | |
| 2367 | + border-left-color: var(--frmx_brand_color); | |
| 2368 | +} | |
| 2369 | +.easydocs-navitem.is-active .title { | |
| 2370 | + color: #fff; | |
| 2371 | + opacity: 1; | |
| 2372 | +} | |
| 2373 | +.easydocs-navitem.is-active .title .featured-image { | |
| 2374 | + background: var(--frmx_brand_color); | |
| 2375 | +} | |
| 2376 | +.easydocs-navitem.is-active .title .featured-image span.dashicons { | |
| 2377 | + color: #fff; | |
| 2378 | +} | |
| 2379 | +.easydocs-navitem.is-active .title .featured-image img { | |
| 2380 | + opacity: 0.9; | |
| 2381 | +} | |
| 2382 | +.easydocs-navitem.is-active .total-page { | |
| 2383 | + background: var(--frmx_brand_color); | |
| 2384 | + color: #fff; | |
| 2385 | + opacity: 1; | |
| 2386 | +} | |
| 2387 | +.easydocs-navitem .title { | |
| 2388 | + display: flex; | |
| 2389 | + align-items: center; | |
| 2390 | + gap: 15px; | |
| 2391 | + -webkit-transition: 0.3s ease-out; | |
| 2392 | + transition: 0.3s ease-out; | |
| 2393 | + text-decoration: none; | |
| 2394 | + font-size: 15px; | |
| 2395 | + font-weight: 500; | |
| 2396 | + color: #a2a3b7; | |
| 2397 | + flex: 1; | |
| 2398 | + overflow: hidden; | |
| 2399 | +} | |
| 2400 | +.easydocs-navitem .title .featured-image { | |
| 2401 | + width: 36px; | |
| 2402 | + height: 36px; | |
| 2403 | + flex-shrink: 0; | |
| 2404 | + border-radius: 6px; | |
| 2405 | + display: flex; | |
| 2406 | + align-items: center; | |
| 2407 | + justify-content: center; | |
| 2408 | + background: rgba(255, 255, 255, 0.05); | |
| 2409 | + transition: all 0.2s ease; | |
| 2410 | +} | |
| 2411 | +.easydocs-navitem .title .featured-image img { | |
| 2412 | + width: 100%; | |
| 2413 | + height: auto; | |
| 2414 | + border-radius: 6px; | |
| 2415 | +} | |
| 2416 | +.easydocs-navitem .title .featured-image span.dashicons { | |
| 2417 | + font-size: 20px; | |
| 2418 | + width: 20px; | |
| 2419 | + height: 20px; | |
| 2420 | + color: #82859a; | |
| 2421 | + transition: all 0.2s ease; | |
| 2422 | +} | |
| 2423 | +.easydocs-navitem .title span.easydocs-forums-title { | |
| 2424 | + white-space: nowrap; | |
| 2425 | + overflow: hidden; | |
| 2426 | + text-overflow: ellipsis; | |
| 2427 | +} | |
| 2428 | +.easydocs-navitem .total-page { | |
| 2429 | + font-size: 11px; | |
| 2430 | + font-weight: 600; | |
| 2431 | + color: #8c8fa8; | |
| 2432 | + background: rgba(255, 255, 255, 0.05); | |
| 2433 | + padding: 2px 8px; | |
| 2434 | + border-radius: 4px; | |
| 2435 | + margin-left: 10px; | |
| 2436 | + transition: all 0.2s ease; | |
| 2437 | +} | |
| 2438 | +.easydocs-navitem:hover:not(.is-active) { | |
| 2439 | + background: rgba(255, 255, 255, 0.03); | |
| 2440 | +} | |
| 2441 | +.easydocs-navitem:hover:not(.is-active) .title { | |
| 2442 | + color: #dcdde8; | |
| 2443 | +} | |
| 2444 | +.easydocs-navitem:hover:not(.is-active) .title .featured-image { | |
| 2445 | + background: rgba(255, 255, 255, 0.1); | |
| 2446 | +} | |
| 2447 | +.easydocs-navitem:hover:not(.is-active) .title .featured-image span.dashicons { | |
| 2448 | + color: #dcdde8; | |
| 2449 | +} | |
| 2450 | +.easydocs-navitem:hover .link-wrapper { | |
| 2451 | + opacity: 1; | |
| 2452 | + transform: translateX(0); | |
| 2453 | + display: flex; | |
| 2454 | +} | |
| 2455 | +.easydocs-navitem:hover .total-page { | |
| 2456 | + opacity: 0; | |
| 2457 | + display: none; | |
| 2458 | +} | |
| 2459 | +.easydocs-navitem .subforum-toggle { | |
| 2460 | + position: absolute; | |
| 2461 | + left: 2px; | |
| 2462 | + top: 50%; | |
| 2463 | + transform: translateY(-50%); | |
| 2464 | + width: 20px; | |
| 2465 | + height: 20px; | |
| 2466 | + padding: 0; | |
| 2467 | + border: none; | |
| 2468 | + background: transparent; | |
| 2469 | + cursor: pointer; | |
| 2470 | + display: flex; | |
| 2471 | + align-items: center; | |
| 2472 | + justify-content: center; | |
| 2473 | + z-index: 2; | |
| 2474 | + opacity: 0.5; | |
| 2475 | +} | |
| 2476 | +.easydocs-navitem .subforum-toggle .dashicons { | |
| 2477 | + font-size: 14px; | |
| 2478 | + width: 14px; | |
| 2479 | + height: 14px; | |
| 2480 | + color: #ccccd3; | |
| 2481 | +} | |
| 2482 | +.easydocs-navitem .subforum-toggle:hover { | |
| 2483 | + opacity: 1; | |
| 2484 | +} | |
| 2485 | +.easydocs-navitem .subforum-toggle[aria-expanded=false] { | |
| 2486 | + transform: translateY(-50%) rotate(-90deg); | |
| 2487 | +} | |
| 2488 | +.easydocs-navitem.is-subforum { | |
| 2489 | + padding-left: 35px; | |
| 2490 | + margin-left: 0; | |
| 2491 | + border-left: 3px solid transparent; | |
| 2492 | +} | |
| 2493 | +.easydocs-navitem.is-subforum .featured-image { | |
| 2494 | + width: 28px; | |
| 2495 | + height: 28px; | |
| 2496 | +} | |
| 2497 | +.easydocs-navitem.is-subforum .featured-image span.dashicons { | |
| 2498 | + font-size: 16px; | |
| 2499 | + width: 16px; | |
| 2500 | + height: 16px; | |
| 2501 | +} | |
| 2502 | +.easydocs-navitem.is-subforum .title { | |
| 2503 | + font-size: 14px; | |
| 2504 | +} | |
| 2505 | +.easydocs-navitem.is-subforum.depth-1 { | |
| 2506 | + padding-left: 35px; | |
| 2507 | +} | |
| 2508 | +.easydocs-navitem.is-subforum.depth-2 { | |
| 2509 | + padding-left: 55px; | |
| 2510 | +} | |
| 2511 | +.easydocs-navitem.is-subforum.depth-3 { | |
| 2512 | + padding-left: 75px; | |
| 2513 | +} | |
| 2514 | + | |
| 2515 | +.easydocs-subforum-container { | |
| 2516 | + list-style: none; | |
| 2517 | + margin: 0; | |
| 2518 | + padding: 0; | |
| 2519 | + overflow: hidden; | |
| 2520 | + transition: max-height 0.3s ease, opacity 0.2s ease; | |
| 2521 | +} | |
| 2522 | +.easydocs-subforum-container.is-collapsed { | |
| 2523 | + max-height: 0 !important; | |
| 2524 | + opacity: 0; | |
| 2525 | +} | |
| 2526 | + | |
| 2527 | +.easydocs-subforums { | |
| 2528 | + list-style: none; | |
| 2529 | + margin: 0; | |
| 2530 | + padding: 0; | |
| 2531 | + position: relative; | |
| 2532 | +} | |
| 2533 | + | |
| 2534 | +.link-wrapper .link { | |
| 2535 | + display: inline-flex; | |
| 2536 | + align-items: center; | |
| 2537 | + justify-content: center; | |
| 2538 | + width: 24px; | |
| 2539 | + height: 24px; | |
| 2540 | + border-radius: 4px; | |
| 2541 | + margin-left: 2px; | |
| 2542 | + transition: all 0.2s; | |
| 2543 | + text-decoration: none; | |
| 2544 | +} | |
| 2545 | +.link-wrapper .link a { | |
| 2546 | + text-decoration: none; | |
| 2547 | + display: flex; | |
| 2548 | + align-items: center; | |
| 2549 | + justify-content: center; | |
| 2550 | +} | |
| 2551 | +.link-wrapper .link .dashicons { | |
| 2552 | + color: #7e8299; | |
| 2553 | + font-size: 16px; | |
| 2554 | + width: 16px; | |
| 2555 | + height: 16px; | |
| 2556 | +} | |
| 2557 | +.link-wrapper .link:hover { | |
| 2558 | + background: rgba(255, 255, 255, 0.1); | |
| 2559 | +} | |
| 2560 | +.link-wrapper .link:hover .dashicons { | |
| 2561 | + color: #fff; | |
| 2562 | +} | |
| 2563 | +.link-wrapper .link.add-subforum:hover .dashicons { | |
| 2564 | + color: #4ade80; | |
| 2565 | +} | |
| 2566 | +.link-wrapper .link.forum-delete:hover .dashicons { | |
| 2567 | + color: #f1416c; | |
| 2568 | +} | |
| 2569 | + | |
| 2570 | +.easydocs-tab-content { | |
| 2571 | + flex: 1; | |
| 2572 | + width: auto; | |
| 2573 | + padding: 0 40px 40px 40px; | |
| 2574 | +} | |
| 2575 | +@media (max-width: 1680px) { | |
| 2576 | + .easydocs-tab-content { | |
| 2577 | + width: 70%; | |
| 2578 | + } | |
| 2579 | +} | |
| 2580 | +@media (max-width: 1440px) { | |
| 2581 | + .easydocs-tab-content { | |
| 2582 | + width: 70%; | |
| 2583 | + padding: 20px; | |
| 2584 | + } | |
| 2585 | +} | |
| 2586 | +.easydocs-tab-content .button { | |
| 2587 | + padding: 6px 25px; | |
| 2588 | +} | |
| 2589 | + | |
| 2590 | +.easydocs-filter-container { | |
| 2591 | + background: var(--clr-white); | |
| 2592 | + padding: var(--gutter-15) var(--gutter-30); | |
| 2593 | + border-radius: 0.375rem; | |
| 2594 | + display: flex; | |
| 2595 | + align-items: center; | |
| 2596 | + justify-content: space-between; | |
| 2597 | + background: linear-gradient(125.95deg, #C700BF 10.95%, #7DA900 100%), linear-gradient(341.1deg, #00C2FF 7.52%, #4E00B1 77.98%), linear-gradient(222.34deg, #A90000 12.99%, #00FFE0 87.21%), linear-gradient(130.22deg, #8FA600 18.02%, #5A31FF 100%); | |
| 2598 | + background-blend-mode: screen, color-dodge, color-dodge, normal; | |
| 2599 | + padding-left: 16px; | |
| 2600 | +} | |
| 2601 | +@media (max-width: 1440px) { | |
| 2602 | + .easydocs-filter-container { | |
| 2603 | + padding: 10px 20px; | |
| 2604 | + } | |
| 2605 | +} | |
| 2606 | + | |
| 2607 | +.single-item-filter { | |
| 2608 | + display: flex; | |
| 2609 | + align-items: center; | |
| 2610 | + gap: 5px; | |
| 2611 | +} | |
| 2612 | +.single-item-filter.all-available li { | |
| 2613 | + padding: 5px 15px; | |
| 2614 | +} | |
| 2615 | +.single-item-filter .easydocs-btn { | |
| 2616 | + display: flex; | |
| 2617 | + align-items: center; | |
| 2618 | + justify-content: center; | |
| 2619 | + font-size: 12px; | |
| 2620 | + gap: 0.3125rem; | |
| 2621 | + --btn-fs: var(--fs-14); | |
| 2622 | + transition: all 0.3s; | |
| 2623 | + border-radius: 15px; | |
| 2624 | + padding: 5px 25px; | |
| 2625 | + cursor: pointer; | |
| 2626 | + margin: 0; | |
| 2627 | +} | |
| 2628 | +.single-item-filter .easydocs-btn:hover { | |
| 2629 | + background-color: rgba(0, 0, 0, 0.1); | |
| 2630 | +} | |
| 2631 | +.single-item-filter .easydocs-btn.is-active { | |
| 2632 | + background-color: rgba(0, 0, 0, 0.8); | |
| 2633 | + color: #f1f1f1; | |
| 2634 | +} | |
| 2635 | +.single-item-filter .easydocs-btn.is-active img { | |
| 2636 | + filter: brightness(0) invert(1); | |
| 2637 | +} | |
| 2638 | +.single-item-filter .easydocs-btn.easydocs-btn-black-light { | |
| 2639 | + --btn-icon: #0D0E2B; | |
| 2640 | +} | |
| 2641 | +.single-item-filter .easydocs-btn.easydocs-btn-black-light svg { | |
| 2642 | + fill: #0D0E2B; | |
| 2643 | +} | |
| 2644 | +.single-item-filter .easydocs-btn.easydocs-btn-black-light.mixitup-control-active { | |
| 2645 | + --btn-bg: #0D0E2B; | |
| 2646 | + --btn-clr: var(--clr-white); | |
| 2647 | + --btn-icon: var(--clr-white); | |
| 2648 | +} | |
| 2649 | +.single-item-filter .easydocs-btn.easydocs-btn-black-light.mixitup-control-active svg { | |
| 2650 | + fill: #ffffff; | |
| 2651 | +} | |
| 2652 | +.single-item-filter .easydocs-btn.easydocs-btn-green-light { | |
| 2653 | + --btn-icon: #2DB22D; | |
| 2654 | +} | |
| 2655 | +.single-item-filter .easydocs-btn.easydocs-btn-green-light svg { | |
| 2656 | + fill: #2DB22D; | |
| 2657 | +} | |
| 2658 | +.single-item-filter .easydocs-btn.easydocs-btn-green-light.mixitup-control-active { | |
| 2659 | + --btn-bg: #2DB22D; | |
| 2660 | + --btn-clr: var(--clr-white); | |
| 2661 | + --btn-icon: var(--clr-white); | |
| 2662 | +} | |
| 2663 | +.single-item-filter .easydocs-btn.easydocs-btn-green-light.mixitup-control-active svg { | |
| 2664 | + fill: #ffffff; | |
| 2665 | +} | |
| 2666 | +.single-item-filter .easydocs-btn.easydocs-btn-blue-light { | |
| 2667 | + --btn-icon: #0275D8; | |
| 2668 | +} | |
| 2669 | +.single-item-filter .easydocs-btn.easydocs-btn-blue-light svg { | |
| 2670 | + fill: #0275D8; | |
| 2671 | +} | |
| 2672 | +.single-item-filter .easydocs-btn.easydocs-btn-blue-light.mixitup-control-active { | |
| 2673 | + --btn-bg: #0275D8; | |
| 2674 | + --btn-clr: var(--clr-white); | |
| 2675 | + --btn-icon: var(--clr-white); | |
| 2676 | +} | |
| 2677 | +.single-item-filter .easydocs-btn.easydocs-btn-blue-light.mixitup-control-active svg { | |
| 2678 | + fill: #fff; | |
| 2679 | +} | |
| 2680 | +.single-item-filter .easydocs-btn.easydocs-btn-orange-light { | |
| 2681 | + --btn-icon: #CC8033; | |
| 2682 | +} | |
| 2683 | +.single-item-filter .easydocs-btn.easydocs-btn-orange-light svg { | |
| 2684 | + fill: #CC8033; | |
| 2685 | +} | |
| 2686 | +.single-item-filter .easydocs-btn.easydocs-btn-orange-light.mixitup-control-active { | |
| 2687 | + --btn-bg: #CC8033; | |
| 2688 | + --btn-clr: var(--clr-white); | |
| 2689 | + --btn-icon: var(--clr-white); | |
| 2690 | +} | |
| 2691 | +.single-item-filter .easydocs-btn.easydocs-btn-orange-light.mixitup-control-active svg { | |
| 2692 | + fill: #fff; | |
| 2693 | +} | |
| 2694 | +.single-item-filter .easydocs-btn.easydocs-btn-gray-light { | |
| 2695 | + --btn-icon: #424242; | |
| 2696 | +} | |
| 2697 | +.single-item-filter .easydocs-btn.easydocs-btn-gray-light.mixitup-control-active { | |
| 2698 | + --btn-bg: #424242; | |
| 2699 | + --btn-clr: var(--clr-white); | |
| 2700 | + --btn-icon: var(--clr-white); | |
| 2701 | +} | |
| 2702 | +@media screen and (max-width: 1440px) { | |
| 2703 | + .single-item-filter .easydocs-btn { | |
| 2704 | + padding: 5px 15px; | |
| 2705 | + } | |
| 2706 | +} | |
| 2707 | + | |
| 2708 | +.single-grid-container { | |
| 2709 | + display: flex; | |
| 2710 | + align-items: center; | |
| 2711 | + border: 1px solid #EDEAE9; | |
| 2712 | + border-radius: 0.375rem; | |
| 2713 | + --grid-icon: #9199A1; | |
| 2714 | +} | |
| 2715 | +.single-grid-container a { | |
| 2716 | + text-decoration: none; | |
| 2717 | + padding: 0.3rem 0.5rem 0.5rem; | |
| 2718 | + height: 1.875rem; | |
| 2719 | +} | |
| 2720 | +.single-grid-container a:first-child { | |
| 2721 | + border-right: 1px solid #EDEAE9; | |
| 2722 | +} | |
| 2723 | +.single-grid-container .is-active { | |
| 2724 | + background: rgba(37, 39, 51, 0.05); | |
| 2725 | + --grid-icon: var(--clr-blue); | |
| 2726 | +} | |
| 2727 | + | |
| 2728 | +@media screen and (min-width: 1200px) { | |
| 2729 | + .container { | |
| 2730 | + max-width: 1170px; | |
| 2731 | + } | |
| 2732 | +} | |
| 2733 | +#wpcontent { | |
| 2734 | + height: 100vh; | |
| 2735 | +} | |
| 2736 | + | |
| 2737 | +/*# sourceMappingURL=admin-ui-style.css.map */ | |