organizr.css 24 KB

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