organizr.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137
  1. /*Preloader*/
  2. .preloader {
  3. width: 100%;
  4. height: 100%;
  5. top: 0px;
  6. position: fixed;
  7. z-index: 99999;
  8. background: rgba(0, 0, 0, 0.88);
  9. }
  10. .preloader .cssload-speeding-wheel {
  11. position: absolute;
  12. top: calc(50% - 3.5px);
  13. left: calc(50% - 3.5px);
  14. }
  15. .w-100 {
  16. width: 100%;
  17. }
  18. .iframe {
  19. width: 100%;
  20. height: calc(100vh - 40px);
  21. position: inherit;
  22. display: block;
  23. }
  24. /* Larger Images */
  25. #side-menu>li>a {
  26. padding: 10px 35px 10px 15px;
  27. display: block;
  28. }
  29. .sidebar .nav-second-level li a {
  30. padding: 14px 10px 14px 15px;
  31. }
  32. #side-menu .fa-fw {
  33. width: 30px !important;
  34. }
  35. .sttabs nav a {
  36. position: relative;
  37. display: block;
  38. overflow: hidden;
  39. text-overflow: ellipsis;
  40. white-space: nowrap;
  41. line-height: 1.5;
  42. }
  43. .common-list .notify {
  44. position: relative;
  45. margin-top: .5px;
  46. margin-right: 9px;
  47. }
  48. .ajaxloader {
  49. width: 100%;
  50. height: 100%;
  51. top: 0px;
  52. position: absolute;
  53. z-index: 99999;
  54. background: rgba(0, 0, 0, 0.68);
  55. margin: 0 auto;
  56. border-radius: 10px;
  57. }
  58. .lock-screen {
  59. background: url(../../plugins/images/login-register.jpg) center center/cover no-repeat !important;
  60. height: 100%;
  61. position: fixed;
  62. z-index: 1001;
  63. top: 0;
  64. width: 100%;
  65. -webkit-user-select: none;
  66. /* Chrome all / Safari all */
  67. -moz-user-select: none;
  68. /* Firefox all */
  69. -ms-user-select: none;
  70. /* IE 10+ */
  71. -o-user-select: none;
  72. user-select: none;
  73. }
  74. body.stop-scrolling {
  75. height: 100%;
  76. overflow: hidden;
  77. }
  78. .tabEditorIcon i {
  79. font-size: 35px;
  80. text-align: center !important;
  81. width: 35px !important;
  82. }
  83. .tabEditorIcon img {
  84. width: 35px !important;
  85. }
  86. .asColorPicker-wrap {
  87. position: relative;
  88. display: block;
  89. width: calc(100% - 35px);
  90. }
  91. .asColorPicker-trigger {
  92. position: absolute;
  93. top: 0;
  94. right: -32px;
  95. height: 38px;
  96. width: 37px;
  97. border: 0;
  98. border-radius: 0 4px 4px 0;
  99. }
  100. .asColorPicker-trigger span {
  101. width: 100%;
  102. height: 100%;
  103. display: inline-block;
  104. border-radius: 0 4px 4px 0;
  105. }
  106. .top-left-part {
  107. width: auto;
  108. max-width: 220px;
  109. float: left;
  110. border-right: transparent;
  111. display: inline-flex;
  112. flex-wrap: nowrap;
  113. }
  114. .tabs-style-flip {
  115. max-width: 1400px;
  116. margin: 0 auto;
  117. }
  118. .elip {
  119. white-space: nowrap;
  120. text-overflow: ellipsis;
  121. overflow: hidden;
  122. display: block;
  123. }
  124. .p-5 {
  125. padding: 5px !important
  126. }
  127. .error-page {
  128. width: 100%;
  129. background: #1b1a1a;
  130. height: 100%;
  131. position: fixed;
  132. display: none;
  133. z-index: 10;
  134. }
  135. img.lazyload.tabImages {
  136. height: 120px !important;
  137. object-fit: contain;
  138. -webkit-filter: drop-shadow(0px 0px 0px black);
  139. filter: drop-shadow(0px 0px 0px black);
  140. }
  141. .recent-cover {
  142. background-position: center;
  143. background-size: cover;
  144. height: 150px;
  145. width: 150px;
  146. top: 37px;
  147. position: relative;
  148. }
  149. .recent-poster {
  150. background-position: center;
  151. background-size: cover;
  152. height: 225px;
  153. width: 150px;
  154. position: relative;
  155. top: 0;
  156. left: 0;
  157. }
  158. .recent-title {
  159. position: absolute;
  160. bottom: 0px;
  161. background: rgba(31, 31, 31, 0.73);
  162. width: inherit;
  163. color: white;
  164. display: none;
  165. }
  166. .item:hover .recent-title {
  167. display: block;
  168. }
  169. .nowPlayingHover {
  170. margin-bottom: 14px;
  171. }
  172. .nowPlayingUserThumb:hover {
  173. opacity: 0;
  174. -webkit-transition: all .4s ease-in-out;
  175. transition: all .4s ease-in-out;
  176. }
  177. .tabLoaded {
  178. -webkit-filter: drop-shadow(0px 0px 5px #2cabe4);
  179. filter: drop-shadow(0px 0px 5px #2cabe4);
  180. }
  181. .user-bg {
  182. margin: -25px;
  183. height: 338px;
  184. overflow: hidden;
  185. position: relative;
  186. background-size: cover;
  187. background-position: top;
  188. background-repeat: no-repeat;
  189. }
  190. h2.m-b-0.font-medium.pull-right {
  191. -webkit-filter: drop-shadow(1px 1px 0px #1f1f1f);
  192. filter: drop-shadow(1px 1px 0px #1f1f1f);
  193. color: white;
  194. }
  195. .text-plex {
  196. color: #E5A00D;
  197. }
  198. .text-emby {
  199. color: #4CAF50;
  200. }
  201. .genre-list {
  202. position: absolute;
  203. bottom: 0;
  204. left: 0;
  205. }
  206. .mouse {
  207. cursor: pointer;
  208. }
  209. .el-element-overlay .el-card-item .el-overlay-1 img.imageSourceLeft {
  210. width: 56%;
  211. display: block;
  212. position: absolute;
  213. left: 0px;
  214. overflow: hidden;
  215. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  216. }
  217. .el-element-overlay .el-card-item .el-overlay-1 img.imageSourceRight {
  218. width: 56%;
  219. display: block;
  220. position: absolute;
  221. right: 0px;
  222. overflow: hidden;
  223. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  224. }
  225. img.imageSourceTop {
  226. top: -37px;
  227. left: 0px;
  228. margin: auto;
  229. display: block;
  230. z-index: -1;
  231. overflow: hidden;
  232. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  233. }
  234. img.imageSourceBottom {
  235. top: -114px;
  236. left: 0px;
  237. margin: auto;
  238. display: block;
  239. z-index: -1;
  240. overflow: hidden;
  241. filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
  242. }
  243. .recent-cover .hover-homepage-item {
  244. position: relative;
  245. top: -338px;
  246. height: 225px;
  247. }
  248. .recent-music span.elip.recent-title {
  249. position: absolute;
  250. bottom: -38px;
  251. background: rgba(31, 31, 31, 0.73);
  252. width: inherit;
  253. color: white;
  254. }
  255. .mailbox-widget .customtab li.active a, .mailbox-widget .customtab li.active, .mailbox-widget .customtab li.active a:focus {
  256. background: 0 0;
  257. color: #fff;
  258. border-color: #53e69d;
  259. }
  260. .nav-tabs.pull-right>li>a:hover {
  261. background: transparent;
  262. border-radius: 0px;
  263. }
  264. .homepageImageTitle {
  265. height: 40px;
  266. margin-top: -7px;
  267. }
  268. .grayscale {
  269. -webkit-filter: grayscale(100%);
  270. /* Safari 6.0 - 9.0 */
  271. filter: grayscale(100%);
  272. }
  273. td span.label.label-info {
  274. min-width: 80px !important;
  275. display: inline-block !important;
  276. }
  277. .inbox-center.table-responsive {
  278. max-height: 300px;
  279. overflow-y: auto;
  280. }
  281. .fc-event {
  282. border-radius: 0;
  283. border: none;
  284. cursor: pointer;
  285. font-size: 13px;
  286. margin: 1px -1px 0;
  287. padding: 5px;
  288. text-align: left;
  289. background: #2cabe3;
  290. }
  291. th.fc-list-header {
  292. text-align: left;
  293. }
  294. th.fc-list-header > .fc-list-heading-alt {
  295. margin-left: 10px;
  296. }
  297. .bg-calendar {
  298. background: transparent;
  299. color: inherit;
  300. }
  301. .fc-toolbar {
  302. margin: 0;
  303. padding: 19px 20px 11px 20px;
  304. }
  305. .fc-unthemed .fc-today {
  306. color: inherit !important;
  307. }
  308. .fc-popover {
  309. background-color: #1b1b1b
  310. }
  311. @media (max-width: 767px) {
  312. i.ti-close.visible-xs {
  313. display: inline !important;
  314. }
  315. img.lazyload.resultImages {
  316. height: 300px !important;
  317. object-fit: contain;
  318. width: 200px !important;
  319. margin: auto;
  320. }
  321. }
  322. @media screen and (max-width: 767px) {
  323. .table-responsive {
  324. width: 100%;
  325. margin-bottom: 0;
  326. overflow-y: hidden;
  327. -ms-overflow-style: -ms-autohiding-scrollbar;
  328. border: transparent;
  329. }
  330. .fc-day-grid-event .fc-content {
  331. white-space: nowrap;
  332. overflow: visible;
  333. }
  334. .fc-view-container .fc-view .fc-scroller {
  335. max-height: 212px !important;
  336. overflow: auto !important;
  337. }
  338. }
  339. .loop-animation {
  340. animation-iteration-count: infinite;
  341. -webkit-animation-iteration-count: infinite;
  342. -moz-animation-iteration-count: infinite;
  343. -o-animation-iteration-count: infinite;
  344. }
  345. @media (min-width: 768px) {
  346. img.lazyload.resultImages {
  347. height: 300px !important;
  348. object-fit: cover;
  349. width: 200px !important;
  350. margin: auto;
  351. }
  352. }
  353. .outside-request-div {
  354. position: absolute;
  355. right: 0;
  356. overflow: hidden;
  357. width: 32px;
  358. height: 32px;
  359. }
  360. .inside-request-div {
  361. top: -16px;
  362. right: -16px;
  363. padding: 0;
  364. width: 100%;
  365. height: 100%;
  366. -webkit-transform: rotate(45deg);
  367. transform: rotate(45deg);
  368. position: absolute;
  369. box-shadow: 0 0 4px rgba(0, 0, 0, .6);
  370. line-height: 24px;
  371. opacity: 1;
  372. -webkit-transition: all .2s;
  373. transition: all .2s;
  374. }
  375. .inside-over-request-div {
  376. top: -28px;
  377. right: -25px;
  378. padding: 0;
  379. width: 50px;
  380. height: 50px;
  381. -webkit-transform: rotate(45deg);
  382. transform: rotate(45deg);
  383. position: absolute;
  384. box-shadow: 0 0 4px rgba(0, 0, 0, .6);
  385. line-height: 24px;
  386. opacity: 1;
  387. -webkit-transition: all .2s;
  388. transition: all .2s;
  389. }
  390. .unapproved-request-div {
  391. background-color: #cc7b19;
  392. }
  393. .hover-homepage-item:hover {
  394. background: radial-gradient(farthest-corner at 50% 50%, rgba(50, 50, 50, .5) 50%, #323232 100%);
  395. opacity: 1;
  396. transition: linear .5s;
  397. }
  398. .hover-homepage-item {
  399. width: 100%;
  400. height: 100%;
  401. opacity: 0;
  402. }
  403. input#inviteCodeInput {
  404. font-size: 400%;
  405. height: 100%;
  406. }
  407. .bg-plex {
  408. background: #E5A00D;
  409. }
  410. .bg-emby {
  411. background: #4CAF50;
  412. }
  413. .bg-sab {
  414. background: #ffb300;
  415. }
  416. .bg-deluge {
  417. background: #425570;
  418. }
  419. .bg-nzbget {
  420. background: #3e8c25;
  421. }
  422. .bg-transmission {
  423. background: #950000;
  424. }
  425. .bg-qbit {
  426. background: #2f67ba;
  427. }
  428. .request-result-item {
  429. width: 230px;
  430. }
  431. .customPoster {
  432. margin: 50px auto;
  433. text-align: center;
  434. position: absolute;
  435. top: 0;
  436. left: 0;
  437. width: 200px;
  438. }
  439. .customPoster a {
  440. text-decoration: none;
  441. -webkit-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  442. -moz-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  443. -ms-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  444. -o-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  445. transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
  446. -webkit-transition: all 0.5s;
  447. -moz-transition: all 0.5s;
  448. transition: all 0.5s;
  449. display: inline-block;
  450. text-align: center;
  451. text-transform: uppercase;
  452. font-size: 35px;
  453. font-weight: 700;
  454. font-family: inherit;
  455. line-height: 0.8;
  456. color: #707cd2;
  457. text-shadow: 0 -1px 15px rgba(0, 0, 0, 0.9), 0 1px 0 #7d7d7d, 0 3px 0 #828282, 0 5px 0 #6c6c6c, 0 7px 0 #727272, 0 9px 0 #939393, 0 6px 50px rgb(27, 26, 26);
  458. width: 200px;
  459. max-width: 200px;
  460. }
  461. .customPoster a:first-line {
  462. font-size: 0.8em;
  463. }
  464. .el-overlay-1:hover .customPoster a {
  465. -webkit-transform: perspective(8em) rotateX(11deg) scale(1.2);
  466. -moz-transform: perspective(8em) rotateX(11deg) scale(1.2);
  467. -ms-transform: perspective(8em) rotateX(11deg) scale(1.2);
  468. -o-transform: perspective(8em) rotateX(11deg) scale(1.2);
  469. transform: perspective(8em) rotateX(11deg) scale(1.2);
  470. text-shadow: 0 -1px 15px black, 0 1px 0 #7f6303, 0 2px 0 #846703, 0 0px 0 #896b03, 0 1px 0 #8e6f03, 0 2px 0 #937203, 0 2px 30px rgba(252, 223, 92, 0.6);
  471. }
  472. .homepage-drag {
  473. background-size: contain;
  474. background-position: right;
  475. height: 60px;
  476. background-repeat: no-repeat;
  477. background-origin: content-box;
  478. border-radius: 10px;
  479. }
  480. .homepage-number {
  481. float: left;
  482. width: 36px !important;
  483. text-align: center;
  484. vertical-align: middle;
  485. height: 36px;
  486. border-radius: 20px;
  487. margin-top: 7px;
  488. padding: 11px;
  489. }
  490. span.homepage-text {
  491. margin-top: 16px;
  492. display: inline-block;
  493. }
  494. .faded {
  495. opacity: .5;
  496. }
  497. .qr-code {
  498. display: block;
  499. width: 100%;
  500. height: 380px;
  501. background-size: contain;
  502. margin: auto;
  503. background-repeat: no-repeat;
  504. }
  505. .btn-link, a {
  506. color: #2cabe3;
  507. text-decoration: none;
  508. }
  509. @media (pointer: coarse) {
  510. #side-menu > li > a:hover,
  511. #side-menu > li > a:focus {
  512. background: transparent;
  513. }
  514. }
  515. .fc-view-container .fc-view .fc-scroller {
  516. max-height: 215px !important;
  517. }
  518. .fc-view-container .fc-month-view .fc-scroller,
  519. .fc-view-container .fc-basicWeek-view .fc-scroller {
  520. max-height: 100% !important;
  521. height: 100% !important;
  522. }
  523. .fc-scroller .simplebar-content {
  524. min-height: auto !important;
  525. overflow-x: hidden !important;
  526. padding-bottom: 0px !important;
  527. }
  528. .simplebar-content {
  529. min-height: auto !important;
  530. overflow-x: auto !important;
  531. }
  532. .simplebar-scroll-content {
  533. margin-bottom: 0px !important;
  534. }
  535. .flexbox {
  536. display: flex;
  537. flex-wrap: wrap;
  538. }
  539. @media (min-width: 2000px) {
  540. .col-xl {
  541. -ms-flex-preferred-size: 0;
  542. flex-basis: 0;
  543. -ms-flex-positive: 1;
  544. flex-grow: 1;
  545. max-width: 100%;
  546. }
  547. .col-xl-auto {
  548. -ms-flex: 0 0 auto;
  549. flex: 0 0 auto;
  550. width: auto;
  551. max-width: none;
  552. }
  553. .col-xl-1 {
  554. -ms-flex: 0 0 8.333333%;
  555. flex: 0 0 8.333333%;
  556. max-width: 8.333333%;
  557. }
  558. .col-xl-2 {
  559. -ms-flex: 0 0 16.666667%;
  560. flex: 0 0 16.666667%;
  561. max-width: 16.666667%;
  562. }
  563. .col-xl-3 {
  564. -ms-flex: 0 0 25%;
  565. flex: 0 0 25%;
  566. max-width: 25%;
  567. }
  568. .col-xl-4 {
  569. -ms-flex: 0 0 33.333333%;
  570. flex: 0 0 33.333333%;
  571. max-width: 33.333333%;
  572. }
  573. .col-xl-5 {
  574. -ms-flex: 0 0 41.666667%;
  575. flex: 0 0 41.666667%;
  576. max-width: 41.666667%;
  577. }
  578. .col-xl-6 {
  579. -ms-flex: 0 0 50%;
  580. flex: 0 0 50%;
  581. max-width: 50%;
  582. }
  583. .col-xl-7 {
  584. -ms-flex: 0 0 58.333333%;
  585. flex: 0 0 58.333333%;
  586. max-width: 58.333333%;
  587. }
  588. .col-xl-8 {
  589. -ms-flex: 0 0 66.666667%;
  590. flex: 0 0 66.666667%;
  591. max-width: 66.666667%;
  592. }
  593. .col-xl-9 {
  594. -ms-flex: 0 0 75%;
  595. flex: 0 0 75%;
  596. max-width: 75%;
  597. }
  598. .col-xl-10 {
  599. -ms-flex: 0 0 83.333333%;
  600. flex: 0 0 83.333333%;
  601. max-width: 83.333333%;
  602. }
  603. .col-xl-11 {
  604. -ms-flex: 0 0 91.666667%;
  605. flex: 0 0 91.666667%;
  606. max-width: 91.666667%;
  607. }
  608. .col-xl-12 {
  609. -ms-flex: 0 0 100%;
  610. flex: 0 0 100%;
  611. max-width: 100%;
  612. }
  613. .order-xl-first {
  614. -ms-flex-order: -1;
  615. order: -1;
  616. }
  617. .order-xl-last {
  618. -ms-flex-order: 13;
  619. order: 13;
  620. }
  621. .order-xl-0 {
  622. -ms-flex-order: 0;
  623. order: 0;
  624. }
  625. .order-xl-1 {
  626. -ms-flex-order: 1;
  627. order: 1;
  628. }
  629. .order-xl-2 {
  630. -ms-flex-order: 2;
  631. order: 2;
  632. }
  633. .order-xl-3 {
  634. -ms-flex-order: 3;
  635. order: 3;
  636. }
  637. .order-xl-4 {
  638. -ms-flex-order: 4;
  639. order: 4;
  640. }
  641. .order-xl-5 {
  642. -ms-flex-order: 5;
  643. order: 5;
  644. }
  645. .order-xl-6 {
  646. -ms-flex-order: 6;
  647. order: 6;
  648. }
  649. .order-xl-7 {
  650. -ms-flex-order: 7;
  651. order: 7;
  652. }
  653. .order-xl-8 {
  654. -ms-flex-order: 8;
  655. order: 8;
  656. }
  657. .order-xl-9 {
  658. -ms-flex-order: 9;
  659. order: 9;
  660. }
  661. .order-xl-10 {
  662. -ms-flex-order: 10;
  663. order: 10;
  664. }
  665. .order-xl-11 {
  666. -ms-flex-order: 11;
  667. order: 11;
  668. }
  669. .order-xl-12 {
  670. -ms-flex-order: 12;
  671. order: 12;
  672. }
  673. .offset-xl-0 {
  674. margin-left: 0;
  675. }
  676. .offset-xl-1 {
  677. margin-left: 8.333333%;
  678. }
  679. .offset-xl-2 {
  680. margin-left: 16.666667%;
  681. }
  682. .offset-xl-3 {
  683. margin-left: 25%;
  684. }
  685. .offset-xl-4 {
  686. margin-left: 33.333333%;
  687. }
  688. .offset-xl-5 {
  689. margin-left: 41.666667%;
  690. }
  691. .offset-xl-6 {
  692. margin-left: 50%;
  693. }
  694. .offset-xl-7 {
  695. margin-left: 58.333333%;
  696. }
  697. .offset-xl-8 {
  698. margin-left: 66.666667%;
  699. }
  700. .offset-xl-9 {
  701. margin-left: 75%;
  702. }
  703. .offset-xl-10 {
  704. margin-left: 83.333333%;
  705. }
  706. .offset-xl-11 {
  707. margin-left: 91.666667%;
  708. }
  709. }
  710. input.has-success {
  711. border-bottom: 8px solid #4CAF50;
  712. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  713. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  714. }
  715. .message-center {
  716. max-height: 250px;
  717. }
  718. .fc-alternate {
  719. background: transparent;
  720. border-bottom: 1px solid;
  721. border-color: rgba(120,130,140,.13);
  722. }
  723. .fc-state-disabled {
  724. display: none;
  725. }
  726. .resultBox-outside {
  727. max-height: 96vh;
  728. }
  729. .resultBox-inside {
  730. height: 100%;
  731. max-height: 85vh;
  732. overflow-x: hidden;
  733. overflow-y: scroll;
  734. }
  735. .loginLogo {
  736. max-width: 350px;
  737. max-height: 225px;
  738. }
  739. .recent-items .owl-item {
  740. height: 225px;
  741. }
  742. .tooltip-content5 {
  743. position: absolute;
  744. z-index: 9999;
  745. min-width: 300px;
  746. max-width: 350px;
  747. left: 50%;
  748. bottom: 100%;
  749. font-size: 20px;
  750. line-height: 1.4;
  751. text-align: center;
  752. font-weight: 400;
  753. color: #fff;
  754. background: 0 0;
  755. opacity: 0;
  756. margin: 0 0 20px -150px;
  757. cursor: default;
  758. pointer-events: none;
  759. -webkit-font-smoothing: antialiased;
  760. -webkit-transition: opacity .3s .3s;
  761. transition: opacity .3s .3s;
  762. }
  763. .tooltip-inner2 {
  764. background: #2b2b2b;
  765. padding: 40px 0px;
  766. -webkit-transform: translate3d(0,100%,0);
  767. transform: translate3d(0,100%,0);
  768. webkit-transition: -webkit-transform .3s;
  769. transition: transform .3s;
  770. }
  771. #scroll {
  772. position:fixed;
  773. right:10px;
  774. bottom:10px;
  775. cursor:pointer;
  776. width:50px;
  777. height:50px;
  778. background-color:#3498db;
  779. text-indent:-9999px;
  780. display:none;
  781. -webkit-border-radius:60px;
  782. -moz-border-radius:60px;
  783. border-radius:60px;
  784. z-index: 1;
  785. }
  786. #scroll span {
  787. position:absolute;
  788. top:50%;
  789. left:50%;
  790. margin-left:-8px;
  791. margin-top:-12px;
  792. height:0;
  793. width:0;
  794. border:8px solid transparent;
  795. border-bottom-color:#ffffff;
  796. }
  797. #scroll:hover {
  798. background-color:#e74c3c;
  799. opacity:1;filter:"alpha(opacity=100)";
  800. -ms-filter:"alpha(opacity=100)";
  801. }
  802. .white-popup-block {
  803. max-width: 80%;
  804. }
  805. ul.nav.customtab.nav-tabs.nav-low-margin {
  806. margin: -25px -25px 0px -25px !important;
  807. }
  808. i.fa.fa-life-ring.fa-fw {
  809. color: #C62828;
  810. }
  811. .ping {
  812. position: relative;
  813. margin-top: 0;
  814. }
  815. .ping .heartbit {
  816. position: absolute;
  817. top: -15px;
  818. left: 15px;
  819. height: 25px;
  820. width: 25px;
  821. z-index: 10;
  822. border: 5px solid #ff7676;
  823. border-radius: 70px;
  824. -moz-animation: heartbit 1s ease-out;
  825. -moz-animation-iteration-count: infinite;
  826. -o-animation: heartbit 1s ease-out;
  827. -o-animation-iteration-count: infinite;
  828. -webkit-animation: heartbit 1s ease-out;
  829. -webkit-animation-iteration-count: infinite;
  830. animation-iteration-count: infinite;
  831. }
  832. .ping .point {
  833. width: 6px;
  834. height: 6px;
  835. -webkit-border-radius: 30px;
  836. -moz-border-radius: 30px;
  837. border-radius: 30px;
  838. background-color: #ff7676;
  839. position: absolute;
  840. left: 25px;
  841. top: -5px;
  842. }
  843. .sidebar .arrow {
  844. position: absolute;
  845. right: 20px;
  846. top: 17px;
  847. }
  848. /* NOTIFY ALTERS */
  849. .iziToast.success-notify>.iziToast-body .iziToast-icon {
  850. color: rgb(0, 255, 184);
  851. }
  852. .iziToast.success-notify>.iziToast-body .iziToast-title,
  853. .iziToast.success-notify>.iziToast-body .iziToast-message {
  854. color: white;
  855. }
  856. .success-notify .iziToast-progressbar div {
  857. background: rgb(0, 255, 184);
  858. }
  859. .iziToast.success-notify.iziToast-layout2 {
  860. background: #1b1a1a;
  861. border: 1px solid #232323;
  862. border-bottom: transparent;
  863. }
  864. .iziToast.info-notify>.iziToast-body .iziToast-icon {
  865. color: #3A83F0;
  866. }
  867. .iziToast.info-notify>.iziToast-body .iziToast-title,
  868. .iziToast.info-notify>.iziToast-body .iziToast-message {
  869. color: white;
  870. }
  871. .info-notify .iziToast-progressbar div {
  872. background: #3A83F0;
  873. }
  874. .iziToast.info-notify.iziToast-layout2 {
  875. background: #1b1a1a;
  876. border: 1px solid #232323;
  877. border-bottom: transparent;
  878. }
  879. .iziToast.warning-notify>.iziToast-body .iziToast-icon {
  880. color: #FFEB3B;
  881. }
  882. .iziToast.warning-notify>.iziToast-body .iziToast-title,
  883. .iziToast.warning-notify>.iziToast-body .iziToast-message {
  884. color: white;
  885. }
  886. .warning-notify .iziToast-progressbar div {
  887. background: #FFEB3B;
  888. }
  889. .iziToast.warning-notify.iziToast-layout2 {
  890. background: #1b1a1a;
  891. border: 1px solid #232323;
  892. border-bottom: transparent;
  893. }
  894. .iziToast.error-notify>.iziToast-body .iziToast-icon {
  895. color: #F44336;
  896. }
  897. .iziToast.error-notify>.iziToast-body .iziToast-title,
  898. .iziToast.error-notify>.iziToast-body .iziToast-message {
  899. color: white;
  900. }
  901. .error-notify .iziToast-progressbar div {
  902. background: #F44336;
  903. }
  904. .iziToast.error-notify.iziToast-layout2 {
  905. background: #1b1a1a;
  906. border: 1px solid #232323;
  907. border-bottom: transparent;
  908. }
  909. .iziToast.update-notify>.iziToast-body .iziToast-icon {
  910. color: #9e67f4;
  911. }
  912. .iziToast.update-notify>.iziToast-body .iziToast-title,
  913. .iziToast.update-notify>.iziToast-body .iziToast-message {
  914. color: white;
  915. }
  916. .update-notify .iziToast-progressbar div {
  917. background: #9e67f4;
  918. }
  919. .iziToast.update-notify.iziToast-layout2 {
  920. background: #1b1a1a;
  921. border: 1px solid #232323;
  922. border-bottom: transparent;
  923. }
  924. .iziToast.success-notify.iziToast-balloon:before,
  925. .iziToast.update-notify.iziToast-balloon:before,
  926. .iziToast.info-notify.iziToast-balloon:before,
  927. .iziToast.warning-notify.iziToast-balloon:before,
  928. .iziToast.error-notify.iziToast-balloon:before {
  929. border-top-color: #1b1a1a;
  930. }
  931. /* ALERTIFY ALERTS */
  932. .ajs-message.ajs-success-alertify { color: rgb(0, 255, 184); background-color: #1b1a1a; border-color: rgb(0, 255, 184); }
  933. .ajs-message.ajs-info-alertify { color: #3A83F0; background-color: #1b1a1a; border-color: #3A83F0; }
  934. .ajs-message.ajs-warning-alertify { color: #FFEB3B; background-color: #1b1a1a; border-color: #FFEB3B; }
  935. .ajs-message.ajs-error-alertify { color: #F44336; background-color: #1b1a1a; border-color: #F44336; }
  936. .ajs-message.ajs-update-alertify { color: #9e67f4; background-color: #1b1a1a; border-color: #9e67f4; }
  937. .noty_type__success-noty .noty_body{
  938. background: #1b1a1a;
  939. color: rgb(0, 255, 184);
  940. border: 1px solid #232323;
  941. border-bottom: transparent;
  942. }
  943. .noty_type__info-noty .noty_body{
  944. background: #1b1a1a;
  945. color: #3A83F0;
  946. border: 1px solid #232323;
  947. border-bottom: transparent;
  948. }
  949. .noty_type__warning-noty .noty_body
  950. {
  951. background: #1b1a1a;
  952. color: #FFEB3B;
  953. border: 1px solid #232323;
  954. border-bottom: transparent;
  955. }
  956. .noty_type__error-noty .noty_body{
  957. background: #1b1a1a;
  958. color: #F44336;
  959. border: 1px solid #232323;
  960. border-bottom: transparent;
  961. }
  962. .noty_type__update-noty .noty_body{
  963. background: #1b1a1a;
  964. color: #9e67f4;
  965. border: 1px solid #232323;
  966. border-bottom: transparent;
  967. }
  968. .noty_type__success-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  969. background-color: rgb(0, 255, 184);
  970. }
  971. .noty_type__info-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  972. background-color: #3A83F0;
  973. }
  974. .noty_type__warning-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  975. background-color: #FFEB3B;
  976. }
  977. .noty_type__error-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  978. background-color: #F44336;
  979. }
  980. .noty_type__update-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  981. background-color: #9e67f4;
  982. }
  983. .noty_type__success-noty ellipse {
  984. fill: rgb(0, 255, 184);
  985. }
  986. .noty_type__info-noty ellipse {
  987. fill: #3A83F0;
  988. }
  989. .noty_type__warning-noty ellipse {
  990. fill: #FFEB3B;
  991. }
  992. .noty_type__error-noty ellipse {
  993. fill: #F44336;
  994. }
  995. .noty_type__update-noty ellipse {
  996. fill: #9e67f4;
  997. }
  998. .navbar-header {
  999. max-height: 40px;
  1000. }
  1001. span#main-logo {
  1002. max-width: 220px;
  1003. }
  1004. img.dark-logo {
  1005. max-width: 220px;
  1006. max-height: 40px;
  1007. }
  1008. img.dark-logo-side {
  1009. max-width: 160px;
  1010. max-height: 35px;
  1011. }
  1012. .select2-container {
  1013. box-sizing: border-box;
  1014. display: inline-block;
  1015. margin: 0;
  1016. position: relative;
  1017. vertical-align: middle;
  1018. width: 100% !important;
  1019. }
  1020. span.select2-selection.select2-selection--single,
  1021. span.select2-selection.select2-selection--multiple{
  1022. background: inherit;
  1023. height: 38px;
  1024. }
  1025. img.img-chooser {
  1026. width: 20px;
  1027. }
  1028. .select2-container--default .select2-selection--single .select2-selection__rendered {
  1029. color: inherit;
  1030. line-height: 38px;
  1031. }
  1032. .select2-container--default .select2-selection--single .select2-selection__arrow {
  1033. height: 38px;
  1034. position: absolute;
  1035. top: 1px;
  1036. right: 1px;
  1037. width: 20px;
  1038. }
  1039. .select2-dropdown {
  1040. background-color: inherit;
  1041. border: 1px solid #aaa;
  1042. border-radius: 4px;
  1043. box-sizing: border-box;
  1044. display: block;
  1045. position: absolute;
  1046. left: -100000px;
  1047. width: 100%;
  1048. z-index: 1051;
  1049. }
  1050. .fc-scroller .simplebar-track.horizontal {
  1051. display: none;
  1052. }