_pages.scss 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211
  1. /*---Pages Layout---*/
  2. /*---Page Content Header & Breadcrumb ---*/
  3. .content-header{
  4. position: relative;
  5. padding: ($default-gutter-width / 2 ) ($default-gutter-width / 2) 0 ($default-gutter-width / 2);
  6. .page-title{
  7. margin: 0 0px 0 0;
  8. display: inline-block;
  9. padding: 0 $default-gutter-width 0 0;
  10. color: $dark;
  11. }
  12. .breadcrumb-item + .breadcrumb-item::before{
  13. content: "-";
  14. }
  15. .breadcrumb {
  16. padding: 0;
  17. margin-bottom: 0;
  18. color: lighten($dark, 20%);
  19. background-color: transparent;
  20. .breadcrumb-item{
  21. a{
  22. color: lighten($dark, 20%);
  23. }
  24. }
  25. }
  26. >.breadcrumb{
  27. >li{
  28. >a{
  29. color: lighten($dark, 30%);
  30. text-decoration: none;
  31. display: inline-block;
  32. >i{
  33. margin-right: 5px;
  34. }
  35. }
  36. &+li:before{
  37. content: '>\00a0';
  38. }
  39. }
  40. }
  41. >.container{
  42. >.breadcrumb{
  43. position: relative;
  44. top: 0;
  45. >li{
  46. >a{
  47. color: lighten($dark, 30%);
  48. text-decoration: none;
  49. display: inline-block;
  50. >i{
  51. margin-right: 5px;
  52. }
  53. }
  54. &+li:before{
  55. content: '>\00a0';
  56. }
  57. }
  58. }
  59. }
  60. .right-title{
  61. text-align: right;
  62. .dropdown{
  63. .dropdown-menu{
  64. padding: 15px;
  65. width: 245px;
  66. border-radius: $default-border-radius;
  67. .dropdown-item{
  68. padding: 10px 10px;
  69. font-size: 1.2rem;
  70. i{
  71. font-size: 1.4rem;
  72. margin-right: 10px;
  73. }
  74. &:hover{
  75. background-color: transparent;
  76. }
  77. }
  78. }
  79. >.btn{
  80. width: 50px;
  81. height: 50px;
  82. @include box-shadow(0 3px 20px 0 rgba($black,.17)!important);
  83. border-color: $white !important;
  84. background: $white;
  85. border-radius: $border-circle;
  86. padding: 0!important;
  87. color: $dark !important;
  88. }
  89. }
  90. }
  91. }
  92. .breadcrumb-item{
  93. &.active{
  94. color: $dark;
  95. }
  96. + .breadcrumb-item::before{
  97. color: lighten($dark, 30%);
  98. }
  99. }
  100. .onlyheader{
  101. .content-header{
  102. .page-title{
  103. color: lighten($black, 30%);
  104. }
  105. .breadcrumb{
  106. color: lighten($black, 50%);
  107. .breadcrumb-item{
  108. a{
  109. color: lighten($black, 50%);
  110. }
  111. }
  112. &.active{
  113. color: lighten($black, 30%);
  114. }
  115. }
  116. }
  117. .breadcrumb-item{
  118. &.active{
  119. color: lighten($black, 30%);
  120. }
  121. + .breadcrumb-item::before{
  122. color: lighten($black, 30%);
  123. }
  124. }
  125. }
  126. @include screen-md-max {
  127. .content-header{
  128. >.breadcrumb{
  129. position: relative;
  130. margin-top: 5px;
  131. top: 0;
  132. right: 0;
  133. float: none;
  134. background: lighten($black, 40%);
  135. padding-left: 10px;
  136. li:before{
  137. color: lighten($black, 70%);
  138. }
  139. }
  140. >.container{
  141. >.breadcrumb{
  142. position: relative;
  143. margin-top: 5px;
  144. top: 0;
  145. right: 0;
  146. float: none;
  147. background: lighten($black, 40%);
  148. padding-left: 10px;
  149. li:before{
  150. color: lighten($black, 70%);
  151. }
  152. }
  153. }
  154. }
  155. .navbar-custom-menu{
  156. .navbar-nav{
  157. margin: 0;
  158. float: left;
  159. >li{
  160. float: left;
  161. >a{
  162. padding-top: 15px;
  163. padding-bottom: 15px;
  164. line-height: 15px;
  165. }
  166. }
  167. }
  168. }
  169. }
  170. .left-block{
  171. height: auto;
  172. width: $inn-pg-sid-bar-w;
  173. position: absolute;
  174. padding: 0;
  175. border-right: 1px solid $light;
  176. background-color: rgba($white, 1);
  177. .left-content-area{
  178. >.box{
  179. background-color: rgba($white, 0.0) !important;
  180. }
  181. >.card {
  182. background-color: rgba($white, 0.0) !important;
  183. }
  184. }
  185. .open-left-block{
  186. position: absolute;
  187. top: 45%;
  188. right: -41px;
  189. z-index: 9;
  190. }
  191. }
  192. .fixed{
  193. .left-block{
  194. height: 100%;
  195. }
  196. }
  197. .reverse-mode{
  198. .open-left-block {
  199. right: auto;
  200. left: -41px;
  201. }
  202. .left-block {
  203. right: 0;
  204. border-left: 1px solid $light;
  205. }
  206. .right-block{
  207. margin-left: 0;
  208. margin-right: $inn-pg-sid-bar-w;
  209. }
  210. }
  211. .fixed{
  212. .left-block {
  213. position: fixed;
  214. top: 0;
  215. padding-top: $main-hed-nav;
  216. padding-bottom: $main-hed-nav;
  217. }
  218. }
  219. .right-block{
  220. width: calc(100% - 280);
  221. min-height: calc(100vh - 64px);
  222. overflow: auto;
  223. margin-left: $inn-pg-sid-bar-w;
  224. }
  225. @include screen-sm-max{
  226. .left-block{
  227. left: -$inn-pg-sid-bar-w;
  228. z-index: 1;
  229. position: fixed;
  230. -webkit-transition: -webkit-transform .3s ease-in-out, left .3s ease-in-out;
  231. -moz-transition: -moz-transform .3s ease-in-out, left .3s ease-in-out;
  232. -o-transition: -o-transform .3s ease-in-out, left .3s ease-in-out;
  233. transition: transform .3s ease-in-out, left .3s ease-in-out;
  234. }
  235. .left-block{
  236. &.open-panel{
  237. left: 0;
  238. }
  239. }
  240. .reverse-mode{
  241. .left-block {
  242. right: -$inn-pg-sid-bar-w;
  243. left: auto;
  244. -webkit-transition: -webkit-transform .3s ease-in-out, right .3s ease-in-out;
  245. -moz-transition: -moz-transform .3s ease-in-out, right .3s ease-in-out;
  246. -o-transition: -o-transform .3s ease-in-out, right .3s ease-in-out;
  247. transition: transform .3s ease-in-out, right .3s ease-in-out;
  248. }
  249. .left-block{
  250. &.open-panel{
  251. right: 0;
  252. }
  253. }
  254. }
  255. .fixed{
  256. .left-block {
  257. padding-top: $hed-max;
  258. }
  259. }
  260. .right-block{
  261. width: 100%;
  262. margin-left: 0;
  263. }
  264. }
  265. .scrollable{
  266. position: relative;
  267. }
  268. /*progress*/
  269. .progress{
  270. margin-bottom: 20px;
  271. border-radius: 5px;
  272. -webkit-box-shadow: none;
  273. box-shadow: none;
  274. .progress-bar{
  275. border-radius: 5px;
  276. }
  277. >.progress-bar{
  278. -webkit-box-shadow: none;
  279. box-shadow: none;
  280. }
  281. &.sm{
  282. border-radius: 5px;
  283. height: 10px;
  284. .progress-bar{
  285. border-radius: 5px;
  286. }
  287. }
  288. &.xs{
  289. border-radius: 5px;
  290. height: 7px;
  291. .progress-bar{
  292. border-radius: 5px;
  293. }
  294. }
  295. &.xxs{
  296. border-radius: 5px;
  297. height: 3px;
  298. .progress-bar{
  299. border-radius: 5px;
  300. }
  301. }
  302. &.vertical{
  303. position: relative;
  304. width: 30px;
  305. height: 200px;
  306. display: inline-block;
  307. margin-right: 10px;
  308. >.progress-bar{
  309. width: 100%;
  310. position: absolute;
  311. bottom: 0;
  312. }
  313. &.progress-sm{
  314. width: 20px;
  315. }
  316. &.sm{
  317. width: 20px;
  318. }
  319. &.progress-xs{
  320. width: 20px;
  321. }
  322. &.xs{
  323. width: 20px;
  324. }
  325. &.progress-xxs{
  326. width: 10px;
  327. }
  328. &.xxs{
  329. width: 3px;
  330. }
  331. }
  332. }
  333. .progress-sm{
  334. border-radius: 5px;
  335. height: 10px;
  336. .progress-bar{
  337. border-radius: 5px;
  338. }
  339. }
  340. .progress-xs{
  341. border-radius: 5px;
  342. height: 7px;
  343. .progress-bar{
  344. border-radius: 5px;
  345. }
  346. }
  347. .progress-xxs{
  348. border-radius: 5px;
  349. height: 3px;
  350. .progress-bar{
  351. border-radius: 5px;
  352. }
  353. }
  354. .progress-group{
  355. .progress-text {
  356. font-weight: 600;
  357. }
  358. .progress-number{
  359. float: right;
  360. }
  361. }
  362. .table{
  363. tr{
  364. >td{
  365. .progress {
  366. margin: 0;
  367. }
  368. }
  369. }
  370. }
  371. .progress-bar-default {
  372. background-color: $dark;
  373. }
  374. /*hidden*/
  375. .hidden-xs-up{
  376. display: none !important;
  377. }
  378. @include screen-xs{
  379. .hidden-xs-down {
  380. display: none !important;
  381. }
  382. }
  383. @include screen-sm {
  384. .hidden-sm-up {
  385. display: none !important;
  386. }
  387. }
  388. @include screen-sm-max {
  389. .hidden-sm-down {
  390. display: none !important;
  391. }
  392. }
  393. @include screen-md {
  394. .hidden-md-up {
  395. display: none !important;
  396. }
  397. }
  398. @include screen-md-max {
  399. .hidden-md-down {
  400. display: none !important;
  401. }
  402. }
  403. @include screen-lg {
  404. .hidden-lg-up {
  405. display: none !important;
  406. }
  407. }
  408. @include screen-lg-max {
  409. .hidden-lg-down {
  410. display: none !important;
  411. }
  412. }
  413. @include screen-xl {
  414. .hidden-xl-up {
  415. display: none !important;
  416. }
  417. }
  418. .hidden-xl-down {
  419. display: none !important;
  420. }
  421. @include screen-md-max {
  422. .chart-legend>li {
  423. float: left;
  424. margin-right: 10px;
  425. }
  426. }
  427. /*tab*/
  428. .tabcontent-border{
  429. border: 1px solid lighten($black, 75%);
  430. border-top: 0px;
  431. }
  432. .customtab{
  433. li{
  434. a{
  435. &.nav-link{
  436. border: 0px;
  437. padding: 0.5rem 0.75rem;
  438. color: lighten($black, 45%);
  439. }
  440. }
  441. }
  442. }
  443. /*Vertical tabs*/
  444. .vtabs {
  445. display: table;
  446. .tabs-vertical{
  447. width: 150px;
  448. border-bottom: 0px;
  449. border-right: 1px solid rgba(lighten($black, 50%), 0.13);
  450. display: table-cell;
  451. vertical-align: top;
  452. li{
  453. .nav-link {
  454. color: lighten($black, 15%);
  455. margin-bottom: 10px;
  456. border: 0px;
  457. border-radius: $fct-border-radius 0 0 $fct-border-radius;
  458. }
  459. }
  460. }
  461. .tab-content{
  462. display: table-cell;
  463. padding: 10px;
  464. vertical-align: top;
  465. }
  466. }
  467. .tabs-vertical{
  468. li{
  469. .nav-link{
  470. @include hover-full-state{
  471. border: 0px;
  472. color: $white;
  473. }
  474. }
  475. }
  476. }
  477. /*Custom vertical tab*/
  478. .customvtab{
  479. .tabs-vertical{
  480. li{
  481. .nav-link{
  482. @include hover-full-state{
  483. background: transparent !important;
  484. border: 0px;
  485. margin-right: -1px;
  486. }
  487. }
  488. }
  489. }
  490. }
  491. .customtab2 {
  492. li{
  493. a{
  494. &.nav-link{
  495. border: 0px;
  496. margin-right: 3px;
  497. color: lighten($black, 45%);
  498. @include hover-full-state{
  499. color: $white;
  500. }
  501. }
  502. }
  503. }
  504. }
  505. @include screen-sm-max {
  506. .vtabs {
  507. .tabs-vertical {
  508. width: auto;
  509. }
  510. }
  511. }
  512. /*google map Page*/
  513. .gmaps{
  514. height: 300px;
  515. background: $light;
  516. border-radius: $default-border-radius;
  517. }
  518. .gmaps-panaroma{
  519. height: 300px;
  520. background: $light;
  521. border-radius: $default-border-radius;
  522. }
  523. .gmaps-overlay{
  524. display: block;
  525. text-align: center;
  526. color: $white;
  527. font-size: 16px;
  528. line-height: 40px;
  529. background: $primary;
  530. border-radius: $default-border-radius;
  531. padding: 10px 20px;
  532. }
  533. .gmaps-overlay_arrow{
  534. left: 50%;
  535. margin-left: -16px;
  536. width: 0;
  537. height: 0;
  538. position: absolute;
  539. .above{
  540. bottom: -15px;
  541. border-left: 16px solid transparent;
  542. border-right: 16px solid transparent;
  543. border-top: 16px solid $primary;
  544. }
  545. .below {
  546. top: -15px;
  547. border-left: 16px solid transparent;
  548. border-right: 16px solid transparent;
  549. border-bottom: 16px solid $primary;
  550. }
  551. }
  552. /*wizard*/
  553. .wizard-content{
  554. .wizard {
  555. width: 100%;
  556. overflow: hidden;
  557. .content {
  558. margin-left: 0;
  559. }
  560. >.steps{
  561. position: relative;
  562. display: block;
  563. width: 100%;
  564. max-width: 1600px;
  565. margin: 0 auto;
  566. z-index: 1;
  567. .current-info{
  568. position: absolute;
  569. left: -99999px;
  570. }
  571. >ul{
  572. display: table;
  573. width: 100%;
  574. table-layout: fixed;
  575. margin: 0;
  576. padding: 0;
  577. list-style: none;
  578. >li{
  579. display: inline-block;
  580. width: auto;
  581. text-align: center;
  582. position: relative;
  583. padding: 0.5rem 2.5rem;
  584. border-radius: $fct-border-radius;
  585. margin: 0 10px;
  586. background-color: $light;
  587. border: 2px solid $light;
  588. a {
  589. position: relative;
  590. display: block;
  591. }
  592. &:before{
  593. left: 0;
  594. }
  595. &:after{
  596. right: 0;
  597. }
  598. &:first-child:before, &:last-child:after{
  599. content: none;
  600. }
  601. &.current{
  602. color: $white;
  603. >a{
  604. color: $white;
  605. cursor: default;
  606. }
  607. }
  608. &.disabled{
  609. a{
  610. color: lighten($black, 45%);
  611. cursor: default ;
  612. @include hover-focus-state{
  613. color: lighten($black, 45%);
  614. cursor: default ;
  615. }
  616. }
  617. }
  618. &.done{
  619. color: $white;
  620. a{
  621. color: $white;
  622. @include hover-focus-state{
  623. color: $white;
  624. }
  625. }
  626. }
  627. &.error{
  628. border-color: $danger;
  629. color: $danger;
  630. }
  631. }
  632. }
  633. }
  634. &.vertical{
  635. >.steps{
  636. >ul{
  637. >li{
  638. a{
  639. margin-top: 0px;
  640. }
  641. display: block;
  642. width: 100%;
  643. margin: 10px 0px;
  644. @include before-after-state{
  645. background-color: transparent;
  646. }
  647. &.current{
  648. @include before-after-state{
  649. background-color: transparent;
  650. }
  651. ~li{
  652. @include before-after-state{
  653. background-color: transparent;
  654. }
  655. }
  656. }
  657. }
  658. }
  659. display: inline;
  660. float: left;
  661. width: 15%;
  662. }
  663. &.wizard-circle{
  664. >.steps{
  665. .step{
  666. left: 50%;
  667. width: 50px;
  668. }
  669. }
  670. }
  671. }
  672. >.content{
  673. overflow: hidden;
  674. position: relative;
  675. width: auto;
  676. padding: 0;
  677. margin: 0;
  678. >.title{
  679. position: absolute;
  680. left: -99999px;
  681. }
  682. >.body{
  683. padding: 20px 20px;
  684. }
  685. >iframe {
  686. border: 0;
  687. width: 100%;
  688. height: 100%;
  689. }
  690. }
  691. >.actions{
  692. position: relative;
  693. display: block;
  694. text-align: right;
  695. padding: 20px 20px 20px;
  696. >ul {
  697. float: right;
  698. list-style: none;
  699. padding: 0;
  700. margin: 0;
  701. :after {
  702. content: '';
  703. display: table;
  704. clear: both;
  705. }
  706. >li{
  707. float: left;
  708. +li{
  709. margin-left: 10px;
  710. }
  711. >a{
  712. color: $white;
  713. display: block;
  714. padding: 7px 12px;
  715. border-radius: $fct-border-radius;
  716. border: 1px solid transparent ;
  717. @include hover-state{
  718. -webkit-box-shadow: 0 0 0 100px rgba($black, .05) inset;
  719. box-shadow: 0 0 0 100px rgba($black, .05) inset;
  720. }
  721. &[href="#previous"]{
  722. background-color: $white;
  723. color: lighten($dark, 10%);
  724. border: 1px solid $light ;
  725. @include hover-state{
  726. -webkit-box-shadow: 0 0 0 100px rgba($black, .04) inset;
  727. box-shadow: 0 0 0 100px rgba($black, .04) inset;
  728. }
  729. }
  730. }
  731. &.disabled{
  732. >a{
  733. color: lighten($black, 60%);
  734. @include hover-focus-state{
  735. color: lighten($black, 60%);
  736. }
  737. &[href="#previous"]{
  738. -webkit-box-shadow: none;
  739. box-shadow: none;
  740. @include hover-focus-state{
  741. -webkit-box-shadow: none;
  742. box-shadow: none;
  743. }
  744. }
  745. }
  746. }
  747. }
  748. }
  749. }
  750. &.wizard-circle{
  751. >.steps{
  752. >ul{
  753. >li{
  754. @include before-after-state{
  755. top: 45px;
  756. width: 50%;
  757. height: 3px;
  758. }
  759. &.current{
  760. &:after{
  761. background-color: $light;
  762. }
  763. ~li{
  764. @include before-after-state{
  765. background-color: $light;
  766. }
  767. }
  768. }
  769. }
  770. }
  771. }
  772. }
  773. &.wizard-notification{
  774. >.steps{
  775. >ul{
  776. >li{
  777. @include before-after-state{
  778. top: 39px;
  779. width: 50%;
  780. height: 2px;
  781. }
  782. &.current{
  783. .step {
  784. line-height: 36px;
  785. }
  786. &:after{
  787. background-color: $light;
  788. }
  789. ~li{
  790. @include before-after-state{
  791. background-color: $light;
  792. }
  793. }
  794. }
  795. &.done{
  796. .step {
  797. color: $white;
  798. }
  799. }
  800. }
  801. }
  802. .step{
  803. width: 40px;
  804. height: 40px;
  805. line-height: 40px;
  806. font-size: 1.3rem;
  807. border-radius: 15%;
  808. background-color: $light;
  809. &:after {
  810. content: "";
  811. width: 0;
  812. height: 0;
  813. position: absolute;
  814. bottom: 0;
  815. left: 50%;
  816. margin-left: -8px;
  817. margin-bottom: -8px;
  818. border-left: 7px solid transparent;
  819. border-right: 7px solid transparent;
  820. border-top: 8px solid $light;
  821. }
  822. }
  823. }
  824. }
  825. }
  826. }
  827. @include screen-tl{
  828. .wizard-content{
  829. .wizard{
  830. &.wizard-circle{
  831. >.steps{
  832. .step {
  833. width: 50px;
  834. height: 50px;
  835. }
  836. }
  837. }
  838. >.steps{
  839. .step{
  840. left: 50%;
  841. margin-left: -24px;
  842. }
  843. }
  844. &.vertical{
  845. >.steps{
  846. .step{
  847. left: 50%;
  848. }
  849. width: 20%;
  850. }
  851. }
  852. }
  853. }
  854. }
  855. @include screen-sm-max{
  856. .wizard-content{
  857. .wizard{
  858. >.steps{
  859. >ul{
  860. margin-bottom: 20px;
  861. >li{
  862. display: block;
  863. float: left;
  864. width: 50%;
  865. margin: 5px 0;
  866. >a{
  867. margin-bottom: 0;
  868. }
  869. &:first-child:before{
  870. content: '';
  871. }
  872. &:last-child:after{
  873. content: '';
  874. }
  875. }
  876. }
  877. }
  878. &.vertical{
  879. >.steps {
  880. width: 30%;
  881. }
  882. }
  883. }
  884. }
  885. }
  886. @include screen-xs{
  887. .wizard-content{
  888. .wizard{
  889. >.steps{
  890. >ul{
  891. >li{
  892. width: 100%;
  893. }
  894. }
  895. }
  896. &.vertical{
  897. >.steps{
  898. >ul{
  899. >li{
  900. display: block;
  901. float: left;
  902. width: 100%;
  903. margin: 5px 0px;
  904. }
  905. }
  906. width: 100%;
  907. float: none;
  908. }
  909. }
  910. }
  911. }
  912. }
  913. /*weather*/
  914. .weather-location{
  915. input {
  916. background-color: rgba($black, .5);
  917. border: 1px solid rgba($white, .5);
  918. &:focus{
  919. border: 1px solid rgba($white, .7);
  920. }
  921. }
  922. }
  923. .weather-day{
  924. border-left: 1px solid rgba($black, .05);
  925. &.is-today{
  926. border-left: none;
  927. }
  928. }
  929. .weather-icon{
  930. canvas {
  931. width: 90px;
  932. height: 90px;
  933. }
  934. }
  935. /*---panel---*/
  936. .panel{
  937. position: relative;
  938. background-color: $white;
  939. border: 0 solid transparent;
  940. > *:not(.panel-loading):not(.collapsing) {
  941. -webkit-transition: opacity .3s;
  942. transition: opacity .3s;
  943. }
  944. &.is-loading{
  945. > *:not(.panel-loading) {
  946. opacity: .3;
  947. }
  948. .panel-loading {
  949. display: block;
  950. opacity: 1;
  951. }
  952. }
  953. &.is-dragging {
  954. opacity: 0.8;
  955. cursor: move;
  956. }
  957. >.nav-tabs-vertical{
  958. .nav-tabs {
  959. margin-left: -1px;
  960. >li{
  961. >a {
  962. border-left: none;
  963. border-radius: 0;
  964. }
  965. }
  966. &.nav-tabs-reverse{
  967. margin-right: -1px;
  968. >li{
  969. >a{
  970. border-right: none;
  971. border-radius: 0;
  972. }
  973. }
  974. }
  975. }
  976. }
  977. &:hover{
  978. .panel-actions{
  979. .show-on-hover {
  980. display: inline-block;
  981. }
  982. }
  983. }
  984. .panel-actions{
  985. .show-on-hover {
  986. display: none;
  987. }
  988. }
  989. &.is-fullscreen{
  990. position: fixed;
  991. top: 0;
  992. left: 0;
  993. z-index: 9999;
  994. width: 100%;
  995. height: 100%;
  996. border-radius: 0;
  997. .panel-loading {
  998. border-radius: 0;
  999. }
  1000. .panel-actions [data-toggle=collapse] {
  1001. display: none;
  1002. }
  1003. }
  1004. &.is-close {
  1005. display: none;
  1006. }
  1007. &.is-collapse {
  1008. .panel-body {
  1009. display: none;
  1010. height: 0;
  1011. }
  1012. }
  1013. >.alert {
  1014. padding-left: 30px;
  1015. padding-right: 30px;
  1016. }
  1017. >.alert-dismissible {
  1018. padding-right: 50px;
  1019. }
  1020. }
  1021. .panel-content{
  1022. >.row{
  1023. padding-left: 30px;
  1024. padding-right: 30px;
  1025. >[class*="col-"]{
  1026. padding-left: 30px;
  1027. padding-right: 30px;
  1028. }
  1029. }
  1030. }
  1031. .panel-body{
  1032. position: relative;
  1033. padding: 1.25rem;
  1034. .list-group-item{
  1035. border-radius: 0;
  1036. }
  1037. &::after{
  1038. display: block;
  1039. content: "";
  1040. clear: both;
  1041. }
  1042. h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, .h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child{
  1043. margin-top: 0;
  1044. }
  1045. >*:last-child{
  1046. margin-bottom: 0;
  1047. }
  1048. >.list-group-dividered:only-child{
  1049. >.list-group-item:last-child{
  1050. border-bottom-color: transparent;
  1051. }
  1052. }
  1053. &.scrollable-vertical {
  1054. padding-left: 0 !important;
  1055. padding-right: 0 !important;
  1056. > .scrollable-container{
  1057. > .scrollable-content{
  1058. padding-left: 30px;
  1059. padding-right: 30px;
  1060. }
  1061. }
  1062. >.scrollable-bar{
  1063. margin-top: 0;
  1064. margin-bottom: 10px;
  1065. height: calc(100% - 30px);
  1066. transform: translateX(-26px);
  1067. }
  1068. }
  1069. &.scrollable-horizontal{
  1070. padding-top: 0 !important;
  1071. padding-bottom: 0 !important;
  1072. >.scrollable-container{
  1073. >.scrollable-content{
  1074. padding-top: 0;
  1075. padding-bottom: 30px;
  1076. }
  1077. }
  1078. >.scrollable-bar {
  1079. margin-left: 0;
  1080. margin-right: 30px;
  1081. width: calc(100% - 60px);
  1082. transform: translateY(-26px);
  1083. }
  1084. }
  1085. }
  1086. .panel-heading{
  1087. position: relative;
  1088. padding: 0;
  1089. border-bottom: 1px solid transparent;
  1090. border-top-right-radius: 0.214rem;
  1091. border-top-left-radius: 0.214rem;
  1092. +.alert{
  1093. border-radius: 0;
  1094. }
  1095. >.nav-tabs{
  1096. border-bottom: none;
  1097. }
  1098. +.nav-tabs{
  1099. margin-top: -0.715rem;
  1100. }
  1101. >.dropdown{
  1102. .dropdown-toggle{
  1103. color: inherit;
  1104. }
  1105. }
  1106. +.panel-body{
  1107. padding-top: 0;
  1108. }
  1109. +.list-group{
  1110. .list-group-item:first-child {
  1111. border-top-width: 0;
  1112. }
  1113. }
  1114. }
  1115. .panel-heading-tab{
  1116. padding: 10px 30px 0;
  1117. background-color: $info;
  1118. >.nav-tabs{
  1119. .nav-link{
  1120. color: $white;
  1121. &.hover{
  1122. color: lighten($black, 45%);
  1123. }
  1124. &:hover{
  1125. color: lighten($black, 45%);
  1126. }
  1127. &.active{
  1128. color: lighten($black, 45%);
  1129. background-color: $white;
  1130. }
  1131. &:active{
  1132. color: lighten($black, 45%);
  1133. background-color: $white;
  1134. }
  1135. }
  1136. }
  1137. }
  1138. .panel-footer{
  1139. padding: 0 30px 15px;
  1140. border-top: 1px solid transparent;
  1141. background-color: transparent;
  1142. border-bottom-right-radius: 0.214rem;
  1143. border-bottom-left-radius: 0.214rem;
  1144. }
  1145. .table{
  1146. +.panel-footer {
  1147. padding-top: 15px;
  1148. border-color: lighten($black, 80%);
  1149. }
  1150. }
  1151. .panel-title {
  1152. display: block;
  1153. margin-top: 0;
  1154. margin-bottom: 0;
  1155. padding: 1.25rem;
  1156. font-size: 18px;
  1157. color: lighten($black, 30%);
  1158. >.icon, >.badge{
  1159. margin-right: 10px;
  1160. }
  1161. small, .small{
  1162. color: lighten($black, 45%);
  1163. >a{
  1164. color: inherit;
  1165. }
  1166. }
  1167. >small, >.small{
  1168. >a{
  1169. color: inherit;
  1170. }
  1171. }
  1172. >a{
  1173. color: inherit;
  1174. }
  1175. }
  1176. .panel-desc {
  1177. display: block;
  1178. padding: 5px 0 0;
  1179. margin: 0;
  1180. font-size: 1rem;
  1181. color: lighten($black, 45%);
  1182. }
  1183. .panel-actions {
  1184. position: absolute;
  1185. right: 30px;
  1186. top: 50%;
  1187. transform: translate(0%, -50%);
  1188. margin: auto;
  1189. z-index: 1;
  1190. }
  1191. @include screen-xs{
  1192. .panel-actions {
  1193. right: 20px;
  1194. }
  1195. }
  1196. ul{
  1197. .panel-actions {
  1198. list-style: none;
  1199. > li {
  1200. display: inline-block;
  1201. margin-left: 8px;
  1202. &:first-child {
  1203. margin-left: 0;
  1204. }
  1205. }
  1206. }
  1207. }
  1208. .panel-actions{
  1209. a{
  1210. &.dropdown-toggle {
  1211. text-decoration: none;
  1212. }
  1213. }
  1214. .dropdown {
  1215. display: inline-block;
  1216. }
  1217. .dropdown-toggle {
  1218. display: inline-block;
  1219. }
  1220. .panel-action {
  1221. display: inline-block;
  1222. padding: 8px 10px;
  1223. color: lighten($black, 60%);
  1224. text-decoration: none;
  1225. cursor: pointer;
  1226. background-color: transparent;
  1227. @include hover-active-state {
  1228. color: lighten($black, 40%);
  1229. }
  1230. }
  1231. .progress{
  1232. width: 100px;
  1233. margin: 0;
  1234. }
  1235. .pagination {
  1236. margin: 0;
  1237. }
  1238. }
  1239. ul{
  1240. &.panel-actions{
  1241. >li{
  1242. display: inline-block;
  1243. margin-left: 8px;
  1244. &:first-child {
  1245. margin-left: 0;
  1246. }
  1247. }
  1248. }
  1249. }
  1250. .panel-toolbar {
  1251. padding: 5px 15px;
  1252. margin: 0;
  1253. background-color: transparent;
  1254. border-bottom: 1px solid lighten($black, 90%);
  1255. border-top: 1px solid lighten($black, 90%);
  1256. }
  1257. .panel-bordered{
  1258. .panel-toolbar {
  1259. border-top-color: transparent;
  1260. }
  1261. >.panel-body{
  1262. padding-top: 30px;
  1263. &.scrollable-vertical{
  1264. >.scrollable-bar{
  1265. margin-bottom: 10px;
  1266. height: calc(100% - 60px);
  1267. }
  1268. }
  1269. &.scrollable-horizontal{
  1270. >.scrollable-container{
  1271. >.scrollable-content{
  1272. padding-top: 30px;
  1273. padding-bottom: 30px;
  1274. }
  1275. }
  1276. >.scrollable-bar{
  1277. transform: translateY(-26px);
  1278. }
  1279. }
  1280. }
  1281. >.panel-heading{
  1282. border-bottom: 1px solid lighten($black, 90%);
  1283. >.panel-title{
  1284. padding-bottom: 20px;
  1285. }
  1286. }
  1287. >.panel-footer{
  1288. border-top: 1px solid lighten($black, 90%);
  1289. padding-top: 15px;
  1290. }
  1291. >.table{
  1292. > tbody:first-child > tr:first-child th, tbody:first-child > tr:first-child td{
  1293. border-top: 0;
  1294. }
  1295. }
  1296. }
  1297. .panel-toolbar{
  1298. .btn {
  1299. color: lighten($black, 60%);
  1300. padding: 5px 10px;
  1301. &.icon {
  1302. width: 1em;
  1303. text-align: center;
  1304. }
  1305. @include hover-active-state{
  1306. color: lighten($black, 45%);
  1307. }
  1308. }
  1309. }
  1310. .panel-loading {
  1311. position: absolute;
  1312. top: 0;
  1313. left: 0;
  1314. z-index: 6;
  1315. display: none;
  1316. width: 100%;
  1317. height: 100%;
  1318. border-radius: 0.286rem;
  1319. opacity: .6;
  1320. .loader {
  1321. position: absolute;
  1322. top: 50%;
  1323. left: 50%;
  1324. transform: translate(-50%, -50%);
  1325. }
  1326. }
  1327. .panel-footer-chart{
  1328. padding: 0;
  1329. }
  1330. .panel-control {
  1331. padding: 0;
  1332. border: none;
  1333. border-radius: 0;
  1334. box-shadow: none;
  1335. }
  1336. @include screen-xs{
  1337. .panel-body{
  1338. &.scrollable-vertical{
  1339. >.scrollable-container{
  1340. >.scrollable-content{
  1341. padding-left: 20px;
  1342. padding-right: 20px;
  1343. }
  1344. }
  1345. }
  1346. &.scrollable-horizontal{
  1347. >.scrollable-bar{
  1348. margin-right: 20px;
  1349. width: calc(100% - 40px);
  1350. }
  1351. }
  1352. }
  1353. .panel{
  1354. >.alert {
  1355. padding-left: 20px;
  1356. padding-right: 20px;
  1357. }
  1358. >.alert-dismissible {
  1359. padding-right: 40px;
  1360. }
  1361. }
  1362. }
  1363. .panel{
  1364. >.table{
  1365. margin-bottom: 0;
  1366. &:first-child{
  1367. border-top-right-radius: 0.214rem;
  1368. border-top-left-radius: 0.214rem;
  1369. > thead:first-child {
  1370. > tr:first-child{
  1371. border-top-left-radius: 0.214rem;
  1372. border-top-right-radius: 0.214rem;
  1373. td:first-child{
  1374. border-top-left-radius: 0.214rem;
  1375. }
  1376. th:first-child{
  1377. border-top-left-radius: 0.214rem;
  1378. }
  1379. td:last-child{
  1380. border-top-right-radius: 0.214rem;
  1381. }
  1382. th:last-child{
  1383. border-top-right-radius: 0.214rem;
  1384. }
  1385. }
  1386. }
  1387. > tbody:first-child {
  1388. > tr:first-child{
  1389. border-top-left-radius: 0.214rem;
  1390. border-top-right-radius: 0.214rem;
  1391. td:first-child{
  1392. border-top-left-radius: 0.214rem;
  1393. }
  1394. th:first-child{
  1395. border-top-left-radius: 0.214rem;
  1396. }
  1397. td:last-child{
  1398. border-top-right-radius: 0.214rem;
  1399. }
  1400. th:last-child{
  1401. border-top-right-radius: 0.214rem;
  1402. }
  1403. }
  1404. }
  1405. }
  1406. &:last-child{
  1407. border-bottom-right-radius: 0.214rem;
  1408. border-bottom-left-radius: 0.214rem;
  1409. > thead:last-child {
  1410. > tr:last-child{
  1411. border-bottom-left-radius: 0.214rem;
  1412. border-bottom-right-radius: 0.214rem;
  1413. td:last-child{
  1414. border-bottom-left-radius: 0.214rem;
  1415. }
  1416. th:last-child{
  1417. border-bottom-left-radius: 0.214rem;
  1418. }
  1419. td:first-child{
  1420. border-bottom-right-radius: 0.214rem;
  1421. }
  1422. th:first-child{
  1423. border-bottom-right-radius: 0.214rem;
  1424. }
  1425. }
  1426. }
  1427. > tbody:last-child {
  1428. > tr:last-child{
  1429. border-bottom-left-radius: 0.214rem;
  1430. border-bottom-right-radius: 0.214rem;
  1431. td:last-child{
  1432. border-bottom-left-radius: 0.214rem;
  1433. }
  1434. th:last-child{
  1435. border-bottom-left-radius: 0.214rem;
  1436. }
  1437. td:first-child{
  1438. border-bottom-right-radius: 0.214rem;
  1439. }
  1440. th:first-child{
  1441. border-bottom-right-radius: 0.214rem;
  1442. }
  1443. }
  1444. }
  1445. }
  1446. +.panel-body{
  1447. border-top: 1px solid lighten($black, 80%);
  1448. }
  1449. >tbody:first-child > tr:first-child{
  1450. th, td{
  1451. border-top: 0;
  1452. }
  1453. }
  1454. >tr{
  1455. >td:first-child, >th:first-child{
  1456. padding-left: 30px;
  1457. }
  1458. >td:last-child, >th:last-child{
  1459. padding-right: 30px;
  1460. }
  1461. }
  1462. >thead{
  1463. >tr{
  1464. >td:first-child, >th:first-child{
  1465. padding-left: 30px;
  1466. }
  1467. >td:last-child, >th:last-child{
  1468. padding-right: 30px;
  1469. }
  1470. }
  1471. }
  1472. >tbody{
  1473. >tr{
  1474. >td:first-child, >th:first-child{
  1475. padding-left: 30px;
  1476. }
  1477. >td:last-child, >th:last-child{
  1478. padding-right: 30px;
  1479. }
  1480. }
  1481. &:first-child > tr:first-child{
  1482. th, td{
  1483. border-top: 1px solid lighten($black, 80%);
  1484. }
  1485. }
  1486. }
  1487. >tfoot{
  1488. >tr{
  1489. >td:first-child, >th:first-child{
  1490. padding-left: 30px;
  1491. }
  1492. >td:last-child, >th:last-child{
  1493. padding-right: 30px;
  1494. }
  1495. }
  1496. }
  1497. }
  1498. >.table-responsive{
  1499. border: 0;
  1500. margin-bottom: 0;
  1501. >.table{
  1502. margin-bottom: 0;
  1503. }
  1504. >.table caption{
  1505. padding-left: 30px 30px;
  1506. padding-right: 30px 30px;
  1507. }
  1508. &:first-child{
  1509. >.table:first-child{
  1510. border-top-right-radius: 0.214rem;
  1511. border-top-left-radius: 0.214rem;
  1512. > thead:first-child {
  1513. > tr:first-child{
  1514. border-top-left-radius: 0.214rem;
  1515. border-top-right-radius: 0.214rem;
  1516. td:first-child{
  1517. border-top-left-radius: 0.214rem;
  1518. }
  1519. th:first-child{
  1520. border-top-left-radius: 0.214rem;
  1521. }
  1522. td:last-child{
  1523. border-top-right-radius: 0.214rem;
  1524. }
  1525. th:last-child{
  1526. border-top-right-radius: 0.214rem;
  1527. }
  1528. }
  1529. }
  1530. > tbody:first-child {
  1531. > tr:first-child{
  1532. border-top-left-radius: 0.214rem;
  1533. border-top-right-radius: 0.214rem;
  1534. td:first-child{
  1535. border-top-left-radius: 0.214rem;
  1536. }
  1537. th:first-child{
  1538. border-top-left-radius: 0.214rem;
  1539. }
  1540. td:last-child{
  1541. border-top-right-radius: 0.214rem;
  1542. }
  1543. th:last-child{
  1544. border-top-right-radius: 0.214rem;
  1545. }
  1546. }
  1547. }
  1548. }
  1549. }
  1550. &:last-child{
  1551. >.table:last-child{
  1552. border-bottom-right-radius: 0.214rem;
  1553. border-bottom-left-radius: 0.214rem;
  1554. > thead:last-child {
  1555. > tr:last-child{
  1556. border-bottom-left-radius: 0.214rem;
  1557. border-top-right-radius: 0.214rem;
  1558. td:last-child{
  1559. border-bottom-left-radius: 0.214rem;
  1560. }
  1561. th:last-child{
  1562. border-bottom-left-radius: 0.214rem;
  1563. }
  1564. td:first-child{
  1565. border-bottom-right-radius: 0.214rem;
  1566. }
  1567. th:first-child{
  1568. border-bottom-right-radius: 0.214rem;
  1569. }
  1570. }
  1571. }
  1572. > tbody:last-child {
  1573. > tr:last-child{
  1574. border-bottom-left-radius: 0.214rem;
  1575. border-bottom-right-radius: 0.214rem;
  1576. td:last-child{
  1577. border-bottom-left-radius: 0.214rem;
  1578. }
  1579. th:last-child{
  1580. border-bottom-left-radius: 0.214rem;
  1581. }
  1582. td:first-child{
  1583. border-bottom-right-radius: 0.214rem;
  1584. }
  1585. th:first-child{
  1586. border-bottom-right-radius: 0.214rem;
  1587. }
  1588. }
  1589. }
  1590. }
  1591. }
  1592. +.panel-body{
  1593. border-top: 1px solid lighten($black, 80%);
  1594. }
  1595. >.table-bordered{
  1596. border: 0;
  1597. >thead{
  1598. >tr{
  1599. >th:first-child, >td:first-child{
  1600. border-left: 0;
  1601. }
  1602. >th:last-child, >td:last-child{
  1603. border-right: 0;
  1604. }
  1605. &:first-child{
  1606. >th, >td{
  1607. border-bottom: 0;
  1608. }
  1609. }
  1610. &:last-child{
  1611. >th, >td{
  1612. border-bottom: 0;
  1613. }
  1614. }
  1615. }
  1616. }
  1617. >tbody{
  1618. >tr{
  1619. >th:first-child, >td:first-child{
  1620. border-left: 0;
  1621. }
  1622. >th:last-child, >td:last-child{
  1623. border-right: 0;
  1624. }
  1625. &:first-child{
  1626. >th, >td{
  1627. border-bottom: 0;
  1628. }
  1629. }
  1630. &:last-child{
  1631. >th, >td{
  1632. border-bottom: 0;
  1633. }
  1634. }
  1635. }
  1636. }
  1637. >tfoot{
  1638. >tr{
  1639. >th:first-child, >td:first-child{
  1640. border-left: 0;
  1641. }
  1642. >th:last-child, >td:last-child{
  1643. border-right: 0;
  1644. }
  1645. }
  1646. }
  1647. }
  1648. .table{
  1649. >tr{
  1650. >td:first-child, >th:first-child{
  1651. padding-left: 30px;
  1652. }
  1653. >td:last-child, >th:last-child{
  1654. padding-right: 30px;
  1655. }
  1656. }
  1657. >thead{
  1658. >tr{
  1659. >td:first-child, >th:first-child{
  1660. padding-left: 30px;
  1661. }
  1662. >td:last-child, >th:last-child{
  1663. padding-right: 30px;
  1664. }
  1665. }
  1666. }
  1667. >tbody{
  1668. >tr{
  1669. >td:first-child, >th:first-child{
  1670. padding-left: 30px;
  1671. }
  1672. >td:last-child, >th:last-child{
  1673. padding-right: 30px;
  1674. }
  1675. }
  1676. }
  1677. >tfoot{
  1678. >tr{
  1679. >td:first-child, >th:first-child{
  1680. padding-left: 30px;
  1681. }
  1682. >td:last-child, >th:last-child{
  1683. padding-right: 30px;
  1684. }
  1685. }
  1686. }
  1687. }
  1688. }
  1689. >.table caption{
  1690. padding-left: 30px 30px;
  1691. padding-right: 30px 30px;
  1692. }
  1693. >.table-bordered{
  1694. border: 0;
  1695. >thead{
  1696. >tr{
  1697. >th:first-child, >td:first-child{
  1698. border-left: 0;
  1699. }
  1700. >th:last-child, >td:last-child{
  1701. border-right: 0;
  1702. }
  1703. &:first-child{
  1704. >th, >td{
  1705. border-bottom: 0;
  1706. }
  1707. }
  1708. &:last-child{
  1709. >th, >td{
  1710. border-bottom: 0;
  1711. }
  1712. }
  1713. }
  1714. }
  1715. >tbody{
  1716. >tr{
  1717. >th:first-child, >td:first-child{
  1718. border-left: 0;
  1719. }
  1720. >th:last-child, >td:last-child{
  1721. border-right: 0;
  1722. }
  1723. &:first-child{
  1724. >th, >td{
  1725. border-bottom: 0;
  1726. }
  1727. }
  1728. &:last-child{
  1729. >th, >td{
  1730. border-bottom: 0;
  1731. }
  1732. }
  1733. }
  1734. }
  1735. >tfoot{
  1736. >tr{
  1737. >th:first-child, >td:first-child{
  1738. border-left: 0;
  1739. }
  1740. >th:last-child, >td:last-child{
  1741. border-right: 0;
  1742. }
  1743. }
  1744. }
  1745. }
  1746. >.list-group{
  1747. margin-bottom: 0;
  1748. .list-group-item{
  1749. border-width: 1px 0;
  1750. border-radius: 0;
  1751. padding-right: 30px;
  1752. padding-left: 30px;
  1753. }
  1754. &:first-child .list-group-item:first-child{
  1755. border-top: 0;
  1756. border-top-right-radius: 0.214rem;
  1757. border-top-left-radius: 0.214rem;
  1758. }
  1759. &:last-child .list-group-item:last-child{
  1760. border-bottom: 0;
  1761. border-bottom-right-radius: 0.214rem;
  1762. border-bottom-left-radius: 0.214rem;
  1763. }
  1764. }
  1765. >.panel-collapse{
  1766. >.table {
  1767. margin-bottom: 0;
  1768. }
  1769. >.table caption{
  1770. padding-left: 30px 30px;
  1771. padding-right: 30px 30px;
  1772. }
  1773. >.list-group{
  1774. margin-bottom: 0;
  1775. .list-group-item{
  1776. border-width: 1px 0;
  1777. border-radius: 0;
  1778. }
  1779. &:first-child .list-group-item:first-child{
  1780. border-top: 0;
  1781. border-top-right-radius: 0.214rem;
  1782. border-top-left-radius: 0.214rem;
  1783. }
  1784. &:last-child .list-group-item:last-child{
  1785. border-bottom: 0;
  1786. border-bottom-right-radius: 0.214rem;
  1787. border-bottom-left-radius: 0.214rem;
  1788. }
  1789. }
  1790. }
  1791. >.panel-body{
  1792. +.table{
  1793. border-top: 1px solid lighten($black, 80%);
  1794. }
  1795. +.table-responsive{
  1796. border-top: 1px solid lighten($black, 80%);
  1797. }
  1798. }
  1799. >.panel-heading{
  1800. +.panel-collapse{
  1801. >.list-group{
  1802. .list-group-item{
  1803. &:first-child{
  1804. border-top-right-radius: 0;
  1805. border-top-left-radius: 0;
  1806. }
  1807. }
  1808. }
  1809. }
  1810. }
  1811. }
  1812. @include screen-xs{
  1813. .panel{
  1814. >.table{
  1815. >tr{
  1816. >td:first-child, >th:first-child{
  1817. padding-left: 20px;
  1818. }
  1819. >td:last-child, >th:last-child{
  1820. padding-right: 20px;
  1821. }
  1822. }
  1823. >thead{
  1824. >tr{
  1825. >td:first-child, >th:first-child{
  1826. padding-left: 20px;
  1827. }
  1828. >td:last-child, >th:last-child{
  1829. padding-right: 20px;
  1830. }
  1831. }
  1832. }
  1833. >tbody{
  1834. >tr{
  1835. >td:first-child, >th:first-child{
  1836. padding-left: 20px;
  1837. }
  1838. >td:last-child, >th:last-child{
  1839. padding-right: 20px;
  1840. }
  1841. }
  1842. }
  1843. >tfoot{
  1844. >tr{
  1845. >td:first-child, >th:first-child{
  1846. padding-left: 20px;
  1847. }
  1848. >td:last-child, >th:last-child{
  1849. padding-right: 20px;
  1850. }
  1851. }
  1852. }
  1853. }
  1854. >.table-responsive{
  1855. .table{
  1856. >tr{
  1857. >td:first-child, >th:first-child{
  1858. padding-left: 20px;
  1859. }
  1860. >td:last-child, >th:last-child{
  1861. padding-right: 20px;
  1862. }
  1863. }
  1864. >thead{
  1865. >tr{
  1866. >td:first-child, >th:first-child{
  1867. padding-left: 20px;
  1868. }
  1869. >td:last-child, >th:last-child{
  1870. padding-right: 20px;
  1871. }
  1872. }
  1873. }
  1874. >tbody{
  1875. >tr{
  1876. >td:first-child, >th:first-child{
  1877. padding-left: 20px;
  1878. }
  1879. >td:last-child, >th:last-child{
  1880. padding-right: 20px;
  1881. }
  1882. }
  1883. }
  1884. >tfoot{
  1885. >tr{
  1886. >td:first-child, >th:first-child{
  1887. padding-left: 20px;
  1888. }
  1889. >td:last-child, >th:last-child{
  1890. padding-right: 20px;
  1891. }
  1892. }
  1893. }
  1894. }
  1895. }
  1896. >.list-group{
  1897. .list-group-item{
  1898. padding-right: 20px;
  1899. padding-left: 20px;
  1900. }
  1901. }
  1902. }
  1903. }
  1904. .list-group{
  1905. +.panel-footer{
  1906. border-top-width: 0;
  1907. }
  1908. }
  1909. .panel-group{
  1910. margin-bottom: 22px;
  1911. .panel {
  1912. margin-bottom: 0;
  1913. border-radius: 0.286rem;
  1914. +.panel{
  1915. margin-top: 5px;
  1916. }
  1917. }
  1918. .panel-heading{
  1919. border-bottom: 0;
  1920. +.panel-collapse{
  1921. >.panel-body{
  1922. border-top: 1px solid lighten($black, 80%);
  1923. }
  1924. >.list-group{
  1925. border-top: 1px solid lighten($black, 80%);
  1926. }
  1927. }
  1928. }
  1929. .panel-footer{
  1930. border-top: 0;
  1931. +.panel-collapse{
  1932. .panel-body {
  1933. border-bottom: 1px solid lighten($black, 80%);
  1934. }
  1935. }
  1936. }
  1937. }
  1938. .panel.panel-transparent{
  1939. background: transparent;
  1940. border-color: transparent;
  1941. box-shadow: none;
  1942. >.panel-heading, >.panel-footer{
  1943. border-color: transparent;
  1944. }
  1945. }
  1946. .panel-default{
  1947. border-color: lighten($black, 80%);
  1948. >.panel-heading {
  1949. color: lighten($black, 45%);
  1950. background-color: lighten($black, 80%);
  1951. border-color: lighten($black, 80%);
  1952. +.panel-collapse >.panel-body {
  1953. border-top-color: lighten($black, 80%);
  1954. }
  1955. .badge-pill {
  1956. color: lighten($black, 80%);
  1957. background-color: lighten($black, 45%);
  1958. }
  1959. }
  1960. .panel-title {
  1961. color: lighten($black, 30%);
  1962. }
  1963. .panel-action {
  1964. color: lighten($black, 45%);
  1965. }
  1966. .panel-footer +.panel-collapse >.panel-body {
  1967. border-bottom-color: lighten($black, 80%);
  1968. }
  1969. }
  1970. .panel-dark{
  1971. border-color: lighten($black, 40%);
  1972. >.panel-heading {
  1973. color: $white;
  1974. background-color: lighten($black, 40%);
  1975. border-color: lighten($black, 40%);
  1976. +.panel-collapse > .panel-body{
  1977. border-top-color: lighten($black, 40%);
  1978. }
  1979. .badge-pill {
  1980. color: lighten($black, 40%);
  1981. background-color: $white;
  1982. }
  1983. }
  1984. .panel-title, .panel-action {
  1985. color: $white;
  1986. }
  1987. .panel-footer +.panel-collapse >.panel-body{
  1988. border-bottom-color: lighten($black, 40%);
  1989. }
  1990. }
  1991. .panel-primary {
  1992. border: none;
  1993. .panel-heading{
  1994. border: none;
  1995. }
  1996. .panel-title, .panel-action{
  1997. color: $white;
  1998. }
  1999. }
  2000. .panel-info {
  2001. border: none;
  2002. .panel-heading{
  2003. border: none;
  2004. }
  2005. .panel-title, .panel-action{
  2006. color: $white;
  2007. }
  2008. }
  2009. .panel-success {
  2010. border: none;
  2011. .panel-heading{
  2012. border: none;
  2013. }
  2014. .panel-title, .panel-action{
  2015. color: $white;
  2016. }
  2017. }
  2018. .panel-warning {
  2019. border: none;
  2020. .panel-heading{
  2021. border: none;
  2022. }
  2023. .panel-title, .panel-action{
  2024. color: $white;
  2025. }
  2026. }
  2027. .panel-danger {
  2028. border: none;
  2029. .panel-heading{
  2030. border: none;
  2031. }
  2032. .panel-title, .panel-action{
  2033. color: $white;
  2034. }
  2035. }
  2036. .panel-dark {
  2037. border: none;
  2038. .panel-heading{
  2039. border: none;
  2040. }
  2041. .panel-title, .panel-action{
  2042. color: $white;
  2043. }
  2044. }
  2045. .panel-line{
  2046. .panel-heading {
  2047. background: transparent;
  2048. border: none;
  2049. border-top: 3px solid transparent;
  2050. }
  2051. &.panel-default {
  2052. .panel-heading{
  2053. color: lighten($black, 80%);
  2054. border-top-color: lighten($black, 80%);
  2055. background: transparent;
  2056. }
  2057. .panel-title, .panel-action {
  2058. color: lighten($black, 80%);
  2059. }
  2060. }
  2061. &.panel-dark {
  2062. .panel-heading {
  2063. color: lighten($black, 40%);
  2064. border-top-color: lighten($black, 40%);
  2065. background: transparent;
  2066. }
  2067. .panel-title, .panel-action {
  2068. color: lighten($black, 40%);
  2069. }
  2070. }
  2071. }
  2072. @include screen-sm-max{
  2073. .panel-actions{
  2074. position: relative;
  2075. top: auto;
  2076. right: auto;
  2077. display: block;
  2078. margin: auto;
  2079. padding: 0 30px 15px;
  2080. transform: none;
  2081. }
  2082. .panel-actions-keep {
  2083. position: absolute;
  2084. top: 50%;
  2085. right: 30px;
  2086. padding: 0;
  2087. transform: translate(0%, -50%);
  2088. }
  2089. }
  2090. @include screen-xs{
  2091. .panel-actions {
  2092. padding-left: 20px;
  2093. .progress {
  2094. min-width: 80px;
  2095. }
  2096. .show-on-hover {
  2097. display: none;
  2098. }
  2099. }
  2100. .panel-actions-keep {
  2101. right: 15px;
  2102. }
  2103. .panel-title, .panel-body, .panel-footer {
  2104. padding-left: 20px;
  2105. padding-right: 20px;
  2106. }
  2107. }
  2108. .panel-group{
  2109. margin-bottom: 22px;
  2110. .panel {
  2111. margin-bottom: 0;
  2112. border-radius: 0.286rem;
  2113. box-shadow: none;
  2114. +.panel {
  2115. margin-top: 10px;
  2116. }
  2117. }
  2118. .panel-title {
  2119. position: relative;
  2120. padding: 15px 45px 15px 30px;
  2121. font-size: 1rem;
  2122. @include before-after-state{
  2123. position: absolute;
  2124. top: 15px;
  2125. right: 30px;
  2126. font-family: "Material Design Icons";
  2127. transition: all 300ms linear 0s;
  2128. }
  2129. &:before {
  2130. content: "\F415";
  2131. }
  2132. &:after {
  2133. content: "\F374";
  2134. }
  2135. &[aria-expanded="false"]:before{
  2136. opacity: .4;
  2137. }
  2138. &[aria-expanded="false"]:after{
  2139. opacity: 0;
  2140. transform: rotate(-180deg);
  2141. }
  2142. &[aria-expanded="true"]:before{
  2143. opacity: 0;
  2144. transform: rotate(180deg);
  2145. }
  2146. &[aria-expanded="true"]:after{
  2147. opacity: 1;
  2148. }
  2149. @include hover-focus-state{
  2150. color: lighten($black, 45%);
  2151. text-decoration: none;
  2152. }
  2153. &:focus {
  2154. outline: none;
  2155. }
  2156. }
  2157. .panel-heading {
  2158. border-bottom: 0;
  2159. + .panel-collapse {
  2160. margin: 0;
  2161. >.list-group {
  2162. border-top: 1px solid lighten($black, 80%);
  2163. }
  2164. }
  2165. }
  2166. .panel-collapse {
  2167. .panel-body {
  2168. padding: 15px 30px;
  2169. }
  2170. }
  2171. .panel-footer{
  2172. border-top: 0;
  2173. +.panel-collapse .panel-body{
  2174. border-bottom: 1px solid lighten($black, 80%);
  2175. }
  2176. }
  2177. .panel + .panel {
  2178. margin-top: 10px;
  2179. }
  2180. }
  2181. .panel-group-continuous {
  2182. .panel {
  2183. border-radius: 0;
  2184. &:first-child {
  2185. border-radius: 0.286rem 0.286rem 0 0;
  2186. }
  2187. &:last-child {
  2188. border-radius: 0 0 0.286rem 0.286rem;
  2189. }
  2190. +.panel {
  2191. margin-top: 0;
  2192. border-top: 1px solid lighten($black, 80%);
  2193. }
  2194. }
  2195. }
  2196. .panel-group-simple {
  2197. .panel {
  2198. background: transparent;
  2199. box-shadow: none;
  2200. +.panel {
  2201. margin-top: 0;
  2202. }
  2203. }
  2204. .panel-title {
  2205. padding-left: 0;
  2206. padding-bottom: 10px;
  2207. @include before-after-state{
  2208. right: 5px;
  2209. }
  2210. }
  2211. .panel-collapse .panel-body {
  2212. padding-left: 0;
  2213. padding-right: 0;
  2214. padding-top: 10px;
  2215. }
  2216. }
  2217. /*---Notification---*/
  2218. .myadmin-alert{
  2219. border-radius: 0;
  2220. color: $white;
  2221. padding: 12px 30px 12px 12px;
  2222. position: relative;
  2223. text-align: left;
  2224. a {
  2225. color: inherit;
  2226. font-weight: $fw-600;
  2227. text-decoration: underline;
  2228. }
  2229. h4 {
  2230. color: inherit;
  2231. font-size: $fs-14;
  2232. font-weight: $fw-600;
  2233. line-height: normal;
  2234. margin: 0;
  2235. }
  2236. .img {
  2237. border-radius: 3px;
  2238. height: 40px;
  2239. left: 12px;
  2240. position: absolute;
  2241. top: 12px;
  2242. width: 40px;
  2243. }
  2244. .closed {
  2245. color: rgba($white, .5);
  2246. font-size: $fs-20;
  2247. font-weight: $fw-500;
  2248. padding: 4px;
  2249. position: absolute;
  2250. right: 3px;
  2251. text-decoration: none;
  2252. top: 0;
  2253. &:hover {
  2254. color: $white;
  2255. }
  2256. }
  2257. .primary {
  2258. background: rgba($black, .4);
  2259. border: none;
  2260. border-radius: 3px;
  2261. color: inherit;
  2262. outline: 0;
  2263. padding: 4px 10px;
  2264. &:hover{
  2265. opacity: .9;
  2266. }
  2267. }
  2268. .cancel {
  2269. background: rgba($white, .4);
  2270. border: none;
  2271. border-radius: 3px;
  2272. color: rgba($black, .8);
  2273. outline: 0;
  2274. padding: 4px 10px;
  2275. &:hover{
  2276. opacity: .9;
  2277. }
  2278. }
  2279. }
  2280. .myadmin-alert-img {
  2281. min-height: 64px;
  2282. padding-left: 65px;
  2283. }
  2284. .myadmin-alert-icon {
  2285. padding-left: 20px;
  2286. i {
  2287. padding-right: 10px
  2288. }
  2289. }
  2290. .myadmin-alert-click {
  2291. cursor: pointer;
  2292. padding-right: 12px;
  2293. }
  2294. .myadmin-alert-bottom{
  2295. box-shadow: 2px 2px 2px rgba($black, .1);
  2296. display: none;
  2297. position: fixed;
  2298. z-index: 1111;
  2299. bottom: 0;
  2300. left: 0;
  2301. right: 0;
  2302. }
  2303. .myadmin-alert-bottom-left{
  2304. box-shadow: 2px 2px 2px rgba($black, .1);
  2305. display: none;
  2306. position: fixed;
  2307. z-index: 1111;
  2308. bottom: 20px;
  2309. left: 20px;
  2310. }
  2311. .myadmin-alert-bottom-right{
  2312. box-shadow: 2px 2px 2px rgba($black, .1);
  2313. display: none;
  2314. position: fixed;
  2315. z-index: 1111;
  2316. bottom: 20px;
  2317. right: 20px;
  2318. }
  2319. .myadmin-alert-fullscreen{
  2320. box-shadow: 2px 2px 2px rgba($black, .1);
  2321. display: none;
  2322. position: fixed;
  2323. z-index: 1111;
  2324. left: 50%;
  2325. margin: -20px;
  2326. top: 50%;
  2327. }
  2328. .myadmin-alert-top{
  2329. box-shadow: 2px 2px 2px rgba($black, .1);
  2330. display: none;
  2331. position: fixed;
  2332. z-index: 1111;
  2333. left: 0;
  2334. right: 0;
  2335. top: 0px;
  2336. }
  2337. .myadmin-alert-top-left{
  2338. box-shadow: 2px 2px 2px rgba($black, .1);
  2339. display: none;
  2340. position: fixed;
  2341. z-index: 1111;
  2342. left: 20px;
  2343. top: 0px;
  2344. }
  2345. .myadmin-alert-top-right{
  2346. box-shadow: 2px 2px 2px rgba($black, .1);
  2347. display: none;
  2348. position: fixed;
  2349. z-index: 1111;
  2350. right: 20px;
  2351. top: 0px;
  2352. }
  2353. .alert-custom{
  2354. background: $primary;
  2355. color: $white;
  2356. border-color: $primary;
  2357. }
  2358. .alert-inverse{
  2359. background: $dark;
  2360. color: $white;
  2361. border-color: $dark;
  2362. }
  2363. .alert-dark {
  2364. background: $black;
  2365. color: $white;
  2366. border-color: $black;
  2367. }
  2368. .alert-info {
  2369. .closed{
  2370. color: inherit;
  2371. }
  2372. a.closed:hover{
  2373. color: inherit;
  2374. }
  2375. }
  2376. /*---Advanced Medias---*/
  2377. .media-body{
  2378. >*{
  2379. margin-bottom: 5px;
  2380. margin-top: 0;
  2381. }
  2382. >p{
  2383. &:last-child {
  2384. color: lighten($black, 45%);
  2385. }
  2386. }
  2387. }
  2388. .media {
  2389. flex-shrink: 0;
  2390. .lead {
  2391. line-height: 1.875rem;
  2392. }
  2393. .custom-control {
  2394. margin-right: 0;
  2395. margin-left: 0;
  2396. padding-left: 0;
  2397. margin-top: 5px;
  2398. [type=checkbox]+label{
  2399. padding-left: 20px;
  2400. }
  2401. }
  2402. &.active {
  2403. background-color: $light;
  2404. }
  2405. .media-body{
  2406. .list-inline{
  2407. >li{
  2408. padding-left: 0px;
  2409. padding-right: 5px;
  2410. }
  2411. }
  2412. }
  2413. .media-hover-show {
  2414. opacity: 0;
  2415. -webkit-transition: .3s;
  2416. transition: .3s;
  2417. }
  2418. &:hover{
  2419. .media-hover-show {
  2420. opacity: 1;
  2421. }
  2422. }
  2423. &.flex-column {
  2424. >div {
  2425. width: 100%;
  2426. }
  2427. > * {
  2428. margin: 0;
  2429. }
  2430. }
  2431. }
  2432. /*---avatar---*/
  2433. .avatar {
  2434. position: relative;
  2435. display: inline-block;
  2436. width: 36px;
  2437. height: 36px;
  2438. line-height: 36px;
  2439. text-align: center;
  2440. text-transform: uppercase;
  2441. border-radius: $default-border-radius;
  2442. img {
  2443. width: 100%;
  2444. height: 100%;
  2445. border-radius: 100%;
  2446. vertical-align: top;
  2447. }
  2448. &[class*='status-']{
  2449. &::after{
  2450. content: '';
  2451. position: absolute;
  2452. right: 0px;
  2453. bottom: 0;
  2454. display: inline-block;
  2455. width: 10px;
  2456. height: 10px;
  2457. border-radius: 100%;
  2458. border: 2px solid $white;
  2459. }
  2460. &.avatar-sm::after {
  2461. right: -2px;
  2462. width: 9px;
  2463. height: 9px;
  2464. }
  2465. &.avatar-lg::after {
  2466. right: 4px;
  2467. }
  2468. &.avatar-xl::after {
  2469. right: 5px;
  2470. width: 11px;
  2471. height: 11px;
  2472. }
  2473. &.avatar-xxl::after {
  2474. right: 15px;
  2475. width: 12px;
  2476. height: 12px;
  2477. }
  2478. &.avatar-xxxl::after {
  2479. right: 25px;
  2480. width: 16px;
  2481. height: 16px;
  2482. }
  2483. }
  2484. &.status-dark::after {
  2485. background-color: $dark;
  2486. }
  2487. }
  2488. .avatar-bordered {
  2489. border: 4px solid rgba($white, 0.25);
  2490. -webkit-background-clip: padding-box;
  2491. /* for Safari */
  2492. background-clip: padding-box;
  2493. /* for IE9+, Firefox 4+, Opera, Chrome */
  2494. }
  2495. .avatar-square {
  2496. border-radius: 0;
  2497. }
  2498. .avatar-sm {
  2499. width: 29px;
  2500. height: 29px;
  2501. line-height: 29px;
  2502. font-size: $fs-10;
  2503. }
  2504. .avatar-lg {
  2505. width: 48px;
  2506. height: 48px;
  2507. line-height: 48px;
  2508. font-size: $fs-18;
  2509. }
  2510. .avatar-xl {
  2511. width: 64px;
  2512. height: 64px;
  2513. line-height: 64px;
  2514. font-size: $fs-18;
  2515. }
  2516. .avatar-xxl {
  2517. width: 96px;
  2518. height: 96px;
  2519. line-height: 96px;
  2520. font-size: $fs-20;
  2521. }
  2522. .avatar-xxxl {
  2523. width: 128px;
  2524. height: 128px;
  2525. line-height: 128px;
  2526. font-size: $fs-26;
  2527. }
  2528. .avatar-pill {
  2529. width: auto;
  2530. border-radius: 18px;
  2531. color: $dark;
  2532. text-transform: none;
  2533. letter-spacing: 0;
  2534. background-color: $light;
  2535. font-size: $fs-12;
  2536. display: -webkit-inline-box;
  2537. display: inline-flex;
  2538. -webkit-box-align: center;
  2539. align-items: center;
  2540. @include hover-focus-state{
  2541. color: $dark;
  2542. background-color: $light;
  2543. }
  2544. img {
  2545. width: 36px;
  2546. }
  2547. span {
  2548. padding-right: 18px;
  2549. padding-left: 8px;
  2550. }
  2551. .close {
  2552. padding-left: 0;
  2553. padding-right: 8px;
  2554. font-size: $fs-18;
  2555. line-height: inherit;
  2556. }
  2557. &.avatar-sm {
  2558. border-radius: 14.5px;
  2559. font-size: $fs-12;
  2560. img {
  2561. width: 29px;
  2562. }
  2563. span {
  2564. padding-right: 14.5px;
  2565. }
  2566. .close {
  2567. padding-right: 6px;
  2568. font-size: $fs-18;
  2569. }
  2570. }
  2571. &.avatar-lg {
  2572. border-radius: 24px;
  2573. font-size: $fs-14;
  2574. img {
  2575. width: 48px;
  2576. }
  2577. span {
  2578. padding-right: 24px;
  2579. }
  2580. .close {
  2581. padding-right: 10px;
  2582. font-size: $fs-20;
  2583. }
  2584. }
  2585. &.avatar-xl {
  2586. border-radius: 32px;
  2587. font-size: $fs-16;
  2588. img {
  2589. width: 64px;
  2590. }
  2591. span {
  2592. padding-right: 32px;
  2593. padding-left: 12px;
  2594. }
  2595. .close {
  2596. padding-right: 12px;
  2597. font-size: $fs-22;
  2598. }
  2599. }
  2600. &.avatar-xxl {
  2601. border-radius: 48px;
  2602. font-size: $fs-18;
  2603. img {
  2604. width: 96px;
  2605. }
  2606. span {
  2607. padding-right: 48px;
  2608. padding-left: 12px;
  2609. }
  2610. .close {
  2611. padding-right: 16px;
  2612. font-size: $fs-24;
  2613. }
  2614. }
  2615. &.avatar-xxxl {
  2616. border-radius: 64px;
  2617. font-size: $fs-20;
  2618. img {
  2619. width: 128px;
  2620. }
  2621. span {
  2622. padding-right: 64px;
  2623. padding-left: 12px;
  2624. }
  2625. .close {
  2626. padding-right: 20px;
  2627. font-size: $fs-24;
  2628. }
  2629. }
  2630. }
  2631. .avatar-list {
  2632. display: -webkit-inline-box;
  2633. display: inline-flex;
  2634. &:not(.avatar-list-overlap) {
  2635. margin: -2px;
  2636. >* {
  2637. margin: 2px;
  2638. }
  2639. }
  2640. }
  2641. .avatar-list-overlap {
  2642. .avatar {
  2643. border: 2px solid $white;
  2644. -webkit-box-shadow: 0 0 25px rgba($black, 0.2);
  2645. box-shadow: 0 0 25px rgba($black, 0.2);
  2646. -webkit-transition: .15s linear;
  2647. transition: .15s linear;
  2648. +.avatar {
  2649. margin-left: -16px;
  2650. }
  2651. +.avatar-sm {
  2652. margin-left: -12px;
  2653. }
  2654. +.avatar-lg {
  2655. margin-left: -20px;
  2656. }
  2657. +.avatar-xl {
  2658. margin-left: -26px;
  2659. }
  2660. +.avatar-xxl {
  2661. margin-left: -36px;
  2662. }
  2663. +.avatar-xxxl {
  2664. margin-left: -48px;
  2665. }
  2666. &:hover{
  2667. +.avatar {
  2668. margin-left: 0;
  2669. }
  2670. }
  2671. }
  2672. .overlap-exclude{
  2673. margin-left: 0;
  2674. }
  2675. }
  2676. .avatar-add{
  2677. font-family: themify;
  2678. background-color: transparent;
  2679. border: 1px dashed $dark;
  2680. color: $dark;
  2681. font-size: $fs-12;
  2682. &::before {
  2683. content: "\e61a";
  2684. }
  2685. &:hover {
  2686. color: $white;
  2687. }
  2688. }
  2689. .avatar-more{
  2690. span {
  2691. position: absolute;
  2692. top: 0;
  2693. left: 0;
  2694. right: 0;
  2695. bottom: 0;
  2696. color: rgba($white, 0.8);
  2697. border-radius: 100%;
  2698. background-color: rgba($black, 0.5);
  2699. -webkit-transition: 0.3s ease;
  2700. transition: 0.3s ease;
  2701. }
  2702. &:hover{
  2703. span {
  2704. color: $white;
  2705. background-color: rgba($black, 0.65);
  2706. }
  2707. }
  2708. }
  2709. .user-contact{
  2710. margin-top: -45px;
  2711. position: relative;
  2712. }
  2713. .user-social{
  2714. text-align: center;
  2715. }
  2716. [data-provide~="more-avatar"] ~ .avatar {
  2717. display: none;
  2718. }
  2719. /*---switch---*/
  2720. .switch {
  2721. font-weight: $fw-300;
  2722. letter-spacing: 0;
  2723. margin-bottom: 0;
  2724. line-height: 29px;
  2725. cursor: pointer;
  2726. white-space: nowrap;
  2727. input {
  2728. display: none;
  2729. }
  2730. input:checked ~ .switch-indicator {
  2731. background: darken($light, 20%);
  2732. }
  2733. input:checked ~ .switch-indicator::after {
  2734. left: calc(100% - 20px);
  2735. -webkit-box-shadow: 0px 0px 3px $light;
  2736. box-shadow: 0px 0px 3px $light;
  2737. }
  2738. &.switch-secondary input:checked ~ .switch-indicator::after {
  2739. background: lighten($dark, 35%);
  2740. }
  2741. .switch-dark input:checked ~ .switch-indicator::after {
  2742. background: $dark;
  2743. }
  2744. }
  2745. .switch-indicator {
  2746. position: relative;
  2747. display: inline-block;
  2748. width: 40px;
  2749. height: 10px;
  2750. background: $light;
  2751. border-radius: 20px;
  2752. vertical-align: middle;
  2753. -webkit-transition: 0.3s;
  2754. transition: 0.3s;
  2755. &::after {
  2756. content: '';
  2757. display: block;
  2758. position: absolute;
  2759. left: 0px;
  2760. width: 20px;
  2761. height: 20px;
  2762. -webkit-transition: 0.3s;
  2763. transition: 0.3s;
  2764. cursor: inherit;
  2765. background: $white;
  2766. border-radius: 50%;
  2767. top: -5px;
  2768. -webkit-box-shadow: 0px 0px 3px lighten($dark, 40%);
  2769. box-shadow: 0px 0px 3px lighten($dark, 40%);
  2770. }
  2771. }
  2772. /*---fullscreen---*/
  2773. [data-provide~="boxfull"].is-fullscreen .fullscreen-default, [data-provide~="fullscreen"].is-fullscreen .fullscreen-default {
  2774. display: none;
  2775. }
  2776. [data-provide~="boxfull"].is-fullscreen .fullscreen-active, [data-provide~="fullscreen"].is-fullscreen .fullscreen-active {
  2777. display: inline-block;
  2778. }
  2779. [data-provide~="boxfull"] .fullscreen-active, [data-provide~="fullscreen"] .fullscreen-active {
  2780. display: none;
  2781. }
  2782. @include screen-md{
  2783. .dl-horizontal {
  2784. dt {
  2785. float: left;
  2786. width: 160px;
  2787. clear: left;
  2788. text-align: right;
  2789. overflow: hidden;
  2790. text-overflow: ellipsis;
  2791. white-space: nowrap;
  2792. }
  2793. dd {
  2794. margin-left: 180px;
  2795. }
  2796. }
  2797. }
  2798. /*products-list*/
  2799. .products-list {
  2800. list-style: none;
  2801. margin: 0;
  2802. padding: 0;
  2803. >.item {
  2804. border-radius: 3px;
  2805. -webkit-box-shadow: 0 1px 1px rgba($black, .1);
  2806. box-shadow: 0 1px 1px rgba($black, .1);
  2807. padding: 10px;
  2808. @include before-after-state{
  2809. content: " ";
  2810. display: table;
  2811. }
  2812. }
  2813. .product-img {
  2814. float: left;
  2815. img {
  2816. width: 50px;
  2817. height: 50px;
  2818. border-radius: 100%;
  2819. }
  2820. }
  2821. .product-info {
  2822. margin-left: 60px;
  2823. }
  2824. .product-description {
  2825. display: block;
  2826. overflow: hidden;
  2827. white-space: nowrap;
  2828. text-overflow: ellipsis;
  2829. }
  2830. }
  2831. .product-list-in-box>.item {
  2832. -webkit-box-shadow: none;
  2833. box-shadow: none;
  2834. border-radius: 0;
  2835. border-bottom: 1px solid $light;
  2836. &:last-of-type {
  2837. border-bottom-width: 0;
  2838. }
  2839. }
  2840. /*data table*/
  2841. @include screen-sm-max{
  2842. .table{
  2843. >tbody>tr{
  2844. >td, >th{
  2845. white-space: nowrap;
  2846. }
  2847. }
  2848. >tfoot>tr{
  2849. >td, >th{
  2850. white-space: nowrap;
  2851. }
  2852. }
  2853. >thead>tr{
  2854. >td, >th{
  2855. white-space: nowrap;
  2856. }
  2857. }
  2858. }
  2859. }
  2860. .table{
  2861. >tbody>tr{
  2862. >td, >th{
  2863. padding: 1rem;
  2864. vertical-align: middle;
  2865. }
  2866. >th, td{
  2867. }
  2868. }
  2869. >tfoot>tr{
  2870. >td, >th{
  2871. padding: 1rem;
  2872. vertical-align: middle;
  2873. }
  2874. }
  2875. >thead>tr{
  2876. >td, >th{
  2877. padding: 1rem;
  2878. vertical-align: middle;
  2879. }
  2880. }
  2881. }
  2882. .table{
  2883. tr{
  2884. td{
  2885. .progress {
  2886. margin-top: 5px;
  2887. }
  2888. }
  2889. }
  2890. &.no-border{
  2891. border: 0;
  2892. td, th{
  2893. border: 0;
  2894. }
  2895. }
  2896. &.align{
  2897. th {
  2898. text-align: left;
  2899. }
  2900. td {
  2901. text-align: right;
  2902. }
  2903. }
  2904. }
  2905. .table-bordered{
  2906. border: 1px solid $light4;
  2907. >tbody>tr{
  2908. >td, >th{
  2909. border: 1px solid $light4 !important;
  2910. }
  2911. }
  2912. >thead>tr{
  2913. >td, >th{
  2914. border: 1px solid $light4 !important;
  2915. border-bottom-width: 2px;
  2916. }
  2917. }
  2918. >tfoot>tr{
  2919. >td, >th{
  2920. border: 1px solid $light4 !important;
  2921. }
  2922. }
  2923. }
  2924. .table-separated {
  2925. border-collapse: separate;
  2926. border-spacing: 0 8px;
  2927. thead th {
  2928. border-bottom: none;
  2929. }
  2930. tbody tr {
  2931. background-color: $light2;
  2932. -webkit-transition: .5s;
  2933. transition: .5s;
  2934. > *:first-child {
  2935. border-top-left-radius: 3px;
  2936. border-bottom-left-radius: 3px;
  2937. }
  2938. > *:last-child {
  2939. border-top-right-radius: 3px;
  2940. border-bottom-right-radius: 3px;
  2941. }
  2942. th, td{
  2943. border-top: none;
  2944. }
  2945. }
  2946. }
  2947. .dataTables_info, .dataTables_length, .dt-buttons {
  2948. display: inline-block;
  2949. }
  2950. .dt-buttons {
  2951. margin-bottom: 10px;
  2952. .dt-button {
  2953. padding: 5px 15px;
  2954. border-radius: 0;
  2955. color: $white;
  2956. margin-right: 3px;
  2957. display: inline-block;
  2958. &:hover {
  2959. background: $dark;
  2960. }
  2961. }
  2962. }
  2963. .dataTables_filter {
  2964. float: right;
  2965. padding-top: 5px;
  2966. input {
  2967. border: 1px solid lighten($black, 80%);
  2968. margin-left: 5px;
  2969. }
  2970. }
  2971. table{
  2972. &.dataTable{
  2973. thead{
  2974. .sorting, .sorting_asc, .sorting_asc_disabled, .sorting_desc, .sorting_desc_disabled{
  2975. background: 0 0;
  2976. }
  2977. }
  2978. }
  2979. }
  2980. .dataTables_wrapper{
  2981. .dataTables_paginate {
  2982. float: right;
  2983. text-align: right;
  2984. padding-top: .25em;
  2985. .paginate_button {
  2986. -webkit-box-sizing: border-box;
  2987. box-sizing: border-box;
  2988. display: inline-block;
  2989. min-width: 1.5em;
  2990. padding: .5em 1em;
  2991. margin-left: 2px;
  2992. text-align: center;
  2993. text-decoration: none;
  2994. cursor: pointer;
  2995. color: lighten($black, 45%);
  2996. border: 1px solid transparent;
  2997. border-radius: 2px;
  2998. &.current, &.current:hover{
  2999. color: $white;
  3000. }
  3001. &.disabled, &.disabled:active, &.disabled:hover{
  3002. cursor: not-allowed;
  3003. color: lighten($black, 45%);
  3004. border: 1px solid transparent;
  3005. background: 0 0;
  3006. -webkit-box-shadow: none;
  3007. box-shadow: none;
  3008. }
  3009. &:hover {
  3010. color: $white;
  3011. background-color: $primary;
  3012. }
  3013. &:active {
  3014. outline: 0;
  3015. background-color: lighten($black, 45%);
  3016. }
  3017. }
  3018. .ellipsis {
  3019. padding: 0 1em;
  3020. }
  3021. }
  3022. }
  3023. .tablesaw-bar .btn-group label {
  3024. color: lighten($black, 45%);
  3025. }
  3026. tfoot input {
  3027. width: 100%;
  3028. padding: 3px;
  3029. box-sizing: border-box;
  3030. }
  3031. .dt-bootstrap {
  3032. display: block;
  3033. }
  3034. .paging_simple_numbers .pagination .paginate_button{
  3035. padding: 0;
  3036. background: $white;
  3037. &:hover {
  3038. background: $white;
  3039. a{
  3040. color: $white;
  3041. }
  3042. }
  3043. a {
  3044. padding: 15px 15px;
  3045. border-radius: $fct-border-radius;
  3046. border: 0 !important;
  3047. }
  3048. &.active{
  3049. a{
  3050. color: $white;
  3051. }
  3052. }
  3053. }
  3054. .footable{
  3055. .pagination {
  3056. display: inline-block;
  3057. padding: 8px 0;
  3058. li {
  3059. padding: 0;
  3060. margin: 0 1px;
  3061. display: inline-block;
  3062. a {
  3063. padding: 5px 10px;
  3064. &.active, &:hover {
  3065. color: $white;
  3066. border-radius: 4px;
  3067. }
  3068. }
  3069. &.active a {
  3070. color: $white;
  3071. border-radius: 4px;
  3072. }
  3073. }
  3074. }
  3075. }
  3076. /*direct-chat*/
  3077. .direct-chat{
  3078. .box-body {
  3079. border-bottom-right-radius: 0;
  3080. border-bottom-left-radius: 0;
  3081. position: relative;
  3082. overflow: hidden;
  3083. padding: 0;
  3084. }
  3085. &.chat-pane-open{
  3086. .direct-chat-contacts {
  3087. -webkit-transform: translate(0, 0);
  3088. -ms-transform: translate(0, 0);
  3089. -o-transform: translate(0, 0);
  3090. transform: translate(0, 0);
  3091. }
  3092. }
  3093. }
  3094. .direct-chat-messages {
  3095. -webkit-transform: translate(0, 0);
  3096. -ms-transform: translate(0, 0);
  3097. -o-transform: translate(0, 0);
  3098. transform: translate(0, 0);
  3099. padding: 10px;
  3100. height: 250px;
  3101. overflow: auto;
  3102. }
  3103. .direct-chat-msg{
  3104. display: block;
  3105. margin-bottom: 10px;
  3106. @include before-after-state{
  3107. content: " ";
  3108. display: table;
  3109. }
  3110. }
  3111. .direct-chat-text{
  3112. position: relative;
  3113. margin: 5px 0 0 50px;
  3114. display: table;
  3115. p {
  3116. border-radius: 5px;
  3117. padding: 0.5rem 0.5rem;
  3118. background: #efefef;
  3119. color: lighten($black, 45%);
  3120. margin-bottom: 0.25rem;
  3121. display: inherit;
  3122. &.direct-chat-timestamp {
  3123. background-color: transparent !important;
  3124. padding: 0;
  3125. opacity: .8;
  3126. }
  3127. }
  3128. &:after {
  3129. border-width: 5px;
  3130. margin-top: -5px;
  3131. }
  3132. &:before {
  3133. border-width: 6px;
  3134. margin-top: -6px;
  3135. }
  3136. }
  3137. .direct-chat-contacts{
  3138. -webkit-transition: -webkit-transform .5s ease-in-out;
  3139. -moz-transition: -moz-transform .5s ease-in-out;
  3140. -o-transition: -o-transform .5s ease-in-out;
  3141. transition: transform .5s ease-in-out;
  3142. -webkit-transform: translate(101%, 0);
  3143. -ms-transform: translate(101%, 0);
  3144. -o-transform: translate(101%, 0);
  3145. transform: translate(101%, 0);
  3146. position: absolute;
  3147. top: 0;
  3148. bottom: 0;
  3149. height: 250px;
  3150. width: 100%;
  3151. background: $dark;
  3152. color: $white;
  3153. overflow: auto;
  3154. }
  3155. .direct-chat-messages{
  3156. -webkit-transition: -webkit-transform .5s ease-in-out;
  3157. -moz-transition: -moz-transform .5s ease-in-out;
  3158. -o-transition: -o-transform .5s ease-in-out;
  3159. transition: transform .5s ease-in-out;
  3160. &.chat-app{
  3161. padding: 0.8rem 1.25rem;
  3162. }
  3163. }
  3164. .right{
  3165. .direct-chat-text {
  3166. margin: 5px 0px 0 0px;
  3167. float: right;
  3168. text-align: right;
  3169. p {
  3170. display: inherit;
  3171. clear: both;
  3172. float: right;
  3173. color: $white;
  3174. }
  3175. }
  3176. .direct-chat-img {
  3177. float: right;
  3178. }
  3179. }
  3180. .direct-chat-img{
  3181. float: left;
  3182. width: 40px;
  3183. height: 40px;
  3184. }
  3185. .direct-chat-info {
  3186. display: block;
  3187. margin-bottom: 2px;
  3188. }
  3189. .direct-chat-timestamp {
  3190. color: lighten($black, 45%);
  3191. }
  3192. .direct-chat-contacts-open{
  3193. .direct-chat-contacts {
  3194. -webkit-transform: translate(0, 0);
  3195. -ms-transform: translate(0, 0);
  3196. -o-transform: translate(0, 0);
  3197. transform: translate(0, 0);
  3198. }
  3199. }
  3200. .contacts-list{
  3201. >li {
  3202. border-bottom: 1px solid rgba($black, .2);
  3203. padding: 10px;
  3204. margin: 0;
  3205. @include before-after-state{
  3206. content: " ";
  3207. display: table;
  3208. }
  3209. &:last-of-type {
  3210. border-bottom: none;
  3211. }
  3212. }
  3213. }
  3214. .contacts-list-name, .contacts-list-status, .users-list-date, .users-list-name{
  3215. display: block;
  3216. }
  3217. .contacts-list-img {
  3218. border-radius: 50%;
  3219. width: 40px;
  3220. float: left;
  3221. }
  3222. .contacts-list-info {
  3223. margin-left: 45px;
  3224. color: $white;
  3225. }
  3226. .contacts-list-status {
  3227. font-size: 12px;
  3228. }
  3229. .contacts-list-date {
  3230. color: lighten($black, 65%);
  3231. font-weight: 300;
  3232. }
  3233. .contacts-list-email {
  3234. color: lighten($dark, 40%);
  3235. }
  3236. .contact-page-aside ul.list-style-none {
  3237. margin: 0px;
  3238. padding: 0px;
  3239. }
  3240. ul{
  3241. &.list-style-none{
  3242. li{
  3243. list-style: none;
  3244. a {
  3245. color: lighten($black, 45%);
  3246. padding: 10px 0px;
  3247. display: block;
  3248. text-decoration: none;
  3249. &:hover {
  3250. color: $info;
  3251. }
  3252. }
  3253. }
  3254. }
  3255. }
  3256. .list-style-none{
  3257. li{
  3258. &.box-label a {
  3259. font-weight: 500;
  3260. }
  3261. &.divider {
  3262. margin: 10px 0;
  3263. height: 1px;
  3264. background: rgba(lighten($dark, 20%), 0.13);
  3265. }
  3266. a span {
  3267. float: right;
  3268. }
  3269. }
  3270. }
  3271. div#employeelist_filter {
  3272. margin-top: -60px;
  3273. position: relative;
  3274. z-index: 99;
  3275. }
  3276. .chat-app{
  3277. .direct-chat-img {
  3278. width: 55px;
  3279. height: 55px;
  3280. line-height: 55px;
  3281. }
  3282. .direct-chat-text {
  3283. margin: 5px 0 0 80px;
  3284. }
  3285. .right{
  3286. .direct-chat-text {
  3287. margin: 5px 0px 0 0px;
  3288. float: right;
  3289. text-align: right;
  3290. }
  3291. }
  3292. }
  3293. time {
  3294. font-size: $fs-12;
  3295. color: lighten($dark, 40%);
  3296. }
  3297. /*---users-list---*/
  3298. .users-list>li {
  3299. width: 25%;
  3300. float: left;
  3301. padding: 10px;
  3302. text-align: center;
  3303. img {
  3304. border-radius: $default-border-radius;
  3305. max-width: 100%;
  3306. height: auto;
  3307. }
  3308. >a:hover{
  3309. color: lighten($black, 45%);
  3310. .users-list-name{
  3311. color: lighten($black, 45%);
  3312. }
  3313. }
  3314. }
  3315. .users-list-name {
  3316. font-weight: 600;
  3317. color: $dark;
  3318. overflow: hidden;
  3319. white-space: nowrap;
  3320. text-overflow: ellipsis;
  3321. }
  3322. .users-list-date {
  3323. color: lighten($black, 45%);
  3324. font-size: $fs-12;
  3325. }
  3326. /*---carousel-control---*/
  3327. .carousel-control{
  3328. &.left, &.right{
  3329. background-image: none;
  3330. }
  3331. >i {
  3332. font-size: $fs-40;
  3333. position: absolute;
  3334. top: 50%;
  3335. z-index: 5;
  3336. display: inline-block;
  3337. margin-top: -20px;
  3338. }
  3339. }
  3340. /*---widget---*/
  3341. .widget-user .widget-user-username, .widget-user-2 .widget-user-username, .widget-user-3 .widget-user-username, .widget-user-4 .widget-user-username {
  3342. margin-bottom: 5px;
  3343. font-size: $fs-24;
  3344. }
  3345. .box-widget {
  3346. border: none;
  3347. position: relative;
  3348. }
  3349. .widget-user{
  3350. .widget-user-header {
  3351. padding: 20px;
  3352. height: 140px;
  3353. border-top-right-radius: $default-border-radius;
  3354. border-top-left-radius: $default-border-radius;
  3355. }
  3356. .widget-user-username {
  3357. margin-top: 0;
  3358. text-shadow: 0 1px 1px rgba($black, .2);
  3359. }
  3360. .widget-user-desc {
  3361. margin-top: 0;
  3362. }
  3363. .widget-user-image {
  3364. position: absolute;
  3365. top: 85px;
  3366. left: 50%;
  3367. margin-left: -45px;
  3368. >img {
  3369. width: 90px;
  3370. height: auto;
  3371. border: 3px solid $white;
  3372. }
  3373. }
  3374. .box-footer {
  3375. padding-top: 30px;
  3376. }
  3377. }
  3378. .widget-user-2{
  3379. .widget-user-header{
  3380. border-top-right-radius: $default-border-radius;
  3381. border-top-left-radius: $default-border-radius;
  3382. padding: 20px;
  3383. }
  3384. .widget-user-username {
  3385. margin-top: 5px;
  3386. margin-left: 75px;
  3387. }
  3388. .widget-user-desc {
  3389. margin-top: 0;
  3390. margin-left: 75px;
  3391. }
  3392. .widget-user-image{
  3393. >img {
  3394. width: 65px;
  3395. height: auto;
  3396. float: left;
  3397. }
  3398. }
  3399. }
  3400. .widget-user-3{
  3401. .widget-user-header{
  3402. border-top-right-radius: $default-border-radius;
  3403. border-top-left-radius: $default-border-radius;
  3404. padding: 20px;
  3405. }
  3406. .widget-user-username {
  3407. margin-top: 5px;
  3408. text-shadow: 0 1px 1px rgba($black, .2);
  3409. }
  3410. .widget-user-desc {
  3411. margin-top: 0;
  3412. }
  3413. .info-user {
  3414. float: left;
  3415. margin-top: 15px;
  3416. }
  3417. .widget-user-image{
  3418. >img {
  3419. width: 100px;
  3420. height: auto;
  3421. float: right;
  3422. border: 3px solid $white;
  3423. }
  3424. }
  3425. }
  3426. .widget-user-4{
  3427. .widget-user-header {
  3428. text-align: center;
  3429. border-top-right-radius: $default-border-radius;
  3430. border-top-left-radius: $default-border-radius;
  3431. }
  3432. .widget-user-username {
  3433. margin-top: 0;
  3434. text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
  3435. }
  3436. .widget-user-desc {
  3437. margin-top: 0;
  3438. margin-bottom: 0;
  3439. }
  3440. .widget-user-image {
  3441. text-align: center;
  3442. margin-bottom: 15px;
  3443. >img {
  3444. width: 100px;
  3445. height: auto;
  3446. }
  3447. }
  3448. .box-footer {
  3449. padding-top: 30px;
  3450. }
  3451. }
  3452. .box.widget-user-4 {
  3453. .overlay {
  3454. z-index: 50;
  3455. border-radius: 0;
  3456. padding: 20px;
  3457. &.overlay-none {
  3458. background: rgba($black, 0);
  3459. }
  3460. }
  3461. }
  3462. /*mailbox*/
  3463. .mailbox-messages{
  3464. >.table {
  3465. margin: 0;
  3466. }
  3467. .mailbox-date {
  3468. font-size: $fs-12;
  3469. color: lighten($black, 45%);
  3470. }
  3471. table a {
  3472. color: lighten($black, 45%);
  3473. }
  3474. }
  3475. .mailbox-controls {
  3476. padding: 0rem 0rem 1.25rem;
  3477. .btn {
  3478. padding: 10px 15px;
  3479. i {
  3480. font-size: $fs-16;
  3481. }
  3482. }
  3483. &.with-border{
  3484. border-bottom: 1px solid $light;
  3485. }
  3486. }
  3487. .mailbox-read-info {
  3488. border-bottom: 1px solid $light;
  3489. padding: 10px;
  3490. h3 {
  3491. font-size: $fs-20;
  3492. margin: 0;
  3493. }
  3494. h5 {
  3495. margin: 0;
  3496. padding: 5px 0 0;
  3497. }
  3498. }
  3499. .mailbox-read-time {
  3500. color: lighten($black, 45%);
  3501. font-size: $fs-14;
  3502. }
  3503. .mailbox-read-message {
  3504. padding: 10px;
  3505. }
  3506. .mailbox-attachments li {
  3507. float: left;
  3508. width: 140px;
  3509. border: 1px solid lighten($black, 65%);
  3510. margin-bottom: 10px;
  3511. margin-right: 10px;
  3512. }
  3513. .mailbox-attachment-name {
  3514. font-weight: 300;
  3515. color: lighten($black, 45%);
  3516. font-size: 10px;
  3517. }
  3518. .mailbox-attachment-info {
  3519. padding: 10px;
  3520. background: $light;
  3521. }
  3522. .mailbox-attachment-size {
  3523. color: lighten($black, 45%);
  3524. font-size: $fs-12;
  3525. }
  3526. .mailbox-attachment-icon {
  3527. text-align: center;
  3528. font-size: $fs-50;
  3529. color: lighten($black, 45%);
  3530. padding: 20px 10px;
  3531. &.has-img {
  3532. padding: 0;
  3533. >img {
  3534. max-width: 100%;
  3535. height: auto;
  3536. }
  3537. }
  3538. }
  3539. /*Extra Pages*/
  3540. .lockscreen-box-body {
  3541. -webkit-box-shadow: 0 2px 2px 0 rgba(lighten($black, 50%), .14), 0 3px 1px -2px rgba(lighten($black, 50%), .2), 0 1px 5px 0 rgba(lighten($black, 50%), .12);
  3542. box-shadow: 0 2px 2px 0 rgba(lighten($black, 50%), .14), 0 3px 1px -2px rgba(lighten($black, 50%), .2), 0 1px 5px 0 rgba(lighten($black, 50%), .12);
  3543. }
  3544. .has-feedback{
  3545. position: relative;
  3546. .form-control-feedback {
  3547. position: absolute;
  3548. top: 0;
  3549. right: 0;
  3550. z-index: 2;
  3551. display: block;
  3552. width: 34px;
  3553. height: 34px;
  3554. line-height: 34px;
  3555. text-align: center;
  3556. pointer-events: none;
  3557. }
  3558. }
  3559. .register-page{
  3560. .form-control-feedback{
  3561. position: absolute;
  3562. top: 0;
  3563. right: 0;
  3564. z-index: 2;
  3565. display: block;
  3566. width: 34px;
  3567. height: 34px;
  3568. line-height: 34px;
  3569. text-align: center;
  3570. pointer-events: none;
  3571. }
  3572. }
  3573. .login-page{
  3574. .form-control-feedback{
  3575. position: absolute;
  3576. top: 0;
  3577. right: 0;
  3578. z-index: 2;
  3579. display: block;
  3580. width: 34px;
  3581. height: 34px;
  3582. line-height: 34px;
  3583. text-align: center;
  3584. pointer-events: none;
  3585. }
  3586. }
  3587. .lockscreen{
  3588. .form-control-feedback{
  3589. position: absolute;
  3590. top: 0;
  3591. right: 0;
  3592. z-index: 2;
  3593. display: block;
  3594. width: 34px;
  3595. height: 34px;
  3596. line-height: 34px;
  3597. text-align: center;
  3598. pointer-events: none;
  3599. }
  3600. }
  3601. .content-top-agile {
  3602. text-align: center;
  3603. position: relative;
  3604. }
  3605. .auth-2 {
  3606. width: 500px;
  3607. margin: 0;
  3608. padding: 7% 30px;
  3609. float: right;
  3610. height: 100%;
  3611. overflow-y: scroll;
  3612. }
  3613. .auth-logo {
  3614. text-align: center;
  3615. font-weight: 300;
  3616. }
  3617. .auth-body {
  3618. padding: 20px 20px 10px;
  3619. }
  3620. .auth-msg {
  3621. margin: 0;
  3622. text-align: center;
  3623. padding: 0 20px 20px;
  3624. }
  3625. .auth-2-outer{
  3626. display: block;
  3627. }
  3628. @include screen-sm-max{
  3629. .content-top-agile {
  3630. border-radius: 25px 25px 0 0;
  3631. }
  3632. .content-bottom {
  3633. padding: 3em;
  3634. background: $white;
  3635. border-radius: 0 0 25px 25px;
  3636. }
  3637. .auth-2 {
  3638. width: 300px;
  3639. margin: 0px auto;
  3640. float: none;
  3641. border-radius: 5px;
  3642. height: auto;
  3643. }
  3644. .auth-2-outer{
  3645. display: -ms-flexbox;
  3646. display: flex;
  3647. }
  3648. }
  3649. .error-page-title{
  3650. text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
  3651. }
  3652. .error-page>.error-content, .login-box .fog-pwd, .mailbox-attachment-icon, .mailbox-attachment-info, .mailbox-attachment-size {
  3653. display: block;
  3654. }
  3655. /*lable floting*/
  3656. .has-warning{
  3657. .bar{
  3658. @include before-after-state{
  3659. background: $warning;
  3660. }
  3661. }
  3662. .form-control{
  3663. &:focus ~ label, &:valid ~ label{
  3664. color: $warning;
  3665. }
  3666. }
  3667. }
  3668. .has-success{
  3669. .bar{
  3670. @include before-after-state{
  3671. background: $success;
  3672. }
  3673. }
  3674. .form-control{
  3675. &:focus ~ label, &:valid ~ label{
  3676. color: $success;
  3677. }
  3678. }
  3679. }
  3680. .has-error{
  3681. .bar{
  3682. @include before-after-state{
  3683. background: $danger;
  3684. }
  3685. }
  3686. .form-control{
  3687. &:focus ~ label, &:valid ~ label{
  3688. color: $danger;
  3689. }
  3690. }
  3691. }
  3692. .has-feedback{
  3693. label ~ .t-0 {
  3694. top: 0;
  3695. }
  3696. }
  3697. .form-group{
  3698. &.error{
  3699. input, select, textarea{
  3700. border: 1px solid $danger;
  3701. }
  3702. .help-block ul {
  3703. padding: 0px;
  3704. color: $danger;
  3705. li {
  3706. list-style: none;
  3707. }
  3708. }
  3709. }
  3710. &.validate{
  3711. input, select, textarea{
  3712. border: 1px solid $success;
  3713. }
  3714. }
  3715. &.issue{
  3716. .help-block ul {
  3717. padding: 0px;
  3718. color: $warning;
  3719. li {
  3720. list-style: none;
  3721. }
  3722. }
  3723. }
  3724. }
  3725. /*invoice*/
  3726. .no-print{
  3727. margin: 15px 10px;
  3728. }
  3729. .invoice {
  3730. position: relative;
  3731. background: $white;
  3732. border: 1px solid $light;
  3733. padding: 20px;
  3734. margin: 10px 10px;
  3735. }
  3736. .invoice-details{
  3737. padding-top: 15px;
  3738. padding-bottom: 15px;
  3739. }
  3740. .total-payment h3 {
  3741. padding-top: 15px;
  3742. padding-bottom: 15px;
  3743. border-top: 1px solid lighten($black, 80%);
  3744. display: inline-block;
  3745. margin-top: 0;
  3746. }
  3747. .invoice-title {
  3748. margin-top: 0;
  3749. }
  3750. .invoice-details {
  3751. background-color: $light;
  3752. margin-bottom: 15px;
  3753. border: 1px solid lighten($black, 80%);
  3754. }
  3755. @media print {
  3756. .content-header, .left-side, .main-header, .main-sidebar, .no-print {
  3757. display: none!important;
  3758. }
  3759. .content-wrapper, .main-footer, .right-side {
  3760. margin-left: 0!important;
  3761. min-height: 0!important;
  3762. -webkit-transform: translate(0, 0);
  3763. -ms-transform: translate(0, 0);
  3764. -o-transform: translate(0, 0);
  3765. transform: translate(0, 0);
  3766. }
  3767. .fixed .content-wrapper, .fixed .right-side {
  3768. padding-top: 0!important;
  3769. }
  3770. .invoice {
  3771. width: 100%;
  3772. border: 0;
  3773. margin: 0;
  3774. padding: 0;
  3775. }
  3776. .invoice-col {
  3777. float: left;
  3778. width: 33.3333333%}
  3779. .table-responsive {
  3780. overflow: auto;
  3781. }
  3782. .table-responsive>.table tr td, .table-responsive>.table tr th {
  3783. white-space: normal;
  3784. }
  3785. }
  3786. /*profile*/
  3787. .activitytimeline {
  3788. position: relative;
  3789. margin-left: 50px;
  3790. margin-right: 10px;
  3791. }
  3792. .box-profile{
  3793. .social-states {
  3794. font-size: $fs-16;
  3795. a {
  3796. color: $white;
  3797. }
  3798. }
  3799. }
  3800. .post {
  3801. border-bottom: 1px solid lighten($black, 85%);
  3802. margin-bottom: 15px;
  3803. padding-bottom: 15px;
  3804. color: lighten($black, 45%);
  3805. &:last-of-type {
  3806. border-bottom: 0;
  3807. margin-bottom: 0;
  3808. padding-bottom: 0;
  3809. }
  3810. .user-block {
  3811. margin-bottom: 15px;
  3812. }
  3813. }
  3814. .user-block {
  3815. @include before-after-state{
  3816. content: " ";
  3817. display: table;
  3818. }
  3819. img {
  3820. width: 40px;
  3821. height: 40px;
  3822. float: left;
  3823. }
  3824. .comment, .description, .username{
  3825. display: block;
  3826. margin-left: 50px;
  3827. }
  3828. .username {
  3829. font-size: $fs-16;
  3830. font-weight: 600;
  3831. }
  3832. .description {
  3833. color: lighten($black, 45%);
  3834. font-size: $fs-14;
  3835. }
  3836. &.user-block-sm .username {
  3837. font-size: $fs-14;
  3838. }
  3839. }
  3840. .img-sm+.img-push, .user-block.user-block-sm .comment, .user-block.user-block-sm .description, .user-block.user-block-sm .username {
  3841. margin-left: 40px;
  3842. }
  3843. /*calendar*/
  3844. .box .datepicker-inline, .box .datepicker-inline .datepicker-days, .box .datepicker-inline .datepicker-days>table, .box .datepicker-inline>table, .fc-grid {
  3845. width: 100%;}
  3846. .fc-day-number{
  3847. padding-right: 10px;
  3848. }
  3849. .fc-header-right{
  3850. padding-right: 10px;
  3851. }
  3852. .fc-button{
  3853. background: $white;
  3854. border: 1px solid rgba(lighten($dark, 40%), .13);
  3855. color: lighten($black, 45%);
  3856. text-transform: capitalize;
  3857. @include hover-active-state{
  3858. background-color: $light;
  3859. opacity: .8;
  3860. }
  3861. }
  3862. .fc-header-title{
  3863. h2 {
  3864. font-size: $fs-16;
  3865. color: lighten($black, 45%);
  3866. margin-left: 10px;
  3867. }
  3868. }
  3869. .fc-header-left {
  3870. padding-left: 10px;
  3871. }
  3872. .fc-widget-header {
  3873. background: transparent;
  3874. border: 0;
  3875. &:first-of-type{
  3876. border-left: 0;
  3877. border-right: 0;
  3878. }
  3879. &:last-of-type {
  3880. border-right: 0;
  3881. }
  3882. }
  3883. .fc-grid {
  3884. border: 0;
  3885. }
  3886. .fc-widget-content{
  3887. border-color: rgba(lighten($dark, 40%), .0)!important;
  3888. &:first-of-type{
  3889. border-left: 0;
  3890. border-right: 0;
  3891. }
  3892. &:last-of-type {
  3893. border-right: 0;
  3894. }
  3895. }
  3896. .fc-day-number {
  3897. font-size: $fs-20;
  3898. font-weight: 300;
  3899. }
  3900. .fc-color-picker {
  3901. list-style: none;
  3902. margin: 0;
  3903. padding: 0;
  3904. >li {
  3905. float: left;
  3906. font-size: $fs-30;
  3907. margin-right: 5px;
  3908. line-height: 30px;
  3909. .fa {
  3910. -webkit-transition: -webkit-transform linear .3s;
  3911. -moz-transition: -moz-transform linear .3s;
  3912. -o-transition: -o-transform linear .3s;
  3913. transition: transform linear .3s;
  3914. &:hover {
  3915. -webkit-transform: rotate(30deg);
  3916. -ms-transform: rotate(30deg);
  3917. -o-transform: rotate(30deg);
  3918. transform: rotate(30deg);
  3919. }
  3920. }
  3921. }
  3922. }
  3923. .calendar {
  3924. float: left;
  3925. margin-bottom: 0;
  3926. }
  3927. .fc-toolbar {
  3928. margin: 0 (1.5rem / 2) !important;
  3929. padding: 1rem 0;
  3930. h2 {
  3931. font-size: $fs-18;
  3932. font-weight: 500;
  3933. line-height: 30px;
  3934. }
  3935. &.fc-header-toolbar{
  3936. margin-bottom: 0;
  3937. }
  3938. .fc-center {
  3939. color: lighten($black, 45%);
  3940. }
  3941. }
  3942. .fc-day {
  3943. background: $white;
  3944. }
  3945. .fc-toolbar{
  3946. .fc-state-active, .ui-state-active, button:focus, button:hover{
  3947. z-index: 0;
  3948. }
  3949. }
  3950. .fc{
  3951. th{
  3952. &.fc-widget-header{
  3953. color: #777777;
  3954. font-size: $fs-14;
  3955. font-weight: 300;
  3956. line-height: 20px;
  3957. padding: 7px 0;
  3958. }
  3959. &.fc-fri, &.fc-mon, &.fc-sat, &.fc-sun, &.fc-thu, &.fc-tue, &.fc-wed{
  3960. background: transparent;
  3961. }
  3962. }
  3963. }
  3964. .fc-view {
  3965. margin-top: 0;
  3966. }
  3967. .fc-time-grid {
  3968. .fc-slats td {
  3969. color: $white;
  3970. }
  3971. }
  3972. .fc-text-arrow {
  3973. font-family: inherit;
  3974. font-size: $fs-16;
  3975. }
  3976. .fc-state-hover {
  3977. background: $light;
  3978. }
  3979. .fc-unthemed .fc-today {
  3980. border: 1px solid $danger;
  3981. background: $light!important;
  3982. }
  3983. .fc-cell-overlay, .fc-state-highlight {
  3984. background: $light;
  3985. }
  3986. .calendar-event {
  3987. cursor: move;
  3988. text-align: center;
  3989. }
  3990. .fc-event {
  3991. border-radius: 0;
  3992. border: none;
  3993. color: $white!important;
  3994. font-size: $fs-12;
  3995. margin: 1px -1px 0;
  3996. padding: 5px;
  3997. cursor: move;
  3998. text-align: center;
  3999. }
  4000. .fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td, .fc-unthemed th, .fc-unthemed thead {
  4001. border-color: transparent;
  4002. }
  4003. .calendar-event{
  4004. margin: 10px 5px 0 0;
  4005. padding: 6px 10px;
  4006. display: inline-block;
  4007. color: $white;
  4008. min-width: 140px;
  4009. a {
  4010. float: right;
  4011. opacity: .6;
  4012. font-size: $fs-10;
  4013. margin: 4px 0 0 10px;
  4014. color: $white;
  4015. }
  4016. }
  4017. .fc-basic-view{
  4018. td.fc-week-number span {
  4019. padding-right: 5px;
  4020. }
  4021. .fc-day-number {
  4022. padding: 0px 15px;
  4023. display: inline-block;
  4024. }
  4025. }
  4026. .dask .fc-day-number {
  4027. font-size: $fs-14;
  4028. }
  4029. @include screen-xl{
  4030. .fc-basic-view .fc-day-number {
  4031. padding: 10px 15px;
  4032. }
  4033. .dask .fc-basic-view .fc-day-number {
  4034. padding: 10px 15px 0px;
  4035. }
  4036. }
  4037. #add-new-event {
  4038. -webkit-transition: all linear .3s;
  4039. -o-transition: all linear .3s;
  4040. transition: all linear .3s;
  4041. }
  4042. .dot-outline {
  4043. border: 1px dotted lighten($black, 80%);
  4044. }
  4045. .external-event {
  4046. text-transform: uppercase;
  4047. padding: 0.75rem 1.5rem;
  4048. font-weight: 300;
  4049. margin: 0rem 1rem .25rem;
  4050. cursor: move;
  4051. border-radius: $fct-border-radius;
  4052. i {
  4053. margin-right: 5px;
  4054. }
  4055. &:hover {
  4056. background-color: $light;
  4057. }
  4058. }
  4059. .description-block>.description-text {
  4060. text-transform: uppercase;
  4061. }
  4062. .res-tb-block {
  4063. display: block;
  4064. overflow: auto;
  4065. }
  4066. .description-block {
  4067. display: block;
  4068. margin: 10px 0;
  4069. text-align: center;
  4070. >.description-header {
  4071. margin: 5px 0;
  4072. padding: 0;
  4073. font-weight: 600;
  4074. font-size: $fs-16;
  4075. }
  4076. }
  4077. .list-header, .text-bold, .text-bold.table td, .text-bold.table th {
  4078. font-weight: 700;
  4079. }
  4080. /*---Extra---*/
  4081. .jqstooltip {
  4082. padding: 5px!important;
  4083. width: auto!important;
  4084. height: auto!important;
  4085. }
  4086. .box-comments .box-comment img, .img-lg, .img-md, .img-sm, .user-block.user-block-sm img {
  4087. float: left;
  4088. }
  4089. .box-comments .box-comment img, .img-sm, .user-block.user-block-sm img {
  4090. width: 30px!important;
  4091. height: 30px!important;
  4092. }
  4093. .attachment-block .attachment-pushed, .img-lg+.img-push {
  4094. margin-left: 110px;
  4095. }
  4096. .attachment-block {
  4097. border: 1px solid $light;
  4098. padding: 5px;
  4099. margin-bottom: 10px;
  4100. background: $light;
  4101. .attachment-img {
  4102. max-width: 100px;
  4103. max-height: 100px;
  4104. height: auto;
  4105. float: left;
  4106. }
  4107. .attachment-heading {
  4108. margin: 0;
  4109. }
  4110. .attachment-text {
  4111. color: $dark;
  4112. }
  4113. }
  4114. .connectedSortable {
  4115. min-height: 100px;
  4116. }
  4117. .ui-helper-hidden-accessible {
  4118. border: 0;
  4119. clip: rect(0 0 0 0);
  4120. height: 1px;
  4121. margin: -1px;
  4122. overflow: hidden;
  4123. padding: 0;
  4124. position: absolute;
  4125. width: 1px;
  4126. }
  4127. .sort-highlight {
  4128. background: $light;
  4129. border: 1px dashed #ddd;
  4130. margin-bottom: 10px;
  4131. }
  4132. .full-opacity-hover {
  4133. opacity: .65;
  4134. filter: alpha(opacity=65);
  4135. &:hover {
  4136. opacity: 1;
  4137. filter: alpha(opacity=100);
  4138. }
  4139. }
  4140. .chart {
  4141. position: relative;
  4142. overflow: hidden;
  4143. width: 100%;
  4144. canvas, svg {
  4145. width: 100%!important;
  4146. }
  4147. }
  4148. /*---icon & divider---*/
  4149. @include screen-md{
  4150. .material-icon-list-demo {
  4151. .icons div{
  4152. width: 33%;
  4153. padding: 5px;
  4154. display: inline-block;
  4155. line-height: 40px;
  4156. }
  4157. .mdi {
  4158. font-size: $fs-22;
  4159. }
  4160. }
  4161. }
  4162. .material-icon-list-demo{
  4163. .icons div code {
  4164. margin: 0px 5px;
  4165. }
  4166. }
  4167. .icons-list-demo .col-md-4, .icons-list-demo .col-3 {
  4168. border-radius: 4px;
  4169. }
  4170. .icons-list-demo div {
  4171. cursor: pointer;
  4172. line-height: 60px;
  4173. white-space: nowrap;
  4174. color: lighten($black, 45%);
  4175. }
  4176. .icons-list-demo .col-md-4:hover, .icons-list-demo .col-3:hover {
  4177. background-color: $light;
  4178. }
  4179. .icons-list-demo div:hover {
  4180. color: $dark;
  4181. }
  4182. .icons-list-demo i {
  4183. -webkit-transition: font-size .2s;
  4184. -o-transition: font-size .2s;
  4185. transition: font-size .2s;
  4186. display: inline-block;
  4187. font-size: $fs-18;
  4188. margin: 0 15px 0 10px;
  4189. text-align: left;
  4190. -webkit-transition: all 0.3s ease 0s;
  4191. -o-transition: all 0.3s ease 0s;
  4192. transition: all 0.3s ease 0s;
  4193. vertical-align: middle;
  4194. }
  4195. .divider-dash{
  4196. opacity: .7;
  4197. margin: 0 4px;
  4198. vertical-align: middle;
  4199. color: lighten($dark, 25%);
  4200. &::before {
  4201. content: '\2014 \00A0';
  4202. }
  4203. }
  4204. .divider-dot {
  4205. display: inline-block;
  4206. width: 3px;
  4207. height: 3px;
  4208. border-radius: 50%;
  4209. margin: 0 4px;
  4210. vertical-align: middle;
  4211. opacity: .5;
  4212. background-color: lighten($dark, 25%);
  4213. }
  4214. .divider-line {
  4215. display: -webkit-inline-box;
  4216. display: inline-flex;
  4217. height: 20px;
  4218. width: 1px;
  4219. margin: 0 4px;
  4220. background-color: rgba(lighten($dark, 25%), 0.07);
  4221. }
  4222. .divider {
  4223. display: -webkit-box;
  4224. display: flex;
  4225. -webkit-box-align: center;
  4226. align-items: center;
  4227. -webkit-box-flex: 0;
  4228. flex: 0 1 0%;
  4229. color: lighten($dark, 25%);
  4230. font-size: $fs-12;
  4231. letter-spacing: .5px;
  4232. margin: 2rem auto;
  4233. width: 100%;
  4234. @include before-after-state{
  4235. content: '';
  4236. -webkit-box-flex: 1;
  4237. flex-grow: 1;
  4238. border-top: 1px solid lighten($black, 90%);
  4239. }
  4240. &::before {
  4241. margin-right: 16px;
  4242. }
  4243. &::after {
  4244. margin-left: 16px;
  4245. }
  4246. a {
  4247. color: lighten($dark, 25%);
  4248. }
  4249. }
  4250. .divider-vertical {
  4251. display: -webkit-inline-box;
  4252. display: inline-flex;
  4253. -webkit-box-orient: vertical;
  4254. -webkit-box-direction: normal;
  4255. flex-direction: column;
  4256. margin-top: 0;
  4257. margin-bottom: 0;
  4258. padding: 0 2rem;
  4259. @include before-after-state{
  4260. border-top: none;
  4261. border-right: 1px solid lighten($black, 90%);
  4262. margin: 0;
  4263. }
  4264. &::before {
  4265. margin-bottom: 16px;
  4266. }
  4267. &::after {
  4268. margin-top: 16px;
  4269. }
  4270. &.divider-sm {
  4271. padding: 0 1rem;
  4272. }
  4273. &.divider-lg {
  4274. padding: 0 3rem;
  4275. }
  4276. }
  4277. .hr-sm,
  4278. .divider-sm {
  4279. margin: 1rem auto;
  4280. }
  4281. .hr-lg,
  4282. .divider-lg {
  4283. margin: 3rem auto;
  4284. }
  4285. /*---grid-stack---*/
  4286. .grid-stack>.grid-stack-item>.grid-stack-item-content {
  4287. border: 1px solid rgba(lighten($black, 20%), 0.13);
  4288. }
  4289. .grid-stack-item-content {
  4290. background: $white;
  4291. color: $dark;
  4292. font-family: $bodyfont;
  4293. text-align: center;
  4294. font-size: $fs-20;
  4295. .fa {
  4296. font-size: $fs-60;
  4297. display: block;
  4298. margin: 20px 0 10px;
  4299. }
  4300. }
  4301. /* date-paginator */
  4302. .dp-selected[style] {
  4303. background-color: $success !important;
  4304. }
  4305. .dp-item {
  4306. position: relative;
  4307. line-height: 1.42857143;
  4308. }
  4309. /**********Nestable**********/
  4310. .myadmin-dd{
  4311. .dd-list{
  4312. .dd-item{
  4313. .dd-handle {
  4314. background: $white;
  4315. border: 1px solid rgba(lighten($dark, 20%), 0.13);
  4316. padding: 8px 16px;
  4317. height: auto;
  4318. font-weight: 600;
  4319. border-radius: 0px;
  4320. }
  4321. }
  4322. .dd-item button {
  4323. height: auto;
  4324. font-size: $fs-18;
  4325. margin: 8px auto;
  4326. color: $dark;
  4327. width: 30px;
  4328. }
  4329. }
  4330. }
  4331. .myadmin-dd-empty{
  4332. .dd-list{
  4333. .dd3-handle {
  4334. border: 1px solid rgba(lighten($dark, 20%), 0.13);
  4335. border-bottom: 0px;
  4336. background: $white;
  4337. height: 36px;
  4338. width: 36px;
  4339. &:before {
  4340. color: inherit;
  4341. top: 7px;
  4342. }
  4343. }
  4344. .dd3-content {
  4345. height: auto;
  4346. border: 1px solid rgba(lighten($dark, 20%), 0.13);
  4347. padding: 8px 16px 8px 46px;
  4348. background: $white;
  4349. font-weight: 600;
  4350. }
  4351. }
  4352. .dd-list button {
  4353. width: 26px;
  4354. height: 26px;
  4355. font-size: $fs-16;
  4356. font-weight: 600;
  4357. }
  4358. }
  4359. /* ribbon */
  4360. .ribbon-box{
  4361. position: relative;
  4362. .ribbon {
  4363. position: relative;
  4364. float: left;
  4365. clear: both;
  4366. padding: 5px 12px 5px 12px;
  4367. margin-left: -30px;
  4368. margin-bottom: 15px;
  4369. -webkit-box-shadow: 2px 5px 10px rgba(darken($warning, 40%), 0.15);
  4370. -o-box-shadow: 2px 5px 10px rgba(darken($warning, 40%), 0.15);
  4371. box-shadow: 2px 5px 10px rgba(darken($warning, 40%), 0.15);
  4372. color: $white;
  4373. font-size: $fs-14;
  4374. font-weight: 600;
  4375. &:before {
  4376. content: " ";
  4377. border-style: solid;
  4378. border-width: 10px;
  4379. display: block;
  4380. position: absolute;
  4381. bottom: -10px;
  4382. left: 0;
  4383. margin-bottom: -10px;
  4384. z-index: -1;
  4385. }
  4386. + p {
  4387. clear: both;
  4388. }
  4389. }
  4390. .ribbon-dark {
  4391. background: $dark;
  4392. &:before {
  4393. border-color: $dark transparent transparent;
  4394. }
  4395. }
  4396. .ribbon-two {
  4397. position: absolute;
  4398. left: -5px;
  4399. top: -5px;
  4400. z-index: 1;
  4401. overflow: hidden;
  4402. width: 75px;
  4403. height: 75px;
  4404. text-align: right;
  4405. span {
  4406. font-size: $fs-14;
  4407. color: $white;
  4408. text-align: center;
  4409. line-height: 20px;
  4410. transform: rotate(-45deg);
  4411. -webkit-transform: rotate(-45deg);
  4412. width: 100px;
  4413. display: block;
  4414. -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
  4415. box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
  4416. position: absolute;
  4417. top: 19px;
  4418. left: -21px;
  4419. font-weight: 600;
  4420. &:before {
  4421. content: "";
  4422. position: absolute;
  4423. left: 0;
  4424. top: 100%;
  4425. z-index: -1;
  4426. border-right: 3px solid transparent;
  4427. border-bottom: 3px solid transparent;
  4428. }
  4429. &:after {
  4430. content: "";
  4431. position: absolute;
  4432. right: 0;
  4433. top: 100%;
  4434. z-index: -1;
  4435. border-left: 3px solid transparent;
  4436. border-bottom: 3px solid transparent;
  4437. }
  4438. }
  4439. }
  4440. .ribbon-two-dark{
  4441. span {
  4442. background: $dark;
  4443. &:before {
  4444. border-left: 3px solid darken($dark, 15%);
  4445. border-top: 3px solid darken($dark, 15%);
  4446. }
  4447. }
  4448. }
  4449. }
  4450. /*---gallery---*/
  4451. #gallery-header-center-center{
  4452. line-height: 35px;
  4453. margin-bottom: 0px;
  4454. text-align: center;
  4455. .gallery-header-center-right-links {
  4456. float: none;
  4457. width: auto;
  4458. display: inline-block;
  4459. border-radius: 5px;
  4460. }
  4461. }
  4462. #gallery-header-center {
  4463. text-align: right;
  4464. }
  4465. /*---subheader__daterange---*/
  4466. .subheader_daterange {
  4467. display: inline-block;
  4468. -webkit-border-radius: $fct-border-radius;
  4469. -moz-border-radius: $fct-border-radius;
  4470. -ms-border-radius: $fct-border-radius;
  4471. -o-border-radius: $fct-border-radius;
  4472. border-radius: $fct-border-radius;
  4473. padding: 5px 10px;
  4474. cursor: pointer;
  4475. background: $white;
  4476. width: max-content;
  4477. .subheader_daterange-label {
  4478. padding: .5rem 0.25rem; }
  4479. }
  4480. /*---ecommerece pages---*/
  4481. .product-img {
  4482. text-align: center;
  4483. position: relative;
  4484. transition: all 1s ease;
  4485. img {
  4486. max-width: 250px;
  4487. }
  4488. .pro-img-overlay{
  4489. a {
  4490. box-shadow: 0 0 10px rgba(0,0,0,.1);
  4491. display: inline-block;
  4492. text-align: center;
  4493. color: $white;
  4494. }
  4495. }
  4496. .fileupload {
  4497. overflow: hidden;
  4498. position: relative;
  4499. input.upload {
  4500. cursor: pointer;
  4501. filter: alpha(opacity=0);
  4502. font-size: $fs-20;
  4503. margin: 0;
  4504. opacity: 0;
  4505. padding: 0;
  4506. position: absolute;
  4507. right: 0;
  4508. top: 0;
  4509. }
  4510. }
  4511. }
  4512. .product-text{
  4513. padding-left: $default-gutter-width;
  4514. padding-right: $default-gutter-width;
  4515. position: relative;
  4516. .pro-img-overlay {
  4517. position: relative;
  4518. display: block;
  4519. margin-top: -40px;
  4520. text-align: right;
  4521. }
  4522. .pro-price {
  4523. position: absolute;
  4524. text-align: center;
  4525. top: 0;
  4526. right: 5px;
  4527. margin: 0;
  4528. font-weight: 500;
  4529. padding: 0 10px;
  4530. }
  4531. }
  4532. .product-order{
  4533. &.table{
  4534. tbody tr{
  4535. td {
  4536. vertical-align: middle;
  4537. }
  4538. }
  4539. }
  4540. &.table-hover tbody tr:hover {
  4541. background-color: rgba(0,0,0,.01);
  4542. }
  4543. }
  4544. .pro-photos {
  4545. margin-left: -15px;
  4546. overflow: hidden;
  4547. .photos-item {
  4548. margin-left: 15px;
  4549. width: calc(25% - 15px);
  4550. text-align: center;
  4551. float: left;
  4552. border: 1px solid $light;
  4553. border-radius: .35rem;
  4554. overflow: hidden;
  4555. margin-bottom: 1.42rem;
  4556. background: $white;
  4557. cursor: pointer;
  4558. img {
  4559. width: 5rem;
  4560. max-width: 100%;
  4561. }
  4562. }
  4563. .item-active {
  4564. border-color: $danger;
  4565. }
  4566. }
  4567. .pro-price{
  4568. .old-price {
  4569. text-decoration: line-through;
  4570. }
  4571. span {
  4572. font-size: $fs-16;
  4573. font-weight: 400;
  4574. color: lighten($black, 55%);
  4575. margin-left: 10px;
  4576. }
  4577. }
  4578. .icheck-list{
  4579. padding: 0;
  4580. margin: 0;
  4581. list-style: none;
  4582. }
  4583. .icolors {
  4584. padding: 0;
  4585. margin: 0;
  4586. list-style: none;
  4587. >li{
  4588. &:first-child {
  4589. margin-left: 0;
  4590. }
  4591. padding: 0;
  4592. margin: 2px;
  4593. float: left;
  4594. display: inline-block;
  4595. height: 30px;
  4596. width: 30px;
  4597. text-align: center;
  4598. &.active:after {
  4599. content: "\2713 ";
  4600. color: $white;
  4601. line-height: 30px;
  4602. }
  4603. }
  4604. }
  4605. /*Font Icon demo style*/
  4606. .fontawesome-icon-list{
  4607. .fa-hover{
  4608. cursor: pointer;
  4609. line-height: 50px;
  4610. white-space: nowrap;
  4611. color: $dark;
  4612. font-weight: 300;
  4613. font-size: 16px;
  4614. text-overflow: ellipsis;
  4615. overflow: hidden;
  4616. i{
  4617. padding-right: 10px;
  4618. font-size: $fs-18;
  4619. }
  4620. &:hover{
  4621. background-color: $light;
  4622. color: $dark;
  4623. i{
  4624. color: $info;
  4625. }
  4626. }
  4627. }
  4628. }
  4629. .ion-icon-list{
  4630. .ion-hover {
  4631. cursor: pointer;
  4632. line-height: 50px;
  4633. white-space: nowrap;
  4634. color: $dark;
  4635. font-weight: 300;
  4636. font-size: 16px;
  4637. text-overflow: ellipsis;
  4638. overflow: hidden;
  4639. i{
  4640. padding-right: 10px;
  4641. font-size: $fs-18;
  4642. }
  4643. &:hover{
  4644. background-color: $light;
  4645. color: $dark;
  4646. i{
  4647. color: $info;
  4648. }
  4649. }
  4650. }
  4651. }
  4652. .icons-page{
  4653. .preview {
  4654. padding: 15px 0;
  4655. position: relative;
  4656. height: 40px;
  4657. .code-preview {
  4658. padding: 10px;
  4659. }
  4660. }
  4661. .si {
  4662. margin-right: 10px;
  4663. }
  4664. }
  4665. .bs-glyphicons {
  4666. padding-left: 0;
  4667. padding-bottom: 1px;
  4668. margin-bottom: 20px;
  4669. list-style: none;
  4670. overflow: hidden;
  4671. li {
  4672. float: left;
  4673. width: 25%;
  4674. height: 115px;
  4675. padding: 10px;
  4676. margin: 0 -1px -1px 0;
  4677. font-size: 12px;
  4678. line-height: 1.4;
  4679. text-align: center;
  4680. border: 1px solid $light;
  4681. color: $dark;
  4682. &:hover {
  4683. background-color: $light;
  4684. color: $info;
  4685. .glyphicon{
  4686. color: $info;
  4687. }
  4688. }
  4689. }
  4690. .glyphicon {
  4691. margin-top: 5px;
  4692. margin-bottom: 10px;
  4693. font-size: $fs-24;
  4694. }
  4695. .glyphicon-class {
  4696. display: block;
  4697. text-align: center;
  4698. word-wrap: break-word; /* Help out IE10+ with class names */
  4699. }
  4700. }
  4701. @include screen-lg{
  4702. .bs-glyphicons li {
  4703. width: 12.5%;
  4704. }
  4705. }
  4706. @include screen-sm-max{
  4707. .bs-glyphicons li {
  4708. width: 50%;
  4709. }
  4710. }
  4711. /*---web tickers---*/
  4712. .tickers-block .tickercontainer {
  4713. .cc {
  4714. font-size: $fs-20;
  4715. margin: 0;
  4716. }
  4717. li {
  4718. font-size: $fs-14;
  4719. font-weight: 500;
  4720. line-height: 45px;
  4721. }
  4722. }
  4723. .example-modal .modal {
  4724. position: relative;
  4725. top: auto;
  4726. bottom: auto;
  4727. right: auto;
  4728. left: auto;
  4729. display: block;
  4730. z-index: 1;
  4731. background: transparent !important;
  4732. }
  4733. /*-- timer --*/
  4734. .timer {
  4735. font-size: 3.2rem;
  4736. display: inline-block;
  4737. vertical-align: top;
  4738. font-weight: 600;
  4739. }
  4740. .text {
  4741. font-size: 1rem;
  4742. margin-top: 0.5em;
  4743. text-align: center;
  4744. letter-spacing: 4px;
  4745. font-weight: 400;
  4746. }
  4747. /*-- light on-off --*/
  4748. .light-skin{
  4749. .switch-on{
  4750. display: block;
  4751. color: $warning;
  4752. }
  4753. .switch-off{
  4754. display: none;
  4755. }
  4756. }
  4757. .dark-skin{
  4758. .switch-on{
  4759. display: none;
  4760. }
  4761. .switch-off{
  4762. display: block;
  4763. color: lighten($black, 55%);
  4764. }
  4765. }
  4766. /*---dash world map---*/
  4767. .map-marker {
  4768. /* adjusting for the marker dimensions
  4769. so that it is centered on coordinates */
  4770. margin-left: -8px;
  4771. margin-top: -8px;
  4772. }
  4773. .map-marker.map-clickable {
  4774. cursor: pointer;
  4775. }
  4776. .pulse {
  4777. width: 10px;
  4778. height: 10px;
  4779. border: 5px solid $info;
  4780. -webkit-border-radius: 30px;
  4781. -moz-border-radius: 30px;
  4782. border-radius: 30px;
  4783. background-color: $info;
  4784. z-index: 10;
  4785. position: absolute;
  4786. }
  4787. .map-marker .dot {
  4788. border: 10px solid $info;
  4789. background: transparent;
  4790. -webkit-border-radius: 60px;
  4791. -moz-border-radius: 60px;
  4792. border-radius: 60px;
  4793. height: 50px;
  4794. width: 50px;
  4795. -webkit-animation: mappulse 3s ease-out;
  4796. -moz-animation: mappulse 3s ease-out;
  4797. animation: mappulse 3s ease-out;
  4798. -webkit-animation-iteration-count: infinite;
  4799. -moz-animation-iteration-count: infinite;
  4800. animation-iteration-count: infinite;
  4801. position: absolute;
  4802. top: -20px;
  4803. left: -20px;
  4804. z-index: 1;
  4805. opacity: 0;
  4806. }
  4807. @-moz-keyframes mappulse {
  4808. 0% {
  4809. -moz-transform: scale(0);
  4810. opacity: 0.0;
  4811. }
  4812. 25% {
  4813. -moz-transform: scale(0);
  4814. opacity: 0.1;
  4815. }
  4816. 50% {
  4817. -moz-transform: scale(0.1);
  4818. opacity: 0.3;
  4819. }
  4820. 75% {
  4821. -moz-transform: scale(0.5);
  4822. opacity: 0.5;
  4823. }
  4824. 100% {
  4825. -moz-transform: scale(1);
  4826. opacity: 0.0;
  4827. }
  4828. }
  4829. @-webkit-keyframes "mappulse" {
  4830. 0% {
  4831. -webkit-transform: scale(0);
  4832. opacity: 0.0;
  4833. }
  4834. 25% {
  4835. -webkit-transform: scale(0);
  4836. opacity: 0.1;
  4837. }
  4838. 50% {
  4839. -webkit-transform: scale(0.1);
  4840. opacity: 0.3;
  4841. }
  4842. 75% {
  4843. -webkit-transform: scale(0.5);
  4844. opacity: 0.5;
  4845. }
  4846. 100% {
  4847. -webkit-transform: scale(1);
  4848. opacity: 0.0;
  4849. }
  4850. }
  4851. .dash-tx {
  4852. position: absolute;
  4853. width: 40%;
  4854. left: 40px;
  4855. }
  4856. .apexcharts-canvas {
  4857. margin: 0 auto;
  4858. }
  4859. // Demo panel
  4860. .sticky-toolbar {
  4861. width: 50px;
  4862. position: fixed;
  4863. top: 45%;
  4864. right: 0;
  4865. list-style: none;
  4866. margin: 0;
  4867. z-index: 999;
  4868. background: #fff;
  4869. -webkit-box-shadow: 0 0 50px 0 rgba(82,63,105,.15);
  4870. box-shadow: 0 0 50px 0 rgba(82,63,105,.15);
  4871. display: -webkit-box;
  4872. display: -ms-flexbox;
  4873. display: flex;
  4874. -webkit-box-pack: center;
  4875. -ms-flex-pack: center;
  4876. justify-content: center;
  4877. -webkit-box-align: center;
  4878. -ms-flex-align: center;
  4879. align-items: center;
  4880. -webkit-box-orient: vertical;
  4881. -webkit-box-direction: normal;
  4882. -ms-flex-direction: column;
  4883. flex-direction: column;
  4884. border-top-left-radius: .42rem;
  4885. border-bottom-left-radius: .42rem;
  4886. padding: 10px;
  4887. a{
  4888. padding: 0.3rem 0.5rem;
  4889. span{
  4890. font-size: 1.5rem;
  4891. }
  4892. }
  4893. }
  4894. .w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
  4895. .w3-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
  4896. .w3-animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
  4897. .w3-animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
  4898. .w3-animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
  4899. .w3-animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
  4900. .w3-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
  4901. .w3-animate-input{transition:width 0.4s ease-in-out}.w3-animate-input:focus{width:100%!important}
  4902. .w3-opacity,.w3-hover-opacity:hover{opacity:0.60}.w3-opacity-off,.w3-hover-opacity-off:hover{opacity:1}
  4903. .w3-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);z-index:999}
  4904. .w3-sidebar{height:100%;width:375px;background-color:#fff;position:fixed!important;z-index:1;overflow:hidden; top: 0; right: 0;}
  4905. .w3-bar-block .w3-dropdown-hover,.w3-bar-block .w3-dropdown-click{width:100%}
  4906. .w3-bar-block .w3-dropdown-hover .w3-dropdown-content,.w3-bar-block .w3-dropdown-click .w3-dropdown-content{min-width:100%}
  4907. .w3-bar-block .w3-dropdown-hover .w3-button,.w3-bar-block .w3-dropdown-click .w3-button{width:100%;text-align:left;padding:8px 16px}
  4908. .demo-panel{
  4909. figure {
  4910. position: relative;
  4911. border: 5px solid #ebedf3;
  4912. border-radius: 5px;
  4913. }
  4914. figure:hover figcaption, figure:focus figcaption {
  4915. opacity: 1;
  4916. }
  4917. figcaption {
  4918. position: absolute;
  4919. top: 0;
  4920. bottom: 0;
  4921. left: 0;
  4922. right: 0;
  4923. display: -webkit-box;
  4924. display: -ms-flexbox;
  4925. display: flex;
  4926. -webkit-box-pack: center;
  4927. -ms-flex-pack: center;
  4928. justify-content: center;
  4929. -webkit-box-align: center;
  4930. -ms-flex-align: center;
  4931. align-items: center;
  4932. background-color: rgba(0,0,0,.5);
  4933. -webkit-transition: all .3s ease;
  4934. transition: all .3s ease;
  4935. opacity: 0;
  4936. }
  4937. .buy-bt-bx{
  4938. position: absolute;
  4939. bottom: 0;
  4940. background: #ffffff;
  4941. padding: 30px 0 30px 0;
  4942. width: 315px;
  4943. z-index: 1999999;
  4944. }
  4945. }
  4946. .rtl{
  4947. .sticky-toolbar {
  4948. right: auto;
  4949. left: 0;
  4950. border-top-left-radius: 0rem;
  4951. border-bottom-left-radius: 0rem;
  4952. border-top-right-radius: .42rem;
  4953. border-bottom-right-radius: .42rem;
  4954. }
  4955. .w3-animate-right{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
  4956. .w3-sidebar {
  4957. right: auto;
  4958. left: 0;
  4959. }
  4960. }
  4961. .evt-cal .fc-scroller {
  4962. -webkit-overflow-scrolling: touch;
  4963. overflow: visible !important;
  4964. height: auto !important;
  4965. }
  4966. @media (max-width: 1500px){
  4967. .dask-bg {
  4968. background-position: 160% bottom !important;
  4969. }
  4970. }
  4971. .map-home{
  4972. .jvectormap-zoomin, .jvectormap-zoomout {
  4973. display: none;
  4974. }
  4975. }
  4976. .travel-bx{
  4977. margin-top: 66px;
  4978. .travelimg{
  4979. top: -80px;
  4980. position: relative;
  4981. }
  4982. .title-bx {
  4983. margin-top: -50px;
  4984. margin-bottom: 0;
  4985. }
  4986. }
  4987. .location-slider{
  4988. &.owl-carousel {
  4989. .owl-dots {
  4990. margin-top: 10px;
  4991. .owl-dot.active{
  4992. span{
  4993. background: $primary;
  4994. }
  4995. }
  4996. }
  4997. button.owl-dot{
  4998. font-size: $fs-14;
  4999. &:focus{
  5000. outline: dotted 0px;
  5001. outline: -webkit-focus-ring-color auto 0px;
  5002. }
  5003. }
  5004. }
  5005. /* Common style */
  5006. .deals-box {
  5007. figure {
  5008. position: relative;
  5009. float: left;
  5010. overflow: hidden;
  5011. margin: 10px 1%;
  5012. min-width: 250px;
  5013. max-width: 480px;
  5014. max-height: 460px;
  5015. height: auto;
  5016. background: $primary;
  5017. text-align: center;
  5018. cursor: pointer;
  5019. img {
  5020. position: relative;
  5021. display: block;
  5022. min-height: 100%;
  5023. max-width: 100%;
  5024. opacity: 0.8;
  5025. }
  5026. figcaption {
  5027. padding: 2em;
  5028. color: #fff;
  5029. text-transform: uppercase;
  5030. font-size: 1.25em;
  5031. -webkit-backface-visibility: hidden;
  5032. backface-visibility: hidden;
  5033. position: absolute;
  5034. top: 0;
  5035. left: 0;
  5036. width: 100%;
  5037. height: 100%;
  5038. &::before, &::after {
  5039. pointer-events: none;
  5040. }
  5041. > a {
  5042. position: absolute;
  5043. top: 0;
  5044. left: 0;
  5045. width: 100%;
  5046. height: 100%;
  5047. z-index: 1000;
  5048. text-indent: 200%;
  5049. white-space: nowrap;
  5050. font-size: 0;
  5051. opacity: 0;
  5052. }
  5053. }
  5054. h3 {
  5055. word-spacing: -0.15em;
  5056. font-weight: 300;
  5057. margin: 0;
  5058. span {
  5059. font-weight: 400;
  5060. }
  5061. }
  5062. p {
  5063. margin: 0;
  5064. letter-spacing: 1px;
  5065. font-size: 68.5%;
  5066. }
  5067. }
  5068. }
  5069. figure.effect-goliath {
  5070. background: $primary;
  5071. img, h3 {
  5072. -webkit-transition: -webkit-transform 0.35s;
  5073. transition: transform 0.35s;
  5074. }
  5075. img {
  5076. -webkit-backface-visibility: hidden;
  5077. backface-visibility: hidden;
  5078. }
  5079. h3{
  5080. position: absolute;
  5081. bottom: 0;
  5082. left: 0;
  5083. padding: 25px;
  5084. }
  5085. p {
  5086. text-transform: none;
  5087. font-size: 90%;
  5088. opacity: 0;
  5089. -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  5090. transition: opacity 0.35s, transform 0.35s;
  5091. -webkit-transform: translate3d(0,50px,0);
  5092. transform: translate3d(0,50px,0);
  5093. position: absolute;
  5094. bottom: 0;
  5095. left: 0;
  5096. padding: 15px 25px;
  5097. }
  5098. &:hover {
  5099. img {
  5100. -webkit-transform: translate3d(0,-65px,0);
  5101. transform: translate3d(0,-65px,0);
  5102. }
  5103. h3 {
  5104. -webkit-transform: translate3d(0,-60px,0);
  5105. transform: translate3d(0,-60px,0);
  5106. }
  5107. p {
  5108. opacity: 1;
  5109. -webkit-transform: translate3d(0,0,0);
  5110. transform: translate3d(0,0,0);
  5111. }
  5112. }
  5113. }
  5114. }
  5115. .side-bx{
  5116. margin-top: 66px;
  5117. .sideimg{
  5118. top: -80px;
  5119. position: relative;
  5120. }
  5121. .title-bx {
  5122. margin-top: -70px;
  5123. margin-bottom: 0;
  5124. }
  5125. }
  5126. .review-slider{
  5127. position: relative;
  5128. .box{
  5129. width: 86%;
  5130. margin-bottom: 0;
  5131. .review-tx{
  5132. padding-right: 110px;
  5133. }
  5134. .dish-img{
  5135. width: 140px !important;
  5136. position: absolute;
  5137. right: -40px;
  5138. }
  5139. }
  5140. .owl-nav {
  5141. display: flex;
  5142. position: absolute;
  5143. top: -70px;
  5144. right: 0;
  5145. .owl-prev, .owl-next {
  5146. width: 35px;
  5147. height: 35px;
  5148. background-color: $white;
  5149. text-align: center;
  5150. line-height: 30px;
  5151. font-size: 35px;
  5152. border-radius: 5px;
  5153. margin: 5px;
  5154. &:hover{
  5155. background-color: $danger;
  5156. color: $white;
  5157. }
  5158. }
  5159. }
  5160. }
  5161. .food-box{
  5162. margin-top: 90px;
  5163. .menu-item{
  5164. img{
  5165. margin-top: -90px;
  5166. }
  5167. }
  5168. }