| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699 |
- html body .container.app-content, html body .content.app-content {
- overflow-x: hidden;
- height: 100%;
- }
- .navigation, .navigation .navigation-header {
- font-family: Montserrat,Georgia,'Times New Roman',Times,serif
- }
- html {
- font-size: 14px;
- height: 100%
- }
- html body {
- height: 100%;
- background-color: #F5F7FA;
- direction: ltr
- }
- html body .container.app-content .content-overlay, html body .content.app-content .content-overlay {
- width: 100%;
- height: 100%;
- left: 0;
- background-color: rgba(0,0,0,.5);
- cursor: pointer;
- right: 0;
- top: 0;
- bottom: 0
- }
- html body.fixed-navbar {
- padding-top: 4rem
- }
- html body .container.app-content.show-overlay .content-overlay {
- z-index: 10;
- opacity: 1
- }
- html body .container.app-content .content-overlay {
- position: fixed;
- opacity: 0;
- -webkit-transition: all .7s;
- transition: all .7s;
- z-index: -1
- }
- html body .content {
- padding: 0;
- position: relative;
- -webkit-transition: .3s ease all;
- transition: .3s ease all;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- min-height: calc(100% - 32px)
- }
- html body .content.app-content.show-overlay .content-overlay {
- z-index: 10;
- opacity: 1
- }
- html body .content.app-content .content-overlay {
- position: fixed;
- opacity: 0;
- -webkit-transition: all .7s;
- transition: all .7s;
- z-index: -1
- }
- html body .content .content-wrapper {
- padding: 1.8rem
- }
- html body .content .content-wrapper .content-header-title {
- text-transform: uppercase;
- font-weight: 500;
- letter-spacing: 1px;
- color: #1B2942
- }
- html body[data-col='1-column']:not(.vertical-content-menu) .content, html body[data-col='1-column']:not(.vertical-content-menu) .footer {
- margin-left: 0 !important
- }
- html body[data-col='1-column'].horizontal-layout .content, html body[data-col='1-column'].horizontal-layout .footer {
- margin: 0 auto !important
- }
- html body.boxed-layout {
- padding-left: 0;
- padding-right: 0
- }
- html body.bg-full-screen-image {
- background: url(../../app-assets/images/backgrounds/bg-2.jpg) center center no-repeat fixed;
- background-size: cover
- }
- html body .pace .pace-progress {
- background: #4ACACC
- }
- html body.navbar-static .navbar-container, html body.navbar-sticky .navbar-container {
- padding-left: 1.8rem;
- padding-right: 1rem
- }
- html body.navbar-static .navbar-container .search-input .search-list.show, html body.navbar-sticky .navbar-container .search-input .search-list.show {
- width: 98%;
- left: 1%
- }
- .blank-page .content-wrapper {
- padding: 0 !important
- }
- .blank-page .content-wrapper .flexbox-container {
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center;
- height: calc(var(--vh,1vh) * 100)
- }
- .app-content.center-layout {
- overflow: hidden
- }
- @media (max-width:767.98px) {
- html body .content .content-wrapper {
- padding: 1rem
- }
- html body footer {
- text-align: center
- }
- }
- @media (min-width:992px) {
- body .content-right {
- width: calc(100% - 300px);
- float: right
- }
- body .content-left {
- width: calc(100% - 300px);
- float: left
- }
- body .content-detached {
- width: 100%
- }
- body .content-detached.content-right {
- float: right;
- margin-left: -300px
- }
- body .content-detached.content-right .content-body {
- margin-left: 320px
- }
- body .content-detached.content-left {
- float: left;
- margin-right: -300px
- }
- body .content-detached.content-left .content-body {
- margin-right: 320px
- }
- .sidebar-right.sidebar-sticky {
- float: right !important;
- margin-left: -300px;
- width: 300px !important
- }
- [data-col=content-left-sidebar] .sticky-wrapper {
- float: left
- }
- }
- .center-layout, .sidebar {
- position: relative
- }
- .sidebar {
- width: 100%
- }
- @media (min-width:992px) {
- .sidebar {
- vertical-align: top;
- width: 300px
- }
- .sidebar-left {
- float: left
- }
- .sidebar-right {
- float: right
- }
- }
- .sidebar-fixed {
- position: fixed;
- height: 100%;
- overflow: scroll
- }
- .sidenav-overlay {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- height: calc(var(--vh,1vh) * 100);
- background-color: rgba(0,0,0,.5);
- z-index: 997;
- display: none
- }
- .drag-target {
- height: 100%;
- width: 40px;
- position: fixed;
- top: 0;
- left: -20px;
- z-index: 1036
- }
- footer.footer {
- padding: .4rem
- }
- footer.navbar-shadow {
- box-shadow: 0 -1px 4px 0 rgba(0,0,0,.15)
- }
- footer.navbar-border {
- border-top: 1px solid #E4E7ED
- }
- footer.footer-transparent {
- border: none
- }
- footer.footer-light {
- background: #FFF
- }
- footer.footer-dark {
- background: #404E67;
- color: #FFF
- }
- .main-menu {
- z-index: 1000;
- position: absolute;
- display: table-cell
- }
- .main-menu.menu-light .navigation > li ul .has-sub:not(.open) > ul, .main-menu.menu-light .navigation > li:not(.open) > ul {
- display: none
- }
- .main-menu.menu-light {
- color: #404E67;
- background: #FFF;
- border-right: 1px solid #E4E7ED
- }
- .main-menu.menu-light .main-menu-header {
- padding: 20px
- }
- .main-menu.menu-light .main-menu-header .menu-search {
- background: #E6E6E6;
- padding: .5rem 1rem;
- color: #2C3648
- }
- .main-menu.menu-light .main-menu-header .menu-search:focus {
- border-color: #D9D9D9
- }
- .main-menu.menu-light .navigation {
- background: #FFF
- }
- .main-menu.menu-light .navigation .navigation-header {
- color: #404E67;
- padding: 24px 20px 8px
- }
- .main-menu.menu-light .navigation .navigation-header.open {
- border-left: none
- }
- .main-menu.menu-light .navigation .navigation-header span {
- font-weight: 500
- }
- .main-menu.menu-light .navigation li a {
- color: #404E67
- }
- .main-menu.menu-light .navigation li a span.menu-sub-title {
- color: #8A9AB6
- }
- .main-menu.menu-light .navigation li.active > a, .main-menu.menu-light .navigation li.hover > a, .main-menu.menu-light .navigation li.open > a {
- color: #FFF
- }
- .main-menu.menu-light .navigation li.active {
- border-left: 4px solid #00B5B8
- }
- .main-menu.menu-light .navigation li.open .active {
- border-left: none
- }
- .main-menu.menu-light .navigation > li {
- padding: 0
- }
- .main-menu.menu-light .navigation > li > a {
- padding: 10px 30px 10px 20px
- }
- .main-menu.menu-light .navigation > li > a .label {
- margin-top: 4px;
- margin-right: 5px
- }
- .main-menu.menu-light .navigation > li > a i {
- position: relative;
- top: 1px;
- margin-top: .2rem
- }
- .main-menu.menu-light .navigation > li.open {
- border-left: 4px solid #00B5B8
- }
- .main-menu.menu-light .navigation > li.open > a {
- padding-left: 16px !important;
- color: #2C3648;
- background: #f5f5f5
- }
- .main-menu.menu-light .navigation > li.open ul li.active > a, .main-menu.menu-light .navigation > li.open ul li > a {
- padding-left: 50px
- }
- .main-menu.menu-light .navigation > li.open ul li.has-sub > ul li > a {
- padding: 8px 18px 8px 64px
- }
- .main-menu.menu-light .navigation > li.open ul li.has-sub > ul li.has-sub > ul li > a {
- padding: 8px 18px 8px 74px
- }
- .main-menu.menu-light .navigation > li.open .hover > a {
- background: #F0F0F0
- }
- .main-menu.menu-light .navigation > li:not(.open) ul li.has-sub.open > ul li > a {
- padding-left: 68px
- }
- .main-menu.menu-light .navigation > li.active > a, .main-menu.menu-light .navigation > li.hover > a, .main-menu.menu-light .navigation > li:hover > a {
- color: #2C3648;
- background-color: #f5f5f5
- }
- .main-menu.menu-light .navigation > li.active > a.mm-next, .main-menu.menu-light .navigation > li.hover > a.mm-next, .main-menu.menu-light .navigation > li:hover > a.mm-next {
- background-color: inherit
- }
- .main-menu.menu-light .navigation > li.active > a {
- color: #00B5B8;
- border: none;
- font-weight: 400;
- padding-left: 16px
- }
- .main-menu.menu-light .navigation > li .active {
- background: #F0F0F0
- }
- .main-menu.menu-light .navigation > li .active > a {
- color: #00B5B8;
- font-weight: 500
- }
- .main-menu.menu-light .navigation > li .active .hover > a {
- background: #f5f5f5
- }
- .main-menu.menu-light .navigation > li ul {
- padding: 0;
- margin: 0;
- font-size: 1rem
- }
- .main-menu.menu-light .navigation > li ul li {
- color: #404E67;
- background: 0 0
- }
- .main-menu.menu-light .navigation > li ul li > a {
- padding: 8px 18px 8px 54px
- }
- .main-menu.menu-light .navigation > li ul .open > ul, .main-menu.menu-light .navigation > li ul .open > ul .open > ul {
- display: block
- }
- .main-menu.menu-light .navigation > li ul .open > a {
- color: #404E67
- }
- .main-menu.menu-light .navigation > li ul .open > ul li > a {
- padding: 8px 18px 8px 64px
- }
- .main-menu.menu-light .navigation > li ul .open > ul .open > ul li > a {
- padding: 8px 18px 8px 74px
- }
- .main-menu.menu-light .navigation > li ul .open .hover > a {
- background: #f5f5f5
- }
- .main-menu.menu-light .navigation > li ul .hover > a, .main-menu.menu-light .navigation > li ul:hover > a {
- color: #485874;
- background-color: #f5f5f5
- }
- .main-menu.menu-light .navigation > li ul .active {
- background: 0 0
- }
- .main-menu.menu-light .navigation > li ul .active > a {
- color: #00B5B8;
- border: none;
- font-weight: 500
- }
- .main-menu.menu-light .navigation > li ul .active .hover > a {
- background-color: transparent
- }
- .main-menu.menu-light .navigation > li > ul, .main-menu.menu-light ul.menu-popout {
- background: #FFF
- }
- .main-menu.menu-light ul.menu-popout li a {
- color: #404E67
- }
- .main-menu.menu-light ul.menu-popout li a span.menu-sub-title {
- color: #8A9AB6
- }
- .main-menu.menu-light ul.menu-popout li.hover > a, .main-menu.menu-light ul.menu-popout li.open > a, .main-menu.menu-light ul.menu-popout li:hover > a {
- background: #F0F0F0
- }
- .main-menu.menu-light ul.menu-popout .has-sub:not(.open) > ul {
- display: none
- }
- .main-menu.menu-light ul.menu-popout .open > a {
- color: #404E67
- }
- .main-menu.menu-light ul.menu-popout .open > ul {
- display: block
- }
- .main-menu.menu-light ul.menu-popout .open > ul .open {
- background: #E8E8E8
- }
- .main-menu.menu-light ul.menu-popout .open > ul .open > ul {
- display: block;
- background: #E8E8E8
- }
- .main-menu.menu-dark .navigation > li ul .has-sub:not(.open) > ul, .main-menu.menu-dark .navigation > li:not(.open) > ul {
- display: none
- }
- .main-menu.menu-light ul.menu-popout .open li.hover > a, .main-menu.menu-light ul.menu-popout .open li:hover > a {
- background: #f5f5f5
- }
- .main-menu.menu-light ul.menu-popout .hover > a, .main-menu.menu-light ul.menu-popout:hover > a {
- color: #485874;
- background-color: #f5f5f5
- }
- .main-menu.menu-light ul.menu-popout .active {
- background: rgba(0,0,0,.06)
- }
- .main-menu.menu-light ul.menu-popout .active > a {
- color: #546686;
- background-color: #f5f5f5
- }
- .main-menu.menu-light ul.menu-popout .active .hover > a, .main-menu.menu-light ul.menu-popout .active :hover > a {
- background-color: transparent
- }
- .main-menu.menu-dark {
- color: #DCDCDC;
- background: #404E67
- }
- .main-menu.menu-dark .main-menu-header {
- padding: 20px
- }
- .main-menu.menu-dark .main-menu-header .menu-search {
- background: #2C3648;
- padding: .5rem 1rem;
- color: #C3C3C3
- }
- .main-menu.menu-dark .main-menu-header .menu-search:focus {
- border-color: #232A38
- }
- .main-menu.menu-dark .navigation {
- background: #404E67
- }
- .main-menu.menu-dark .navigation .navigation-header {
- color: #DCDCDC;
- padding: 24px 20px 8px
- }
- .main-menu.menu-dark .navigation .navigation-header.open {
- border-left: none
- }
- .main-menu.menu-dark .navigation .navigation-header span {
- font-weight: 500
- }
- .main-menu.menu-dark .navigation li a {
- color: #DCDCDC
- }
- .main-menu.menu-dark .navigation li a span.menu-sub-title {
- color: #fff
- }
- .main-menu.menu-dark .navigation li.active > a, .main-menu.menu-dark .navigation li.hover > a, .main-menu.menu-dark .navigation li.open > a {
- color: #FFF
- }
- .main-menu.menu-dark .navigation li.active {
- border-left: 4px solid #00B5B8
- }
- .main-menu.menu-dark .navigation li.open .active {
- border-left: none
- }
- .main-menu.menu-dark .navigation > li {
- padding: 0
- }
- .main-menu.menu-dark .navigation > li > a {
- padding: 10px 30px 10px 20px
- }
- .main-menu.menu-dark .navigation > li > a .label {
- margin-top: 4px;
- margin-right: 5px
- }
- .main-menu.menu-dark .navigation > li > a i {
- position: relative;
- top: 1px;
- margin-top: .2rem
- }
- .main-menu.menu-dark .navigation > li.open {
- border-left: 4px solid #00B5B8
- }
- .main-menu.menu-dark .navigation > li.open > a {
- padding-left: 16px !important;
- color: #C3C3C3;
- background: #38445A
- }
- .main-menu.menu-dark .navigation > li.open ul li.active > a, .main-menu.menu-dark .navigation > li.open ul li > a {
- padding-left: 50px
- }
- .main-menu.menu-dark .navigation > li.open ul li.has-sub > ul li > a {
- padding: 8px 18px 8px 64px
- }
- .main-menu.menu-dark .navigation > li.open ul li.has-sub > ul li.has-sub > ul li > a {
- padding: 8px 18px 8px 74px
- }
- .main-menu.menu-dark .navigation > li.open .hover > a {
- background: #344054
- }
- .main-menu.menu-dark .navigation > li:not(.open) ul li.has-sub.open > ul li > a {
- padding-left: 68px
- }
- .main-menu.menu-dark .navigation > li.active > a, .main-menu.menu-dark .navigation > li.hover > a, .main-menu.menu-dark .navigation > li:hover > a {
- color: #C3C3C3;
- background-color: #38445A
- }
- .main-menu.menu-dark .navigation > li.active > a.mm-next, .main-menu.menu-dark .navigation > li.hover > a.mm-next, .main-menu.menu-dark .navigation > li:hover > a.mm-next {
- background-color: inherit
- }
- .main-menu.menu-dark .navigation > li.active > a {
- color: #00B5B8;
- border: none;
- font-weight: 400;
- padding-left: 16px
- }
- .main-menu.menu-dark .navigation > li .active {
- background: #344054
- }
- .main-menu.menu-dark .navigation > li .active > a {
- color: #00B5B8;
- font-weight: 500
- }
- .main-menu.menu-dark .navigation > li .active .hover > a {
- background: #38445A
- }
- .main-menu.menu-dark .navigation > li ul {
- padding: 0;
- margin: 0;
- font-size: 1rem
- }
- .main-menu.menu-dark .navigation > li ul li {
- color: #DCDCDC;
- background: 0 0
- }
- .main-menu.menu-dark .navigation > li ul li > a {
- padding: 8px 18px 8px 54px
- }
- .main-menu.menu-dark .navigation > li ul .open > ul, .main-menu.menu-dark .navigation > li ul .open > ul .open > ul {
- display: block
- }
- .main-menu.menu-dark .navigation > li ul .open > a {
- color: #DCDCDC
- }
- .main-menu.menu-dark .navigation > li ul .open > ul li > a {
- padding: 8px 18px 8px 64px
- }
- .main-menu.menu-dark .navigation > li ul .open > ul .open > ul li > a {
- padding: 8px 18px 8px 74px
- }
- .main-menu.menu-dark .navigation > li ul .open .hover > a {
- background: #38445A
- }
- .main-menu.menu-dark .navigation > li ul .hover > a, .main-menu.menu-dark .navigation > li ul:hover > a {
- color: #E6E6E6;
- background-color: #38445A
- }
- .main-menu.menu-dark .navigation > li ul .active {
- background: 0 0
- }
- .main-menu.menu-dark .navigation > li ul .active > a {
- color: #00B5B8;
- border: none;
- font-weight: 500
- }
- .main-menu.menu-dark .navigation > li ul .active .hover > a {
- background-color: transparent
- }
- .main-menu.menu-dark .navigation > li > ul, .main-menu.menu-dark ul.menu-popout {
- background: #404E67
- }
- .main-menu.menu-dark ul.menu-popout li a {
- color: #DCDCDC
- }
- .main-menu.menu-dark ul.menu-popout li a span.menu-sub-title {
- color: #fff
- }
- .main-menu.menu-dark ul.menu-popout li.hover > a, .main-menu.menu-dark ul.menu-popout li.open > a, .main-menu.menu-dark ul.menu-popout li:hover > a {
- background: #344054
- }
- .main-menu.menu-dark ul.menu-popout .has-sub:not(.open) > ul {
- display: none
- }
- .main-menu.menu-dark ul.menu-popout .open > a {
- color: #DCDCDC
- }
- .main-menu.menu-dark ul.menu-popout .open > ul {
- display: block
- }
- .main-menu.menu-dark ul.menu-popout .open > ul .open {
- background: #2E394B
- }
- .main-menu.menu-dark ul.menu-popout .open > ul .open > ul {
- display: block;
- background: #2E394B
- }
- .main-menu.menu-dark ul.menu-popout .open li.hover > a, .main-menu.menu-dark ul.menu-popout .open li:hover > a {
- background: #38445A
- }
- .main-menu.menu-dark ul.menu-popout .hover > a, .main-menu.menu-dark ul.menu-popout:hover > a {
- color: #E6E6E6;
- background-color: #38445A
- }
- .main-menu.menu-dark ul.menu-popout .active {
- background: rgba(0,0,0,.06)
- }
- .main-menu.menu-dark ul.menu-popout .active > a {
- color: #F6F6F6;
- background-color: #38445A
- }
- .main-menu.menu-dark ul.menu-popout .active .hover > a, .main-menu.menu-dark ul.menu-popout .active :hover > a {
- background-color: transparent
- }
- .main-menu.menu-fixed {
- position: fixed;
- top: 4rem;
- height: calc(100% - 4rem)
- }
- .main-menu.menu-fixed .main-menu-footer {
- position: fixed
- }
- .main-menu.menu-shadow {
- box-shadow: 1px 0 20px rgba(0,0,0,.1)
- }
- .main-menu.menu-border {
- border-right: 1px solid #E4E7ED
- }
- .main-menu.menu-native-scroll .main-menu-content {
- overflow-y: scroll
- }
- .main-menu.menu-bordered.menu-light .navigation > li {
- border-top: 1px solid #E4E7ED
- }
- .main-menu.menu-bordered.menu-dark .navigation > li {
- border-top: 1px solid rgba(255,255,255,.1)
- }
- .main-menu .main-menu-content {
- height: 100% !important;
- position: relative
- }
- .main-menu ul {
- list-style: none;
- margin: 0;
- padding: 0
- }
- .main-menu ul.navigation-main {
- overflow-x: hidden
- }
- .main-menu a {
- outline: 0
- }
- .main-menu a:focus, .main-menu a:hover {
- text-decoration: none
- }
- .main-menu ul.navigation li.has-sub.changing li.active {
- border-left: none
- }
- .navigation {
- font-size: 1rem;
- font-weight: 300;
- overflow-y: hidden;
- padding-bottom: 20px
- }
- .navigation .navigation-header {
- font-weight: 400;
- line-height: 1.2;
- padding: 12px 22px;
- font-size: 1rem;
- text-transform: uppercase
- }
- .navigation li {
- position: relative;
- white-space: nowrap
- }
- .navigation li a {
- display: block;
- text-overflow: ellipsis;
- overflow: hidden
- }
- .menu-popout li.disabled a, .navigation li.disabled a {
- cursor: not-allowed
- }
- .dropdown-notification .notification-text {
- margin-bottom: .5rem
- }
- .dropdown-notification .notification-tag {
- position: relative;
- top: -4px
- }
- .main-menu-header .user-content {
- padding: 20px
- }
- .main-menu-header .user-content .media {
- overflow: inherit
- }
- .main-menu-header .user-content .media-body {
- vertical-align: bottom;
- opacity: 1;
- width: 150px;
- white-space: nowrap;
- -webkit-transition: all .3s ease .15s;
- transition: all .3s ease .15s
- }
- .main-menu-footer {
- position: relative;
- overflow: hidden;
- bottom: 0;
- display: block;
- z-index: 1000;
- color: #E8EBF1;
- background-color: #2C3648
- }
- .main-menu-footer.footer-open {
- max-height: 500px;
- -webkit-transition: max-height .2s ease-in-out;
- transition: max-height .2s ease-in-out
- }
- .main-menu-footer.footer-close {
- max-height: 15px;
- -webkit-transition: max-height .2s ease-in-out;
- transition: max-height .2s ease-in-out
- }
- .main-menu-footer a {
- color: #C9D0DD
- }
- .main-menu-footer a:focus, .main-menu-footer a:hover {
- color: #FFF
- }
- .main-menu-footer .header {
- height: 19px;
- border-bottom: 1px solid #364257
- }
- .main-menu-footer .toggle {
- -webkit-transform: rotate(0);
- -ms-transform: rotate(0);
- transform: rotate(0);
- transition: -webkit-transform .2s ease-in-out
- }
- .main-menu-footer .content {
- padding: 0
- }
- .main-menu-footer .content .actions > a {
- display: block;
- float: left;
- width: 33.33333%;
- padding: 1rem 0;
- color: #C9D0DD;
- text-align: center;
- border-top: 1px solid #364257;
- border-left: 1px solid #364257
- }
- .avatar, .main-menu-footer .content .actions > a:focus, .main-menu-footer .content .actions > a:hover {
- color: #FFF
- }
- .main-menu-footer .content .actions > a > span {
- font-size: 1.35rem
- }
- body.vertical-layout.vertical-menu.menu-expanded .main-menu-footer .content {
- margin-left: 0
- }
- .vertical-layout.menu-expanded .menu-icon-right ul.navigation li > a:after, .vertical-overlay-menu .menu-icon-right ul.navigation li > a:after {
- left: 8px;
- right: initial !important
- }
- .vertical-layout.menu-expanded .menu-icon-right ul.navigation li > a > i, .vertical-overlay-menu .menu-icon-right ul.navigation li > a > i {
- float: right !important;
- margin: 0 -12px 0 0 !important
- }
- .horizontal-layout .navbar-icon-right ul.nav > li > a:after {
- float: left;
- position: relative;
- top: 27px;
- left: -16px
- }
- .horizontal-layout .navbar-icon-right ul.nav > li > a > i {
- float: right;
- margin: 0 4px 0 8px
- }
- .horizontal-layout .navbar-fixed {
- z-index: 999 !important
- }
- @media (max-width:767.98px) {
- .menu-hide .main-menu, .menu-open .main-menu {
- -webkit-transition: top .35s,height .35s,-webkit-transform .25s;
- transition: top .35s,height .35s,-webkit-transform .25s;
- transition: transform .25s,top .35s,height .35s;
- transition: transform .25s,top .35s,height .35s,-webkit-transform .25s
- }
- .main-menu {
- -webkit-transform: translate3d(-240px,0,0);
- transform: translate3d(-240px,0,0);
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-perspective: 1000;
- perspective: 1000
- }
- .menu-open .main-menu {
- -webkit-transform: translate3d(0,0,0);
- transform: translate3d(0,0,0)
- }
- }
- @media (max-width:991.98px) {
- .horizontal-layout.vertical-overlay-menu .main-menu-content, .horizontal-layout.vertical-overlay-menu .main-menu-content .mega-dropdown-menu > li {
- padding: 0
- }
- .horizontal-layout.vertical-overlay-menu .main-menu-content .mega-dropdown-menu {
- margin: 0;
- width: 100%
- }
- .horizontal-layout.vertical-overlay-menu .navbar .navbar-container {
- margin-left: 0;
- max-width: 100%
- }
- }
- @media (min-width:768px) {
- .drag-target {
- z-index: 0
- }
- }
- .display-inline {
- display: inline !important
- }
- .display-block {
- display: block !important
- }
- .display-inline-block {
- display: inline-block !important
- }
- .display-hidden {
- display: none !important
- }
- .display-table-cell {
- display: table-cell !important
- }
- .position-top-0 {
- top: 0
- }
- .position-right-0 {
- right: 0
- }
- .position-bottom-0 {
- bottom: 0
- }
- .position-left-0 {
- left: 0
- }
- .zindex-1 {
- z-index: 1 !important
- }
- .zindex-2 {
- z-index: 2 !important
- }
- .zindex-3 {
- z-index: 3 !important
- }
- .zindex-4 {
- z-index: 4 !important
- }
- .zindex-0 {
- z-index: 0 !important
- }
- .zindex-minus-1 {
- z-index: -1 !important
- }
- .zindex-minus-2 {
- z-index: -2 !important
- }
- .zindex-minus-3 {
- z-index: -3 !important
- }
- .zindex-minus-4 {
- z-index: -4 !important
- }
- .no-edge-top {
- top: 0 !important
- }
- .no-edge-bottom {
- bottom: 0 !important
- }
- .no-edge-left {
- left: 0 !important
- }
- .no-edge-right {
- right: 0 !important
- }
- .cursor-pointer {
- cursor: pointer
- }
- .cursor-move {
- cursor: move
- }
- .cursor-default {
- cursor: default
- }
- .cursor-progress {
- cursor: progress
- }
- .cursor-not-allowed {
- cursor: not-allowed
- }
- .overflow-hidden {
- overflow: hidden
- }
- .overflow-visible {
- overflow: visible
- }
- .overflow-auto {
- overflow: auto
- }
- .overflow-scroll, .overflow-x-scroll, .overflow-y-scroll {
- overflow: scroll
- }
- .bullets-inside {
- list-style: inside
- }
- .list-style-circle {
- list-style: circle
- }
- .list-style-square {
- list-style: square
- }
- .list-style-icons {
- padding-left: 10px;
- margin-left: 0;
- list-style: none
- }
- .list-style-icons > li i {
- float: left;
- width: 1em;
- margin: 0 6px 0 0
- }
- .border {
- border: 1px solid
- }
- .no-border-top-left-radius, .no-border-top-radius {
- border-top-left-radius: 0 !important
- }
- .no-border-top-radius, .no-border-top-right-radius {
- border-top-right-radius: 0 !important
- }
- .no-border-bottom-left-radius, .no-border-bottom-radius {
- border-bottom-left-radius: 0 !important
- }
- .no-border-bottom-radius, .no-border-bottom-right-radius {
- border-bottom-right-radius: 0 !important
- }
- .border-top {
- border-top: 1px solid
- }
- .border-bottom {
- border-bottom: 1px solid
- }
- .border-left {
- border-left: 1px solid
- }
- .border-right {
- border-right: 1px solid
- }
- .border-2 {
- border-width: 2px !important
- }
- .border-top-2 {
- border-top-width: 2px !important
- }
- .border-bottom-2 {
- border-bottom-width: 2px !important
- }
- .border-left-2 {
- border-left-width: 2px !important
- }
- .border-right-2 {
- border-right-width: 2px !important
- }
- .border-3 {
- border-width: 3px !important
- }
- .border-top-3 {
- border-top-width: 3px !important
- }
- .border-bottom-3 {
- border-bottom-width: 3px !important
- }
- .border-left-3 {
- border-left-width: 3px !important
- }
- .border-right-3 {
- border-right-width: 3px !important
- }
- .box-shadow-0 {
- box-shadow: none !important
- }
- .box-shadow-1 {
- box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12)
- }
- .box-shadow-2 {
- box-shadow: 0 8px 17px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)
- }
- .box-shadow-3 {
- box-shadow: 0 12px 15px 0 rgba(0,0,0,.24),0 17px 50px 0 rgba(0,0,0,.19)
- }
- .box-shadow-4 {
- box-shadow: 0 16px 28px 0 rgba(0,0,0,.22),0 25px 55px 0 rgba(0,0,0,.21)
- }
- .box-shadow-5 {
- box-shadow: 0 27px 24px 0 rgba(0,0,0,.2),0 40px 77px 0 rgba(0,0,0,.22)
- }
- .fit {
- max-width: 100% !important
- }
- .half-width {
- width: 50% !important
- }
- .full-width {
- width: 100% !important
- }
- .full-height {
- height: 100% !important
- }
- .width-50 {
- width: 50px !important
- }
- .width-100 {
- width: 100px !important
- }
- .width-150 {
- width: 150px !important
- }
- .width-200 {
- width: 200px !important
- }
- .width-250 {
- width: 250px !important
- }
- .width-300 {
- width: 300px !important
- }
- .width-350 {
- width: 350px !important
- }
- .width-400 {
- width: 400px !important
- }
- .width-450 {
- width: 450px !important
- }
- .width-500 {
- width: 500px !important
- }
- .width-550 {
- width: 550px !important
- }
- .width-600 {
- width: 600px !important
- }
- .width-650 {
- width: 650px !important
- }
- .width-700 {
- width: 700px !important
- }
- .width-750 {
- width: 750px !important
- }
- .width-800 {
- width: 800px !important
- }
- .width-5-per {
- width: 5% !important
- }
- .width-10-per {
- width: 10% !important
- }
- .width-15-per {
- width: 15% !important
- }
- .width-20-per {
- width: 20% !important
- }
- .width-25-per {
- width: 25% !important
- }
- .width-30-per {
- width: 30% !important
- }
- .width-35-per {
- width: 35% !important
- }
- .width-40-per {
- width: 40% !important
- }
- .width-45-per {
- width: 45% !important
- }
- .width-50-per {
- width: 50% !important
- }
- .width-55-per {
- width: 55% !important
- }
- .width-60-per {
- width: 60% !important
- }
- .width-65-per {
- width: 65% !important
- }
- .width-70-per {
- width: 70% !important
- }
- .width-75-per {
- width: 75% !important
- }
- .width-80-per {
- width: 80% !important
- }
- .width-90-per {
- width: 90% !important
- }
- .width-95-per {
- width: 95% !important
- }
- .height-50 {
- height: 50px !important
- }
- .height-75 {
- height: 75px !important
- }
- .height-100 {
- height: 100px !important
- }
- .height-150 {
- height: 150px !important
- }
- .height-200 {
- height: 200px !important
- }
- .height-250 {
- height: 250px !important
- }
- .height-300 {
- height: 300px !important
- }
- .height-350 {
- height: 350px !important
- }
- .height-400 {
- height: 400px !important
- }
- .height-450 {
- height: 450px !important
- }
- .height-500 {
- height: 500px !important
- }
- .height-550 {
- height: 550px !important
- }
- .height-600 {
- height: 600px !important
- }
- .height-650 {
- height: 650px !important
- }
- .height-700 {
- height: 700px !important
- }
- .height-750 {
- height: 750px !important
- }
- .height-800 {
- height: 800px !important
- }
- .height-5-per {
- height: 5% !important
- }
- .height-10-per {
- height: 10% !important
- }
- .height-15-per {
- height: 15% !important
- }
- .height-20-per {
- height: 20% !important
- }
- .height-25-per {
- height: 25% !important
- }
- .height-30-per {
- height: 30% !important
- }
- .height-35-per {
- height: 35% !important
- }
- .height-40-per {
- height: 40% !important
- }
- .height-45-per {
- height: 45% !important
- }
- .height-50-per {
- height: 50% !important
- }
- .height-55-per {
- height: 55% !important
- }
- .height-60-per {
- height: 60% !important
- }
- .height-65-per {
- height: 65% !important
- }
- .height-70-per {
- height: 70% !important
- }
- .height-75-per {
- height: 75% !important
- }
- .height-80-per {
- height: 80% !important
- }
- .full-height-vh-with-nav {
- height: calc(var(--vh,1vh) * 100 - 4rem - 4rem)
- }
- .full-height-vh {
- height: calc(var(--vh,1vh) * 100)
- }
- .line-height-1 {
- line-height: 1 !important
- }
- .line-height-2 {
- line-height: 2 !important
- }
- .rotate-45 {
- -webkit-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- transform: rotate(45deg)
- }
- .rotate-45-inverse {
- -webkit-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- transform: rotate(-45deg)
- }
- .rotate-90 {
- -webkit-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- transform: rotate(45deg)
- }
- .rotate-90-inverse {
- -webkit-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- transform: rotate(-45deg)
- }
- .rotate-180 {
- -webkit-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- transform: rotate(45deg)
- }
- .rotate-180-inverse {
- -webkit-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- transform: rotate(-45deg)
- }
- .spinner {
- display: inline-block;
- -webkit-animation: spin 1s linear infinite;
- animation: spin 1s linear infinite
- }
- @-webkit-keyframes spin {
- 0% {
- -webkit-transform: rotate(0);
- transform: rotate(0)
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg)
- }
- }
- @keyframes spin {
- 0% {
- -webkit-transform: rotate(0);
- transform: rotate(0)
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg)
- }
- }
- .spinner-reverse {
- display: inline-block;
- -webkit-animation: spin-reverse 1s linear infinite;
- animation: spin-reverse 1s linear infinite
- }
- @-webkit-keyframes spin-reverse {
- 0% {
- -webkit-transform: rotate(0);
- transform: rotate(0)
- }
- 100% {
- -webkit-transform: rotate(-360deg);
- transform: rotate(-360deg)
- }
- }
- @keyframes spin-reverse {
- 0% {
- -webkit-transform: rotate(0);
- transform: rotate(0)
- }
- 100% {
- -webkit-transform: rotate(-360deg);
- transform: rotate(-360deg)
- }
- }
- .bg-cover {
- background-size: cover !important
- }
- .background-repeat {
- background-repeat: repeat !important
- }
- .background-no-repeat {
- background-repeat: no-repeat !important
- }
- .img-xl {
- width: 64px !important;
- height: 64px !important
- }
- .img-lg {
- width: 44px !important;
- height: 44px !important
- }
- .img-sm {
- width: 36px !important;
- height: 36px !important
- }
- .img-xs {
- width: 32px !important;
- height: 32px !important
- }
- .pull-up {
- -webkit-transition: all .25s ease;
- transition: all .25s ease
- }
- .pull-up:hover {
- -webkit-transform: translateY(-4px) scale(1.02);
- -ms-transform: translateY(-4px) scale(1.02);
- transform: translateY(-4px) scale(1.02);
- box-shadow: 0 14px 24px rgba(62,57,107,.2);
- z-index: 30;
- cursor: pointer
- }
- .avatar {
- position: relative;
- white-space: nowrap;
- border-radius: 50%;
- vertical-align: middle;
- height: 32px;
- width: 32px;
- cursor: pointer;
- display: -webkit-inline-box;
- display: -webkit-inline-flex;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center
- }
- .avatar .badge-up {
- position: absolute;
- right: -8px;
- top: -8px
- }
- .avatar[class*=avatar-] i {
- border-radius: 50%;
- width: 11px;
- height: 11px;
- position: absolute;
- right: -2px;
- bottom: 0;
- border: 1px solid #FFF
- }
- .avatar.avatar-away i {
- background-color: #FFA87D
- }
- .avatar.avatar-busy i {
- background-color: #FF7588
- }
- .avatar.avatar-offline i {
- background-color: #BABFC7
- }
- .avatar.avatar-online i {
- background-color: #16D39A
- }
- .avatar img {
- width: 100%;
- max-width: 100%;
- height: auto;
- border: 0;
- border-radius: 50%
- }
- .avatar.avatar-xl {
- width: 70px;
- height: 70px;
- font-size: 1.5rem
- }
- .avatar.avatar-xl[class*=avatar-] i {
- width: 20px;
- height: 20px
- }
- .avatar.avatar-lg {
- width: 50px;
- height: 50px;
- font-size: 1.2rem
- }
- .avatar.avatar-lg[class*=avatar-] i {
- width: 15px;
- height: 15px
- }
- .avatar.avatar-sm {
- width: 24px;
- height: 24px;
- font-size: 1rem
- }
- .avatar.avatar-sm[class*=avatar-] i {
- width: 7px;
- height: 7px
- }
- .navbar-container a.nav-link-search {
- float: left
- }
- .navbar-container .search-input {
- position: relative;
- float: left;
- width: 0
- }
- .navbar-container .search-input .input {
- width: 0;
- border: none;
- background: 0 0;
- line-height: 16px;
- padding: 1.4rem 2.7rem
- }
- .navbar-container .search-input.open {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- width: 100%;
- z-index: 1001;
- margin-top: 0;
- box-shadow: 6px 12px 18px 0 rgba(25,42,70,.13)
- }
- .btn-adn.focus, .btn-adn:focus, .btn-adn:not(:disabled):not(.disabled).active:focus, .btn-adn:not(:disabled):not(.disabled):active:focus, .btn-bitbucket.focus, .btn-bitbucket:focus, .btn-bitbucket:not(:disabled):not(.disabled).active:focus, .btn-bitbucket:not(:disabled):not(.disabled):active:focus, .btn-dropbox.focus, .btn-dropbox:focus, .btn-dropbox:not(:disabled):not(.disabled).active:focus, .btn-dropbox:not(:disabled):not(.disabled):active:focus, .btn-facebook.focus, .btn-facebook:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus, .btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-flickr.focus, .btn-flickr:focus, .btn-flickr:not(:disabled):not(.disabled).active:focus, .btn-flickr:not(:disabled):not(.disabled):active:focus, .btn-foursquare.focus, .btn-foursquare:focus, .btn-github.focus, .btn-github:focus, .btn-github:not(:disabled):not(.disabled).active:focus, .btn-github:not(:disabled):not(.disabled):active:focus, .btn-google.focus, .btn-google:focus, .btn-google:not(:disabled):not(.disabled).active:focus, .btn-google:not(:disabled):not(.disabled):active:focus, .btn-instagram.focus, .btn-instagram:focus, .btn-instagram:not(:disabled):not(.disabled).active:focus, .btn-instagram:not(:disabled):not(.disabled):active:focus, .btn-linkedin.focus, .btn-linkedin:focus, .btn-linkedin:not(:disabled):not(.disabled).active:focus, .btn-linkedin:not(:disabled):not(.disabled):active:focus, .btn-microsoft.focus, .btn-microsoft:focus, .btn-microsoft:not(:disabled):not(.disabled).active:focus, .btn-microsoft:not(:disabled):not(.disabled):active:focus, .btn-odnoklassniki.focus, .btn-odnoklassniki:focus, .btn-odnoklassniki:not(:disabled):not(.disabled).active:focus, .btn-odnoklassniki:not(:disabled):not(.disabled):active:focus, .show > .btn-adn.dropdown-toggle:focus, .show > .btn-bitbucket.dropdown-toggle:focus, .show > .btn-dropbox.dropdown-toggle:focus, .show > .btn-facebook.dropdown-toggle:focus, .show > .btn-flickr.dropdown-toggle:focus, .show > .btn-github.dropdown-toggle:focus, .show > .btn-google.dropdown-toggle:focus, .show > .btn-instagram.dropdown-toggle:focus, .show > .btn-linkedin.dropdown-toggle:focus, .show > .btn-microsoft.dropdown-toggle:focus, .show > .btn-odnoklassniki.dropdown-toggle:focus {
- box-shadow: 0 0 0 .2rem rgba(255,255,255,.5)
- }
- .navbar-container .search-input.open .search-input-close, .navbar-container .search-input.open .search-input-icon {
- display: block
- }
- .navbar-container .search-input.open input {
- width: 100%;
- outline: 0;
- background: 0 0;
- padding-top: 1.45rem
- }
- .navbar-container .search-input .search-list {
- position: absolute;
- top: 100%;
- left: 0;
- background: #FFF;
- width: 60rem;
- margin-top: .5rem;
- padding-left: 0;
- border-radius: .25rem;
- display: none
- }
- .navbar-container .search-input .search-list.show {
- display: block;
- width: 98%;
- left: 1%
- }
- .navbar-container .search-input .search-list li a {
- padding: 1.2rem 1rem;
- color: #404E67
- }
- .navbar-container .search-input .search-list li a span[class*='bx bx-'] {
- font-size: 1.25rem
- }
- .navbar-container .search-input .search-list li:first-child {
- border-top-left-radius: .25rem;
- border-top-right-radius: .25rem
- }
- .navbar-container .search-input .search-list li:last-child {
- border-bottom-left-radius: .25rem;
- border-bottom-right-radius: .25rem
- }
- .navbar-container .search-input .search-list li.current_item, .navbar-container .search-input .search-list li:hover {
- background-color: #F2F4F4
- }
- .navbar-container .search-input .search-input-close {
- z-index: 1001;
- display: none;
- position: absolute;
- right: 1rem;
- top: 40%;
- cursor: pointer;
- color: #FFF
- }
- .chart, .chart-container {
- position: relative;
- width: 100%
- }
- .navbar-light .search-input .input, .navbar-semi-dark .search-input .input {
- color: #404E67;
- display: none
- }
- .navbar-light .search-input.open .input, .navbar-semi-dark .search-input.open .input {
- color: #404E67;
- border-bottom: 1px solid #E0E2E8;
- background-color: #FFF;
- display: block
- }
- .btn-openid, .navbar-light .search-input.open .search-input-close, .navbar-semi-dark .search-input.open .search-input-close {
- color: #2A2E30
- }
- .navbar-dark .search-input .input, .navbar-dark .search-input.open .search-input-close, .navbar-semi-light .search-input .input, .navbar-semi-light .search-input.open .search-input-close {
- color: #404E67
- }
- .navbar-dark .search-input.open .input, .navbar-semi-light .search-input.open .input {
- color: #404E67;
- background-color: #FFF
- }
- .navbar-dark .search-input.open .input::-webkit-input-placeholder, .navbar-semi-light .search-input.open .input::-webkit-input-placeholder {
- color: #404E67
- }
- .navbar-dark .search-input.open .input::-moz-placeholder, .navbar-semi-light .search-input.open .input::-moz-placeholder {
- color: #404E67
- }
- .navbar-dark .search-input.open .input:-ms-input-placeholder, .navbar-semi-light .search-input.open .input:-ms-input-placeholder {
- color: #404E67
- }
- .navbar-dark .search-input.open .input::-ms-input-placeholder, .navbar-semi-light .search-input.open .input::-ms-input-placeholder {
- color: #404E67
- }
- .navbar-dark .search-input.open .input::placeholder, .navbar-semi-light .search-input.open .input::placeholder {
- color: #404E67
- }
- @media (max-width:767.98px) {
- #navbar-mobile .search-input.open .input {
- color: #FFF
- }
- }
- @media (max-width:768px) {
- .chart-container {
- overflow-x: scroll;
- overflow-y: visible;
- max-width: 100%
- }
- }
- .chart {
- display: block
- }
- .jqstooltip {
- box-sizing: content-box
- }
- [class*=bs-callout] p {
- letter-spacing: .6px
- }
- [class*=bs-callout] .media {
- border-radius: .25rem !important
- }
- [class*=bs-callout].callout-bordered {
- border: 1px solid #DDD
- }
- [class*=bs-callout] .callout-arrow-left:before, [class*=bs-callout] .callout-arrow-right:before {
- content: '';
- display: inline-block;
- position: absolute;
- top: 50%;
- border-top: 8px solid transparent;
- border-bottom: 8px solid transparent;
- margin-top: -8px
- }
- [class*=bs-callout].callout-border-left {
- border-left: 5px solid
- }
- [class*=bs-callout].callout-border-right {
- border-right: 5px solid
- }
- [class*=bs-callout] .callout-arrow-left {
- border-top-left-radius: .25rem;
- border-bottom-left-radius: .25rem
- }
- [class*=bs-callout] .callout-arrow-left:before {
- right: -11%;
- border-left: 8px solid;
- border-left-color: inherit
- }
- [class*=bs-callout] .callout-arrow-right {
- border-top-right-radius: .25rem;
- border-bottom-right-radius: .25rem
- }
- [class*=bs-callout] .callout-arrow-right:before {
- left: -11%;
- border-left: 0;
- border-left-color: inherit;
- border-right: 8px solid;
- border-right-color: inherit
- }
- [class*=bs-callout].callout-round {
- border-radius: 5rem !important
- }
- [class*=bs-callout].callout-round .media-left {
- border-top-left-radius: 5rem;
- border-bottom-left-radius: 5rem
- }
- [class*=bs-callout].callout-round .media-right {
- border-top-right-radius: 5rem;
- border-bottom-right-radius: 5rem
- }
- [class*=bs-callout].callout-square, [class*=bs-callout].callout-square .callout-arrow-left, [class*=bs-callout].callout-square .callout-arrow-right, [class*=bs-callout].callout-square .media {
- border-radius: 0 !important
- }
- .btn-social, .btn-social-icon {
- position: relative;
- padding-left: 3.95rem;
- text-align: left;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis
- }
- .btn-social-icon > :first-child, .btn-social > :first-child {
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- width: 2.95rem;
- line-height: 2.7rem;
- font-size: 1.6em;
- text-align: center;
- border-right: 1px solid rgba(0,0,0,.2)
- }
- .btn-lg.btn-social-icon, .btn-social.btn-lg {
- padding-left: 3.25rem
- }
- .btn-lg.btn-social-icon > :first-child, .btn-social.btn-lg > :first-child {
- line-height: 3.7rem;
- width: 3rem;
- font-size: 1.8em
- }
- .btn-sm.btn-social-icon, .btn-social.btn-sm {
- padding-left: 3.5rem;
- padding-top: .5rem;
- padding-bottom: .5rem
- }
- .btn-sm.btn-social-icon > :first-child, .btn-social.btn-sm > :first-child {
- line-height: 2.5rem;
- width: 3rem;
- font-size: 1.4em
- }
- .btn-social.btn-xs, .btn-xs.btn-social-icon {
- padding-left: 2rem;
- font-size: .75rem;
- line-height: .2rem
- }
- .btn-social.btn-xs > :first-child, .btn-xs.btn-social-icon > :first-child {
- line-height: 2rem;
- width: 1.8rem;
- font-size: 1.2em
- }
- .btn-social-icon {
- height: 2.95rem;
- width: 2.95rem;
- padding: 0
- }
- .btn-social-icon > :first-child {
- border: none;
- text-align: center;
- width: 100% !important
- }
- .btn-social-icon.btn-lg {
- height: 4rem;
- width: 4rem;
- padding-left: 0;
- padding-right: 0
- }
- .btn-social-icon.btn-sm {
- height: 2.5rem;
- width: 2.5rem;
- padding-left: 0;
- padding-right: 0
- }
- .btn-social-icon.btn-xs {
- height: 2rem;
- width: 2rem;
- padding-left: 0;
- padding-right: 0
- }
- .btn-adn {
- color: #FFF;
- background-color: #D87A68;
- border-color: #FFF
- }
- .btn-adn.focus, .btn-adn:focus, .btn-adn:hover {
- border-color: #D87A68;
- background-color: #D87A68;
- color: #FFF
- }
- .btn-adn.disabled, .btn-adn:disabled {
- color: #FFF;
- background-color: #D87A68;
- border-color: #FFF
- }
- .btn-adn:not(:disabled):not(.disabled).active, .btn-adn:not(:disabled):not(.disabled):active, .show > .btn-adn.dropdown-toggle {
- color: #FFF;
- background-color: #CE563F;
- border-color: #DFDFDF
- }
- .btn-bitbucket {
- color: #FFF;
- background-color: #205081;
- border-color: #FFF
- }
- .btn-bitbucket.focus, .btn-bitbucket:focus, .btn-bitbucket:hover {
- border-color: #205081;
- background-color: #205081;
- color: #FFF
- }
- .btn-bitbucket.disabled, .btn-bitbucket:disabled {
- color: #FFF;
- background-color: #205081;
- border-color: #FFF
- }
- .btn-bitbucket:not(:disabled):not(.disabled).active, .btn-bitbucket:not(:disabled):not(.disabled):active, .show > .btn-bitbucket.dropdown-toggle {
- color: #FFF;
- background-color: #163758;
- border-color: #DFDFDF
- }
- .btn-dropbox {
- color: #FFF;
- background-color: #1087DD;
- border-color: #FFF
- }
- .btn-dropbox.focus, .btn-dropbox:focus, .btn-dropbox:hover {
- border-color: #1087DD;
- background-color: #1087DD;
- color: #FFF
- }
- .btn-dropbox.disabled, .btn-dropbox:disabled {
- color: #FFF;
- background-color: #1087DD;
- border-color: #FFF
- }
- .btn-dropbox:not(:disabled):not(.disabled).active, .btn-dropbox:not(:disabled):not(.disabled):active, .show > .btn-dropbox.dropdown-toggle {
- color: #FFF;
- background-color: #0D6AAD;
- border-color: #DFDFDF
- }
- .btn-facebook {
- color: #FFF;
- background-color: #3B5998;
- border-color: #FFF
- }
- .btn-facebook.focus, .btn-facebook:focus, .btn-facebook:hover {
- border-color: #3B5998;
- background-color: #3B5998;
- color: #FFF
- }
- .btn-facebook.disabled, .btn-facebook:disabled {
- color: #FFF;
- background-color: #3B5998;
- border-color: #FFF
- }
- .btn-facebook:not(:disabled):not(.disabled).active, .btn-facebook:not(:disabled):not(.disabled):active, .show > .btn-facebook.dropdown-toggle {
- color: #FFF;
- background-color: #2D4373;
- border-color: #DFDFDF
- }
- .btn-flickr {
- color: #FFF;
- background-color: #FF0084;
- border-color: #FFF
- }
- .btn-flickr.focus, .btn-flickr:focus, .btn-flickr:hover {
- border-color: #FF0084;
- background-color: #FF0084;
- color: #FFF
- }
- .btn-flickr.disabled, .btn-flickr:disabled {
- color: #FFF;
- background-color: #FF0084;
- border-color: #FFF
- }
- .btn-flickr:not(:disabled):not(.disabled).active, .btn-flickr:not(:disabled):not(.disabled):active, .show > .btn-flickr.dropdown-toggle {
- color: #FFF;
- background-color: #CC006A;
- border-color: #DFDFDF
- }
- .btn-foursquare {
- color: #FFF;
- background-color: #F94877;
- border-color: #FFF
- }
- .btn-foursquare.focus, .btn-foursquare:focus, .btn-foursquare:hover {
- border-color: #F94877;
- background-color: #F94877;
- color: #FFF
- }
- .btn-foursquare.disabled, .btn-foursquare:disabled {
- color: #FFF;
- background-color: #F94877;
- border-color: #FFF
- }
- .btn-foursquare:not(:disabled):not(.disabled).active, .btn-foursquare:not(:disabled):not(.disabled):active, .show > .btn-foursquare.dropdown-toggle {
- color: #FFF;
- background-color: #F71752;
- border-color: #DFDFDF
- }
- .btn-foursquare:not(:disabled):not(.disabled).active:focus, .btn-foursquare:not(:disabled):not(.disabled):active:focus, .show > .btn-foursquare.dropdown-toggle:focus {
- box-shadow: 0 0 0 .2rem rgba(255,255,255,.5)
- }
- .btn-github {
- color: #FFF;
- background-color: #444;
- border-color: #FFF
- }
- .btn-github.focus, .btn-github:focus, .btn-github:hover {
- border-color: #444;
- background-color: #444;
- color: #FFF
- }
- .btn-github.disabled, .btn-github:disabled {
- color: #FFF;
- background-color: #444;
- border-color: #FFF
- }
- .btn-github:not(:disabled):not(.disabled).active, .btn-github:not(:disabled):not(.disabled):active, .show > .btn-github.dropdown-toggle {
- color: #FFF;
- background-color: #2B2B2B;
- border-color: #DFDFDF
- }
- .btn-google {
- color: #FFF;
- background-color: #DD4B39;
- border-color: #FFF
- }
- .btn-google.focus, .btn-google:focus, .btn-google:hover {
- border-color: #DD4B39;
- background-color: #DD4B39;
- color: #FFF
- }
- .btn-google.disabled, .btn-google:disabled {
- color: #FFF;
- background-color: #DD4B39;
- border-color: #FFF
- }
- .btn-google:not(:disabled):not(.disabled).active, .btn-google:not(:disabled):not(.disabled):active, .show > .btn-google.dropdown-toggle {
- color: #FFF;
- background-color: #C23321;
- border-color: #DFDFDF
- }
- .btn-instagram {
- color: #FFF;
- background-color: #3F729B;
- border-color: #FFF
- }
- .btn-instagram.focus, .btn-instagram:focus, .btn-instagram:hover {
- border-color: #3F729B;
- background-color: #3F729B;
- color: #FFF
- }
- .btn-instagram.disabled, .btn-instagram:disabled {
- color: #FFF;
- background-color: #3F729B;
- border-color: #FFF
- }
- .btn-instagram:not(:disabled):not(.disabled).active, .btn-instagram:not(:disabled):not(.disabled):active, .show > .btn-instagram.dropdown-toggle {
- color: #FFF;
- background-color: #305777;
- border-color: #DFDFDF
- }
- .btn-linkedin {
- color: #FFF;
- background-color: #007BB6;
- border-color: #FFF
- }
- .btn-linkedin.focus, .btn-linkedin:focus, .btn-linkedin:hover {
- border-color: #007BB6;
- background-color: #007BB6;
- color: #FFF
- }
- .btn-linkedin.disabled, .btn-linkedin:disabled {
- color: #FFF;
- background-color: #007BB6;
- border-color: #FFF
- }
- .btn-linkedin:not(:disabled):not(.disabled).active, .btn-linkedin:not(:disabled):not(.disabled):active, .show > .btn-linkedin.dropdown-toggle {
- color: #FFF;
- background-color: #005983;
- border-color: #DFDFDF
- }
- .btn-microsoft {
- color: #FFF;
- background-color: #2672EC;
- border-color: #FFF
- }
- .btn-microsoft.focus, .btn-microsoft:focus, .btn-microsoft:hover {
- border-color: #2672EC;
- background-color: #2672EC;
- color: #FFF
- }
- .btn-microsoft.disabled, .btn-microsoft:disabled {
- color: #FFF;
- background-color: #2672EC;
- border-color: #FFF
- }
- .btn-microsoft:not(:disabled):not(.disabled).active, .btn-microsoft:not(:disabled):not(.disabled):active, .show > .btn-microsoft.dropdown-toggle {
- color: #FFF;
- background-color: #125ACD;
- border-color: #DFDFDF
- }
- .btn-odnoklassniki {
- color: #FFF;
- background-color: #F4731C;
- border-color: #FFF
- }
- .btn-odnoklassniki.focus, .btn-odnoklassniki:focus, .btn-odnoklassniki:hover {
- border-color: #F4731C;
- background-color: #F4731C;
- color: #FFF
- }
- .btn-odnoklassniki.disabled, .btn-odnoklassniki:disabled {
- color: #FFF;
- background-color: #F4731C;
- border-color: #FFF
- }
- .btn-odnoklassniki:not(:disabled):not(.disabled).active, .btn-odnoklassniki:not(:disabled):not(.disabled):active, .show > .btn-odnoklassniki.dropdown-toggle {
- color: #FFF;
- background-color: #D35B0A;
- border-color: #DFDFDF
- }
- .btn-openid.focus, .btn-openid:focus, .btn-openid:not(:disabled):not(.disabled).active:focus, .btn-openid:not(:disabled):not(.disabled):active:focus, .show > .btn-openid.dropdown-toggle:focus {
- box-shadow: 0 0 0 .2rem rgba(223,224,224,.5)
- }
- .btn-openid {
- background-color: #F7931E;
- border-color: #FFF
- }
- .btn-openid.focus, .btn-openid:focus, .btn-openid:hover {
- border-color: #F7931E;
- color: #2A2E30;
- background-color: #F7931E
- }
- .btn-openid.disabled, .btn-openid:disabled {
- color: #2A2E30;
- background-color: #F7931E;
- border-color: #FFF
- }
- .btn-openid:not(:disabled):not(.disabled).active, .btn-openid:not(:disabled):not(.disabled):active, .show > .btn-openid.dropdown-toggle {
- color: #FFF;
- background-color: #DA7908;
- border-color: #DFDFDF
- }
- .btn-pinterest.focus, .btn-pinterest:focus, .btn-pinterest:not(:disabled):not(.disabled).active:focus, .btn-pinterest:not(:disabled):not(.disabled):active:focus, .show > .btn-pinterest.dropdown-toggle:focus {
- box-shadow: 0 0 0 .2rem rgba(255,255,255,.5)
- }
- .btn-pinterest {
- color: #FFF;
- background-color: #CB2027;
- border-color: #FFF
- }
- .btn-pinterest.focus, .btn-pinterest:focus, .btn-pinterest:hover {
- border-color: #CB2027;
- background-color: #CB2027;
- color: #FFF
- }
- .btn-pinterest.disabled, .btn-pinterest:disabled {
- color: #FFF;
- background-color: #CB2027;
- border-color: #FFF
- }
- .btn-pinterest:not(:disabled):not(.disabled).active, .btn-pinterest:not(:disabled):not(.disabled):active, .show > .btn-pinterest.dropdown-toggle {
- color: #FFF;
- background-color: #9F191F;
- border-color: #DFDFDF
- }
- .btn-reddit.focus, .btn-reddit:focus, .btn-reddit:not(:disabled):not(.disabled).active:focus, .btn-reddit:not(:disabled):not(.disabled):active:focus, .show > .btn-reddit.dropdown-toggle:focus {
- box-shadow: 0 0 0 .2rem rgba(6,7,7,.5)
- }
- .btn-reddit {
- color: #2A2E30;
- background-color: #EFF7FF;
- border-color: #000
- }
- .btn-reddit.focus, .btn-reddit:focus, .btn-reddit:hover {
- background-color: #000;
- border-color: #000;
- color: #FFF
- }
- .btn-reddit.disabled, .btn-reddit:disabled {
- color: #2A2E30;
- background-color: #EFF7FF;
- border-color: #000
- }
- .btn-reddit:not(:disabled):not(.disabled).active, .btn-reddit:not(:disabled):not(.disabled):active, .show > .btn-reddit.dropdown-toggle {
- color: #2A2E30;
- background-color: #BCDEFF;
- border-color: #000
- }
- .btn-soundcloud.focus, .btn-soundcloud:focus, .btn-soundcloud:not(:disabled):not(.disabled).active:focus, .btn-soundcloud:not(:disabled):not(.disabled):active:focus, .btn-tumblr.focus, .btn-tumblr:focus, .btn-tumblr:not(:disabled):not(.disabled).active:focus, .btn-tumblr:not(:disabled):not(.disabled):active:focus, .show > .btn-soundcloud.dropdown-toggle:focus, .show > .btn-tumblr.dropdown-toggle:focus {
- box-shadow: 0 0 0 .2rem rgba(255,255,255,.5)
- }
- .btn-soundcloud {
- color: #FFF;
- background-color: #F50;
- border-color: #FFF
- }
- .btn-soundcloud.focus, .btn-soundcloud:focus, .btn-soundcloud:hover {
- border-color: #F50;
- background-color: #F50;
- color: #FFF
- }
- .btn-soundcloud.disabled, .btn-soundcloud:disabled {
- color: #FFF;
- background-color: #F50;
- border-color: #FFF
- }
- .btn-soundcloud:not(:disabled):not(.disabled).active, .btn-soundcloud:not(:disabled):not(.disabled):active, .show > .btn-soundcloud.dropdown-toggle {
- color: #FFF;
- background-color: #C40;
- border-color: #DFDFDF
- }
- .btn-tumblr {
- color: #FFF;
- background-color: #2C4762;
- border-color: #FFF
- }
- .btn-tumblr.focus, .btn-tumblr:focus, .btn-tumblr:hover {
- border-color: #2C4762;
- background-color: #2C4762;
- color: #FFF
- }
- .btn-tumblr.disabled, .btn-tumblr:disabled {
- color: #FFF;
- background-color: #2C4762;
- border-color: #FFF
- }
- .btn-tumblr:not(:disabled):not(.disabled).active, .btn-tumblr:not(:disabled):not(.disabled):active, .show > .btn-tumblr.dropdown-toggle {
- color: #FFF;
- background-color: #1C2E3F;
- border-color: #DFDFDF
- }
- .btn-twitter.focus, .btn-twitter:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus, .btn-twitter:not(:disabled):not(.disabled):active:focus, .show > .btn-twitter.dropdown-toggle:focus {
- box-shadow: 0 0 0 .2rem rgba(223,224,224,.5)
- }
- .btn-twitter {
- color: #2A2E30;
- background-color: #55ACEE;
- border-color: #FFF
- }
- .btn-twitter.focus, .btn-twitter:focus, .btn-twitter:hover {
- border-color: #55ACEE;
- color: #2A2E30;
- background-color: #55ACEE
- }
- .btn-twitter.disabled, .btn-twitter:disabled {
- color: #2A2E30;
- background-color: #55ACEE;
- border-color: #FFF
- }
- .btn-twitter:not(:disabled):not(.disabled).active, .btn-twitter:not(:disabled):not(.disabled):active, .show > .btn-twitter.dropdown-toggle {
- color: #FFF;
- background-color: #2795E9;
- border-color: #DFDFDF
- }
- .btn-vimeo.focus, .btn-vimeo:focus, .btn-vimeo:not(:disabled):not(.disabled).active:focus, .btn-vimeo:not(:disabled):not(.disabled):active:focus, .btn-vk.focus, .btn-vk:focus, .btn-vk:not(:disabled):not(.disabled).active:focus, .btn-vk:not(:disabled):not(.disabled):active:focus, .btn-yahoo.focus, .btn-yahoo:focus, .btn-yahoo:not(:disabled):not(.disabled).active:focus, .btn-yahoo:not(:disabled):not(.disabled):active:focus, .show > .btn-vimeo.dropdown-toggle:focus, .show > .btn-vk.dropdown-toggle:focus, .show > .btn-yahoo.dropdown-toggle:focus {
- box-shadow: 0 0 0 .2rem rgba(255,255,255,.5)
- }
- .btn-vimeo {
- color: #FFF;
- background-color: #1AB7EA;
- border-color: #FFF
- }
- .btn-vimeo.focus, .btn-vimeo:focus, .btn-vimeo:hover {
- border-color: #1AB7EA;
- background-color: #1AB7EA;
- color: #FFF
- }
- .btn-vimeo.disabled, .btn-vimeo:disabled {
- color: #FFF;
- background-color: #1AB7EA;
- border-color: #FFF
- }
- .btn-vimeo:not(:disabled):not(.disabled).active, .btn-vimeo:not(:disabled):not(.disabled):active, .show > .btn-vimeo.dropdown-toggle {
- color: #FFF;
- background-color: #1295BF;
- border-color: #DFDFDF
- }
- .btn-vk {
- color: #FFF;
- background-color: #587EA3;
- border-color: #FFF
- }
- .btn-vk.focus, .btn-vk:focus, .btn-vk:hover {
- border-color: #587EA3;
- background-color: #587EA3;
- color: #FFF
- }
- .btn-vk.disabled, .btn-vk:disabled {
- color: #FFF;
- background-color: #587EA3;
- border-color: #FFF
- }
- .btn-vk:not(:disabled):not(.disabled).active, .btn-vk:not(:disabled):not(.disabled):active, .show > .btn-vk.dropdown-toggle {
- color: #FFF;
- background-color: #466482;
- border-color: #DFDFDF
- }
- .btn-yahoo {
- color: #FFF;
- background-color: #720E9E;
- border-color: #FFF
- }
- .btn-yahoo.focus, .btn-yahoo:focus, .btn-yahoo:hover {
- border-color: #720E9E;
- background-color: #720E9E;
- color: #FFF
- }
- .btn-yahoo.disabled, .btn-yahoo:disabled {
- color: #FFF;
- background-color: #720E9E;
- border-color: #FFF
- }
- .btn-yahoo:not(:disabled):not(.disabled).active, .btn-yahoo:not(:disabled):not(.disabled):active, .show > .btn-yahoo.dropdown-toggle {
- color: #FFF;
- background-color: #500A6F;
- border-color: #DFDFDF
- }
- .btn-outline-adn {
- border: 1px solid #D87A68 !important;
- color: #D87A68
- }
- .btn-outline-bitbucket {
- border: 1px solid #205081 !important;
- color: #205081
- }
- .btn-outline-dropbox {
- border: 1px solid #1087DD !important;
- color: #1087DD
- }
- .btn-outline-facebook {
- border: 1px solid #3B5998 !important;
- color: #3B5998
- }
- .btn-outline-flickr {
- border: 1px solid #FF0084 !important;
- color: #FF0084
- }
- .btn-outline-foursquare {
- border: 1px solid #F94877 !important;
- color: #F94877
- }
- .btn-outline-github {
- border: 1px solid #444 !important;
- color: #444
- }
- .btn-outline-google {
- border: 1px solid #DD4B39 !important;
- color: #DD4B39
- }
- .btn-outline-instagram {
- border: 1px solid #3F729B !important;
- color: #3F729B
- }
- .btn-outline-linkedin {
- border: 1px solid #007BB6 !important;
- color: #007BB6
- }
- .btn-outline-microsoft {
- border: 1px solid #2672EC !important;
- color: #2672EC
- }
- .btn-outline-odnoklassniki {
- border: 1px solid #F4731C !important;
- color: #F4731C
- }
- .btn-outline-openid {
- border: 1px solid #F7931E !important;
- color: #F7931E
- }
- .btn-outline-pinterest {
- border: 1px solid #CB2027 !important;
- color: #CB2027
- }
- .btn-outline-reddit {
- border: 1px solid #FF4500 !important;
- color: #FF4500
- }
- .btn-outline-soundcloud {
- border: 1px solid #F50 !important;
- color: #F50
- }
- .btn-outline-tumblr {
- border: 1px solid #2C4762 !important;
- color: #2C4762
- }
- .btn-outline-twitter {
- border: 1px solid #55ACEE !important;
- color: #55ACEE
- }
- .btn-outline-vimeo {
- border: 1px solid #1AB7EA !important;
- color: #1AB7EA
- }
- .btn-outline-vk {
- border: 1px solid #587EA3 !important;
- color: #587EA3
- }
- .btn-outline-yahoo {
- border: 1px solid #720E9E !important;
- color: #720E9E
- }
- .btn-outline-adn:hover {
- color: #AD412D;
- border: 1px solid #AD412D !important
- }
- .btn-outline-bitbucket:hover {
- color: #0C1D2F;
- border: 1px solid #0C1D2F !important
- }
- .btn-outline-dropbox:hover {
- color: #094D7E;
- border: 1px solid #094D7E !important
- }
- .btn-outline-facebook:hover {
- color: #1E2E4F;
- border: 1px solid #1E2E4F !important
- }
- .btn-outline-flickr:hover {
- color: #99004F;
- border: 1px solid #99004F !important
- }
- .btn-outline-foursquare:hover {
- color: #D4073D;
- border: 1px solid #D4073D !important
- }
- .btn-outline-github:hover {
- color: #111;
- border: 1px solid #111 !important
- }
- .btn-outline-google:hover {
- color: #96271A;
- border: 1px solid #96271A !important
- }
- .btn-outline-instagram:hover {
- color: #223D52;
- border: 1px solid #223D52 !important
- }
- .btn-outline-linkedin:hover {
- color: #003650;
- border: 1px solid #003650 !important
- }
- .btn-outline-microsoft:hover {
- color: #0E459E;
- border: 1px solid #0E459E !important
- }
- .btn-outline-odnoklassniki:hover {
- color: #A24608;
- border: 1px solid #A24608 !important
- }
- .btn-outline-openid:hover {
- color: #A95E06;
- border: 1px solid #A95E06 !important
- }
- .btn-outline-pinterest:hover {
- color: #731216;
- border: 1px solid #731216 !important
- }
- .btn-outline-reddit:hover {
- color: #992900;
- border: 1px solid #992900 !important
- }
- .btn-outline-soundcloud:hover {
- color: #930;
- border: 1px solid #930 !important
- }
- .btn-outline-tumblr:hover {
- color: #0C141C;
- border: 1px solid #0C141C !important
- }
- .btn-outline-twitter:hover {
- color: #147BC9;
- border: 1px solid #147BC9 !important
- }
- .btn-outline-vimeo:hover {
- color: #0D7091;
- border: 1px solid #0D7091 !important
- }
- .btn-outline-vk:hover {
- color: #344B61;
- border: 1px solid #344B61 !important
- }
- .btn-outline-yahoo:hover {
- color: #2E0640;
- border: 1px solid #2E0640 !important
- }
- .bg-adn {
- background-color: #D87A68
- }
- .bg-bitbucket {
- background-color: #205081
- }
- .bg-dropbox {
- background-color: #1087DD
- }
- .bg-facebook {
- background-color: #3B5998
- }
- .bg-flickr {
- background-color: #FF0084
- }
- .bg-foursquare {
- background-color: #F94877
- }
- .bg-github {
- background-color: #444
- }
- .bg-google {
- background-color: #DD4B39
- }
- .bg-instagram {
- background-color: #3F729B
- }
- .bg-linkedin {
- background-color: #007BB6
- }
- .bg-microsoft {
- background-color: #2672EC
- }
- .bg-odnoklassniki {
- background-color: #F4731C
- }
- .bg-openid {
- background-color: #F7931E
- }
- .bg-pinterest {
- background-color: #CB2027
- }
- .bg-reddit {
- background-color: #FF4500
- }
- .bg-soundcloud {
- background-color: #F50
- }
- .bg-tumblr {
- background-color: #2C4762
- }
- .bg-twitter {
- background-color: #55ACEE
- }
- .bg-vimeo {
- background-color: #1AB7EA
- }
- .bg-vk {
- background-color: #587EA3
- }
- .bg-yahoo {
- background-color: #720E9E
- }
- .fonticon-container > .fonticon-wrap {
- float: left;
- width: 60px;
- height: 60px;
- line-height: 4.8rem;
- text-align: center;
- border-radius: .1875rem;
- margin-right: 1rem;
- margin-bottom: 1.5rem
- }
- .fonticon-container > .fonticon-wrap > i {
- font-size: 2.28rem;
- -webkit-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out
- }
- .fonticon-container > .fonticon-wrap.youtube {
- width: 100px
- }
- .fonticon-container:hover i {
- color: #00B5B8;
- font-size: 2.9rem;
- -webkit-transform: scale(1.3);
- -ms-transform: scale(1.3);
- transform: scale(1.3)
- }
- .fonticon-container > .fonticon-classname, .fonticon-container > .fonticon-unit {
- display: block;
- font-size: 1.5rem;
- line-height: 1.2
- }
- .fonticon-container > .fonticon-unit {
- font-size: 1rem;
- font-style: italic
- }
- .scroll-example {
- padding: .5rem;
- position: relative;
- border: 2px solid #D3DCE9;
- overflow: auto
- }
- .scroll-example .horz-scroll-content {
- width: 1200px
- }
- .browser {
- background: #E0E0E0;
- border: 4px solid #E0E0E0;
- width: 100%;
- height: 12rem;
- padding-top: 20px;
- margin: 0 0 10px;
- box-sizing: border-box
- }
- .browser iframe {
- border: 0;
- background: #FFF;
- height: 100%;
- width: 100%
- }
- .loader-wrapper {
- height: 8em
- }
- .maintenance-icon {
- font-size: 4rem
- }
- .animationIcon {
- right: 30px;
- bottom: 10px
- }
- .customizer {
- width: 400px;
- right: -400px;
- padding: 0;
- background-color: #FFF;
- z-index: 1051;
- position: fixed;
- top: 0;
- bottom: 0;
- height: calc(var(--vh,1vh) * 100);
- -webkit-transition: right .4s cubic-bezier(.05,.74,.2,.99);
- transition: right .4s cubic-bezier(.05,.74,.2,.99);
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- border-left: 1px solid rgba(0,0,0,.05);
- box-shadow: 0 0 8px rgba(0,0,0,.1)
- }
- .customizer.open {
- right: 0
- }
- .customizer .customizer-content {
- position: relative;
- height: 100%
- }
- .customizer a.customizer-toggle {
- background: #FFF;
- color: #00B5B8;
- display: block;
- box-shadow: -3px 0 8px rgba(0,0,0,.1)
- }
- .customizer a.customizer-close {
- color: #000
- }
- .customizer .customizer-close {
- position: absolute;
- right: 10px;
- top: 10px;
- padding: 7px;
- width: auto;
- z-index: 10
- }
- .customizer .customizer-toggle {
- position: absolute;
- top: 35%;
- width: 54px;
- height: 50px;
- left: -54px;
- text-align: center;
- line-height: 56px;
- cursor: pointer
- }
- .customizer .color-options a {
- white-space: pre
- }
- .customizer .customizer-sidebar-options .active {
- background-color: #00B5B8;
- border-color: #00B5B8;
- color: #FFF
- }
- .select2-container--classic.select2-container--focus .select2-selection--multiple, .select2-container--classic.select2-container--open .select2-selection--single, .select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default.select2-container--open .select2-selection--single {
- border-color: #CCC !important;
- outline: 0
- }
- .buy-now {
- position: fixed;
- bottom: 5%;
- right: 2%;
- z-index: 1031
- }
- @media screen and (min-width:0) {
- head {
- font-family: 'xs 0px'
- }
- body:after {
- content: 'xs - min-width: 0px'
- }
- }
- @media screen and (min-width:544px) {
- head {
- font-family: 'sm 544px'
- }
- body:after {
- content: 'sm - min-width: 544px'
- }
- }
- @media screen and (min-width:768px) {
- head {
- font-family: 'md 768px'
- }
- body:after {
- content: 'md - min-width: 768px'
- }
- }
- @media screen and (min-width:992px) {
- head {
- font-family: 'lg 992px'
- }
- body:after {
- content: 'lg - min-width: 992px'
- }
- }
- @media screen and (min-width:1200px) {
- head {
- font-family: 'xl 1200px'
- }
- body:after {
- content: 'xl - min-width: 1200px'
- }
- }
- head {
- clear: both
- }
- head title {
- font-family: 'xs 0px, sm 544px, md 768px, lg 992px, xl 1200px'
- }
- [data-usn-if], body:after {
- display: none
- }
- .group-area {
- margin-bottom: 3rem
- }
- .block {
- display: block;
- width: 100%
- }
- .form-control-position {
- position: absolute;
- top: 4px;
- right: 0;
- z-index: 2;
- display: block;
- width: 2.5rem;
- height: 2.5rem;
- line-height: 2.5rem;
- text-align: center
- }
- .position-relative .form-control {
- padding-right: calc(2.75rem + 2px)
- }
- .position-relative .form-control.form-control-lg ~ .form-control-position {
- top: 10px
- }
- .position-relative .form-control.form-control-sm ~ .form-control-position {
- top: -3px
- }
- .has-icon-left .form-control {
- padding-left: 2.5rem;
- padding-right: 1rem;
- padding-left: calc(2.75rem + 2px)
- }
- .has-icon-left .form-control-position {
- right: auto;
- left: inherit
- }
- input[type=color] {
- height: calc(2.75rem + 2px)
- }
- input[type=date].form-control, input[type=time].form-control, input[type=datetime-local].form-control, input[type=month].form-control {
- line-height: 1.45
- }
- .font-size-large {
- font-size: 1.25rem
- }
- .font-size-base {
- font-size: 1rem
- }
- .font-size-small {
- font-size: .875rem
- }
- .font-size-xsmall {
- font-size: .75rem
- }
- .input-group-xs .form-control, .input-group-xs .input-group-addon, .input-group-xs .input-group-btn > button {
- padding: .175rem .5rem;
- font-size: .725rem;
- line-height: 1.677777;
- border-bottom-left-radius: .175rem;
- border-top-left-radius: .175rem;
- height: 2rem
- }
- .input-group-xs .input-group-btn > button {
- border-radius: .175rem
- }
- .input-group-xs > .custom-select, .input-group-xs > .form-control, .input-group-xs > .input-group-append > .btn, .input-group-xs > .input-group-append > .input-group-text, .input-group-xs > .input-group-prepend > .btn, .input-group-xs > .input-group-prepend > .input-group-text {
- padding: .25rem .75rem;
- font-size: .75rem
- }
- .input-group-addon {
- padding-top: .2rem;
- padding-bottom: .2rem
- }
- .floating-label-form-group-with-focus label, .floating-label-form-group-with-value label {
- color: #00B5B8 !important;
- text-transform: uppercase;
- font-weight: 400
- }
- .select2-container--classic:focus, .select2-container--default:focus {
- outline: 0
- }
- .select2-container--classic .img-flag, .select2-container--default .img-flag {
- height: 15px;
- width: 18px
- }
- .select2-container--classic .select2-selection--single, .select2-container--default .select2-selection--single {
- height: 40px !important;
- padding: 5px
- }
- .select2-container--classic .select2-selection--single .select2-selection__rendered i, .select2-container--default .select2-selection--single .select2-selection__rendered i {
- margin-right: .5rem
- }
- .select2-container--classic.select2-container--focus, .select2-container--default.select2-container--focus {
- outline: 0
- }
- .select2-container--classic .select2-selection--multiple, .select2-container--default .select2-selection--multiple {
- min-height: 40px !important;
- padding: 5px 8px !important
- }
- .select2-container--classic .select2-selection--multiple .select2-selection__choice, .select2-container--default .select2-selection--multiple .select2-selection__choice {
- padding: 2px 10px !important;
- margin-top: 0 !important;
- background-color: #00B5B8 !important;
- border: none;
- color: #FFF;
- margin-right: 8px !important
- }
- .select2-container--classic .select2-selection--multiple .select2-selection__rendered, .select2-container--default .select2-selection--multiple .select2-selection__rendered {
- display: block !important;
- padding: 0 !important
- }
- .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
- color: #FFF !important;
- float: right;
- margin-left: .5rem
- }
- .select2-container--classic .select2-selection--multiple i, .select2-container--default .select2-selection--multiple i {
- position: relative;
- top: 1px;
- margin-right: .5rem;
- padding-left: 1px
- }
- .select2-container--classic .select2-selection--multiple[class*=bg-] .select2-selection__choice, .select2-container--default .select2-selection--multiple[class*=bg-] .select2-selection__choice {
- background-color: rgba(0,0,0,.15) !important;
- border-color: rgba(0,0,0,.2) !important
- }
- .select2-container--classic .select2-results__options .select2-results__option i, .select2-container--default .select2-results__options .select2-results__option i {
- margin-right: .5rem
- }
- .select2-container--classic .select2-results__options .select2-results__option[aria-selected=true], .select2-container--default .select2-results__options .select2-results__option[aria-selected=true] {
- background-color: #00B5B8 !important;
- color: #FFF !important
- }
- .select2-container--classic .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[aria-selected] {
- background-color: #E0E0E0 !important;
- color: #424242 !important
- }
- .select2-container--classic .select2-result-repository .select2-result-repository__avatar, .select2-container--default .select2-result-repository .select2-result-repository__avatar {
- width: 22%;
- float: left
- }
- .select2-container--classic .select2-result-repository .select2-result-repository__avatar img, .select2-container--default .select2-result-repository .select2-result-repository__avatar img {
- width: 75px
- }
- .select2-container--classic .select2-result-repository .select2-result-repository__meta, .select2-container--default .select2-result-repository .select2-result-repository__meta {
- width: 78%;
- float: right
- }
- .select2-container--classic .select2-result-repository .select2-result-repository__meta .select2-result-repository__title, .select2-container--default .select2-result-repository .select2-result-repository__meta .select2-result-repository__title {
- font-size: 1.35rem;
- font-weight: 700;
- text-transform: capitalize
- }
- .select2-container--classic .select2-result-repository .select2-result-repository__meta .select2-result-repository__statistics div, .select2-container--default .select2-result-repository .select2-result-repository__meta .select2-result-repository__statistics div {
- display: inline;
- margin-right: 1rem
- }
- .select2-container--classic .select-lg, .select2-container--default .select-lg {
- height: calc(3.5625rem + 2px) !important;
- font-size: 1.25rem;
- margin-bottom: 0 !important;
- padding: .75rem 0
- }
- .select2-container--classic .select-lg.select2-selection--single .select2-selection__rendered, .select2-container--default .select-lg.select2-selection--single .select2-selection__rendered {
- padding-top: .1rem;
- padding-left: .75rem;
- padding-right: 5rem
- }
- .select2-container--classic .select-lg.select2-selection--single .select2-selection__arrow, .select2-container--default .select-lg.select2-selection--single .select2-selection__arrow {
- top: .75rem !important
- }
- .select2-container--classic .select-lg.select2-selection--multiple .select2-selection__choice, .select2-container--default .select-lg.select2-selection--multiple .select2-selection__choice {
- padding: .2rem .5rem !important;
- font-size: 1.25rem
- }
- .select2-container--classic .select-lg.select2-selection--multiple .select2-search--inline .select2-search__field, .select2-container--default .select-lg.select2-selection--multiple .select2-search--inline .select2-search__field {
- padding: 0;
- font-size: 1.25rem
- }
- .select2-container--classic .select-sm, .select2-container--default .select-sm {
- height: 2.5rem !important;
- font-size: .875rem;
- padding: .1rem .2rem;
- margin-bottom: 0 !important
- }
- .select2-container--classic .select-sm.select2-selection--single .select2-selection__rendered, .select2-container--default .select-sm.select2-selection--single .select2-selection__rendered {
- padding-left: .5rem;
- padding-right: 5rem
- }
- .select2-container--classic .select-sm.select2-selection--single .select2-selection__arrow, .select2-container--default .select-sm.select2-selection--single .select2-selection__arrow {
- top: .25rem !important
- }
- .select2-container--classic .select-sm.select2-selection--multiple, .select2-container--default .select-sm.select2-selection--multiple {
- min-height: 2.5rem !important;
- padding: .25rem !important
- }
- .select2-container--classic .select-sm.select2-selection--multiple .select2-selection__rendered, .select2-container--default .select-sm.select2-selection--multiple .select2-selection__rendered {
- padding-left: .25rem !important
- }
- .select2-container--classic .select-sm.select2-selection--multiple .select2-selection__choice, .select2-container--default .select-sm.select2-selection--multiple .select2-selection__choice {
- padding: 0 .25rem !important;
- font-size: .875rem
- }
- .select2-container--classic .select-sm.select2-selection--multiple .select2-search--inline .select2-search__field, .select2-container--default .select-sm.select2-selection--multiple .select2-search--inline .select2-search__field {
- padding: .1rem 0;
- margin-top: 0
- }
- .select2-container--classic .select-xs, .select2-container--default .select-xs {
- height: 2rem !important;
- padding: 0 .2rem;
- font-size: .75rem;
- margin-bottom: 0 !important;
- line-height: 1.5
- }
- .select2-container--classic .select-xs.select2-selection--single .select2-selection__rendered, .select2-container--default .select-xs.select2-selection--single .select2-selection__rendered {
- padding-left: .525rem;
- padding-right: 4.55rem
- }
- .select2-container--classic .select-xs.select2-selection--single .select2-selection__arrow, .select2-container--default .select-xs.select2-selection--single .select2-selection__arrow {
- top: .175rem !important
- }
- .select2-container--classic .select-xs.select2-selection--multiple, .select2-container--default .select-xs.select2-selection--multiple {
- min-height: 2rem !important;
- padding: 3px 4px !important
- }
- .select2-container--classic .select-xs.select2-selection--multiple .select2-selection__choice, .select2-container--default .select-xs.select2-selection--multiple .select2-selection__choice {
- padding: 0 .4rem !important;
- font-size: .75rem
- }
- .select2-container--classic .select-xs.select2-selection--multiple .select2-search--inline .select2-search__field, .select2-container--default .select-xs.select2-selection--multiple .select2-search--inline .select2-search__field {
- padding: 0;
- font-size: .75rem;
- margin-top: 0
- }
- .select2-container--default .select2-selection--single .select2-selection__arrow {
- top: 6px !important;
- right: 6px !important
- }
- .select2-container--classic .select2-selection--single .select2-selection__arrow {
- top: 1px !important;
- right: 2px !important;
- height: 96% !important
- }
- .dataTables_wrapper, table.dataTable {
- border-spacing: 0
- }
- .dataTables_wrapper thead th, .dataTables_wrapper.no-footer th, table.dataTable thead th, table.dataTable.no-footer th {
- border-bottom: transparent
- }
- .dataTables_wrapper tfoot th, table.dataTable tfoot th {
- border-top: transparent
- }
- .content-wrapper table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before, .content-wrapper table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
- background-color: #00B5B8;
- border-radius: 0;
- top: 10px;
- left: 10px;
- box-shadow: 0 0 2px #444
- }
- .content-wrapper table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before, .content-wrapper table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
- background-color: #FF7588
- }
- .DTFC_LeftBodyLiner {
- top: -1px !important
- }
- div.dataTables_wrapper {
- width: 100%
- }
- div.dataTables_wrapper div.dataTables_paginate .paginate_button {
- margin-left: 0;
- padding: 0;
- border: none !important
- }
- div.dataTables_wrapper div.dataTables_paginate .paginate_button:hover {
- background: 0 0;
- border: 1px solid transparent
- }
- div.dataTables_wrapper div.dataTables_paginate ul.pagination {
- margin: 10px 0;
- -webkit-box-pack: end;
- -webkit-justify-content: flex-end;
- -ms-flex-pack: end;
- justify-content: flex-end
- }
- div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_length select {
- width: auto;
- display: inline-block
- }
- div.dataTables_wrapper div.dataTables_length select {
- background: url(../images/pages/arrow-down.png) 86% 57% no-repeat;
- background-size: 12px 10px
- }
- div.dataTables_wrapper div .dataTables_scroll .dataTables_scrollBody {
- border-bottom: transparent
- }
- div.dataTables_wrapper div .dataTables_scroll .dataTables_scrollBody > .table {
- margin: 0
- }
- div.dataTables_wrapper div .bottom .dataTables_filter, div.dataTables_wrapper div .bottom .dataTables_info, div.dataTables_wrapper div .bottom .dataTables_length, div.dataTables_wrapper div .top .dataTables_filter, div.dataTables_wrapper div .top .dataTables_info, div.dataTables_wrapper div .top .dataTables_length {
- float: none
- }
- td.highlight {
- font-weight: 700;
- color: #00B5B8;
- background-color: #FFF !important
- }
- tr.group, tr.group:hover {
- background-color: #EDEDED !important
- }
- th {
- white-space: nowrap
- }
- .toolbar {
- float: left
- }
- .no-style tfoot > tr > th, .no-style thead > tr > th {
- border-bottom: 1px solid #E3EBF3
- }
- table.dataTable.compact tbody td {
- padding: 4px
- }
- table.dataTable.no-footer {
- border-bottom-color: #E6E6E6
- }
- .table-striped tbody tr.even.selected, .table-striped tbody tr.odd.selected, table.dataTable tbody > tr > .selected {
- background-color: #00B5B8;
- color: #FFF
- }
- a.dt-button.red {
- color: red
- }
- a.dt-button.orange {
- color: orange
- }
- a.dt-button.green {
- color: green
- }
- .dataex-css-row tr {
- height: 55px
- }
- .dataex-key-customstyling td.focus {
- outline: #AC1212 solid 1px;
- outline-offset: -3px;
- background-color: #E3EBF3 !important
- }
- .dt-events-log {
- border: 1px solid #888;
- background: #F7F7F7;
- padding: 1em;
- margin-bottom: 1em
- }
- .dataTables_wrapper tfoot input {
- width: 100%;
- box-sizing: border-box
- }
- td.details-control {
- background: url(../images/datatables/resources/details_open.png) center center no-repeat;
- cursor: pointer
- }
- tr.shown td.details-control {
- background: url(../images/datatables/resources/details_close.png) center center no-repeat
- }
- .DTFC_LeftBodyLiner, .DTFC_RightBodyLiner {
- background: #fff
- }
- div.table-responsive > div.dataTables_wrapper > div.row {
- margin: 0
- }
- @media screen and (max-width:600px) {
- div.dataTables_wrapper div.dataTables_paginate ul.pagination {
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- -ms-flex-pack: center;
- justify-content: center
- }
- }
- @media screen and (max-width:1200px) and (min-width:768px) {
- div.dataTables_wrapper div.row:last-child {
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- -ms-flex-pack: justify;
- justify-content: space-between
- }
- div.dataTables_wrapper div.dataTables_paginate {
- float: right
- }
- div.dataTables_wrapper div.dataTables_paginate ul.pagination {
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- -ms-flex-pack: center;
- justify-content: center
- }
- }
- @media screen and (max-width:767px) {
- div.dataTables_wrapper div.dataTables_filter#users-contacts_filter {
- text-align: right
- }
- div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_paginate {
- display: block;
- text-align: center
- }
- div.dataTables_wrapper div.dataTables_info ul.pagination, div.dataTables_wrapper div.dataTables_paginate ul.pagination {
- -webkit-box-pack: center !important;
- -webkit-justify-content: center !important;
- -ms-flex-pack: center !important;
- justify-content: center !important
- }
- }
- @media (max-width:991.98px) {
- .dataTables_wrapper table {
- display: block;
- width: 100%;
- min-height: .01%;
- overflow-x: auto
- }
- }
|