mdb.css 311 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773
  1. @charset "UTF-8";
  2. /*!
  3. * Material Design for Bootstrap 4
  4. * Version: MDB FREE 4.8.2
  5. *
  6. *
  7. * Copyright: Material Design for Bootstrap
  8. * https://mdbootstrap.com/
  9. *
  10. * Read the license: https://mdbootstrap.com/general/license/
  11. *
  12. *
  13. * Documentation: https://mdbootstrap.com/
  14. *
  15. * Getting started: https://mdbootstrap.com/docs/jquery/getting-started/download/
  16. *
  17. * Tutorials: https://mdbootstrap.com/education/bootstrap/
  18. *
  19. * Templates: https://mdbootstrap.com/templates/
  20. *
  21. * Support: https://mdbootstrap.com/support/
  22. *
  23. * Contact: office@mdbootstrap.com
  24. *
  25. * Attribution: Animate CSS, Twitter Bootstrap, Materialize CSS, Normalize CSS, Waves JS, WOW JS, Toastr, Chart.js
  26. *
  27. */
  28. /*** Global ***/
  29. .mdb-color.lighten-5 {
  30. background-color: #d0d6e2 !important; }
  31. .mdb-color.lighten-4 {
  32. background-color: #b1bace !important; }
  33. .mdb-color.lighten-3 {
  34. background-color: #929fba !important; }
  35. .mdb-color.lighten-2 {
  36. background-color: #7283a7 !important; }
  37. .mdb-color.lighten-1 {
  38. background-color: #59698d !important; }
  39. .mdb-color {
  40. background-color: #45526e !important; }
  41. .mdb-color-text {
  42. color: #45526e !important; }
  43. .rgba-mdb-color-slight,
  44. .rgba-mdb-color-slight:after {
  45. background-color: rgba(69, 82, 110, 0.1); }
  46. .rgba-mdb-color-light,
  47. .rgba-mdb-color-light:after {
  48. background-color: rgba(69, 82, 110, 0.3); }
  49. .rgba-mdb-color-strong,
  50. .rgba-mdb-color-strong:after {
  51. background-color: rgba(69, 82, 110, 0.7); }
  52. .mdb-color.darken-1 {
  53. background-color: #3b465e !important; }
  54. .mdb-color.darken-2 {
  55. background-color: #2e3951 !important; }
  56. .mdb-color.darken-3 {
  57. background-color: #1c2a48 !important; }
  58. .mdb-color.darken-4 {
  59. background-color: #1c2331 !important; }
  60. .red.lighten-5 {
  61. background-color: #ffebee !important; }
  62. .red.lighten-4 {
  63. background-color: #ffcdd2 !important; }
  64. .red.lighten-3 {
  65. background-color: #ef9a9a !important; }
  66. .red.lighten-2 {
  67. background-color: #e57373 !important; }
  68. .red.lighten-1 {
  69. background-color: #ef5350 !important; }
  70. .red {
  71. background-color: #f44336 !important; }
  72. .red-text {
  73. color: #f44336 !important; }
  74. .rgba-red-slight,
  75. .rgba-red-slight:after {
  76. background-color: rgba(244, 67, 54, 0.1); }
  77. .rgba-red-light,
  78. .rgba-red-light:after {
  79. background-color: rgba(244, 67, 54, 0.3); }
  80. .rgba-red-strong,
  81. .rgba-red-strong:after {
  82. background-color: rgba(244, 67, 54, 0.7); }
  83. .red.darken-1 {
  84. background-color: #e53935 !important; }
  85. .red.darken-2 {
  86. background-color: #d32f2f !important; }
  87. .red.darken-3 {
  88. background-color: #c62828 !important; }
  89. .red.darken-4 {
  90. background-color: #b71c1c !important; }
  91. .red.accent-1 {
  92. background-color: #ff8a80 !important; }
  93. .red.accent-2 {
  94. background-color: #ff5252 !important; }
  95. .red.accent-3 {
  96. background-color: #ff1744 !important; }
  97. .red.accent-4 {
  98. background-color: #d50000 !important; }
  99. .pink.lighten-5 {
  100. background-color: #fce4ec !important; }
  101. .pink.lighten-4 {
  102. background-color: #f8bbd0 !important; }
  103. .pink.lighten-3 {
  104. background-color: #f48fb1 !important; }
  105. .pink.lighten-2 {
  106. background-color: #f06292 !important; }
  107. .pink.lighten-1 {
  108. background-color: #ec407a !important; }
  109. .pink {
  110. background-color: #e91e63 !important; }
  111. .pink-text {
  112. color: #e91e63 !important; }
  113. .rgba-pink-slight,
  114. .rgba-pink-slight:after {
  115. background-color: rgba(233, 30, 99, 0.1); }
  116. .rgba-pink-light,
  117. .rgba-pink-light:after {
  118. background-color: rgba(233, 30, 99, 0.3); }
  119. .rgba-pink-strong,
  120. .rgba-pink-strong:after {
  121. background-color: rgba(233, 30, 99, 0.7); }
  122. .pink.darken-1 {
  123. background-color: #d81b60 !important; }
  124. .pink.darken-2 {
  125. background-color: #c2185b !important; }
  126. .pink.darken-3 {
  127. background-color: #ad1457 !important; }
  128. .pink.darken-4 {
  129. background-color: #880e4f !important; }
  130. .pink.accent-1 {
  131. background-color: #ff80ab !important; }
  132. .pink.accent-2 {
  133. background-color: #ff4081 !important; }
  134. .pink.accent-3 {
  135. background-color: #f50057 !important; }
  136. .pink.accent-4 {
  137. background-color: #c51162 !important; }
  138. .purple.lighten-5 {
  139. background-color: #f3e5f5 !important; }
  140. .purple.lighten-4 {
  141. background-color: #e1bee7 !important; }
  142. .purple.lighten-3 {
  143. background-color: #ce93d8 !important; }
  144. .purple.lighten-2 {
  145. background-color: #ba68c8 !important; }
  146. .purple.lighten-1 {
  147. background-color: #ab47bc !important; }
  148. .purple {
  149. background-color: #9c27b0 !important; }
  150. .purple-text {
  151. color: #9c27b0 !important; }
  152. .rgba-purple-slight,
  153. .rgba-purple-slight:after {
  154. background-color: rgba(156, 39, 176, 0.1); }
  155. .rgba-purple-light,
  156. .rgba-purple-light:after {
  157. background-color: rgba(156, 39, 176, 0.3); }
  158. .rgba-purple-strong,
  159. .rgba-purple-strong:after {
  160. background-color: rgba(156, 39, 176, 0.7); }
  161. .purple.darken-1 {
  162. background-color: #8e24aa !important; }
  163. .purple.darken-2 {
  164. background-color: #7b1fa2 !important; }
  165. .purple.darken-3 {
  166. background-color: #6a1b9a !important; }
  167. .purple.darken-4 {
  168. background-color: #4a148c !important; }
  169. .purple.accent-1 {
  170. background-color: #ea80fc !important; }
  171. .purple.accent-2 {
  172. background-color: #e040fb !important; }
  173. .purple.accent-3 {
  174. background-color: #d500f9 !important; }
  175. .purple.accent-4 {
  176. background-color: #aa00ff !important; }
  177. .deep-purple.lighten-5 {
  178. background-color: #ede7f6 !important; }
  179. .deep-purple.lighten-4 {
  180. background-color: #d1c4e9 !important; }
  181. .deep-purple.lighten-3 {
  182. background-color: #b39ddb !important; }
  183. .deep-purple.lighten-2 {
  184. background-color: #9575cd !important; }
  185. .deep-purple.lighten-1 {
  186. background-color: #7e57c2 !important; }
  187. .deep-purple {
  188. background-color: #673ab7 !important; }
  189. .deep-purple-text {
  190. color: #673ab7 !important; }
  191. .rgba-deep-purple-slight,
  192. .rgba-deep-purple-slight:after {
  193. background-color: rgba(103, 58, 183, 0.1); }
  194. .rgba-deep-purple-light,
  195. .rgba-deep-purple-light:after {
  196. background-color: rgba(103, 58, 183, 0.3); }
  197. .rgba-deep-purple-strong,
  198. .rgba-deep-purple-strong:after {
  199. background-color: rgba(103, 58, 183, 0.7); }
  200. .deep-purple.darken-1 {
  201. background-color: #5e35b1 !important; }
  202. .deep-purple.darken-2 {
  203. background-color: #512da8 !important; }
  204. .deep-purple.darken-3 {
  205. background-color: #4527a0 !important; }
  206. .deep-purple.darken-4 {
  207. background-color: #311b92 !important; }
  208. .deep-purple.accent-1 {
  209. background-color: #b388ff !important; }
  210. .deep-purple.accent-2 {
  211. background-color: #7c4dff !important; }
  212. .deep-purple.accent-3 {
  213. background-color: #651fff !important; }
  214. .deep-purple.accent-4 {
  215. background-color: #6200ea !important; }
  216. .indigo.lighten-5 {
  217. background-color: #e8eaf6 !important; }
  218. .indigo.lighten-4 {
  219. background-color: #c5cae9 !important; }
  220. .indigo.lighten-3 {
  221. background-color: #9fa8da !important; }
  222. .indigo.lighten-2 {
  223. background-color: #7986cb !important; }
  224. .indigo.lighten-1 {
  225. background-color: #5c6bc0 !important; }
  226. .indigo {
  227. background-color: #3f51b5 !important; }
  228. .indigo-text {
  229. color: #3f51b5 !important; }
  230. .rgba-indigo-slight,
  231. .rgba-indigo-slight:after {
  232. background-color: rgba(63, 81, 181, 0.1); }
  233. .rgba-indigo-light,
  234. .rgba-indigo-light:after {
  235. background-color: rgba(63, 81, 181, 0.3); }
  236. .rgba-indigo-strong,
  237. .rgba-indigo-strong:after {
  238. background-color: rgba(63, 81, 181, 0.7); }
  239. .indigo.darken-1 {
  240. background-color: #3949ab !important; }
  241. .indigo.darken-2 {
  242. background-color: #303f9f !important; }
  243. .indigo.darken-3 {
  244. background-color: #283593 !important; }
  245. .indigo.darken-4 {
  246. background-color: #1a237e !important; }
  247. .indigo.accent-1 {
  248. background-color: #8c9eff !important; }
  249. .indigo.accent-2 {
  250. background-color: #536dfe !important; }
  251. .indigo.accent-3 {
  252. background-color: #3d5afe !important; }
  253. .indigo.accent-4 {
  254. background-color: #304ffe !important; }
  255. .blue.lighten-5 {
  256. background-color: #e3f2fd !important; }
  257. .blue.lighten-4 {
  258. background-color: #bbdefb !important; }
  259. .blue.lighten-3 {
  260. background-color: #90caf9 !important; }
  261. .blue.lighten-2 {
  262. background-color: #64b5f6 !important; }
  263. .blue.lighten-1 {
  264. background-color: #42a5f5 !important; }
  265. .blue {
  266. background-color: #2196f3 !important; }
  267. .blue-text {
  268. color: #2196f3 !important; }
  269. .rgba-blue-slight,
  270. .rgba-blue-slight:after {
  271. background-color: rgba(33, 150, 243, 0.1); }
  272. .rgba-blue-light,
  273. .rgba-blue-light:after {
  274. background-color: rgba(33, 150, 243, 0.3); }
  275. .rgba-blue-strong,
  276. .rgba-blue-strong:after {
  277. background-color: rgba(33, 150, 243, 0.7); }
  278. .blue.darken-1 {
  279. background-color: #1e88e5 !important; }
  280. .blue.darken-2 {
  281. background-color: #1976d2 !important; }
  282. .blue.darken-3 {
  283. background-color: #1565c0 !important; }
  284. .blue.darken-4 {
  285. background-color: #0d47a1 !important; }
  286. .blue.accent-1 {
  287. background-color: #82b1ff !important; }
  288. .blue.accent-2 {
  289. background-color: #448aff !important; }
  290. .blue.accent-3 {
  291. background-color: #2979ff !important; }
  292. .blue.accent-4 {
  293. background-color: #2962ff !important; }
  294. .light-blue.lighten-5 {
  295. background-color: #e1f5fe !important; }
  296. .light-blue.lighten-4 {
  297. background-color: #b3e5fc !important; }
  298. .light-blue.lighten-3 {
  299. background-color: #81d4fa !important; }
  300. .light-blue.lighten-2 {
  301. background-color: #4fc3f7 !important; }
  302. .light-blue.lighten-1 {
  303. background-color: #29b6f6 !important; }
  304. .light-blue {
  305. background-color: #03a9f4 !important; }
  306. .light-blue-text {
  307. color: #03a9f4 !important; }
  308. .rgba-light-blue-slight,
  309. .rgba-light-blue-slight:after {
  310. background-color: rgba(3, 169, 244, 0.1); }
  311. .rgba-light-blue-light,
  312. .rgba-light-blue-light:after {
  313. background-color: rgba(3, 169, 244, 0.3); }
  314. .rgba-light-blue-strong,
  315. .rgba-light-blue-strong:after {
  316. background-color: rgba(3, 169, 244, 0.7); }
  317. .light-blue.darken-1 {
  318. background-color: #039be5 !important; }
  319. .light-blue.darken-2 {
  320. background-color: #0288d1 !important; }
  321. .light-blue.darken-3 {
  322. background-color: #0277bd !important; }
  323. .light-blue.darken-4 {
  324. background-color: #01579b !important; }
  325. .light-blue.accent-1 {
  326. background-color: #80d8ff !important; }
  327. .light-blue.accent-2 {
  328. background-color: #40c4ff !important; }
  329. .light-blue.accent-3 {
  330. background-color: #00b0ff !important; }
  331. .light-blue.accent-4 {
  332. background-color: #0091ea !important; }
  333. .cyan.lighten-5 {
  334. background-color: #e0f7fa !important; }
  335. .cyan.lighten-4 {
  336. background-color: #b2ebf2 !important; }
  337. .cyan.lighten-3 {
  338. background-color: #80deea !important; }
  339. .cyan.lighten-2 {
  340. background-color: #4dd0e1 !important; }
  341. .cyan.lighten-1 {
  342. background-color: #26c6da !important; }
  343. .cyan {
  344. background-color: #00bcd4 !important; }
  345. .cyan-text {
  346. color: #00bcd4 !important; }
  347. .rgba-cyan-slight,
  348. .rgba-cyan-slight:after {
  349. background-color: rgba(0, 188, 212, 0.1); }
  350. .rgba-cyan-light,
  351. .rgba-cyan-light:after {
  352. background-color: rgba(0, 188, 212, 0.3); }
  353. .rgba-cyan-strong,
  354. .rgba-cyan-strong:after {
  355. background-color: rgba(0, 188, 212, 0.7); }
  356. .cyan.darken-1 {
  357. background-color: #00acc1 !important; }
  358. .cyan.darken-2 {
  359. background-color: #0097a7 !important; }
  360. .cyan.darken-3 {
  361. background-color: #00838f !important; }
  362. .cyan.darken-4 {
  363. background-color: #006064 !important; }
  364. .cyan.accent-1 {
  365. background-color: #84ffff !important; }
  366. .cyan.accent-2 {
  367. background-color: #18ffff !important; }
  368. .cyan.accent-3 {
  369. background-color: #00e5ff !important; }
  370. .cyan.accent-4 {
  371. background-color: #00b8d4 !important; }
  372. .teal.lighten-5 {
  373. background-color: #e0f2f1 !important; }
  374. .teal.lighten-4 {
  375. background-color: #b2dfdb !important; }
  376. .teal.lighten-3 {
  377. background-color: #80cbc4 !important; }
  378. .teal.lighten-2 {
  379. background-color: #4db6ac !important; }
  380. .teal.lighten-1 {
  381. background-color: #26a69a !important; }
  382. .teal {
  383. background-color: #009688 !important; }
  384. .teal-text {
  385. color: #009688 !important; }
  386. .rgba-teal-slight,
  387. .rgba-teal-slight:after {
  388. background-color: rgba(0, 150, 136, 0.1); }
  389. .rgba-teal-light,
  390. .rgba-teal-light:after {
  391. background-color: rgba(0, 150, 136, 0.3); }
  392. .rgba-teal-strong,
  393. .rgba-teal-strong:after {
  394. background-color: rgba(0, 150, 136, 0.7); }
  395. .teal.darken-1 {
  396. background-color: #00897b !important; }
  397. .teal.darken-2 {
  398. background-color: #00796b !important; }
  399. .teal.darken-3 {
  400. background-color: #00695c !important; }
  401. .teal.darken-4 {
  402. background-color: #004d40 !important; }
  403. .teal.accent-1 {
  404. background-color: #a7ffeb !important; }
  405. .teal.accent-2 {
  406. background-color: #64ffda !important; }
  407. .teal.accent-3 {
  408. background-color: #1de9b6 !important; }
  409. .teal.accent-4 {
  410. background-color: #00bfa5 !important; }
  411. .green.lighten-5 {
  412. background-color: #e8f5e9 !important; }
  413. .green.lighten-4 {
  414. background-color: #c8e6c9 !important; }
  415. .green.lighten-3 {
  416. background-color: #a5d6a7 !important; }
  417. .green.lighten-2 {
  418. background-color: #81c784 !important; }
  419. .green.lighten-1 {
  420. background-color: #66bb6a !important; }
  421. .green {
  422. background-color: #4caf50 !important; }
  423. .green-text {
  424. color: #4caf50 !important; }
  425. .rgba-green-slight,
  426. .rgba-green-slight:after {
  427. background-color: rgba(76, 175, 80, 0.1); }
  428. .rgba-green-light,
  429. .rgba-green-light:after {
  430. background-color: rgba(76, 175, 80, 0.3); }
  431. .rgba-green-strong,
  432. .rgba-green-strong:after {
  433. background-color: rgba(76, 175, 80, 0.7); }
  434. .green.darken-1 {
  435. background-color: #43a047 !important; }
  436. .green.darken-2 {
  437. background-color: #388e3c !important; }
  438. .green.darken-3 {
  439. background-color: #2e7d32 !important; }
  440. .green.darken-4 {
  441. background-color: #1b5e20 !important; }
  442. .green.accent-1 {
  443. background-color: #b9f6ca !important; }
  444. .green.accent-2 {
  445. background-color: #69f0ae !important; }
  446. .green.accent-3 {
  447. background-color: #00e676 !important; }
  448. .green.accent-4 {
  449. background-color: #00c853 !important; }
  450. .light-green.lighten-5 {
  451. background-color: #f1f8e9 !important; }
  452. .light-green.lighten-4 {
  453. background-color: #dcedc8 !important; }
  454. .light-green.lighten-3 {
  455. background-color: #c5e1a5 !important; }
  456. .light-green.lighten-2 {
  457. background-color: #aed581 !important; }
  458. .light-green.lighten-1 {
  459. background-color: #9ccc65 !important; }
  460. .light-green {
  461. background-color: #8bc34a !important; }
  462. .light-green-text {
  463. color: #8bc34a !important; }
  464. .rgba-light-green-slight,
  465. .rgba-light-green-slight:after {
  466. background-color: rgba(139, 195, 74, 0.1); }
  467. .rgba-light-green-light,
  468. .rgba-light-green-light:after {
  469. background-color: rgba(139, 195, 74, 0.3); }
  470. .rgba-light-green-strong,
  471. .rgba-light-green-strong:after {
  472. background-color: rgba(139, 195, 74, 0.7); }
  473. .light-green.darken-1 {
  474. background-color: #7cb342 !important; }
  475. .light-green.darken-2 {
  476. background-color: #689f38 !important; }
  477. .light-green.darken-3 {
  478. background-color: #558b2f !important; }
  479. .light-green.darken-4 {
  480. background-color: #33691e !important; }
  481. .light-green.accent-1 {
  482. background-color: #ccff90 !important; }
  483. .light-green.accent-2 {
  484. background-color: #b2ff59 !important; }
  485. .light-green.accent-3 {
  486. background-color: #76ff03 !important; }
  487. .light-green.accent-4 {
  488. background-color: #64dd17 !important; }
  489. .lime.lighten-5 {
  490. background-color: #f9fbe7 !important; }
  491. .lime.lighten-4 {
  492. background-color: #f0f4c3 !important; }
  493. .lime.lighten-3 {
  494. background-color: #e6ee9c !important; }
  495. .lime.lighten-2 {
  496. background-color: #dce775 !important; }
  497. .lime.lighten-1 {
  498. background-color: #d4e157 !important; }
  499. .lime {
  500. background-color: #cddc39 !important; }
  501. .lime-text {
  502. color: #cddc39 !important; }
  503. .rgba-lime-slight,
  504. .rgba-lime-slight:after {
  505. background-color: rgba(205, 220, 57, 0.1); }
  506. .rgba-lime-light,
  507. .rgba-lime-light:after {
  508. background-color: rgba(205, 220, 57, 0.3); }
  509. .rgba-lime-strong,
  510. .rgba-lime-strong:after {
  511. background-color: rgba(205, 220, 57, 0.7); }
  512. .lime.darken-1 {
  513. background-color: #c0ca33 !important; }
  514. .lime.darken-2 {
  515. background-color: #afb42b !important; }
  516. .lime.darken-3 {
  517. background-color: #9e9d24 !important; }
  518. .lime.darken-4 {
  519. background-color: #827717 !important; }
  520. .lime.accent-1 {
  521. background-color: #f4ff81 !important; }
  522. .lime.accent-2 {
  523. background-color: #eeff41 !important; }
  524. .lime.accent-3 {
  525. background-color: #c6ff00 !important; }
  526. .lime.accent-4 {
  527. background-color: #aeea00 !important; }
  528. .yellow.lighten-5 {
  529. background-color: #fffde7 !important; }
  530. .yellow.lighten-4 {
  531. background-color: #fff9c4 !important; }
  532. .yellow.lighten-3 {
  533. background-color: #fff59d !important; }
  534. .yellow.lighten-2 {
  535. background-color: #fff176 !important; }
  536. .yellow.lighten-1 {
  537. background-color: #ffee58 !important; }
  538. .yellow {
  539. background-color: #ffeb3b !important; }
  540. .yellow-text {
  541. color: #ffeb3b !important; }
  542. .rgba-yellow-slight,
  543. .rgba-yellow-slight:after {
  544. background-color: rgba(255, 235, 59, 0.1); }
  545. .rgba-yellow-light,
  546. .rgba-yellow-light:after {
  547. background-color: rgba(255, 235, 59, 0.3); }
  548. .rgba-yellow-strong,
  549. .rgba-yellow-strong:after {
  550. background-color: rgba(255, 235, 59, 0.7); }
  551. .yellow.darken-1 {
  552. background-color: #fdd835 !important; }
  553. .yellow.darken-2 {
  554. background-color: #fbc02d !important; }
  555. .yellow.darken-3 {
  556. background-color: #f9a825 !important; }
  557. .yellow.darken-4 {
  558. background-color: #f57f17 !important; }
  559. .yellow.accent-1 {
  560. background-color: #ffff8d !important; }
  561. .yellow.accent-2 {
  562. background-color: #ffff00 !important; }
  563. .yellow.accent-3 {
  564. background-color: #ffea00 !important; }
  565. .yellow.accent-4 {
  566. background-color: #ffd600 !important; }
  567. .amber.lighten-5 {
  568. background-color: #fff8e1 !important; }
  569. .amber.lighten-4 {
  570. background-color: #ffecb3 !important; }
  571. .amber.lighten-3 {
  572. background-color: #ffe082 !important; }
  573. .amber.lighten-2 {
  574. background-color: #ffd54f !important; }
  575. .amber.lighten-1 {
  576. background-color: #ffca28 !important; }
  577. .amber {
  578. background-color: #ffc107 !important; }
  579. .amber-text {
  580. color: #ffc107 !important; }
  581. .rgba-amber-slight,
  582. .rgba-amber-slight:after {
  583. background-color: rgba(255, 193, 7, 0.1); }
  584. .rgba-amber-light,
  585. .rgba-amber-light:after {
  586. background-color: rgba(255, 193, 7, 0.3); }
  587. .rgba-amber-strong,
  588. .rgba-amber-strong:after {
  589. background-color: rgba(255, 193, 7, 0.7); }
  590. .amber.darken-1 {
  591. background-color: #ffb300 !important; }
  592. .amber.darken-2 {
  593. background-color: #ffa000 !important; }
  594. .amber.darken-3 {
  595. background-color: #ff8f00 !important; }
  596. .amber.darken-4 {
  597. background-color: #ff6f00 !important; }
  598. .amber.accent-1 {
  599. background-color: #ffe57f !important; }
  600. .amber.accent-2 {
  601. background-color: #ffd740 !important; }
  602. .amber.accent-3 {
  603. background-color: #ffc400 !important; }
  604. .amber.accent-4 {
  605. background-color: #ffab00 !important; }
  606. .orange.lighten-5 {
  607. background-color: #fff3e0 !important; }
  608. .orange.lighten-4 {
  609. background-color: #ffe0b2 !important; }
  610. .orange.lighten-3 {
  611. background-color: #ffcc80 !important; }
  612. .orange.lighten-2 {
  613. background-color: #ffb74d !important; }
  614. .orange.lighten-1 {
  615. background-color: #ffa726 !important; }
  616. .orange {
  617. background-color: #ff9800 !important; }
  618. .orange-text {
  619. color: #ff9800 !important; }
  620. .rgba-orange-slight,
  621. .rgba-orange-slight:after {
  622. background-color: rgba(255, 152, 0, 0.1); }
  623. .rgba-orange-light,
  624. .rgba-orange-light:after {
  625. background-color: rgba(255, 152, 0, 0.3); }
  626. .rgba-orange-strong,
  627. .rgba-orange-strong:after {
  628. background-color: rgba(255, 152, 0, 0.7); }
  629. .orange.darken-1 {
  630. background-color: #fb8c00 !important; }
  631. .orange.darken-2 {
  632. background-color: #f57c00 !important; }
  633. .orange.darken-3 {
  634. background-color: #ef6c00 !important; }
  635. .orange.darken-4 {
  636. background-color: #e65100 !important; }
  637. .orange.accent-1 {
  638. background-color: #ffd180 !important; }
  639. .orange.accent-2 {
  640. background-color: #ffab40 !important; }
  641. .orange.accent-3 {
  642. background-color: #ff9100 !important; }
  643. .orange.accent-4 {
  644. background-color: #ff6d00 !important; }
  645. .deep-orange.lighten-5 {
  646. background-color: #fbe9e7 !important; }
  647. .deep-orange.lighten-4 {
  648. background-color: #ffccbc !important; }
  649. .deep-orange.lighten-3 {
  650. background-color: #ffab91 !important; }
  651. .deep-orange.lighten-2 {
  652. background-color: #ff8a65 !important; }
  653. .deep-orange.lighten-1 {
  654. background-color: #ff7043 !important; }
  655. .deep-orange {
  656. background-color: #ff5722 !important; }
  657. .deep-orange-text {
  658. color: #ff5722 !important; }
  659. .rgba-deep-orange-slight,
  660. .rgba-deep-orange-slight:after {
  661. background-color: rgba(255, 87, 34, 0.1); }
  662. .rgba-deep-orange-light,
  663. .rgba-deep-orange-light:after {
  664. background-color: rgba(255, 87, 34, 0.3); }
  665. .rgba-deep-orange-strong,
  666. .rgba-deep-orange-strong:after {
  667. background-color: rgba(255, 87, 34, 0.7); }
  668. .deep-orange.darken-1 {
  669. background-color: #f4511e !important; }
  670. .deep-orange.darken-2 {
  671. background-color: #e64a19 !important; }
  672. .deep-orange.darken-3 {
  673. background-color: #d84315 !important; }
  674. .deep-orange.darken-4 {
  675. background-color: #bf360c !important; }
  676. .deep-orange.accent-1 {
  677. background-color: #ff9e80 !important; }
  678. .deep-orange.accent-2 {
  679. background-color: #ff6e40 !important; }
  680. .deep-orange.accent-3 {
  681. background-color: #ff3d00 !important; }
  682. .deep-orange.accent-4 {
  683. background-color: #dd2c00 !important; }
  684. .brown.lighten-5 {
  685. background-color: #efebe9 !important; }
  686. .brown.lighten-4 {
  687. background-color: #d7ccc8 !important; }
  688. .brown.lighten-3 {
  689. background-color: #bcaaa4 !important; }
  690. .brown.lighten-2 {
  691. background-color: #a1887f !important; }
  692. .brown.lighten-1 {
  693. background-color: #8d6e63 !important; }
  694. .brown {
  695. background-color: #795548 !important; }
  696. .brown-text {
  697. color: #795548 !important; }
  698. .rgba-brown-slight,
  699. .rgba-brown-slight:after {
  700. background-color: rgba(121, 85, 72, 0.1); }
  701. .rgba-brown-light,
  702. .rgba-brown-light:after {
  703. background-color: rgba(121, 85, 72, 0.3); }
  704. .rgba-brown-strong,
  705. .rgba-brown-strong:after {
  706. background-color: rgba(121, 85, 72, 0.7); }
  707. .brown.darken-1 {
  708. background-color: #6d4c41 !important; }
  709. .brown.darken-2 {
  710. background-color: #5d4037 !important; }
  711. .brown.darken-3 {
  712. background-color: #4e342e !important; }
  713. .brown.darken-4 {
  714. background-color: #3e2723 !important; }
  715. .blue-grey.lighten-5 {
  716. background-color: #eceff1 !important; }
  717. .blue-grey.lighten-4 {
  718. background-color: #cfd8dc !important; }
  719. .blue-grey.lighten-3 {
  720. background-color: #b0bec5 !important; }
  721. .blue-grey.lighten-2 {
  722. background-color: #90a4ae !important; }
  723. .blue-grey.lighten-1 {
  724. background-color: #78909c !important; }
  725. .blue-grey {
  726. background-color: #607d8b !important; }
  727. .blue-grey-text {
  728. color: #607d8b !important; }
  729. .rgba-blue-grey-slight,
  730. .rgba-blue-grey-slight:after {
  731. background-color: rgba(96, 125, 139, 0.1); }
  732. .rgba-blue-grey-light,
  733. .rgba-blue-grey-light:after {
  734. background-color: rgba(96, 125, 139, 0.3); }
  735. .rgba-blue-grey-strong,
  736. .rgba-blue-grey-strong:after {
  737. background-color: rgba(96, 125, 139, 0.7); }
  738. .blue-grey.darken-1 {
  739. background-color: #546e7a !important; }
  740. .blue-grey.darken-2 {
  741. background-color: #455a64 !important; }
  742. .blue-grey.darken-3 {
  743. background-color: #37474f !important; }
  744. .blue-grey.darken-4 {
  745. background-color: #263238 !important; }
  746. .grey.lighten-5 {
  747. background-color: #fafafa !important; }
  748. .grey.lighten-4 {
  749. background-color: #f5f5f5 !important; }
  750. .grey.lighten-3 {
  751. background-color: #eeeeee !important; }
  752. .grey.lighten-2 {
  753. background-color: #e0e0e0 !important; }
  754. .grey.lighten-1 {
  755. background-color: #bdbdbd !important; }
  756. .grey {
  757. background-color: #9e9e9e !important; }
  758. .grey-text {
  759. color: #9e9e9e !important; }
  760. .rgba-grey-slight,
  761. .rgba-grey-slight:after {
  762. background-color: rgba(158, 158, 158, 0.1); }
  763. .rgba-grey-light,
  764. .rgba-grey-light:after {
  765. background-color: rgba(158, 158, 158, 0.3); }
  766. .rgba-grey-strong,
  767. .rgba-grey-strong:after {
  768. background-color: rgba(158, 158, 158, 0.7); }
  769. .grey.darken-1 {
  770. background-color: #757575 !important; }
  771. .grey.darken-2 {
  772. background-color: #616161 !important; }
  773. .grey.darken-3 {
  774. background-color: #424242 !important; }
  775. .grey.darken-4 {
  776. background-color: #212121 !important; }
  777. .black {
  778. background-color: #000 !important; }
  779. .black-text, .btn.btn-link {
  780. color: #000 !important; }
  781. .rgba-black-slight,
  782. .rgba-black-slight:after {
  783. background-color: rgba(0, 0, 0, 0.1); }
  784. .rgba-black-light,
  785. .rgba-black-light:after {
  786. background-color: rgba(0, 0, 0, 0.3); }
  787. .rgba-black-strong,
  788. .rgba-black-strong:after {
  789. background-color: rgba(0, 0, 0, 0.7); }
  790. .white {
  791. background-color: #fff !important; }
  792. .white-text {
  793. color: #fff !important; }
  794. .rgba-white-slight,
  795. .rgba-white-slight:after {
  796. background-color: rgba(255, 255, 255, 0.1); }
  797. .rgba-white-light,
  798. .rgba-white-light:after {
  799. background-color: rgba(255, 255, 255, 0.3); }
  800. .rgba-white-strong,
  801. .rgba-white-strong:after {
  802. background-color: rgba(255, 255, 255, 0.7); }
  803. .rgba-stylish-slight {
  804. background-color: rgba(62, 69, 81, 0.1); }
  805. .rgba-stylish-light {
  806. background-color: rgba(62, 69, 81, 0.3); }
  807. .rgba-stylish-strong {
  808. background-color: rgba(62, 69, 81, 0.7); }
  809. .primary-color, ul.stepper li.active a .circle, ul.stepper li.completed a .circle {
  810. background-color: #4285f4 !important; }
  811. .primary-color-dark {
  812. background-color: #0d47a1 !important; }
  813. .secondary-color {
  814. background-color: #aa66cc !important; }
  815. .secondary-color-dark {
  816. background-color: #9933cc !important; }
  817. .default-color {
  818. background-color: #2bbbad !important; }
  819. .default-color-dark {
  820. background-color: #00695c !important; }
  821. .info-color {
  822. background-color: #33b5e5 !important; }
  823. .info-color-dark {
  824. background-color: #0099cc !important; }
  825. .success-color {
  826. background-color: #00c851 !important; }
  827. .success-color-dark {
  828. background-color: #007e33 !important; }
  829. .warning-color {
  830. background-color: #ffbb33 !important; }
  831. .warning-color-dark {
  832. background-color: #ff8800 !important; }
  833. .danger-color, ul.stepper li.warning a .circle {
  834. background-color: #ff3547 !important; }
  835. .danger-color-dark {
  836. background-color: #cc0000 !important; }
  837. .elegant-color {
  838. background-color: #2e2e2e !important; }
  839. .elegant-color-dark {
  840. background-color: #212121 !important; }
  841. .stylish-color {
  842. background-color: #4b515d !important; }
  843. .stylish-color-dark {
  844. background-color: #3e4551 !important; }
  845. .unique-color {
  846. background-color: #3f729b !important; }
  847. .unique-color-dark {
  848. background-color: #1c2331 !important; }
  849. .special-color {
  850. background-color: #37474f !important; }
  851. .special-color-dark {
  852. background-color: #263238 !important; }
  853. .purple-gradient {
  854. background: -webkit-linear-gradient(50deg, #ff6ec4, #7873f5) !important;
  855. background: -o-linear-gradient(50deg, #ff6ec4, #7873f5) !important;
  856. background: linear-gradient(40deg, #ff6ec4, #7873f5) !important; }
  857. .peach-gradient {
  858. background: -webkit-linear-gradient(50deg, #FFD86F, #FC6262) !important;
  859. background: -o-linear-gradient(50deg, #FFD86F, #FC6262) !important;
  860. background: linear-gradient(40deg, #FFD86F, #FC6262) !important; }
  861. .aqua-gradient {
  862. background: -webkit-linear-gradient(50deg, #2096ff, #05ffa3) !important;
  863. background: -o-linear-gradient(50deg, #2096ff, #05ffa3) !important;
  864. background: linear-gradient(40deg, #2096ff, #05ffa3) !important; }
  865. .blue-gradient {
  866. background: -webkit-linear-gradient(50deg, #45cafc, #303f9f) !important;
  867. background: -o-linear-gradient(50deg, #45cafc, #303f9f) !important;
  868. background: linear-gradient(40deg, #45cafc, #303f9f) !important; }
  869. .purple-gradient-rgba {
  870. background: -webkit-linear-gradient(50deg, rgba(255, 110, 196, 0.9), rgba(120, 115, 245, 0.9)) !important;
  871. background: -o-linear-gradient(50deg, rgba(255, 110, 196, 0.9), rgba(120, 115, 245, 0.9)) !important;
  872. background: linear-gradient(40deg, rgba(255, 110, 196, 0.9), rgba(120, 115, 245, 0.9)) !important; }
  873. .peach-gradient-rgba {
  874. background: -webkit-linear-gradient(50deg, rgba(255, 216, 111, 0.9), rgba(252, 98, 98, 0.9)) !important;
  875. background: -o-linear-gradient(50deg, rgba(255, 216, 111, 0.9), rgba(252, 98, 98, 0.9)) !important;
  876. background: linear-gradient(40deg, rgba(255, 216, 111, 0.9), rgba(252, 98, 98, 0.9)) !important; }
  877. .aqua-gradient-rgba {
  878. background: -webkit-linear-gradient(50deg, rgba(32, 150, 255, 0.9), rgba(5, 255, 163, 0.9)) !important;
  879. background: -o-linear-gradient(50deg, rgba(32, 150, 255, 0.9), rgba(5, 255, 163, 0.9)) !important;
  880. background: linear-gradient(40deg, rgba(32, 150, 255, 0.9), rgba(5, 255, 163, 0.9)) !important; }
  881. .blue-gradient-rgba {
  882. background: -webkit-linear-gradient(50deg, rgba(69, 202, 252, 0.9), rgba(48, 63, 159, 0.9)) !important;
  883. background: -o-linear-gradient(50deg, rgba(69, 202, 252, 0.9), rgba(48, 63, 159, 0.9)) !important;
  884. background: linear-gradient(40deg, rgba(69, 202, 252, 0.9), rgba(48, 63, 159, 0.9)) !important; }
  885. .dark-grey-text {
  886. color: #4f4f4f !important; }
  887. .dark-grey-text:hover, .dark-grey-text:focus {
  888. color: #4f4f4f !important; }
  889. .hoverable {
  890. -webkit-box-shadow: none;
  891. box-shadow: none;
  892. -webkit-transition: all 0.55s ease-in-out;
  893. -o-transition: all 0.55s ease-in-out;
  894. transition: all 0.55s ease-in-out; }
  895. .hoverable:hover {
  896. -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  897. box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  898. -webkit-transition: all 0.55s ease-in-out;
  899. -o-transition: all 0.55s ease-in-out;
  900. transition: all 0.55s ease-in-out; }
  901. .z-depth-0 {
  902. -webkit-box-shadow: none !important;
  903. box-shadow: none !important; }
  904. .z-depth-1 {
  905. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
  906. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important; }
  907. .z-depth-1-half {
  908. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15) !important;
  909. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15) !important; }
  910. .z-depth-2 {
  911. -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
  912. box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important; }
  913. .z-depth-3 {
  914. -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19) !important;
  915. box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19) !important; }
  916. .z-depth-4 {
  917. -webkit-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21) !important;
  918. box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21) !important; }
  919. .z-depth-5 {
  920. -webkit-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22) !important;
  921. box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22) !important; }
  922. .disabled,
  923. :disabled {
  924. pointer-events: none !important; }
  925. a {
  926. cursor: pointer;
  927. text-decoration: none;
  928. color: #007bff;
  929. -webkit-transition: all 0.2s ease-in-out;
  930. -o-transition: all 0.2s ease-in-out;
  931. transition: all 0.2s ease-in-out; }
  932. a:hover {
  933. text-decoration: none;
  934. color: #0056b3;
  935. -webkit-transition: all 0.2s ease-in-out;
  936. -o-transition: all 0.2s ease-in-out;
  937. transition: all 0.2s ease-in-out; }
  938. a.disabled:hover, a:disabled:hover {
  939. color: #007bff; }
  940. a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  941. color: inherit;
  942. text-decoration: none; }
  943. .img-fluid, .modal-dialog.cascading-modal.modal-avatar .modal-header,
  944. .video-fluid {
  945. max-width: 100%;
  946. height: auto; }
  947. .flex-center {
  948. display: -webkit-box;
  949. display: -webkit-flex;
  950. display: -ms-flexbox;
  951. display: flex;
  952. -webkit-box-pack: center;
  953. -webkit-justify-content: center;
  954. -ms-flex-pack: center;
  955. justify-content: center;
  956. -webkit-box-align: center;
  957. -webkit-align-items: center;
  958. -ms-flex-align: center;
  959. align-items: center;
  960. height: 100%; }
  961. .flex-center p {
  962. margin: 0; }
  963. .flex-center ul {
  964. text-align: center; }
  965. .flex-center ul li {
  966. margin-bottom: 1rem; }
  967. .flex-center ul li:last-of-type {
  968. margin-bottom: 0; }
  969. .hr-light {
  970. border-top: 1px solid #fff; }
  971. .hr-dark {
  972. border-top: 1px solid #666; }
  973. .w-responsive {
  974. width: 75%; }
  975. @media (max-width: 740px) {
  976. .w-responsive {
  977. width: 100%; } }
  978. .collapsible-body {
  979. display: none; }
  980. .jumbotron {
  981. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  982. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  983. -webkit-border-radius: 0.125rem;
  984. border-radius: 0.125rem;
  985. background-color: #fff; }
  986. .bg-primary {
  987. background-color: #4285f4 !important; }
  988. a.bg-primary:hover, a.bg-primary:focus,
  989. button.bg-primary:hover,
  990. button.bg-primary:focus {
  991. background-color: #1266f1 !important; }
  992. .border-primary {
  993. border-color: #4285f4 !important; }
  994. .bg-danger {
  995. background-color: #ff3547 !important; }
  996. a.bg-danger:hover, a.bg-danger:focus,
  997. button.bg-danger:hover,
  998. button.bg-danger:focus {
  999. background-color: #ff0219 !important; }
  1000. .border-danger {
  1001. border-color: #ff3547 !important; }
  1002. .bg-warning {
  1003. background-color: #ffbb33 !important; }
  1004. a.bg-warning:hover, a.bg-warning:focus,
  1005. button.bg-warning:hover,
  1006. button.bg-warning:focus {
  1007. background-color: #ffaa00 !important; }
  1008. .border-warning {
  1009. border-color: #ffbb33 !important; }
  1010. .bg-success {
  1011. background-color: #00c851 !important; }
  1012. a.bg-success:hover, a.bg-success:focus,
  1013. button.bg-success:hover,
  1014. button.bg-success:focus {
  1015. background-color: #00953c !important; }
  1016. .border-success {
  1017. border-color: #00c851 !important; }
  1018. .bg-info {
  1019. background-color: #33b5e5 !important; }
  1020. a.bg-info:hover, a.bg-info:focus,
  1021. button.bg-info:hover,
  1022. button.bg-info:focus {
  1023. background-color: #1a9bcb !important; }
  1024. .border-info {
  1025. border-color: #33b5e5 !important; }
  1026. .bg-default {
  1027. background-color: #2bbbad !important; }
  1028. a.bg-default:hover, a.bg-default:focus,
  1029. button.bg-default:hover,
  1030. button.bg-default:focus {
  1031. background-color: #219287 !important; }
  1032. .border-default {
  1033. border-color: #2bbbad !important; }
  1034. .bg-secondary {
  1035. background-color: #aa66cc !important; }
  1036. a.bg-secondary:hover, a.bg-secondary:focus,
  1037. button.bg-secondary:hover,
  1038. button.bg-secondary:focus {
  1039. background-color: #9540bf !important; }
  1040. .border-secondary {
  1041. border-color: #aa66cc !important; }
  1042. .bg-dark {
  1043. background-color: #212121 !important; }
  1044. a.bg-dark:hover, a.bg-dark:focus,
  1045. button.bg-dark:hover,
  1046. button.bg-dark:focus {
  1047. background-color: #080808 !important; }
  1048. .border-dark {
  1049. border-color: #212121 !important; }
  1050. .bg-light {
  1051. background-color: #e0e0e0 !important; }
  1052. a.bg-light:hover, a.bg-light:focus,
  1053. button.bg-light:hover,
  1054. button.bg-light:focus {
  1055. background-color: #c7c7c7 !important; }
  1056. .border-light {
  1057. border-color: #e0e0e0 !important; }
  1058. .card-img-100 {
  1059. width: 100px;
  1060. height: 100px; }
  1061. .card-img-64 {
  1062. width: 64px;
  1063. height: 64px; }
  1064. .mml-1 {
  1065. margin-left: -0.25rem !important; }
  1066. .flex-1 {
  1067. -webkit-box-flex: 1;
  1068. -webkit-flex: 1;
  1069. -ms-flex: 1;
  1070. flex: 1; }
  1071. @font-face {
  1072. font-family: "Roboto";
  1073. src: local(Roboto Thin), url("../font/roboto/Roboto-Thin.eot");
  1074. src: url("../font/roboto/Roboto-Thin.eot?#iefix") format("embedded-opentype"), url("../font/roboto/Roboto-Thin.woff2") format("woff2"), url("../font/roboto/Roboto-Thin.woff") format("woff"), url("../font/roboto/Roboto-Thin.ttf") format("truetype");
  1075. font-weight: 200; }
  1076. @font-face {
  1077. font-family: "Roboto";
  1078. src: local(Roboto Light), url("../font/roboto/Roboto-Light.eot");
  1079. src: url("../font/roboto/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("../font/roboto/Roboto-Light.woff2") format("woff2"), url("../font/roboto/Roboto-Light.woff") format("woff"), url("../font/roboto/Roboto-Light.ttf") format("truetype");
  1080. font-weight: 300; }
  1081. @font-face {
  1082. font-family: "Roboto";
  1083. src: local(Roboto Regular), url("../font/roboto/Roboto-Regular.eot");
  1084. src: url("../font/roboto/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../font/roboto/Roboto-Regular.woff2") format("woff2"), url("../font/roboto/Roboto-Regular.woff") format("woff"), url("../font/roboto/Roboto-Regular.ttf") format("truetype");
  1085. font-weight: 400; }
  1086. @font-face {
  1087. font-family: "Roboto";
  1088. src: url("../font/roboto/Roboto-Medium.eot");
  1089. src: url("../font/roboto/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("../font/roboto/Roboto-Medium.woff2") format("woff2"), url("../font/roboto/Roboto-Medium.woff") format("woff"), url("../font/roboto/Roboto-Medium.ttf") format("truetype");
  1090. font-weight: 500; }
  1091. @font-face {
  1092. font-family: "Roboto";
  1093. src: url("../font/roboto/Roboto-Bold.eot");
  1094. src: url("../font/roboto/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../font/roboto/Roboto-Bold.woff2") format("woff2"), url("../font/roboto/Roboto-Bold.woff") format("woff"), url("../font/roboto/Roboto-Bold.ttf") format("truetype");
  1095. font-weight: 700; }
  1096. body {
  1097. font-family: "Roboto", sans-serif;
  1098. font-weight: 300; }
  1099. h1, h2, h3, h4, h5, h6 {
  1100. font-weight: 300; }
  1101. .h1-responsive {
  1102. font-size: 150%; }
  1103. .h2-responsive {
  1104. font-size: 145%; }
  1105. .h3-responsive {
  1106. font-size: 135%; }
  1107. .h4-responsive {
  1108. font-size: 135%; }
  1109. .h5-responsive {
  1110. font-size: 135%; }
  1111. @media (min-width: 576px) {
  1112. .h1-responsive {
  1113. font-size: 170%; }
  1114. .h2-responsive {
  1115. font-size: 140%; }
  1116. .h3-responsive {
  1117. font-size: 125%; }
  1118. .h4-responsive {
  1119. font-size: 125%; }
  1120. .h5-responsive {
  1121. font-size: 125%; } }
  1122. @media (min-width: 768px) {
  1123. .h1-responsive {
  1124. font-size: 200%; }
  1125. .h2-responsive {
  1126. font-size: 170%; }
  1127. .h3-responsive {
  1128. font-size: 140%; }
  1129. .h4-responsive {
  1130. font-size: 125%; }
  1131. .h5-responsive {
  1132. font-size: 125%; } }
  1133. @media (min-width: 992px) {
  1134. .h1-responsive {
  1135. font-size: 200%; }
  1136. .h2-responsive {
  1137. font-size: 170%; }
  1138. .h3-responsive {
  1139. font-size: 140%; }
  1140. .h4-responsive {
  1141. font-size: 125%; }
  1142. .h5-responsive {
  1143. font-size: 125%; } }
  1144. @media (min-width: 1200px) {
  1145. .h1-responsive {
  1146. font-size: 250%; }
  1147. .h2-responsive {
  1148. font-size: 200%; }
  1149. .h3-responsive {
  1150. font-size: 170%; }
  1151. .h4-responsive {
  1152. font-size: 140%; }
  1153. .h5-responsive {
  1154. font-size: 125%; } }
  1155. .divider-new {
  1156. -webkit-box-orient: horizontal;
  1157. -webkit-box-direction: normal;
  1158. -webkit-flex-direction: row;
  1159. -ms-flex-direction: row;
  1160. flex-direction: row;
  1161. -webkit-box-pack: center;
  1162. -webkit-justify-content: center;
  1163. -ms-flex-pack: center;
  1164. justify-content: center;
  1165. -webkit-box-align: center;
  1166. -webkit-align-items: center;
  1167. -ms-flex-align: center;
  1168. align-items: center;
  1169. display: -webkit-box;
  1170. display: -webkit-flex;
  1171. display: -ms-flexbox;
  1172. display: flex;
  1173. margin-top: 2.8rem;
  1174. margin-bottom: 2.8rem; }
  1175. .divider-new > h1, .divider-new h2, .divider-new h3, .divider-new h4, .divider-new h5, .divider-new h6 {
  1176. margin-bottom: 0; }
  1177. .divider-new:before, .divider-new:after {
  1178. content: "";
  1179. height: 1.5px;
  1180. -webkit-box-flex: 1;
  1181. -webkit-flex: 1;
  1182. -ms-flex: 1;
  1183. flex: 1;
  1184. height: 2px;
  1185. background: #c6c6c6; }
  1186. .divider-new:before {
  1187. margin: 0 0.5rem 0 0; }
  1188. .divider-new:after {
  1189. margin: 0 0 0 0.5rem; }
  1190. .blockquote {
  1191. padding: 0.5rem 1rem;
  1192. border-left: .25rem solid #eceeef; }
  1193. .blockquote.text-right {
  1194. border-left: none;
  1195. border-right: .25rem solid #eceeef; }
  1196. .blockquote .bq-title {
  1197. margin-bottom: 0;
  1198. font-size: 1.5rem;
  1199. font-weight: 400; }
  1200. .blockquote p {
  1201. padding: 1rem 0;
  1202. font-size: 1.1rem; }
  1203. .bq-primary {
  1204. border-left: 3px solid #4285f4 !important; }
  1205. .bq-primary .bq-title {
  1206. color: #4285f4 !important; }
  1207. .bq-danger {
  1208. border-left: 3px solid #ff3547 !important; }
  1209. .bq-danger .bq-title {
  1210. color: #ff3547 !important; }
  1211. .bq-warning {
  1212. border-left: 3px solid #ffbb33 !important; }
  1213. .bq-warning .bq-title {
  1214. color: #ffbb33 !important; }
  1215. .bq-success {
  1216. border-left: 3px solid #00c851 !important; }
  1217. .bq-success .bq-title {
  1218. color: #00c851 !important; }
  1219. .bq-info {
  1220. border-left: 3px solid #33b5e5 !important; }
  1221. .bq-info .bq-title {
  1222. color: #33b5e5 !important; }
  1223. .text-primary {
  1224. color: #4285f4 !important; }
  1225. a.text-primary:hover, a.text-primary:focus {
  1226. color: #1266f1 !important; }
  1227. .text-danger {
  1228. color: #ff3547 !important; }
  1229. a.text-danger:hover, a.text-danger:focus {
  1230. color: #ff0219 !important; }
  1231. .text-warning {
  1232. color: #ffbb33 !important; }
  1233. a.text-warning:hover, a.text-warning:focus {
  1234. color: #ffaa00 !important; }
  1235. .text-success {
  1236. color: #00c851 !important; }
  1237. a.text-success:hover, a.text-success:focus {
  1238. color: #00953c !important; }
  1239. .text-info {
  1240. color: #33b5e5 !important; }
  1241. a.text-info:hover, a.text-info:focus {
  1242. color: #1a9bcb !important; }
  1243. .text-default {
  1244. color: #2bbbad !important; }
  1245. a.text-default:hover, a.text-default:focus {
  1246. color: #219287 !important; }
  1247. .text-secondary {
  1248. color: #aa66cc !important; }
  1249. a.text-secondary:hover, a.text-secondary:focus {
  1250. color: #9540bf !important; }
  1251. .text-dark {
  1252. color: #212121 !important; }
  1253. a.text-dark:hover, a.text-dark:focus {
  1254. color: #080808 !important; }
  1255. .text-light {
  1256. color: #e0e0e0 !important; }
  1257. a.text-light:hover, a.text-light:focus {
  1258. color: #c7c7c7 !important; }
  1259. .font-small {
  1260. font-size: 0.9rem; }
  1261. .view {
  1262. position: relative;
  1263. overflow: hidden;
  1264. cursor: default; }
  1265. .view .mask {
  1266. position: absolute;
  1267. top: 0;
  1268. left: 0;
  1269. right: 0;
  1270. bottom: 0;
  1271. overflow: hidden;
  1272. width: 100%;
  1273. height: 100%;
  1274. background-attachment: fixed; }
  1275. .view img, .view video {
  1276. position: relative;
  1277. display: block; }
  1278. .view video.video-intro {
  1279. z-index: -100;
  1280. top: 50%;
  1281. left: 50%;
  1282. -webkit-transform: translateX(-50%) translateY(-50%);
  1283. -ms-transform: translateX(-50%) translateY(-50%);
  1284. transform: translateX(-50%) translateY(-50%);
  1285. -webkit-transition: 1s opacity;
  1286. -o-transition: 1s opacity;
  1287. transition: 1s opacity;
  1288. min-width: 100%;
  1289. min-height: 100%;
  1290. width: auto;
  1291. height: auto; }
  1292. .overlay .mask {
  1293. opacity: 0;
  1294. -webkit-transition: all 0.4s ease-in-out;
  1295. -o-transition: all 0.4s ease-in-out;
  1296. transition: all 0.4s ease-in-out; }
  1297. .overlay .mask:hover {
  1298. opacity: 1; }
  1299. .zoom img, .zoom video {
  1300. -webkit-transition: all 0.2s linear;
  1301. -o-transition: all 0.2s linear;
  1302. transition: all 0.2s linear; }
  1303. .zoom:hover img, .zoom:hover video {
  1304. -webkit-transform: scale(1.1);
  1305. -ms-transform: scale(1.1);
  1306. transform: scale(1.1); }
  1307. .pattern-1 {
  1308. background: url("../img/overlays/01.png");
  1309. background-attachment: fixed; }
  1310. .pattern-2 {
  1311. background: url("../img/overlays/02.png");
  1312. background-attachment: fixed; }
  1313. .pattern-3 {
  1314. background: url("../img/overlays/03.png");
  1315. background-attachment: fixed; }
  1316. .pattern-4 {
  1317. background: url("../img/overlays/04.png");
  1318. background-attachment: fixed; }
  1319. .pattern-5 {
  1320. background: url("../img/overlays/05.png");
  1321. background-attachment: fixed; }
  1322. .pattern-6 {
  1323. background: url("../img/overlays/06.png");
  1324. background-attachment: fixed; }
  1325. .pattern-7 {
  1326. background: url("../img/overlays/07.png");
  1327. background-attachment: fixed; }
  1328. .pattern-8 {
  1329. background: url("../img/overlays/08.png");
  1330. background-attachment: fixed; }
  1331. .pattern-9 {
  1332. background: url("../img/overlays/09.png");
  1333. background-attachment: fixed; }
  1334. /*!
  1335. * Waves v0.7.6
  1336. * http://fian.my.id/Waves
  1337. *
  1338. * Copyright 2014-2018 Alfiana E. Sibuea and other contributors
  1339. * Released under the MIT license
  1340. * https://github.com/fians/Waves/blob/master/LICENSE */
  1341. .waves-effect {
  1342. position: relative;
  1343. cursor: pointer;
  1344. overflow: hidden;
  1345. -webkit-user-select: none;
  1346. -moz-user-select: none;
  1347. -ms-user-select: none;
  1348. user-select: none;
  1349. -webkit-tap-highlight-color: transparent; }
  1350. .waves-effect .waves-ripple {
  1351. position: absolute;
  1352. -webkit-border-radius: 50%;
  1353. border-radius: 50%;
  1354. width: 100px;
  1355. height: 100px;
  1356. margin-top: -50px;
  1357. margin-left: -50px;
  1358. opacity: 0;
  1359. background: rgba(0, 0, 0, 0.2);
  1360. background: -webkit-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  1361. background: -o-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  1362. background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  1363. -webkit-transition: all 0.5s ease-out;
  1364. -o-transition: all 0.5s ease-out;
  1365. transition: all 0.5s ease-out;
  1366. -webkit-transition-property: -webkit-transform, opacity;
  1367. -o-transition-property: -o-transform, opacity;
  1368. -webkit-transition-property: opacity, -webkit-transform;
  1369. transition-property: opacity, -webkit-transform;
  1370. -o-transition-property: transform, opacity;
  1371. transition-property: transform, opacity;
  1372. transition-property: transform, opacity, -webkit-transform;
  1373. -webkit-transform: scale(0) translate(0, 0);
  1374. -ms-transform: scale(0) translate(0, 0);
  1375. transform: scale(0) translate(0, 0);
  1376. pointer-events: none; }
  1377. .waves-effect.waves-light .waves-ripple {
  1378. background: rgba(255, 255, 255, 0.4);
  1379. background: -webkit-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  1380. background: -o-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  1381. background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }
  1382. .waves-effect.waves-classic .waves-ripple {
  1383. background: rgba(0, 0, 0, 0.2); }
  1384. .waves-effect.waves-classic.waves-light .waves-ripple {
  1385. background: rgba(255, 255, 255, 0.4); }
  1386. .waves-notransition {
  1387. -webkit-transition: none !important;
  1388. -o-transition: none !important;
  1389. transition: none !important; }
  1390. .waves-button,
  1391. .waves-circle {
  1392. -webkit-transform: translateZ(0);
  1393. -ms-transform: translateZ(0);
  1394. transform: translateZ(0);
  1395. -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); }
  1396. .waves-button,
  1397. .waves-button:hover,
  1398. .waves-button:visited,
  1399. .waves-button-input {
  1400. white-space: nowrap;
  1401. vertical-align: middle;
  1402. cursor: pointer;
  1403. border: none;
  1404. outline: none;
  1405. color: inherit;
  1406. background-color: rgba(0, 0, 0, 0);
  1407. font-size: 1em;
  1408. line-height: 1em;
  1409. text-align: center;
  1410. text-decoration: none;
  1411. z-index: 1; }
  1412. .waves-button {
  1413. padding: 0.85em 1.1em;
  1414. -webkit-border-radius: 0.2em;
  1415. border-radius: 0.2em; }
  1416. .waves-button-input {
  1417. margin: 0;
  1418. padding: 0.85em 1.1em; }
  1419. .waves-input-wrapper {
  1420. display: inline-block;
  1421. position: relative;
  1422. vertical-align: middle;
  1423. -webkit-border-radius: 0.2em;
  1424. border-radius: 0.2em; }
  1425. .waves-input-wrapper.waves-button {
  1426. padding: 0; }
  1427. .waves-input-wrapper .waves-button-input {
  1428. position: relative;
  1429. top: 0;
  1430. left: 0;
  1431. z-index: 1; }
  1432. .waves-circle {
  1433. text-align: center;
  1434. width: 2.5em;
  1435. height: 2.5em;
  1436. line-height: 2.5em;
  1437. -webkit-border-radius: 50%;
  1438. border-radius: 50%; }
  1439. .waves-float {
  1440. -webkit-mask-image: none;
  1441. -webkit-box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  1442. box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  1443. -webkit-transition: all 300ms;
  1444. -o-transition: all 300ms;
  1445. transition: all 300ms; }
  1446. .waves-float:active {
  1447. -webkit-box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
  1448. box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3); }
  1449. .waves-block {
  1450. display: block; }
  1451. a.waves-effect, a.waves-light {
  1452. display: inline-block; }
  1453. /*!
  1454. * animate.css -http://daneden.me/animate
  1455. * Version - 3.7.0
  1456. * Licensed under the MIT license - http://opensource.org/licenses/MIT
  1457. *
  1458. * Copyright (c) 2018 Daniel Eden
  1459. */
  1460. .animated {
  1461. -webkit-animation-duration: 1s;
  1462. animation-duration: 1s;
  1463. -webkit-animation-fill-mode: both;
  1464. animation-fill-mode: both; }
  1465. .animated.infinite {
  1466. -webkit-animation-iteration-count: infinite;
  1467. animation-iteration-count: infinite; }
  1468. .animated.delay-1s {
  1469. -webkit-animation-delay: 1s;
  1470. animation-delay: 1s; }
  1471. .animated.delay-2s {
  1472. -webkit-animation-delay: 2s;
  1473. animation-delay: 2s; }
  1474. .animated.delay-3s {
  1475. -webkit-animation-delay: 3s;
  1476. animation-delay: 3s; }
  1477. .animated.delay-4s {
  1478. -webkit-animation-delay: 4s;
  1479. animation-delay: 4s; }
  1480. .animated.delay-5s {
  1481. -webkit-animation-delay: 5s;
  1482. animation-delay: 5s; }
  1483. .animated.fast {
  1484. -webkit-animation-duration: 800ms;
  1485. animation-duration: 800ms; }
  1486. .animated.faster {
  1487. -webkit-animation-duration: 500ms;
  1488. animation-duration: 500ms; }
  1489. .animated.slow {
  1490. -webkit-animation-duration: 2s;
  1491. animation-duration: 2s; }
  1492. .animated.slower {
  1493. -webkit-animation-duration: 3s;
  1494. animation-duration: 3s; }
  1495. @media (prefers-reduced-motion) {
  1496. .animated {
  1497. -webkit-animation: unset !important;
  1498. animation: unset !important;
  1499. -webkit-transition: none !important;
  1500. -o-transition: none !important;
  1501. transition: none !important; } }
  1502. @-webkit-keyframes fadeIn {
  1503. from {
  1504. opacity: 0; }
  1505. to {
  1506. opacity: 1; } }
  1507. @keyframes fadeIn {
  1508. from {
  1509. opacity: 0; }
  1510. to {
  1511. opacity: 1; } }
  1512. .fadeIn {
  1513. -webkit-animation-name: fadeIn;
  1514. animation-name: fadeIn; }
  1515. @-webkit-keyframes fadeInDown {
  1516. from {
  1517. opacity: 0;
  1518. -webkit-transform: translate3d(0, -100%, 0);
  1519. transform: translate3d(0, -100%, 0); }
  1520. to {
  1521. opacity: 1;
  1522. -webkit-transform: translate3d(0, 0, 0);
  1523. transform: translate3d(0, 0, 0); } }
  1524. @keyframes fadeInDown {
  1525. from {
  1526. opacity: 0;
  1527. -webkit-transform: translate3d(0, -100%, 0);
  1528. transform: translate3d(0, -100%, 0); }
  1529. to {
  1530. opacity: 1;
  1531. -webkit-transform: translate3d(0, 0, 0);
  1532. transform: translate3d(0, 0, 0); } }
  1533. .fadeInDown {
  1534. -webkit-animation-name: fadeInDown;
  1535. animation-name: fadeInDown; }
  1536. @-webkit-keyframes fadeInLeft {
  1537. from {
  1538. opacity: 0;
  1539. -webkit-transform: translate3d(-100%, 0, 0);
  1540. transform: translate3d(-100%, 0, 0); }
  1541. to {
  1542. opacity: 1;
  1543. -webkit-transform: translate3d(0, 0, 0);
  1544. transform: translate3d(0, 0, 0); } }
  1545. @keyframes fadeInLeft {
  1546. from {
  1547. opacity: 0;
  1548. -webkit-transform: translate3d(-100%, 0, 0);
  1549. transform: translate3d(-100%, 0, 0); }
  1550. to {
  1551. opacity: 1;
  1552. -webkit-transform: translate3d(0, 0, 0);
  1553. transform: translate3d(0, 0, 0); } }
  1554. .fadeInLeft {
  1555. -webkit-animation-name: fadeInLeft;
  1556. animation-name: fadeInLeft; }
  1557. @-webkit-keyframes fadeInRight {
  1558. from {
  1559. opacity: 0;
  1560. -webkit-transform: translate3d(100%, 0, 0);
  1561. transform: translate3d(100%, 0, 0); }
  1562. to {
  1563. opacity: 1;
  1564. -webkit-transform: translate3d(0, 0, 0);
  1565. transform: translate3d(0, 0, 0); } }
  1566. @keyframes fadeInRight {
  1567. from {
  1568. opacity: 0;
  1569. -webkit-transform: translate3d(100%, 0, 0);
  1570. transform: translate3d(100%, 0, 0); }
  1571. to {
  1572. opacity: 1;
  1573. -webkit-transform: translate3d(0, 0, 0);
  1574. transform: translate3d(0, 0, 0); } }
  1575. .fadeInRight {
  1576. -webkit-animation-name: fadeInRight;
  1577. animation-name: fadeInRight; }
  1578. @-webkit-keyframes fadeInUp {
  1579. from {
  1580. opacity: 0;
  1581. -webkit-transform: translate3d(0, 100%, 0);
  1582. transform: translate3d(0, 100%, 0); }
  1583. to {
  1584. opacity: 1;
  1585. -webkit-transform: translate3d(0, 0, 0);
  1586. transform: translate3d(0, 0, 0); } }
  1587. @keyframes fadeInUp {
  1588. from {
  1589. opacity: 0;
  1590. -webkit-transform: translate3d(0, 100%, 0);
  1591. transform: translate3d(0, 100%, 0); }
  1592. to {
  1593. opacity: 1;
  1594. -webkit-transform: translate3d(0, 0, 0);
  1595. transform: translate3d(0, 0, 0); } }
  1596. .fadeInUp {
  1597. -webkit-animation-name: fadeInUp;
  1598. animation-name: fadeInUp; }
  1599. @-webkit-keyframes fadeOut {
  1600. from {
  1601. opacity: 1; }
  1602. to {
  1603. opacity: 0; } }
  1604. @keyframes fadeOut {
  1605. from {
  1606. opacity: 1; }
  1607. to {
  1608. opacity: 0; } }
  1609. .fadeOut {
  1610. -webkit-animation-name: fadeOut;
  1611. animation-name: fadeOut; }
  1612. @-webkit-keyframes fadeOutDown {
  1613. from {
  1614. opacity: 1; }
  1615. to {
  1616. opacity: 0;
  1617. -webkit-transform: translate3d(0, 100%, 0);
  1618. transform: translate3d(0, 100%, 0); } }
  1619. @keyframes fadeOutDown {
  1620. from {
  1621. opacity: 1; }
  1622. to {
  1623. opacity: 0;
  1624. -webkit-transform: translate3d(0, 100%, 0);
  1625. transform: translate3d(0, 100%, 0); } }
  1626. .fadeOutDown {
  1627. -webkit-animation-name: fadeOutDown;
  1628. animation-name: fadeOutDown; }
  1629. @-webkit-keyframes fadeOutLeft {
  1630. from {
  1631. opacity: 1; }
  1632. to {
  1633. opacity: 0;
  1634. -webkit-transform: translate3d(-100%, 0, 0);
  1635. transform: translate3d(-100%, 0, 0); } }
  1636. @keyframes fadeOutLeft {
  1637. from {
  1638. opacity: 1; }
  1639. to {
  1640. opacity: 0;
  1641. -webkit-transform: translate3d(-100%, 0, 0);
  1642. transform: translate3d(-100%, 0, 0); } }
  1643. .fadeOutLeft {
  1644. -webkit-animation-name: fadeOutLeft;
  1645. animation-name: fadeOutLeft; }
  1646. @-webkit-keyframes fadeOutRight {
  1647. from {
  1648. opacity: 1; }
  1649. to {
  1650. opacity: 0;
  1651. -webkit-transform: translate3d(100%, 0, 0);
  1652. transform: translate3d(100%, 0, 0); } }
  1653. @keyframes fadeOutRight {
  1654. from {
  1655. opacity: 1; }
  1656. to {
  1657. opacity: 0;
  1658. -webkit-transform: translate3d(100%, 0, 0);
  1659. transform: translate3d(100%, 0, 0); } }
  1660. .fadeOutRight {
  1661. -webkit-animation-name: fadeOutRight;
  1662. animation-name: fadeOutRight; }
  1663. @-webkit-keyframes fadeOutUp {
  1664. from {
  1665. opacity: 1; }
  1666. to {
  1667. opacity: 0;
  1668. -webkit-transform: translate3d(0, -100%, 0);
  1669. transform: translate3d(0, -100%, 0); } }
  1670. @keyframes fadeOutUp {
  1671. from {
  1672. opacity: 1; }
  1673. to {
  1674. opacity: 0;
  1675. -webkit-transform: translate3d(0, -100%, 0);
  1676. transform: translate3d(0, -100%, 0); } }
  1677. .fadeOutUp {
  1678. -webkit-animation-name: fadeOutUp;
  1679. animation-name: fadeOutUp; }
  1680. /*!
  1681. * animate.css -http://daneden.me/animate
  1682. * Version - 3.7.0
  1683. * Licensed under the MIT license - http://opensource.org/licenses/MIT
  1684. *
  1685. * Copyright (c) 2018 Daniel Eden
  1686. */
  1687. @-webkit-keyframes bounce {
  1688. from,
  1689. 20%,
  1690. 53%,
  1691. 80%,
  1692. to {
  1693. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  1694. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  1695. -webkit-transform: translate3d(0, 0, 0);
  1696. transform: translate3d(0, 0, 0); }
  1697. 40%,
  1698. 43% {
  1699. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1700. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1701. -webkit-transform: translate3d(0, -30px, 0);
  1702. transform: translate3d(0, -30px, 0); }
  1703. 70% {
  1704. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1705. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1706. -webkit-transform: translate3d(0, -15px, 0);
  1707. transform: translate3d(0, -15px, 0); }
  1708. 90% {
  1709. -webkit-transform: translate3d(0, -4px, 0);
  1710. transform: translate3d(0, -4px, 0); } }
  1711. @keyframes bounce {
  1712. from,
  1713. 20%,
  1714. 53%,
  1715. 80%,
  1716. to {
  1717. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  1718. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  1719. -webkit-transform: translate3d(0, 0, 0);
  1720. transform: translate3d(0, 0, 0); }
  1721. 40%,
  1722. 43% {
  1723. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1724. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1725. -webkit-transform: translate3d(0, -30px, 0);
  1726. transform: translate3d(0, -30px, 0); }
  1727. 70% {
  1728. -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1729. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1730. -webkit-transform: translate3d(0, -15px, 0);
  1731. transform: translate3d(0, -15px, 0); }
  1732. 90% {
  1733. -webkit-transform: translate3d(0, -4px, 0);
  1734. transform: translate3d(0, -4px, 0); } }
  1735. .bounce {
  1736. -webkit-animation-name: bounce;
  1737. animation-name: bounce;
  1738. -webkit-transform-origin: center bottom;
  1739. -ms-transform-origin: center bottom;
  1740. transform-origin: center bottom; }
  1741. @-webkit-keyframes flash {
  1742. from,
  1743. 50%,
  1744. to {
  1745. opacity: 1; }
  1746. 25%,
  1747. 75% {
  1748. opacity: 0; } }
  1749. @keyframes flash {
  1750. from,
  1751. 50%,
  1752. to {
  1753. opacity: 1; }
  1754. 25%,
  1755. 75% {
  1756. opacity: 0; } }
  1757. .flash {
  1758. -webkit-animation-name: flash;
  1759. animation-name: flash; }
  1760. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  1761. @-webkit-keyframes pulse {
  1762. from {
  1763. -webkit-transform: scale3d(1, 1, 1);
  1764. transform: scale3d(1, 1, 1); }
  1765. 50% {
  1766. -webkit-transform: scale3d(1.05, 1.05, 1.05);
  1767. transform: scale3d(1.05, 1.05, 1.05); }
  1768. to {
  1769. -webkit-transform: scale3d(1, 1, 1);
  1770. transform: scale3d(1, 1, 1); } }
  1771. @keyframes pulse {
  1772. from {
  1773. -webkit-transform: scale3d(1, 1, 1);
  1774. transform: scale3d(1, 1, 1); }
  1775. 50% {
  1776. -webkit-transform: scale3d(1.05, 1.05, 1.05);
  1777. transform: scale3d(1.05, 1.05, 1.05); }
  1778. to {
  1779. -webkit-transform: scale3d(1, 1, 1);
  1780. transform: scale3d(1, 1, 1); } }
  1781. .pulse {
  1782. -webkit-animation-name: pulse;
  1783. animation-name: pulse; }
  1784. @-webkit-keyframes rubberBand {
  1785. from {
  1786. -webkit-transform: scale3d(1, 1, 1);
  1787. transform: scale3d(1, 1, 1); }
  1788. 30% {
  1789. -webkit-transform: scale3d(1.25, 0.75, 1);
  1790. transform: scale3d(1.25, 0.75, 1); }
  1791. 40% {
  1792. -webkit-transform: scale3d(0.75, 1.25, 1);
  1793. transform: scale3d(0.75, 1.25, 1); }
  1794. 50% {
  1795. -webkit-transform: scale3d(1.15, 0.85, 1);
  1796. transform: scale3d(1.15, 0.85, 1); }
  1797. 65% {
  1798. -webkit-transform: scale3d(0.95, 1.05, 1);
  1799. transform: scale3d(0.95, 1.05, 1); }
  1800. 75% {
  1801. -webkit-transform: scale3d(1.05, 0.95, 1);
  1802. transform: scale3d(1.05, 0.95, 1); }
  1803. to {
  1804. -webkit-transform: scale3d(1, 1, 1);
  1805. transform: scale3d(1, 1, 1); } }
  1806. @keyframes rubberBand {
  1807. from {
  1808. -webkit-transform: scale3d(1, 1, 1);
  1809. transform: scale3d(1, 1, 1); }
  1810. 30% {
  1811. -webkit-transform: scale3d(1.25, 0.75, 1);
  1812. transform: scale3d(1.25, 0.75, 1); }
  1813. 40% {
  1814. -webkit-transform: scale3d(0.75, 1.25, 1);
  1815. transform: scale3d(0.75, 1.25, 1); }
  1816. 50% {
  1817. -webkit-transform: scale3d(1.15, 0.85, 1);
  1818. transform: scale3d(1.15, 0.85, 1); }
  1819. 65% {
  1820. -webkit-transform: scale3d(0.95, 1.05, 1);
  1821. transform: scale3d(0.95, 1.05, 1); }
  1822. 75% {
  1823. -webkit-transform: scale3d(1.05, 0.95, 1);
  1824. transform: scale3d(1.05, 0.95, 1); }
  1825. to {
  1826. -webkit-transform: scale3d(1, 1, 1);
  1827. transform: scale3d(1, 1, 1); } }
  1828. .rubberBand {
  1829. -webkit-animation-name: rubberBand;
  1830. animation-name: rubberBand; }
  1831. @-webkit-keyframes shake {
  1832. from,
  1833. to {
  1834. -webkit-transform: translate3d(0, 0, 0);
  1835. transform: translate3d(0, 0, 0); }
  1836. 10%,
  1837. 30%,
  1838. 50%,
  1839. 70%,
  1840. 90% {
  1841. -webkit-transform: translate3d(-10px, 0, 0);
  1842. transform: translate3d(-10px, 0, 0); }
  1843. 20%,
  1844. 40%,
  1845. 60%,
  1846. 80% {
  1847. -webkit-transform: translate3d(10px, 0, 0);
  1848. transform: translate3d(10px, 0, 0); } }
  1849. @keyframes shake {
  1850. from,
  1851. to {
  1852. -webkit-transform: translate3d(0, 0, 0);
  1853. transform: translate3d(0, 0, 0); }
  1854. 10%,
  1855. 30%,
  1856. 50%,
  1857. 70%,
  1858. 90% {
  1859. -webkit-transform: translate3d(-10px, 0, 0);
  1860. transform: translate3d(-10px, 0, 0); }
  1861. 20%,
  1862. 40%,
  1863. 60%,
  1864. 80% {
  1865. -webkit-transform: translate3d(10px, 0, 0);
  1866. transform: translate3d(10px, 0, 0); } }
  1867. .shake {
  1868. -webkit-animation-name: shake;
  1869. animation-name: shake; }
  1870. @-webkit-keyframes headShake {
  1871. 0% {
  1872. -webkit-transform: translateX(0);
  1873. transform: translateX(0); }
  1874. 6.5% {
  1875. -webkit-transform: translateX(-6px) rotateY(-9deg);
  1876. transform: translateX(-6px) rotateY(-9deg); }
  1877. 18.5% {
  1878. -webkit-transform: translateX(5px) rotateY(7deg);
  1879. transform: translateX(5px) rotateY(7deg); }
  1880. 31.5% {
  1881. -webkit-transform: translateX(-3px) rotateY(-5deg);
  1882. transform: translateX(-3px) rotateY(-5deg); }
  1883. 43.5% {
  1884. -webkit-transform: translateX(2px) rotateY(3deg);
  1885. transform: translateX(2px) rotateY(3deg); }
  1886. 50% {
  1887. -webkit-transform: translateX(0);
  1888. transform: translateX(0); } }
  1889. @keyframes headShake {
  1890. 0% {
  1891. -webkit-transform: translateX(0);
  1892. transform: translateX(0); }
  1893. 6.5% {
  1894. -webkit-transform: translateX(-6px) rotateY(-9deg);
  1895. transform: translateX(-6px) rotateY(-9deg); }
  1896. 18.5% {
  1897. -webkit-transform: translateX(5px) rotateY(7deg);
  1898. transform: translateX(5px) rotateY(7deg); }
  1899. 31.5% {
  1900. -webkit-transform: translateX(-3px) rotateY(-5deg);
  1901. transform: translateX(-3px) rotateY(-5deg); }
  1902. 43.5% {
  1903. -webkit-transform: translateX(2px) rotateY(3deg);
  1904. transform: translateX(2px) rotateY(3deg); }
  1905. 50% {
  1906. -webkit-transform: translateX(0);
  1907. transform: translateX(0); } }
  1908. .headShake {
  1909. -webkit-animation-timing-function: ease-in-out;
  1910. animation-timing-function: ease-in-out;
  1911. -webkit-animation-name: headShake;
  1912. animation-name: headShake; }
  1913. @-webkit-keyframes swing {
  1914. 20% {
  1915. -webkit-transform: rotate3d(0, 0, 1, 15deg);
  1916. transform: rotate3d(0, 0, 1, 15deg); }
  1917. 40% {
  1918. -webkit-transform: rotate3d(0, 0, 1, -10deg);
  1919. transform: rotate3d(0, 0, 1, -10deg); }
  1920. 60% {
  1921. -webkit-transform: rotate3d(0, 0, 1, 5deg);
  1922. transform: rotate3d(0, 0, 1, 5deg); }
  1923. 80% {
  1924. -webkit-transform: rotate3d(0, 0, 1, -5deg);
  1925. transform: rotate3d(0, 0, 1, -5deg); }
  1926. to {
  1927. -webkit-transform: rotate3d(0, 0, 1, 0deg);
  1928. transform: rotate3d(0, 0, 1, 0deg); } }
  1929. @keyframes swing {
  1930. 20% {
  1931. -webkit-transform: rotate3d(0, 0, 1, 15deg);
  1932. transform: rotate3d(0, 0, 1, 15deg); }
  1933. 40% {
  1934. -webkit-transform: rotate3d(0, 0, 1, -10deg);
  1935. transform: rotate3d(0, 0, 1, -10deg); }
  1936. 60% {
  1937. -webkit-transform: rotate3d(0, 0, 1, 5deg);
  1938. transform: rotate3d(0, 0, 1, 5deg); }
  1939. 80% {
  1940. -webkit-transform: rotate3d(0, 0, 1, -5deg);
  1941. transform: rotate3d(0, 0, 1, -5deg); }
  1942. to {
  1943. -webkit-transform: rotate3d(0, 0, 1, 0deg);
  1944. transform: rotate3d(0, 0, 1, 0deg); } }
  1945. .swing {
  1946. -webkit-transform-origin: top center;
  1947. -ms-transform-origin: top center;
  1948. transform-origin: top center;
  1949. -webkit-animation-name: swing;
  1950. animation-name: swing; }
  1951. @-webkit-keyframes tada {
  1952. from {
  1953. -webkit-transform: scale3d(1, 1, 1);
  1954. transform: scale3d(1, 1, 1); }
  1955. 10%,
  1956. 20% {
  1957. -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  1958. transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  1959. 30%,
  1960. 50%,
  1961. 70%,
  1962. 90% {
  1963. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  1964. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  1965. 40%,
  1966. 60%,
  1967. 80% {
  1968. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  1969. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  1970. to {
  1971. -webkit-transform: scale3d(1, 1, 1);
  1972. transform: scale3d(1, 1, 1); } }
  1973. @keyframes tada {
  1974. from {
  1975. -webkit-transform: scale3d(1, 1, 1);
  1976. transform: scale3d(1, 1, 1); }
  1977. 10%,
  1978. 20% {
  1979. -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  1980. transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  1981. 30%,
  1982. 50%,
  1983. 70%,
  1984. 90% {
  1985. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  1986. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  1987. 40%,
  1988. 60%,
  1989. 80% {
  1990. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  1991. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  1992. to {
  1993. -webkit-transform: scale3d(1, 1, 1);
  1994. transform: scale3d(1, 1, 1); } }
  1995. .tada {
  1996. -webkit-animation-name: tada;
  1997. animation-name: tada; }
  1998. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  1999. @-webkit-keyframes wobble {
  2000. from {
  2001. -webkit-transform: translate3d(0, 0, 0);
  2002. transform: translate3d(0, 0, 0); }
  2003. 15% {
  2004. -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  2005. transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  2006. 30% {
  2007. -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  2008. transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  2009. 45% {
  2010. -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  2011. transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  2012. 60% {
  2013. -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  2014. transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  2015. 75% {
  2016. -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  2017. transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  2018. to {
  2019. -webkit-transform: translate3d(0, 0, 0);
  2020. transform: translate3d(0, 0, 0); } }
  2021. @keyframes wobble {
  2022. from {
  2023. -webkit-transform: translate3d(0, 0, 0);
  2024. transform: translate3d(0, 0, 0); }
  2025. 15% {
  2026. -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  2027. transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  2028. 30% {
  2029. -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  2030. transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  2031. 45% {
  2032. -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  2033. transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  2034. 60% {
  2035. -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  2036. transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  2037. 75% {
  2038. -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  2039. transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  2040. to {
  2041. -webkit-transform: translate3d(0, 0, 0);
  2042. transform: translate3d(0, 0, 0); } }
  2043. .wobble {
  2044. -webkit-animation-name: wobble;
  2045. animation-name: wobble; }
  2046. @-webkit-keyframes jello {
  2047. from,
  2048. 11.1%,
  2049. to {
  2050. -webkit-transform: translate3d(0, 0, 0);
  2051. transform: translate3d(0, 0, 0); }
  2052. 22.2% {
  2053. -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
  2054. transform: skewX(-12.5deg) skewY(-12.5deg); }
  2055. 33.3% {
  2056. -webkit-transform: skewX(6.25deg) skewY(6.25deg);
  2057. transform: skewX(6.25deg) skewY(6.25deg); }
  2058. 44.4% {
  2059. -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
  2060. transform: skewX(-3.125deg) skewY(-3.125deg); }
  2061. 55.5% {
  2062. -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
  2063. transform: skewX(1.5625deg) skewY(1.5625deg); }
  2064. 66.6% {
  2065. -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
  2066. transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  2067. 77.7% {
  2068. -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
  2069. transform: skewX(0.39062deg) skewY(0.39062deg); }
  2070. 88.8% {
  2071. -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
  2072. transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
  2073. @keyframes jello {
  2074. from,
  2075. 11.1%,
  2076. to {
  2077. -webkit-transform: translate3d(0, 0, 0);
  2078. transform: translate3d(0, 0, 0); }
  2079. 22.2% {
  2080. -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
  2081. transform: skewX(-12.5deg) skewY(-12.5deg); }
  2082. 33.3% {
  2083. -webkit-transform: skewX(6.25deg) skewY(6.25deg);
  2084. transform: skewX(6.25deg) skewY(6.25deg); }
  2085. 44.4% {
  2086. -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
  2087. transform: skewX(-3.125deg) skewY(-3.125deg); }
  2088. 55.5% {
  2089. -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
  2090. transform: skewX(1.5625deg) skewY(1.5625deg); }
  2091. 66.6% {
  2092. -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
  2093. transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  2094. 77.7% {
  2095. -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
  2096. transform: skewX(0.39062deg) skewY(0.39062deg); }
  2097. 88.8% {
  2098. -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
  2099. transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
  2100. .jello {
  2101. -webkit-animation-name: jello;
  2102. animation-name: jello;
  2103. -webkit-transform-origin: center;
  2104. -ms-transform-origin: center;
  2105. transform-origin: center; }
  2106. @-webkit-keyframes heartBeat {
  2107. 0% {
  2108. -webkit-transform: scale(1);
  2109. transform: scale(1); }
  2110. 14% {
  2111. -webkit-transform: scale(1.3);
  2112. transform: scale(1.3); }
  2113. 28% {
  2114. -webkit-transform: scale(1);
  2115. transform: scale(1); }
  2116. 42% {
  2117. -webkit-transform: scale(1.3);
  2118. transform: scale(1.3); }
  2119. 70% {
  2120. -webkit-transform: scale(1);
  2121. transform: scale(1); } }
  2122. @keyframes heartBeat {
  2123. 0% {
  2124. -webkit-transform: scale(1);
  2125. transform: scale(1); }
  2126. 14% {
  2127. -webkit-transform: scale(1.3);
  2128. transform: scale(1.3); }
  2129. 28% {
  2130. -webkit-transform: scale(1);
  2131. transform: scale(1); }
  2132. 42% {
  2133. -webkit-transform: scale(1.3);
  2134. transform: scale(1.3); }
  2135. 70% {
  2136. -webkit-transform: scale(1);
  2137. transform: scale(1); } }
  2138. .heartBeat {
  2139. -webkit-animation-name: heartBeat;
  2140. animation-name: heartBeat;
  2141. -webkit-animation-duration: 1.3s;
  2142. animation-duration: 1.3s;
  2143. -webkit-animation-timing-function: ease-in-out;
  2144. animation-timing-function: ease-in-out; }
  2145. @-webkit-keyframes bounceIn {
  2146. from,
  2147. 20%,
  2148. 40%,
  2149. 60%,
  2150. 80%,
  2151. to {
  2152. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2153. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  2154. 0% {
  2155. opacity: 0;
  2156. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  2157. transform: scale3d(0.3, 0.3, 0.3); }
  2158. 20% {
  2159. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  2160. transform: scale3d(1.1, 1.1, 1.1); }
  2161. 40% {
  2162. -webkit-transform: scale3d(0.9, 0.9, 0.9);
  2163. transform: scale3d(0.9, 0.9, 0.9); }
  2164. 60% {
  2165. opacity: 1;
  2166. -webkit-transform: scale3d(1.03, 1.03, 1.03);
  2167. transform: scale3d(1.03, 1.03, 1.03); }
  2168. 80% {
  2169. -webkit-transform: scale3d(0.97, 0.97, 0.97);
  2170. transform: scale3d(0.97, 0.97, 0.97); }
  2171. to {
  2172. opacity: 1;
  2173. -webkit-transform: scale3d(1, 1, 1);
  2174. transform: scale3d(1, 1, 1); } }
  2175. @keyframes bounceIn {
  2176. from,
  2177. 20%,
  2178. 40%,
  2179. 60%,
  2180. 80%,
  2181. to {
  2182. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2183. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  2184. 0% {
  2185. opacity: 0;
  2186. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  2187. transform: scale3d(0.3, 0.3, 0.3); }
  2188. 20% {
  2189. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  2190. transform: scale3d(1.1, 1.1, 1.1); }
  2191. 40% {
  2192. -webkit-transform: scale3d(0.9, 0.9, 0.9);
  2193. transform: scale3d(0.9, 0.9, 0.9); }
  2194. 60% {
  2195. opacity: 1;
  2196. -webkit-transform: scale3d(1.03, 1.03, 1.03);
  2197. transform: scale3d(1.03, 1.03, 1.03); }
  2198. 80% {
  2199. -webkit-transform: scale3d(0.97, 0.97, 0.97);
  2200. transform: scale3d(0.97, 0.97, 0.97); }
  2201. to {
  2202. opacity: 1;
  2203. -webkit-transform: scale3d(1, 1, 1);
  2204. transform: scale3d(1, 1, 1); } }
  2205. .bounceIn {
  2206. -webkit-animation-duration: 0.75s;
  2207. animation-duration: 0.75s;
  2208. -webkit-animation-name: bounceIn;
  2209. animation-name: bounceIn; }
  2210. @-webkit-keyframes bounceInDown {
  2211. from,
  2212. 60%,
  2213. 75%,
  2214. 90%,
  2215. to {
  2216. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2217. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  2218. 0% {
  2219. opacity: 0;
  2220. -webkit-transform: translate3d(0, -3000px, 0);
  2221. transform: translate3d(0, -3000px, 0); }
  2222. 60% {
  2223. opacity: 1;
  2224. -webkit-transform: translate3d(0, 25px, 0);
  2225. transform: translate3d(0, 25px, 0); }
  2226. 75% {
  2227. -webkit-transform: translate3d(0, -10px, 0);
  2228. transform: translate3d(0, -10px, 0); }
  2229. 90% {
  2230. -webkit-transform: translate3d(0, 5px, 0);
  2231. transform: translate3d(0, 5px, 0); }
  2232. to {
  2233. -webkit-transform: translate3d(0, 0, 0);
  2234. transform: translate3d(0, 0, 0); } }
  2235. @keyframes bounceInDown {
  2236. from,
  2237. 60%,
  2238. 75%,
  2239. 90%,
  2240. to {
  2241. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2242. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  2243. 0% {
  2244. opacity: 0;
  2245. -webkit-transform: translate3d(0, -3000px, 0);
  2246. transform: translate3d(0, -3000px, 0); }
  2247. 60% {
  2248. opacity: 1;
  2249. -webkit-transform: translate3d(0, 25px, 0);
  2250. transform: translate3d(0, 25px, 0); }
  2251. 75% {
  2252. -webkit-transform: translate3d(0, -10px, 0);
  2253. transform: translate3d(0, -10px, 0); }
  2254. 90% {
  2255. -webkit-transform: translate3d(0, 5px, 0);
  2256. transform: translate3d(0, 5px, 0); }
  2257. to {
  2258. -webkit-transform: translate3d(0, 0, 0);
  2259. transform: translate3d(0, 0, 0); } }
  2260. .bounceInDown {
  2261. -webkit-animation-name: bounceInDown;
  2262. animation-name: bounceInDown; }
  2263. @-webkit-keyframes bounceInLeft {
  2264. from,
  2265. 60%,
  2266. 75%,
  2267. 90%,
  2268. to {
  2269. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2270. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  2271. 0% {
  2272. opacity: 0;
  2273. -webkit-transform: translate3d(-3000px, 0, 0);
  2274. transform: translate3d(-3000px, 0, 0); }
  2275. 60% {
  2276. opacity: 1;
  2277. -webkit-transform: translate3d(25px, 0, 0);
  2278. transform: translate3d(25px, 0, 0); }
  2279. 75% {
  2280. -webkit-transform: translate3d(-10px, 0, 0);
  2281. transform: translate3d(-10px, 0, 0); }
  2282. 90% {
  2283. -webkit-transform: translate3d(5px, 0, 0);
  2284. transform: translate3d(5px, 0, 0); }
  2285. to {
  2286. -webkit-transform: translate3d(0, 0, 0);
  2287. transform: translate3d(0, 0, 0); } }
  2288. @keyframes bounceInLeft {
  2289. from,
  2290. 60%,
  2291. 75%,
  2292. 90%,
  2293. to {
  2294. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2295. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  2296. 0% {
  2297. opacity: 0;
  2298. -webkit-transform: translate3d(-3000px, 0, 0);
  2299. transform: translate3d(-3000px, 0, 0); }
  2300. 60% {
  2301. opacity: 1;
  2302. -webkit-transform: translate3d(25px, 0, 0);
  2303. transform: translate3d(25px, 0, 0); }
  2304. 75% {
  2305. -webkit-transform: translate3d(-10px, 0, 0);
  2306. transform: translate3d(-10px, 0, 0); }
  2307. 90% {
  2308. -webkit-transform: translate3d(5px, 0, 0);
  2309. transform: translate3d(5px, 0, 0); }
  2310. to {
  2311. -webkit-transform: translate3d(0, 0, 0);
  2312. transform: translate3d(0, 0, 0); } }
  2313. .bounceInLeft {
  2314. -webkit-animation-name: bounceInLeft;
  2315. animation-name: bounceInLeft; }
  2316. @-webkit-keyframes bounceInRight {
  2317. from,
  2318. 60%,
  2319. 75%,
  2320. 90%,
  2321. to {
  2322. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2323. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  2324. from {
  2325. opacity: 0;
  2326. -webkit-transform: translate3d(3000px, 0, 0);
  2327. transform: translate3d(3000px, 0, 0); }
  2328. 60% {
  2329. opacity: 1;
  2330. -webkit-transform: translate3d(-25px, 0, 0);
  2331. transform: translate3d(-25px, 0, 0); }
  2332. 75% {
  2333. -webkit-transform: translate3d(10px, 0, 0);
  2334. transform: translate3d(10px, 0, 0); }
  2335. 90% {
  2336. -webkit-transform: translate3d(-5px, 0, 0);
  2337. transform: translate3d(-5px, 0, 0); }
  2338. to {
  2339. -webkit-transform: translate3d(0, 0, 0);
  2340. transform: translate3d(0, 0, 0); } }
  2341. @keyframes bounceInRight {
  2342. from,
  2343. 60%,
  2344. 75%,
  2345. 90%,
  2346. to {
  2347. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2348. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  2349. from {
  2350. opacity: 0;
  2351. -webkit-transform: translate3d(3000px, 0, 0);
  2352. transform: translate3d(3000px, 0, 0); }
  2353. 60% {
  2354. opacity: 1;
  2355. -webkit-transform: translate3d(-25px, 0, 0);
  2356. transform: translate3d(-25px, 0, 0); }
  2357. 75% {
  2358. -webkit-transform: translate3d(10px, 0, 0);
  2359. transform: translate3d(10px, 0, 0); }
  2360. 90% {
  2361. -webkit-transform: translate3d(-5px, 0, 0);
  2362. transform: translate3d(-5px, 0, 0); }
  2363. to {
  2364. -webkit-transform: translate3d(0, 0, 0);
  2365. transform: translate3d(0, 0, 0); } }
  2366. .bounceInRight {
  2367. -webkit-animation-name: bounceInRight;
  2368. animation-name: bounceInRight; }
  2369. @-webkit-keyframes bounceInUp {
  2370. from,
  2371. 60%,
  2372. 75%,
  2373. 90%,
  2374. to {
  2375. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2376. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  2377. from {
  2378. opacity: 0;
  2379. -webkit-transform: translate3d(0, 3000px, 0);
  2380. transform: translate3d(0, 3000px, 0); }
  2381. 60% {
  2382. opacity: 1;
  2383. -webkit-transform: translate3d(0, -20px, 0);
  2384. transform: translate3d(0, -20px, 0); }
  2385. 75% {
  2386. -webkit-transform: translate3d(0, 10px, 0);
  2387. transform: translate3d(0, 10px, 0); }
  2388. 90% {
  2389. -webkit-transform: translate3d(0, -5px, 0);
  2390. transform: translate3d(0, -5px, 0); }
  2391. to {
  2392. -webkit-transform: translate3d(0, 0, 0);
  2393. transform: translate3d(0, 0, 0); } }
  2394. @keyframes bounceInUp {
  2395. from,
  2396. 60%,
  2397. 75%,
  2398. 90%,
  2399. to {
  2400. -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  2401. animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  2402. from {
  2403. opacity: 0;
  2404. -webkit-transform: translate3d(0, 3000px, 0);
  2405. transform: translate3d(0, 3000px, 0); }
  2406. 60% {
  2407. opacity: 1;
  2408. -webkit-transform: translate3d(0, -20px, 0);
  2409. transform: translate3d(0, -20px, 0); }
  2410. 75% {
  2411. -webkit-transform: translate3d(0, 10px, 0);
  2412. transform: translate3d(0, 10px, 0); }
  2413. 90% {
  2414. -webkit-transform: translate3d(0, -5px, 0);
  2415. transform: translate3d(0, -5px, 0); }
  2416. to {
  2417. -webkit-transform: translate3d(0, 0, 0);
  2418. transform: translate3d(0, 0, 0); } }
  2419. .bounceInUp {
  2420. -webkit-animation-name: bounceInUp;
  2421. animation-name: bounceInUp; }
  2422. @-webkit-keyframes bounceOut {
  2423. 20% {
  2424. -webkit-transform: scale3d(0.9, 0.9, 0.9);
  2425. transform: scale3d(0.9, 0.9, 0.9); }
  2426. 50%,
  2427. 55% {
  2428. opacity: 1;
  2429. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  2430. transform: scale3d(1.1, 1.1, 1.1); }
  2431. to {
  2432. opacity: 0;
  2433. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  2434. transform: scale3d(0.3, 0.3, 0.3); } }
  2435. @keyframes bounceOut {
  2436. 20% {
  2437. -webkit-transform: scale3d(0.9, 0.9, 0.9);
  2438. transform: scale3d(0.9, 0.9, 0.9); }
  2439. 50%,
  2440. 55% {
  2441. opacity: 1;
  2442. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  2443. transform: scale3d(1.1, 1.1, 1.1); }
  2444. to {
  2445. opacity: 0;
  2446. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  2447. transform: scale3d(0.3, 0.3, 0.3); } }
  2448. .bounceOut {
  2449. -webkit-animation-duration: 0.75s;
  2450. animation-duration: 0.75s;
  2451. -webkit-animation-name: bounceOut;
  2452. animation-name: bounceOut; }
  2453. @-webkit-keyframes bounceOutDown {
  2454. 20% {
  2455. -webkit-transform: translate3d(0, 10px, 0);
  2456. transform: translate3d(0, 10px, 0); }
  2457. 40%,
  2458. 45% {
  2459. opacity: 1;
  2460. -webkit-transform: translate3d(0, -20px, 0);
  2461. transform: translate3d(0, -20px, 0); }
  2462. to {
  2463. opacity: 0;
  2464. -webkit-transform: translate3d(0, 2000px, 0);
  2465. transform: translate3d(0, 2000px, 0); } }
  2466. @keyframes bounceOutDown {
  2467. 20% {
  2468. -webkit-transform: translate3d(0, 10px, 0);
  2469. transform: translate3d(0, 10px, 0); }
  2470. 40%,
  2471. 45% {
  2472. opacity: 1;
  2473. -webkit-transform: translate3d(0, -20px, 0);
  2474. transform: translate3d(0, -20px, 0); }
  2475. to {
  2476. opacity: 0;
  2477. -webkit-transform: translate3d(0, 2000px, 0);
  2478. transform: translate3d(0, 2000px, 0); } }
  2479. .bounceOutDown {
  2480. -webkit-animation-name: bounceOutDown;
  2481. animation-name: bounceOutDown; }
  2482. @-webkit-keyframes bounceOutLeft {
  2483. 20% {
  2484. opacity: 1;
  2485. -webkit-transform: translate3d(20px, 0, 0);
  2486. transform: translate3d(20px, 0, 0); }
  2487. to {
  2488. opacity: 0;
  2489. -webkit-transform: translate3d(-2000px, 0, 0);
  2490. transform: translate3d(-2000px, 0, 0); } }
  2491. @keyframes bounceOutLeft {
  2492. 20% {
  2493. opacity: 1;
  2494. -webkit-transform: translate3d(20px, 0, 0);
  2495. transform: translate3d(20px, 0, 0); }
  2496. to {
  2497. opacity: 0;
  2498. -webkit-transform: translate3d(-2000px, 0, 0);
  2499. transform: translate3d(-2000px, 0, 0); } }
  2500. .bounceOutLeft {
  2501. -webkit-animation-name: bounceOutLeft;
  2502. animation-name: bounceOutLeft; }
  2503. @-webkit-keyframes bounceOutRight {
  2504. 20% {
  2505. opacity: 1;
  2506. -webkit-transform: translate3d(-20px, 0, 0);
  2507. transform: translate3d(-20px, 0, 0); }
  2508. to {
  2509. opacity: 0;
  2510. -webkit-transform: translate3d(2000px, 0, 0);
  2511. transform: translate3d(2000px, 0, 0); } }
  2512. @keyframes bounceOutRight {
  2513. 20% {
  2514. opacity: 1;
  2515. -webkit-transform: translate3d(-20px, 0, 0);
  2516. transform: translate3d(-20px, 0, 0); }
  2517. to {
  2518. opacity: 0;
  2519. -webkit-transform: translate3d(2000px, 0, 0);
  2520. transform: translate3d(2000px, 0, 0); } }
  2521. .bounceOutRight {
  2522. -webkit-animation-name: bounceOutRight;
  2523. animation-name: bounceOutRight; }
  2524. @-webkit-keyframes bounceOutUp {
  2525. 20% {
  2526. -webkit-transform: translate3d(0, -10px, 0);
  2527. transform: translate3d(0, -10px, 0); }
  2528. 40%,
  2529. 45% {
  2530. opacity: 1;
  2531. -webkit-transform: translate3d(0, 20px, 0);
  2532. transform: translate3d(0, 20px, 0); }
  2533. to {
  2534. opacity: 0;
  2535. -webkit-transform: translate3d(0, -2000px, 0);
  2536. transform: translate3d(0, -2000px, 0); } }
  2537. @keyframes bounceOutUp {
  2538. 20% {
  2539. -webkit-transform: translate3d(0, -10px, 0);
  2540. transform: translate3d(0, -10px, 0); }
  2541. 40%,
  2542. 45% {
  2543. opacity: 1;
  2544. -webkit-transform: translate3d(0, 20px, 0);
  2545. transform: translate3d(0, 20px, 0); }
  2546. to {
  2547. opacity: 0;
  2548. -webkit-transform: translate3d(0, -2000px, 0);
  2549. transform: translate3d(0, -2000px, 0); } }
  2550. .bounceOutUp {
  2551. -webkit-animation-name: bounceOutUp;
  2552. animation-name: bounceOutUp; }
  2553. @-webkit-keyframes fadeInDownBig {
  2554. from {
  2555. opacity: 0;
  2556. -webkit-transform: translate3d(0, -2000px, 0);
  2557. transform: translate3d(0, -2000px, 0); }
  2558. to {
  2559. opacity: 1;
  2560. -webkit-transform: translate3d(0, 0, 0);
  2561. transform: translate3d(0, 0, 0); } }
  2562. @keyframes fadeInDownBig {
  2563. from {
  2564. opacity: 0;
  2565. -webkit-transform: translate3d(0, -2000px, 0);
  2566. transform: translate3d(0, -2000px, 0); }
  2567. to {
  2568. opacity: 1;
  2569. -webkit-transform: translate3d(0, 0, 0);
  2570. transform: translate3d(0, 0, 0); } }
  2571. .fadeInDownBig {
  2572. -webkit-animation-name: fadeInDownBig;
  2573. animation-name: fadeInDownBig; }
  2574. @-webkit-keyframes fadeInLeftBig {
  2575. from {
  2576. opacity: 0;
  2577. -webkit-transform: translate3d(-2000px, 0, 0);
  2578. transform: translate3d(-2000px, 0, 0); }
  2579. to {
  2580. opacity: 1;
  2581. -webkit-transform: translate3d(0, 0, 0);
  2582. transform: translate3d(0, 0, 0); } }
  2583. @keyframes fadeInLeftBig {
  2584. from {
  2585. opacity: 0;
  2586. -webkit-transform: translate3d(-2000px, 0, 0);
  2587. transform: translate3d(-2000px, 0, 0); }
  2588. to {
  2589. opacity: 1;
  2590. -webkit-transform: translate3d(0, 0, 0);
  2591. transform: translate3d(0, 0, 0); } }
  2592. .fadeInLeftBig {
  2593. -webkit-animation-name: fadeInLeftBig;
  2594. animation-name: fadeInLeftBig; }
  2595. @-webkit-keyframes fadeInRightBig {
  2596. from {
  2597. opacity: 0;
  2598. -webkit-transform: translate3d(2000px, 0, 0);
  2599. transform: translate3d(2000px, 0, 0); }
  2600. to {
  2601. opacity: 1;
  2602. -webkit-transform: translate3d(0, 0, 0);
  2603. transform: translate3d(0, 0, 0); } }
  2604. @keyframes fadeInRightBig {
  2605. from {
  2606. opacity: 0;
  2607. -webkit-transform: translate3d(2000px, 0, 0);
  2608. transform: translate3d(2000px, 0, 0); }
  2609. to {
  2610. opacity: 1;
  2611. -webkit-transform: translate3d(0, 0, 0);
  2612. transform: translate3d(0, 0, 0); } }
  2613. .fadeInRightBig {
  2614. -webkit-animation-name: fadeInRightBig;
  2615. animation-name: fadeInRightBig; }
  2616. @-webkit-keyframes fadeInUpBig {
  2617. from {
  2618. opacity: 0;
  2619. -webkit-transform: translate3d(0, 2000px, 0);
  2620. transform: translate3d(0, 2000px, 0); }
  2621. to {
  2622. opacity: 1;
  2623. -webkit-transform: translate3d(0, 0, 0);
  2624. transform: translate3d(0, 0, 0); } }
  2625. @keyframes fadeInUpBig {
  2626. from {
  2627. opacity: 0;
  2628. -webkit-transform: translate3d(0, 2000px, 0);
  2629. transform: translate3d(0, 2000px, 0); }
  2630. to {
  2631. opacity: 1;
  2632. -webkit-transform: translate3d(0, 0, 0);
  2633. transform: translate3d(0, 0, 0); } }
  2634. .fadeInUpBig {
  2635. -webkit-animation-name: fadeInUpBig;
  2636. animation-name: fadeInUpBig; }
  2637. @-webkit-keyframes fadeOutDownBig {
  2638. from {
  2639. opacity: 1; }
  2640. to {
  2641. opacity: 0;
  2642. -webkit-transform: translate3d(0, 2000px, 0);
  2643. transform: translate3d(0, 2000px, 0); } }
  2644. @keyframes fadeOutDownBig {
  2645. from {
  2646. opacity: 1; }
  2647. to {
  2648. opacity: 0;
  2649. -webkit-transform: translate3d(0, 2000px, 0);
  2650. transform: translate3d(0, 2000px, 0); } }
  2651. .fadeOutDownBig {
  2652. -webkit-animation-name: fadeOutDownBig;
  2653. animation-name: fadeOutDownBig; }
  2654. @-webkit-keyframes fadeOutLeftBig {
  2655. from {
  2656. opacity: 1; }
  2657. to {
  2658. opacity: 0;
  2659. -webkit-transform: translate3d(-2000px, 0, 0);
  2660. transform: translate3d(-2000px, 0, 0); } }
  2661. @keyframes fadeOutLeftBig {
  2662. from {
  2663. opacity: 1; }
  2664. to {
  2665. opacity: 0;
  2666. -webkit-transform: translate3d(-2000px, 0, 0);
  2667. transform: translate3d(-2000px, 0, 0); } }
  2668. .fadeOutLeftBig {
  2669. -webkit-animation-name: fadeOutLeftBig;
  2670. animation-name: fadeOutLeftBig; }
  2671. @-webkit-keyframes fadeOutRightBig {
  2672. from {
  2673. opacity: 1; }
  2674. to {
  2675. opacity: 0;
  2676. -webkit-transform: translate3d(2000px, 0, 0);
  2677. transform: translate3d(2000px, 0, 0); } }
  2678. @keyframes fadeOutRightBig {
  2679. from {
  2680. opacity: 1; }
  2681. to {
  2682. opacity: 0;
  2683. -webkit-transform: translate3d(2000px, 0, 0);
  2684. transform: translate3d(2000px, 0, 0); } }
  2685. .fadeOutRightBig {
  2686. -webkit-animation-name: fadeOutRightBig;
  2687. animation-name: fadeOutRightBig; }
  2688. @-webkit-keyframes fadeOutUpBig {
  2689. from {
  2690. opacity: 1; }
  2691. to {
  2692. opacity: 0;
  2693. -webkit-transform: translate3d(0, -2000px, 0);
  2694. transform: translate3d(0, -2000px, 0); } }
  2695. @keyframes fadeOutUpBig {
  2696. from {
  2697. opacity: 1; }
  2698. to {
  2699. opacity: 0;
  2700. -webkit-transform: translate3d(0, -2000px, 0);
  2701. transform: translate3d(0, -2000px, 0); } }
  2702. .fadeOutUpBig {
  2703. -webkit-animation-name: fadeOutUpBig;
  2704. animation-name: fadeOutUpBig; }
  2705. @-webkit-keyframes flip {
  2706. from {
  2707. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  2708. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  2709. -webkit-animation-timing-function: ease-out;
  2710. animation-timing-function: ease-out; }
  2711. 40% {
  2712. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  2713. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  2714. -webkit-animation-timing-function: ease-out;
  2715. animation-timing-function: ease-out; }
  2716. 50% {
  2717. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  2718. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  2719. -webkit-animation-timing-function: ease-in;
  2720. animation-timing-function: ease-in; }
  2721. 80% {
  2722. -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  2723. transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  2724. -webkit-animation-timing-function: ease-in;
  2725. animation-timing-function: ease-in; }
  2726. to {
  2727. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  2728. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  2729. -webkit-animation-timing-function: ease-in;
  2730. animation-timing-function: ease-in; } }
  2731. @keyframes flip {
  2732. from {
  2733. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  2734. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  2735. -webkit-animation-timing-function: ease-out;
  2736. animation-timing-function: ease-out; }
  2737. 40% {
  2738. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  2739. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  2740. -webkit-animation-timing-function: ease-out;
  2741. animation-timing-function: ease-out; }
  2742. 50% {
  2743. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  2744. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  2745. -webkit-animation-timing-function: ease-in;
  2746. animation-timing-function: ease-in; }
  2747. 80% {
  2748. -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  2749. transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  2750. -webkit-animation-timing-function: ease-in;
  2751. animation-timing-function: ease-in; }
  2752. to {
  2753. -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  2754. transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  2755. -webkit-animation-timing-function: ease-in;
  2756. animation-timing-function: ease-in; } }
  2757. .flip {
  2758. -webkit-backface-visibility: visible;
  2759. backface-visibility: visible;
  2760. -webkit-animation-name: flip;
  2761. animation-name: flip; }
  2762. @-webkit-keyframes flipInX {
  2763. from {
  2764. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  2765. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  2766. -webkit-animation-timing-function: ease-in;
  2767. animation-timing-function: ease-in;
  2768. opacity: 0; }
  2769. 40% {
  2770. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  2771. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  2772. -webkit-animation-timing-function: ease-in;
  2773. animation-timing-function: ease-in; }
  2774. 60% {
  2775. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  2776. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  2777. opacity: 1; }
  2778. 80% {
  2779. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  2780. transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  2781. to {
  2782. -webkit-transform: perspective(400px);
  2783. transform: perspective(400px); } }
  2784. @keyframes flipInX {
  2785. from {
  2786. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  2787. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  2788. -webkit-animation-timing-function: ease-in;
  2789. animation-timing-function: ease-in;
  2790. opacity: 0; }
  2791. 40% {
  2792. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  2793. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  2794. -webkit-animation-timing-function: ease-in;
  2795. animation-timing-function: ease-in; }
  2796. 60% {
  2797. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  2798. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  2799. opacity: 1; }
  2800. 80% {
  2801. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  2802. transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  2803. to {
  2804. -webkit-transform: perspective(400px);
  2805. transform: perspective(400px); } }
  2806. .flipInX {
  2807. -webkit-backface-visibility: visible !important;
  2808. backface-visibility: visible !important;
  2809. -webkit-animation-name: flipInX;
  2810. animation-name: flipInX; }
  2811. @-webkit-keyframes flipInY {
  2812. from {
  2813. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  2814. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  2815. -webkit-animation-timing-function: ease-in;
  2816. animation-timing-function: ease-in;
  2817. opacity: 0; }
  2818. 40% {
  2819. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  2820. transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  2821. -webkit-animation-timing-function: ease-in;
  2822. animation-timing-function: ease-in; }
  2823. 60% {
  2824. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  2825. transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  2826. opacity: 1; }
  2827. 80% {
  2828. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  2829. transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  2830. to {
  2831. -webkit-transform: perspective(400px);
  2832. transform: perspective(400px); } }
  2833. @keyframes flipInY {
  2834. from {
  2835. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  2836. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  2837. -webkit-animation-timing-function: ease-in;
  2838. animation-timing-function: ease-in;
  2839. opacity: 0; }
  2840. 40% {
  2841. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  2842. transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  2843. -webkit-animation-timing-function: ease-in;
  2844. animation-timing-function: ease-in; }
  2845. 60% {
  2846. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  2847. transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  2848. opacity: 1; }
  2849. 80% {
  2850. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  2851. transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  2852. to {
  2853. -webkit-transform: perspective(400px);
  2854. transform: perspective(400px); } }
  2855. .flipInY {
  2856. -webkit-backface-visibility: visible !important;
  2857. backface-visibility: visible !important;
  2858. -webkit-animation-name: flipInY;
  2859. animation-name: flipInY; }
  2860. @-webkit-keyframes flipOutX {
  2861. from {
  2862. -webkit-transform: perspective(400px);
  2863. transform: perspective(400px); }
  2864. 30% {
  2865. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  2866. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  2867. opacity: 1; }
  2868. to {
  2869. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  2870. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  2871. opacity: 0; } }
  2872. @keyframes flipOutX {
  2873. from {
  2874. -webkit-transform: perspective(400px);
  2875. transform: perspective(400px); }
  2876. 30% {
  2877. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  2878. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  2879. opacity: 1; }
  2880. to {
  2881. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  2882. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  2883. opacity: 0; } }
  2884. .flipOutX {
  2885. -webkit-animation-duration: 0.75s;
  2886. animation-duration: 0.75s;
  2887. -webkit-animation-name: flipOutX;
  2888. animation-name: flipOutX;
  2889. -webkit-backface-visibility: visible !important;
  2890. backface-visibility: visible !important; }
  2891. @-webkit-keyframes flipOutY {
  2892. from {
  2893. -webkit-transform: perspective(400px);
  2894. transform: perspective(400px); }
  2895. 30% {
  2896. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  2897. transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  2898. opacity: 1; }
  2899. to {
  2900. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  2901. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  2902. opacity: 0; } }
  2903. @keyframes flipOutY {
  2904. from {
  2905. -webkit-transform: perspective(400px);
  2906. transform: perspective(400px); }
  2907. 30% {
  2908. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  2909. transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  2910. opacity: 1; }
  2911. to {
  2912. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  2913. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  2914. opacity: 0; } }
  2915. .flipOutY {
  2916. -webkit-animation-duration: 0.75s;
  2917. animation-duration: 0.75s;
  2918. -webkit-backface-visibility: visible !important;
  2919. backface-visibility: visible !important;
  2920. -webkit-animation-name: flipOutY;
  2921. animation-name: flipOutY; }
  2922. @-webkit-keyframes lightSpeedIn {
  2923. from {
  2924. -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
  2925. transform: translate3d(100%, 0, 0) skewX(-30deg);
  2926. opacity: 0; }
  2927. 60% {
  2928. -webkit-transform: skewX(20deg);
  2929. transform: skewX(20deg);
  2930. opacity: 1; }
  2931. 80% {
  2932. -webkit-transform: skewX(-5deg);
  2933. transform: skewX(-5deg); }
  2934. to {
  2935. -webkit-transform: translate3d(0, 0, 0);
  2936. transform: translate3d(0, 0, 0); } }
  2937. @keyframes lightSpeedIn {
  2938. from {
  2939. -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
  2940. transform: translate3d(100%, 0, 0) skewX(-30deg);
  2941. opacity: 0; }
  2942. 60% {
  2943. -webkit-transform: skewX(20deg);
  2944. transform: skewX(20deg);
  2945. opacity: 1; }
  2946. 80% {
  2947. -webkit-transform: skewX(-5deg);
  2948. transform: skewX(-5deg); }
  2949. to {
  2950. -webkit-transform: translate3d(0, 0, 0);
  2951. transform: translate3d(0, 0, 0); } }
  2952. .lightSpeedIn {
  2953. -webkit-animation-name: lightSpeedIn;
  2954. animation-name: lightSpeedIn;
  2955. -webkit-animation-timing-function: ease-out;
  2956. animation-timing-function: ease-out; }
  2957. @-webkit-keyframes lightSpeedOut {
  2958. from {
  2959. opacity: 1; }
  2960. to {
  2961. -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
  2962. transform: translate3d(100%, 0, 0) skewX(30deg);
  2963. opacity: 0; } }
  2964. @keyframes lightSpeedOut {
  2965. from {
  2966. opacity: 1; }
  2967. to {
  2968. -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
  2969. transform: translate3d(100%, 0, 0) skewX(30deg);
  2970. opacity: 0; } }
  2971. .lightSpeedOut {
  2972. -webkit-animation-name: lightSpeedOut;
  2973. animation-name: lightSpeedOut;
  2974. -webkit-animation-timing-function: ease-in;
  2975. animation-timing-function: ease-in; }
  2976. @-webkit-keyframes rotateIn {
  2977. from {
  2978. -webkit-transform-origin: center;
  2979. transform-origin: center;
  2980. -webkit-transform: rotate3d(0, 0, 1, -200deg);
  2981. transform: rotate3d(0, 0, 1, -200deg);
  2982. opacity: 0; }
  2983. to {
  2984. -webkit-transform-origin: center;
  2985. transform-origin: center;
  2986. -webkit-transform: translate3d(0, 0, 0);
  2987. transform: translate3d(0, 0, 0);
  2988. opacity: 1; } }
  2989. @keyframes rotateIn {
  2990. from {
  2991. -webkit-transform-origin: center;
  2992. transform-origin: center;
  2993. -webkit-transform: rotate3d(0, 0, 1, -200deg);
  2994. transform: rotate3d(0, 0, 1, -200deg);
  2995. opacity: 0; }
  2996. to {
  2997. -webkit-transform-origin: center;
  2998. transform-origin: center;
  2999. -webkit-transform: translate3d(0, 0, 0);
  3000. transform: translate3d(0, 0, 0);
  3001. opacity: 1; } }
  3002. .rotateIn {
  3003. -webkit-animation-name: rotateIn;
  3004. animation-name: rotateIn; }
  3005. @-webkit-keyframes rotateInDownLeft {
  3006. from {
  3007. -webkit-transform-origin: left bottom;
  3008. transform-origin: left bottom;
  3009. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  3010. transform: rotate3d(0, 0, 1, -45deg);
  3011. opacity: 0; }
  3012. to {
  3013. -webkit-transform-origin: left bottom;
  3014. transform-origin: left bottom;
  3015. -webkit-transform: translate3d(0, 0, 0);
  3016. transform: translate3d(0, 0, 0);
  3017. opacity: 1; } }
  3018. @keyframes rotateInDownLeft {
  3019. from {
  3020. -webkit-transform-origin: left bottom;
  3021. transform-origin: left bottom;
  3022. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  3023. transform: rotate3d(0, 0, 1, -45deg);
  3024. opacity: 0; }
  3025. to {
  3026. -webkit-transform-origin: left bottom;
  3027. transform-origin: left bottom;
  3028. -webkit-transform: translate3d(0, 0, 0);
  3029. transform: translate3d(0, 0, 0);
  3030. opacity: 1; } }
  3031. .rotateInDownLeft {
  3032. -webkit-animation-name: rotateInDownLeft;
  3033. animation-name: rotateInDownLeft; }
  3034. @-webkit-keyframes rotateInDownRight {
  3035. from {
  3036. -webkit-transform-origin: right bottom;
  3037. transform-origin: right bottom;
  3038. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  3039. transform: rotate3d(0, 0, 1, 45deg);
  3040. opacity: 0; }
  3041. to {
  3042. -webkit-transform-origin: right bottom;
  3043. transform-origin: right bottom;
  3044. -webkit-transform: translate3d(0, 0, 0);
  3045. transform: translate3d(0, 0, 0);
  3046. opacity: 1; } }
  3047. @keyframes rotateInDownRight {
  3048. from {
  3049. -webkit-transform-origin: right bottom;
  3050. transform-origin: right bottom;
  3051. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  3052. transform: rotate3d(0, 0, 1, 45deg);
  3053. opacity: 0; }
  3054. to {
  3055. -webkit-transform-origin: right bottom;
  3056. transform-origin: right bottom;
  3057. -webkit-transform: translate3d(0, 0, 0);
  3058. transform: translate3d(0, 0, 0);
  3059. opacity: 1; } }
  3060. .rotateInDownRight {
  3061. -webkit-animation-name: rotateInDownRight;
  3062. animation-name: rotateInDownRight; }
  3063. @-webkit-keyframes rotateInUpLeft {
  3064. from {
  3065. -webkit-transform-origin: left bottom;
  3066. transform-origin: left bottom;
  3067. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  3068. transform: rotate3d(0, 0, 1, 45deg);
  3069. opacity: 0; }
  3070. to {
  3071. -webkit-transform-origin: left bottom;
  3072. transform-origin: left bottom;
  3073. -webkit-transform: translate3d(0, 0, 0);
  3074. transform: translate3d(0, 0, 0);
  3075. opacity: 1; } }
  3076. @keyframes rotateInUpLeft {
  3077. from {
  3078. -webkit-transform-origin: left bottom;
  3079. transform-origin: left bottom;
  3080. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  3081. transform: rotate3d(0, 0, 1, 45deg);
  3082. opacity: 0; }
  3083. to {
  3084. -webkit-transform-origin: left bottom;
  3085. transform-origin: left bottom;
  3086. -webkit-transform: translate3d(0, 0, 0);
  3087. transform: translate3d(0, 0, 0);
  3088. opacity: 1; } }
  3089. .rotateInUpLeft {
  3090. -webkit-animation-name: rotateInUpLeft;
  3091. animation-name: rotateInUpLeft; }
  3092. @-webkit-keyframes rotateInUpRight {
  3093. from {
  3094. -webkit-transform-origin: right bottom;
  3095. transform-origin: right bottom;
  3096. -webkit-transform: rotate3d(0, 0, 1, -90deg);
  3097. transform: rotate3d(0, 0, 1, -90deg);
  3098. opacity: 0; }
  3099. to {
  3100. -webkit-transform-origin: right bottom;
  3101. transform-origin: right bottom;
  3102. -webkit-transform: translate3d(0, 0, 0);
  3103. transform: translate3d(0, 0, 0);
  3104. opacity: 1; } }
  3105. @keyframes rotateInUpRight {
  3106. from {
  3107. -webkit-transform-origin: right bottom;
  3108. transform-origin: right bottom;
  3109. -webkit-transform: rotate3d(0, 0, 1, -90deg);
  3110. transform: rotate3d(0, 0, 1, -90deg);
  3111. opacity: 0; }
  3112. to {
  3113. -webkit-transform-origin: right bottom;
  3114. transform-origin: right bottom;
  3115. -webkit-transform: translate3d(0, 0, 0);
  3116. transform: translate3d(0, 0, 0);
  3117. opacity: 1; } }
  3118. .rotateInUpRight {
  3119. -webkit-animation-name: rotateInUpRight;
  3120. animation-name: rotateInUpRight; }
  3121. @-webkit-keyframes rotateOut {
  3122. from {
  3123. -webkit-transform-origin: center;
  3124. transform-origin: center;
  3125. opacity: 1; }
  3126. to {
  3127. -webkit-transform-origin: center;
  3128. transform-origin: center;
  3129. -webkit-transform: rotate3d(0, 0, 1, 200deg);
  3130. transform: rotate3d(0, 0, 1, 200deg);
  3131. opacity: 0; } }
  3132. @keyframes rotateOut {
  3133. from {
  3134. -webkit-transform-origin: center;
  3135. transform-origin: center;
  3136. opacity: 1; }
  3137. to {
  3138. -webkit-transform-origin: center;
  3139. transform-origin: center;
  3140. -webkit-transform: rotate3d(0, 0, 1, 200deg);
  3141. transform: rotate3d(0, 0, 1, 200deg);
  3142. opacity: 0; } }
  3143. .rotateOut {
  3144. -webkit-animation-name: rotateOut;
  3145. animation-name: rotateOut; }
  3146. @-webkit-keyframes rotateOutDownLeft {
  3147. from {
  3148. -webkit-transform-origin: left bottom;
  3149. transform-origin: left bottom;
  3150. opacity: 1; }
  3151. to {
  3152. -webkit-transform-origin: left bottom;
  3153. transform-origin: left bottom;
  3154. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  3155. transform: rotate3d(0, 0, 1, 45deg);
  3156. opacity: 0; } }
  3157. @keyframes rotateOutDownLeft {
  3158. from {
  3159. -webkit-transform-origin: left bottom;
  3160. transform-origin: left bottom;
  3161. opacity: 1; }
  3162. to {
  3163. -webkit-transform-origin: left bottom;
  3164. transform-origin: left bottom;
  3165. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  3166. transform: rotate3d(0, 0, 1, 45deg);
  3167. opacity: 0; } }
  3168. .rotateOutDownLeft {
  3169. -webkit-animation-name: rotateOutDownLeft;
  3170. animation-name: rotateOutDownLeft; }
  3171. @-webkit-keyframes rotateOutDownRight {
  3172. from {
  3173. -webkit-transform-origin: right bottom;
  3174. transform-origin: right bottom;
  3175. opacity: 1; }
  3176. to {
  3177. -webkit-transform-origin: right bottom;
  3178. transform-origin: right bottom;
  3179. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  3180. transform: rotate3d(0, 0, 1, -45deg);
  3181. opacity: 0; } }
  3182. @keyframes rotateOutDownRight {
  3183. from {
  3184. -webkit-transform-origin: right bottom;
  3185. transform-origin: right bottom;
  3186. opacity: 1; }
  3187. to {
  3188. -webkit-transform-origin: right bottom;
  3189. transform-origin: right bottom;
  3190. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  3191. transform: rotate3d(0, 0, 1, -45deg);
  3192. opacity: 0; } }
  3193. .rotateOutDownRight {
  3194. -webkit-animation-name: rotateOutDownRight;
  3195. animation-name: rotateOutDownRight; }
  3196. @-webkit-keyframes rotateOutUpLeft {
  3197. from {
  3198. -webkit-transform-origin: left bottom;
  3199. transform-origin: left bottom;
  3200. opacity: 1; }
  3201. to {
  3202. -webkit-transform-origin: left bottom;
  3203. transform-origin: left bottom;
  3204. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  3205. transform: rotate3d(0, 0, 1, -45deg);
  3206. opacity: 0; } }
  3207. @keyframes rotateOutUpLeft {
  3208. from {
  3209. -webkit-transform-origin: left bottom;
  3210. transform-origin: left bottom;
  3211. opacity: 1; }
  3212. to {
  3213. -webkit-transform-origin: left bottom;
  3214. transform-origin: left bottom;
  3215. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  3216. transform: rotate3d(0, 0, 1, -45deg);
  3217. opacity: 0; } }
  3218. .rotateOutUpLeft {
  3219. -webkit-animation-name: rotateOutUpLeft;
  3220. animation-name: rotateOutUpLeft; }
  3221. @-webkit-keyframes rotateOutUpRight {
  3222. from {
  3223. -webkit-transform-origin: right bottom;
  3224. transform-origin: right bottom;
  3225. opacity: 1; }
  3226. to {
  3227. -webkit-transform-origin: right bottom;
  3228. transform-origin: right bottom;
  3229. -webkit-transform: rotate3d(0, 0, 1, 90deg);
  3230. transform: rotate3d(0, 0, 1, 90deg);
  3231. opacity: 0; } }
  3232. @keyframes rotateOutUpRight {
  3233. from {
  3234. -webkit-transform-origin: right bottom;
  3235. transform-origin: right bottom;
  3236. opacity: 1; }
  3237. to {
  3238. -webkit-transform-origin: right bottom;
  3239. transform-origin: right bottom;
  3240. -webkit-transform: rotate3d(0, 0, 1, 90deg);
  3241. transform: rotate3d(0, 0, 1, 90deg);
  3242. opacity: 0; } }
  3243. .rotateOutUpRight {
  3244. -webkit-animation-name: rotateOutUpRight;
  3245. animation-name: rotateOutUpRight; }
  3246. @-webkit-keyframes hinge {
  3247. 0% {
  3248. -webkit-transform-origin: top left;
  3249. transform-origin: top left;
  3250. -webkit-animation-timing-function: ease-in-out;
  3251. animation-timing-function: ease-in-out; }
  3252. 20%,
  3253. 60% {
  3254. -webkit-transform: rotate3d(0, 0, 1, 80deg);
  3255. transform: rotate3d(0, 0, 1, 80deg);
  3256. -webkit-transform-origin: top left;
  3257. transform-origin: top left;
  3258. -webkit-animation-timing-function: ease-in-out;
  3259. animation-timing-function: ease-in-out; }
  3260. 40%,
  3261. 80% {
  3262. -webkit-transform: rotate3d(0, 0, 1, 60deg);
  3263. transform: rotate3d(0, 0, 1, 60deg);
  3264. -webkit-transform-origin: top left;
  3265. transform-origin: top left;
  3266. -webkit-animation-timing-function: ease-in-out;
  3267. animation-timing-function: ease-in-out;
  3268. opacity: 1; }
  3269. to {
  3270. -webkit-transform: translate3d(0, 700px, 0);
  3271. transform: translate3d(0, 700px, 0);
  3272. opacity: 0; } }
  3273. @keyframes hinge {
  3274. 0% {
  3275. -webkit-transform-origin: top left;
  3276. transform-origin: top left;
  3277. -webkit-animation-timing-function: ease-in-out;
  3278. animation-timing-function: ease-in-out; }
  3279. 20%,
  3280. 60% {
  3281. -webkit-transform: rotate3d(0, 0, 1, 80deg);
  3282. transform: rotate3d(0, 0, 1, 80deg);
  3283. -webkit-transform-origin: top left;
  3284. transform-origin: top left;
  3285. -webkit-animation-timing-function: ease-in-out;
  3286. animation-timing-function: ease-in-out; }
  3287. 40%,
  3288. 80% {
  3289. -webkit-transform: rotate3d(0, 0, 1, 60deg);
  3290. transform: rotate3d(0, 0, 1, 60deg);
  3291. -webkit-transform-origin: top left;
  3292. transform-origin: top left;
  3293. -webkit-animation-timing-function: ease-in-out;
  3294. animation-timing-function: ease-in-out;
  3295. opacity: 1; }
  3296. to {
  3297. -webkit-transform: translate3d(0, 700px, 0);
  3298. transform: translate3d(0, 700px, 0);
  3299. opacity: 0; } }
  3300. .hinge {
  3301. -webkit-animation-duration: 2s;
  3302. animation-duration: 2s;
  3303. -webkit-animation-name: hinge;
  3304. animation-name: hinge; }
  3305. @-webkit-keyframes jackInTheBox {
  3306. from {
  3307. opacity: 0;
  3308. -webkit-transform: scale(0.1) rotate(30deg);
  3309. transform: scale(0.1) rotate(30deg);
  3310. -webkit-transform-origin: center bottom;
  3311. transform-origin: center bottom; }
  3312. 50% {
  3313. -webkit-transform: rotate(-10deg);
  3314. transform: rotate(-10deg); }
  3315. 70% {
  3316. -webkit-transform: rotate(3deg);
  3317. transform: rotate(3deg); }
  3318. to {
  3319. opacity: 1;
  3320. -webkit-transform: scale(1);
  3321. transform: scale(1); } }
  3322. @keyframes jackInTheBox {
  3323. from {
  3324. opacity: 0;
  3325. -webkit-transform: scale(0.1) rotate(30deg);
  3326. transform: scale(0.1) rotate(30deg);
  3327. -webkit-transform-origin: center bottom;
  3328. transform-origin: center bottom; }
  3329. 50% {
  3330. -webkit-transform: rotate(-10deg);
  3331. transform: rotate(-10deg); }
  3332. 70% {
  3333. -webkit-transform: rotate(3deg);
  3334. transform: rotate(3deg); }
  3335. to {
  3336. opacity: 1;
  3337. -webkit-transform: scale(1);
  3338. transform: scale(1); } }
  3339. .jackInTheBox {
  3340. -webkit-animation-name: jackInTheBox;
  3341. animation-name: jackInTheBox; }
  3342. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  3343. @-webkit-keyframes rollIn {
  3344. from {
  3345. opacity: 0;
  3346. -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  3347. transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  3348. to {
  3349. opacity: 1;
  3350. -webkit-transform: translate3d(0, 0, 0);
  3351. transform: translate3d(0, 0, 0); } }
  3352. @keyframes rollIn {
  3353. from {
  3354. opacity: 0;
  3355. -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  3356. transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  3357. to {
  3358. opacity: 1;
  3359. -webkit-transform: translate3d(0, 0, 0);
  3360. transform: translate3d(0, 0, 0); } }
  3361. .rollIn {
  3362. -webkit-animation-name: rollIn;
  3363. animation-name: rollIn; }
  3364. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  3365. @-webkit-keyframes rollOut {
  3366. from {
  3367. opacity: 1; }
  3368. to {
  3369. opacity: 0;
  3370. -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  3371. transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
  3372. @keyframes rollOut {
  3373. from {
  3374. opacity: 1; }
  3375. to {
  3376. opacity: 0;
  3377. -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  3378. transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
  3379. .rollOut {
  3380. -webkit-animation-name: rollOut;
  3381. animation-name: rollOut; }
  3382. @-webkit-keyframes zoomIn {
  3383. from {
  3384. opacity: 0;
  3385. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  3386. transform: scale3d(0.3, 0.3, 0.3); }
  3387. 50% {
  3388. opacity: 1; } }
  3389. @keyframes zoomIn {
  3390. from {
  3391. opacity: 0;
  3392. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  3393. transform: scale3d(0.3, 0.3, 0.3); }
  3394. 50% {
  3395. opacity: 1; } }
  3396. .zoomIn {
  3397. -webkit-animation-name: zoomIn;
  3398. animation-name: zoomIn; }
  3399. @-webkit-keyframes zoomInDown {
  3400. from {
  3401. opacity: 0;
  3402. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  3403. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  3404. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3405. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3406. 60% {
  3407. opacity: 1;
  3408. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  3409. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  3410. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3411. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3412. @keyframes zoomInDown {
  3413. from {
  3414. opacity: 0;
  3415. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  3416. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  3417. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3418. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3419. 60% {
  3420. opacity: 1;
  3421. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  3422. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  3423. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3424. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3425. .zoomInDown {
  3426. -webkit-animation-name: zoomInDown;
  3427. animation-name: zoomInDown; }
  3428. @-webkit-keyframes zoomInLeft {
  3429. from {
  3430. opacity: 0;
  3431. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  3432. transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  3433. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3434. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3435. 60% {
  3436. opacity: 1;
  3437. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  3438. transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  3439. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3440. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3441. @keyframes zoomInLeft {
  3442. from {
  3443. opacity: 0;
  3444. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  3445. transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  3446. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3447. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3448. 60% {
  3449. opacity: 1;
  3450. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  3451. transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  3452. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3453. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3454. .zoomInLeft {
  3455. -webkit-animation-name: zoomInLeft;
  3456. animation-name: zoomInLeft; }
  3457. @-webkit-keyframes zoomInRight {
  3458. from {
  3459. opacity: 0;
  3460. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  3461. transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  3462. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3463. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3464. 60% {
  3465. opacity: 1;
  3466. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  3467. transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  3468. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3469. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3470. @keyframes zoomInRight {
  3471. from {
  3472. opacity: 0;
  3473. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  3474. transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  3475. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3476. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3477. 60% {
  3478. opacity: 1;
  3479. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  3480. transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  3481. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3482. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3483. .zoomInRight {
  3484. -webkit-animation-name: zoomInRight;
  3485. animation-name: zoomInRight; }
  3486. @-webkit-keyframes zoomInUp {
  3487. from {
  3488. opacity: 0;
  3489. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  3490. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  3491. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3492. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3493. 60% {
  3494. opacity: 1;
  3495. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  3496. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  3497. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3498. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3499. @keyframes zoomInUp {
  3500. from {
  3501. opacity: 0;
  3502. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  3503. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  3504. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3505. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3506. 60% {
  3507. opacity: 1;
  3508. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  3509. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  3510. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3511. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3512. .zoomInUp {
  3513. -webkit-animation-name: zoomInUp;
  3514. animation-name: zoomInUp; }
  3515. @-webkit-keyframes zoomOut {
  3516. from {
  3517. opacity: 1; }
  3518. 50% {
  3519. opacity: 0;
  3520. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  3521. transform: scale3d(0.3, 0.3, 0.3); }
  3522. to {
  3523. opacity: 0; } }
  3524. @keyframes zoomOut {
  3525. from {
  3526. opacity: 1; }
  3527. 50% {
  3528. opacity: 0;
  3529. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  3530. transform: scale3d(0.3, 0.3, 0.3); }
  3531. to {
  3532. opacity: 0; } }
  3533. .zoomOut {
  3534. -webkit-animation-name: zoomOut;
  3535. animation-name: zoomOut; }
  3536. @-webkit-keyframes zoomOutDown {
  3537. 40% {
  3538. opacity: 1;
  3539. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  3540. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  3541. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3542. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3543. to {
  3544. opacity: 0;
  3545. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  3546. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  3547. -webkit-transform-origin: center bottom;
  3548. transform-origin: center bottom;
  3549. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3550. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3551. @keyframes zoomOutDown {
  3552. 40% {
  3553. opacity: 1;
  3554. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  3555. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  3556. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3557. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3558. to {
  3559. opacity: 0;
  3560. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  3561. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
  3562. -webkit-transform-origin: center bottom;
  3563. transform-origin: center bottom;
  3564. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3565. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3566. .zoomOutDown {
  3567. -webkit-animation-name: zoomOutDown;
  3568. animation-name: zoomOutDown; }
  3569. @-webkit-keyframes zoomOutLeft {
  3570. 40% {
  3571. opacity: 1;
  3572. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  3573. transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  3574. to {
  3575. opacity: 0;
  3576. -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
  3577. transform: scale(0.1) translate3d(-2000px, 0, 0);
  3578. -webkit-transform-origin: left center;
  3579. transform-origin: left center; } }
  3580. @keyframes zoomOutLeft {
  3581. 40% {
  3582. opacity: 1;
  3583. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  3584. transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  3585. to {
  3586. opacity: 0;
  3587. -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
  3588. transform: scale(0.1) translate3d(-2000px, 0, 0);
  3589. -webkit-transform-origin: left center;
  3590. transform-origin: left center; } }
  3591. .zoomOutLeft {
  3592. -webkit-animation-name: zoomOutLeft;
  3593. animation-name: zoomOutLeft; }
  3594. @-webkit-keyframes zoomOutRight {
  3595. 40% {
  3596. opacity: 1;
  3597. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  3598. transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  3599. to {
  3600. opacity: 0;
  3601. -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
  3602. transform: scale(0.1) translate3d(2000px, 0, 0);
  3603. -webkit-transform-origin: right center;
  3604. transform-origin: right center; } }
  3605. @keyframes zoomOutRight {
  3606. 40% {
  3607. opacity: 1;
  3608. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  3609. transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  3610. to {
  3611. opacity: 0;
  3612. -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
  3613. transform: scale(0.1) translate3d(2000px, 0, 0);
  3614. -webkit-transform-origin: right center;
  3615. transform-origin: right center; } }
  3616. .zoomOutRight {
  3617. -webkit-animation-name: zoomOutRight;
  3618. animation-name: zoomOutRight; }
  3619. @-webkit-keyframes zoomOutUp {
  3620. 40% {
  3621. opacity: 1;
  3622. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  3623. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  3624. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3625. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3626. to {
  3627. opacity: 0;
  3628. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
  3629. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
  3630. -webkit-transform-origin: center bottom;
  3631. transform-origin: center bottom;
  3632. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3633. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3634. @keyframes zoomOutUp {
  3635. 40% {
  3636. opacity: 1;
  3637. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  3638. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  3639. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  3640. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  3641. to {
  3642. opacity: 0;
  3643. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
  3644. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
  3645. -webkit-transform-origin: center bottom;
  3646. transform-origin: center bottom;
  3647. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  3648. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
  3649. .zoomOutUp {
  3650. -webkit-animation-name: zoomOutUp;
  3651. animation-name: zoomOutUp; }
  3652. @-webkit-keyframes slideInDown {
  3653. from {
  3654. -webkit-transform: translate3d(0, -100%, 0);
  3655. transform: translate3d(0, -100%, 0);
  3656. visibility: visible; }
  3657. to {
  3658. -webkit-transform: translate3d(0, 0, 0);
  3659. transform: translate3d(0, 0, 0); } }
  3660. @keyframes slideInDown {
  3661. from {
  3662. -webkit-transform: translate3d(0, -100%, 0);
  3663. transform: translate3d(0, -100%, 0);
  3664. visibility: visible; }
  3665. to {
  3666. -webkit-transform: translate3d(0, 0, 0);
  3667. transform: translate3d(0, 0, 0); } }
  3668. .slideInDown {
  3669. -webkit-animation-name: slideInDown;
  3670. animation-name: slideInDown; }
  3671. @-webkit-keyframes slideInLeft {
  3672. from {
  3673. -webkit-transform: translate3d(-100%, 0, 0);
  3674. transform: translate3d(-100%, 0, 0);
  3675. visibility: visible; }
  3676. to {
  3677. -webkit-transform: translate3d(0, 0, 0);
  3678. transform: translate3d(0, 0, 0); } }
  3679. @keyframes slideInLeft {
  3680. from {
  3681. -webkit-transform: translate3d(-100%, 0, 0);
  3682. transform: translate3d(-100%, 0, 0);
  3683. visibility: visible; }
  3684. to {
  3685. -webkit-transform: translate3d(0, 0, 0);
  3686. transform: translate3d(0, 0, 0); } }
  3687. .slideInLeft {
  3688. -webkit-animation-name: slideInLeft;
  3689. animation-name: slideInLeft; }
  3690. @-webkit-keyframes slideInRight {
  3691. from {
  3692. -webkit-transform: translate3d(100%, 0, 0);
  3693. transform: translate3d(100%, 0, 0);
  3694. visibility: visible; }
  3695. to {
  3696. -webkit-transform: translate3d(0, 0, 0);
  3697. transform: translate3d(0, 0, 0); } }
  3698. @keyframes slideInRight {
  3699. from {
  3700. -webkit-transform: translate3d(100%, 0, 0);
  3701. transform: translate3d(100%, 0, 0);
  3702. visibility: visible; }
  3703. to {
  3704. -webkit-transform: translate3d(0, 0, 0);
  3705. transform: translate3d(0, 0, 0); } }
  3706. .slideInRight {
  3707. -webkit-animation-name: slideInRight;
  3708. animation-name: slideInRight; }
  3709. @-webkit-keyframes slideInUp {
  3710. from {
  3711. -webkit-transform: translate3d(0, 100%, 0);
  3712. transform: translate3d(0, 100%, 0);
  3713. visibility: visible; }
  3714. to {
  3715. -webkit-transform: translate3d(0, 0, 0);
  3716. transform: translate3d(0, 0, 0); } }
  3717. @keyframes slideInUp {
  3718. from {
  3719. -webkit-transform: translate3d(0, 100%, 0);
  3720. transform: translate3d(0, 100%, 0);
  3721. visibility: visible; }
  3722. to {
  3723. -webkit-transform: translate3d(0, 0, 0);
  3724. transform: translate3d(0, 0, 0); } }
  3725. .slideInUp {
  3726. -webkit-animation-name: slideInUp;
  3727. animation-name: slideInUp; }
  3728. @-webkit-keyframes slideOutDown {
  3729. from {
  3730. -webkit-transform: translate3d(0, 0, 0);
  3731. transform: translate3d(0, 0, 0); }
  3732. to {
  3733. visibility: hidden;
  3734. -webkit-transform: translate3d(0, 100%, 0);
  3735. transform: translate3d(0, 100%, 0); } }
  3736. @keyframes slideOutDown {
  3737. from {
  3738. -webkit-transform: translate3d(0, 0, 0);
  3739. transform: translate3d(0, 0, 0); }
  3740. to {
  3741. visibility: hidden;
  3742. -webkit-transform: translate3d(0, 100%, 0);
  3743. transform: translate3d(0, 100%, 0); } }
  3744. .slideOutDown {
  3745. -webkit-animation-name: slideOutDown;
  3746. animation-name: slideOutDown; }
  3747. @-webkit-keyframes slideOutLeft {
  3748. from {
  3749. -webkit-transform: translate3d(0, 0, 0);
  3750. transform: translate3d(0, 0, 0); }
  3751. to {
  3752. visibility: hidden;
  3753. -webkit-transform: translate3d(-100%, 0, 0);
  3754. transform: translate3d(-100%, 0, 0); } }
  3755. @keyframes slideOutLeft {
  3756. from {
  3757. -webkit-transform: translate3d(0, 0, 0);
  3758. transform: translate3d(0, 0, 0); }
  3759. to {
  3760. visibility: hidden;
  3761. -webkit-transform: translate3d(-100%, 0, 0);
  3762. transform: translate3d(-100%, 0, 0); } }
  3763. .slideOutLeft {
  3764. -webkit-animation-name: slideOutLeft;
  3765. animation-name: slideOutLeft; }
  3766. @-webkit-keyframes slideOutRight {
  3767. from {
  3768. -webkit-transform: translate3d(0, 0, 0);
  3769. transform: translate3d(0, 0, 0); }
  3770. to {
  3771. visibility: hidden;
  3772. -webkit-transform: translate3d(100%, 0, 0);
  3773. transform: translate3d(100%, 0, 0); } }
  3774. @keyframes slideOutRight {
  3775. from {
  3776. -webkit-transform: translate3d(0, 0, 0);
  3777. transform: translate3d(0, 0, 0); }
  3778. to {
  3779. visibility: hidden;
  3780. -webkit-transform: translate3d(100%, 0, 0);
  3781. transform: translate3d(100%, 0, 0); } }
  3782. .slideOutRight {
  3783. -webkit-animation-name: slideOutRight;
  3784. animation-name: slideOutRight; }
  3785. @-webkit-keyframes slideOutUp {
  3786. from {
  3787. -webkit-transform: translate3d(0, 0, 0);
  3788. transform: translate3d(0, 0, 0); }
  3789. to {
  3790. visibility: hidden;
  3791. -webkit-transform: translate3d(0, -100%, 0);
  3792. transform: translate3d(0, -100%, 0); } }
  3793. @keyframes slideOutUp {
  3794. from {
  3795. -webkit-transform: translate3d(0, 0, 0);
  3796. transform: translate3d(0, 0, 0); }
  3797. to {
  3798. visibility: hidden;
  3799. -webkit-transform: translate3d(0, -100%, 0);
  3800. transform: translate3d(0, -100%, 0); } }
  3801. .slideOutUp {
  3802. -webkit-animation-name: slideOutUp;
  3803. animation-name: slideOutUp; }
  3804. .btn {
  3805. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  3806. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  3807. padding: 0.84rem 2.14rem;
  3808. font-size: 0.81rem;
  3809. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3810. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3811. -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3812. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3813. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3814. margin: 0.375rem;
  3815. border: 0;
  3816. -webkit-border-radius: 0.125rem;
  3817. border-radius: 0.125rem;
  3818. cursor: pointer;
  3819. text-transform: uppercase;
  3820. white-space: normal;
  3821. word-wrap: break-word;
  3822. color: inherit; }
  3823. .btn:hover, .btn:active, .btn:focus {
  3824. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3825. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3826. outline: 0; }
  3827. .btn:not([disabled]):not(.disabled):active, .btn:not([disabled]):not(.disabled).active {
  3828. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3829. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  3830. .btn .fas, .btn .fab, .btn .far {
  3831. position: relative;
  3832. font-size: 0.9rem; }
  3833. .btn .fas.right, .btn .fab.right, .btn .far.right {
  3834. margin-left: 0.3rem; }
  3835. .btn .fas.left, .btn .fab.left, .btn .far.left {
  3836. margin-right: 0.3rem; }
  3837. .btn.btn-lg {
  3838. padding: 1rem 2.4rem;
  3839. font-size: 0.94rem; }
  3840. .btn.btn-lg .fas, .btn.btn-lg .fab, .btn.btn-lg .far {
  3841. font-size: 1rem; }
  3842. .btn.btn-md {
  3843. padding: 0.7rem 1.6rem;
  3844. font-size: 0.7rem; }
  3845. .btn.btn-md .fas, .btn.btn-md .fab, .btn.btn-md .far {
  3846. font-size: 0.8rem; }
  3847. .btn.btn-sm {
  3848. padding: 0.5rem 1.6rem;
  3849. font-size: 0.64rem; }
  3850. .btn.btn-sm .fas, .btn.btn-sm .fab, .btn.btn-sm .far {
  3851. font-size: 0.7rem; }
  3852. .btn.btn-tb {
  3853. padding: 0.3rem 1rem; }
  3854. .btn.disabled:active, .btn.disabled:focus, .btn.disabled:hover, .btn:disabled:active, .btn:disabled:focus, .btn:disabled:hover {
  3855. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  3856. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
  3857. .btn.btn-block {
  3858. margin: inherit; }
  3859. .btn.btn-link {
  3860. -webkit-box-shadow: none;
  3861. box-shadow: none;
  3862. background-color: transparent; }
  3863. .btn.btn-link:active, .btn.btn-link:focus, .btn.btn-link:hover {
  3864. -webkit-box-shadow: none !important;
  3865. box-shadow: none !important;
  3866. background-color: transparent; }
  3867. .btn[class*="btn-outline-"] {
  3868. padding-top: 0.7rem;
  3869. padding-bottom: 0.7rem; }
  3870. .btn[class*="btn-outline-"].btn-lg {
  3871. padding-top: 0.88rem;
  3872. padding-bottom: 0.88rem; }
  3873. .btn[class*="btn-outline-"].btn-md {
  3874. padding-top: 0.58rem;
  3875. padding-bottom: 0.58rem; }
  3876. .btn[class*="btn-outline-"].btn-sm {
  3877. padding-top: 0.38rem;
  3878. padding-bottom: 0.38rem; }
  3879. .btn-group .btn {
  3880. margin: 0; }
  3881. .btn .fa-lg,
  3882. .btn-floating .fa-lg {
  3883. font-size: 1.33333em !important; }
  3884. .btn .fa-xs,
  3885. .btn-floating .fa-xs {
  3886. font-size: .75em !important; }
  3887. .btn .fa-sm,
  3888. .btn-floating .fa-sm {
  3889. font-size: .875em !important; }
  3890. .btn .fa-1x,
  3891. .btn-floating .fa-1x {
  3892. font-size: 1em !important; }
  3893. .btn .fa-2x,
  3894. .btn-floating .fa-2x {
  3895. font-size: 2em !important; }
  3896. .btn .fa-3x,
  3897. .btn-floating .fa-3x {
  3898. font-size: 3em !important; }
  3899. .btn .fa-4x,
  3900. .btn-floating .fa-4x {
  3901. font-size: 4em !important; }
  3902. .btn .fa-5x,
  3903. .btn-floating .fa-5x {
  3904. font-size: 5em !important; }
  3905. .btn .fa-6x,
  3906. .btn-floating .fa-6x {
  3907. font-size: 6em !important; }
  3908. .btn .fa-7x,
  3909. .btn-floating .fa-7x {
  3910. font-size: 7em !important; }
  3911. .btn .fa-8x,
  3912. .btn-floating .fa-8x {
  3913. font-size: 8em !important; }
  3914. .btn .fa-9x,
  3915. .btn-floating .fa-9x {
  3916. font-size: 9em !important; }
  3917. .btn .fa-10x,
  3918. .btn-floating .fa-10x {
  3919. font-size: 10em !important; }
  3920. .btn-primary {
  3921. background-color: #4285f4 !important;
  3922. color: #fff; }
  3923. .btn-primary:hover {
  3924. background-color: #5a95f5;
  3925. color: #fff; }
  3926. .btn-primary:focus, .btn-primary.focus {
  3927. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3928. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  3929. .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  3930. background-color: #0b51c5; }
  3931. .btn-primary.dropdown-toggle {
  3932. background-color: #4285f4 !important; }
  3933. .btn-primary.dropdown-toggle:hover, .btn-primary.dropdown-toggle:focus {
  3934. background-color: #5a95f5 !important; }
  3935. .btn-primary:not([disabled]):not(.disabled):active, .btn-primary:not([disabled]):not(.disabled).active,
  3936. .show > .btn-primary.dropdown-toggle {
  3937. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3938. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3939. background-color: #0b51c5 !important; }
  3940. .btn-primary:not([disabled]):not(.disabled):active:focus, .btn-primary:not([disabled]):not(.disabled).active:focus,
  3941. .show > .btn-primary.dropdown-toggle:focus {
  3942. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3943. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  3944. .primary-ic {
  3945. color: #4285f4 !important; }
  3946. .primary-ic:hover, .primary-ic:focus {
  3947. color: #4285f4; }
  3948. a.btn:not([href]):not([tabindex]),
  3949. a.btn:not([href]):not([tabindex]):focus,
  3950. a.btn:not([href]):not([tabindex]):hover {
  3951. color: #fff; }
  3952. table.table a.btn.btn-primary {
  3953. color: #fff; }
  3954. .btn-outline-primary {
  3955. border: 2px solid #4285f4 !important;
  3956. background-color: transparent !important;
  3957. color: #4285f4 !important; }
  3958. .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary:active:focus, .btn-outline-primary.active {
  3959. border-color: #4285f4 !important;
  3960. background-color: transparent !important;
  3961. color: #4285f4 !important; }
  3962. .btn-outline-primary:not([disabled]):not(.disabled):active, .btn-outline-primary:not([disabled]):not(.disabled).active,
  3963. .show > .btn-outline-primary.dropdown-toggle {
  3964. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3965. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3966. background-color: transparent !important;
  3967. border-color: #4285f4 !important; }
  3968. .btn-outline-primary:not([disabled]):not(.disabled):active:focus, .btn-outline-primary:not([disabled]):not(.disabled).active:focus,
  3969. .show > .btn-outline-primary.dropdown-toggle:focus {
  3970. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3971. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  3972. .btn-danger {
  3973. background-color: #ff3547 !important;
  3974. color: #fff; }
  3975. .btn-danger:hover {
  3976. background-color: #ff4f5e;
  3977. color: #fff; }
  3978. .btn-danger:focus, .btn-danger.focus {
  3979. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3980. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  3981. .btn-danger:focus, .btn-danger:active, .btn-danger.active {
  3982. background-color: #ce0012; }
  3983. .btn-danger.dropdown-toggle {
  3984. background-color: #ff3547 !important; }
  3985. .btn-danger.dropdown-toggle:hover, .btn-danger.dropdown-toggle:focus {
  3986. background-color: #ff4f5e !important; }
  3987. .btn-danger:not([disabled]):not(.disabled):active, .btn-danger:not([disabled]):not(.disabled).active,
  3988. .show > .btn-danger.dropdown-toggle {
  3989. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3990. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3991. background-color: #ce0012 !important; }
  3992. .btn-danger:not([disabled]):not(.disabled):active:focus, .btn-danger:not([disabled]):not(.disabled).active:focus,
  3993. .show > .btn-danger.dropdown-toggle:focus {
  3994. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  3995. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  3996. .danger-ic {
  3997. color: #ff3547 !important; }
  3998. .danger-ic:hover, .danger-ic:focus {
  3999. color: #ff3547; }
  4000. a.btn:not([href]):not([tabindex]),
  4001. a.btn:not([href]):not([tabindex]):focus,
  4002. a.btn:not([href]):not([tabindex]):hover {
  4003. color: #fff; }
  4004. table.table a.btn.btn-danger {
  4005. color: #fff; }
  4006. .btn-outline-danger {
  4007. border: 2px solid #ff3547 !important;
  4008. background-color: transparent !important;
  4009. color: #ff3547 !important; }
  4010. .btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active, .btn-outline-danger:active:focus, .btn-outline-danger.active {
  4011. border-color: #ff3547 !important;
  4012. background-color: transparent !important;
  4013. color: #ff3547 !important; }
  4014. .btn-outline-danger:not([disabled]):not(.disabled):active, .btn-outline-danger:not([disabled]):not(.disabled).active,
  4015. .show > .btn-outline-danger.dropdown-toggle {
  4016. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4017. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4018. background-color: transparent !important;
  4019. border-color: #ff3547 !important; }
  4020. .btn-outline-danger:not([disabled]):not(.disabled):active:focus, .btn-outline-danger:not([disabled]):not(.disabled).active:focus,
  4021. .show > .btn-outline-danger.dropdown-toggle:focus {
  4022. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4023. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4024. .btn-warning {
  4025. background-color: #ffbb33 !important;
  4026. color: #fff; }
  4027. .btn-warning:hover {
  4028. background-color: #ffc44d;
  4029. color: #fff; }
  4030. .btn-warning:focus, .btn-warning.focus {
  4031. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4032. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4033. .btn-warning:focus, .btn-warning:active, .btn-warning.active {
  4034. background-color: #cc8800; }
  4035. .btn-warning.dropdown-toggle {
  4036. background-color: #ffbb33 !important; }
  4037. .btn-warning.dropdown-toggle:hover, .btn-warning.dropdown-toggle:focus {
  4038. background-color: #ffc44d !important; }
  4039. .btn-warning:not([disabled]):not(.disabled):active, .btn-warning:not([disabled]):not(.disabled).active,
  4040. .show > .btn-warning.dropdown-toggle {
  4041. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4042. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4043. background-color: #cc8800 !important; }
  4044. .btn-warning:not([disabled]):not(.disabled):active:focus, .btn-warning:not([disabled]):not(.disabled).active:focus,
  4045. .show > .btn-warning.dropdown-toggle:focus {
  4046. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4047. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4048. .warning-ic {
  4049. color: #ffbb33 !important; }
  4050. .warning-ic:hover, .warning-ic:focus {
  4051. color: #ffbb33; }
  4052. a.btn:not([href]):not([tabindex]),
  4053. a.btn:not([href]):not([tabindex]):focus,
  4054. a.btn:not([href]):not([tabindex]):hover {
  4055. color: #fff; }
  4056. table.table a.btn.btn-warning {
  4057. color: #fff; }
  4058. .btn-outline-warning {
  4059. border: 2px solid #ffbb33 !important;
  4060. background-color: transparent !important;
  4061. color: #ffbb33 !important; }
  4062. .btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning:active, .btn-outline-warning:active:focus, .btn-outline-warning.active {
  4063. border-color: #ffbb33 !important;
  4064. background-color: transparent !important;
  4065. color: #ffbb33 !important; }
  4066. .btn-outline-warning:not([disabled]):not(.disabled):active, .btn-outline-warning:not([disabled]):not(.disabled).active,
  4067. .show > .btn-outline-warning.dropdown-toggle {
  4068. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4069. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4070. background-color: transparent !important;
  4071. border-color: #ffbb33 !important; }
  4072. .btn-outline-warning:not([disabled]):not(.disabled):active:focus, .btn-outline-warning:not([disabled]):not(.disabled).active:focus,
  4073. .show > .btn-outline-warning.dropdown-toggle:focus {
  4074. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4075. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4076. .btn-success {
  4077. background-color: #00c851 !important;
  4078. color: #fff; }
  4079. .btn-success:hover {
  4080. background-color: #00e25b;
  4081. color: #fff; }
  4082. .btn-success:focus, .btn-success.focus {
  4083. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4084. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4085. .btn-success:focus, .btn-success:active, .btn-success.active {
  4086. background-color: #006228; }
  4087. .btn-success.dropdown-toggle {
  4088. background-color: #00c851 !important; }
  4089. .btn-success.dropdown-toggle:hover, .btn-success.dropdown-toggle:focus {
  4090. background-color: #00e25b !important; }
  4091. .btn-success:not([disabled]):not(.disabled):active, .btn-success:not([disabled]):not(.disabled).active,
  4092. .show > .btn-success.dropdown-toggle {
  4093. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4094. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4095. background-color: #006228 !important; }
  4096. .btn-success:not([disabled]):not(.disabled):active:focus, .btn-success:not([disabled]):not(.disabled).active:focus,
  4097. .show > .btn-success.dropdown-toggle:focus {
  4098. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4099. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4100. .success-ic {
  4101. color: #00c851 !important; }
  4102. .success-ic:hover, .success-ic:focus {
  4103. color: #00c851; }
  4104. a.btn:not([href]):not([tabindex]),
  4105. a.btn:not([href]):not([tabindex]):focus,
  4106. a.btn:not([href]):not([tabindex]):hover {
  4107. color: #fff; }
  4108. table.table a.btn.btn-success {
  4109. color: #fff; }
  4110. .btn-outline-success {
  4111. border: 2px solid #00c851 !important;
  4112. background-color: transparent !important;
  4113. color: #00c851 !important; }
  4114. .btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success:active, .btn-outline-success:active:focus, .btn-outline-success.active {
  4115. border-color: #00c851 !important;
  4116. background-color: transparent !important;
  4117. color: #00c851 !important; }
  4118. .btn-outline-success:not([disabled]):not(.disabled):active, .btn-outline-success:not([disabled]):not(.disabled).active,
  4119. .show > .btn-outline-success.dropdown-toggle {
  4120. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4121. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4122. background-color: transparent !important;
  4123. border-color: #00c851 !important; }
  4124. .btn-outline-success:not([disabled]):not(.disabled):active:focus, .btn-outline-success:not([disabled]):not(.disabled).active:focus,
  4125. .show > .btn-outline-success.dropdown-toggle:focus {
  4126. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4127. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4128. .btn-info {
  4129. background-color: #33b5e5 !important;
  4130. color: #fff; }
  4131. .btn-info:hover {
  4132. background-color: #4abde8;
  4133. color: #fff; }
  4134. .btn-info:focus, .btn-info.focus {
  4135. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4136. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4137. .btn-info:focus, .btn-info:active, .btn-info.active {
  4138. background-color: #14799e; }
  4139. .btn-info.dropdown-toggle {
  4140. background-color: #33b5e5 !important; }
  4141. .btn-info.dropdown-toggle:hover, .btn-info.dropdown-toggle:focus {
  4142. background-color: #4abde8 !important; }
  4143. .btn-info:not([disabled]):not(.disabled):active, .btn-info:not([disabled]):not(.disabled).active,
  4144. .show > .btn-info.dropdown-toggle {
  4145. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4146. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4147. background-color: #14799e !important; }
  4148. .btn-info:not([disabled]):not(.disabled):active:focus, .btn-info:not([disabled]):not(.disabled).active:focus,
  4149. .show > .btn-info.dropdown-toggle:focus {
  4150. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4151. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4152. .info-ic {
  4153. color: #33b5e5 !important; }
  4154. .info-ic:hover, .info-ic:focus {
  4155. color: #33b5e5; }
  4156. a.btn:not([href]):not([tabindex]),
  4157. a.btn:not([href]):not([tabindex]):focus,
  4158. a.btn:not([href]):not([tabindex]):hover {
  4159. color: #fff; }
  4160. table.table a.btn.btn-info {
  4161. color: #fff; }
  4162. .btn-outline-info {
  4163. border: 2px solid #33b5e5 !important;
  4164. background-color: transparent !important;
  4165. color: #33b5e5 !important; }
  4166. .btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info:active, .btn-outline-info:active:focus, .btn-outline-info.active {
  4167. border-color: #33b5e5 !important;
  4168. background-color: transparent !important;
  4169. color: #33b5e5 !important; }
  4170. .btn-outline-info:not([disabled]):not(.disabled):active, .btn-outline-info:not([disabled]):not(.disabled).active,
  4171. .show > .btn-outline-info.dropdown-toggle {
  4172. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4173. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4174. background-color: transparent !important;
  4175. border-color: #33b5e5 !important; }
  4176. .btn-outline-info:not([disabled]):not(.disabled):active:focus, .btn-outline-info:not([disabled]):not(.disabled).active:focus,
  4177. .show > .btn-outline-info.dropdown-toggle:focus {
  4178. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4179. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4180. .btn-default {
  4181. background-color: #2bbbad !important;
  4182. color: #fff; }
  4183. .btn-default:hover {
  4184. background-color: #30cfc0;
  4185. color: #fff; }
  4186. .btn-default:focus, .btn-default.focus {
  4187. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4188. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4189. .btn-default:focus, .btn-default:active, .btn-default.active {
  4190. background-color: #186860; }
  4191. .btn-default.dropdown-toggle {
  4192. background-color: #2bbbad !important; }
  4193. .btn-default.dropdown-toggle:hover, .btn-default.dropdown-toggle:focus {
  4194. background-color: #30cfc0 !important; }
  4195. .btn-default:not([disabled]):not(.disabled):active, .btn-default:not([disabled]):not(.disabled).active,
  4196. .show > .btn-default.dropdown-toggle {
  4197. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4198. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4199. background-color: #186860 !important; }
  4200. .btn-default:not([disabled]):not(.disabled):active:focus, .btn-default:not([disabled]):not(.disabled).active:focus,
  4201. .show > .btn-default.dropdown-toggle:focus {
  4202. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4203. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4204. .default-ic {
  4205. color: #2bbbad !important; }
  4206. .default-ic:hover, .default-ic:focus {
  4207. color: #2bbbad; }
  4208. a.btn:not([href]):not([tabindex]),
  4209. a.btn:not([href]):not([tabindex]):focus,
  4210. a.btn:not([href]):not([tabindex]):hover {
  4211. color: #fff; }
  4212. table.table a.btn.btn-default {
  4213. color: #fff; }
  4214. .btn-outline-default {
  4215. border: 2px solid #2bbbad !important;
  4216. background-color: transparent !important;
  4217. color: #2bbbad !important; }
  4218. .btn-outline-default:hover, .btn-outline-default:focus, .btn-outline-default:active, .btn-outline-default:active:focus, .btn-outline-default.active {
  4219. border-color: #2bbbad !important;
  4220. background-color: transparent !important;
  4221. color: #2bbbad !important; }
  4222. .btn-outline-default:not([disabled]):not(.disabled):active, .btn-outline-default:not([disabled]):not(.disabled).active,
  4223. .show > .btn-outline-default.dropdown-toggle {
  4224. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4225. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4226. background-color: transparent !important;
  4227. border-color: #2bbbad !important; }
  4228. .btn-outline-default:not([disabled]):not(.disabled):active:focus, .btn-outline-default:not([disabled]):not(.disabled).active:focus,
  4229. .show > .btn-outline-default.dropdown-toggle:focus {
  4230. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4231. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4232. .btn-secondary {
  4233. background-color: #aa66cc !important;
  4234. color: #fff; }
  4235. .btn-secondary:hover {
  4236. background-color: #b579d2;
  4237. color: #fff; }
  4238. .btn-secondary:focus, .btn-secondary.focus {
  4239. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4240. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4241. .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active {
  4242. background-color: #773399; }
  4243. .btn-secondary.dropdown-toggle {
  4244. background-color: #aa66cc !important; }
  4245. .btn-secondary.dropdown-toggle:hover, .btn-secondary.dropdown-toggle:focus {
  4246. background-color: #b579d2 !important; }
  4247. .btn-secondary:not([disabled]):not(.disabled):active, .btn-secondary:not([disabled]):not(.disabled).active,
  4248. .show > .btn-secondary.dropdown-toggle {
  4249. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4250. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4251. background-color: #773399 !important; }
  4252. .btn-secondary:not([disabled]):not(.disabled):active:focus, .btn-secondary:not([disabled]):not(.disabled).active:focus,
  4253. .show > .btn-secondary.dropdown-toggle:focus {
  4254. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4255. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4256. .secondary-ic {
  4257. color: #aa66cc !important; }
  4258. .secondary-ic:hover, .secondary-ic:focus {
  4259. color: #aa66cc; }
  4260. a.btn:not([href]):not([tabindex]),
  4261. a.btn:not([href]):not([tabindex]):focus,
  4262. a.btn:not([href]):not([tabindex]):hover {
  4263. color: #fff; }
  4264. table.table a.btn.btn-secondary {
  4265. color: #fff; }
  4266. .btn-outline-secondary {
  4267. border: 2px solid #aa66cc !important;
  4268. background-color: transparent !important;
  4269. color: #aa66cc !important; }
  4270. .btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary:active:focus, .btn-outline-secondary.active {
  4271. border-color: #aa66cc !important;
  4272. background-color: transparent !important;
  4273. color: #aa66cc !important; }
  4274. .btn-outline-secondary:not([disabled]):not(.disabled):active, .btn-outline-secondary:not([disabled]):not(.disabled).active,
  4275. .show > .btn-outline-secondary.dropdown-toggle {
  4276. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4277. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4278. background-color: transparent !important;
  4279. border-color: #aa66cc !important; }
  4280. .btn-outline-secondary:not([disabled]):not(.disabled):active:focus, .btn-outline-secondary:not([disabled]):not(.disabled).active:focus,
  4281. .show > .btn-outline-secondary.dropdown-toggle:focus {
  4282. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4283. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4284. .btn-elegant {
  4285. background-color: #2e2e2e !important;
  4286. color: #fff; }
  4287. .btn-elegant:hover {
  4288. background-color: #3b3b3b;
  4289. color: #fff; }
  4290. .btn-elegant:focus, .btn-elegant.focus {
  4291. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4292. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4293. .btn-elegant:focus, .btn-elegant:active, .btn-elegant.active {
  4294. background-color: black; }
  4295. .btn-elegant.dropdown-toggle {
  4296. background-color: #2e2e2e !important; }
  4297. .btn-elegant.dropdown-toggle:hover, .btn-elegant.dropdown-toggle:focus {
  4298. background-color: #3b3b3b !important; }
  4299. .btn-elegant:not([disabled]):not(.disabled):active, .btn-elegant:not([disabled]):not(.disabled).active,
  4300. .show > .btn-elegant.dropdown-toggle {
  4301. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4302. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4303. background-color: black !important; }
  4304. .btn-elegant:not([disabled]):not(.disabled):active:focus, .btn-elegant:not([disabled]):not(.disabled).active:focus,
  4305. .show > .btn-elegant.dropdown-toggle:focus {
  4306. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4307. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4308. .elegant-ic {
  4309. color: #2e2e2e !important; }
  4310. .elegant-ic:hover, .elegant-ic:focus {
  4311. color: #2e2e2e; }
  4312. a.btn:not([href]):not([tabindex]),
  4313. a.btn:not([href]):not([tabindex]):focus,
  4314. a.btn:not([href]):not([tabindex]):hover {
  4315. color: #fff; }
  4316. table.table a.btn.btn-elegant {
  4317. color: #fff; }
  4318. .btn-outline-elegant {
  4319. border: 2px solid #2e2e2e !important;
  4320. background-color: transparent !important;
  4321. color: #2e2e2e !important; }
  4322. .btn-outline-elegant:hover, .btn-outline-elegant:focus, .btn-outline-elegant:active, .btn-outline-elegant:active:focus, .btn-outline-elegant.active {
  4323. border-color: #2e2e2e !important;
  4324. background-color: transparent !important;
  4325. color: #2e2e2e !important; }
  4326. .btn-outline-elegant:not([disabled]):not(.disabled):active, .btn-outline-elegant:not([disabled]):not(.disabled).active,
  4327. .show > .btn-outline-elegant.dropdown-toggle {
  4328. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4329. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4330. background-color: transparent !important;
  4331. border-color: #2e2e2e !important; }
  4332. .btn-outline-elegant:not([disabled]):not(.disabled):active:focus, .btn-outline-elegant:not([disabled]):not(.disabled).active:focus,
  4333. .show > .btn-outline-elegant.dropdown-toggle:focus {
  4334. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4335. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4336. .btn-unique {
  4337. background-color: #880e4f !important;
  4338. color: #fff; }
  4339. .btn-unique:hover {
  4340. background-color: #9f105c;
  4341. color: #fff; }
  4342. .btn-unique:focus, .btn-unique.focus {
  4343. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4344. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4345. .btn-unique:focus, .btn-unique:active, .btn-unique.active {
  4346. background-color: #2c0419; }
  4347. .btn-unique.dropdown-toggle {
  4348. background-color: #880e4f !important; }
  4349. .btn-unique.dropdown-toggle:hover, .btn-unique.dropdown-toggle:focus {
  4350. background-color: #9f105c !important; }
  4351. .btn-unique:not([disabled]):not(.disabled):active, .btn-unique:not([disabled]):not(.disabled).active,
  4352. .show > .btn-unique.dropdown-toggle {
  4353. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4354. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4355. background-color: #2c0419 !important; }
  4356. .btn-unique:not([disabled]):not(.disabled):active:focus, .btn-unique:not([disabled]):not(.disabled).active:focus,
  4357. .show > .btn-unique.dropdown-toggle:focus {
  4358. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4359. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4360. .unique-ic {
  4361. color: #880e4f !important; }
  4362. .unique-ic:hover, .unique-ic:focus {
  4363. color: #880e4f; }
  4364. a.btn:not([href]):not([tabindex]),
  4365. a.btn:not([href]):not([tabindex]):focus,
  4366. a.btn:not([href]):not([tabindex]):hover {
  4367. color: #fff; }
  4368. table.table a.btn.btn-unique {
  4369. color: #fff; }
  4370. .btn-outline-unique {
  4371. border: 2px solid #880e4f !important;
  4372. background-color: transparent !important;
  4373. color: #880e4f !important; }
  4374. .btn-outline-unique:hover, .btn-outline-unique:focus, .btn-outline-unique:active, .btn-outline-unique:active:focus, .btn-outline-unique.active {
  4375. border-color: #880e4f !important;
  4376. background-color: transparent !important;
  4377. color: #880e4f !important; }
  4378. .btn-outline-unique:not([disabled]):not(.disabled):active, .btn-outline-unique:not([disabled]):not(.disabled).active,
  4379. .show > .btn-outline-unique.dropdown-toggle {
  4380. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4381. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4382. background-color: transparent !important;
  4383. border-color: #880e4f !important; }
  4384. .btn-outline-unique:not([disabled]):not(.disabled):active:focus, .btn-outline-unique:not([disabled]):not(.disabled).active:focus,
  4385. .show > .btn-outline-unique.dropdown-toggle:focus {
  4386. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4387. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4388. .btn-dark-green {
  4389. background-color: #388e3c !important;
  4390. color: #fff; }
  4391. .btn-dark-green:hover {
  4392. background-color: #3fa044;
  4393. color: #fff; }
  4394. .btn-dark-green:focus, .btn-dark-green.focus {
  4395. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4396. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4397. .btn-dark-green:focus, .btn-dark-green:active, .btn-dark-green.active {
  4398. background-color: #1b451d; }
  4399. .btn-dark-green.dropdown-toggle {
  4400. background-color: #388e3c !important; }
  4401. .btn-dark-green.dropdown-toggle:hover, .btn-dark-green.dropdown-toggle:focus {
  4402. background-color: #3fa044 !important; }
  4403. .btn-dark-green:not([disabled]):not(.disabled):active, .btn-dark-green:not([disabled]):not(.disabled).active,
  4404. .show > .btn-dark-green.dropdown-toggle {
  4405. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4406. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4407. background-color: #1b451d !important; }
  4408. .btn-dark-green:not([disabled]):not(.disabled):active:focus, .btn-dark-green:not([disabled]):not(.disabled).active:focus,
  4409. .show > .btn-dark-green.dropdown-toggle:focus {
  4410. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4411. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4412. .dark-green-ic {
  4413. color: #388e3c !important; }
  4414. .dark-green-ic:hover, .dark-green-ic:focus {
  4415. color: #388e3c; }
  4416. a.btn:not([href]):not([tabindex]),
  4417. a.btn:not([href]):not([tabindex]):focus,
  4418. a.btn:not([href]):not([tabindex]):hover {
  4419. color: #fff; }
  4420. table.table a.btn.btn-dark-green {
  4421. color: #fff; }
  4422. .btn-outline-dark-green {
  4423. border: 2px solid #388e3c !important;
  4424. background-color: transparent !important;
  4425. color: #388e3c !important; }
  4426. .btn-outline-dark-green:hover, .btn-outline-dark-green:focus, .btn-outline-dark-green:active, .btn-outline-dark-green:active:focus, .btn-outline-dark-green.active {
  4427. border-color: #388e3c !important;
  4428. background-color: transparent !important;
  4429. color: #388e3c !important; }
  4430. .btn-outline-dark-green:not([disabled]):not(.disabled):active, .btn-outline-dark-green:not([disabled]):not(.disabled).active,
  4431. .show > .btn-outline-dark-green.dropdown-toggle {
  4432. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4433. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4434. background-color: transparent !important;
  4435. border-color: #388e3c !important; }
  4436. .btn-outline-dark-green:not([disabled]):not(.disabled):active:focus, .btn-outline-dark-green:not([disabled]):not(.disabled).active:focus,
  4437. .show > .btn-outline-dark-green.dropdown-toggle:focus {
  4438. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4439. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4440. .btn-mdb-color {
  4441. background-color: #59698d !important;
  4442. color: #fff; }
  4443. .btn-mdb-color:hover {
  4444. background-color: #63759d;
  4445. color: #fff; }
  4446. .btn-mdb-color:focus, .btn-mdb-color.focus {
  4447. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4448. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4449. .btn-mdb-color:focus, .btn-mdb-color:active, .btn-mdb-color.active {
  4450. background-color: #323a4e; }
  4451. .btn-mdb-color.dropdown-toggle {
  4452. background-color: #59698d !important; }
  4453. .btn-mdb-color.dropdown-toggle:hover, .btn-mdb-color.dropdown-toggle:focus {
  4454. background-color: #63759d !important; }
  4455. .btn-mdb-color:not([disabled]):not(.disabled):active, .btn-mdb-color:not([disabled]):not(.disabled).active,
  4456. .show > .btn-mdb-color.dropdown-toggle {
  4457. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4458. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4459. background-color: #323a4e !important; }
  4460. .btn-mdb-color:not([disabled]):not(.disabled):active:focus, .btn-mdb-color:not([disabled]):not(.disabled).active:focus,
  4461. .show > .btn-mdb-color.dropdown-toggle:focus {
  4462. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4463. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4464. .mdb-color-ic {
  4465. color: #59698d !important; }
  4466. .mdb-color-ic:hover, .mdb-color-ic:focus {
  4467. color: #59698d; }
  4468. a.btn:not([href]):not([tabindex]),
  4469. a.btn:not([href]):not([tabindex]):focus,
  4470. a.btn:not([href]):not([tabindex]):hover {
  4471. color: #fff; }
  4472. table.table a.btn.btn-mdb-color {
  4473. color: #fff; }
  4474. .btn-outline-mdb-color {
  4475. border: 2px solid #59698d !important;
  4476. background-color: transparent !important;
  4477. color: #59698d !important; }
  4478. .btn-outline-mdb-color:hover, .btn-outline-mdb-color:focus, .btn-outline-mdb-color:active, .btn-outline-mdb-color:active:focus, .btn-outline-mdb-color.active {
  4479. border-color: #59698d !important;
  4480. background-color: transparent !important;
  4481. color: #59698d !important; }
  4482. .btn-outline-mdb-color:not([disabled]):not(.disabled):active, .btn-outline-mdb-color:not([disabled]):not(.disabled).active,
  4483. .show > .btn-outline-mdb-color.dropdown-toggle {
  4484. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4485. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4486. background-color: transparent !important;
  4487. border-color: #59698d !important; }
  4488. .btn-outline-mdb-color:not([disabled]):not(.disabled):active:focus, .btn-outline-mdb-color:not([disabled]):not(.disabled).active:focus,
  4489. .show > .btn-outline-mdb-color.dropdown-toggle:focus {
  4490. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4491. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4492. .btn-red {
  4493. background-color: #d32f2f !important;
  4494. color: #fff; }
  4495. .btn-red:hover {
  4496. background-color: #d74444;
  4497. color: #fff; }
  4498. .btn-red:focus, .btn-red.focus {
  4499. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4500. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4501. .btn-red:focus, .btn-red:active, .btn-red.active {
  4502. background-color: #811b1b; }
  4503. .btn-red.dropdown-toggle {
  4504. background-color: #d32f2f !important; }
  4505. .btn-red.dropdown-toggle:hover, .btn-red.dropdown-toggle:focus {
  4506. background-color: #d74444 !important; }
  4507. .btn-red:not([disabled]):not(.disabled):active, .btn-red:not([disabled]):not(.disabled).active,
  4508. .show > .btn-red.dropdown-toggle {
  4509. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4510. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4511. background-color: #811b1b !important; }
  4512. .btn-red:not([disabled]):not(.disabled):active:focus, .btn-red:not([disabled]):not(.disabled).active:focus,
  4513. .show > .btn-red.dropdown-toggle:focus {
  4514. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4515. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4516. .red-ic {
  4517. color: #d32f2f !important; }
  4518. .red-ic:hover, .red-ic:focus {
  4519. color: #d32f2f; }
  4520. a.btn:not([href]):not([tabindex]),
  4521. a.btn:not([href]):not([tabindex]):focus,
  4522. a.btn:not([href]):not([tabindex]):hover {
  4523. color: #fff; }
  4524. table.table a.btn.btn-red {
  4525. color: #fff; }
  4526. .btn-outline-red {
  4527. border: 2px solid #d32f2f !important;
  4528. background-color: transparent !important;
  4529. color: #d32f2f !important; }
  4530. .btn-outline-red:hover, .btn-outline-red:focus, .btn-outline-red:active, .btn-outline-red:active:focus, .btn-outline-red.active {
  4531. border-color: #d32f2f !important;
  4532. background-color: transparent !important;
  4533. color: #d32f2f !important; }
  4534. .btn-outline-red:not([disabled]):not(.disabled):active, .btn-outline-red:not([disabled]):not(.disabled).active,
  4535. .show > .btn-outline-red.dropdown-toggle {
  4536. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4537. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4538. background-color: transparent !important;
  4539. border-color: #d32f2f !important; }
  4540. .btn-outline-red:not([disabled]):not(.disabled):active:focus, .btn-outline-red:not([disabled]):not(.disabled).active:focus,
  4541. .show > .btn-outline-red.dropdown-toggle:focus {
  4542. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4543. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4544. .btn-pink {
  4545. background-color: #ec407a !important;
  4546. color: #fff; }
  4547. .btn-pink:hover {
  4548. background-color: #ee578a;
  4549. color: #fff; }
  4550. .btn-pink:focus, .btn-pink.focus {
  4551. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4552. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4553. .btn-pink:focus, .btn-pink:active, .btn-pink.active {
  4554. background-color: #b41249; }
  4555. .btn-pink.dropdown-toggle {
  4556. background-color: #ec407a !important; }
  4557. .btn-pink.dropdown-toggle:hover, .btn-pink.dropdown-toggle:focus {
  4558. background-color: #ee578a !important; }
  4559. .btn-pink:not([disabled]):not(.disabled):active, .btn-pink:not([disabled]):not(.disabled).active,
  4560. .show > .btn-pink.dropdown-toggle {
  4561. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4562. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4563. background-color: #b41249 !important; }
  4564. .btn-pink:not([disabled]):not(.disabled):active:focus, .btn-pink:not([disabled]):not(.disabled).active:focus,
  4565. .show > .btn-pink.dropdown-toggle:focus {
  4566. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4567. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4568. .pink-ic {
  4569. color: #ec407a !important; }
  4570. .pink-ic:hover, .pink-ic:focus {
  4571. color: #ec407a; }
  4572. a.btn:not([href]):not([tabindex]),
  4573. a.btn:not([href]):not([tabindex]):focus,
  4574. a.btn:not([href]):not([tabindex]):hover {
  4575. color: #fff; }
  4576. table.table a.btn.btn-pink {
  4577. color: #fff; }
  4578. .btn-outline-pink {
  4579. border: 2px solid #ec407a !important;
  4580. background-color: transparent !important;
  4581. color: #ec407a !important; }
  4582. .btn-outline-pink:hover, .btn-outline-pink:focus, .btn-outline-pink:active, .btn-outline-pink:active:focus, .btn-outline-pink.active {
  4583. border-color: #ec407a !important;
  4584. background-color: transparent !important;
  4585. color: #ec407a !important; }
  4586. .btn-outline-pink:not([disabled]):not(.disabled):active, .btn-outline-pink:not([disabled]):not(.disabled).active,
  4587. .show > .btn-outline-pink.dropdown-toggle {
  4588. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4589. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4590. background-color: transparent !important;
  4591. border-color: #ec407a !important; }
  4592. .btn-outline-pink:not([disabled]):not(.disabled):active:focus, .btn-outline-pink:not([disabled]):not(.disabled).active:focus,
  4593. .show > .btn-outline-pink.dropdown-toggle:focus {
  4594. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4595. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4596. .btn-purple {
  4597. background-color: #8e24aa !important;
  4598. color: #fff; }
  4599. .btn-purple:hover {
  4600. background-color: #a028bf;
  4601. color: #fff; }
  4602. .btn-purple:focus, .btn-purple.focus {
  4603. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4604. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4605. .btn-purple:focus, .btn-purple:active, .btn-purple.active {
  4606. background-color: #481256; }
  4607. .btn-purple.dropdown-toggle {
  4608. background-color: #8e24aa !important; }
  4609. .btn-purple.dropdown-toggle:hover, .btn-purple.dropdown-toggle:focus {
  4610. background-color: #a028bf !important; }
  4611. .btn-purple:not([disabled]):not(.disabled):active, .btn-purple:not([disabled]):not(.disabled).active,
  4612. .show > .btn-purple.dropdown-toggle {
  4613. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4614. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4615. background-color: #481256 !important; }
  4616. .btn-purple:not([disabled]):not(.disabled):active:focus, .btn-purple:not([disabled]):not(.disabled).active:focus,
  4617. .show > .btn-purple.dropdown-toggle:focus {
  4618. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4619. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4620. .purple-ic {
  4621. color: #8e24aa !important; }
  4622. .purple-ic:hover, .purple-ic:focus {
  4623. color: #8e24aa; }
  4624. a.btn:not([href]):not([tabindex]),
  4625. a.btn:not([href]):not([tabindex]):focus,
  4626. a.btn:not([href]):not([tabindex]):hover {
  4627. color: #fff; }
  4628. table.table a.btn.btn-purple {
  4629. color: #fff; }
  4630. .btn-outline-purple {
  4631. border: 2px solid #8e24aa !important;
  4632. background-color: transparent !important;
  4633. color: #8e24aa !important; }
  4634. .btn-outline-purple:hover, .btn-outline-purple:focus, .btn-outline-purple:active, .btn-outline-purple:active:focus, .btn-outline-purple.active {
  4635. border-color: #8e24aa !important;
  4636. background-color: transparent !important;
  4637. color: #8e24aa !important; }
  4638. .btn-outline-purple:not([disabled]):not(.disabled):active, .btn-outline-purple:not([disabled]):not(.disabled).active,
  4639. .show > .btn-outline-purple.dropdown-toggle {
  4640. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4641. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4642. background-color: transparent !important;
  4643. border-color: #8e24aa !important; }
  4644. .btn-outline-purple:not([disabled]):not(.disabled):active:focus, .btn-outline-purple:not([disabled]):not(.disabled).active:focus,
  4645. .show > .btn-outline-purple.dropdown-toggle:focus {
  4646. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4647. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4648. .btn-deep-purple {
  4649. background-color: #512da8 !important;
  4650. color: #fff; }
  4651. .btn-deep-purple:hover {
  4652. background-color: #5b32bc;
  4653. color: #fff; }
  4654. .btn-deep-purple:focus, .btn-deep-purple.focus {
  4655. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4656. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4657. .btn-deep-purple:focus, .btn-deep-purple:active, .btn-deep-purple.active {
  4658. background-color: #2a1758; }
  4659. .btn-deep-purple.dropdown-toggle {
  4660. background-color: #512da8 !important; }
  4661. .btn-deep-purple.dropdown-toggle:hover, .btn-deep-purple.dropdown-toggle:focus {
  4662. background-color: #5b32bc !important; }
  4663. .btn-deep-purple:not([disabled]):not(.disabled):active, .btn-deep-purple:not([disabled]):not(.disabled).active,
  4664. .show > .btn-deep-purple.dropdown-toggle {
  4665. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4666. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4667. background-color: #2a1758 !important; }
  4668. .btn-deep-purple:not([disabled]):not(.disabled):active:focus, .btn-deep-purple:not([disabled]):not(.disabled).active:focus,
  4669. .show > .btn-deep-purple.dropdown-toggle:focus {
  4670. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4671. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4672. .deep-purple-ic {
  4673. color: #512da8 !important; }
  4674. .deep-purple-ic:hover, .deep-purple-ic:focus {
  4675. color: #512da8; }
  4676. a.btn:not([href]):not([tabindex]),
  4677. a.btn:not([href]):not([tabindex]):focus,
  4678. a.btn:not([href]):not([tabindex]):hover {
  4679. color: #fff; }
  4680. table.table a.btn.btn-deep-purple {
  4681. color: #fff; }
  4682. .btn-outline-deep-purple {
  4683. border: 2px solid #512da8 !important;
  4684. background-color: transparent !important;
  4685. color: #512da8 !important; }
  4686. .btn-outline-deep-purple:hover, .btn-outline-deep-purple:focus, .btn-outline-deep-purple:active, .btn-outline-deep-purple:active:focus, .btn-outline-deep-purple.active {
  4687. border-color: #512da8 !important;
  4688. background-color: transparent !important;
  4689. color: #512da8 !important; }
  4690. .btn-outline-deep-purple:not([disabled]):not(.disabled):active, .btn-outline-deep-purple:not([disabled]):not(.disabled).active,
  4691. .show > .btn-outline-deep-purple.dropdown-toggle {
  4692. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4693. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4694. background-color: transparent !important;
  4695. border-color: #512da8 !important; }
  4696. .btn-outline-deep-purple:not([disabled]):not(.disabled):active:focus, .btn-outline-deep-purple:not([disabled]):not(.disabled).active:focus,
  4697. .show > .btn-outline-deep-purple.dropdown-toggle:focus {
  4698. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4699. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4700. .btn-indigo {
  4701. background-color: #3f51b5 !important;
  4702. color: #fff; }
  4703. .btn-indigo:hover {
  4704. background-color: #4d5ec1;
  4705. color: #fff; }
  4706. .btn-indigo:focus, .btn-indigo.focus {
  4707. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4708. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4709. .btn-indigo:focus, .btn-indigo:active, .btn-indigo.active {
  4710. background-color: #252f69; }
  4711. .btn-indigo.dropdown-toggle {
  4712. background-color: #3f51b5 !important; }
  4713. .btn-indigo.dropdown-toggle:hover, .btn-indigo.dropdown-toggle:focus {
  4714. background-color: #4d5ec1 !important; }
  4715. .btn-indigo:not([disabled]):not(.disabled):active, .btn-indigo:not([disabled]):not(.disabled).active,
  4716. .show > .btn-indigo.dropdown-toggle {
  4717. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4718. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4719. background-color: #252f69 !important; }
  4720. .btn-indigo:not([disabled]):not(.disabled):active:focus, .btn-indigo:not([disabled]):not(.disabled).active:focus,
  4721. .show > .btn-indigo.dropdown-toggle:focus {
  4722. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4723. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4724. .indigo-ic {
  4725. color: #3f51b5 !important; }
  4726. .indigo-ic:hover, .indigo-ic:focus {
  4727. color: #3f51b5; }
  4728. a.btn:not([href]):not([tabindex]),
  4729. a.btn:not([href]):not([tabindex]):focus,
  4730. a.btn:not([href]):not([tabindex]):hover {
  4731. color: #fff; }
  4732. table.table a.btn.btn-indigo {
  4733. color: #fff; }
  4734. .btn-outline-indigo {
  4735. border: 2px solid #3f51b5 !important;
  4736. background-color: transparent !important;
  4737. color: #3f51b5 !important; }
  4738. .btn-outline-indigo:hover, .btn-outline-indigo:focus, .btn-outline-indigo:active, .btn-outline-indigo:active:focus, .btn-outline-indigo.active {
  4739. border-color: #3f51b5 !important;
  4740. background-color: transparent !important;
  4741. color: #3f51b5 !important; }
  4742. .btn-outline-indigo:not([disabled]):not(.disabled):active, .btn-outline-indigo:not([disabled]):not(.disabled).active,
  4743. .show > .btn-outline-indigo.dropdown-toggle {
  4744. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4745. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4746. background-color: transparent !important;
  4747. border-color: #3f51b5 !important; }
  4748. .btn-outline-indigo:not([disabled]):not(.disabled):active:focus, .btn-outline-indigo:not([disabled]):not(.disabled).active:focus,
  4749. .show > .btn-outline-indigo.dropdown-toggle:focus {
  4750. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4751. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4752. .btn-blue {
  4753. background-color: #1976d2 !important;
  4754. color: #fff; }
  4755. .btn-blue:hover {
  4756. background-color: #2083e4;
  4757. color: #fff; }
  4758. .btn-blue:focus, .btn-blue.focus {
  4759. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4760. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4761. .btn-blue:focus, .btn-blue:active, .btn-blue.active {
  4762. background-color: #0e4377; }
  4763. .btn-blue.dropdown-toggle {
  4764. background-color: #1976d2 !important; }
  4765. .btn-blue.dropdown-toggle:hover, .btn-blue.dropdown-toggle:focus {
  4766. background-color: #2083e4 !important; }
  4767. .btn-blue:not([disabled]):not(.disabled):active, .btn-blue:not([disabled]):not(.disabled).active,
  4768. .show > .btn-blue.dropdown-toggle {
  4769. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4770. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4771. background-color: #0e4377 !important; }
  4772. .btn-blue:not([disabled]):not(.disabled):active:focus, .btn-blue:not([disabled]):not(.disabled).active:focus,
  4773. .show > .btn-blue.dropdown-toggle:focus {
  4774. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4775. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4776. .blue-ic {
  4777. color: #1976d2 !important; }
  4778. .blue-ic:hover, .blue-ic:focus {
  4779. color: #1976d2; }
  4780. a.btn:not([href]):not([tabindex]),
  4781. a.btn:not([href]):not([tabindex]):focus,
  4782. a.btn:not([href]):not([tabindex]):hover {
  4783. color: #fff; }
  4784. table.table a.btn.btn-blue {
  4785. color: #fff; }
  4786. .btn-outline-blue {
  4787. border: 2px solid #1976d2 !important;
  4788. background-color: transparent !important;
  4789. color: #1976d2 !important; }
  4790. .btn-outline-blue:hover, .btn-outline-blue:focus, .btn-outline-blue:active, .btn-outline-blue:active:focus, .btn-outline-blue.active {
  4791. border-color: #1976d2 !important;
  4792. background-color: transparent !important;
  4793. color: #1976d2 !important; }
  4794. .btn-outline-blue:not([disabled]):not(.disabled):active, .btn-outline-blue:not([disabled]):not(.disabled).active,
  4795. .show > .btn-outline-blue.dropdown-toggle {
  4796. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4797. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4798. background-color: transparent !important;
  4799. border-color: #1976d2 !important; }
  4800. .btn-outline-blue:not([disabled]):not(.disabled):active:focus, .btn-outline-blue:not([disabled]):not(.disabled).active:focus,
  4801. .show > .btn-outline-blue.dropdown-toggle:focus {
  4802. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4803. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4804. .btn-light-blue {
  4805. background-color: #82b1ff !important;
  4806. color: #fff; }
  4807. .btn-light-blue:hover {
  4808. background-color: #9cc1ff;
  4809. color: #fff; }
  4810. .btn-light-blue:focus, .btn-light-blue.focus {
  4811. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4812. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4813. .btn-light-blue:focus, .btn-light-blue:active, .btn-light-blue.active {
  4814. background-color: #1c71ff; }
  4815. .btn-light-blue.dropdown-toggle {
  4816. background-color: #82b1ff !important; }
  4817. .btn-light-blue.dropdown-toggle:hover, .btn-light-blue.dropdown-toggle:focus {
  4818. background-color: #9cc1ff !important; }
  4819. .btn-light-blue:not([disabled]):not(.disabled):active, .btn-light-blue:not([disabled]):not(.disabled).active,
  4820. .show > .btn-light-blue.dropdown-toggle {
  4821. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4822. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4823. background-color: #1c71ff !important; }
  4824. .btn-light-blue:not([disabled]):not(.disabled):active:focus, .btn-light-blue:not([disabled]):not(.disabled).active:focus,
  4825. .show > .btn-light-blue.dropdown-toggle:focus {
  4826. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4827. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4828. .light-blue-ic {
  4829. color: #82b1ff !important; }
  4830. .light-blue-ic:hover, .light-blue-ic:focus {
  4831. color: #82b1ff; }
  4832. a.btn:not([href]):not([tabindex]),
  4833. a.btn:not([href]):not([tabindex]):focus,
  4834. a.btn:not([href]):not([tabindex]):hover {
  4835. color: #fff; }
  4836. table.table a.btn.btn-light-blue {
  4837. color: #fff; }
  4838. .btn-outline-light-blue {
  4839. border: 2px solid #82b1ff !important;
  4840. background-color: transparent !important;
  4841. color: #82b1ff !important; }
  4842. .btn-outline-light-blue:hover, .btn-outline-light-blue:focus, .btn-outline-light-blue:active, .btn-outline-light-blue:active:focus, .btn-outline-light-blue.active {
  4843. border-color: #82b1ff !important;
  4844. background-color: transparent !important;
  4845. color: #82b1ff !important; }
  4846. .btn-outline-light-blue:not([disabled]):not(.disabled):active, .btn-outline-light-blue:not([disabled]):not(.disabled).active,
  4847. .show > .btn-outline-light-blue.dropdown-toggle {
  4848. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4849. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4850. background-color: transparent !important;
  4851. border-color: #82b1ff !important; }
  4852. .btn-outline-light-blue:not([disabled]):not(.disabled):active:focus, .btn-outline-light-blue:not([disabled]):not(.disabled).active:focus,
  4853. .show > .btn-outline-light-blue.dropdown-toggle:focus {
  4854. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4855. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4856. .btn-cyan {
  4857. background-color: #00bcd4 !important;
  4858. color: #fff; }
  4859. .btn-cyan:hover {
  4860. background-color: #00d3ee;
  4861. color: #fff; }
  4862. .btn-cyan:focus, .btn-cyan.focus {
  4863. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4864. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4865. .btn-cyan:focus, .btn-cyan:active, .btn-cyan.active {
  4866. background-color: #00626e; }
  4867. .btn-cyan.dropdown-toggle {
  4868. background-color: #00bcd4 !important; }
  4869. .btn-cyan.dropdown-toggle:hover, .btn-cyan.dropdown-toggle:focus {
  4870. background-color: #00d3ee !important; }
  4871. .btn-cyan:not([disabled]):not(.disabled):active, .btn-cyan:not([disabled]):not(.disabled).active,
  4872. .show > .btn-cyan.dropdown-toggle {
  4873. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4874. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4875. background-color: #00626e !important; }
  4876. .btn-cyan:not([disabled]):not(.disabled):active:focus, .btn-cyan:not([disabled]):not(.disabled).active:focus,
  4877. .show > .btn-cyan.dropdown-toggle:focus {
  4878. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4879. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4880. .cyan-ic {
  4881. color: #00bcd4 !important; }
  4882. .cyan-ic:hover, .cyan-ic:focus {
  4883. color: #00bcd4; }
  4884. a.btn:not([href]):not([tabindex]),
  4885. a.btn:not([href]):not([tabindex]):focus,
  4886. a.btn:not([href]):not([tabindex]):hover {
  4887. color: #fff; }
  4888. table.table a.btn.btn-cyan {
  4889. color: #fff; }
  4890. .btn-outline-cyan {
  4891. border: 2px solid #00bcd4 !important;
  4892. background-color: transparent !important;
  4893. color: #00bcd4 !important; }
  4894. .btn-outline-cyan:hover, .btn-outline-cyan:focus, .btn-outline-cyan:active, .btn-outline-cyan:active:focus, .btn-outline-cyan.active {
  4895. border-color: #00bcd4 !important;
  4896. background-color: transparent !important;
  4897. color: #00bcd4 !important; }
  4898. .btn-outline-cyan:not([disabled]):not(.disabled):active, .btn-outline-cyan:not([disabled]):not(.disabled).active,
  4899. .show > .btn-outline-cyan.dropdown-toggle {
  4900. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4901. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4902. background-color: transparent !important;
  4903. border-color: #00bcd4 !important; }
  4904. .btn-outline-cyan:not([disabled]):not(.disabled):active:focus, .btn-outline-cyan:not([disabled]):not(.disabled).active:focus,
  4905. .show > .btn-outline-cyan.dropdown-toggle:focus {
  4906. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4907. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4908. .btn-teal {
  4909. background-color: #00796b !important;
  4910. color: #fff; }
  4911. .btn-teal:hover {
  4912. background-color: #009382;
  4913. color: #fff; }
  4914. .btn-teal:focus, .btn-teal.focus {
  4915. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4916. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4917. .btn-teal:focus, .btn-teal:active, .btn-teal.active {
  4918. background-color: #001311; }
  4919. .btn-teal.dropdown-toggle {
  4920. background-color: #00796b !important; }
  4921. .btn-teal.dropdown-toggle:hover, .btn-teal.dropdown-toggle:focus {
  4922. background-color: #009382 !important; }
  4923. .btn-teal:not([disabled]):not(.disabled):active, .btn-teal:not([disabled]):not(.disabled).active,
  4924. .show > .btn-teal.dropdown-toggle {
  4925. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4926. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4927. background-color: #001311 !important; }
  4928. .btn-teal:not([disabled]):not(.disabled):active:focus, .btn-teal:not([disabled]):not(.disabled).active:focus,
  4929. .show > .btn-teal.dropdown-toggle:focus {
  4930. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4931. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4932. .teal-ic {
  4933. color: #00796b !important; }
  4934. .teal-ic:hover, .teal-ic:focus {
  4935. color: #00796b; }
  4936. a.btn:not([href]):not([tabindex]),
  4937. a.btn:not([href]):not([tabindex]):focus,
  4938. a.btn:not([href]):not([tabindex]):hover {
  4939. color: #fff; }
  4940. table.table a.btn.btn-teal {
  4941. color: #fff; }
  4942. .btn-outline-teal {
  4943. border: 2px solid #00796b !important;
  4944. background-color: transparent !important;
  4945. color: #00796b !important; }
  4946. .btn-outline-teal:hover, .btn-outline-teal:focus, .btn-outline-teal:active, .btn-outline-teal:active:focus, .btn-outline-teal.active {
  4947. border-color: #00796b !important;
  4948. background-color: transparent !important;
  4949. color: #00796b !important; }
  4950. .btn-outline-teal:not([disabled]):not(.disabled):active, .btn-outline-teal:not([disabled]):not(.disabled).active,
  4951. .show > .btn-outline-teal.dropdown-toggle {
  4952. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4953. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4954. background-color: transparent !important;
  4955. border-color: #00796b !important; }
  4956. .btn-outline-teal:not([disabled]):not(.disabled):active:focus, .btn-outline-teal:not([disabled]):not(.disabled).active:focus,
  4957. .show > .btn-outline-teal.dropdown-toggle:focus {
  4958. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4959. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4960. .btn-green {
  4961. background-color: #388e3c !important;
  4962. color: #fff; }
  4963. .btn-green:hover {
  4964. background-color: #3fa044;
  4965. color: #fff; }
  4966. .btn-green:focus, .btn-green.focus {
  4967. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4968. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4969. .btn-green:focus, .btn-green:active, .btn-green.active {
  4970. background-color: #1b451d; }
  4971. .btn-green.dropdown-toggle {
  4972. background-color: #388e3c !important; }
  4973. .btn-green.dropdown-toggle:hover, .btn-green.dropdown-toggle:focus {
  4974. background-color: #3fa044 !important; }
  4975. .btn-green:not([disabled]):not(.disabled):active, .btn-green:not([disabled]):not(.disabled).active,
  4976. .show > .btn-green.dropdown-toggle {
  4977. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4978. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4979. background-color: #1b451d !important; }
  4980. .btn-green:not([disabled]):not(.disabled):active:focus, .btn-green:not([disabled]):not(.disabled).active:focus,
  4981. .show > .btn-green.dropdown-toggle:focus {
  4982. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  4983. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  4984. .green-ic {
  4985. color: #388e3c !important; }
  4986. .green-ic:hover, .green-ic:focus {
  4987. color: #388e3c; }
  4988. a.btn:not([href]):not([tabindex]),
  4989. a.btn:not([href]):not([tabindex]):focus,
  4990. a.btn:not([href]):not([tabindex]):hover {
  4991. color: #fff; }
  4992. table.table a.btn.btn-green {
  4993. color: #fff; }
  4994. .btn-outline-green {
  4995. border: 2px solid #388e3c !important;
  4996. background-color: transparent !important;
  4997. color: #388e3c !important; }
  4998. .btn-outline-green:hover, .btn-outline-green:focus, .btn-outline-green:active, .btn-outline-green:active:focus, .btn-outline-green.active {
  4999. border-color: #388e3c !important;
  5000. background-color: transparent !important;
  5001. color: #388e3c !important; }
  5002. .btn-outline-green:not([disabled]):not(.disabled):active, .btn-outline-green:not([disabled]):not(.disabled).active,
  5003. .show > .btn-outline-green.dropdown-toggle {
  5004. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5005. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5006. background-color: transparent !important;
  5007. border-color: #388e3c !important; }
  5008. .btn-outline-green:not([disabled]):not(.disabled):active:focus, .btn-outline-green:not([disabled]):not(.disabled).active:focus,
  5009. .show > .btn-outline-green.dropdown-toggle:focus {
  5010. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5011. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5012. .btn-light-green {
  5013. background-color: #8bc34a !important;
  5014. color: #fff; }
  5015. .btn-light-green:hover {
  5016. background-color: #97c95d;
  5017. color: #fff; }
  5018. .btn-light-green:focus, .btn-light-green.focus {
  5019. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5020. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5021. .btn-light-green:focus, .btn-light-green:active, .btn-light-green.active {
  5022. background-color: #577d2a; }
  5023. .btn-light-green.dropdown-toggle {
  5024. background-color: #8bc34a !important; }
  5025. .btn-light-green.dropdown-toggle:hover, .btn-light-green.dropdown-toggle:focus {
  5026. background-color: #97c95d !important; }
  5027. .btn-light-green:not([disabled]):not(.disabled):active, .btn-light-green:not([disabled]):not(.disabled).active,
  5028. .show > .btn-light-green.dropdown-toggle {
  5029. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5030. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5031. background-color: #577d2a !important; }
  5032. .btn-light-green:not([disabled]):not(.disabled):active:focus, .btn-light-green:not([disabled]):not(.disabled).active:focus,
  5033. .show > .btn-light-green.dropdown-toggle:focus {
  5034. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5035. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5036. .light-green-ic {
  5037. color: #8bc34a !important; }
  5038. .light-green-ic:hover, .light-green-ic:focus {
  5039. color: #8bc34a; }
  5040. a.btn:not([href]):not([tabindex]),
  5041. a.btn:not([href]):not([tabindex]):focus,
  5042. a.btn:not([href]):not([tabindex]):hover {
  5043. color: #fff; }
  5044. table.table a.btn.btn-light-green {
  5045. color: #fff; }
  5046. .btn-outline-light-green {
  5047. border: 2px solid #8bc34a !important;
  5048. background-color: transparent !important;
  5049. color: #8bc34a !important; }
  5050. .btn-outline-light-green:hover, .btn-outline-light-green:focus, .btn-outline-light-green:active, .btn-outline-light-green:active:focus, .btn-outline-light-green.active {
  5051. border-color: #8bc34a !important;
  5052. background-color: transparent !important;
  5053. color: #8bc34a !important; }
  5054. .btn-outline-light-green:not([disabled]):not(.disabled):active, .btn-outline-light-green:not([disabled]):not(.disabled).active,
  5055. .show > .btn-outline-light-green.dropdown-toggle {
  5056. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5057. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5058. background-color: transparent !important;
  5059. border-color: #8bc34a !important; }
  5060. .btn-outline-light-green:not([disabled]):not(.disabled):active:focus, .btn-outline-light-green:not([disabled]):not(.disabled).active:focus,
  5061. .show > .btn-outline-light-green.dropdown-toggle:focus {
  5062. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5063. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5064. .btn-lime {
  5065. background-color: #afb42b !important;
  5066. color: #fff; }
  5067. .btn-lime:hover {
  5068. background-color: #c3c930;
  5069. color: #fff; }
  5070. .btn-lime:focus, .btn-lime.focus {
  5071. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5072. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5073. .btn-lime:focus, .btn-lime:active, .btn-lime.active {
  5074. background-color: #5f6217; }
  5075. .btn-lime.dropdown-toggle {
  5076. background-color: #afb42b !important; }
  5077. .btn-lime.dropdown-toggle:hover, .btn-lime.dropdown-toggle:focus {
  5078. background-color: #c3c930 !important; }
  5079. .btn-lime:not([disabled]):not(.disabled):active, .btn-lime:not([disabled]):not(.disabled).active,
  5080. .show > .btn-lime.dropdown-toggle {
  5081. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5082. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5083. background-color: #5f6217 !important; }
  5084. .btn-lime:not([disabled]):not(.disabled):active:focus, .btn-lime:not([disabled]):not(.disabled).active:focus,
  5085. .show > .btn-lime.dropdown-toggle:focus {
  5086. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5087. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5088. .lime-ic {
  5089. color: #afb42b !important; }
  5090. .lime-ic:hover, .lime-ic:focus {
  5091. color: #afb42b; }
  5092. a.btn:not([href]):not([tabindex]),
  5093. a.btn:not([href]):not([tabindex]):focus,
  5094. a.btn:not([href]):not([tabindex]):hover {
  5095. color: #fff; }
  5096. table.table a.btn.btn-lime {
  5097. color: #fff; }
  5098. .btn-outline-lime {
  5099. border: 2px solid #afb42b !important;
  5100. background-color: transparent !important;
  5101. color: #afb42b !important; }
  5102. .btn-outline-lime:hover, .btn-outline-lime:focus, .btn-outline-lime:active, .btn-outline-lime:active:focus, .btn-outline-lime.active {
  5103. border-color: #afb42b !important;
  5104. background-color: transparent !important;
  5105. color: #afb42b !important; }
  5106. .btn-outline-lime:not([disabled]):not(.disabled):active, .btn-outline-lime:not([disabled]):not(.disabled).active,
  5107. .show > .btn-outline-lime.dropdown-toggle {
  5108. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5109. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5110. background-color: transparent !important;
  5111. border-color: #afb42b !important; }
  5112. .btn-outline-lime:not([disabled]):not(.disabled):active:focus, .btn-outline-lime:not([disabled]):not(.disabled).active:focus,
  5113. .show > .btn-outline-lime.dropdown-toggle:focus {
  5114. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5115. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5116. .btn-yellow {
  5117. background-color: #fbc02d !important;
  5118. color: #fff; }
  5119. .btn-yellow:hover {
  5120. background-color: #fbc846;
  5121. color: #fff; }
  5122. .btn-yellow:focus, .btn-yellow.focus {
  5123. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5124. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5125. .btn-yellow:focus, .btn-yellow:active, .btn-yellow.active {
  5126. background-color: #be8904; }
  5127. .btn-yellow.dropdown-toggle {
  5128. background-color: #fbc02d !important; }
  5129. .btn-yellow.dropdown-toggle:hover, .btn-yellow.dropdown-toggle:focus {
  5130. background-color: #fbc846 !important; }
  5131. .btn-yellow:not([disabled]):not(.disabled):active, .btn-yellow:not([disabled]):not(.disabled).active,
  5132. .show > .btn-yellow.dropdown-toggle {
  5133. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5134. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5135. background-color: #be8904 !important; }
  5136. .btn-yellow:not([disabled]):not(.disabled):active:focus, .btn-yellow:not([disabled]):not(.disabled).active:focus,
  5137. .show > .btn-yellow.dropdown-toggle:focus {
  5138. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5139. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5140. .yellow-ic {
  5141. color: #fbc02d !important; }
  5142. .yellow-ic:hover, .yellow-ic:focus {
  5143. color: #fbc02d; }
  5144. a.btn:not([href]):not([tabindex]),
  5145. a.btn:not([href]):not([tabindex]):focus,
  5146. a.btn:not([href]):not([tabindex]):hover {
  5147. color: #fff; }
  5148. table.table a.btn.btn-yellow {
  5149. color: #fff; }
  5150. .btn-outline-yellow {
  5151. border: 2px solid #fbc02d !important;
  5152. background-color: transparent !important;
  5153. color: #fbc02d !important; }
  5154. .btn-outline-yellow:hover, .btn-outline-yellow:focus, .btn-outline-yellow:active, .btn-outline-yellow:active:focus, .btn-outline-yellow.active {
  5155. border-color: #fbc02d !important;
  5156. background-color: transparent !important;
  5157. color: #fbc02d !important; }
  5158. .btn-outline-yellow:not([disabled]):not(.disabled):active, .btn-outline-yellow:not([disabled]):not(.disabled).active,
  5159. .show > .btn-outline-yellow.dropdown-toggle {
  5160. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5161. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5162. background-color: transparent !important;
  5163. border-color: #fbc02d !important; }
  5164. .btn-outline-yellow:not([disabled]):not(.disabled):active:focus, .btn-outline-yellow:not([disabled]):not(.disabled).active:focus,
  5165. .show > .btn-outline-yellow.dropdown-toggle:focus {
  5166. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5167. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5168. .btn-amber {
  5169. background-color: #ffa000 !important;
  5170. color: #fff; }
  5171. .btn-amber:hover {
  5172. background-color: #ffaa1a;
  5173. color: #fff; }
  5174. .btn-amber:focus, .btn-amber.focus {
  5175. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5176. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5177. .btn-amber:focus, .btn-amber:active, .btn-amber.active {
  5178. background-color: #996000; }
  5179. .btn-amber.dropdown-toggle {
  5180. background-color: #ffa000 !important; }
  5181. .btn-amber.dropdown-toggle:hover, .btn-amber.dropdown-toggle:focus {
  5182. background-color: #ffaa1a !important; }
  5183. .btn-amber:not([disabled]):not(.disabled):active, .btn-amber:not([disabled]):not(.disabled).active,
  5184. .show > .btn-amber.dropdown-toggle {
  5185. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5186. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5187. background-color: #996000 !important; }
  5188. .btn-amber:not([disabled]):not(.disabled):active:focus, .btn-amber:not([disabled]):not(.disabled).active:focus,
  5189. .show > .btn-amber.dropdown-toggle:focus {
  5190. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5191. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5192. .amber-ic {
  5193. color: #ffa000 !important; }
  5194. .amber-ic:hover, .amber-ic:focus {
  5195. color: #ffa000; }
  5196. a.btn:not([href]):not([tabindex]),
  5197. a.btn:not([href]):not([tabindex]):focus,
  5198. a.btn:not([href]):not([tabindex]):hover {
  5199. color: #fff; }
  5200. table.table a.btn.btn-amber {
  5201. color: #fff; }
  5202. .btn-outline-amber {
  5203. border: 2px solid #ffa000 !important;
  5204. background-color: transparent !important;
  5205. color: #ffa000 !important; }
  5206. .btn-outline-amber:hover, .btn-outline-amber:focus, .btn-outline-amber:active, .btn-outline-amber:active:focus, .btn-outline-amber.active {
  5207. border-color: #ffa000 !important;
  5208. background-color: transparent !important;
  5209. color: #ffa000 !important; }
  5210. .btn-outline-amber:not([disabled]):not(.disabled):active, .btn-outline-amber:not([disabled]):not(.disabled).active,
  5211. .show > .btn-outline-amber.dropdown-toggle {
  5212. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5213. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5214. background-color: transparent !important;
  5215. border-color: #ffa000 !important; }
  5216. .btn-outline-amber:not([disabled]):not(.disabled):active:focus, .btn-outline-amber:not([disabled]):not(.disabled).active:focus,
  5217. .show > .btn-outline-amber.dropdown-toggle:focus {
  5218. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5219. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5220. .btn-orange {
  5221. background-color: #f57c00 !important;
  5222. color: #fff; }
  5223. .btn-orange:hover {
  5224. background-color: #ff8910;
  5225. color: #fff; }
  5226. .btn-orange:focus, .btn-orange.focus {
  5227. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5228. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5229. .btn-orange:focus, .btn-orange:active, .btn-orange.active {
  5230. background-color: #8f4800; }
  5231. .btn-orange.dropdown-toggle {
  5232. background-color: #f57c00 !important; }
  5233. .btn-orange.dropdown-toggle:hover, .btn-orange.dropdown-toggle:focus {
  5234. background-color: #ff8910 !important; }
  5235. .btn-orange:not([disabled]):not(.disabled):active, .btn-orange:not([disabled]):not(.disabled).active,
  5236. .show > .btn-orange.dropdown-toggle {
  5237. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5238. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5239. background-color: #8f4800 !important; }
  5240. .btn-orange:not([disabled]):not(.disabled):active:focus, .btn-orange:not([disabled]):not(.disabled).active:focus,
  5241. .show > .btn-orange.dropdown-toggle:focus {
  5242. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5243. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5244. .orange-ic {
  5245. color: #f57c00 !important; }
  5246. .orange-ic:hover, .orange-ic:focus {
  5247. color: #f57c00; }
  5248. a.btn:not([href]):not([tabindex]),
  5249. a.btn:not([href]):not([tabindex]):focus,
  5250. a.btn:not([href]):not([tabindex]):hover {
  5251. color: #fff; }
  5252. table.table a.btn.btn-orange {
  5253. color: #fff; }
  5254. .btn-outline-orange {
  5255. border: 2px solid #f57c00 !important;
  5256. background-color: transparent !important;
  5257. color: #f57c00 !important; }
  5258. .btn-outline-orange:hover, .btn-outline-orange:focus, .btn-outline-orange:active, .btn-outline-orange:active:focus, .btn-outline-orange.active {
  5259. border-color: #f57c00 !important;
  5260. background-color: transparent !important;
  5261. color: #f57c00 !important; }
  5262. .btn-outline-orange:not([disabled]):not(.disabled):active, .btn-outline-orange:not([disabled]):not(.disabled).active,
  5263. .show > .btn-outline-orange.dropdown-toggle {
  5264. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5265. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5266. background-color: transparent !important;
  5267. border-color: #f57c00 !important; }
  5268. .btn-outline-orange:not([disabled]):not(.disabled):active:focus, .btn-outline-orange:not([disabled]):not(.disabled).active:focus,
  5269. .show > .btn-outline-orange.dropdown-toggle:focus {
  5270. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5271. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5272. .btn-deep-orange {
  5273. background-color: #ff7043 !important;
  5274. color: #fff; }
  5275. .btn-deep-orange:hover {
  5276. background-color: #ff835d;
  5277. color: #fff; }
  5278. .btn-deep-orange:focus, .btn-deep-orange.focus {
  5279. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5280. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5281. .btn-deep-orange:focus, .btn-deep-orange:active, .btn-deep-orange.active {
  5282. background-color: #dc3500; }
  5283. .btn-deep-orange.dropdown-toggle {
  5284. background-color: #ff7043 !important; }
  5285. .btn-deep-orange.dropdown-toggle:hover, .btn-deep-orange.dropdown-toggle:focus {
  5286. background-color: #ff835d !important; }
  5287. .btn-deep-orange:not([disabled]):not(.disabled):active, .btn-deep-orange:not([disabled]):not(.disabled).active,
  5288. .show > .btn-deep-orange.dropdown-toggle {
  5289. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5290. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5291. background-color: #dc3500 !important; }
  5292. .btn-deep-orange:not([disabled]):not(.disabled):active:focus, .btn-deep-orange:not([disabled]):not(.disabled).active:focus,
  5293. .show > .btn-deep-orange.dropdown-toggle:focus {
  5294. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5295. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5296. .deep-orange-ic {
  5297. color: #ff7043 !important; }
  5298. .deep-orange-ic:hover, .deep-orange-ic:focus {
  5299. color: #ff7043; }
  5300. a.btn:not([href]):not([tabindex]),
  5301. a.btn:not([href]):not([tabindex]):focus,
  5302. a.btn:not([href]):not([tabindex]):hover {
  5303. color: #fff; }
  5304. table.table a.btn.btn-deep-orange {
  5305. color: #fff; }
  5306. .btn-outline-deep-orange {
  5307. border: 2px solid #ff7043 !important;
  5308. background-color: transparent !important;
  5309. color: #ff7043 !important; }
  5310. .btn-outline-deep-orange:hover, .btn-outline-deep-orange:focus, .btn-outline-deep-orange:active, .btn-outline-deep-orange:active:focus, .btn-outline-deep-orange.active {
  5311. border-color: #ff7043 !important;
  5312. background-color: transparent !important;
  5313. color: #ff7043 !important; }
  5314. .btn-outline-deep-orange:not([disabled]):not(.disabled):active, .btn-outline-deep-orange:not([disabled]):not(.disabled).active,
  5315. .show > .btn-outline-deep-orange.dropdown-toggle {
  5316. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5317. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5318. background-color: transparent !important;
  5319. border-color: #ff7043 !important; }
  5320. .btn-outline-deep-orange:not([disabled]):not(.disabled):active:focus, .btn-outline-deep-orange:not([disabled]):not(.disabled).active:focus,
  5321. .show > .btn-outline-deep-orange.dropdown-toggle:focus {
  5322. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5323. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5324. .btn-brown {
  5325. background-color: #795548 !important;
  5326. color: #fff; }
  5327. .btn-brown:hover {
  5328. background-color: #896052;
  5329. color: #fff; }
  5330. .btn-brown:focus, .btn-brown.focus {
  5331. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5332. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5333. .btn-brown:focus, .btn-brown:active, .btn-brown.active {
  5334. background-color: #392822; }
  5335. .btn-brown.dropdown-toggle {
  5336. background-color: #795548 !important; }
  5337. .btn-brown.dropdown-toggle:hover, .btn-brown.dropdown-toggle:focus {
  5338. background-color: #896052 !important; }
  5339. .btn-brown:not([disabled]):not(.disabled):active, .btn-brown:not([disabled]):not(.disabled).active,
  5340. .show > .btn-brown.dropdown-toggle {
  5341. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5342. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5343. background-color: #392822 !important; }
  5344. .btn-brown:not([disabled]):not(.disabled):active:focus, .btn-brown:not([disabled]):not(.disabled).active:focus,
  5345. .show > .btn-brown.dropdown-toggle:focus {
  5346. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5347. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5348. .brown-ic {
  5349. color: #795548 !important; }
  5350. .brown-ic:hover, .brown-ic:focus {
  5351. color: #795548; }
  5352. a.btn:not([href]):not([tabindex]),
  5353. a.btn:not([href]):not([tabindex]):focus,
  5354. a.btn:not([href]):not([tabindex]):hover {
  5355. color: #fff; }
  5356. table.table a.btn.btn-brown {
  5357. color: #fff; }
  5358. .btn-outline-brown {
  5359. border: 2px solid #795548 !important;
  5360. background-color: transparent !important;
  5361. color: #795548 !important; }
  5362. .btn-outline-brown:hover, .btn-outline-brown:focus, .btn-outline-brown:active, .btn-outline-brown:active:focus, .btn-outline-brown.active {
  5363. border-color: #795548 !important;
  5364. background-color: transparent !important;
  5365. color: #795548 !important; }
  5366. .btn-outline-brown:not([disabled]):not(.disabled):active, .btn-outline-brown:not([disabled]):not(.disabled).active,
  5367. .show > .btn-outline-brown.dropdown-toggle {
  5368. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5369. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5370. background-color: transparent !important;
  5371. border-color: #795548 !important; }
  5372. .btn-outline-brown:not([disabled]):not(.disabled):active:focus, .btn-outline-brown:not([disabled]):not(.disabled).active:focus,
  5373. .show > .btn-outline-brown.dropdown-toggle:focus {
  5374. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5375. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5376. .btn-grey {
  5377. background-color: #616161 !important;
  5378. color: #fff; }
  5379. .btn-grey:hover {
  5380. background-color: #6e6e6e;
  5381. color: #fff; }
  5382. .btn-grey:focus, .btn-grey.focus {
  5383. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5384. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5385. .btn-grey:focus, .btn-grey:active, .btn-grey.active {
  5386. background-color: #2e2e2e; }
  5387. .btn-grey.dropdown-toggle {
  5388. background-color: #616161 !important; }
  5389. .btn-grey.dropdown-toggle:hover, .btn-grey.dropdown-toggle:focus {
  5390. background-color: #6e6e6e !important; }
  5391. .btn-grey:not([disabled]):not(.disabled):active, .btn-grey:not([disabled]):not(.disabled).active,
  5392. .show > .btn-grey.dropdown-toggle {
  5393. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5394. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5395. background-color: #2e2e2e !important; }
  5396. .btn-grey:not([disabled]):not(.disabled):active:focus, .btn-grey:not([disabled]):not(.disabled).active:focus,
  5397. .show > .btn-grey.dropdown-toggle:focus {
  5398. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5399. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5400. .grey-ic {
  5401. color: #616161 !important; }
  5402. .grey-ic:hover, .grey-ic:focus {
  5403. color: #616161; }
  5404. a.btn:not([href]):not([tabindex]),
  5405. a.btn:not([href]):not([tabindex]):focus,
  5406. a.btn:not([href]):not([tabindex]):hover {
  5407. color: #fff; }
  5408. table.table a.btn.btn-grey {
  5409. color: #fff; }
  5410. .btn-outline-grey {
  5411. border: 2px solid #616161 !important;
  5412. background-color: transparent !important;
  5413. color: #616161 !important; }
  5414. .btn-outline-grey:hover, .btn-outline-grey:focus, .btn-outline-grey:active, .btn-outline-grey:active:focus, .btn-outline-grey.active {
  5415. border-color: #616161 !important;
  5416. background-color: transparent !important;
  5417. color: #616161 !important; }
  5418. .btn-outline-grey:not([disabled]):not(.disabled):active, .btn-outline-grey:not([disabled]):not(.disabled).active,
  5419. .show > .btn-outline-grey.dropdown-toggle {
  5420. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5421. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5422. background-color: transparent !important;
  5423. border-color: #616161 !important; }
  5424. .btn-outline-grey:not([disabled]):not(.disabled):active:focus, .btn-outline-grey:not([disabled]):not(.disabled).active:focus,
  5425. .show > .btn-outline-grey.dropdown-toggle:focus {
  5426. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5427. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5428. .btn-blue-grey {
  5429. background-color: #78909c !important;
  5430. color: #fff; }
  5431. .btn-blue-grey:hover {
  5432. background-color: #879ca7;
  5433. color: #fff; }
  5434. .btn-blue-grey:focus, .btn-blue-grey.focus {
  5435. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5436. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5437. .btn-blue-grey:focus, .btn-blue-grey:active, .btn-blue-grey.active {
  5438. background-color: #4a5b64; }
  5439. .btn-blue-grey.dropdown-toggle {
  5440. background-color: #78909c !important; }
  5441. .btn-blue-grey.dropdown-toggle:hover, .btn-blue-grey.dropdown-toggle:focus {
  5442. background-color: #879ca7 !important; }
  5443. .btn-blue-grey:not([disabled]):not(.disabled):active, .btn-blue-grey:not([disabled]):not(.disabled).active,
  5444. .show > .btn-blue-grey.dropdown-toggle {
  5445. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5446. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5447. background-color: #4a5b64 !important; }
  5448. .btn-blue-grey:not([disabled]):not(.disabled):active:focus, .btn-blue-grey:not([disabled]):not(.disabled).active:focus,
  5449. .show > .btn-blue-grey.dropdown-toggle:focus {
  5450. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5451. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5452. .blue-grey-ic {
  5453. color: #78909c !important; }
  5454. .blue-grey-ic:hover, .blue-grey-ic:focus {
  5455. color: #78909c; }
  5456. a.btn:not([href]):not([tabindex]),
  5457. a.btn:not([href]):not([tabindex]):focus,
  5458. a.btn:not([href]):not([tabindex]):hover {
  5459. color: #fff; }
  5460. table.table a.btn.btn-blue-grey {
  5461. color: #fff; }
  5462. .btn-outline-blue-grey {
  5463. border: 2px solid #78909c !important;
  5464. background-color: transparent !important;
  5465. color: #78909c !important; }
  5466. .btn-outline-blue-grey:hover, .btn-outline-blue-grey:focus, .btn-outline-blue-grey:active, .btn-outline-blue-grey:active:focus, .btn-outline-blue-grey.active {
  5467. border-color: #78909c !important;
  5468. background-color: transparent !important;
  5469. color: #78909c !important; }
  5470. .btn-outline-blue-grey:not([disabled]):not(.disabled):active, .btn-outline-blue-grey:not([disabled]):not(.disabled).active,
  5471. .show > .btn-outline-blue-grey.dropdown-toggle {
  5472. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5473. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5474. background-color: transparent !important;
  5475. border-color: #78909c !important; }
  5476. .btn-outline-blue-grey:not([disabled]):not(.disabled):active:focus, .btn-outline-blue-grey:not([disabled]):not(.disabled).active:focus,
  5477. .show > .btn-outline-blue-grey.dropdown-toggle:focus {
  5478. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5479. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5480. .btn-dark {
  5481. background-color: #212121 !important;
  5482. color: #fff; }
  5483. .btn-dark:hover {
  5484. background-color: #2e2e2e;
  5485. color: #fff; }
  5486. .btn-dark:focus, .btn-dark.focus {
  5487. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5488. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5489. .btn-dark:focus, .btn-dark:active, .btn-dark.active {
  5490. background-color: black; }
  5491. .btn-dark.dropdown-toggle {
  5492. background-color: #212121 !important; }
  5493. .btn-dark.dropdown-toggle:hover, .btn-dark.dropdown-toggle:focus {
  5494. background-color: #2e2e2e !important; }
  5495. .btn-dark:not([disabled]):not(.disabled):active, .btn-dark:not([disabled]):not(.disabled).active,
  5496. .show > .btn-dark.dropdown-toggle {
  5497. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5498. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5499. background-color: black !important; }
  5500. .btn-dark:not([disabled]):not(.disabled):active:focus, .btn-dark:not([disabled]):not(.disabled).active:focus,
  5501. .show > .btn-dark.dropdown-toggle:focus {
  5502. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5503. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5504. .dark-ic {
  5505. color: #212121 !important; }
  5506. .dark-ic:hover, .dark-ic:focus {
  5507. color: #212121; }
  5508. a.btn:not([href]):not([tabindex]),
  5509. a.btn:not([href]):not([tabindex]):focus,
  5510. a.btn:not([href]):not([tabindex]):hover {
  5511. color: #fff; }
  5512. table.table a.btn.btn-dark {
  5513. color: #fff; }
  5514. .btn-outline-dark {
  5515. border: 2px solid #212121 !important;
  5516. background-color: transparent !important;
  5517. color: #212121 !important; }
  5518. .btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:active, .btn-outline-dark:active:focus, .btn-outline-dark.active {
  5519. border-color: #212121 !important;
  5520. background-color: transparent !important;
  5521. color: #212121 !important; }
  5522. .btn-outline-dark:not([disabled]):not(.disabled):active, .btn-outline-dark:not([disabled]):not(.disabled).active,
  5523. .show > .btn-outline-dark.dropdown-toggle {
  5524. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5525. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5526. background-color: transparent !important;
  5527. border-color: #212121 !important; }
  5528. .btn-outline-dark:not([disabled]):not(.disabled):active:focus, .btn-outline-dark:not([disabled]):not(.disabled).active:focus,
  5529. .show > .btn-outline-dark.dropdown-toggle:focus {
  5530. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5531. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5532. .btn-light {
  5533. background-color: #e0e0e0 !important;
  5534. color: #000; }
  5535. .btn-light:hover {
  5536. background-color: #ededed;
  5537. color: #000; }
  5538. .btn-light:focus, .btn-light.focus {
  5539. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5540. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5541. .btn-light:focus, .btn-light:active, .btn-light.active {
  5542. background-color: #adadad; }
  5543. .btn-light.dropdown-toggle {
  5544. background-color: #e0e0e0 !important; }
  5545. .btn-light.dropdown-toggle:hover, .btn-light.dropdown-toggle:focus {
  5546. background-color: #ededed !important; }
  5547. .btn-light:not([disabled]):not(.disabled):active, .btn-light:not([disabled]):not(.disabled).active,
  5548. .show > .btn-light.dropdown-toggle {
  5549. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5550. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5551. background-color: #adadad !important; }
  5552. .btn-light:not([disabled]):not(.disabled):active:focus, .btn-light:not([disabled]):not(.disabled).active:focus,
  5553. .show > .btn-light.dropdown-toggle:focus {
  5554. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5555. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5556. .light-ic {
  5557. color: #e0e0e0 !important; }
  5558. .light-ic:hover, .light-ic:focus {
  5559. color: #e0e0e0; }
  5560. a.btn:not([href]):not([tabindex]),
  5561. a.btn:not([href]):not([tabindex]):focus,
  5562. a.btn:not([href]):not([tabindex]):hover {
  5563. color: #000; }
  5564. table.table a.btn.btn-light {
  5565. color: #000; }
  5566. .btn-outline-light {
  5567. border: 2px solid #e0e0e0 !important;
  5568. background-color: transparent !important;
  5569. color: #e0e0e0 !important; }
  5570. .btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-light:active, .btn-outline-light:active:focus, .btn-outline-light.active {
  5571. border-color: #e0e0e0 !important;
  5572. background-color: transparent !important;
  5573. color: #e0e0e0 !important; }
  5574. .btn-outline-light:not([disabled]):not(.disabled):active, .btn-outline-light:not([disabled]):not(.disabled).active,
  5575. .show > .btn-outline-light.dropdown-toggle {
  5576. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5577. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5578. background-color: transparent !important;
  5579. border-color: #e0e0e0 !important; }
  5580. .btn-outline-light:not([disabled]):not(.disabled):active:focus, .btn-outline-light:not([disabled]):not(.disabled).active:focus,
  5581. .show > .btn-outline-light.dropdown-toggle:focus {
  5582. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5583. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5584. .btn-white {
  5585. background-color: #fff !important;
  5586. color: #000; }
  5587. .btn-white:hover {
  5588. background-color: white;
  5589. color: #000; }
  5590. .btn-white:focus, .btn-white.focus {
  5591. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5592. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5593. .btn-white:focus, .btn-white:active, .btn-white.active {
  5594. background-color: #cccccc; }
  5595. .btn-white.dropdown-toggle {
  5596. background-color: #fff !important; }
  5597. .btn-white.dropdown-toggle:hover, .btn-white.dropdown-toggle:focus {
  5598. background-color: white !important; }
  5599. .btn-white:not([disabled]):not(.disabled):active, .btn-white:not([disabled]):not(.disabled).active,
  5600. .show > .btn-white.dropdown-toggle {
  5601. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5602. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5603. background-color: #cccccc !important; }
  5604. .btn-white:not([disabled]):not(.disabled):active:focus, .btn-white:not([disabled]):not(.disabled).active:focus,
  5605. .show > .btn-white.dropdown-toggle:focus {
  5606. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5607. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5608. .white-ic {
  5609. color: #fff !important; }
  5610. .white-ic:hover, .white-ic:focus {
  5611. color: #fff; }
  5612. a.btn:not([href]):not([tabindex]),
  5613. a.btn:not([href]):not([tabindex]):focus,
  5614. a.btn:not([href]):not([tabindex]):hover {
  5615. color: #000; }
  5616. table.table a.btn.btn-white {
  5617. color: #000; }
  5618. .btn-outline-white {
  5619. border: 2px solid #fff !important;
  5620. background-color: transparent !important;
  5621. color: #fff !important; }
  5622. .btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active, .btn-outline-white:active:focus, .btn-outline-white.active {
  5623. border-color: #fff !important;
  5624. background-color: transparent !important;
  5625. color: #fff !important; }
  5626. .btn-outline-white:not([disabled]):not(.disabled):active, .btn-outline-white:not([disabled]):not(.disabled).active,
  5627. .show > .btn-outline-white.dropdown-toggle {
  5628. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5629. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5630. background-color: transparent !important;
  5631. border-color: #fff !important; }
  5632. .btn-outline-white:not([disabled]):not(.disabled):active:focus, .btn-outline-white:not([disabled]):not(.disabled).active:focus,
  5633. .show > .btn-outline-white.dropdown-toggle:focus {
  5634. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5635. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5636. .btn-black {
  5637. background-color: #000 !important;
  5638. color: #fff; }
  5639. .btn-black:hover {
  5640. background-color: #0d0d0d;
  5641. color: #fff; }
  5642. .btn-black:focus, .btn-black.focus {
  5643. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5644. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5645. .btn-black:focus, .btn-black:active, .btn-black.active {
  5646. background-color: black; }
  5647. .btn-black.dropdown-toggle {
  5648. background-color: #000 !important; }
  5649. .btn-black.dropdown-toggle:hover, .btn-black.dropdown-toggle:focus {
  5650. background-color: #0d0d0d !important; }
  5651. .btn-black:not([disabled]):not(.disabled):active, .btn-black:not([disabled]):not(.disabled).active,
  5652. .show > .btn-black.dropdown-toggle {
  5653. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5654. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5655. background-color: black !important; }
  5656. .btn-black:not([disabled]):not(.disabled):active:focus, .btn-black:not([disabled]):not(.disabled).active:focus,
  5657. .show > .btn-black.dropdown-toggle:focus {
  5658. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5659. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5660. .black-ic {
  5661. color: #000 !important; }
  5662. .black-ic:hover, .black-ic:focus {
  5663. color: #000; }
  5664. a.btn:not([href]):not([tabindex]),
  5665. a.btn:not([href]):not([tabindex]):focus,
  5666. a.btn:not([href]):not([tabindex]):hover {
  5667. color: #fff; }
  5668. table.table a.btn.btn-black {
  5669. color: #fff; }
  5670. .btn-outline-black {
  5671. border: 2px solid #000 !important;
  5672. background-color: transparent !important;
  5673. color: #000 !important; }
  5674. .btn-outline-black:hover, .btn-outline-black:focus, .btn-outline-black:active, .btn-outline-black:active:focus, .btn-outline-black.active {
  5675. border-color: #000 !important;
  5676. background-color: transparent !important;
  5677. color: #000 !important; }
  5678. .btn-outline-black:not([disabled]):not(.disabled):active, .btn-outline-black:not([disabled]):not(.disabled).active,
  5679. .show > .btn-outline-black.dropdown-toggle {
  5680. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5681. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5682. background-color: transparent !important;
  5683. border-color: #000 !important; }
  5684. .btn-outline-black:not([disabled]):not(.disabled):active:focus, .btn-outline-black:not([disabled]):not(.disabled).active:focus,
  5685. .show > .btn-outline-black.dropdown-toggle:focus {
  5686. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  5687. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  5688. .btn-warning:not(:disabled):not(.disabled).active,
  5689. .btn-warning:not(:disabled):not(.disabled):active,
  5690. .show > .btn-warning.dropdown-toggle {
  5691. color: #fff; }
  5692. .card {
  5693. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5694. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5695. border: 0;
  5696. font-weight: 400; }
  5697. .card[class*="border"] {
  5698. border: 1px solid #9e9e9e;
  5699. -webkit-box-shadow: none;
  5700. box-shadow: none; }
  5701. .card .card-body h1, .card .card-body h2, .card .card-body h3, .card .card-body h4, .card .card-body h5, .card .card-body h6 {
  5702. font-weight: 400; }
  5703. .card .card-body .card-title a {
  5704. -webkit-transition: 0.2s ease-in-out;
  5705. -o-transition: 0.2s ease-in-out;
  5706. transition: 0.2s ease-in-out; }
  5707. .card .card-body .card-title a:hover {
  5708. -webkit-transition: 0.2s ease-in-out;
  5709. -o-transition: 0.2s ease-in-out;
  5710. transition: 0.2s ease-in-out; }
  5711. .card .card-body .card-text {
  5712. color: #747373;
  5713. font-size: 0.9rem;
  5714. font-weight: 400; }
  5715. .card .md-form label {
  5716. font-weight: 300; }
  5717. .dropdown .dropdown-menu .dropdown-item:active {
  5718. background-color: #757575; }
  5719. .md-form.input-group label {
  5720. top: 0;
  5721. margin-bottom: 0; }
  5722. .md-form.input-group .input-group-text {
  5723. background-color: #e0e0e0; }
  5724. .md-form.input-group .input-group-text.md-addon {
  5725. border: none;
  5726. background-color: transparent;
  5727. font-weight: 500; }
  5728. .md-form.input-group .form-control {
  5729. margin: 0;
  5730. padding: 0.375rem 0.75rem; }
  5731. .navbar {
  5732. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5733. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5734. font-weight: 300; }
  5735. .navbar form .md-form input {
  5736. margin: 0 5px 1px 8px; }
  5737. .navbar .breadcrumb {
  5738. margin: 0;
  5739. padding: 0.3rem 0 0 1rem;
  5740. background-color: inherit;
  5741. font-size: 15px;
  5742. font-weight: 300; }
  5743. .navbar .breadcrumb .breadcrumb-item {
  5744. color: #fff; }
  5745. .navbar .breadcrumb .breadcrumb-item.active {
  5746. color: rgba(255, 255, 255, 0.65); }
  5747. .navbar .breadcrumb .breadcrumb-item:before {
  5748. color: rgba(255, 255, 255, 0.65); }
  5749. .navbar .navbar-toggler {
  5750. outline: 0;
  5751. border-width: 0; }
  5752. .navbar .nav-flex-icons {
  5753. -webkit-box-orient: horizontal;
  5754. -webkit-box-direction: normal;
  5755. -webkit-flex-direction: row;
  5756. -ms-flex-direction: row;
  5757. flex-direction: row; }
  5758. @media (max-width: 992px) {
  5759. .navbar .container {
  5760. width: 100%; }
  5761. .navbar .container .navbar-toggler-right {
  5762. right: 0; } }
  5763. .navbar .nav-item .nav-link {
  5764. display: block; }
  5765. .navbar .nav-item .nav-link.disabled:active {
  5766. pointer-events: none; }
  5767. .navbar .nav-item .nav-link .fas, .navbar .nav-item .nav-link .fab, .navbar .nav-item .nav-link .far {
  5768. padding-right: 3px;
  5769. padding-left: 3px; }
  5770. @media (max-width: 992px) {
  5771. .navbar .nav-item .nav-link {
  5772. padding-right: 6px;
  5773. padding-left: 6px; } }
  5774. .navbar .dropdown-menu {
  5775. position: absolute !important;
  5776. margin-top: 0; }
  5777. .navbar .dropdown-menu a {
  5778. padding: 10px;
  5779. font-size: 0.9375rem;
  5780. font-weight: 300;
  5781. color: #000; }
  5782. @media (max-width: 600px) {
  5783. .navbar .dropdown-menu form {
  5784. width: 17rem; } }
  5785. @media (min-width: 600px) {
  5786. .navbar .dropdown-menu form {
  5787. width: 22rem; } }
  5788. .navbar.navbar-light .navbar-nav .nav-item .nav-link.disbled {
  5789. color: rgba(0, 0, 0, 0.3); }
  5790. .navbar.navbar-light .navbar-nav .nav-item .nav-link.disbled:hover {
  5791. color: rgba(0, 0, 0, 0.3); }
  5792. .navbar.navbar-light .navbar-toggler-icon {
  5793. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  5794. cursor: pointer; }
  5795. .navbar.navbar-light .breadcrumb .nav-item .nav-link,
  5796. .navbar.navbar-light .navbar-nav .nav-item .nav-link {
  5797. color: #000;
  5798. -webkit-transition: 0.35s;
  5799. -o-transition: 0.35s;
  5800. transition: 0.35s; }
  5801. .navbar.navbar-light .breadcrumb .nav-item .nav-link:hover,
  5802. .navbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
  5803. color: rgba(0, 0, 0, 0.7); }
  5804. .navbar.navbar-light .breadcrumb .nav-item.active > .nav-link,
  5805. .navbar.navbar-light .navbar-nav .nav-item.active > .nav-link {
  5806. background-color: rgba(0, 0, 0, 0.1); }
  5807. .navbar.navbar-light .breadcrumb .nav-item.active > .nav-link:hover,
  5808. .navbar.navbar-light .navbar-nav .nav-item.active > .nav-link:hover {
  5809. color: #000; }
  5810. .navbar.navbar-light .navbar-toggler {
  5811. color: #000; }
  5812. .navbar.navbar-light form .md-form input {
  5813. border-bottom: 1px solid #000; }
  5814. .navbar.navbar-light form .md-form input:focus:not([readonly]) {
  5815. border-color: #4285f4; }
  5816. .navbar.navbar-light form .md-form .form-control {
  5817. color: #000; }
  5818. .navbar.navbar-light form .md-form .form-control::-webkit-input-placeholder {
  5819. color: #000;
  5820. font-weight: 300; }
  5821. .navbar.navbar-light form .md-form .form-control::-moz-placeholder {
  5822. color: #000;
  5823. font-weight: 300; }
  5824. .navbar.navbar-light form .md-form .form-control::-ms-input-placeholder {
  5825. color: #000;
  5826. font-weight: 300; }
  5827. .navbar.navbar-light form .md-form .form-control::placeholder {
  5828. color: #000;
  5829. font-weight: 300; }
  5830. .navbar.navbar-dark .navbar-nav .nav-item .nav-link.disbled {
  5831. color: rgba(255, 255, 255, 0.25); }
  5832. .navbar.navbar-dark .navbar-nav .nav-item .nav-link.disbled:hover {
  5833. color: rgba(255, 255, 255, 0.25); }
  5834. .navbar.navbar-dark .navbar-toggler-icon {
  5835. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  5836. cursor: pointer; }
  5837. .navbar.navbar-dark .breadcrumb .nav-item .nav-link,
  5838. .navbar.navbar-dark .navbar-nav .nav-item .nav-link {
  5839. color: #fff;
  5840. -webkit-transition: 0.35s;
  5841. -o-transition: 0.35s;
  5842. transition: 0.35s; }
  5843. .navbar.navbar-dark .breadcrumb .nav-item .nav-link:hover,
  5844. .navbar.navbar-dark .navbar-nav .nav-item .nav-link:hover {
  5845. color: rgba(255, 255, 255, 0.75); }
  5846. .navbar.navbar-dark .breadcrumb .nav-item.active > .nav-link,
  5847. .navbar.navbar-dark .navbar-nav .nav-item.active > .nav-link {
  5848. background-color: rgba(255, 255, 255, 0.1); }
  5849. .navbar.navbar-dark .breadcrumb .nav-item.active > .nav-link:hover,
  5850. .navbar.navbar-dark .navbar-nav .nav-item.active > .nav-link:hover {
  5851. color: #fff; }
  5852. .navbar.navbar-dark .navbar-toggler {
  5853. color: #fff; }
  5854. .navbar.navbar-dark form .md-form input {
  5855. border-bottom: 1px solid #fff; }
  5856. .navbar.navbar-dark form .md-form input:focus:not([readonly]) {
  5857. border-color: #4285f4; }
  5858. .navbar.navbar-dark form .md-form .form-control {
  5859. color: #fff; }
  5860. .navbar.navbar-dark form .md-form .form-control::-webkit-input-placeholder {
  5861. color: #fff;
  5862. font-weight: 300; }
  5863. .navbar.navbar-dark form .md-form .form-control::-moz-placeholder {
  5864. color: #fff;
  5865. font-weight: 300; }
  5866. .navbar.navbar-dark form .md-form .form-control::-ms-input-placeholder {
  5867. color: #fff;
  5868. font-weight: 300; }
  5869. .navbar.navbar-dark form .md-form .form-control::placeholder {
  5870. color: #fff;
  5871. font-weight: 300; }
  5872. @media (min-width: 600px) {
  5873. .navbar.scrolling-navbar {
  5874. -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  5875. -o-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  5876. transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
  5877. padding-top: 12px;
  5878. padding-bottom: 12px; }
  5879. .navbar.scrolling-navbar .navbar-nav > li {
  5880. -webkit-transition-duration: 1s;
  5881. -o-transition-duration: 1s;
  5882. transition-duration: 1s; }
  5883. .navbar.scrolling-navbar.top-nav-collapse {
  5884. padding-top: 5px;
  5885. padding-bottom: 5px; } }
  5886. @media (min-width: 400px) and (max-width: 767px), (min-width: 800px) and (max-width: 850px) {
  5887. .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
  5888. max-height: 340px;
  5889. overflow-x: hidden;
  5890. overflow-y: auto; } }
  5891. .pagination .page-item.active .page-link {
  5892. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5893. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5894. -webkit-transition: all 0.2s linear;
  5895. -o-transition: all 0.2s linear;
  5896. transition: all 0.2s linear;
  5897. -webkit-border-radius: 0.125rem;
  5898. border-radius: 0.125rem;
  5899. background-color: #4285f4;
  5900. color: #fff; }
  5901. .pagination .page-item.active .page-link:hover {
  5902. background-color: #4285f4; }
  5903. .pagination .page-item.disabled .page-link {
  5904. color: #868e96; }
  5905. .pagination .page-item .page-link {
  5906. -webkit-transition: all 0.3s linear;
  5907. -o-transition: all 0.3s linear;
  5908. transition: all 0.3s linear;
  5909. outline: 0;
  5910. border: 0;
  5911. background-color: transparent;
  5912. font-size: 0.9rem;
  5913. color: #212529; }
  5914. .pagination .page-item .page-link:hover {
  5915. -webkit-transition: all 0.3s linear;
  5916. -o-transition: all 0.3s linear;
  5917. transition: all 0.3s linear;
  5918. -webkit-border-radius: 0.125rem;
  5919. border-radius: 0.125rem;
  5920. background-color: #eee; }
  5921. .pagination .page-item .page-link:focus {
  5922. background-color: transparent;
  5923. -webkit-box-shadow: none;
  5924. box-shadow: none; }
  5925. .pagination.pagination-lg .page-item .page-link {
  5926. font-size: 1rem; }
  5927. .pagination.pagination-sm .page-item .page-link {
  5928. font-size: 0.8rem; }
  5929. .pagination.pagination-circle .page-item .page-link {
  5930. margin-left: 2px;
  5931. margin-right: 2px;
  5932. -webkit-border-radius: 50%;
  5933. border-radius: 50%; }
  5934. .pagination.pagination-circle .page-item .page-link:hover {
  5935. -webkit-border-radius: 50%;
  5936. border-radius: 50%; }
  5937. .pagination.pagination-circle .page-item.active .page-link {
  5938. -webkit-border-radius: 50%;
  5939. border-radius: 50%; }
  5940. .pagination.pg-blue .page-item.active .page-link {
  5941. background-color: #4285f4; }
  5942. .pagination.pg-blue .page-item.active .page-link:hover {
  5943. background-color: #4285f4; }
  5944. .pagination.pg-red .page-item.active .page-link {
  5945. background-color: #ff3547; }
  5946. .pagination.pg-red .page-item.active .page-link:hover {
  5947. background-color: #ff3547; }
  5948. .pagination.pg-teal .page-item.active .page-link {
  5949. background-color: #2bbbad; }
  5950. .pagination.pg-teal .page-item.active .page-link:hover {
  5951. background-color: #2bbbad; }
  5952. .pagination.pg-dark-grey .page-item.active .page-link {
  5953. background-color: #37474f; }
  5954. .pagination.pg-dark-grey .page-item.active .page-link:hover {
  5955. background-color: #37474f; }
  5956. .pagination.pg-dark .page-item.active .page-link {
  5957. background-color: #2e2e2e; }
  5958. .pagination.pg-dark .page-item.active .page-link:hover {
  5959. background-color: #2e2e2e; }
  5960. .pagination.pg-blue-grey .page-item.active .page-link {
  5961. background-color: #3f729b; }
  5962. .pagination.pg-blue-grey .page-item.active .page-link:hover {
  5963. background-color: #3f729b; }
  5964. .pagination.pg-amber .page-item.active .page-link {
  5965. background-color: #ff6f00; }
  5966. .pagination.pg-amber .page-item.active .page-link:hover {
  5967. background-color: #ff6f00; }
  5968. .pagination.pg-purple .page-item.active .page-link {
  5969. background-color: #5e35b1; }
  5970. .pagination.pg-purple .page-item.active .page-link:hover {
  5971. background-color: #5e35b1; }
  5972. .badge {
  5973. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5974. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  5975. -webkit-border-radius: 0.125rem;
  5976. border-radius: 0.125rem;
  5977. color: #fff !important; }
  5978. .badge-pill {
  5979. -webkit-border-radius: 10rem;
  5980. border-radius: 10rem;
  5981. padding-right: 0.6em;
  5982. padding-left: 0.6em; }
  5983. .badge-primary {
  5984. background-color: #4285f4 !important;
  5985. color: #fff !important; }
  5986. .badge-danger {
  5987. background-color: #ff3547 !important;
  5988. color: #fff !important; }
  5989. .badge-warning {
  5990. background-color: #ffbb33 !important;
  5991. color: #fff !important; }
  5992. .badge-success {
  5993. background-color: #00c851 !important;
  5994. color: #fff !important; }
  5995. .badge-info {
  5996. background-color: #33b5e5 !important;
  5997. color: #fff !important; }
  5998. .badge-default {
  5999. background-color: #2bbbad !important;
  6000. color: #fff !important; }
  6001. .badge-secondary {
  6002. background-color: #aa66cc !important;
  6003. color: #fff !important; }
  6004. .badge-dark {
  6005. background-color: #212121 !important;
  6006. color: #fff !important; }
  6007. .badge-light {
  6008. background-color: #e0e0e0 !important;
  6009. color: #000 !important; }
  6010. body.modal-open {
  6011. overflow: auto;
  6012. padding-right: 0 !important; }
  6013. body.scrollable {
  6014. overflow-y: auto; }
  6015. .modal-dialog .modal-content {
  6016. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6017. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6018. border: 0;
  6019. -webkit-border-radius: 0.125rem;
  6020. border-radius: 0.125rem; }
  6021. .modal-dialog .modal-content .modal-header {
  6022. -webkit-border-top-left-radius: 0.125rem;
  6023. border-top-left-radius: 0.125rem;
  6024. -webkit-border-top-right-radius: 0.125rem;
  6025. border-top-right-radius: 0.125rem; }
  6026. .modal-dialog.cascading-modal {
  6027. margin-top: 10%; }
  6028. .modal-dialog.cascading-modal .close {
  6029. opacity: 1;
  6030. text-shadow: none;
  6031. color: #fff;
  6032. outline: 0; }
  6033. .modal-dialog.cascading-modal .modal-header {
  6034. -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6035. box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  6036. margin: -2rem 1rem 1rem 1rem;
  6037. border: none;
  6038. -webkit-border-radius: 0.125rem;
  6039. border-radius: 0.125rem;
  6040. padding: 1.5rem;
  6041. text-align: center; }
  6042. .modal-dialog.cascading-modal .modal-header .close {
  6043. margin-right: 1rem; }
  6044. .modal-dialog.cascading-modal .modal-header .title {
  6045. margin-bottom: 0;
  6046. width: 100%;
  6047. font-size: 1.25rem; }
  6048. .modal-dialog.cascading-modal .modal-header .title .fas, .modal-dialog.cascading-modal .modal-header .title .fab, .modal-dialog.cascading-modal .modal-header .title .far {
  6049. margin-right: 9px; }
  6050. .modal-dialog.cascading-modal .modal-header .social-buttons {
  6051. margin-top: 1.5rem; }
  6052. .modal-dialog.cascading-modal .modal-header .social-buttons a {
  6053. font-size: 1rem; }
  6054. .modal-dialog.cascading-modal .modal-c-tabs .md-tabs {
  6055. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  6056. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  6057. margin: -1.5rem 1rem 0 1rem;
  6058. display: -webkit-box;
  6059. display: -webkit-flex;
  6060. display: -ms-flexbox;
  6061. display: flex; }
  6062. .modal-dialog.cascading-modal .modal-c-tabs .md-tabs li {
  6063. -webkit-box-flex: 1;
  6064. -webkit-flex: 1;
  6065. -ms-flex: 1;
  6066. flex: 1; }
  6067. .modal-dialog.cascading-modal .modal-c-tabs .md-tabs li a {
  6068. text-align: center; }
  6069. .modal-dialog.cascading-modal .modal-c-tabs .tab-content {
  6070. padding: 1.7rem 0 0 0; }
  6071. .modal-dialog.cascading-modal .modal-body,
  6072. .modal-dialog.cascading-modal .modal-footer {
  6073. padding-left: 2rem;
  6074. padding-right: 2rem;
  6075. color: #616161; }
  6076. .modal-dialog.cascading-modal .modal-body .additional-option,
  6077. .modal-dialog.cascading-modal .modal-footer .additional-option {
  6078. margin-top: 1rem;
  6079. text-align: center; }
  6080. .modal-dialog.cascading-modal.modal-avatar {
  6081. margin-top: 6rem; }
  6082. .modal-dialog.cascading-modal.modal-avatar .modal-header {
  6083. -webkit-box-shadow: none;
  6084. box-shadow: none;
  6085. margin: -6rem 0 -1rem; }
  6086. .modal-dialog.cascading-modal.modal-avatar .modal-header img {
  6087. width: 130px;
  6088. -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  6089. box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  6090. margin-left: auto;
  6091. margin-right: auto; }
  6092. .modal-dialog.modal-notify .heading {
  6093. margin: 0;
  6094. padding: 0.3rem;
  6095. font-size: 1.15rem;
  6096. color: #fff; }
  6097. .modal-dialog.modal-notify .modal-header {
  6098. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  6099. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  6100. border: 0; }
  6101. .modal-dialog.modal-notify .close {
  6102. opacity: 1; }
  6103. .modal-dialog.modal-notify .modal-body {
  6104. padding: 1.5rem;
  6105. color: #616161; }
  6106. .modal-dialog.modal-notify.modal-primary .modal-header {
  6107. background-color: #4285f4; }
  6108. .modal-dialog.modal-notify.modal-primary .fas, .modal-dialog.modal-notify.modal-primary .fab, .modal-dialog.modal-notify.modal-primary .far {
  6109. color: #4285f4; }
  6110. .modal-dialog.modal-notify.modal-primary .badge {
  6111. background-color: #4285f4; }
  6112. .modal-dialog.modal-notify.modal-primary .btn .fas, .modal-dialog.modal-notify.modal-primary .btn .fab, .modal-dialog.modal-notify.modal-primary .btn .far {
  6113. color: #fff; }
  6114. .modal-dialog.modal-notify.modal-primary .btn.btn-outline-primary .fas, .modal-dialog.modal-notify.modal-primary .btn.btn-outline-primary .fab, .modal-dialog.modal-notify.modal-primary .btn.btn-outline-primary .far {
  6115. color: #4285f4; }
  6116. .modal-dialog.modal-notify.modal-danger .modal-header {
  6117. background-color: #ff3547; }
  6118. .modal-dialog.modal-notify.modal-danger .fas, .modal-dialog.modal-notify.modal-danger .fab, .modal-dialog.modal-notify.modal-danger .far {
  6119. color: #ff3547; }
  6120. .modal-dialog.modal-notify.modal-danger .badge {
  6121. background-color: #ff3547; }
  6122. .modal-dialog.modal-notify.modal-danger .btn .fas, .modal-dialog.modal-notify.modal-danger .btn .fab, .modal-dialog.modal-notify.modal-danger .btn .far {
  6123. color: #fff; }
  6124. .modal-dialog.modal-notify.modal-danger .btn.btn-outline-danger .fas, .modal-dialog.modal-notify.modal-danger .btn.btn-outline-danger .fab, .modal-dialog.modal-notify.modal-danger .btn.btn-outline-danger .far {
  6125. color: #ff3547; }
  6126. .modal-dialog.modal-notify.modal-warning .modal-header {
  6127. background-color: #ffbb33; }
  6128. .modal-dialog.modal-notify.modal-warning .fas, .modal-dialog.modal-notify.modal-warning .fab, .modal-dialog.modal-notify.modal-warning .far {
  6129. color: #ffbb33; }
  6130. .modal-dialog.modal-notify.modal-warning .badge {
  6131. background-color: #ffbb33; }
  6132. .modal-dialog.modal-notify.modal-warning .btn .fas, .modal-dialog.modal-notify.modal-warning .btn .fab, .modal-dialog.modal-notify.modal-warning .btn .far {
  6133. color: #fff; }
  6134. .modal-dialog.modal-notify.modal-warning .btn.btn-outline-warning .fas, .modal-dialog.modal-notify.modal-warning .btn.btn-outline-warning .fab, .modal-dialog.modal-notify.modal-warning .btn.btn-outline-warning .far {
  6135. color: #ffbb33; }
  6136. .modal-dialog.modal-notify.modal-success .modal-header {
  6137. background-color: #00c851; }
  6138. .modal-dialog.modal-notify.modal-success .fas, .modal-dialog.modal-notify.modal-success .fab, .modal-dialog.modal-notify.modal-success .far {
  6139. color: #00c851; }
  6140. .modal-dialog.modal-notify.modal-success .badge {
  6141. background-color: #00c851; }
  6142. .modal-dialog.modal-notify.modal-success .btn .fas, .modal-dialog.modal-notify.modal-success .btn .fab, .modal-dialog.modal-notify.modal-success .btn .far {
  6143. color: #fff; }
  6144. .modal-dialog.modal-notify.modal-success .btn.btn-outline-success .fas, .modal-dialog.modal-notify.modal-success .btn.btn-outline-success .fab, .modal-dialog.modal-notify.modal-success .btn.btn-outline-success .far {
  6145. color: #00c851; }
  6146. .modal-dialog.modal-notify.modal-info .modal-header {
  6147. background-color: #33b5e5; }
  6148. .modal-dialog.modal-notify.modal-info .fas, .modal-dialog.modal-notify.modal-info .fab, .modal-dialog.modal-notify.modal-info .far {
  6149. color: #33b5e5; }
  6150. .modal-dialog.modal-notify.modal-info .badge {
  6151. background-color: #33b5e5; }
  6152. .modal-dialog.modal-notify.modal-info .btn .fas, .modal-dialog.modal-notify.modal-info .btn .fab, .modal-dialog.modal-notify.modal-info .btn .far {
  6153. color: #fff; }
  6154. .modal-dialog.modal-notify.modal-info .btn.btn-outline-info .fas, .modal-dialog.modal-notify.modal-info .btn.btn-outline-info .fab, .modal-dialog.modal-notify.modal-info .btn.btn-outline-info .far {
  6155. color: #33b5e5; }
  6156. .modal {
  6157. padding-right: 0 !important; }
  6158. @media (min-width: 768px) {
  6159. .modal .modal-dialog.modal-top {
  6160. top: 0; }
  6161. .modal .modal-dialog.modal-left {
  6162. left: 0; }
  6163. .modal .modal-dialog.modal-right {
  6164. right: 0; }
  6165. .modal .modal-dialog.modal-bottom {
  6166. bottom: 0; }
  6167. .modal .modal-dialog.modal-top-left {
  6168. top: 10px;
  6169. left: 10px; }
  6170. .modal .modal-dialog.modal-top-right {
  6171. top: 10px;
  6172. right: 10px; }
  6173. .modal .modal-dialog.modal-bottom-left {
  6174. bottom: 10px;
  6175. left: 10px; }
  6176. .modal .modal-dialog.modal-bottom-right {
  6177. bottom: 10px;
  6178. right: 10px; } }
  6179. .modal.fade.top:not(.show) .modal-dialog {
  6180. -webkit-transform: translate3d(0, -25%, 0);
  6181. transform: translate3d(0, -25%, 0); }
  6182. .modal.fade.left:not(.show) .modal-dialog {
  6183. -webkit-transform: translate3d(-25%, 0, 0);
  6184. transform: translate3d(-25%, 0, 0); }
  6185. .modal.fade.right:not(.show) .modal-dialog {
  6186. -webkit-transform: translate3d(25%, 0, 0);
  6187. transform: translate3d(25%, 0, 0); }
  6188. .modal.fade.bottom:not(.show) .modal-dialog {
  6189. -webkit-transform: translate3d(0, 25%, 0);
  6190. transform: translate3d(0, 25%, 0); }
  6191. @media (min-width: 992px) {
  6192. .modal.modal-scrolling {
  6193. position: relative; }
  6194. .modal.modal-scrolling .modal-dialog {
  6195. position: fixed;
  6196. z-index: 1050; }
  6197. .modal.modal-content-clickable {
  6198. top: auto;
  6199. bottom: auto; }
  6200. .modal.modal-content-clickable .modal-dialog {
  6201. position: fixed; }
  6202. .modal .modal-fluid {
  6203. width: 100%;
  6204. max-width: 100%; }
  6205. .modal .modal-fluid .modal-content {
  6206. width: 100%; }
  6207. .modal .modal-frame {
  6208. position: absolute;
  6209. margin: 0;
  6210. width: 100%;
  6211. max-width: 100%; }
  6212. .modal .modal-frame.modal-bottom {
  6213. bottom: 0; }
  6214. .modal .modal-full-height {
  6215. position: absolute;
  6216. display: -webkit-box;
  6217. display: -webkit-flex;
  6218. display: -ms-flexbox;
  6219. display: flex;
  6220. margin: 0;
  6221. width: 400px;
  6222. min-height: 100%;
  6223. height: auto;
  6224. min-height: 100%;
  6225. top: 0;
  6226. right: 0; }
  6227. .modal .modal-full-height.modal-top, .modal .modal-full-height.modal-bottom {
  6228. display: block;
  6229. width: 100%;
  6230. max-width: 100%;
  6231. height: auto; }
  6232. .modal .modal-full-height.modal-top {
  6233. bottom: auto; }
  6234. .modal .modal-full-height.modal-bottom {
  6235. min-height: 0;
  6236. top: auto; }
  6237. .modal .modal-full-height .modal-content {
  6238. width: 100%; }
  6239. .modal .modal-full-height.modal-lg {
  6240. width: 90%;
  6241. max-width: 90%; } }
  6242. @media (min-width: 992px) and (min-width: 992px) {
  6243. .modal .modal-full-height.modal-lg {
  6244. width: 800px;
  6245. max-width: 800px; } }
  6246. @media (min-width: 992px) and (min-width: 1200px) {
  6247. .modal .modal-full-height.modal-lg {
  6248. width: 1000px;
  6249. max-width: 1000px; } }
  6250. @media (min-width: 992px) {
  6251. .modal .modal-side {
  6252. position: absolute;
  6253. bottom: 10px;
  6254. right: 10px;
  6255. margin: 0;
  6256. width: 400px; } }
  6257. .carousel .carousel-control-prev-icon,
  6258. .carousel .carousel-control-next-icon {
  6259. width: 20px;
  6260. height: 20px; }
  6261. .carousel .carousel-control-prev-icon {
  6262. background-image: url(../img/svg/arrow_left.svg); }
  6263. .carousel .carousel-control-next-icon {
  6264. background-image: url(../img/svg/arrow_right.svg); }
  6265. .carousel .carousel-indicators li {
  6266. width: 0.625rem;
  6267. height: 0.625rem;
  6268. -webkit-border-radius: 50%;
  6269. border-radius: 50%;
  6270. cursor: pointer; }
  6271. .carousel-fade .carousel-item {
  6272. opacity: 0;
  6273. -webkit-transition-duration: 0.6s;
  6274. -o-transition-duration: 0.6s;
  6275. transition-duration: 0.6s;
  6276. -webkit-transition-property: opacity;
  6277. -o-transition-property: opacity;
  6278. transition-property: opacity; }
  6279. .carousel-fade .carousel-item.active,
  6280. .carousel-fade .carousel-item-next.carousel-item-left,
  6281. .carousel-fade .carousel-item-prev.carousel-item-right {
  6282. opacity: 1; }
  6283. .carousel-fade .carousel-item-left.active,
  6284. .carousel-fade .carousel-item-right.active {
  6285. opacity: 0; }
  6286. .carousel-fade .carousel-item-next,
  6287. .carousel-fade .carousel-item-prev,
  6288. .carousel-fade .carousel-item.active,
  6289. .carousel-fade .carousel-item-left.active,
  6290. .carousel-fade .carousel-item-prev.active {
  6291. -webkit-transform: translateX(0);
  6292. -ms-transform: translateX(0);
  6293. transform: translateX(0); }
  6294. @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  6295. .carousel-fade .carousel-item-next,
  6296. .carousel-fade .carousel-item-prev,
  6297. .carousel-fade .carousel-item.active,
  6298. .carousel-fade .carousel-item-left.active,
  6299. .carousel-fade .carousel-item-prev.active {
  6300. -webkit-transform: translate3d(0, 0, 0);
  6301. transform: translate3d(0, 0, 0); } }
  6302. .md-form {
  6303. position: relative;
  6304. margin-top: 1.5rem;
  6305. margin-bottom: 1.5rem; }
  6306. .md-form input[type=text],
  6307. .md-form input[type=password],
  6308. .md-form input[type=email],
  6309. .md-form input[type=url],
  6310. .md-form input[type=time],
  6311. .md-form input[type=date],
  6312. .md-form input[type=datetime-local],
  6313. .md-form input[type=tel],
  6314. .md-form input[type=number],
  6315. .md-form input[type=search-md],
  6316. .md-form input[type=search],
  6317. .md-form textarea.md-textarea {
  6318. -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  6319. transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  6320. -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  6321. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  6322. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  6323. outline: none;
  6324. -webkit-box-shadow: none;
  6325. box-shadow: none;
  6326. border: none;
  6327. border-bottom: 1px solid #ced4da;
  6328. -webkit-border-radius: 0;
  6329. border-radius: 0;
  6330. -webkit-box-sizing: content-box;
  6331. box-sizing: content-box;
  6332. background-color: transparent; }
  6333. .md-form input[type=text]:focus:not([readonly]),
  6334. .md-form input[type=password]:focus:not([readonly]),
  6335. .md-form input[type=email]:focus:not([readonly]),
  6336. .md-form input[type=url]:focus:not([readonly]),
  6337. .md-form input[type=time]:focus:not([readonly]),
  6338. .md-form input[type=date]:focus:not([readonly]),
  6339. .md-form input[type=datetime-local]:focus:not([readonly]),
  6340. .md-form input[type=tel]:focus:not([readonly]),
  6341. .md-form input[type=number]:focus:not([readonly]),
  6342. .md-form input[type=search-md]:focus:not([readonly]),
  6343. .md-form input[type=search]:focus:not([readonly]),
  6344. .md-form textarea.md-textarea:focus:not([readonly]) {
  6345. -webkit-box-shadow: 0 1px 0 0 #4285f4;
  6346. box-shadow: 0 1px 0 0 #4285f4;
  6347. border-bottom: 1px solid #4285f4; }
  6348. .md-form input[type=text]:focus:not([readonly]) + label,
  6349. .md-form input[type=password]:focus:not([readonly]) + label,
  6350. .md-form input[type=email]:focus:not([readonly]) + label,
  6351. .md-form input[type=url]:focus:not([readonly]) + label,
  6352. .md-form input[type=time]:focus:not([readonly]) + label,
  6353. .md-form input[type=date]:focus:not([readonly]) + label,
  6354. .md-form input[type=datetime-local]:focus:not([readonly]) + label,
  6355. .md-form input[type=tel]:focus:not([readonly]) + label,
  6356. .md-form input[type=number]:focus:not([readonly]) + label,
  6357. .md-form input[type=search-md]:focus:not([readonly]) + label,
  6358. .md-form input[type=search]:focus:not([readonly]) + label,
  6359. .md-form textarea.md-textarea:focus:not([readonly]) + label {
  6360. color: #4285f4; }
  6361. .md-form input[type=text] + label:after,
  6362. .md-form input[type=password] + label:after,
  6363. .md-form input[type=email] + label:after,
  6364. .md-form input[type=url] + label:after,
  6365. .md-form input[type=time] + label:after,
  6366. .md-form input[type=date] + label:after,
  6367. .md-form input[type=datetime-local] + label:after,
  6368. .md-form input[type=tel] + label:after,
  6369. .md-form input[type=number] + label:after,
  6370. .md-form input[type=search-md] + label:after,
  6371. .md-form input[type=search] + label:after,
  6372. .md-form textarea.md-textarea + label:after {
  6373. content: "";
  6374. position: absolute;
  6375. top: 65px;
  6376. display: block;
  6377. opacity: 0;
  6378. -webkit-transition: 0.2s opacity ease-out, 0.2s color ease-out;
  6379. -o-transition: 0.2s opacity ease-out, 0.2s color ease-out;
  6380. transition: 0.2s opacity ease-out, 0.2s color ease-out; }
  6381. .md-form input[type=text].valid, .md-form input[type=text]:focus.valid,
  6382. .md-form input[type=password].valid,
  6383. .md-form input[type=password]:focus.valid,
  6384. .md-form input[type=email].valid,
  6385. .md-form input[type=email]:focus.valid,
  6386. .md-form input[type=url].valid,
  6387. .md-form input[type=url]:focus.valid,
  6388. .md-form input[type=time].valid,
  6389. .md-form input[type=time]:focus.valid,
  6390. .md-form input[type=date].valid,
  6391. .md-form input[type=date]:focus.valid,
  6392. .md-form input[type=datetime-local].valid,
  6393. .md-form input[type=datetime-local]:focus.valid,
  6394. .md-form input[type=tel].valid,
  6395. .md-form input[type=tel]:focus.valid,
  6396. .md-form input[type=number].valid,
  6397. .md-form input[type=number]:focus.valid,
  6398. .md-form input[type=search-md].valid,
  6399. .md-form input[type=search-md]:focus.valid,
  6400. .md-form input[type=search].valid,
  6401. .md-form input[type=search]:focus.valid,
  6402. .md-form textarea.md-textarea.valid,
  6403. .md-form textarea.md-textarea:focus.valid {
  6404. border-bottom: 1px solid #00c851;
  6405. -webkit-box-shadow: 0 1px 0 0 #00c851;
  6406. box-shadow: 0 1px 0 0 #00c851; }
  6407. .md-form input[type=text].valid + label:after,
  6408. .md-form input[type=text]:focus.valid + label:after,
  6409. .md-form input[type=password].valid + label:after,
  6410. .md-form input[type=password]:focus.valid + label:after,
  6411. .md-form input[type=email].valid + label:after,
  6412. .md-form input[type=email]:focus.valid + label:after,
  6413. .md-form input[type=url].valid + label:after,
  6414. .md-form input[type=url]:focus.valid + label:after,
  6415. .md-form input[type=time].valid + label:after,
  6416. .md-form input[type=time]:focus.valid + label:after,
  6417. .md-form input[type=date].valid + label:after,
  6418. .md-form input[type=date]:focus.valid + label:after,
  6419. .md-form input[type=datetime-local].valid + label:after,
  6420. .md-form input[type=datetime-local]:focus.valid + label:after,
  6421. .md-form input[type=tel].valid + label:after,
  6422. .md-form input[type=tel]:focus.valid + label:after,
  6423. .md-form input[type=number].valid + label:after,
  6424. .md-form input[type=number]:focus.valid + label:after,
  6425. .md-form input[type=search-md].valid + label:after,
  6426. .md-form input[type=search-md]:focus.valid + label:after,
  6427. .md-form input[type=search].valid + label:after,
  6428. .md-form input[type=search]:focus.valid + label:after,
  6429. .md-form textarea.md-textarea.valid + label:after,
  6430. .md-form textarea.md-textarea:focus.valid + label:after {
  6431. content: attr(data-success);
  6432. color: #00c851;
  6433. opacity: 1; }
  6434. .md-form input[type=text].invalid, .md-form input[type=text]:focus.invalid,
  6435. .md-form input[type=password].invalid,
  6436. .md-form input[type=password]:focus.invalid,
  6437. .md-form input[type=email].invalid,
  6438. .md-form input[type=email]:focus.invalid,
  6439. .md-form input[type=url].invalid,
  6440. .md-form input[type=url]:focus.invalid,
  6441. .md-form input[type=time].invalid,
  6442. .md-form input[type=time]:focus.invalid,
  6443. .md-form input[type=date].invalid,
  6444. .md-form input[type=date]:focus.invalid,
  6445. .md-form input[type=datetime-local].invalid,
  6446. .md-form input[type=datetime-local]:focus.invalid,
  6447. .md-form input[type=tel].invalid,
  6448. .md-form input[type=tel]:focus.invalid,
  6449. .md-form input[type=number].invalid,
  6450. .md-form input[type=number]:focus.invalid,
  6451. .md-form input[type=search-md].invalid,
  6452. .md-form input[type=search-md]:focus.invalid,
  6453. .md-form input[type=search].invalid,
  6454. .md-form input[type=search]:focus.invalid,
  6455. .md-form textarea.md-textarea.invalid,
  6456. .md-form textarea.md-textarea:focus.invalid {
  6457. border-bottom: 1px solid #f44336;
  6458. -webkit-box-shadow: 0 1px 0 0 #f44336;
  6459. box-shadow: 0 1px 0 0 #f44336; }
  6460. .md-form input[type=text].invalid + label:after,
  6461. .md-form input[type=text]:focus.invalid + label:after,
  6462. .md-form input[type=password].invalid + label:after,
  6463. .md-form input[type=password]:focus.invalid + label:after,
  6464. .md-form input[type=email].invalid + label:after,
  6465. .md-form input[type=email]:focus.invalid + label:after,
  6466. .md-form input[type=url].invalid + label:after,
  6467. .md-form input[type=url]:focus.invalid + label:after,
  6468. .md-form input[type=time].invalid + label:after,
  6469. .md-form input[type=time]:focus.invalid + label:after,
  6470. .md-form input[type=date].invalid + label:after,
  6471. .md-form input[type=date]:focus.invalid + label:after,
  6472. .md-form input[type=datetime-local].invalid + label:after,
  6473. .md-form input[type=datetime-local]:focus.invalid + label:after,
  6474. .md-form input[type=tel].invalid + label:after,
  6475. .md-form input[type=tel]:focus.invalid + label:after,
  6476. .md-form input[type=number].invalid + label:after,
  6477. .md-form input[type=number]:focus.invalid + label:after,
  6478. .md-form input[type=search-md].invalid + label:after,
  6479. .md-form input[type=search-md]:focus.invalid + label:after,
  6480. .md-form input[type=search].invalid + label:after,
  6481. .md-form input[type=search]:focus.invalid + label:after,
  6482. .md-form textarea.md-textarea.invalid + label:after,
  6483. .md-form textarea.md-textarea:focus.invalid + label:after {
  6484. content: attr(data-error);
  6485. color: #f44336;
  6486. opacity: 1; }
  6487. .md-form input[type=text].form-control.valid + label:after,
  6488. .md-form input[type=text].form-control:focus.valid + label:after,
  6489. .md-form input[type=password].form-control.valid + label:after,
  6490. .md-form input[type=password].form-control:focus.valid + label:after,
  6491. .md-form input[type=email].form-control.valid + label:after,
  6492. .md-form input[type=email].form-control:focus.valid + label:after,
  6493. .md-form input[type=url].form-control.valid + label:after,
  6494. .md-form input[type=url].form-control:focus.valid + label:after,
  6495. .md-form input[type=time].form-control.valid + label:after,
  6496. .md-form input[type=time].form-control:focus.valid + label:after,
  6497. .md-form input[type=date].form-control.valid + label:after,
  6498. .md-form input[type=date].form-control:focus.valid + label:after,
  6499. .md-form input[type=datetime-local].form-control.valid + label:after,
  6500. .md-form input[type=datetime-local].form-control:focus.valid + label:after,
  6501. .md-form input[type=tel].form-control.valid + label:after,
  6502. .md-form input[type=tel].form-control:focus.valid + label:after,
  6503. .md-form input[type=number].form-control.valid + label:after,
  6504. .md-form input[type=number].form-control:focus.valid + label:after,
  6505. .md-form input[type=search-md].form-control.valid + label:after,
  6506. .md-form input[type=search-md].form-control:focus.valid + label:after,
  6507. .md-form input[type=search].form-control.valid + label:after,
  6508. .md-form input[type=search].form-control:focus.valid + label:after,
  6509. .md-form textarea.md-textarea.form-control.valid + label:after,
  6510. .md-form textarea.md-textarea.form-control:focus.valid + label:after {
  6511. top: 4.1rem; }
  6512. .md-form input[type=text].form-control.invalid + label:after,
  6513. .md-form input[type=text].form-control:focus.invalid + label:after,
  6514. .md-form input[type=password].form-control.invalid + label:after,
  6515. .md-form input[type=password].form-control:focus.invalid + label:after,
  6516. .md-form input[type=email].form-control.invalid + label:after,
  6517. .md-form input[type=email].form-control:focus.invalid + label:after,
  6518. .md-form input[type=url].form-control.invalid + label:after,
  6519. .md-form input[type=url].form-control:focus.invalid + label:after,
  6520. .md-form input[type=time].form-control.invalid + label:after,
  6521. .md-form input[type=time].form-control:focus.invalid + label:after,
  6522. .md-form input[type=date].form-control.invalid + label:after,
  6523. .md-form input[type=date].form-control:focus.invalid + label:after,
  6524. .md-form input[type=datetime-local].form-control.invalid + label:after,
  6525. .md-form input[type=datetime-local].form-control:focus.invalid + label:after,
  6526. .md-form input[type=tel].form-control.invalid + label:after,
  6527. .md-form input[type=tel].form-control:focus.invalid + label:after,
  6528. .md-form input[type=number].form-control.invalid + label:after,
  6529. .md-form input[type=number].form-control:focus.invalid + label:after,
  6530. .md-form input[type=search-md].form-control.invalid + label:after,
  6531. .md-form input[type=search-md].form-control:focus.invalid + label:after,
  6532. .md-form input[type=search].form-control.invalid + label:after,
  6533. .md-form input[type=search].form-control:focus.invalid + label:after,
  6534. .md-form textarea.md-textarea.form-control.invalid + label:after,
  6535. .md-form textarea.md-textarea.form-control:focus.invalid + label:after {
  6536. top: 4rem; }
  6537. .md-form input[type=text].form-control-lg.valid + label:after,
  6538. .md-form input[type=text].form-control-lg:focus.valid + label:after,
  6539. .md-form input[type=password].form-control-lg.valid + label:after,
  6540. .md-form input[type=password].form-control-lg:focus.valid + label:after,
  6541. .md-form input[type=email].form-control-lg.valid + label:after,
  6542. .md-form input[type=email].form-control-lg:focus.valid + label:after,
  6543. .md-form input[type=url].form-control-lg.valid + label:after,
  6544. .md-form input[type=url].form-control-lg:focus.valid + label:after,
  6545. .md-form input[type=time].form-control-lg.valid + label:after,
  6546. .md-form input[type=time].form-control-lg:focus.valid + label:after,
  6547. .md-form input[type=date].form-control-lg.valid + label:after,
  6548. .md-form input[type=date].form-control-lg:focus.valid + label:after,
  6549. .md-form input[type=datetime-local].form-control-lg.valid + label:after,
  6550. .md-form input[type=datetime-local].form-control-lg:focus.valid + label:after,
  6551. .md-form input[type=tel].form-control-lg.valid + label:after,
  6552. .md-form input[type=tel].form-control-lg:focus.valid + label:after,
  6553. .md-form input[type=number].form-control-lg.valid + label:after,
  6554. .md-form input[type=number].form-control-lg:focus.valid + label:after,
  6555. .md-form input[type=search-md].form-control-lg.valid + label:after,
  6556. .md-form input[type=search-md].form-control-lg:focus.valid + label:after,
  6557. .md-form input[type=search].form-control-lg.valid + label:after,
  6558. .md-form input[type=search].form-control-lg:focus.valid + label:after,
  6559. .md-form textarea.md-textarea.form-control-lg.valid + label:after,
  6560. .md-form textarea.md-textarea.form-control-lg:focus.valid + label:after {
  6561. top: 4.6rem; }
  6562. .md-form input[type=text].form-control-lg.invalid + label:after,
  6563. .md-form input[type=text].form-control-lg:focus.invalid + label:after,
  6564. .md-form input[type=password].form-control-lg.invalid + label:after,
  6565. .md-form input[type=password].form-control-lg:focus.invalid + label:after,
  6566. .md-form input[type=email].form-control-lg.invalid + label:after,
  6567. .md-form input[type=email].form-control-lg:focus.invalid + label:after,
  6568. .md-form input[type=url].form-control-lg.invalid + label:after,
  6569. .md-form input[type=url].form-control-lg:focus.invalid + label:after,
  6570. .md-form input[type=time].form-control-lg.invalid + label:after,
  6571. .md-form input[type=time].form-control-lg:focus.invalid + label:after,
  6572. .md-form input[type=date].form-control-lg.invalid + label:after,
  6573. .md-form input[type=date].form-control-lg:focus.invalid + label:after,
  6574. .md-form input[type=datetime-local].form-control-lg.invalid + label:after,
  6575. .md-form input[type=datetime-local].form-control-lg:focus.invalid + label:after,
  6576. .md-form input[type=tel].form-control-lg.invalid + label:after,
  6577. .md-form input[type=tel].form-control-lg:focus.invalid + label:after,
  6578. .md-form input[type=number].form-control-lg.invalid + label:after,
  6579. .md-form input[type=number].form-control-lg:focus.invalid + label:after,
  6580. .md-form input[type=search-md].form-control-lg.invalid + label:after,
  6581. .md-form input[type=search-md].form-control-lg:focus.invalid + label:after,
  6582. .md-form input[type=search].form-control-lg.invalid + label:after,
  6583. .md-form input[type=search].form-control-lg:focus.invalid + label:after,
  6584. .md-form textarea.md-textarea.form-control-lg.invalid + label:after,
  6585. .md-form textarea.md-textarea.form-control-lg:focus.invalid + label:after {
  6586. top: 4.6rem; }
  6587. .md-form input[type=text].form-control-sm.valid + label:after,
  6588. .md-form input[type=text].form-control-sm:focus.valid + label:after,
  6589. .md-form input[type=password].form-control-sm.valid + label:after,
  6590. .md-form input[type=password].form-control-sm:focus.valid + label:after,
  6591. .md-form input[type=email].form-control-sm.valid + label:after,
  6592. .md-form input[type=email].form-control-sm:focus.valid + label:after,
  6593. .md-form input[type=url].form-control-sm.valid + label:after,
  6594. .md-form input[type=url].form-control-sm:focus.valid + label:after,
  6595. .md-form input[type=time].form-control-sm.valid + label:after,
  6596. .md-form input[type=time].form-control-sm:focus.valid + label:after,
  6597. .md-form input[type=date].form-control-sm.valid + label:after,
  6598. .md-form input[type=date].form-control-sm:focus.valid + label:after,
  6599. .md-form input[type=datetime-local].form-control-sm.valid + label:after,
  6600. .md-form input[type=datetime-local].form-control-sm:focus.valid + label:after,
  6601. .md-form input[type=tel].form-control-sm.valid + label:after,
  6602. .md-form input[type=tel].form-control-sm:focus.valid + label:after,
  6603. .md-form input[type=number].form-control-sm.valid + label:after,
  6604. .md-form input[type=number].form-control-sm:focus.valid + label:after,
  6605. .md-form input[type=search-md].form-control-sm.valid + label:after,
  6606. .md-form input[type=search-md].form-control-sm:focus.valid + label:after,
  6607. .md-form input[type=search].form-control-sm.valid + label:after,
  6608. .md-form input[type=search].form-control-sm:focus.valid + label:after,
  6609. .md-form textarea.md-textarea.form-control-sm.valid + label:after,
  6610. .md-form textarea.md-textarea.form-control-sm:focus.valid + label:after {
  6611. top: 3.7rem; }
  6612. .md-form input[type=text].form-control-sm.invalid + label:after,
  6613. .md-form input[type=text].form-control-sm:focus.invalid + label:after,
  6614. .md-form input[type=password].form-control-sm.invalid + label:after,
  6615. .md-form input[type=password].form-control-sm:focus.invalid + label:after,
  6616. .md-form input[type=email].form-control-sm.invalid + label:after,
  6617. .md-form input[type=email].form-control-sm:focus.invalid + label:after,
  6618. .md-form input[type=url].form-control-sm.invalid + label:after,
  6619. .md-form input[type=url].form-control-sm:focus.invalid + label:after,
  6620. .md-form input[type=time].form-control-sm.invalid + label:after,
  6621. .md-form input[type=time].form-control-sm:focus.invalid + label:after,
  6622. .md-form input[type=date].form-control-sm.invalid + label:after,
  6623. .md-form input[type=date].form-control-sm:focus.invalid + label:after,
  6624. .md-form input[type=datetime-local].form-control-sm.invalid + label:after,
  6625. .md-form input[type=datetime-local].form-control-sm:focus.invalid + label:after,
  6626. .md-form input[type=tel].form-control-sm.invalid + label:after,
  6627. .md-form input[type=tel].form-control-sm:focus.invalid + label:after,
  6628. .md-form input[type=number].form-control-sm.invalid + label:after,
  6629. .md-form input[type=number].form-control-sm:focus.invalid + label:after,
  6630. .md-form input[type=search-md].form-control-sm.invalid + label:after,
  6631. .md-form input[type=search-md].form-control-sm:focus.invalid + label:after,
  6632. .md-form input[type=search].form-control-sm.invalid + label:after,
  6633. .md-form input[type=search].form-control-sm:focus.invalid + label:after,
  6634. .md-form textarea.md-textarea.form-control-sm.invalid + label:after,
  6635. .md-form textarea.md-textarea.form-control-sm:focus.invalid + label:after {
  6636. top: 3.6rem; }
  6637. .md-form > input[type=date]:not(.browser-default) + label {
  6638. -webkit-transform: translateY(-27px) scale(0.8);
  6639. -ms-transform: translateY(-27px) scale(0.8);
  6640. transform: translateY(-27px) scale(0.8);
  6641. -webkit-transform-origin: 0 0;
  6642. -ms-transform-origin: 0 0;
  6643. transform-origin: 0 0; }
  6644. .md-form > input[type]:-webkit-autofill:not(.browser-default):not([type="search"]) + label,
  6645. .md-form > input[type=time]:not(.browser-default) + label {
  6646. -webkit-transform: translateY(-25px);
  6647. transform: translateY(-25px);
  6648. -webkit-transform-origin: 0 0;
  6649. transform-origin: 0 0;
  6650. font-size: .8rem; }
  6651. .md-form .was-validated input[type=text]:valid + label {
  6652. color: #00c851 !important; }
  6653. .md-form .was-validated input[type=text]:invalid + label {
  6654. color: #f44336 !important; }
  6655. .md-form .was-validated .form-control:valid:focus {
  6656. -webkit-box-shadow: 0 1px 0 0 #00c851 !important;
  6657. box-shadow: 0 1px 0 0 #00c851 !important; }
  6658. .md-form .was-validated .form-control:valid {
  6659. border-color: #00c851 !important; }
  6660. .md-form .was-validated .form-control:invalid:focus {
  6661. -webkit-box-shadow: 0 1px 0 0 #f44336 !important;
  6662. box-shadow: 0 1px 0 0 #f44336 !important; }
  6663. .md-form .was-validated .form-control:invalid {
  6664. border-color: #f44336 !important; }
  6665. .md-form .form-control {
  6666. margin: 0 0 0.5rem 0;
  6667. -webkit-border-radius: 0;
  6668. border-radius: 0;
  6669. padding: 0.6rem 0 0.4rem 0;
  6670. background-color: transparent;
  6671. height: auto; }
  6672. .md-form .form-control:focus {
  6673. -webkit-box-shadow: none;
  6674. box-shadow: none; }
  6675. .md-form .form-control:disabled, .md-form .form-control[readonly] {
  6676. border-bottom: 1px solid #bdbdbd;
  6677. background-color: transparent; }
  6678. .md-form .form-control.is-valid {
  6679. border-color: #00c851; }
  6680. .md-form .form-control.is-valid:focus {
  6681. border-color: #00c851 !important;
  6682. -webkit-box-shadow: 0 1px 0 0 #00c851 !important;
  6683. box-shadow: 0 1px 0 0 #00c851 !important; }
  6684. .md-form .form-control.is-invalid {
  6685. border-color: #f44336; }
  6686. .md-form .form-control.is-invalid:focus {
  6687. -webkit-box-shadow: 0 1px 0 0 #f44336 !important;
  6688. box-shadow: 0 1px 0 0 #f44336 !important;
  6689. border-color: #f44336 !important; }
  6690. .md-form .form-control.is-valid, .md-form .form-control.is-invalid {
  6691. background-position: center right !important; }
  6692. .md-form .validate {
  6693. margin-bottom: 2.5rem; }
  6694. .md-form label {
  6695. font-size: 1rem; }
  6696. .md-form label.active {
  6697. font-size: 1rem; }
  6698. .md-form .prefix {
  6699. top: 0.25rem;
  6700. font-size: 1.75rem; }
  6701. .md-form .prefix ~ input,
  6702. .md-form .prefix ~ textarea {
  6703. margin-left: 2.5rem;
  6704. width: calc(100% - 2.5rem); }
  6705. .md-form .prefix ~ label {
  6706. margin-left: 2.5rem; }
  6707. .md-form .prefix ~ .form-text {
  6708. margin-left: 2.6rem; }
  6709. .md-form label {
  6710. position: absolute;
  6711. top: 0;
  6712. left: 0;
  6713. font-size: 1rem;
  6714. -webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
  6715. transition: color .2s ease-out, -webkit-transform .2s ease-out;
  6716. -o-transition: transform .2s ease-out, color .2s ease-out;
  6717. transition: transform .2s ease-out, color .2s ease-out;
  6718. transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
  6719. -webkit-transform-origin: 0% 100%;
  6720. -ms-transform-origin: 0% 100%;
  6721. transform-origin: 0% 100%;
  6722. -webkit-transform: translateY(12px);
  6723. -ms-transform: translateY(12px);
  6724. transform: translateY(12px);
  6725. cursor: text;
  6726. color: #757575; }
  6727. .md-form label.active {
  6728. -webkit-transform: translateY(-14px) scale(0.8);
  6729. -ms-transform: translateY(-14px) scale(0.8);
  6730. transform: translateY(-14px) scale(0.8); }
  6731. .md-form .prefix {
  6732. position: absolute;
  6733. -webkit-transition: color 0.2s;
  6734. -o-transition: color 0.2s;
  6735. transition: color 0.2s; }
  6736. .md-form .prefix.active {
  6737. color: #4285f4; }
  6738. .md-form.form-lg .validate {
  6739. margin-bottom: 2.8rem; }
  6740. .md-form.form-lg label {
  6741. font-size: 1.25rem; }
  6742. .md-form.form-lg label.active {
  6743. font-size: 1.15rem; }
  6744. .md-form.form-lg .prefix {
  6745. top: 0.4rem;
  6746. font-size: 2rem; }
  6747. .md-form.form-lg .prefix ~ input,
  6748. .md-form.form-lg .prefix ~ textarea {
  6749. margin-left: 3rem;
  6750. width: calc(100% - 3rem); }
  6751. .md-form.form-lg .prefix ~ label {
  6752. margin-left: 3rem; }
  6753. .md-form.form-lg .prefix ~ .form-text {
  6754. margin-left: 3.1rem; }
  6755. .md-form.form-sm .validate {
  6756. margin-bottom: 2.3rem; }
  6757. .md-form.form-sm label {
  6758. font-size: 0.875rem; }
  6759. .md-form.form-sm label.active {
  6760. font-size: 0.95rem; }
  6761. .md-form.form-sm .prefix {
  6762. top: 0.35rem;
  6763. font-size: 1.5rem; }
  6764. .md-form.form-sm .prefix ~ input,
  6765. .md-form.form-sm .prefix ~ textarea {
  6766. margin-left: 2rem;
  6767. width: calc(100% - 2rem); }
  6768. .md-form.form-sm .prefix ~ label {
  6769. margin-left: 2rem; }
  6770. .md-form.form-sm .prefix ~ .form-text {
  6771. margin-left: 2rem; }
  6772. .md-form textarea.md-textarea {
  6773. overflow-y: hidden;
  6774. padding: 1.5rem 0;
  6775. resize: none; }
  6776. .md-form textarea.md-textarea-auto {
  6777. padding: 0;
  6778. padding-top: 1.5rem; }
  6779. .md-form textarea ~ label.active {
  6780. color: #4285f4; }
  6781. .md-form.md-outline {
  6782. position: relative;
  6783. margin-top: 1.5rem;
  6784. margin-bottom: 1.5rem; }
  6785. .md-form.md-outline input[type=text],
  6786. .md-form.md-outline input[type=password],
  6787. .md-form.md-outline input[type=email],
  6788. .md-form.md-outline input[type=url],
  6789. .md-form.md-outline input[type=time],
  6790. .md-form.md-outline input[type=date],
  6791. .md-form.md-outline input[type=datetime-local],
  6792. .md-form.md-outline input[type=tel],
  6793. .md-form.md-outline input[type=number],
  6794. .md-form.md-outline input[type=search-md],
  6795. .md-form.md-outline input[type=search],
  6796. .md-form.md-outline textarea.md-textarea {
  6797. -webkit-transition: all .3s;
  6798. -o-transition: all .3s;
  6799. transition: all .3s;
  6800. outline: none;
  6801. -webkit-box-shadow: none;
  6802. box-shadow: none;
  6803. border: 1px solid #dadce0;
  6804. -webkit-border-radius: 4px;
  6805. border-radius: 4px;
  6806. background-color: transparent;
  6807. -webkit-box-sizing: border-box;
  6808. box-sizing: border-box; }
  6809. .md-form.md-outline input[type=text]:focus:not([readonly]),
  6810. .md-form.md-outline input[type=password]:focus:not([readonly]),
  6811. .md-form.md-outline input[type=email]:focus:not([readonly]),
  6812. .md-form.md-outline input[type=url]:focus:not([readonly]),
  6813. .md-form.md-outline input[type=time]:focus:not([readonly]),
  6814. .md-form.md-outline input[type=date]:focus:not([readonly]),
  6815. .md-form.md-outline input[type=datetime-local]:focus:not([readonly]),
  6816. .md-form.md-outline input[type=tel]:focus:not([readonly]),
  6817. .md-form.md-outline input[type=number]:focus:not([readonly]),
  6818. .md-form.md-outline input[type=search-md]:focus:not([readonly]),
  6819. .md-form.md-outline input[type=search]:focus:not([readonly]),
  6820. .md-form.md-outline textarea.md-textarea:focus:not([readonly]) {
  6821. border-color: #4285f4;
  6822. -webkit-box-shadow: inset 0px 0px 0px 1px #4285f4;
  6823. box-shadow: inset 0px 0px 0px 1px #4285f4; }
  6824. .md-form.md-outline input[type=text]:focus:not([readonly]) + label,
  6825. .md-form.md-outline input[type=password]:focus:not([readonly]) + label,
  6826. .md-form.md-outline input[type=email]:focus:not([readonly]) + label,
  6827. .md-form.md-outline input[type=url]:focus:not([readonly]) + label,
  6828. .md-form.md-outline input[type=time]:focus:not([readonly]) + label,
  6829. .md-form.md-outline input[type=date]:focus:not([readonly]) + label,
  6830. .md-form.md-outline input[type=datetime-local]:focus:not([readonly]) + label,
  6831. .md-form.md-outline input[type=tel]:focus:not([readonly]) + label,
  6832. .md-form.md-outline input[type=number]:focus:not([readonly]) + label,
  6833. .md-form.md-outline input[type=search-md]:focus:not([readonly]) + label,
  6834. .md-form.md-outline input[type=search]:focus:not([readonly]) + label,
  6835. .md-form.md-outline textarea.md-textarea:focus:not([readonly]) + label {
  6836. color: #4285f4; }
  6837. .md-form.md-outline input[type=text].valid, .md-form.md-outline input[type=text]:focus.valid,
  6838. .md-form.md-outline input[type=password].valid,
  6839. .md-form.md-outline input[type=password]:focus.valid,
  6840. .md-form.md-outline input[type=email].valid,
  6841. .md-form.md-outline input[type=email]:focus.valid,
  6842. .md-form.md-outline input[type=url].valid,
  6843. .md-form.md-outline input[type=url]:focus.valid,
  6844. .md-form.md-outline input[type=time].valid,
  6845. .md-form.md-outline input[type=time]:focus.valid,
  6846. .md-form.md-outline input[type=date].valid,
  6847. .md-form.md-outline input[type=date]:focus.valid,
  6848. .md-form.md-outline input[type=datetime-local].valid,
  6849. .md-form.md-outline input[type=datetime-local]:focus.valid,
  6850. .md-form.md-outline input[type=tel].valid,
  6851. .md-form.md-outline input[type=tel]:focus.valid,
  6852. .md-form.md-outline input[type=number].valid,
  6853. .md-form.md-outline input[type=number]:focus.valid,
  6854. .md-form.md-outline input[type=search-md].valid,
  6855. .md-form.md-outline input[type=search-md]:focus.valid,
  6856. .md-form.md-outline input[type=search].valid,
  6857. .md-form.md-outline input[type=search]:focus.valid,
  6858. .md-form.md-outline textarea.md-textarea.valid,
  6859. .md-form.md-outline textarea.md-textarea:focus.valid {
  6860. border-color: #00c851;
  6861. -webkit-box-shadow: inset 0px 0px 0px 1px #00c851;
  6862. box-shadow: inset 0px 0px 0px 1px #00c851; }
  6863. .md-form.md-outline input[type=text]:focus:not([readonly]).valid + label,
  6864. .md-form.md-outline input[type=text].valid + label:after,
  6865. .md-form.md-outline input[type=text]:focus.valid + label:after,
  6866. .md-form.md-outline input[type=password]:focus:not([readonly]).valid + label,
  6867. .md-form.md-outline input[type=password].valid + label:after,
  6868. .md-form.md-outline input[type=password]:focus.valid + label:after,
  6869. .md-form.md-outline input[type=email]:focus:not([readonly]).valid + label,
  6870. .md-form.md-outline input[type=email].valid + label:after,
  6871. .md-form.md-outline input[type=email]:focus.valid + label:after,
  6872. .md-form.md-outline input[type=url]:focus:not([readonly]).valid + label,
  6873. .md-form.md-outline input[type=url].valid + label:after,
  6874. .md-form.md-outline input[type=url]:focus.valid + label:after,
  6875. .md-form.md-outline input[type=time]:focus:not([readonly]).valid + label,
  6876. .md-form.md-outline input[type=time].valid + label:after,
  6877. .md-form.md-outline input[type=time]:focus.valid + label:after,
  6878. .md-form.md-outline input[type=date]:focus:not([readonly]).valid + label,
  6879. .md-form.md-outline input[type=date].valid + label:after,
  6880. .md-form.md-outline input[type=date]:focus.valid + label:after,
  6881. .md-form.md-outline input[type=datetime-local]:focus:not([readonly]).valid + label,
  6882. .md-form.md-outline input[type=datetime-local].valid + label:after,
  6883. .md-form.md-outline input[type=datetime-local]:focus.valid + label:after,
  6884. .md-form.md-outline input[type=tel]:focus:not([readonly]).valid + label,
  6885. .md-form.md-outline input[type=tel].valid + label:after,
  6886. .md-form.md-outline input[type=tel]:focus.valid + label:after,
  6887. .md-form.md-outline input[type=number]:focus:not([readonly]).valid + label,
  6888. .md-form.md-outline input[type=number].valid + label:after,
  6889. .md-form.md-outline input[type=number]:focus.valid + label:after,
  6890. .md-form.md-outline input[type=search-md]:focus:not([readonly]).valid + label,
  6891. .md-form.md-outline input[type=search-md].valid + label:after,
  6892. .md-form.md-outline input[type=search-md]:focus.valid + label:after,
  6893. .md-form.md-outline input[type=search]:focus:not([readonly]).valid + label,
  6894. .md-form.md-outline input[type=search].valid + label:after,
  6895. .md-form.md-outline input[type=search]:focus.valid + label:after,
  6896. .md-form.md-outline textarea.md-textarea:focus:not([readonly]).valid + label,
  6897. .md-form.md-outline textarea.md-textarea.valid + label:after,
  6898. .md-form.md-outline textarea.md-textarea:focus.valid + label:after {
  6899. content: attr(data-success);
  6900. color: #00c851;
  6901. opacity: 1; }
  6902. .md-form.md-outline input[type=text].invalid, .md-form.md-outline input[type=text]:focus.invalid,
  6903. .md-form.md-outline input[type=password].invalid,
  6904. .md-form.md-outline input[type=password]:focus.invalid,
  6905. .md-form.md-outline input[type=email].invalid,
  6906. .md-form.md-outline input[type=email]:focus.invalid,
  6907. .md-form.md-outline input[type=url].invalid,
  6908. .md-form.md-outline input[type=url]:focus.invalid,
  6909. .md-form.md-outline input[type=time].invalid,
  6910. .md-form.md-outline input[type=time]:focus.invalid,
  6911. .md-form.md-outline input[type=date].invalid,
  6912. .md-form.md-outline input[type=date]:focus.invalid,
  6913. .md-form.md-outline input[type=datetime-local].invalid,
  6914. .md-form.md-outline input[type=datetime-local]:focus.invalid,
  6915. .md-form.md-outline input[type=tel].invalid,
  6916. .md-form.md-outline input[type=tel]:focus.invalid,
  6917. .md-form.md-outline input[type=number].invalid,
  6918. .md-form.md-outline input[type=number]:focus.invalid,
  6919. .md-form.md-outline input[type=search-md].invalid,
  6920. .md-form.md-outline input[type=search-md]:focus.invalid,
  6921. .md-form.md-outline input[type=search].invalid,
  6922. .md-form.md-outline input[type=search]:focus.invalid,
  6923. .md-form.md-outline textarea.md-textarea.invalid,
  6924. .md-form.md-outline textarea.md-textarea:focus.invalid {
  6925. border-color: #f44336;
  6926. -webkit-box-shadow: inset 0px 0px 0px 1px #f44336;
  6927. box-shadow: inset 0px 0px 0px 1px #f44336; }
  6928. .md-form.md-outline input[type=text]:focus:not([readonly]).invalid + label,
  6929. .md-form.md-outline input[type=text].invalid + label:after,
  6930. .md-form.md-outline input[type=text]:focus.invalid + label:after,
  6931. .md-form.md-outline input[type=password]:focus:not([readonly]).invalid + label,
  6932. .md-form.md-outline input[type=password].invalid + label:after,
  6933. .md-form.md-outline input[type=password]:focus.invalid + label:after,
  6934. .md-form.md-outline input[type=email]:focus:not([readonly]).invalid + label,
  6935. .md-form.md-outline input[type=email].invalid + label:after,
  6936. .md-form.md-outline input[type=email]:focus.invalid + label:after,
  6937. .md-form.md-outline input[type=url]:focus:not([readonly]).invalid + label,
  6938. .md-form.md-outline input[type=url].invalid + label:after,
  6939. .md-form.md-outline input[type=url]:focus.invalid + label:after,
  6940. .md-form.md-outline input[type=time]:focus:not([readonly]).invalid + label,
  6941. .md-form.md-outline input[type=time].invalid + label:after,
  6942. .md-form.md-outline input[type=time]:focus.invalid + label:after,
  6943. .md-form.md-outline input[type=date]:focus:not([readonly]).invalid + label,
  6944. .md-form.md-outline input[type=date].invalid + label:after,
  6945. .md-form.md-outline input[type=date]:focus.invalid + label:after,
  6946. .md-form.md-outline input[type=datetime-local]:focus:not([readonly]).invalid + label,
  6947. .md-form.md-outline input[type=datetime-local].invalid + label:after,
  6948. .md-form.md-outline input[type=datetime-local]:focus.invalid + label:after,
  6949. .md-form.md-outline input[type=tel]:focus:not([readonly]).invalid + label,
  6950. .md-form.md-outline input[type=tel].invalid + label:after,
  6951. .md-form.md-outline input[type=tel]:focus.invalid + label:after,
  6952. .md-form.md-outline input[type=number]:focus:not([readonly]).invalid + label,
  6953. .md-form.md-outline input[type=number].invalid + label:after,
  6954. .md-form.md-outline input[type=number]:focus.invalid + label:after,
  6955. .md-form.md-outline input[type=search-md]:focus:not([readonly]).invalid + label,
  6956. .md-form.md-outline input[type=search-md].invalid + label:after,
  6957. .md-form.md-outline input[type=search-md]:focus.invalid + label:after,
  6958. .md-form.md-outline input[type=search]:focus:not([readonly]).invalid + label,
  6959. .md-form.md-outline input[type=search].invalid + label:after,
  6960. .md-form.md-outline input[type=search]:focus.invalid + label:after,
  6961. .md-form.md-outline textarea.md-textarea:focus:not([readonly]).invalid + label,
  6962. .md-form.md-outline textarea.md-textarea.invalid + label:after,
  6963. .md-form.md-outline textarea.md-textarea:focus.invalid + label:after {
  6964. content: attr(data-error);
  6965. color: #f44336;
  6966. opacity: 1; }
  6967. .md-form.md-outline input[type=text].form-control.valid + label:after,
  6968. .md-form.md-outline input[type=text].form-control:focus.valid + label:after,
  6969. .md-form.md-outline input[type=password].form-control.valid + label:after,
  6970. .md-form.md-outline input[type=password].form-control:focus.valid + label:after,
  6971. .md-form.md-outline input[type=email].form-control.valid + label:after,
  6972. .md-form.md-outline input[type=email].form-control:focus.valid + label:after,
  6973. .md-form.md-outline input[type=url].form-control.valid + label:after,
  6974. .md-form.md-outline input[type=url].form-control:focus.valid + label:after,
  6975. .md-form.md-outline input[type=time].form-control.valid + label:after,
  6976. .md-form.md-outline input[type=time].form-control:focus.valid + label:after,
  6977. .md-form.md-outline input[type=date].form-control.valid + label:after,
  6978. .md-form.md-outline input[type=date].form-control:focus.valid + label:after,
  6979. .md-form.md-outline input[type=datetime-local].form-control.valid + label:after,
  6980. .md-form.md-outline input[type=datetime-local].form-control:focus.valid + label:after,
  6981. .md-form.md-outline input[type=tel].form-control.valid + label:after,
  6982. .md-form.md-outline input[type=tel].form-control:focus.valid + label:after,
  6983. .md-form.md-outline input[type=number].form-control.valid + label:after,
  6984. .md-form.md-outline input[type=number].form-control:focus.valid + label:after,
  6985. .md-form.md-outline input[type=search-md].form-control.valid + label:after,
  6986. .md-form.md-outline input[type=search-md].form-control:focus.valid + label:after,
  6987. .md-form.md-outline input[type=search].form-control.valid + label:after,
  6988. .md-form.md-outline input[type=search].form-control:focus.valid + label:after,
  6989. .md-form.md-outline textarea.md-textarea.form-control.valid + label:after,
  6990. .md-form.md-outline textarea.md-textarea.form-control:focus.valid + label:after {
  6991. top: 2.75rem;
  6992. left: 0;
  6993. position: absolute; }
  6994. .md-form.md-outline input[type=text].form-control.invalid + label:after,
  6995. .md-form.md-outline input[type=text].form-control:focus.invalid + label:after,
  6996. .md-form.md-outline input[type=password].form-control.invalid + label:after,
  6997. .md-form.md-outline input[type=password].form-control:focus.invalid + label:after,
  6998. .md-form.md-outline input[type=email].form-control.invalid + label:after,
  6999. .md-form.md-outline input[type=email].form-control:focus.invalid + label:after,
  7000. .md-form.md-outline input[type=url].form-control.invalid + label:after,
  7001. .md-form.md-outline input[type=url].form-control:focus.invalid + label:after,
  7002. .md-form.md-outline input[type=time].form-control.invalid + label:after,
  7003. .md-form.md-outline input[type=time].form-control:focus.invalid + label:after,
  7004. .md-form.md-outline input[type=date].form-control.invalid + label:after,
  7005. .md-form.md-outline input[type=date].form-control:focus.invalid + label:after,
  7006. .md-form.md-outline input[type=datetime-local].form-control.invalid + label:after,
  7007. .md-form.md-outline input[type=datetime-local].form-control:focus.invalid + label:after,
  7008. .md-form.md-outline input[type=tel].form-control.invalid + label:after,
  7009. .md-form.md-outline input[type=tel].form-control:focus.invalid + label:after,
  7010. .md-form.md-outline input[type=number].form-control.invalid + label:after,
  7011. .md-form.md-outline input[type=number].form-control:focus.invalid + label:after,
  7012. .md-form.md-outline input[type=search-md].form-control.invalid + label:after,
  7013. .md-form.md-outline input[type=search-md].form-control:focus.invalid + label:after,
  7014. .md-form.md-outline input[type=search].form-control.invalid + label:after,
  7015. .md-form.md-outline input[type=search].form-control:focus.invalid + label:after,
  7016. .md-form.md-outline textarea.md-textarea.form-control.invalid + label:after,
  7017. .md-form.md-outline textarea.md-textarea.form-control:focus.invalid + label:after {
  7018. top: 2.75rem;
  7019. left: 0;
  7020. position: absolute; }
  7021. .md-form.md-outline > input[type]:-webkit-autofill:not(.browser-default):not([type="search"]) + label,
  7022. .md-form.md-outline > input[type=time]:not(.browser-default) + label {
  7023. -webkit-transform: translateY(-17px);
  7024. transform: translateY(-17px);
  7025. -webkit-transform-origin: 0 0;
  7026. transform-origin: 0 0;
  7027. background: #fff;
  7028. font-weight: 500;
  7029. padding-right: 5px;
  7030. padding-left: 5px;
  7031. font-size: 11px;
  7032. left: 8px; }
  7033. .md-form.md-outline > input[type]:-webkit-autofill:not(.browser-default):not([type="search"]) + label.active,
  7034. .md-form.md-outline > input[type=time]:not(.browser-default) + label.active {
  7035. -webkit-transform: translateY(-17px);
  7036. transform: translateY(-17px);
  7037. -webkit-transform-origin: 0 0;
  7038. transform-origin: 0 0; }
  7039. .md-form.md-outline .form-control {
  7040. padding: .375rem .75rem; }
  7041. .md-form.md-outline label {
  7042. font-size: 1rem;
  7043. position: absolute;
  7044. top: 0;
  7045. left: 0;
  7046. padding-left: 10px;
  7047. -webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
  7048. transition: color .2s ease-out, -webkit-transform .2s ease-out;
  7049. -o-transition: transform .2s ease-out, color .2s ease-out;
  7050. transition: transform .2s ease-out, color .2s ease-out;
  7051. transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
  7052. -webkit-transform-origin: 0% 100%;
  7053. -ms-transform-origin: 0% 100%;
  7054. transform-origin: 0% 100%;
  7055. -webkit-transform: translateY(9px);
  7056. -ms-transform: translateY(9px);
  7057. transform: translateY(9px);
  7058. cursor: text;
  7059. color: #757575; }
  7060. .md-form.md-outline label.active {
  7061. -webkit-transform: translateY(-13px) scale(0.8);
  7062. -ms-transform: translateY(-13px) scale(0.8);
  7063. transform: translateY(-13px) scale(0.8);
  7064. background: #fff;
  7065. font-weight: 500;
  7066. padding-right: 5px;
  7067. padding-left: 5px;
  7068. left: 8px; }
  7069. .md-form.md-outline.form-lg .form-control.form-control-lg {
  7070. padding: .5rem .725rem; }
  7071. .md-form.md-outline.form-lg label {
  7072. font-size: 1.25rem;
  7073. -webkit-transform: translateY(10px);
  7074. -ms-transform: translateY(10px);
  7075. transform: translateY(10px); }
  7076. .md-form.md-outline.form-lg label.active {
  7077. font-size: 1.1rem;
  7078. -webkit-transform: translateY(-14px) scale(0.8);
  7079. -ms-transform: translateY(-14px) scale(0.8);
  7080. transform: translateY(-14px) scale(0.8); }
  7081. .md-form.md-outline.form-lg .prefix {
  7082. top: .65rem;
  7083. font-size: 25px; }
  7084. .md-form.md-outline.form-lg .prefix ~ input,
  7085. .md-form.md-outline.form-lg .prefix ~ textarea {
  7086. margin-left: 2.2rem;
  7087. width: calc(100% - 2.2rem); }
  7088. .md-form.md-outline.form-lg .prefix ~ label {
  7089. margin-left: 2.2rem; }
  7090. .md-form.md-outline.form-lg .prefix ~ .form-text {
  7091. margin-left: 2.3rem; }
  7092. .md-form.md-outline.form-sm .form-control.form-control-sm {
  7093. padding: .25rem .625rem; }
  7094. .md-form.md-outline.form-sm label {
  7095. font-size: .8rem;
  7096. -webkit-transform: translateY(8px);
  7097. -ms-transform: translateY(8px);
  7098. transform: translateY(8px); }
  7099. .md-form.md-outline.form-sm label.active {
  7100. font-size: .85rem;
  7101. -webkit-transform: translateY(-12px) scale(0.8);
  7102. -ms-transform: translateY(-12px) scale(0.8);
  7103. transform: translateY(-12px) scale(0.8); }
  7104. .md-form.md-outline.form-sm .prefix {
  7105. top: .5rem;
  7106. font-size: 15px; }
  7107. .md-form.md-outline.form-sm .prefix ~ input,
  7108. .md-form.md-outline.form-sm .prefix ~ textarea {
  7109. margin-left: 1.6rem;
  7110. width: calc(100% - 1.6rem); }
  7111. .md-form.md-outline.form-sm .prefix ~ label {
  7112. margin-left: 1.6rem; }
  7113. .md-form.md-outline.form-sm .prefix ~ .form-text {
  7114. margin-left: 1.7rem; }
  7115. .md-form.md-outline .prefix {
  7116. position: absolute;
  7117. -webkit-transition: color .2s;
  7118. -o-transition: color .2s;
  7119. transition: color .2s; }
  7120. .md-form.md-outline .prefix:focus {
  7121. color: #4285f4; }
  7122. .md-form.md-outline .prefix {
  7123. top: .6rem;
  7124. font-size: 20px; }
  7125. .md-form.md-outline .prefix ~ input,
  7126. .md-form.md-outline .prefix ~ textarea {
  7127. margin-left: 2rem;
  7128. width: calc(100% - 2rem); }
  7129. .md-form.md-outline .prefix ~ label {
  7130. margin-left: 2rem; }
  7131. .md-form.md-outline .prefix ~ .form-text {
  7132. margin-left: 2.1rem; }
  7133. .md-form.md-outline .character-counter {
  7134. margin-top: -.5rem; }
  7135. .md-form.md-bg input[type=text],
  7136. .md-form.md-bg input[type=password],
  7137. .md-form.md-bg input[type=email],
  7138. .md-form.md-bg input[type=url],
  7139. .md-form.md-bg input[type=time],
  7140. .md-form.md-bg input[type=date],
  7141. .md-form.md-bg input[type=datetime-local],
  7142. .md-form.md-bg input[type=tel],
  7143. .md-form.md-bg input[type=number],
  7144. .md-form.md-bg input[type=search-md],
  7145. .md-form.md-bg input[type=search],
  7146. .md-form.md-bg textarea.md-textarea {
  7147. -webkit-box-sizing: border-box;
  7148. box-sizing: border-box;
  7149. padding: 10px 5px;
  7150. border: 0;
  7151. -webkit-border-top-left-radius: .3rem;
  7152. border-top-left-radius: .3rem;
  7153. -webkit-border-top-right-radius: .3rem;
  7154. border-top-right-radius: .3rem;
  7155. background: #f5f5f5 no-repeat;
  7156. background-image: -webkit-gradient(linear, left top, left bottom, from(#4285f4), to(#4285f4)), -webkit-gradient(linear, left top, left bottom, from(#ced4da), to(#ced4da));
  7157. background-image: -webkit-linear-gradient(top, #4285f4, #4285f4), -webkit-linear-gradient(top, #ced4da, #ced4da);
  7158. background-image: -o-linear-gradient(top, #4285f4, #4285f4), -o-linear-gradient(top, #ced4da, #ced4da);
  7159. background-image: linear-gradient(to bottom, #4285f4, #4285f4), linear-gradient(to bottom, #ced4da, #ced4da);
  7160. -webkit-background-size: 0 2px, 100% 1px;
  7161. background-size: 0 2px, 100% 1px;
  7162. background-position: 50% 100%, 50% 100%;
  7163. -webkit-transition: -webkit-background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  7164. transition: -webkit-background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  7165. -o-transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  7166. transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  7167. transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1), -webkit-background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1); }
  7168. .md-form.md-bg input[type=text]:focus:not([readonly]),
  7169. .md-form.md-bg input[type=password]:focus:not([readonly]),
  7170. .md-form.md-bg input[type=email]:focus:not([readonly]),
  7171. .md-form.md-bg input[type=url]:focus:not([readonly]),
  7172. .md-form.md-bg input[type=time]:focus:not([readonly]),
  7173. .md-form.md-bg input[type=date]:focus:not([readonly]),
  7174. .md-form.md-bg input[type=datetime-local]:focus:not([readonly]),
  7175. .md-form.md-bg input[type=tel]:focus:not([readonly]),
  7176. .md-form.md-bg input[type=number]:focus:not([readonly]),
  7177. .md-form.md-bg input[type=search-md]:focus:not([readonly]),
  7178. .md-form.md-bg input[type=search]:focus:not([readonly]),
  7179. .md-form.md-bg textarea.md-textarea:focus:not([readonly]) {
  7180. -webkit-box-shadow: none;
  7181. box-shadow: none;
  7182. border-bottom: none; }
  7183. .md-form.md-bg input[type=text]:focus,
  7184. .md-form.md-bg input[type=password]:focus,
  7185. .md-form.md-bg input[type=email]:focus,
  7186. .md-form.md-bg input[type=url]:focus,
  7187. .md-form.md-bg input[type=time]:focus,
  7188. .md-form.md-bg input[type=date]:focus,
  7189. .md-form.md-bg input[type=datetime-local]:focus,
  7190. .md-form.md-bg input[type=tel]:focus,
  7191. .md-form.md-bg input[type=number]:focus,
  7192. .md-form.md-bg input[type=search-md]:focus,
  7193. .md-form.md-bg input[type=search]:focus,
  7194. .md-form.md-bg textarea.md-textarea:focus {
  7195. background-color: #dcdcdc;
  7196. -webkit-background-size: 100% 2px, 100% 1px;
  7197. background-size: 100% 2px, 100% 1px;
  7198. outline: none; }
  7199. .md-form.md-bg > input[type=date]:not(.browser-default) + label {
  7200. -webkit-transform: translateY(-12px) scale(0.8);
  7201. -ms-transform: translateY(-12px) scale(0.8);
  7202. transform: translateY(-12px) scale(0.8);
  7203. -webkit-transform-origin: 0 0;
  7204. -ms-transform-origin: 0 0;
  7205. transform-origin: 0 0; }
  7206. .md-form.md-bg > input[type]:-webkit-autofill:not(.browser-default):not([type="search"]) + label,
  7207. .md-form.md-bg > input[type=time]:not(.browser-default) + label {
  7208. -webkit-transform: translateY(-12px);
  7209. transform: translateY(-12px);
  7210. -webkit-transform-origin: 0 0;
  7211. transform-origin: 0 0;
  7212. font-size: .8rem; }
  7213. .md-form.md-bg .form-control {
  7214. padding: 1.1rem .7rem .4rem !important; }
  7215. .md-form.md-bg label {
  7216. top: 0;
  7217. padding-left: .7rem;
  7218. font-size: 1rem;
  7219. -webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
  7220. transition: color .2s ease-out, -webkit-transform .2s ease-out;
  7221. -o-transition: transform .2s ease-out, color .2s ease-out;
  7222. transition: transform .2s ease-out, color .2s ease-out;
  7223. transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
  7224. -webkit-transform-origin: 0% 100%;
  7225. -ms-transform-origin: 0% 100%;
  7226. transform-origin: 0% 100%;
  7227. -webkit-transform: translateY(13px);
  7228. -ms-transform: translateY(13px);
  7229. transform: translateY(13px); }
  7230. .md-form.md-bg label.active {
  7231. -webkit-transform: translateY(-3px) scale(0.8);
  7232. -ms-transform: translateY(-3px) scale(0.8);
  7233. transform: translateY(-3px) scale(0.8);
  7234. font-weight: 500;
  7235. padding-left: .75rem; }
  7236. .md-form.md-bg.form-lg label {
  7237. -webkit-transform: translateY(16px);
  7238. -ms-transform: translateY(16px);
  7239. transform: translateY(16px); }
  7240. .md-form.md-bg.form-lg label.active {
  7241. -webkit-transform: translateY(-4px) scale(0.8);
  7242. -ms-transform: translateY(-4px) scale(0.8);
  7243. transform: translateY(-4px) scale(0.8); }
  7244. .md-form.md-bg.form-sm label {
  7245. -webkit-transform: translateY(11px);
  7246. -ms-transform: translateY(11px);
  7247. transform: translateY(11px); }
  7248. .md-form.md-bg.form-sm label.active {
  7249. -webkit-transform: translateY(-2px) scale(0.8);
  7250. -ms-transform: translateY(-2px) scale(0.8);
  7251. transform: translateY(-2px) scale(0.8); }
  7252. .md-form .form-control.is-invalid,
  7253. .was-validated .md-form .form-control:invalid {
  7254. padding-right: 0; }
  7255. .md-form .form-control.is-valid,
  7256. .was-validated .md-form .form-control:valid {
  7257. padding-right: 0; }
  7258. .needs-validation .md-form label {
  7259. left: .3rem; }
  7260. .custom-file-input:lang(es) ~ .custom-file-label::after {
  7261. content: "Elegir"; }
  7262. .custom-file-input:lang(pl-PL) ~ .custom-file-label::after {
  7263. content: "Wybierz"; }
  7264. .custom-file-input:lang(fr) ~ .custom-file-label::after {
  7265. content: "Choisir"; }
  7266. .custom-file-input:lang(in) ~ .custom-file-label::after {
  7267. content: "Pilih"; }
  7268. .custom-file-input:lang(zh) ~ .custom-file-label::after {
  7269. content: "選擇"; }
  7270. .custom-file-input:lang(de) ~ .custom-file-label::after {
  7271. content: "Wählen"; }
  7272. .custom-file-input:lang(ru) ~ .custom-file-label::after {
  7273. content: "выбирать"; }
  7274. .edge-header {
  7275. display: block;
  7276. height: 278px;
  7277. background-color: #ccc; }
  7278. .free-bird {
  7279. margin-top: -100px; }
  7280. .juicy-peach-gradient {
  7281. background-image: -webkit-gradient(linear, left top, right top, from(#ffecd2), to(#fcb69f));
  7282. background-image: -webkit-linear-gradient(left, #ffecd2 0%, #fcb69f 100%);
  7283. background-image: -o-linear-gradient(left, #ffecd2 0%, #fcb69f 100%);
  7284. background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%); }
  7285. .young-passion-gradient {
  7286. background-image: -webkit-gradient(linear, left top, right top, from(#ff8177), color-stop(0%, #ff867a), color-stop(21%, #ff8c7f), color-stop(52%, #f99185), color-stop(78%, #cf556c), to(#b12a5b));
  7287. background-image: -webkit-linear-gradient(left, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%);
  7288. background-image: -o-linear-gradient(left, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%);
  7289. background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%); }
  7290. .lady-lips-gradient {
  7291. background-image: -webkit-gradient(linear, left bottom, left top, from(#ff9a9e), color-stop(99%, #fecfef), to(#fecfef));
  7292. background-image: -webkit-linear-gradient(bottom, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
  7293. background-image: -o-linear-gradient(bottom, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
  7294. background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); }
  7295. .sunny-morning-gradient {
  7296. background-image: -webkit-linear-gradient(330deg, #f6d365 0%, #fda085 100%);
  7297. background-image: -o-linear-gradient(330deg, #f6d365 0%, #fda085 100%);
  7298. background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%); }
  7299. .rainy-ashville-gradient {
  7300. background-image: -webkit-gradient(linear, left bottom, left top, from(#fbc2eb), to(#a6c1ee));
  7301. background-image: -webkit-linear-gradient(bottom, #fbc2eb 0%, #a6c1ee 100%);
  7302. background-image: -o-linear-gradient(bottom, #fbc2eb 0%, #a6c1ee 100%);
  7303. background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%); }
  7304. .frozen-dreams-gradient {
  7305. background-image: -webkit-gradient(linear, left bottom, left top, from(#fdcbf1), color-stop(1%, #fdcbf1), to(#e6dee9));
  7306. background-image: -webkit-linear-gradient(bottom, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%);
  7307. background-image: -o-linear-gradient(bottom, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%);
  7308. background-image: linear-gradient(to top, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%); }
  7309. .warm-flame-gradient {
  7310. background-image: -webkit-linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
  7311. background-image: -o-linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
  7312. background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%); }
  7313. .night-fade-gradient {
  7314. background-image: -webkit-gradient(linear, left bottom, left top, from(#a18cd1), to(#fbc2eb));
  7315. background-image: -webkit-linear-gradient(bottom, #a18cd1 0%, #fbc2eb 100%);
  7316. background-image: -o-linear-gradient(bottom, #a18cd1 0%, #fbc2eb 100%);
  7317. background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%); }
  7318. .spring-warmth-gradient {
  7319. background-image: -webkit-gradient(linear, left bottom, left top, from(#fad0c4), to(#ffd1ff));
  7320. background-image: -webkit-linear-gradient(bottom, #fad0c4 0%, #ffd1ff 100%);
  7321. background-image: -o-linear-gradient(bottom, #fad0c4 0%, #ffd1ff 100%);
  7322. background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%); }
  7323. .winter-neva-gradient {
  7324. background-image: -webkit-linear-gradient(330deg, #a1c4fd 0%, #c2e9fb 100%);
  7325. background-image: -o-linear-gradient(330deg, #a1c4fd 0%, #c2e9fb 100%);
  7326. background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); }
  7327. .dusty-grass-gradient {
  7328. background-image: -webkit-linear-gradient(330deg, #d4fc79 0%, #96e6a1 100%);
  7329. background-image: -o-linear-gradient(330deg, #d4fc79 0%, #96e6a1 100%);
  7330. background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); }
  7331. .tempting-azure-gradient {
  7332. background-image: -webkit-linear-gradient(330deg, #84fab0 0%, #8fd3f4 100%);
  7333. background-image: -o-linear-gradient(330deg, #84fab0 0%, #8fd3f4 100%);
  7334. background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); }
  7335. .heavy-rain-gradient {
  7336. background-image: -webkit-gradient(linear, left bottom, left top, from(#cfd9df), to(#e2ebf0));
  7337. background-image: -webkit-linear-gradient(bottom, #cfd9df 0%, #e2ebf0 100%);
  7338. background-image: -o-linear-gradient(bottom, #cfd9df 0%, #e2ebf0 100%);
  7339. background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%); }
  7340. .amy-crisp-gradient {
  7341. background-image: -webkit-linear-gradient(330deg, #a6c0fe 0%, #f68084 100%);
  7342. background-image: -o-linear-gradient(330deg, #a6c0fe 0%, #f68084 100%);
  7343. background-image: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%); }
  7344. .mean-fruit-gradient {
  7345. background-image: -webkit-linear-gradient(330deg, #fccb90 0%, #d57eeb 100%);
  7346. background-image: -o-linear-gradient(330deg, #fccb90 0%, #d57eeb 100%);
  7347. background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%); }
  7348. .deep-blue-gradient {
  7349. background-image: -webkit-linear-gradient(330deg, #e0c3fc 0%, #8ec5fc 100%);
  7350. background-image: -o-linear-gradient(330deg, #e0c3fc 0%, #8ec5fc 100%);
  7351. background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%); }
  7352. .ripe-malinka-gradient {
  7353. background-image: -webkit-linear-gradient(330deg, #f093fb 0%, #f5576c 100%);
  7354. background-image: -o-linear-gradient(330deg, #f093fb 0%, #f5576c 100%);
  7355. background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%); }
  7356. .cloudy-knoxville-gradient {
  7357. background-image: -webkit-linear-gradient(330deg, #fdfbfb 0%, #ebedee 100%);
  7358. background-image: -o-linear-gradient(330deg, #fdfbfb 0%, #ebedee 100%);
  7359. background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%); }
  7360. .morpheus-den-gradient {
  7361. background-image: -webkit-gradient(linear, left bottom, left top, from(#30cfd0), to(#330867));
  7362. background-image: -webkit-linear-gradient(bottom, #30cfd0 0%, #330867 100%);
  7363. background-image: -o-linear-gradient(bottom, #30cfd0 0%, #330867 100%);
  7364. background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%); }
  7365. .rare-wind-gradient {
  7366. background-image: -webkit-gradient(linear, left bottom, left top, from(#a8edea), to(#fed6e3));
  7367. background-image: -webkit-linear-gradient(bottom, #a8edea 0%, #fed6e3 100%);
  7368. background-image: -o-linear-gradient(bottom, #a8edea 0%, #fed6e3 100%);
  7369. background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%); }
  7370. .near-moon-gradient {
  7371. background-image: -webkit-gradient(linear, left bottom, left top, from(#5ee7df), to(#b490ca));
  7372. background-image: -webkit-linear-gradient(bottom, #5ee7df 0%, #b490ca 100%);
  7373. background-image: -o-linear-gradient(bottom, #5ee7df 0%, #b490ca 100%);
  7374. background-image: linear-gradient(to top, #5ee7df 0%, #b490ca 100%); }
  7375. .schedule-list .hr-bold {
  7376. border-top: 2px solid #212529; }
  7377. .schedule-list .font-smaller {
  7378. font-size: .8rem; }
  7379. .note {
  7380. padding: 10px;
  7381. border-left: 6px solid;
  7382. -webkit-border-radius: 5px;
  7383. border-radius: 5px; }
  7384. .note strong {
  7385. font-weight: 600; }
  7386. .note p {
  7387. font-weight: 500; }
  7388. .note.note-primary {
  7389. background-color: #dfeefd;
  7390. border-color: #176ac4; }
  7391. .note.note-secondary {
  7392. background-color: #e2e3e5;
  7393. border-color: #58595a; }
  7394. .note.note-success {
  7395. background-color: #e2f0e5;
  7396. border-color: #49a75f; }
  7397. .note.note-danger {
  7398. background-color: #fae7e8;
  7399. border-color: #e45460; }
  7400. .note.note-warning {
  7401. background-color: #faf4e0;
  7402. border-color: #c2a442; }
  7403. .note.note-info {
  7404. background-color: #e4f2f5;
  7405. border-color: #2492a5; }
  7406. .note.note-light {
  7407. background-color: #fefefe;
  7408. border-color: #0f0f0f; }
  7409. footer.page-footer {
  7410. bottom: 0;
  7411. color: #fff; }
  7412. footer.page-footer .container-fluid {
  7413. width: auto; }
  7414. footer.page-footer .footer-copyright {
  7415. overflow: hidden;
  7416. background-color: rgba(0, 0, 0, 0.2);
  7417. color: rgba(255, 255, 255, 0.6); }
  7418. footer.page-footer a {
  7419. color: #fff; }
  7420. .media .media-left {
  7421. padding: 0 10px 10px 0; }
  7422. .media .media-left img {
  7423. -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  7424. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
  7425. .list-group .list-group-item:first-child {
  7426. -webkit-border-top-left-radius: 0.125rem;
  7427. border-top-left-radius: 0.125rem;
  7428. -webkit-border-top-right-radius: 0.125rem;
  7429. border-top-right-radius: 0.125rem; }
  7430. .list-group .list-group-item:last-child {
  7431. -webkit-border-bottom-left-radius: 0.125rem;
  7432. border-bottom-left-radius: 0.125rem;
  7433. -webkit-border-bottom-right-radius: 0.125rem;
  7434. border-bottom-right-radius: 0.125rem; }
  7435. .list-group a,
  7436. .list-group button {
  7437. -webkit-transition: 0.5s;
  7438. -o-transition: 0.5s;
  7439. transition: 0.5s; }
  7440. .list-group a:hover,
  7441. .list-group button:hover {
  7442. -webkit-transition: 0.5s;
  7443. -o-transition: 0.5s;
  7444. transition: 0.5s; }
  7445. table th {
  7446. font-size: 0.9rem;
  7447. font-weight: 400; }
  7448. table td {
  7449. font-size: 0.9rem;
  7450. font-weight: 300; }
  7451. table.table thead th {
  7452. border-top: none; }
  7453. table.table th,
  7454. table.table td {
  7455. padding-top: 1.1rem;
  7456. padding-bottom: 1rem; }
  7457. table.table a {
  7458. margin: 0;
  7459. color: #212529; }
  7460. table.table .label-table {
  7461. margin: 0;
  7462. padding: 0;
  7463. line-height: 0.94rem;
  7464. height: 0.94rem; }
  7465. table.table.btn-table td {
  7466. vertical-align: middle; }
  7467. table.table-hover tbody tr:hover {
  7468. -webkit-transition: 0.5s;
  7469. -o-transition: 0.5s;
  7470. transition: 0.5s;
  7471. background-color: rgba(0, 0, 0, 0.075); }
  7472. table .th-lg {
  7473. min-width: 9rem; }
  7474. table .th-sm {
  7475. min-width: 6rem; }
  7476. table.table-sm th,
  7477. table.table-sm td {
  7478. padding-top: 0.6rem;
  7479. padding-bottom: 0.6rem; }
  7480. .table-scroll-vertical {
  7481. max-height: 300px;
  7482. overflow-y: auto; }
  7483. .table-fixed {
  7484. table-layout: fixed; }
  7485. .table-responsive > .table-bordered,
  7486. .table-responsive-sm > .table-bordered,
  7487. .table-responsive-md > .table-bordered,
  7488. .table-responsive-lg > .table-bordered,
  7489. .table-responsive-xl > .table-bordered {
  7490. border-top: 1px solid #dee2e6; }
  7491. ul.stepper {
  7492. counter-reset: section;
  7493. overflow-y: auto;
  7494. overflow-x: hidden;
  7495. margin: 1em -1.5rem;
  7496. padding: 0 1.5rem;
  7497. padding: 1.5rem; }
  7498. ul.stepper li a {
  7499. padding: 1.5rem;
  7500. text-align: center; }
  7501. ul.stepper li a .circle {
  7502. display: inline-block;
  7503. color: #fff;
  7504. -webkit-border-radius: 50%;
  7505. border-radius: 50%;
  7506. background: rgba(0, 0, 0, 0.38);
  7507. width: 1.75rem;
  7508. height: 1.75rem;
  7509. text-align: center;
  7510. line-height: 1.7rem;
  7511. margin-right: 0.5rem; }
  7512. ul.stepper li a .label {
  7513. display: inline-block;
  7514. color: rgba(0, 0, 0, 0.38); }
  7515. ul.stepper li.active a .label, ul.stepper li.completed a .label {
  7516. font-weight: 600;
  7517. color: rgba(0, 0, 0, 0.87); }
  7518. .stepper-horizontal {
  7519. position: relative;
  7520. display: -webkit-box;
  7521. display: -webkit-flex;
  7522. display: -ms-flexbox;
  7523. display: flex;
  7524. -webkit-box-pack: justify;
  7525. -webkit-justify-content: space-between;
  7526. -ms-flex-pack: justify;
  7527. justify-content: space-between; }
  7528. .stepper-horizontal li {
  7529. -webkit-transition: 0.5s;
  7530. -o-transition: 0.5s;
  7531. transition: 0.5s;
  7532. display: -webkit-box;
  7533. display: -webkit-flex;
  7534. display: -ms-flexbox;
  7535. display: flex;
  7536. -webkit-box-align: center;
  7537. -webkit-align-items: center;
  7538. -ms-flex-align: center;
  7539. align-items: center;
  7540. -webkit-box-flex: 1;
  7541. -webkit-flex: 1;
  7542. -ms-flex: 1;
  7543. flex: 1;
  7544. position: relative; }
  7545. .stepper-horizontal li a .label {
  7546. margin-top: 0.63rem; }
  7547. .stepper-horizontal li:not(:last-child):after {
  7548. content: "";
  7549. position: relative;
  7550. -webkit-box-flex: 1;
  7551. -webkit-flex: 1;
  7552. -ms-flex: 1;
  7553. flex: 1;
  7554. margin: 0.5rem 0 0 0;
  7555. height: 1px;
  7556. background-color: rgba(0, 0, 0, 0.1); }
  7557. .stepper-horizontal li:not(:first-child):before {
  7558. content: "";
  7559. position: relative;
  7560. -webkit-box-flex: 1;
  7561. -webkit-flex: 1;
  7562. -ms-flex: 1;
  7563. flex: 1;
  7564. margin: 0.5rem 0 0 0;
  7565. height: 1px;
  7566. background-color: rgba(0, 0, 0, 0.1); }
  7567. .stepper-horizontal li:hover {
  7568. background-color: rgba(0, 0, 0, 0.06); }
  7569. @media (max-width: 47.9375rem) {
  7570. .stepper-horizontal {
  7571. -webkit-box-orient: vertical;
  7572. -webkit-box-direction: normal;
  7573. -webkit-flex-direction: column;
  7574. -ms-flex-direction: column;
  7575. flex-direction: column; }
  7576. .stepper-horizontal li {
  7577. -webkit-box-align: start;
  7578. -webkit-align-items: flex-start;
  7579. -ms-flex-align: start;
  7580. align-items: flex-start;
  7581. -webkit-box-orient: vertical;
  7582. -webkit-box-direction: normal;
  7583. -webkit-flex-direction: column;
  7584. -ms-flex-direction: column;
  7585. flex-direction: column; }
  7586. .stepper-horizontal li a .label {
  7587. -webkit-box-orient: vertical;
  7588. -webkit-box-direction: normal;
  7589. -webkit-flex-flow: column nowrap;
  7590. -ms-flex-flow: column nowrap;
  7591. flex-flow: column nowrap;
  7592. -webkit-box-ordinal-group: 3;
  7593. -webkit-order: 2;
  7594. -ms-flex-order: 2;
  7595. order: 2;
  7596. margin-top: 0.2rem; }
  7597. .stepper-horizontal li:not(:last-child):after {
  7598. content: "";
  7599. position: absolute;
  7600. width: 1px;
  7601. height: calc(100% - 40px);
  7602. left: 2.19rem;
  7603. top: 3.75rem; } }
  7604. .stepper-horizontal > li:not(:last-of-type) {
  7605. margin-bottom: 0 !important; }
  7606. .stepper-vertical {
  7607. position: relative;
  7608. display: -webkit-box;
  7609. display: -webkit-flex;
  7610. display: -ms-flexbox;
  7611. display: flex;
  7612. -webkit-box-orient: vertical;
  7613. -webkit-box-direction: normal;
  7614. -webkit-flex-direction: column;
  7615. -ms-flex-direction: column;
  7616. flex-direction: column;
  7617. -webkit-box-pack: justify;
  7618. -webkit-justify-content: space-between;
  7619. -ms-flex-pack: justify;
  7620. justify-content: space-between; }
  7621. .stepper-vertical li {
  7622. display: -webkit-box;
  7623. display: -webkit-flex;
  7624. display: -ms-flexbox;
  7625. display: flex;
  7626. -webkit-box-align: start;
  7627. -webkit-align-items: flex-start;
  7628. -ms-flex-align: start;
  7629. align-items: flex-start;
  7630. -webkit-box-flex: 1;
  7631. -webkit-flex: 1;
  7632. -ms-flex: 1;
  7633. flex: 1;
  7634. -webkit-box-orient: vertical;
  7635. -webkit-box-direction: normal;
  7636. -webkit-flex-direction: column;
  7637. -ms-flex-direction: column;
  7638. flex-direction: column;
  7639. position: relative; }
  7640. .stepper-vertical li a {
  7641. -webkit-align-self: flex-start;
  7642. -ms-flex-item-align: start;
  7643. align-self: flex-start;
  7644. display: -webkit-box;
  7645. display: -webkit-flex;
  7646. display: -ms-flexbox;
  7647. display: flex;
  7648. position: relative; }
  7649. .stepper-vertical li a .circle {
  7650. -webkit-box-ordinal-group: 2;
  7651. -webkit-order: 1;
  7652. -ms-flex-order: 1;
  7653. order: 1; }
  7654. .stepper-vertical li a .label {
  7655. -webkit-box-orient: vertical;
  7656. -webkit-box-direction: normal;
  7657. -webkit-flex-flow: column nowrap;
  7658. -ms-flex-flow: column nowrap;
  7659. flex-flow: column nowrap;
  7660. -webkit-box-ordinal-group: 3;
  7661. -webkit-order: 2;
  7662. -ms-flex-order: 2;
  7663. order: 2;
  7664. margin-top: 0.2rem; }
  7665. .stepper-vertical li.completed a .label {
  7666. font-weight: 500; }
  7667. .stepper-vertical li .step-content {
  7668. display: block;
  7669. margin-top: 0;
  7670. margin-left: 3.13rem;
  7671. padding: 0.94rem; }
  7672. .stepper-vertical li .step-content p {
  7673. font-size: 0.88rem; }
  7674. .stepper-vertical li:not(:last-child):after {
  7675. content: "";
  7676. position: absolute;
  7677. width: 1px;
  7678. height: calc(100% - 40px);
  7679. left: 2.19rem;
  7680. top: 3.44rem;
  7681. background-color: rgba(0, 0, 0, 0.1); }
  7682. .fast.spinner-border {
  7683. -webkit-animation: spinner-border .4s linear infinite;
  7684. animation: spinner-border .4s linear infinite; }
  7685. .fast.spinner-grow {
  7686. -webkit-animation: spinner-grow .4s linear infinite;
  7687. animation: spinner-grow .4s linear infinite; }
  7688. .treeview.w-20 {
  7689. width: 20rem; }
  7690. .treeview .rotate {
  7691. cursor: pointer;
  7692. -webkit-user-select: none;
  7693. -moz-user-select: none;
  7694. -ms-user-select: none;
  7695. user-select: none;
  7696. -webkit-transition: all .1s linear;
  7697. -o-transition: all .1s linear;
  7698. transition: all .1s linear;
  7699. font-size: .8rem;
  7700. vertical-align: text-top;
  7701. margin-top: .2rem; }
  7702. .treeview .rotate.down {
  7703. -webkit-transform: rotate(90deg);
  7704. -ms-transform: rotate(90deg);
  7705. transform: rotate(90deg); }
  7706. .treeview .nested {
  7707. display: none; }
  7708. .treeview .active {
  7709. display: block; }
  7710. .treeview ul {
  7711. list-style-type: none; }
  7712. .treeview .ic-w {
  7713. width: 1.3rem; }