colors.css 185 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144
  1. .white {
  2. color: #FFFFFF !important;
  3. }
  4. .bg-white {
  5. background-color: #FFFFFF !important;
  6. }
  7. .bg-white .card-header,
  8. .bg-white .card-footer {
  9. background-color: transparent;
  10. }
  11. .alert-white {
  12. background: rgba(255, 255, 255, 0.2) !important;
  13. color: #FFFFFF !important;
  14. }
  15. .alert-white .alert-heading {
  16. box-shadow: rgba(255, 255, 255, 0.4) 0px 6px 15px -7px;
  17. }
  18. .alert-white .alert-link {
  19. color: #f2f2f2 !important;
  20. }
  21. .bg-rgba-white {
  22. background: rgba(255, 255, 255, 0.15) !important;
  23. }
  24. .border-white {
  25. border: 1px solid #FFFFFF !important;
  26. }
  27. .border-top-white {
  28. border-top: 1px solid #FFFFFF;
  29. }
  30. .border-bottom-white {
  31. border-bottom: 1px solid #FFFFFF;
  32. }
  33. .border-left-white {
  34. border-left: 1px solid #FFFFFF;
  35. }
  36. .border-right-white {
  37. border-right: 1px solid #FFFFFF;
  38. }
  39. .bg-white.badge-glow,
  40. .border-white.badge-glow,
  41. .badge-white.badge-glow {
  42. box-shadow: 0px 0px 10px #FFFFFF;
  43. }
  44. .badge.badge-white {
  45. background-color: #FFFFFF;
  46. }
  47. .overlay-white {
  48. background: #FFFFFF;
  49. /* The Fallback */
  50. background: rgba(255, 255, 255, 0.6);
  51. }
  52. .btn-white {
  53. border-color: !important;
  54. background-color: #FFFFFF !important;
  55. color: #fff;
  56. }
  57. .btn-white:hover {
  58. border-color: !important;
  59. color: #fff !important;
  60. box-shadow: 0 8px 25px -8px white;
  61. }
  62. .btn-white:focus,
  63. .btn-white:active {
  64. color: #fff !important;
  65. }
  66. .btn-flat-white {
  67. background-color: transparent;
  68. color: #FFFFFF;
  69. }
  70. .btn-flat-white:hover {
  71. color: #FFFFFF;
  72. background-color: rgba(255, 255, 255, 0.1);
  73. }
  74. .btn-flat-white:active,
  75. .btn-flat-white:focus {
  76. background-color: #FFFFFF;
  77. color: #fff !important;
  78. }
  79. .btn-relief-white {
  80. background-color: #FFFFFF;
  81. box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  82. color: #fff;
  83. }
  84. .btn-relief-white:hover {
  85. color: #fff;
  86. }
  87. .btn-relief-white:active,
  88. .btn-relief-white:focus {
  89. outline: none;
  90. transform: translateY(3px);
  91. }
  92. .btn-outline-white {
  93. border: 1px solid #FFFFFF;
  94. background-color: transparent;
  95. color: #FFFFFF;
  96. }
  97. .btn-outline-white:hover {
  98. background-color: rgba(255, 255, 255, 0.08);
  99. color: #FFFFFF;
  100. }
  101. .btn-outline-white:active {
  102. color: #fff !important;
  103. }
  104. .btn-white ~ .dropdown-menu .dropdown-item.active,
  105. .btn-outline-white ~ .dropdown-menu .dropdown-item.active,
  106. .btn-flat-white ~ .dropdown-menu .dropdown-item.active {
  107. background-color: #FFFFFF;
  108. color: #fff;
  109. }
  110. .btn-white ~ .dropdown-menu .dropdown-item.active:hover,
  111. .btn-outline-white ~ .dropdown-menu .dropdown-item.active:hover,
  112. .btn-flat-white ~ .dropdown-menu .dropdown-item.active:hover {
  113. color: #fff;
  114. }
  115. .btn-white ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  116. .btn-outline-white ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  117. .btn-flat-white ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover {
  118. color: #FFFFFF;
  119. }
  120. .dropdown.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:hover i,
  121. .dropdown.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:hover i,
  122. .dropdown.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:hover i,
  123. .dropup.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:hover i,
  124. .dropup.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:hover i,
  125. .dropup.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:hover i,
  126. .dropright.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:hover i,
  127. .dropright.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:hover i,
  128. .dropright.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:hover i,
  129. .dropleft.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:hover i,
  130. .dropleft.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:hover i,
  131. .dropleft.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:hover i {
  132. color: #FFFFFF;
  133. }
  134. .dropdown.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:active i,
  135. .dropdown.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:active i,
  136. .dropdown.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:active i,
  137. .dropup.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:active i,
  138. .dropup.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:active i,
  139. .dropup.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:active i,
  140. .dropright.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:active i,
  141. .dropright.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:active i,
  142. .dropright.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:active i,
  143. .dropleft.dropdown-icon-wrapper .btn-white ~ .dropdown-menu .dropdown-item:active i,
  144. .dropleft.dropdown-icon-wrapper .btn-outline-white ~ .dropdown-menu .dropdown-item:active i,
  145. .dropleft.dropdown-icon-wrapper .btn-flat-white ~ .dropdown-menu .dropdown-item:active i {
  146. color: #fff;
  147. }
  148. .bullet.bullet-white {
  149. background-color: #FFFFFF;
  150. }
  151. .pagination-white .page-item.active .page-link {
  152. background: #FFFFFF;
  153. color: #fff;
  154. }
  155. .pagination-white .page-item.active .page-link:hover {
  156. color: #fff;
  157. }
  158. .pagination-white .page-item .page-link:hover {
  159. color: #FFFFFF;
  160. }
  161. .pagination-white .page-item.prev-item .page-link:hover,
  162. .pagination-white .page-item.next-item .page-link:hover {
  163. background: #FFFFFF;
  164. color: #fff;
  165. }
  166. .nav-pill-white .nav-item .nav-link.active {
  167. color: #fff;
  168. background-color: #FFFFFF !important;
  169. }
  170. .progress-bar-white {
  171. background-color: rgba(255, 255, 255, 0.1);
  172. }
  173. .progress-bar-white .progress-bar {
  174. background-color: #FFFFFF;
  175. }
  176. .chip-white {
  177. background-color: #FFFFFF !important;
  178. }
  179. .chip-white .chip-body {
  180. color: #fff !important;
  181. }
  182. .divider.divider-white .divider-text:before,
  183. .divider.divider-white .divider-text:after {
  184. border-color: #FFFFFF !important;
  185. }
  186. input[type=checkbox].bg-white + .custom-control-label:before,
  187. input[type=radio].bg-white + .custom-control-label:before {
  188. background-color: #FFFFFF !important;
  189. }
  190. input:focus ~ .bg-white {
  191. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFFFFF !important;
  192. }
  193. .vs-checkbox-white input:checked ~ .vs-checkbox {
  194. border-color: #FFFFFF !important;
  195. }
  196. .vs-checkbox-white input:checked ~ .vs-checkbox .vs-checkbox--check {
  197. background-color: #FFFFFF !important;
  198. }
  199. .vs-checkbox-white input:active:checked + .vs-checkbox .vs-checkbox--check {
  200. background-color: #FFFFFF !important;
  201. }
  202. .custom-switch-white .custom-control-input:checked ~ .custom-control-label::before {
  203. background-color: #FFFFFF !important;
  204. color: #fff;
  205. transition: all 0.2s ease-out;
  206. }
  207. .vs-radio-white input:checked ~ .vs-radio .vs-radio--circle {
  208. background: white !important;
  209. box-shadow: 0 3px 12px 0 rgba(255, 255, 255, 0.4) !important;
  210. }
  211. .black {
  212. color: #000000 !important;
  213. }
  214. .bg-black {
  215. background-color: #000000 !important;
  216. }
  217. .bg-black .card-header,
  218. .bg-black .card-footer {
  219. background-color: transparent;
  220. }
  221. .alert-black {
  222. background: rgba(0, 0, 0, 0.2) !important;
  223. color: #000000 !important;
  224. }
  225. .alert-black .alert-heading {
  226. box-shadow: rgba(0, 0, 0, 0.4) 0px 6px 15px -7px;
  227. }
  228. .alert-black .alert-link {
  229. color: black !important;
  230. }
  231. .bg-rgba-black {
  232. background: rgba(0, 0, 0, 0.15) !important;
  233. }
  234. .border-black {
  235. border: 1px solid #000000 !important;
  236. }
  237. .border-top-black {
  238. border-top: 1px solid #000000;
  239. }
  240. .border-bottom-black {
  241. border-bottom: 1px solid #000000;
  242. }
  243. .border-left-black {
  244. border-left: 1px solid #000000;
  245. }
  246. .border-right-black {
  247. border-right: 1px solid #000000;
  248. }
  249. .bg-black.badge-glow,
  250. .border-black.badge-glow,
  251. .badge-black.badge-glow {
  252. box-shadow: 0px 0px 10px #000000;
  253. }
  254. .badge.badge-black {
  255. background-color: #000000;
  256. }
  257. .overlay-black {
  258. background: #000000;
  259. /* The Fallback */
  260. background: rgba(0, 0, 0, 0.6);
  261. }
  262. .btn-black {
  263. border-color: !important;
  264. background-color: #000000 !important;
  265. color: #fff;
  266. }
  267. .btn-black:hover {
  268. border-color: !important;
  269. color: #fff !important;
  270. box-shadow: 0 8px 25px -8px black;
  271. }
  272. .btn-black:focus,
  273. .btn-black:active {
  274. color: #fff !important;
  275. }
  276. .btn-flat-black {
  277. background-color: transparent;
  278. color: #000000;
  279. }
  280. .btn-flat-black:hover {
  281. color: #000000;
  282. background-color: rgba(0, 0, 0, 0.1);
  283. }
  284. .btn-flat-black:active,
  285. .btn-flat-black:focus {
  286. background-color: #000000;
  287. color: #fff !important;
  288. }
  289. .btn-relief-black {
  290. background-color: #000000;
  291. box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  292. color: #fff;
  293. }
  294. .btn-relief-black:hover {
  295. color: #fff;
  296. }
  297. .btn-relief-black:active,
  298. .btn-relief-black:focus {
  299. outline: none;
  300. transform: translateY(3px);
  301. }
  302. .btn-outline-black {
  303. border: 1px solid #000000;
  304. background-color: transparent;
  305. color: #000000;
  306. }
  307. .btn-outline-black:hover {
  308. background-color: rgba(0, 0, 0, 0.08);
  309. color: #000000;
  310. }
  311. .btn-outline-black:active {
  312. color: #fff !important;
  313. }
  314. .btn-black ~ .dropdown-menu .dropdown-item.active,
  315. .btn-outline-black ~ .dropdown-menu .dropdown-item.active,
  316. .btn-flat-black ~ .dropdown-menu .dropdown-item.active {
  317. background-color: #000000;
  318. color: #fff;
  319. }
  320. .btn-black ~ .dropdown-menu .dropdown-item.active:hover,
  321. .btn-outline-black ~ .dropdown-menu .dropdown-item.active:hover,
  322. .btn-flat-black ~ .dropdown-menu .dropdown-item.active:hover {
  323. color: #fff;
  324. }
  325. .btn-black ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  326. .btn-outline-black ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  327. .btn-flat-black ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover {
  328. color: #000000;
  329. }
  330. .dropdown.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:hover i,
  331. .dropdown.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:hover i,
  332. .dropdown.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:hover i,
  333. .dropup.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:hover i,
  334. .dropup.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:hover i,
  335. .dropup.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:hover i,
  336. .dropright.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:hover i,
  337. .dropright.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:hover i,
  338. .dropright.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:hover i,
  339. .dropleft.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:hover i,
  340. .dropleft.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:hover i,
  341. .dropleft.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:hover i {
  342. color: #000000;
  343. }
  344. .dropdown.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:active i,
  345. .dropdown.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:active i,
  346. .dropdown.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:active i,
  347. .dropup.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:active i,
  348. .dropup.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:active i,
  349. .dropup.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:active i,
  350. .dropright.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:active i,
  351. .dropright.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:active i,
  352. .dropright.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:active i,
  353. .dropleft.dropdown-icon-wrapper .btn-black ~ .dropdown-menu .dropdown-item:active i,
  354. .dropleft.dropdown-icon-wrapper .btn-outline-black ~ .dropdown-menu .dropdown-item:active i,
  355. .dropleft.dropdown-icon-wrapper .btn-flat-black ~ .dropdown-menu .dropdown-item:active i {
  356. color: #fff;
  357. }
  358. .bullet.bullet-black {
  359. background-color: #000000;
  360. }
  361. .pagination-black .page-item.active .page-link {
  362. background: #000000;
  363. color: #fff;
  364. }
  365. .pagination-black .page-item.active .page-link:hover {
  366. color: #fff;
  367. }
  368. .pagination-black .page-item .page-link:hover {
  369. color: #000000;
  370. }
  371. .pagination-black .page-item.prev-item .page-link:hover,
  372. .pagination-black .page-item.next-item .page-link:hover {
  373. background: #000000;
  374. color: #fff;
  375. }
  376. .nav-pill-black .nav-item .nav-link.active {
  377. color: #fff;
  378. background-color: #000000 !important;
  379. }
  380. .progress-bar-black {
  381. background-color: rgba(0, 0, 0, 0.1);
  382. }
  383. .progress-bar-black .progress-bar {
  384. background-color: #000000;
  385. }
  386. .chip-black {
  387. background-color: #000000 !important;
  388. }
  389. .chip-black .chip-body {
  390. color: #fff !important;
  391. }
  392. .divider.divider-black .divider-text:before,
  393. .divider.divider-black .divider-text:after {
  394. border-color: #000000 !important;
  395. }
  396. input[type=checkbox].bg-black + .custom-control-label:before,
  397. input[type=radio].bg-black + .custom-control-label:before {
  398. background-color: #000000 !important;
  399. }
  400. input:focus ~ .bg-black {
  401. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #000000 !important;
  402. }
  403. .vs-checkbox-black input:checked ~ .vs-checkbox {
  404. border-color: #000000 !important;
  405. }
  406. .vs-checkbox-black input:checked ~ .vs-checkbox .vs-checkbox--check {
  407. background-color: #000000 !important;
  408. }
  409. .vs-checkbox-black input:active:checked + .vs-checkbox .vs-checkbox--check {
  410. background-color: #000000 !important;
  411. }
  412. .custom-switch-black .custom-control-input:checked ~ .custom-control-label::before {
  413. background-color: #000000 !important;
  414. color: #fff;
  415. transition: all 0.2s ease-out;
  416. }
  417. .vs-radio-black input:checked ~ .vs-radio .vs-radio--circle {
  418. background: black !important;
  419. box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.4) !important;
  420. }
  421. .dark {
  422. color: #1e1e1e !important;
  423. }
  424. .bg-dark {
  425. background-color: #1e1e1e !important;
  426. }
  427. .bg-dark .card-header,
  428. .bg-dark .card-footer {
  429. background-color: transparent;
  430. }
  431. .alert-dark {
  432. background: rgba(30, 30, 30, 0.2) !important;
  433. color: #1e1e1e !important;
  434. }
  435. .alert-dark .alert-heading {
  436. box-shadow: rgba(30, 30, 30, 0.4) 0px 6px 15px -7px;
  437. }
  438. .alert-dark .alert-link {
  439. color: #111111 !important;
  440. }
  441. .bg-rgba-dark {
  442. background: rgba(30, 30, 30, 0.15) !important;
  443. }
  444. .border-dark {
  445. border: 1px solid #1e1e1e !important;
  446. }
  447. .border-top-dark {
  448. border-top: 1px solid #1e1e1e;
  449. }
  450. .border-bottom-dark {
  451. border-bottom: 1px solid #1e1e1e;
  452. }
  453. .border-left-dark {
  454. border-left: 1px solid #1e1e1e;
  455. }
  456. .border-right-dark {
  457. border-right: 1px solid #1e1e1e;
  458. }
  459. .bg-dark.badge-glow,
  460. .border-dark.badge-glow,
  461. .badge-dark.badge-glow {
  462. box-shadow: 0px 0px 10px #1e1e1e;
  463. }
  464. .badge.badge-dark {
  465. background-color: #1e1e1e;
  466. }
  467. .overlay-dark {
  468. background: #1e1e1e;
  469. /* The Fallback */
  470. background: rgba(30, 30, 30, 0.6);
  471. }
  472. .btn-dark {
  473. border-color: !important;
  474. background-color: #1e1e1e !important;
  475. color: #fff;
  476. }
  477. .btn-dark:hover {
  478. border-color: !important;
  479. color: #fff !important;
  480. box-shadow: 0 8px 25px -8px #1e1e1e;
  481. }
  482. .btn-dark:focus,
  483. .btn-dark:active {
  484. color: #fff !important;
  485. }
  486. .btn-flat-dark {
  487. background-color: transparent;
  488. color: #1e1e1e;
  489. }
  490. .btn-flat-dark:hover {
  491. color: #1e1e1e;
  492. background-color: rgba(30, 30, 30, 0.1);
  493. }
  494. .btn-flat-dark:active,
  495. .btn-flat-dark:focus {
  496. background-color: #1e1e1e;
  497. color: #fff !important;
  498. }
  499. .btn-relief-dark {
  500. background-color: #1e1e1e;
  501. box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  502. color: #fff;
  503. }
  504. .btn-relief-dark:hover {
  505. color: #fff;
  506. }
  507. .btn-relief-dark:active,
  508. .btn-relief-dark:focus {
  509. outline: none;
  510. transform: translateY(3px);
  511. }
  512. .btn-outline-dark {
  513. border: 1px solid #1e1e1e;
  514. background-color: transparent;
  515. color: #1e1e1e;
  516. }
  517. .btn-outline-dark:hover {
  518. background-color: rgba(30, 30, 30, 0.08);
  519. color: #1e1e1e;
  520. }
  521. .btn-outline-dark:active {
  522. color: #fff !important;
  523. }
  524. .btn-dark ~ .dropdown-menu .dropdown-item.active,
  525. .btn-outline-dark ~ .dropdown-menu .dropdown-item.active,
  526. .btn-flat-dark ~ .dropdown-menu .dropdown-item.active {
  527. background-color: #1e1e1e;
  528. color: #fff;
  529. }
  530. .btn-dark ~ .dropdown-menu .dropdown-item.active:hover,
  531. .btn-outline-dark ~ .dropdown-menu .dropdown-item.active:hover,
  532. .btn-flat-dark ~ .dropdown-menu .dropdown-item.active:hover {
  533. color: #fff;
  534. }
  535. .btn-dark ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  536. .btn-outline-dark ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  537. .btn-flat-dark ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover {
  538. color: #1e1e1e;
  539. }
  540. .dropdown.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:hover i,
  541. .dropdown.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:hover i,
  542. .dropdown.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:hover i,
  543. .dropup.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:hover i,
  544. .dropup.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:hover i,
  545. .dropup.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:hover i,
  546. .dropright.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:hover i,
  547. .dropright.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:hover i,
  548. .dropright.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:hover i,
  549. .dropleft.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:hover i,
  550. .dropleft.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:hover i,
  551. .dropleft.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:hover i {
  552. color: #1e1e1e;
  553. }
  554. .dropdown.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:active i,
  555. .dropdown.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:active i,
  556. .dropdown.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:active i,
  557. .dropup.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:active i,
  558. .dropup.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:active i,
  559. .dropup.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:active i,
  560. .dropright.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:active i,
  561. .dropright.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:active i,
  562. .dropright.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:active i,
  563. .dropleft.dropdown-icon-wrapper .btn-dark ~ .dropdown-menu .dropdown-item:active i,
  564. .dropleft.dropdown-icon-wrapper .btn-outline-dark ~ .dropdown-menu .dropdown-item:active i,
  565. .dropleft.dropdown-icon-wrapper .btn-flat-dark ~ .dropdown-menu .dropdown-item:active i {
  566. color: #fff;
  567. }
  568. .bullet.bullet-dark {
  569. background-color: #1e1e1e;
  570. }
  571. .pagination-dark .page-item.active .page-link {
  572. background: #1e1e1e;
  573. color: #fff;
  574. }
  575. .pagination-dark .page-item.active .page-link:hover {
  576. color: #fff;
  577. }
  578. .pagination-dark .page-item .page-link:hover {
  579. color: #1e1e1e;
  580. }
  581. .pagination-dark .page-item.prev-item .page-link:hover,
  582. .pagination-dark .page-item.next-item .page-link:hover {
  583. background: #1e1e1e;
  584. color: #fff;
  585. }
  586. .nav-pill-dark .nav-item .nav-link.active {
  587. color: #fff;
  588. background-color: #1e1e1e !important;
  589. }
  590. .progress-bar-dark {
  591. background-color: rgba(30, 30, 30, 0.1);
  592. }
  593. .progress-bar-dark .progress-bar {
  594. background-color: #1e1e1e;
  595. }
  596. .chip-dark {
  597. background-color: #1e1e1e !important;
  598. }
  599. .chip-dark .chip-body {
  600. color: #fff !important;
  601. }
  602. .divider.divider-dark .divider-text:before,
  603. .divider.divider-dark .divider-text:after {
  604. border-color: #1e1e1e !important;
  605. }
  606. input[type=checkbox].bg-dark + .custom-control-label:before,
  607. input[type=radio].bg-dark + .custom-control-label:before {
  608. background-color: #1e1e1e !important;
  609. }
  610. input:focus ~ .bg-dark {
  611. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #1e1e1e !important;
  612. }
  613. .vs-checkbox-dark input:checked ~ .vs-checkbox {
  614. border-color: #1e1e1e !important;
  615. }
  616. .vs-checkbox-dark input:checked ~ .vs-checkbox .vs-checkbox--check {
  617. background-color: #1e1e1e !important;
  618. }
  619. .vs-checkbox-dark input:active:checked + .vs-checkbox .vs-checkbox--check {
  620. background-color: #1e1e1e !important;
  621. }
  622. .custom-switch-dark .custom-control-input:checked ~ .custom-control-label::before {
  623. background-color: #1e1e1e !important;
  624. color: #fff;
  625. transition: all 0.2s ease-out;
  626. }
  627. .vs-radio-dark input:checked ~ .vs-radio .vs-radio--circle {
  628. background: #1e1e1e !important;
  629. box-shadow: 0 3px 12px 0 rgba(30, 30, 30, 0.4) !important;
  630. }
  631. .dark.gradient-bg {
  632. color: #640064 !important;
  633. }
  634. .bg-dark.bg-gradient-bg {
  635. background-color: #640064 !important;
  636. }
  637. .btn-dark.btn-gradient-bg {
  638. border-color: !important;
  639. background-color: #640064 !important;
  640. }
  641. .btn-dark.btn-gradient-bg:hover {
  642. border-color: !important;
  643. background-color: !important;
  644. }
  645. .btn-dark.btn-gradient-bg:focus,
  646. .btn-dark.btn-gradient-bg:active {
  647. border-color: !important;
  648. background-color: !important;
  649. }
  650. .btn-outline-dark.btn-outline-gradient-bg {
  651. border-color: #640064 !important;
  652. color: #640064 !important;
  653. }
  654. .btn-outline-dark.btn-outline-gradient-bg:hover {
  655. background-color: #640064 !important;
  656. }
  657. input:focus ~ .bg-dark {
  658. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important;
  659. }
  660. .border-dark.border-gradient-bg {
  661. border: 1px solid #640064 !important;
  662. }
  663. .border-top-dark.border-top-gradient-bg {
  664. border-top: 1px solid #640064 !important;
  665. }
  666. .border-bottom-dark.border-bottom-gradient-bg {
  667. border-bottom: 1px solid #640064 !important;
  668. }
  669. .border-left-dark.border-left-gradient-bg {
  670. border-left: 1px solid #640064 !important;
  671. }
  672. .border-right-dark.border-right-gradient-bg {
  673. border-right: 1px solid #640064 !important;
  674. }
  675. .overlay-dark.overlay-gradient-bg {
  676. background: #640064;
  677. /* The Fallback */
  678. background: rgba(100, 0, 100, 0.6);
  679. }
  680. .light {
  681. color: #babfc7 !important;
  682. }
  683. .bg-light {
  684. background-color: #babfc7 !important;
  685. }
  686. .bg-light .card-header,
  687. .bg-light .card-footer {
  688. background-color: transparent;
  689. }
  690. .alert-light {
  691. background: rgba(186, 191, 199, 0.2) !important;
  692. color: #babfc7 !important;
  693. }
  694. .alert-light .alert-heading {
  695. box-shadow: rgba(186, 191, 199, 0.4) 0px 6px 15px -7px;
  696. }
  697. .alert-light .alert-link {
  698. color: #acb2bc !important;
  699. }
  700. .bg-rgba-light {
  701. background: rgba(186, 191, 199, 0.15) !important;
  702. }
  703. .border-light {
  704. border: 1px solid #babfc7 !important;
  705. }
  706. .border-top-light {
  707. border-top: 1px solid #babfc7;
  708. }
  709. .border-bottom-light {
  710. border-bottom: 1px solid #babfc7;
  711. }
  712. .border-left-light {
  713. border-left: 1px solid #babfc7;
  714. }
  715. .border-right-light {
  716. border-right: 1px solid #babfc7;
  717. }
  718. .bg-light.badge-glow,
  719. .border-light.badge-glow,
  720. .badge-light.badge-glow {
  721. box-shadow: 0px 0px 10px #babfc7;
  722. }
  723. .badge.badge-light {
  724. background-color: #babfc7;
  725. }
  726. .overlay-light {
  727. background: #babfc7;
  728. /* The Fallback */
  729. background: rgba(186, 191, 199, 0.6);
  730. }
  731. .btn-light {
  732. border-color: !important;
  733. background-color: #babfc7 !important;
  734. color: #fff;
  735. }
  736. .btn-light:hover {
  737. border-color: !important;
  738. color: #fff !important;
  739. box-shadow: 0 8px 25px -8px #babfc7;
  740. }
  741. .btn-light:focus,
  742. .btn-light:active {
  743. color: #fff !important;
  744. }
  745. .btn-flat-light {
  746. background-color: transparent;
  747. color: #babfc7;
  748. }
  749. .btn-flat-light:hover {
  750. color: #babfc7;
  751. background-color: rgba(186, 191, 199, 0.1);
  752. }
  753. .btn-flat-light:active,
  754. .btn-flat-light:focus {
  755. background-color: #babfc7;
  756. color: #fff !important;
  757. }
  758. .btn-relief-light {
  759. background-color: #babfc7;
  760. box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  761. color: #fff;
  762. }
  763. .btn-relief-light:hover {
  764. color: #fff;
  765. }
  766. .btn-relief-light:active,
  767. .btn-relief-light:focus {
  768. outline: none;
  769. transform: translateY(3px);
  770. }
  771. .btn-outline-light {
  772. border: 1px solid #babfc7;
  773. background-color: transparent;
  774. color: #babfc7;
  775. }
  776. .btn-outline-light:hover {
  777. background-color: rgba(186, 191, 199, 0.08);
  778. color: #babfc7;
  779. }
  780. .btn-outline-light:active {
  781. color: #fff !important;
  782. }
  783. .btn-light ~ .dropdown-menu .dropdown-item.active,
  784. .btn-outline-light ~ .dropdown-menu .dropdown-item.active,
  785. .btn-flat-light ~ .dropdown-menu .dropdown-item.active {
  786. background-color: #babfc7;
  787. color: #fff;
  788. }
  789. .btn-light ~ .dropdown-menu .dropdown-item.active:hover,
  790. .btn-outline-light ~ .dropdown-menu .dropdown-item.active:hover,
  791. .btn-flat-light ~ .dropdown-menu .dropdown-item.active:hover {
  792. color: #fff;
  793. }
  794. .btn-light ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  795. .btn-outline-light ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  796. .btn-flat-light ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover {
  797. color: #babfc7;
  798. }
  799. .dropdown.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:hover i,
  800. .dropdown.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:hover i,
  801. .dropdown.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:hover i,
  802. .dropup.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:hover i,
  803. .dropup.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:hover i,
  804. .dropup.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:hover i,
  805. .dropright.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:hover i,
  806. .dropright.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:hover i,
  807. .dropright.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:hover i,
  808. .dropleft.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:hover i,
  809. .dropleft.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:hover i,
  810. .dropleft.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:hover i {
  811. color: #babfc7;
  812. }
  813. .dropdown.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:active i,
  814. .dropdown.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:active i,
  815. .dropdown.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:active i,
  816. .dropup.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:active i,
  817. .dropup.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:active i,
  818. .dropup.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:active i,
  819. .dropright.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:active i,
  820. .dropright.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:active i,
  821. .dropright.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:active i,
  822. .dropleft.dropdown-icon-wrapper .btn-light ~ .dropdown-menu .dropdown-item:active i,
  823. .dropleft.dropdown-icon-wrapper .btn-outline-light ~ .dropdown-menu .dropdown-item:active i,
  824. .dropleft.dropdown-icon-wrapper .btn-flat-light ~ .dropdown-menu .dropdown-item:active i {
  825. color: #fff;
  826. }
  827. .bullet.bullet-light {
  828. background-color: #babfc7;
  829. }
  830. .pagination-light .page-item.active .page-link {
  831. background: #babfc7;
  832. color: #fff;
  833. }
  834. .pagination-light .page-item.active .page-link:hover {
  835. color: #fff;
  836. }
  837. .pagination-light .page-item .page-link:hover {
  838. color: #babfc7;
  839. }
  840. .pagination-light .page-item.prev-item .page-link:hover,
  841. .pagination-light .page-item.next-item .page-link:hover {
  842. background: #babfc7;
  843. color: #fff;
  844. }
  845. .nav-pill-light .nav-item .nav-link.active {
  846. color: #fff;
  847. background-color: #babfc7 !important;
  848. }
  849. .progress-bar-light {
  850. background-color: rgba(186, 191, 199, 0.1);
  851. }
  852. .progress-bar-light .progress-bar {
  853. background-color: #babfc7;
  854. }
  855. .chip-light {
  856. background-color: #babfc7 !important;
  857. }
  858. .chip-light .chip-body {
  859. color: #fff !important;
  860. }
  861. .divider.divider-light .divider-text:before,
  862. .divider.divider-light .divider-text:after {
  863. border-color: #babfc7 !important;
  864. }
  865. input[type=checkbox].bg-light + .custom-control-label:before,
  866. input[type=radio].bg-light + .custom-control-label:before {
  867. background-color: #babfc7 !important;
  868. }
  869. input:focus ~ .bg-light {
  870. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #babfc7 !important;
  871. }
  872. .vs-checkbox-light input:checked ~ .vs-checkbox {
  873. border-color: #babfc7 !important;
  874. }
  875. .vs-checkbox-light input:checked ~ .vs-checkbox .vs-checkbox--check {
  876. background-color: #babfc7 !important;
  877. }
  878. .vs-checkbox-light input:active:checked + .vs-checkbox .vs-checkbox--check {
  879. background-color: #babfc7 !important;
  880. }
  881. .custom-switch-light .custom-control-input:checked ~ .custom-control-label::before {
  882. background-color: #babfc7 !important;
  883. color: #fff;
  884. transition: all 0.2s ease-out;
  885. }
  886. .vs-radio-light input:checked ~ .vs-radio .vs-radio--circle {
  887. background: #babfc7 !important;
  888. box-shadow: 0 3px 12px 0 rgba(186, 191, 199, 0.4) !important;
  889. }
  890. .light.gradient-bg {
  891. color: #640064 !important;
  892. }
  893. .bg-light.bg-gradient-bg {
  894. background-color: #640064 !important;
  895. }
  896. .btn-light.btn-gradient-bg {
  897. border-color: !important;
  898. background-color: #640064 !important;
  899. }
  900. .btn-light.btn-gradient-bg:hover {
  901. border-color: !important;
  902. background-color: !important;
  903. }
  904. .btn-light.btn-gradient-bg:focus,
  905. .btn-light.btn-gradient-bg:active {
  906. border-color: !important;
  907. background-color: !important;
  908. }
  909. .btn-outline-light.btn-outline-gradient-bg {
  910. border-color: #640064 !important;
  911. color: #640064 !important;
  912. }
  913. .btn-outline-light.btn-outline-gradient-bg:hover {
  914. background-color: #640064 !important;
  915. }
  916. input:focus ~ .bg-light {
  917. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important;
  918. }
  919. .border-light.border-gradient-bg {
  920. border: 1px solid #640064 !important;
  921. }
  922. .border-top-light.border-top-gradient-bg {
  923. border-top: 1px solid #640064 !important;
  924. }
  925. .border-bottom-light.border-bottom-gradient-bg {
  926. border-bottom: 1px solid #640064 !important;
  927. }
  928. .border-left-light.border-left-gradient-bg {
  929. border-left: 1px solid #640064 !important;
  930. }
  931. .border-right-light.border-right-gradient-bg {
  932. border-right: 1px solid #640064 !important;
  933. }
  934. .overlay-light.overlay-gradient-bg {
  935. background: #640064;
  936. /* The Fallback */
  937. background: rgba(100, 0, 100, 0.6);
  938. }
  939. .primary.gradient-light {
  940. color: #9e85e1 !important;
  941. }
  942. .bg-primary.bg-gradient-light {
  943. background-color: #9e85e1 !important;
  944. }
  945. .btn-primary.btn-gradient-light {
  946. border-color: #3e4eb1 !important;
  947. background-color: #9e85e1 !important;
  948. }
  949. .btn-primary.btn-gradient-light:hover {
  950. border-color: #3e4eb1 !important;
  951. background-color: #37469e !important;
  952. }
  953. .btn-primary.btn-gradient-light:focus,
  954. .btn-primary.btn-gradient-light:active {
  955. border-color: #37469e !important;
  956. background-color: #313e8b !important;
  957. }
  958. .btn-outline-primary.btn-outline-gradient-light {
  959. border-color: #9e85e1 !important;
  960. color: #9e85e1 !important;
  961. }
  962. .btn-outline-primary.btn-outline-gradient-light:hover {
  963. background-color: #9e85e1 !important;
  964. }
  965. input:focus ~ .bg-primary {
  966. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #9e85e1 !important;
  967. }
  968. .border-primary.border-gradient-light {
  969. border: 1px solid #9e85e1 !important;
  970. }
  971. .border-top-primary.border-top-gradient-light {
  972. border-top: 1px solid #9e85e1 !important;
  973. }
  974. .border-bottom-primary.border-bottom-gradient-light {
  975. border-bottom: 1px solid #9e85e1 !important;
  976. }
  977. .border-left-primary.border-left-gradient-light {
  978. border-left: 1px solid #9e85e1 !important;
  979. }
  980. .border-right-primary.border-right-gradient-light {
  981. border-right: 1px solid #9e85e1 !important;
  982. }
  983. .overlay-primary.overlay-gradient-light {
  984. background: #9e85e1;
  985. /* The Fallback */
  986. background: rgba(158, 133, 225, 0.6);
  987. }
  988. .primary.lighten-5 {
  989. color: #bac1e7 !important;
  990. }
  991. .bg-primary.bg-lighten-5 {
  992. background-color: #bac1e7 !important;
  993. }
  994. .btn-primary.btn-lighten-5 {
  995. border-color: #3e4eb1 !important;
  996. background-color: #bac1e7 !important;
  997. }
  998. .btn-primary.btn-lighten-5:hover {
  999. border-color: #3e4eb1 !important;
  1000. background-color: #37469e !important;
  1001. }
  1002. .btn-primary.btn-lighten-5:focus,
  1003. .btn-primary.btn-lighten-5:active {
  1004. border-color: #37469e !important;
  1005. background-color: #313e8b !important;
  1006. }
  1007. .btn-outline-primary.btn-outline-lighten-5 {
  1008. border-color: #bac1e7 !important;
  1009. color: #bac1e7 !important;
  1010. }
  1011. .btn-outline-primary.btn-outline-lighten-5:hover {
  1012. background-color: #bac1e7 !important;
  1013. }
  1014. input:focus ~ .bg-primary {
  1015. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #bac1e7 !important;
  1016. }
  1017. .border-primary.border-lighten-5 {
  1018. border: 1px solid #bac1e7 !important;
  1019. }
  1020. .border-top-primary.border-top-lighten-5 {
  1021. border-top: 1px solid #bac1e7 !important;
  1022. }
  1023. .border-bottom-primary.border-bottom-lighten-5 {
  1024. border-bottom: 1px solid #bac1e7 !important;
  1025. }
  1026. .border-left-primary.border-left-lighten-5 {
  1027. border-left: 1px solid #bac1e7 !important;
  1028. }
  1029. .border-right-primary.border-right-lighten-5 {
  1030. border-right: 1px solid #bac1e7 !important;
  1031. }
  1032. .overlay-primary.overlay-lighten-5 {
  1033. background: #bac1e7;
  1034. /* The Fallback */
  1035. background: rgba(186, 193, 231, 0.6);
  1036. }
  1037. .primary.lighten-4 {
  1038. color: #a8b0e0 !important;
  1039. }
  1040. .bg-primary.bg-lighten-4 {
  1041. background-color: #a8b0e0 !important;
  1042. }
  1043. .btn-primary.btn-lighten-4 {
  1044. border-color: #3e4eb1 !important;
  1045. background-color: #a8b0e0 !important;
  1046. }
  1047. .btn-primary.btn-lighten-4:hover {
  1048. border-color: #3e4eb1 !important;
  1049. background-color: #37469e !important;
  1050. }
  1051. .btn-primary.btn-lighten-4:focus,
  1052. .btn-primary.btn-lighten-4:active {
  1053. border-color: #37469e !important;
  1054. background-color: #313e8b !important;
  1055. }
  1056. .btn-outline-primary.btn-outline-lighten-4 {
  1057. border-color: #a8b0e0 !important;
  1058. color: #a8b0e0 !important;
  1059. }
  1060. .btn-outline-primary.btn-outline-lighten-4:hover {
  1061. background-color: #a8b0e0 !important;
  1062. }
  1063. input:focus ~ .bg-primary {
  1064. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #a8b0e0 !important;
  1065. }
  1066. .border-primary.border-lighten-4 {
  1067. border: 1px solid #a8b0e0 !important;
  1068. }
  1069. .border-top-primary.border-top-lighten-4 {
  1070. border-top: 1px solid #a8b0e0 !important;
  1071. }
  1072. .border-bottom-primary.border-bottom-lighten-4 {
  1073. border-bottom: 1px solid #a8b0e0 !important;
  1074. }
  1075. .border-left-primary.border-left-lighten-4 {
  1076. border-left: 1px solid #a8b0e0 !important;
  1077. }
  1078. .border-right-primary.border-right-lighten-4 {
  1079. border-right: 1px solid #a8b0e0 !important;
  1080. }
  1081. .overlay-primary.overlay-lighten-4 {
  1082. background: #a8b0e0;
  1083. /* The Fallback */
  1084. background: rgba(168, 176, 224, 0.6);
  1085. }
  1086. .primary.lighten-3 {
  1087. color: #959eda !important;
  1088. }
  1089. .bg-primary.bg-lighten-3 {
  1090. background-color: #959eda !important;
  1091. }
  1092. .btn-primary.btn-lighten-3 {
  1093. border-color: #3e4eb1 !important;
  1094. background-color: #959eda !important;
  1095. }
  1096. .btn-primary.btn-lighten-3:hover {
  1097. border-color: #3e4eb1 !important;
  1098. background-color: #37469e !important;
  1099. }
  1100. .btn-primary.btn-lighten-3:focus,
  1101. .btn-primary.btn-lighten-3:active {
  1102. border-color: #37469e !important;
  1103. background-color: #313e8b !important;
  1104. }
  1105. .btn-outline-primary.btn-outline-lighten-3 {
  1106. border-color: #959eda !important;
  1107. color: #959eda !important;
  1108. }
  1109. .btn-outline-primary.btn-outline-lighten-3:hover {
  1110. background-color: #959eda !important;
  1111. }
  1112. input:focus ~ .bg-primary {
  1113. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #959eda !important;
  1114. }
  1115. .border-primary.border-lighten-3 {
  1116. border: 1px solid #959eda !important;
  1117. }
  1118. .border-top-primary.border-top-lighten-3 {
  1119. border-top: 1px solid #959eda !important;
  1120. }
  1121. .border-bottom-primary.border-bottom-lighten-3 {
  1122. border-bottom: 1px solid #959eda !important;
  1123. }
  1124. .border-left-primary.border-left-lighten-3 {
  1125. border-left: 1px solid #959eda !important;
  1126. }
  1127. .border-right-primary.border-right-lighten-3 {
  1128. border-right: 1px solid #959eda !important;
  1129. }
  1130. .overlay-primary.overlay-lighten-3 {
  1131. background: #959eda;
  1132. /* The Fallback */
  1133. background: rgba(149, 158, 218, 0.6);
  1134. }
  1135. .primary.lighten-2 {
  1136. color: #828dd3 !important;
  1137. }
  1138. .bg-primary.bg-lighten-2 {
  1139. background-color: #828dd3 !important;
  1140. }
  1141. .btn-primary.btn-lighten-2 {
  1142. border-color: #3e4eb1 !important;
  1143. background-color: #828dd3 !important;
  1144. }
  1145. .btn-primary.btn-lighten-2:hover {
  1146. border-color: #3e4eb1 !important;
  1147. background-color: #37469e !important;
  1148. }
  1149. .btn-primary.btn-lighten-2:focus,
  1150. .btn-primary.btn-lighten-2:active {
  1151. border-color: #37469e !important;
  1152. background-color: #313e8b !important;
  1153. }
  1154. .btn-outline-primary.btn-outline-lighten-2 {
  1155. border-color: #828dd3 !important;
  1156. color: #828dd3 !important;
  1157. }
  1158. .btn-outline-primary.btn-outline-lighten-2:hover {
  1159. background-color: #828dd3 !important;
  1160. }
  1161. input:focus ~ .bg-primary {
  1162. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #828dd3 !important;
  1163. }
  1164. .border-primary.border-lighten-2 {
  1165. border: 1px solid #828dd3 !important;
  1166. }
  1167. .border-top-primary.border-top-lighten-2 {
  1168. border-top: 1px solid #828dd3 !important;
  1169. }
  1170. .border-bottom-primary.border-bottom-lighten-2 {
  1171. border-bottom: 1px solid #828dd3 !important;
  1172. }
  1173. .border-left-primary.border-left-lighten-2 {
  1174. border-left: 1px solid #828dd3 !important;
  1175. }
  1176. .border-right-primary.border-right-lighten-2 {
  1177. border-right: 1px solid #828dd3 !important;
  1178. }
  1179. .overlay-primary.overlay-lighten-2 {
  1180. background: #828dd3;
  1181. /* The Fallback */
  1182. background: rgba(130, 141, 211, 0.6);
  1183. }
  1184. .primary.lighten-1 {
  1185. color: #6f7ccd !important;
  1186. }
  1187. .bg-primary.bg-lighten-1 {
  1188. background-color: #6f7ccd !important;
  1189. }
  1190. .btn-primary.btn-lighten-1 {
  1191. border-color: #3e4eb1 !important;
  1192. background-color: #6f7ccd !important;
  1193. }
  1194. .btn-primary.btn-lighten-1:hover {
  1195. border-color: #3e4eb1 !important;
  1196. background-color: #37469e !important;
  1197. }
  1198. .btn-primary.btn-lighten-1:focus,
  1199. .btn-primary.btn-lighten-1:active {
  1200. border-color: #37469e !important;
  1201. background-color: #313e8b !important;
  1202. }
  1203. .btn-outline-primary.btn-outline-lighten-1 {
  1204. border-color: #6f7ccd !important;
  1205. color: #6f7ccd !important;
  1206. }
  1207. .btn-outline-primary.btn-outline-lighten-1:hover {
  1208. background-color: #6f7ccd !important;
  1209. }
  1210. input:focus ~ .bg-primary {
  1211. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #6f7ccd !important;
  1212. }
  1213. .border-primary.border-lighten-1 {
  1214. border: 1px solid #6f7ccd !important;
  1215. }
  1216. .border-top-primary.border-top-lighten-1 {
  1217. border-top: 1px solid #6f7ccd !important;
  1218. }
  1219. .border-bottom-primary.border-bottom-lighten-1 {
  1220. border-bottom: 1px solid #6f7ccd !important;
  1221. }
  1222. .border-left-primary.border-left-lighten-1 {
  1223. border-left: 1px solid #6f7ccd !important;
  1224. }
  1225. .border-right-primary.border-right-lighten-1 {
  1226. border-right: 1px solid #6f7ccd !important;
  1227. }
  1228. .overlay-primary.overlay-lighten-1 {
  1229. background: #6f7ccd;
  1230. /* The Fallback */
  1231. background: rgba(111, 124, 205, 0.6);
  1232. }
  1233. .primary {
  1234. color: #5c6bc6 !important;
  1235. }
  1236. .bg-primary {
  1237. background-color: #5c6bc6 !important;
  1238. }
  1239. .bg-primary .card-header,
  1240. .bg-primary .card-footer {
  1241. background-color: transparent;
  1242. }
  1243. .alert-primary {
  1244. background: rgba(92, 107, 198, 0.2) !important;
  1245. color: #5c6bc6 !important;
  1246. }
  1247. .alert-primary .alert-heading {
  1248. box-shadow: rgba(92, 107, 198, 0.4) 0px 6px 15px -7px;
  1249. }
  1250. .alert-primary .alert-link {
  1251. color: #495abf !important;
  1252. }
  1253. .bg-rgba-primary {
  1254. background: rgba(92, 107, 198, 0.15) !important;
  1255. }
  1256. .border-primary {
  1257. border: 1px solid #5c6bc6 !important;
  1258. }
  1259. .border-top-primary {
  1260. border-top: 1px solid #5c6bc6;
  1261. }
  1262. .border-bottom-primary {
  1263. border-bottom: 1px solid #5c6bc6;
  1264. }
  1265. .border-left-primary {
  1266. border-left: 1px solid #5c6bc6;
  1267. }
  1268. .border-right-primary {
  1269. border-right: 1px solid #5c6bc6;
  1270. }
  1271. .bg-primary.badge-glow,
  1272. .border-primary.badge-glow,
  1273. .badge-primary.badge-glow {
  1274. box-shadow: 0px 0px 10px #5c6bc6;
  1275. }
  1276. .badge.badge-primary {
  1277. background-color: #5c6bc6;
  1278. }
  1279. .overlay-primary {
  1280. background: #5c6bc6;
  1281. /* The Fallback */
  1282. background: rgba(92, 107, 198, 0.6);
  1283. }
  1284. .btn-primary {
  1285. border-color: #3e4eb1 !important;
  1286. background-color: #5c6bc6 !important;
  1287. color: #fff;
  1288. }
  1289. .btn-primary:hover {
  1290. border-color: #495abf !important;
  1291. color: #fff !important;
  1292. box-shadow: 0 8px 25px -8px #5c6bc6;
  1293. }
  1294. .btn-primary:focus,
  1295. .btn-primary:active {
  1296. color: #fff !important;
  1297. }
  1298. .btn-flat-primary {
  1299. background-color: transparent;
  1300. color: #5c6bc6;
  1301. }
  1302. .btn-flat-primary:hover {
  1303. color: #5c6bc6;
  1304. background-color: rgba(92, 107, 198, 0.1);
  1305. }
  1306. .btn-flat-primary:active,
  1307. .btn-flat-primary:focus {
  1308. background-color: #5c6bc6;
  1309. color: #fff !important;
  1310. }
  1311. .btn-relief-primary {
  1312. background-color: #5c6bc6;
  1313. box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  1314. color: #fff;
  1315. }
  1316. .btn-relief-primary:hover {
  1317. color: #fff;
  1318. }
  1319. .btn-relief-primary:active,
  1320. .btn-relief-primary:focus {
  1321. outline: none;
  1322. transform: translateY(3px);
  1323. }
  1324. .btn-outline-primary {
  1325. border: 1px solid #5c6bc6;
  1326. background-color: transparent;
  1327. color: #5c6bc6;
  1328. }
  1329. .btn-outline-primary:hover {
  1330. background-color: rgba(92, 107, 198, 0.08);
  1331. color: #5c6bc6;
  1332. }
  1333. .btn-outline-primary:active {
  1334. color: #fff !important;
  1335. }
  1336. .btn-primary ~ .dropdown-menu .dropdown-item.active,
  1337. .btn-outline-primary ~ .dropdown-menu .dropdown-item.active,
  1338. .btn-flat-primary ~ .dropdown-menu .dropdown-item.active {
  1339. background-color: #5c6bc6;
  1340. color: #fff;
  1341. }
  1342. .btn-primary ~ .dropdown-menu .dropdown-item.active:hover,
  1343. .btn-outline-primary ~ .dropdown-menu .dropdown-item.active:hover,
  1344. .btn-flat-primary ~ .dropdown-menu .dropdown-item.active:hover {
  1345. color: #fff;
  1346. }
  1347. .btn-primary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  1348. .btn-outline-primary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  1349. .btn-flat-primary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover {
  1350. color: #5c6bc6;
  1351. }
  1352. .dropdown.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:hover i,
  1353. .dropdown.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:hover i,
  1354. .dropdown.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:hover i,
  1355. .dropup.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:hover i,
  1356. .dropup.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:hover i,
  1357. .dropup.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:hover i,
  1358. .dropright.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:hover i,
  1359. .dropright.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:hover i,
  1360. .dropright.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:hover i,
  1361. .dropleft.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:hover i,
  1362. .dropleft.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:hover i,
  1363. .dropleft.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:hover i {
  1364. color: #5c6bc6;
  1365. }
  1366. .dropdown.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:active i,
  1367. .dropdown.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:active i,
  1368. .dropdown.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:active i,
  1369. .dropup.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:active i,
  1370. .dropup.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:active i,
  1371. .dropup.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:active i,
  1372. .dropright.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:active i,
  1373. .dropright.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:active i,
  1374. .dropright.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:active i,
  1375. .dropleft.dropdown-icon-wrapper .btn-primary ~ .dropdown-menu .dropdown-item:active i,
  1376. .dropleft.dropdown-icon-wrapper .btn-outline-primary ~ .dropdown-menu .dropdown-item:active i,
  1377. .dropleft.dropdown-icon-wrapper .btn-flat-primary ~ .dropdown-menu .dropdown-item:active i {
  1378. color: #fff;
  1379. }
  1380. .bullet.bullet-primary {
  1381. background-color: #5c6bc6;
  1382. }
  1383. .pagination-primary .page-item.active .page-link {
  1384. background: #5c6bc6;
  1385. color: #fff;
  1386. }
  1387. .pagination-primary .page-item.active .page-link:hover {
  1388. color: #fff;
  1389. }
  1390. .pagination-primary .page-item .page-link:hover {
  1391. color: #5c6bc6;
  1392. }
  1393. .pagination-primary .page-item.prev-item .page-link:hover,
  1394. .pagination-primary .page-item.next-item .page-link:hover {
  1395. background: #5c6bc6;
  1396. color: #fff;
  1397. }
  1398. .nav-pill-primary .nav-item .nav-link.active {
  1399. color: #fff;
  1400. background-color: #5c6bc6 !important;
  1401. }
  1402. .progress-bar-primary {
  1403. background-color: rgba(92, 107, 198, 0.1);
  1404. }
  1405. .progress-bar-primary .progress-bar {
  1406. background-color: #5c6bc6;
  1407. }
  1408. .chip-primary {
  1409. background-color: #5c6bc6 !important;
  1410. }
  1411. .chip-primary .chip-body {
  1412. color: #fff !important;
  1413. }
  1414. .divider.divider-primary .divider-text:before,
  1415. .divider.divider-primary .divider-text:after {
  1416. border-color: #5c6bc6 !important;
  1417. }
  1418. input[type=checkbox].bg-primary + .custom-control-label:before,
  1419. input[type=radio].bg-primary + .custom-control-label:before {
  1420. background-color: #5c6bc6 !important;
  1421. }
  1422. input:focus ~ .bg-primary {
  1423. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #5c6bc6 !important;
  1424. }
  1425. .vs-checkbox-primary input:checked ~ .vs-checkbox {
  1426. border-color: #5c6bc6 !important;
  1427. }
  1428. .vs-checkbox-primary input:checked ~ .vs-checkbox .vs-checkbox--check {
  1429. background-color: #5c6bc6 !important;
  1430. }
  1431. .vs-checkbox-primary input:active:checked + .vs-checkbox .vs-checkbox--check {
  1432. background-color: #5c6bc6 !important;
  1433. }
  1434. .custom-switch-primary .custom-control-input:checked ~ .custom-control-label::before {
  1435. background-color: #5c6bc6 !important;
  1436. color: #fff;
  1437. transition: all 0.2s ease-out;
  1438. }
  1439. .vs-radio-primary input:checked ~ .vs-radio .vs-radio--circle {
  1440. background: #5c6bc6 !important;
  1441. box-shadow: 0 3px 12px 0 rgba(92, 107, 198, 0.4) !important;
  1442. }
  1443. .primary.darken-1 {
  1444. color: #495abf !important;
  1445. }
  1446. .bg-primary.bg-darken-1 {
  1447. background-color: #495abf !important;
  1448. }
  1449. .btn-primary.btn-darken-1 {
  1450. border-color: #3e4eb1 !important;
  1451. background-color: #495abf !important;
  1452. }
  1453. .btn-primary.btn-darken-1:hover {
  1454. border-color: #3e4eb1 !important;
  1455. background-color: #37469e !important;
  1456. }
  1457. .btn-primary.btn-darken-1:focus,
  1458. .btn-primary.btn-darken-1:active {
  1459. border-color: #37469e !important;
  1460. background-color: #313e8b !important;
  1461. }
  1462. .btn-outline-primary.btn-outline-darken-1 {
  1463. border-color: #495abf !important;
  1464. color: #495abf !important;
  1465. }
  1466. .btn-outline-primary.btn-outline-darken-1:hover {
  1467. background-color: #495abf !important;
  1468. }
  1469. input:focus ~ .bg-primary {
  1470. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #495abf !important;
  1471. }
  1472. .border-primary.border-darken-1 {
  1473. border: 1px solid #495abf !important;
  1474. }
  1475. .border-top-primary.border-top-darken-1 {
  1476. border-top: 1px solid #495abf !important;
  1477. }
  1478. .border-bottom-primary.border-bottom-darken-1 {
  1479. border-bottom: 1px solid #495abf !important;
  1480. }
  1481. .border-left-primary.border-left-darken-1 {
  1482. border-left: 1px solid #495abf !important;
  1483. }
  1484. .border-right-primary.border-right-darken-1 {
  1485. border-right: 1px solid #495abf !important;
  1486. }
  1487. .overlay-primary.overlay-darken-1 {
  1488. background: #495abf;
  1489. /* The Fallback */
  1490. background: rgba(73, 90, 191, 0.6);
  1491. }
  1492. .primary.darken-2 {
  1493. color: #3e4eb1 !important;
  1494. }
  1495. .bg-primary.bg-darken-2 {
  1496. background-color: #3e4eb1 !important;
  1497. }
  1498. .btn-primary.btn-darken-2 {
  1499. border-color: #3e4eb1 !important;
  1500. background-color: #3e4eb1 !important;
  1501. }
  1502. .btn-primary.btn-darken-2:hover {
  1503. border-color: #3e4eb1 !important;
  1504. background-color: #37469e !important;
  1505. }
  1506. .btn-primary.btn-darken-2:focus,
  1507. .btn-primary.btn-darken-2:active {
  1508. border-color: #37469e !important;
  1509. background-color: #313e8b !important;
  1510. }
  1511. .btn-outline-primary.btn-outline-darken-2 {
  1512. border-color: #3e4eb1 !important;
  1513. color: #3e4eb1 !important;
  1514. }
  1515. .btn-outline-primary.btn-outline-darken-2:hover {
  1516. background-color: #3e4eb1 !important;
  1517. }
  1518. input:focus ~ .bg-primary {
  1519. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #3e4eb1 !important;
  1520. }
  1521. .border-primary.border-darken-2 {
  1522. border: 1px solid #3e4eb1 !important;
  1523. }
  1524. .border-top-primary.border-top-darken-2 {
  1525. border-top: 1px solid #3e4eb1 !important;
  1526. }
  1527. .border-bottom-primary.border-bottom-darken-2 {
  1528. border-bottom: 1px solid #3e4eb1 !important;
  1529. }
  1530. .border-left-primary.border-left-darken-2 {
  1531. border-left: 1px solid #3e4eb1 !important;
  1532. }
  1533. .border-right-primary.border-right-darken-2 {
  1534. border-right: 1px solid #3e4eb1 !important;
  1535. }
  1536. .overlay-primary.overlay-darken-2 {
  1537. background: #3e4eb1;
  1538. /* The Fallback */
  1539. background: rgba(62, 78, 177, 0.6);
  1540. }
  1541. .primary.darken-3 {
  1542. color: #37469e !important;
  1543. }
  1544. .bg-primary.bg-darken-3 {
  1545. background-color: #37469e !important;
  1546. }
  1547. .btn-primary.btn-darken-3 {
  1548. border-color: #3e4eb1 !important;
  1549. background-color: #37469e !important;
  1550. }
  1551. .btn-primary.btn-darken-3:hover {
  1552. border-color: #3e4eb1 !important;
  1553. background-color: #37469e !important;
  1554. }
  1555. .btn-primary.btn-darken-3:focus,
  1556. .btn-primary.btn-darken-3:active {
  1557. border-color: #37469e !important;
  1558. background-color: #313e8b !important;
  1559. }
  1560. .btn-outline-primary.btn-outline-darken-3 {
  1561. border-color: #37469e !important;
  1562. color: #37469e !important;
  1563. }
  1564. .btn-outline-primary.btn-outline-darken-3:hover {
  1565. background-color: #37469e !important;
  1566. }
  1567. input:focus ~ .bg-primary {
  1568. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #37469e !important;
  1569. }
  1570. .border-primary.border-darken-3 {
  1571. border: 1px solid #37469e !important;
  1572. }
  1573. .border-top-primary.border-top-darken-3 {
  1574. border-top: 1px solid #37469e !important;
  1575. }
  1576. .border-bottom-primary.border-bottom-darken-3 {
  1577. border-bottom: 1px solid #37469e !important;
  1578. }
  1579. .border-left-primary.border-left-darken-3 {
  1580. border-left: 1px solid #37469e !important;
  1581. }
  1582. .border-right-primary.border-right-darken-3 {
  1583. border-right: 1px solid #37469e !important;
  1584. }
  1585. .overlay-primary.overlay-darken-3 {
  1586. background: #37469e;
  1587. /* The Fallback */
  1588. background: rgba(55, 70, 158, 0.6);
  1589. }
  1590. .primary.darken-4 {
  1591. color: #313e8b !important;
  1592. }
  1593. .bg-primary.bg-darken-4 {
  1594. background-color: #313e8b !important;
  1595. }
  1596. .btn-primary.btn-darken-4 {
  1597. border-color: #3e4eb1 !important;
  1598. background-color: #313e8b !important;
  1599. }
  1600. .btn-primary.btn-darken-4:hover {
  1601. border-color: #3e4eb1 !important;
  1602. background-color: #37469e !important;
  1603. }
  1604. .btn-primary.btn-darken-4:focus,
  1605. .btn-primary.btn-darken-4:active {
  1606. border-color: #37469e !important;
  1607. background-color: #313e8b !important;
  1608. }
  1609. .btn-outline-primary.btn-outline-darken-4 {
  1610. border-color: #313e8b !important;
  1611. color: #313e8b !important;
  1612. }
  1613. .btn-outline-primary.btn-outline-darken-4:hover {
  1614. background-color: #313e8b !important;
  1615. }
  1616. input:focus ~ .bg-primary {
  1617. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #313e8b !important;
  1618. }
  1619. .border-primary.border-darken-4 {
  1620. border: 1px solid #313e8b !important;
  1621. }
  1622. .border-top-primary.border-top-darken-4 {
  1623. border-top: 1px solid #313e8b !important;
  1624. }
  1625. .border-bottom-primary.border-bottom-darken-4 {
  1626. border-bottom: 1px solid #313e8b !important;
  1627. }
  1628. .border-left-primary.border-left-darken-4 {
  1629. border-left: 1px solid #313e8b !important;
  1630. }
  1631. .border-right-primary.border-right-darken-4 {
  1632. border-right: 1px solid #313e8b !important;
  1633. }
  1634. .overlay-primary.overlay-darken-4 {
  1635. background: #313e8b;
  1636. /* The Fallback */
  1637. background: rgba(49, 62, 139, 0.6);
  1638. }
  1639. .primary.accent-1 {
  1640. color: #BDFDFF !important;
  1641. }
  1642. .bg-primary.bg-accent-1 {
  1643. background-color: #BDFDFF !important;
  1644. }
  1645. .btn-primary.btn-accent-1 {
  1646. border-color: #3e4eb1 !important;
  1647. background-color: #BDFDFF !important;
  1648. }
  1649. .btn-primary.btn-accent-1:hover {
  1650. border-color: #3e4eb1 !important;
  1651. background-color: #37469e !important;
  1652. }
  1653. .btn-primary.btn-accent-1:focus,
  1654. .btn-primary.btn-accent-1:active {
  1655. border-color: #37469e !important;
  1656. background-color: #313e8b !important;
  1657. }
  1658. .btn-outline-primary.btn-outline-accent-1 {
  1659. border-color: #BDFDFF !important;
  1660. color: #BDFDFF !important;
  1661. }
  1662. .btn-outline-primary.btn-outline-accent-1:hover {
  1663. background-color: #BDFDFF !important;
  1664. }
  1665. input:focus ~ .bg-primary {
  1666. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #BDFDFF !important;
  1667. }
  1668. .border-primary.border-accent-1 {
  1669. border: 1px solid #BDFDFF !important;
  1670. }
  1671. .border-top-primary.border-top-accent-1 {
  1672. border-top: 1px solid #BDFDFF !important;
  1673. }
  1674. .border-bottom-primary.border-bottom-accent-1 {
  1675. border-bottom: 1px solid #BDFDFF !important;
  1676. }
  1677. .border-left-primary.border-left-accent-1 {
  1678. border-left: 1px solid #BDFDFF !important;
  1679. }
  1680. .border-right-primary.border-right-accent-1 {
  1681. border-right: 1px solid #BDFDFF !important;
  1682. }
  1683. .overlay-primary.overlay-accent-1 {
  1684. background: #BDFDFF;
  1685. /* The Fallback */
  1686. background: rgba(189, 253, 255, 0.6);
  1687. }
  1688. .primary.accent-2 {
  1689. color: #8AFBFF !important;
  1690. }
  1691. .bg-primary.bg-accent-2 {
  1692. background-color: #8AFBFF !important;
  1693. }
  1694. .btn-primary.btn-accent-2 {
  1695. border-color: #3e4eb1 !important;
  1696. background-color: #8AFBFF !important;
  1697. }
  1698. .btn-primary.btn-accent-2:hover {
  1699. border-color: #3e4eb1 !important;
  1700. background-color: #37469e !important;
  1701. }
  1702. .btn-primary.btn-accent-2:focus,
  1703. .btn-primary.btn-accent-2:active {
  1704. border-color: #37469e !important;
  1705. background-color: #313e8b !important;
  1706. }
  1707. .btn-outline-primary.btn-outline-accent-2 {
  1708. border-color: #8AFBFF !important;
  1709. color: #8AFBFF !important;
  1710. }
  1711. .btn-outline-primary.btn-outline-accent-2:hover {
  1712. background-color: #8AFBFF !important;
  1713. }
  1714. input:focus ~ .bg-primary {
  1715. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #8AFBFF !important;
  1716. }
  1717. .border-primary.border-accent-2 {
  1718. border: 1px solid #8AFBFF !important;
  1719. }
  1720. .border-top-primary.border-top-accent-2 {
  1721. border-top: 1px solid #8AFBFF !important;
  1722. }
  1723. .border-bottom-primary.border-bottom-accent-2 {
  1724. border-bottom: 1px solid #8AFBFF !important;
  1725. }
  1726. .border-left-primary.border-left-accent-2 {
  1727. border-left: 1px solid #8AFBFF !important;
  1728. }
  1729. .border-right-primary.border-right-accent-2 {
  1730. border-right: 1px solid #8AFBFF !important;
  1731. }
  1732. .overlay-primary.overlay-accent-2 {
  1733. background: #8AFBFF;
  1734. /* The Fallback */
  1735. background: rgba(138, 251, 255, 0.6);
  1736. }
  1737. .primary.accent-3 {
  1738. color: #57FAFF !important;
  1739. }
  1740. .bg-primary.bg-accent-3 {
  1741. background-color: #57FAFF !important;
  1742. }
  1743. .btn-primary.btn-accent-3 {
  1744. border-color: #3e4eb1 !important;
  1745. background-color: #57FAFF !important;
  1746. }
  1747. .btn-primary.btn-accent-3:hover {
  1748. border-color: #3e4eb1 !important;
  1749. background-color: #37469e !important;
  1750. }
  1751. .btn-primary.btn-accent-3:focus,
  1752. .btn-primary.btn-accent-3:active {
  1753. border-color: #37469e !important;
  1754. background-color: #313e8b !important;
  1755. }
  1756. .btn-outline-primary.btn-outline-accent-3 {
  1757. border-color: #57FAFF !important;
  1758. color: #57FAFF !important;
  1759. }
  1760. .btn-outline-primary.btn-outline-accent-3:hover {
  1761. background-color: #57FAFF !important;
  1762. }
  1763. input:focus ~ .bg-primary {
  1764. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #57FAFF !important;
  1765. }
  1766. .border-primary.border-accent-3 {
  1767. border: 1px solid #57FAFF !important;
  1768. }
  1769. .border-top-primary.border-top-accent-3 {
  1770. border-top: 1px solid #57FAFF !important;
  1771. }
  1772. .border-bottom-primary.border-bottom-accent-3 {
  1773. border-bottom: 1px solid #57FAFF !important;
  1774. }
  1775. .border-left-primary.border-left-accent-3 {
  1776. border-left: 1px solid #57FAFF !important;
  1777. }
  1778. .border-right-primary.border-right-accent-3 {
  1779. border-right: 1px solid #57FAFF !important;
  1780. }
  1781. .overlay-primary.overlay-accent-3 {
  1782. background: #57FAFF;
  1783. /* The Fallback */
  1784. background: rgba(87, 250, 255, 0.6);
  1785. }
  1786. .primary.accent-4 {
  1787. color: #3DF9FF !important;
  1788. }
  1789. .bg-primary.bg-accent-4 {
  1790. background-color: #3DF9FF !important;
  1791. }
  1792. .btn-primary.btn-accent-4 {
  1793. border-color: #3e4eb1 !important;
  1794. background-color: #3DF9FF !important;
  1795. }
  1796. .btn-primary.btn-accent-4:hover {
  1797. border-color: #3e4eb1 !important;
  1798. background-color: #37469e !important;
  1799. }
  1800. .btn-primary.btn-accent-4:focus,
  1801. .btn-primary.btn-accent-4:active {
  1802. border-color: #37469e !important;
  1803. background-color: #313e8b !important;
  1804. }
  1805. .btn-outline-primary.btn-outline-accent-4 {
  1806. border-color: #3DF9FF !important;
  1807. color: #3DF9FF !important;
  1808. }
  1809. .btn-outline-primary.btn-outline-accent-4:hover {
  1810. background-color: #3DF9FF !important;
  1811. }
  1812. input:focus ~ .bg-primary {
  1813. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #3DF9FF !important;
  1814. }
  1815. .border-primary.border-accent-4 {
  1816. border: 1px solid #3DF9FF !important;
  1817. }
  1818. .border-top-primary.border-top-accent-4 {
  1819. border-top: 1px solid #3DF9FF !important;
  1820. }
  1821. .border-bottom-primary.border-bottom-accent-4 {
  1822. border-bottom: 1px solid #3DF9FF !important;
  1823. }
  1824. .border-left-primary.border-left-accent-4 {
  1825. border-left: 1px solid #3DF9FF !important;
  1826. }
  1827. .border-right-primary.border-right-accent-4 {
  1828. border-right: 1px solid #3DF9FF !important;
  1829. }
  1830. .overlay-primary.overlay-accent-4 {
  1831. background: #3DF9FF;
  1832. /* The Fallback */
  1833. background: rgba(61, 249, 255, 0.6);
  1834. }
  1835. .primary.gradient-bg {
  1836. color: #640064 !important;
  1837. }
  1838. .bg-primary.bg-gradient-bg {
  1839. background-color: #640064 !important;
  1840. }
  1841. .btn-primary.btn-gradient-bg {
  1842. border-color: #3e4eb1 !important;
  1843. background-color: #640064 !important;
  1844. }
  1845. .btn-primary.btn-gradient-bg:hover {
  1846. border-color: #3e4eb1 !important;
  1847. background-color: #37469e !important;
  1848. }
  1849. .btn-primary.btn-gradient-bg:focus,
  1850. .btn-primary.btn-gradient-bg:active {
  1851. border-color: #37469e !important;
  1852. background-color: #313e8b !important;
  1853. }
  1854. .btn-outline-primary.btn-outline-gradient-bg {
  1855. border-color: #640064 !important;
  1856. color: #640064 !important;
  1857. }
  1858. .btn-outline-primary.btn-outline-gradient-bg:hover {
  1859. background-color: #640064 !important;
  1860. }
  1861. input:focus ~ .bg-primary {
  1862. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important;
  1863. }
  1864. .border-primary.border-gradient-bg {
  1865. border: 1px solid #640064 !important;
  1866. }
  1867. .border-top-primary.border-top-gradient-bg {
  1868. border-top: 1px solid #640064 !important;
  1869. }
  1870. .border-bottom-primary.border-bottom-gradient-bg {
  1871. border-bottom: 1px solid #640064 !important;
  1872. }
  1873. .border-left-primary.border-left-gradient-bg {
  1874. border-left: 1px solid #640064 !important;
  1875. }
  1876. .border-right-primary.border-right-gradient-bg {
  1877. border-right: 1px solid #640064 !important;
  1878. }
  1879. .overlay-primary.overlay-gradient-bg {
  1880. background: #640064;
  1881. /* The Fallback */
  1882. background: rgba(100, 0, 100, 0.6);
  1883. }
  1884. .secondary.gradient-light {
  1885. color: #dcdeec !important;
  1886. }
  1887. .bg-secondary.bg-gradient-light {
  1888. background-color: #dcdeec !important;
  1889. }
  1890. .btn-secondary.btn-gradient-light {
  1891. border-color: #9aa9b7 !important;
  1892. background-color: #dcdeec !important;
  1893. }
  1894. .btn-secondary.btn-gradient-light:hover {
  1895. border-color: #9aa9b7 !important;
  1896. background-color: #8b9cac !important;
  1897. }
  1898. .btn-secondary.btn-gradient-light:focus,
  1899. .btn-secondary.btn-gradient-light:active {
  1900. border-color: #8b9cac !important;
  1901. background-color: #7d8fa1 !important;
  1902. }
  1903. .btn-outline-secondary.btn-outline-gradient-light {
  1904. border-color: #dcdeec !important;
  1905. color: #dcdeec !important;
  1906. }
  1907. .btn-outline-secondary.btn-outline-gradient-light:hover {
  1908. background-color: #dcdeec !important;
  1909. }
  1910. input:focus ~ .bg-secondary {
  1911. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #dcdeec !important;
  1912. }
  1913. .border-secondary.border-gradient-light {
  1914. border: 1px solid #dcdeec !important;
  1915. }
  1916. .border-top-secondary.border-top-gradient-light {
  1917. border-top: 1px solid #dcdeec !important;
  1918. }
  1919. .border-bottom-secondary.border-bottom-gradient-light {
  1920. border-bottom: 1px solid #dcdeec !important;
  1921. }
  1922. .border-left-secondary.border-left-gradient-light {
  1923. border-left: 1px solid #dcdeec !important;
  1924. }
  1925. .border-right-secondary.border-right-gradient-light {
  1926. border-right: 1px solid #dcdeec !important;
  1927. }
  1928. .overlay-secondary.overlay-gradient-light {
  1929. background: #dcdeec;
  1930. /* The Fallback */
  1931. background: rgba(220, 222, 236, 0.6);
  1932. }
  1933. .secondary.lighten-5 {
  1934. color: white !important;
  1935. }
  1936. .bg-secondary.bg-lighten-5 {
  1937. background-color: white !important;
  1938. }
  1939. .btn-secondary.btn-lighten-5 {
  1940. border-color: #9aa9b7 !important;
  1941. background-color: white !important;
  1942. }
  1943. .btn-secondary.btn-lighten-5:hover {
  1944. border-color: #9aa9b7 !important;
  1945. background-color: #8b9cac !important;
  1946. }
  1947. .btn-secondary.btn-lighten-5:focus,
  1948. .btn-secondary.btn-lighten-5:active {
  1949. border-color: #8b9cac !important;
  1950. background-color: #7d8fa1 !important;
  1951. }
  1952. .btn-outline-secondary.btn-outline-lighten-5 {
  1953. border-color: white !important;
  1954. color: white !important;
  1955. }
  1956. .btn-outline-secondary.btn-outline-lighten-5:hover {
  1957. background-color: white !important;
  1958. }
  1959. input:focus ~ .bg-secondary {
  1960. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem white !important;
  1961. }
  1962. .border-secondary.border-lighten-5 {
  1963. border: 1px solid white !important;
  1964. }
  1965. .border-top-secondary.border-top-lighten-5 {
  1966. border-top: 1px solid white !important;
  1967. }
  1968. .border-bottom-secondary.border-bottom-lighten-5 {
  1969. border-bottom: 1px solid white !important;
  1970. }
  1971. .border-left-secondary.border-left-lighten-5 {
  1972. border-left: 1px solid white !important;
  1973. }
  1974. .border-right-secondary.border-right-lighten-5 {
  1975. border-right: 1px solid white !important;
  1976. }
  1977. .overlay-secondary.overlay-lighten-5 {
  1978. background: white;
  1979. /* The Fallback */
  1980. background: rgba(255, 255, 255, 0.6);
  1981. }
  1982. .secondary.lighten-4 {
  1983. color: #f3f5f7 !important;
  1984. }
  1985. .bg-secondary.bg-lighten-4 {
  1986. background-color: #f3f5f7 !important;
  1987. }
  1988. .btn-secondary.btn-lighten-4 {
  1989. border-color: #9aa9b7 !important;
  1990. background-color: #f3f5f7 !important;
  1991. }
  1992. .btn-secondary.btn-lighten-4:hover {
  1993. border-color: #9aa9b7 !important;
  1994. background-color: #8b9cac !important;
  1995. }
  1996. .btn-secondary.btn-lighten-4:focus,
  1997. .btn-secondary.btn-lighten-4:active {
  1998. border-color: #8b9cac !important;
  1999. background-color: #7d8fa1 !important;
  2000. }
  2001. .btn-outline-secondary.btn-outline-lighten-4 {
  2002. border-color: #f3f5f7 !important;
  2003. color: #f3f5f7 !important;
  2004. }
  2005. .btn-outline-secondary.btn-outline-lighten-4:hover {
  2006. background-color: #f3f5f7 !important;
  2007. }
  2008. input:focus ~ .bg-secondary {
  2009. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f3f5f7 !important;
  2010. }
  2011. .border-secondary.border-lighten-4 {
  2012. border: 1px solid #f3f5f7 !important;
  2013. }
  2014. .border-top-secondary.border-top-lighten-4 {
  2015. border-top: 1px solid #f3f5f7 !important;
  2016. }
  2017. .border-bottom-secondary.border-bottom-lighten-4 {
  2018. border-bottom: 1px solid #f3f5f7 !important;
  2019. }
  2020. .border-left-secondary.border-left-lighten-4 {
  2021. border-left: 1px solid #f3f5f7 !important;
  2022. }
  2023. .border-right-secondary.border-right-lighten-4 {
  2024. border-right: 1px solid #f3f5f7 !important;
  2025. }
  2026. .overlay-secondary.overlay-lighten-4 {
  2027. background: #f3f5f7;
  2028. /* The Fallback */
  2029. background: rgba(243, 245, 247, 0.6);
  2030. }
  2031. .secondary.lighten-3 {
  2032. color: #e5e8ec !important;
  2033. }
  2034. .bg-secondary.bg-lighten-3 {
  2035. background-color: #e5e8ec !important;
  2036. }
  2037. .btn-secondary.btn-lighten-3 {
  2038. border-color: #9aa9b7 !important;
  2039. background-color: #e5e8ec !important;
  2040. }
  2041. .btn-secondary.btn-lighten-3:hover {
  2042. border-color: #9aa9b7 !important;
  2043. background-color: #8b9cac !important;
  2044. }
  2045. .btn-secondary.btn-lighten-3:focus,
  2046. .btn-secondary.btn-lighten-3:active {
  2047. border-color: #8b9cac !important;
  2048. background-color: #7d8fa1 !important;
  2049. }
  2050. .btn-outline-secondary.btn-outline-lighten-3 {
  2051. border-color: #e5e8ec !important;
  2052. color: #e5e8ec !important;
  2053. }
  2054. .btn-outline-secondary.btn-outline-lighten-3:hover {
  2055. background-color: #e5e8ec !important;
  2056. }
  2057. input:focus ~ .bg-secondary {
  2058. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #e5e8ec !important;
  2059. }
  2060. .border-secondary.border-lighten-3 {
  2061. border: 1px solid #e5e8ec !important;
  2062. }
  2063. .border-top-secondary.border-top-lighten-3 {
  2064. border-top: 1px solid #e5e8ec !important;
  2065. }
  2066. .border-bottom-secondary.border-bottom-lighten-3 {
  2067. border-bottom: 1px solid #e5e8ec !important;
  2068. }
  2069. .border-left-secondary.border-left-lighten-3 {
  2070. border-left: 1px solid #e5e8ec !important;
  2071. }
  2072. .border-right-secondary.border-right-lighten-3 {
  2073. border-right: 1px solid #e5e8ec !important;
  2074. }
  2075. .overlay-secondary.overlay-lighten-3 {
  2076. background: #e5e8ec;
  2077. /* The Fallback */
  2078. background: rgba(229, 232, 236, 0.6);
  2079. }
  2080. .secondary.lighten-2 {
  2081. color: #d6dce1 !important;
  2082. }
  2083. .bg-secondary.bg-lighten-2 {
  2084. background-color: #d6dce1 !important;
  2085. }
  2086. .btn-secondary.btn-lighten-2 {
  2087. border-color: #9aa9b7 !important;
  2088. background-color: #d6dce1 !important;
  2089. }
  2090. .btn-secondary.btn-lighten-2:hover {
  2091. border-color: #9aa9b7 !important;
  2092. background-color: #8b9cac !important;
  2093. }
  2094. .btn-secondary.btn-lighten-2:focus,
  2095. .btn-secondary.btn-lighten-2:active {
  2096. border-color: #8b9cac !important;
  2097. background-color: #7d8fa1 !important;
  2098. }
  2099. .btn-outline-secondary.btn-outline-lighten-2 {
  2100. border-color: #d6dce1 !important;
  2101. color: #d6dce1 !important;
  2102. }
  2103. .btn-outline-secondary.btn-outline-lighten-2:hover {
  2104. background-color: #d6dce1 !important;
  2105. }
  2106. input:focus ~ .bg-secondary {
  2107. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #d6dce1 !important;
  2108. }
  2109. .border-secondary.border-lighten-2 {
  2110. border: 1px solid #d6dce1 !important;
  2111. }
  2112. .border-top-secondary.border-top-lighten-2 {
  2113. border-top: 1px solid #d6dce1 !important;
  2114. }
  2115. .border-bottom-secondary.border-bottom-lighten-2 {
  2116. border-bottom: 1px solid #d6dce1 !important;
  2117. }
  2118. .border-left-secondary.border-left-lighten-2 {
  2119. border-left: 1px solid #d6dce1 !important;
  2120. }
  2121. .border-right-secondary.border-right-lighten-2 {
  2122. border-right: 1px solid #d6dce1 !important;
  2123. }
  2124. .overlay-secondary.overlay-lighten-2 {
  2125. background: #d6dce1;
  2126. /* The Fallback */
  2127. background: rgba(214, 220, 225, 0.6);
  2128. }
  2129. .secondary.lighten-1 {
  2130. color: #c7cfd7 !important;
  2131. }
  2132. .bg-secondary.bg-lighten-1 {
  2133. background-color: #c7cfd7 !important;
  2134. }
  2135. .btn-secondary.btn-lighten-1 {
  2136. border-color: #9aa9b7 !important;
  2137. background-color: #c7cfd7 !important;
  2138. }
  2139. .btn-secondary.btn-lighten-1:hover {
  2140. border-color: #9aa9b7 !important;
  2141. background-color: #8b9cac !important;
  2142. }
  2143. .btn-secondary.btn-lighten-1:focus,
  2144. .btn-secondary.btn-lighten-1:active {
  2145. border-color: #8b9cac !important;
  2146. background-color: #7d8fa1 !important;
  2147. }
  2148. .btn-outline-secondary.btn-outline-lighten-1 {
  2149. border-color: #c7cfd7 !important;
  2150. color: #c7cfd7 !important;
  2151. }
  2152. .btn-outline-secondary.btn-outline-lighten-1:hover {
  2153. background-color: #c7cfd7 !important;
  2154. }
  2155. input:focus ~ .bg-secondary {
  2156. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #c7cfd7 !important;
  2157. }
  2158. .border-secondary.border-lighten-1 {
  2159. border: 1px solid #c7cfd7 !important;
  2160. }
  2161. .border-top-secondary.border-top-lighten-1 {
  2162. border-top: 1px solid #c7cfd7 !important;
  2163. }
  2164. .border-bottom-secondary.border-bottom-lighten-1 {
  2165. border-bottom: 1px solid #c7cfd7 !important;
  2166. }
  2167. .border-left-secondary.border-left-lighten-1 {
  2168. border-left: 1px solid #c7cfd7 !important;
  2169. }
  2170. .border-right-secondary.border-right-lighten-1 {
  2171. border-right: 1px solid #c7cfd7 !important;
  2172. }
  2173. .overlay-secondary.overlay-lighten-1 {
  2174. background: #c7cfd7;
  2175. /* The Fallback */
  2176. background: rgba(199, 207, 215, 0.6);
  2177. }
  2178. .secondary {
  2179. color: #b8c2cc !important;
  2180. }
  2181. .bg-secondary {
  2182. background-color: #b8c2cc !important;
  2183. }
  2184. .bg-secondary .card-header,
  2185. .bg-secondary .card-footer {
  2186. background-color: transparent;
  2187. }
  2188. .alert-secondary {
  2189. background: rgba(184, 194, 204, 0.2) !important;
  2190. color: #b8c2cc !important;
  2191. }
  2192. .alert-secondary .alert-heading {
  2193. box-shadow: rgba(184, 194, 204, 0.4) 0px 6px 15px -7px;
  2194. }
  2195. .alert-secondary .alert-link {
  2196. color: #a9b5c1 !important;
  2197. }
  2198. .bg-rgba-secondary {
  2199. background: rgba(184, 194, 204, 0.15) !important;
  2200. }
  2201. .border-secondary {
  2202. border: 1px solid #b8c2cc !important;
  2203. }
  2204. .border-top-secondary {
  2205. border-top: 1px solid #b8c2cc;
  2206. }
  2207. .border-bottom-secondary {
  2208. border-bottom: 1px solid #b8c2cc;
  2209. }
  2210. .border-left-secondary {
  2211. border-left: 1px solid #b8c2cc;
  2212. }
  2213. .border-right-secondary {
  2214. border-right: 1px solid #b8c2cc;
  2215. }
  2216. .bg-secondary.badge-glow,
  2217. .border-secondary.badge-glow,
  2218. .badge-secondary.badge-glow {
  2219. box-shadow: 0px 0px 10px #b8c2cc;
  2220. }
  2221. .badge.badge-secondary {
  2222. background-color: #b8c2cc;
  2223. }
  2224. .overlay-secondary {
  2225. background: #b8c2cc;
  2226. /* The Fallback */
  2227. background: rgba(184, 194, 204, 0.6);
  2228. }
  2229. .btn-secondary {
  2230. border-color: #9aa9b7 !important;
  2231. background-color: #b8c2cc !important;
  2232. color: #fff;
  2233. }
  2234. .btn-secondary:hover {
  2235. border-color: #a9b5c1 !important;
  2236. color: #fff !important;
  2237. box-shadow: 0 8px 25px -8px #b8c2cc;
  2238. }
  2239. .btn-secondary:focus,
  2240. .btn-secondary:active {
  2241. color: #fff !important;
  2242. }
  2243. .btn-flat-secondary {
  2244. background-color: transparent;
  2245. color: #b8c2cc;
  2246. }
  2247. .btn-flat-secondary:hover {
  2248. color: #b8c2cc;
  2249. background-color: rgba(184, 194, 204, 0.1);
  2250. }
  2251. .btn-flat-secondary:active,
  2252. .btn-flat-secondary:focus {
  2253. background-color: #b8c2cc;
  2254. color: #fff !important;
  2255. }
  2256. .btn-relief-secondary {
  2257. background-color: #b8c2cc;
  2258. box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  2259. color: #fff;
  2260. }
  2261. .btn-relief-secondary:hover {
  2262. color: #fff;
  2263. }
  2264. .btn-relief-secondary:active,
  2265. .btn-relief-secondary:focus {
  2266. outline: none;
  2267. transform: translateY(3px);
  2268. }
  2269. .btn-outline-secondary {
  2270. border: 1px solid #b8c2cc;
  2271. background-color: transparent;
  2272. color: #b8c2cc;
  2273. }
  2274. .btn-outline-secondary:hover {
  2275. background-color: rgba(184, 194, 204, 0.08);
  2276. color: #b8c2cc;
  2277. }
  2278. .btn-outline-secondary:active {
  2279. color: #fff !important;
  2280. }
  2281. .btn-secondary ~ .dropdown-menu .dropdown-item.active,
  2282. .btn-outline-secondary ~ .dropdown-menu .dropdown-item.active,
  2283. .btn-flat-secondary ~ .dropdown-menu .dropdown-item.active {
  2284. background-color: #b8c2cc;
  2285. color: #fff;
  2286. }
  2287. .btn-secondary ~ .dropdown-menu .dropdown-item.active:hover,
  2288. .btn-outline-secondary ~ .dropdown-menu .dropdown-item.active:hover,
  2289. .btn-flat-secondary ~ .dropdown-menu .dropdown-item.active:hover {
  2290. color: #fff;
  2291. }
  2292. .btn-secondary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  2293. .btn-outline-secondary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  2294. .btn-flat-secondary ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover {
  2295. color: #b8c2cc;
  2296. }
  2297. .dropdown.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2298. .dropdown.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2299. .dropdown.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2300. .dropup.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2301. .dropup.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2302. .dropup.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2303. .dropright.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2304. .dropright.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2305. .dropright.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2306. .dropleft.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2307. .dropleft.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:hover i,
  2308. .dropleft.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:hover i {
  2309. color: #b8c2cc;
  2310. }
  2311. .dropdown.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:active i,
  2312. .dropdown.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:active i,
  2313. .dropdown.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:active i,
  2314. .dropup.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:active i,
  2315. .dropup.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:active i,
  2316. .dropup.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:active i,
  2317. .dropright.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:active i,
  2318. .dropright.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:active i,
  2319. .dropright.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:active i,
  2320. .dropleft.dropdown-icon-wrapper .btn-secondary ~ .dropdown-menu .dropdown-item:active i,
  2321. .dropleft.dropdown-icon-wrapper .btn-outline-secondary ~ .dropdown-menu .dropdown-item:active i,
  2322. .dropleft.dropdown-icon-wrapper .btn-flat-secondary ~ .dropdown-menu .dropdown-item:active i {
  2323. color: #fff;
  2324. }
  2325. .bullet.bullet-secondary {
  2326. background-color: #b8c2cc;
  2327. }
  2328. .pagination-secondary .page-item.active .page-link {
  2329. background: #b8c2cc;
  2330. color: #fff;
  2331. }
  2332. .pagination-secondary .page-item.active .page-link:hover {
  2333. color: #fff;
  2334. }
  2335. .pagination-secondary .page-item .page-link:hover {
  2336. color: #b8c2cc;
  2337. }
  2338. .pagination-secondary .page-item.prev-item .page-link:hover,
  2339. .pagination-secondary .page-item.next-item .page-link:hover {
  2340. background: #b8c2cc;
  2341. color: #fff;
  2342. }
  2343. .nav-pill-secondary .nav-item .nav-link.active {
  2344. color: #fff;
  2345. background-color: #b8c2cc !important;
  2346. }
  2347. .progress-bar-secondary {
  2348. background-color: rgba(184, 194, 204, 0.1);
  2349. }
  2350. .progress-bar-secondary .progress-bar {
  2351. background-color: #b8c2cc;
  2352. }
  2353. .chip-secondary {
  2354. background-color: #b8c2cc !important;
  2355. }
  2356. .chip-secondary .chip-body {
  2357. color: #fff !important;
  2358. }
  2359. .divider.divider-secondary .divider-text:before,
  2360. .divider.divider-secondary .divider-text:after {
  2361. border-color: #b8c2cc !important;
  2362. }
  2363. input[type=checkbox].bg-secondary + .custom-control-label:before,
  2364. input[type=radio].bg-secondary + .custom-control-label:before {
  2365. background-color: #b8c2cc !important;
  2366. }
  2367. input:focus ~ .bg-secondary {
  2368. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #b8c2cc !important;
  2369. }
  2370. .vs-checkbox-secondary input:checked ~ .vs-checkbox {
  2371. border-color: #b8c2cc !important;
  2372. }
  2373. .vs-checkbox-secondary input:checked ~ .vs-checkbox .vs-checkbox--check {
  2374. background-color: #b8c2cc !important;
  2375. }
  2376. .vs-checkbox-secondary input:active:checked + .vs-checkbox .vs-checkbox--check {
  2377. background-color: #b8c2cc !important;
  2378. }
  2379. .custom-switch-secondary .custom-control-input:checked ~ .custom-control-label::before {
  2380. background-color: #b8c2cc !important;
  2381. color: #fff;
  2382. transition: all 0.2s ease-out;
  2383. }
  2384. .vs-radio-secondary input:checked ~ .vs-radio .vs-radio--circle {
  2385. background: #b8c2cc !important;
  2386. box-shadow: 0 3px 12px 0 rgba(184, 194, 204, 0.4) !important;
  2387. }
  2388. .secondary.darken-1 {
  2389. color: #a9b5c1 !important;
  2390. }
  2391. .bg-secondary.bg-darken-1 {
  2392. background-color: #a9b5c1 !important;
  2393. }
  2394. .btn-secondary.btn-darken-1 {
  2395. border-color: #9aa9b7 !important;
  2396. background-color: #a9b5c1 !important;
  2397. }
  2398. .btn-secondary.btn-darken-1:hover {
  2399. border-color: #9aa9b7 !important;
  2400. background-color: #8b9cac !important;
  2401. }
  2402. .btn-secondary.btn-darken-1:focus,
  2403. .btn-secondary.btn-darken-1:active {
  2404. border-color: #8b9cac !important;
  2405. background-color: #7d8fa1 !important;
  2406. }
  2407. .btn-outline-secondary.btn-outline-darken-1 {
  2408. border-color: #a9b5c1 !important;
  2409. color: #a9b5c1 !important;
  2410. }
  2411. .btn-outline-secondary.btn-outline-darken-1:hover {
  2412. background-color: #a9b5c1 !important;
  2413. }
  2414. input:focus ~ .bg-secondary {
  2415. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #a9b5c1 !important;
  2416. }
  2417. .border-secondary.border-darken-1 {
  2418. border: 1px solid #a9b5c1 !important;
  2419. }
  2420. .border-top-secondary.border-top-darken-1 {
  2421. border-top: 1px solid #a9b5c1 !important;
  2422. }
  2423. .border-bottom-secondary.border-bottom-darken-1 {
  2424. border-bottom: 1px solid #a9b5c1 !important;
  2425. }
  2426. .border-left-secondary.border-left-darken-1 {
  2427. border-left: 1px solid #a9b5c1 !important;
  2428. }
  2429. .border-right-secondary.border-right-darken-1 {
  2430. border-right: 1px solid #a9b5c1 !important;
  2431. }
  2432. .overlay-secondary.overlay-darken-1 {
  2433. background: #a9b5c1;
  2434. /* The Fallback */
  2435. background: rgba(169, 181, 193, 0.6);
  2436. }
  2437. .secondary.darken-2 {
  2438. color: #9aa9b7 !important;
  2439. }
  2440. .bg-secondary.bg-darken-2 {
  2441. background-color: #9aa9b7 !important;
  2442. }
  2443. .btn-secondary.btn-darken-2 {
  2444. border-color: #9aa9b7 !important;
  2445. background-color: #9aa9b7 !important;
  2446. }
  2447. .btn-secondary.btn-darken-2:hover {
  2448. border-color: #9aa9b7 !important;
  2449. background-color: #8b9cac !important;
  2450. }
  2451. .btn-secondary.btn-darken-2:focus,
  2452. .btn-secondary.btn-darken-2:active {
  2453. border-color: #8b9cac !important;
  2454. background-color: #7d8fa1 !important;
  2455. }
  2456. .btn-outline-secondary.btn-outline-darken-2 {
  2457. border-color: #9aa9b7 !important;
  2458. color: #9aa9b7 !important;
  2459. }
  2460. .btn-outline-secondary.btn-outline-darken-2:hover {
  2461. background-color: #9aa9b7 !important;
  2462. }
  2463. input:focus ~ .bg-secondary {
  2464. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #9aa9b7 !important;
  2465. }
  2466. .border-secondary.border-darken-2 {
  2467. border: 1px solid #9aa9b7 !important;
  2468. }
  2469. .border-top-secondary.border-top-darken-2 {
  2470. border-top: 1px solid #9aa9b7 !important;
  2471. }
  2472. .border-bottom-secondary.border-bottom-darken-2 {
  2473. border-bottom: 1px solid #9aa9b7 !important;
  2474. }
  2475. .border-left-secondary.border-left-darken-2 {
  2476. border-left: 1px solid #9aa9b7 !important;
  2477. }
  2478. .border-right-secondary.border-right-darken-2 {
  2479. border-right: 1px solid #9aa9b7 !important;
  2480. }
  2481. .overlay-secondary.overlay-darken-2 {
  2482. background: #9aa9b7;
  2483. /* The Fallback */
  2484. background: rgba(154, 169, 183, 0.6);
  2485. }
  2486. .secondary.darken-3 {
  2487. color: #8b9cac !important;
  2488. }
  2489. .bg-secondary.bg-darken-3 {
  2490. background-color: #8b9cac !important;
  2491. }
  2492. .btn-secondary.btn-darken-3 {
  2493. border-color: #9aa9b7 !important;
  2494. background-color: #8b9cac !important;
  2495. }
  2496. .btn-secondary.btn-darken-3:hover {
  2497. border-color: #9aa9b7 !important;
  2498. background-color: #8b9cac !important;
  2499. }
  2500. .btn-secondary.btn-darken-3:focus,
  2501. .btn-secondary.btn-darken-3:active {
  2502. border-color: #8b9cac !important;
  2503. background-color: #7d8fa1 !important;
  2504. }
  2505. .btn-outline-secondary.btn-outline-darken-3 {
  2506. border-color: #8b9cac !important;
  2507. color: #8b9cac !important;
  2508. }
  2509. .btn-outline-secondary.btn-outline-darken-3:hover {
  2510. background-color: #8b9cac !important;
  2511. }
  2512. input:focus ~ .bg-secondary {
  2513. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #8b9cac !important;
  2514. }
  2515. .border-secondary.border-darken-3 {
  2516. border: 1px solid #8b9cac !important;
  2517. }
  2518. .border-top-secondary.border-top-darken-3 {
  2519. border-top: 1px solid #8b9cac !important;
  2520. }
  2521. .border-bottom-secondary.border-bottom-darken-3 {
  2522. border-bottom: 1px solid #8b9cac !important;
  2523. }
  2524. .border-left-secondary.border-left-darken-3 {
  2525. border-left: 1px solid #8b9cac !important;
  2526. }
  2527. .border-right-secondary.border-right-darken-3 {
  2528. border-right: 1px solid #8b9cac !important;
  2529. }
  2530. .overlay-secondary.overlay-darken-3 {
  2531. background: #8b9cac;
  2532. /* The Fallback */
  2533. background: rgba(139, 156, 172, 0.6);
  2534. }
  2535. .secondary.darken-4 {
  2536. color: #7d8fa1 !important;
  2537. }
  2538. .bg-secondary.bg-darken-4 {
  2539. background-color: #7d8fa1 !important;
  2540. }
  2541. .btn-secondary.btn-darken-4 {
  2542. border-color: #9aa9b7 !important;
  2543. background-color: #7d8fa1 !important;
  2544. }
  2545. .btn-secondary.btn-darken-4:hover {
  2546. border-color: #9aa9b7 !important;
  2547. background-color: #8b9cac !important;
  2548. }
  2549. .btn-secondary.btn-darken-4:focus,
  2550. .btn-secondary.btn-darken-4:active {
  2551. border-color: #8b9cac !important;
  2552. background-color: #7d8fa1 !important;
  2553. }
  2554. .btn-outline-secondary.btn-outline-darken-4 {
  2555. border-color: #7d8fa1 !important;
  2556. color: #7d8fa1 !important;
  2557. }
  2558. .btn-outline-secondary.btn-outline-darken-4:hover {
  2559. background-color: #7d8fa1 !important;
  2560. }
  2561. input:focus ~ .bg-secondary {
  2562. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #7d8fa1 !important;
  2563. }
  2564. .border-secondary.border-darken-4 {
  2565. border: 1px solid #7d8fa1 !important;
  2566. }
  2567. .border-top-secondary.border-top-darken-4 {
  2568. border-top: 1px solid #7d8fa1 !important;
  2569. }
  2570. .border-bottom-secondary.border-bottom-darken-4 {
  2571. border-bottom: 1px solid #7d8fa1 !important;
  2572. }
  2573. .border-left-secondary.border-left-darken-4 {
  2574. border-left: 1px solid #7d8fa1 !important;
  2575. }
  2576. .border-right-secondary.border-right-darken-4 {
  2577. border-right: 1px solid #7d8fa1 !important;
  2578. }
  2579. .overlay-secondary.overlay-darken-4 {
  2580. background: #7d8fa1;
  2581. /* The Fallback */
  2582. background: rgba(125, 143, 161, 0.6);
  2583. }
  2584. .secondary.gradient-bg {
  2585. color: #640064 !important;
  2586. }
  2587. .bg-secondary.bg-gradient-bg {
  2588. background-color: #640064 !important;
  2589. }
  2590. .btn-secondary.btn-gradient-bg {
  2591. border-color: #9aa9b7 !important;
  2592. background-color: #640064 !important;
  2593. }
  2594. .btn-secondary.btn-gradient-bg:hover {
  2595. border-color: #9aa9b7 !important;
  2596. background-color: #8b9cac !important;
  2597. }
  2598. .btn-secondary.btn-gradient-bg:focus,
  2599. .btn-secondary.btn-gradient-bg:active {
  2600. border-color: #8b9cac !important;
  2601. background-color: #7d8fa1 !important;
  2602. }
  2603. .btn-outline-secondary.btn-outline-gradient-bg {
  2604. border-color: #640064 !important;
  2605. color: #640064 !important;
  2606. }
  2607. .btn-outline-secondary.btn-outline-gradient-bg:hover {
  2608. background-color: #640064 !important;
  2609. }
  2610. input:focus ~ .bg-secondary {
  2611. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important;
  2612. }
  2613. .border-secondary.border-gradient-bg {
  2614. border: 1px solid #640064 !important;
  2615. }
  2616. .border-top-secondary.border-top-gradient-bg {
  2617. border-top: 1px solid #640064 !important;
  2618. }
  2619. .border-bottom-secondary.border-bottom-gradient-bg {
  2620. border-bottom: 1px solid #640064 !important;
  2621. }
  2622. .border-left-secondary.border-left-gradient-bg {
  2623. border-left: 1px solid #640064 !important;
  2624. }
  2625. .border-right-secondary.border-right-gradient-bg {
  2626. border-right: 1px solid #640064 !important;
  2627. }
  2628. .overlay-secondary.overlay-gradient-bg {
  2629. background: #640064;
  2630. /* The Fallback */
  2631. background: rgba(100, 0, 100, 0.6);
  2632. }
  2633. .success.gradient-light {
  2634. color: #34eae8 !important;
  2635. }
  2636. .bg-success.bg-gradient-light {
  2637. background-color: #34eae8 !important;
  2638. }
  2639. .btn-success.btn-gradient-light {
  2640. border-color: #198e5c !important;
  2641. background-color: #34eae8 !important;
  2642. }
  2643. .btn-success.btn-gradient-light:hover {
  2644. border-color: #198e5c !important;
  2645. background-color: #15784e !important;
  2646. }
  2647. .btn-success.btn-gradient-light:focus,
  2648. .btn-success.btn-gradient-light:active {
  2649. border-color: #15784e !important;
  2650. background-color: #126240 !important;
  2651. }
  2652. .btn-outline-success.btn-outline-gradient-light {
  2653. border-color: #34eae8 !important;
  2654. color: #34eae8 !important;
  2655. }
  2656. .btn-outline-success.btn-outline-gradient-light:hover {
  2657. background-color: #34eae8 !important;
  2658. }
  2659. input:focus ~ .bg-success {
  2660. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #34eae8 !important;
  2661. }
  2662. .border-success.border-gradient-light {
  2663. border: 1px solid #34eae8 !important;
  2664. }
  2665. .border-top-success.border-top-gradient-light {
  2666. border-top: 1px solid #34eae8 !important;
  2667. }
  2668. .border-bottom-success.border-bottom-gradient-light {
  2669. border-bottom: 1px solid #34eae8 !important;
  2670. }
  2671. .border-left-success.border-left-gradient-light {
  2672. border-left: 1px solid #34eae8 !important;
  2673. }
  2674. .border-right-success.border-right-gradient-light {
  2675. border-right: 1px solid #34eae8 !important;
  2676. }
  2677. .overlay-success.overlay-gradient-light {
  2678. background: #34eae8;
  2679. /* The Fallback */
  2680. background: rgba(52, 234, 232, 0.6);
  2681. }
  2682. .success.lighten-5 {
  2683. color: #73e6b5 !important;
  2684. }
  2685. .bg-success.bg-lighten-5 {
  2686. background-color: #73e6b5 !important;
  2687. }
  2688. .btn-success.btn-lighten-5 {
  2689. border-color: #198e5c !important;
  2690. background-color: #73e6b5 !important;
  2691. }
  2692. .btn-success.btn-lighten-5:hover {
  2693. border-color: #198e5c !important;
  2694. background-color: #15784e !important;
  2695. }
  2696. .btn-success.btn-lighten-5:focus,
  2697. .btn-success.btn-lighten-5:active {
  2698. border-color: #15784e !important;
  2699. background-color: #126240 !important;
  2700. }
  2701. .btn-outline-success.btn-outline-lighten-5 {
  2702. border-color: #73e6b5 !important;
  2703. color: #73e6b5 !important;
  2704. }
  2705. .btn-outline-success.btn-outline-lighten-5:hover {
  2706. background-color: #73e6b5 !important;
  2707. }
  2708. input:focus ~ .bg-success {
  2709. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #73e6b5 !important;
  2710. }
  2711. .border-success.border-lighten-5 {
  2712. border: 1px solid #73e6b5 !important;
  2713. }
  2714. .border-top-success.border-top-lighten-5 {
  2715. border-top: 1px solid #73e6b5 !important;
  2716. }
  2717. .border-bottom-success.border-bottom-lighten-5 {
  2718. border-bottom: 1px solid #73e6b5 !important;
  2719. }
  2720. .border-left-success.border-left-lighten-5 {
  2721. border-left: 1px solid #73e6b5 !important;
  2722. }
  2723. .border-right-success.border-right-lighten-5 {
  2724. border-right: 1px solid #73e6b5 !important;
  2725. }
  2726. .overlay-success.overlay-lighten-5 {
  2727. background: #73e6b5;
  2728. /* The Fallback */
  2729. background: rgba(115, 230, 181, 0.6);
  2730. }
  2731. .success.lighten-4 {
  2732. color: #5ee2aa !important;
  2733. }
  2734. .bg-success.bg-lighten-4 {
  2735. background-color: #5ee2aa !important;
  2736. }
  2737. .btn-success.btn-lighten-4 {
  2738. border-color: #198e5c !important;
  2739. background-color: #5ee2aa !important;
  2740. }
  2741. .btn-success.btn-lighten-4:hover {
  2742. border-color: #198e5c !important;
  2743. background-color: #15784e !important;
  2744. }
  2745. .btn-success.btn-lighten-4:focus,
  2746. .btn-success.btn-lighten-4:active {
  2747. border-color: #15784e !important;
  2748. background-color: #126240 !important;
  2749. }
  2750. .btn-outline-success.btn-outline-lighten-4 {
  2751. border-color: #5ee2aa !important;
  2752. color: #5ee2aa !important;
  2753. }
  2754. .btn-outline-success.btn-outline-lighten-4:hover {
  2755. background-color: #5ee2aa !important;
  2756. }
  2757. input:focus ~ .bg-success {
  2758. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #5ee2aa !important;
  2759. }
  2760. .border-success.border-lighten-4 {
  2761. border: 1px solid #5ee2aa !important;
  2762. }
  2763. .border-top-success.border-top-lighten-4 {
  2764. border-top: 1px solid #5ee2aa !important;
  2765. }
  2766. .border-bottom-success.border-bottom-lighten-4 {
  2767. border-bottom: 1px solid #5ee2aa !important;
  2768. }
  2769. .border-left-success.border-left-lighten-4 {
  2770. border-left: 1px solid #5ee2aa !important;
  2771. }
  2772. .border-right-success.border-right-lighten-4 {
  2773. border-right: 1px solid #5ee2aa !important;
  2774. }
  2775. .overlay-success.overlay-lighten-4 {
  2776. background: #5ee2aa;
  2777. /* The Fallback */
  2778. background: rgba(94, 226, 170, 0.6);
  2779. }
  2780. .success.lighten-3 {
  2781. color: #48de9e !important;
  2782. }
  2783. .bg-success.bg-lighten-3 {
  2784. background-color: #48de9e !important;
  2785. }
  2786. .btn-success.btn-lighten-3 {
  2787. border-color: #198e5c !important;
  2788. background-color: #48de9e !important;
  2789. }
  2790. .btn-success.btn-lighten-3:hover {
  2791. border-color: #198e5c !important;
  2792. background-color: #15784e !important;
  2793. }
  2794. .btn-success.btn-lighten-3:focus,
  2795. .btn-success.btn-lighten-3:active {
  2796. border-color: #15784e !important;
  2797. background-color: #126240 !important;
  2798. }
  2799. .btn-outline-success.btn-outline-lighten-3 {
  2800. border-color: #48de9e !important;
  2801. color: #48de9e !important;
  2802. }
  2803. .btn-outline-success.btn-outline-lighten-3:hover {
  2804. background-color: #48de9e !important;
  2805. }
  2806. input:focus ~ .bg-success {
  2807. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #48de9e !important;
  2808. }
  2809. .border-success.border-lighten-3 {
  2810. border: 1px solid #48de9e !important;
  2811. }
  2812. .border-top-success.border-top-lighten-3 {
  2813. border-top: 1px solid #48de9e !important;
  2814. }
  2815. .border-bottom-success.border-bottom-lighten-3 {
  2816. border-bottom: 1px solid #48de9e !important;
  2817. }
  2818. .border-left-success.border-left-lighten-3 {
  2819. border-left: 1px solid #48de9e !important;
  2820. }
  2821. .border-right-success.border-right-lighten-3 {
  2822. border-right: 1px solid #48de9e !important;
  2823. }
  2824. .overlay-success.overlay-lighten-3 {
  2825. background: #48de9e;
  2826. /* The Fallback */
  2827. background: rgba(72, 222, 158, 0.6);
  2828. }
  2829. .success.lighten-2 {
  2830. color: #32db93 !important;
  2831. }
  2832. .bg-success.bg-lighten-2 {
  2833. background-color: #32db93 !important;
  2834. }
  2835. .btn-success.btn-lighten-2 {
  2836. border-color: #198e5c !important;
  2837. background-color: #32db93 !important;
  2838. }
  2839. .btn-success.btn-lighten-2:hover {
  2840. border-color: #198e5c !important;
  2841. background-color: #15784e !important;
  2842. }
  2843. .btn-success.btn-lighten-2:focus,
  2844. .btn-success.btn-lighten-2:active {
  2845. border-color: #15784e !important;
  2846. background-color: #126240 !important;
  2847. }
  2848. .btn-outline-success.btn-outline-lighten-2 {
  2849. border-color: #32db93 !important;
  2850. color: #32db93 !important;
  2851. }
  2852. .btn-outline-success.btn-outline-lighten-2:hover {
  2853. background-color: #32db93 !important;
  2854. }
  2855. input:focus ~ .bg-success {
  2856. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #32db93 !important;
  2857. }
  2858. .border-success.border-lighten-2 {
  2859. border: 1px solid #32db93 !important;
  2860. }
  2861. .border-top-success.border-top-lighten-2 {
  2862. border-top: 1px solid #32db93 !important;
  2863. }
  2864. .border-bottom-success.border-bottom-lighten-2 {
  2865. border-bottom: 1px solid #32db93 !important;
  2866. }
  2867. .border-left-success.border-left-lighten-2 {
  2868. border-left: 1px solid #32db93 !important;
  2869. }
  2870. .border-right-success.border-right-lighten-2 {
  2871. border-right: 1px solid #32db93 !important;
  2872. }
  2873. .overlay-success.overlay-lighten-2 {
  2874. background: #32db93;
  2875. /* The Fallback */
  2876. background: rgba(50, 219, 147, 0.6);
  2877. }
  2878. .success.lighten-1 {
  2879. color: #25cf86 !important;
  2880. }
  2881. .bg-success.bg-lighten-1 {
  2882. background-color: #25cf86 !important;
  2883. }
  2884. .btn-success.btn-lighten-1 {
  2885. border-color: #198e5c !important;
  2886. background-color: #25cf86 !important;
  2887. }
  2888. .btn-success.btn-lighten-1:hover {
  2889. border-color: #198e5c !important;
  2890. background-color: #15784e !important;
  2891. }
  2892. .btn-success.btn-lighten-1:focus,
  2893. .btn-success.btn-lighten-1:active {
  2894. border-color: #15784e !important;
  2895. background-color: #126240 !important;
  2896. }
  2897. .btn-outline-success.btn-outline-lighten-1 {
  2898. border-color: #25cf86 !important;
  2899. color: #25cf86 !important;
  2900. }
  2901. .btn-outline-success.btn-outline-lighten-1:hover {
  2902. background-color: #25cf86 !important;
  2903. }
  2904. input:focus ~ .bg-success {
  2905. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #25cf86 !important;
  2906. }
  2907. .border-success.border-lighten-1 {
  2908. border: 1px solid #25cf86 !important;
  2909. }
  2910. .border-top-success.border-top-lighten-1 {
  2911. border-top: 1px solid #25cf86 !important;
  2912. }
  2913. .border-bottom-success.border-bottom-lighten-1 {
  2914. border-bottom: 1px solid #25cf86 !important;
  2915. }
  2916. .border-left-success.border-left-lighten-1 {
  2917. border-left: 1px solid #25cf86 !important;
  2918. }
  2919. .border-right-success.border-right-lighten-1 {
  2920. border-right: 1px solid #25cf86 !important;
  2921. }
  2922. .overlay-success.overlay-lighten-1 {
  2923. background: #25cf86;
  2924. /* The Fallback */
  2925. background: rgba(37, 207, 134, 0.6);
  2926. }
  2927. .success {
  2928. color: #21b978 !important;
  2929. }
  2930. .bg-success {
  2931. background-color: #21b978 !important;
  2932. }
  2933. .bg-success .card-header,
  2934. .bg-success .card-footer {
  2935. background-color: transparent;
  2936. }
  2937. .alert-success {
  2938. background: rgba(33, 185, 120, 0.2) !important;
  2939. color: #21b978 !important;
  2940. }
  2941. .alert-success .alert-heading {
  2942. box-shadow: rgba(33, 185, 120, 0.4) 0px 6px 15px -7px;
  2943. }
  2944. .alert-success .alert-link {
  2945. color: #1da36a !important;
  2946. }
  2947. .bg-rgba-success {
  2948. background: rgba(33, 185, 120, 0.15) !important;
  2949. }
  2950. .border-success {
  2951. border: 1px solid #21b978 !important;
  2952. }
  2953. .border-top-success {
  2954. border-top: 1px solid #21b978;
  2955. }
  2956. .border-bottom-success {
  2957. border-bottom: 1px solid #21b978;
  2958. }
  2959. .border-left-success {
  2960. border-left: 1px solid #21b978;
  2961. }
  2962. .border-right-success {
  2963. border-right: 1px solid #21b978;
  2964. }
  2965. .bg-success.badge-glow,
  2966. .border-success.badge-glow,
  2967. .badge-success.badge-glow {
  2968. box-shadow: 0px 0px 10px #21b978;
  2969. }
  2970. .badge.badge-success {
  2971. background-color: #21b978;
  2972. }
  2973. .overlay-success {
  2974. background: #21b978;
  2975. /* The Fallback */
  2976. background: rgba(33, 185, 120, 0.6);
  2977. }
  2978. .btn-success {
  2979. border-color: #198e5c !important;
  2980. background-color: #21b978 !important;
  2981. color: #fff;
  2982. }
  2983. .btn-success:hover {
  2984. border-color: #1da36a !important;
  2985. color: #fff !important;
  2986. box-shadow: 0 8px 25px -8px #21b978;
  2987. }
  2988. .btn-success:focus,
  2989. .btn-success:active {
  2990. color: #fff !important;
  2991. }
  2992. .btn-flat-success {
  2993. background-color: transparent;
  2994. color: #21b978;
  2995. }
  2996. .btn-flat-success:hover {
  2997. color: #21b978;
  2998. background-color: rgba(33, 185, 120, 0.1);
  2999. }
  3000. .btn-flat-success:active,
  3001. .btn-flat-success:focus {
  3002. background-color: #21b978;
  3003. color: #fff !important;
  3004. }
  3005. .btn-relief-success {
  3006. background-color: #21b978;
  3007. box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  3008. color: #fff;
  3009. }
  3010. .btn-relief-success:hover {
  3011. color: #fff;
  3012. }
  3013. .btn-relief-success:active,
  3014. .btn-relief-success:focus {
  3015. outline: none;
  3016. transform: translateY(3px);
  3017. }
  3018. .btn-outline-success {
  3019. border: 1px solid #21b978;
  3020. background-color: transparent;
  3021. color: #21b978;
  3022. }
  3023. .btn-outline-success:hover {
  3024. background-color: rgba(33, 185, 120, 0.08);
  3025. color: #21b978;
  3026. }
  3027. .btn-outline-success:active {
  3028. color: #fff !important;
  3029. }
  3030. .btn-success ~ .dropdown-menu .dropdown-item.active,
  3031. .btn-outline-success ~ .dropdown-menu .dropdown-item.active,
  3032. .btn-flat-success ~ .dropdown-menu .dropdown-item.active {
  3033. background-color: #21b978;
  3034. color: #fff;
  3035. }
  3036. .btn-success ~ .dropdown-menu .dropdown-item.active:hover,
  3037. .btn-outline-success ~ .dropdown-menu .dropdown-item.active:hover,
  3038. .btn-flat-success ~ .dropdown-menu .dropdown-item.active:hover {
  3039. color: #fff;
  3040. }
  3041. .btn-success ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  3042. .btn-outline-success ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  3043. .btn-flat-success ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover {
  3044. color: #21b978;
  3045. }
  3046. .dropdown.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:hover i,
  3047. .dropdown.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:hover i,
  3048. .dropdown.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:hover i,
  3049. .dropup.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:hover i,
  3050. .dropup.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:hover i,
  3051. .dropup.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:hover i,
  3052. .dropright.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:hover i,
  3053. .dropright.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:hover i,
  3054. .dropright.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:hover i,
  3055. .dropleft.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:hover i,
  3056. .dropleft.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:hover i,
  3057. .dropleft.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:hover i {
  3058. color: #21b978;
  3059. }
  3060. .dropdown.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:active i,
  3061. .dropdown.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:active i,
  3062. .dropdown.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:active i,
  3063. .dropup.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:active i,
  3064. .dropup.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:active i,
  3065. .dropup.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:active i,
  3066. .dropright.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:active i,
  3067. .dropright.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:active i,
  3068. .dropright.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:active i,
  3069. .dropleft.dropdown-icon-wrapper .btn-success ~ .dropdown-menu .dropdown-item:active i,
  3070. .dropleft.dropdown-icon-wrapper .btn-outline-success ~ .dropdown-menu .dropdown-item:active i,
  3071. .dropleft.dropdown-icon-wrapper .btn-flat-success ~ .dropdown-menu .dropdown-item:active i {
  3072. color: #fff;
  3073. }
  3074. .bullet.bullet-success {
  3075. background-color: #21b978;
  3076. }
  3077. .pagination-success .page-item.active .page-link {
  3078. background: #21b978;
  3079. color: #fff;
  3080. }
  3081. .pagination-success .page-item.active .page-link:hover {
  3082. color: #fff;
  3083. }
  3084. .pagination-success .page-item .page-link:hover {
  3085. color: #21b978;
  3086. }
  3087. .pagination-success .page-item.prev-item .page-link:hover,
  3088. .pagination-success .page-item.next-item .page-link:hover {
  3089. background: #21b978;
  3090. color: #fff;
  3091. }
  3092. .nav-pill-success .nav-item .nav-link.active {
  3093. color: #fff;
  3094. background-color: #21b978 !important;
  3095. }
  3096. .progress-bar-success {
  3097. background-color: rgba(33, 185, 120, 0.1);
  3098. }
  3099. .progress-bar-success .progress-bar {
  3100. background-color: #21b978;
  3101. }
  3102. .chip-success {
  3103. background-color: #21b978 !important;
  3104. }
  3105. .chip-success .chip-body {
  3106. color: #fff !important;
  3107. }
  3108. .divider.divider-success .divider-text:before,
  3109. .divider.divider-success .divider-text:after {
  3110. border-color: #21b978 !important;
  3111. }
  3112. input[type=checkbox].bg-success + .custom-control-label:before,
  3113. input[type=radio].bg-success + .custom-control-label:before {
  3114. background-color: #21b978 !important;
  3115. }
  3116. input:focus ~ .bg-success {
  3117. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #21b978 !important;
  3118. }
  3119. .vs-checkbox-success input:checked ~ .vs-checkbox {
  3120. border-color: #21b978 !important;
  3121. }
  3122. .vs-checkbox-success input:checked ~ .vs-checkbox .vs-checkbox--check {
  3123. background-color: #21b978 !important;
  3124. }
  3125. .vs-checkbox-success input:active:checked + .vs-checkbox .vs-checkbox--check {
  3126. background-color: #21b978 !important;
  3127. }
  3128. .custom-switch-success .custom-control-input:checked ~ .custom-control-label::before {
  3129. background-color: #21b978 !important;
  3130. color: #fff;
  3131. transition: all 0.2s ease-out;
  3132. }
  3133. .vs-radio-success input:checked ~ .vs-radio .vs-radio--circle {
  3134. background: #21b978 !important;
  3135. box-shadow: 0 3px 12px 0 rgba(33, 185, 120, 0.4) !important;
  3136. }
  3137. .success.darken-1 {
  3138. color: #1da36a !important;
  3139. }
  3140. .bg-success.bg-darken-1 {
  3141. background-color: #1da36a !important;
  3142. }
  3143. .btn-success.btn-darken-1 {
  3144. border-color: #198e5c !important;
  3145. background-color: #1da36a !important;
  3146. }
  3147. .btn-success.btn-darken-1:hover {
  3148. border-color: #198e5c !important;
  3149. background-color: #15784e !important;
  3150. }
  3151. .btn-success.btn-darken-1:focus,
  3152. .btn-success.btn-darken-1:active {
  3153. border-color: #15784e !important;
  3154. background-color: #126240 !important;
  3155. }
  3156. .btn-outline-success.btn-outline-darken-1 {
  3157. border-color: #1da36a !important;
  3158. color: #1da36a !important;
  3159. }
  3160. .btn-outline-success.btn-outline-darken-1:hover {
  3161. background-color: #1da36a !important;
  3162. }
  3163. input:focus ~ .bg-success {
  3164. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #1da36a !important;
  3165. }
  3166. .border-success.border-darken-1 {
  3167. border: 1px solid #1da36a !important;
  3168. }
  3169. .border-top-success.border-top-darken-1 {
  3170. border-top: 1px solid #1da36a !important;
  3171. }
  3172. .border-bottom-success.border-bottom-darken-1 {
  3173. border-bottom: 1px solid #1da36a !important;
  3174. }
  3175. .border-left-success.border-left-darken-1 {
  3176. border-left: 1px solid #1da36a !important;
  3177. }
  3178. .border-right-success.border-right-darken-1 {
  3179. border-right: 1px solid #1da36a !important;
  3180. }
  3181. .overlay-success.overlay-darken-1 {
  3182. background: #1da36a;
  3183. /* The Fallback */
  3184. background: rgba(29, 163, 106, 0.6);
  3185. }
  3186. .success.darken-2 {
  3187. color: #198e5c !important;
  3188. }
  3189. .bg-success.bg-darken-2 {
  3190. background-color: #198e5c !important;
  3191. }
  3192. .btn-success.btn-darken-2 {
  3193. border-color: #198e5c !important;
  3194. background-color: #198e5c !important;
  3195. }
  3196. .btn-success.btn-darken-2:hover {
  3197. border-color: #198e5c !important;
  3198. background-color: #15784e !important;
  3199. }
  3200. .btn-success.btn-darken-2:focus,
  3201. .btn-success.btn-darken-2:active {
  3202. border-color: #15784e !important;
  3203. background-color: #126240 !important;
  3204. }
  3205. .btn-outline-success.btn-outline-darken-2 {
  3206. border-color: #198e5c !important;
  3207. color: #198e5c !important;
  3208. }
  3209. .btn-outline-success.btn-outline-darken-2:hover {
  3210. background-color: #198e5c !important;
  3211. }
  3212. input:focus ~ .bg-success {
  3213. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #198e5c !important;
  3214. }
  3215. .border-success.border-darken-2 {
  3216. border: 1px solid #198e5c !important;
  3217. }
  3218. .border-top-success.border-top-darken-2 {
  3219. border-top: 1px solid #198e5c !important;
  3220. }
  3221. .border-bottom-success.border-bottom-darken-2 {
  3222. border-bottom: 1px solid #198e5c !important;
  3223. }
  3224. .border-left-success.border-left-darken-2 {
  3225. border-left: 1px solid #198e5c !important;
  3226. }
  3227. .border-right-success.border-right-darken-2 {
  3228. border-right: 1px solid #198e5c !important;
  3229. }
  3230. .overlay-success.overlay-darken-2 {
  3231. background: #198e5c;
  3232. /* The Fallback */
  3233. background: rgba(25, 142, 92, 0.6);
  3234. }
  3235. .success.darken-3 {
  3236. color: #15784e !important;
  3237. }
  3238. .bg-success.bg-darken-3 {
  3239. background-color: #15784e !important;
  3240. }
  3241. .btn-success.btn-darken-3 {
  3242. border-color: #198e5c !important;
  3243. background-color: #15784e !important;
  3244. }
  3245. .btn-success.btn-darken-3:hover {
  3246. border-color: #198e5c !important;
  3247. background-color: #15784e !important;
  3248. }
  3249. .btn-success.btn-darken-3:focus,
  3250. .btn-success.btn-darken-3:active {
  3251. border-color: #15784e !important;
  3252. background-color: #126240 !important;
  3253. }
  3254. .btn-outline-success.btn-outline-darken-3 {
  3255. border-color: #15784e !important;
  3256. color: #15784e !important;
  3257. }
  3258. .btn-outline-success.btn-outline-darken-3:hover {
  3259. background-color: #15784e !important;
  3260. }
  3261. input:focus ~ .bg-success {
  3262. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #15784e !important;
  3263. }
  3264. .border-success.border-darken-3 {
  3265. border: 1px solid #15784e !important;
  3266. }
  3267. .border-top-success.border-top-darken-3 {
  3268. border-top: 1px solid #15784e !important;
  3269. }
  3270. .border-bottom-success.border-bottom-darken-3 {
  3271. border-bottom: 1px solid #15784e !important;
  3272. }
  3273. .border-left-success.border-left-darken-3 {
  3274. border-left: 1px solid #15784e !important;
  3275. }
  3276. .border-right-success.border-right-darken-3 {
  3277. border-right: 1px solid #15784e !important;
  3278. }
  3279. .overlay-success.overlay-darken-3 {
  3280. background: #15784e;
  3281. /* The Fallback */
  3282. background: rgba(21, 120, 78, 0.6);
  3283. }
  3284. .success.darken-4 {
  3285. color: #126240 !important;
  3286. }
  3287. .bg-success.bg-darken-4 {
  3288. background-color: #126240 !important;
  3289. }
  3290. .btn-success.btn-darken-4 {
  3291. border-color: #198e5c !important;
  3292. background-color: #126240 !important;
  3293. }
  3294. .btn-success.btn-darken-4:hover {
  3295. border-color: #198e5c !important;
  3296. background-color: #15784e !important;
  3297. }
  3298. .btn-success.btn-darken-4:focus,
  3299. .btn-success.btn-darken-4:active {
  3300. border-color: #15784e !important;
  3301. background-color: #126240 !important;
  3302. }
  3303. .btn-outline-success.btn-outline-darken-4 {
  3304. border-color: #126240 !important;
  3305. color: #126240 !important;
  3306. }
  3307. .btn-outline-success.btn-outline-darken-4:hover {
  3308. background-color: #126240 !important;
  3309. }
  3310. input:focus ~ .bg-success {
  3311. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #126240 !important;
  3312. }
  3313. .border-success.border-darken-4 {
  3314. border: 1px solid #126240 !important;
  3315. }
  3316. .border-top-success.border-top-darken-4 {
  3317. border-top: 1px solid #126240 !important;
  3318. }
  3319. .border-bottom-success.border-bottom-darken-4 {
  3320. border-bottom: 1px solid #126240 !important;
  3321. }
  3322. .border-left-success.border-left-darken-4 {
  3323. border-left: 1px solid #126240 !important;
  3324. }
  3325. .border-right-success.border-right-darken-4 {
  3326. border-right: 1px solid #126240 !important;
  3327. }
  3328. .overlay-success.overlay-darken-4 {
  3329. background: #126240;
  3330. /* The Fallback */
  3331. background: rgba(18, 98, 64, 0.6);
  3332. }
  3333. .success.accent-1 {
  3334. color: #E1FFF1 !important;
  3335. }
  3336. .bg-success.bg-accent-1 {
  3337. background-color: #E1FFF1 !important;
  3338. }
  3339. .btn-success.btn-accent-1 {
  3340. border-color: #198e5c !important;
  3341. background-color: #E1FFF1 !important;
  3342. }
  3343. .btn-success.btn-accent-1:hover {
  3344. border-color: #198e5c !important;
  3345. background-color: #15784e !important;
  3346. }
  3347. .btn-success.btn-accent-1:focus,
  3348. .btn-success.btn-accent-1:active {
  3349. border-color: #15784e !important;
  3350. background-color: #126240 !important;
  3351. }
  3352. .btn-outline-success.btn-outline-accent-1 {
  3353. border-color: #E1FFF1 !important;
  3354. color: #E1FFF1 !important;
  3355. }
  3356. .btn-outline-success.btn-outline-accent-1:hover {
  3357. background-color: #E1FFF1 !important;
  3358. }
  3359. input:focus ~ .bg-success {
  3360. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #E1FFF1 !important;
  3361. }
  3362. .border-success.border-accent-1 {
  3363. border: 1px solid #E1FFF1 !important;
  3364. }
  3365. .border-top-success.border-top-accent-1 {
  3366. border-top: 1px solid #E1FFF1 !important;
  3367. }
  3368. .border-bottom-success.border-bottom-accent-1 {
  3369. border-bottom: 1px solid #E1FFF1 !important;
  3370. }
  3371. .border-left-success.border-left-accent-1 {
  3372. border-left: 1px solid #E1FFF1 !important;
  3373. }
  3374. .border-right-success.border-right-accent-1 {
  3375. border-right: 1px solid #E1FFF1 !important;
  3376. }
  3377. .overlay-success.overlay-accent-1 {
  3378. background: #E1FFF1;
  3379. /* The Fallback */
  3380. background: rgba(225, 255, 241, 0.6);
  3381. }
  3382. .success.accent-2 {
  3383. color: #AEFFD9 !important;
  3384. }
  3385. .bg-success.bg-accent-2 {
  3386. background-color: #AEFFD9 !important;
  3387. }
  3388. .btn-success.btn-accent-2 {
  3389. border-color: #198e5c !important;
  3390. background-color: #AEFFD9 !important;
  3391. }
  3392. .btn-success.btn-accent-2:hover {
  3393. border-color: #198e5c !important;
  3394. background-color: #15784e !important;
  3395. }
  3396. .btn-success.btn-accent-2:focus,
  3397. .btn-success.btn-accent-2:active {
  3398. border-color: #15784e !important;
  3399. background-color: #126240 !important;
  3400. }
  3401. .btn-outline-success.btn-outline-accent-2 {
  3402. border-color: #AEFFD9 !important;
  3403. color: #AEFFD9 !important;
  3404. }
  3405. .btn-outline-success.btn-outline-accent-2:hover {
  3406. background-color: #AEFFD9 !important;
  3407. }
  3408. input:focus ~ .bg-success {
  3409. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #AEFFD9 !important;
  3410. }
  3411. .border-success.border-accent-2 {
  3412. border: 1px solid #AEFFD9 !important;
  3413. }
  3414. .border-top-success.border-top-accent-2 {
  3415. border-top: 1px solid #AEFFD9 !important;
  3416. }
  3417. .border-bottom-success.border-bottom-accent-2 {
  3418. border-bottom: 1px solid #AEFFD9 !important;
  3419. }
  3420. .border-left-success.border-left-accent-2 {
  3421. border-left: 1px solid #AEFFD9 !important;
  3422. }
  3423. .border-right-success.border-right-accent-2 {
  3424. border-right: 1px solid #AEFFD9 !important;
  3425. }
  3426. .overlay-success.overlay-accent-2 {
  3427. background: #AEFFD9;
  3428. /* The Fallback */
  3429. background: rgba(174, 255, 217, 0.6);
  3430. }
  3431. .success.accent-3 {
  3432. color: #7BFFC1 !important;
  3433. }
  3434. .bg-success.bg-accent-3 {
  3435. background-color: #7BFFC1 !important;
  3436. }
  3437. .btn-success.btn-accent-3 {
  3438. border-color: #198e5c !important;
  3439. background-color: #7BFFC1 !important;
  3440. }
  3441. .btn-success.btn-accent-3:hover {
  3442. border-color: #198e5c !important;
  3443. background-color: #15784e !important;
  3444. }
  3445. .btn-success.btn-accent-3:focus,
  3446. .btn-success.btn-accent-3:active {
  3447. border-color: #15784e !important;
  3448. background-color: #126240 !important;
  3449. }
  3450. .btn-outline-success.btn-outline-accent-3 {
  3451. border-color: #7BFFC1 !important;
  3452. color: #7BFFC1 !important;
  3453. }
  3454. .btn-outline-success.btn-outline-accent-3:hover {
  3455. background-color: #7BFFC1 !important;
  3456. }
  3457. input:focus ~ .bg-success {
  3458. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #7BFFC1 !important;
  3459. }
  3460. .border-success.border-accent-3 {
  3461. border: 1px solid #7BFFC1 !important;
  3462. }
  3463. .border-top-success.border-top-accent-3 {
  3464. border-top: 1px solid #7BFFC1 !important;
  3465. }
  3466. .border-bottom-success.border-bottom-accent-3 {
  3467. border-bottom: 1px solid #7BFFC1 !important;
  3468. }
  3469. .border-left-success.border-left-accent-3 {
  3470. border-left: 1px solid #7BFFC1 !important;
  3471. }
  3472. .border-right-success.border-right-accent-3 {
  3473. border-right: 1px solid #7BFFC1 !important;
  3474. }
  3475. .overlay-success.overlay-accent-3 {
  3476. background: #7BFFC1;
  3477. /* The Fallback */
  3478. background: rgba(123, 255, 193, 0.6);
  3479. }
  3480. .success.accent-4 {
  3481. color: #62FFB5 !important;
  3482. }
  3483. .bg-success.bg-accent-4 {
  3484. background-color: #62FFB5 !important;
  3485. }
  3486. .btn-success.btn-accent-4 {
  3487. border-color: #198e5c !important;
  3488. background-color: #62FFB5 !important;
  3489. }
  3490. .btn-success.btn-accent-4:hover {
  3491. border-color: #198e5c !important;
  3492. background-color: #15784e !important;
  3493. }
  3494. .btn-success.btn-accent-4:focus,
  3495. .btn-success.btn-accent-4:active {
  3496. border-color: #15784e !important;
  3497. background-color: #126240 !important;
  3498. }
  3499. .btn-outline-success.btn-outline-accent-4 {
  3500. border-color: #62FFB5 !important;
  3501. color: #62FFB5 !important;
  3502. }
  3503. .btn-outline-success.btn-outline-accent-4:hover {
  3504. background-color: #62FFB5 !important;
  3505. }
  3506. input:focus ~ .bg-success {
  3507. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #62FFB5 !important;
  3508. }
  3509. .border-success.border-accent-4 {
  3510. border: 1px solid #62FFB5 !important;
  3511. }
  3512. .border-top-success.border-top-accent-4 {
  3513. border-top: 1px solid #62FFB5 !important;
  3514. }
  3515. .border-bottom-success.border-bottom-accent-4 {
  3516. border-bottom: 1px solid #62FFB5 !important;
  3517. }
  3518. .border-left-success.border-left-accent-4 {
  3519. border-left: 1px solid #62FFB5 !important;
  3520. }
  3521. .border-right-success.border-right-accent-4 {
  3522. border-right: 1px solid #62FFB5 !important;
  3523. }
  3524. .overlay-success.overlay-accent-4 {
  3525. background: #62FFB5;
  3526. /* The Fallback */
  3527. background: rgba(98, 255, 181, 0.6);
  3528. }
  3529. .success.gradient-bg {
  3530. color: #0064fa !important;
  3531. }
  3532. .bg-success.bg-gradient-bg {
  3533. background-color: #0064fa !important;
  3534. }
  3535. .btn-success.btn-gradient-bg {
  3536. border-color: #198e5c !important;
  3537. background-color: #0064fa !important;
  3538. }
  3539. .btn-success.btn-gradient-bg:hover {
  3540. border-color: #198e5c !important;
  3541. background-color: #15784e !important;
  3542. }
  3543. .btn-success.btn-gradient-bg:focus,
  3544. .btn-success.btn-gradient-bg:active {
  3545. border-color: #15784e !important;
  3546. background-color: #126240 !important;
  3547. }
  3548. .btn-outline-success.btn-outline-gradient-bg {
  3549. border-color: #0064fa !important;
  3550. color: #0064fa !important;
  3551. }
  3552. .btn-outline-success.btn-outline-gradient-bg:hover {
  3553. background-color: #0064fa !important;
  3554. }
  3555. input:focus ~ .bg-success {
  3556. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #0064fa !important;
  3557. }
  3558. .border-success.border-gradient-bg {
  3559. border: 1px solid #0064fa !important;
  3560. }
  3561. .border-top-success.border-top-gradient-bg {
  3562. border-top: 1px solid #0064fa !important;
  3563. }
  3564. .border-bottom-success.border-bottom-gradient-bg {
  3565. border-bottom: 1px solid #0064fa !important;
  3566. }
  3567. .border-left-success.border-left-gradient-bg {
  3568. border-left: 1px solid #0064fa !important;
  3569. }
  3570. .border-right-success.border-right-gradient-bg {
  3571. border-right: 1px solid #0064fa !important;
  3572. }
  3573. .overlay-success.overlay-gradient-bg {
  3574. background: #0064fa;
  3575. /* The Fallback */
  3576. background: rgba(0, 100, 250, 0.6);
  3577. }
  3578. .info.gradient-light {
  3579. color: #5e6cec !important;
  3580. }
  3581. .bg-info.bg-gradient-light {
  3582. background-color: #5e6cec !important;
  3583. }
  3584. .btn-info.btn-gradient-light {
  3585. border-color: #236bb0 !important;
  3586. background-color: #5e6cec !important;
  3587. }
  3588. .btn-info.btn-gradient-light:hover {
  3589. border-color: #236bb0 !important;
  3590. background-color: #1f5e9b !important;
  3591. }
  3592. .btn-info.btn-gradient-light:focus,
  3593. .btn-info.btn-gradient-light:active {
  3594. border-color: #1f5e9b !important;
  3595. background-color: #1a5186 !important;
  3596. }
  3597. .btn-outline-info.btn-outline-gradient-light {
  3598. border-color: #5e6cec !important;
  3599. color: #5e6cec !important;
  3600. }
  3601. .btn-outline-info.btn-outline-gradient-light:hover {
  3602. background-color: #5e6cec !important;
  3603. }
  3604. input:focus ~ .bg-info {
  3605. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #5e6cec !important;
  3606. }
  3607. .border-info.border-gradient-light {
  3608. border: 1px solid #5e6cec !important;
  3609. }
  3610. .border-top-info.border-top-gradient-light {
  3611. border-top: 1px solid #5e6cec !important;
  3612. }
  3613. .border-bottom-info.border-bottom-gradient-light {
  3614. border-bottom: 1px solid #5e6cec !important;
  3615. }
  3616. .border-left-info.border-left-gradient-light {
  3617. border-left: 1px solid #5e6cec !important;
  3618. }
  3619. .border-right-info.border-right-gradient-light {
  3620. border-right: 1px solid #5e6cec !important;
  3621. }
  3622. .overlay-info.overlay-gradient-light {
  3623. background: #5e6cec;
  3624. /* The Fallback */
  3625. background: rgba(94, 108, 236, 0.6);
  3626. }
  3627. .info.lighten-5 {
  3628. color: #9ac4eb !important;
  3629. }
  3630. .bg-info.bg-lighten-5 {
  3631. background-color: #9ac4eb !important;
  3632. }
  3633. .btn-info.btn-lighten-5 {
  3634. border-color: #236bb0 !important;
  3635. background-color: #9ac4eb !important;
  3636. }
  3637. .btn-info.btn-lighten-5:hover {
  3638. border-color: #236bb0 !important;
  3639. background-color: #1f5e9b !important;
  3640. }
  3641. .btn-info.btn-lighten-5:focus,
  3642. .btn-info.btn-lighten-5:active {
  3643. border-color: #1f5e9b !important;
  3644. background-color: #1a5186 !important;
  3645. }
  3646. .btn-outline-info.btn-outline-lighten-5 {
  3647. border-color: #9ac4eb !important;
  3648. color: #9ac4eb !important;
  3649. }
  3650. .btn-outline-info.btn-outline-lighten-5:hover {
  3651. background-color: #9ac4eb !important;
  3652. }
  3653. input:focus ~ .bg-info {
  3654. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #9ac4eb !important;
  3655. }
  3656. .border-info.border-lighten-5 {
  3657. border: 1px solid #9ac4eb !important;
  3658. }
  3659. .border-top-info.border-top-lighten-5 {
  3660. border-top: 1px solid #9ac4eb !important;
  3661. }
  3662. .border-bottom-info.border-bottom-lighten-5 {
  3663. border-bottom: 1px solid #9ac4eb !important;
  3664. }
  3665. .border-left-info.border-left-lighten-5 {
  3666. border-left: 1px solid #9ac4eb !important;
  3667. }
  3668. .border-right-info.border-right-lighten-5 {
  3669. border-right: 1px solid #9ac4eb !important;
  3670. }
  3671. .overlay-info.overlay-lighten-5 {
  3672. background: #9ac4eb;
  3673. /* The Fallback */
  3674. background: rgba(154, 196, 235, 0.6);
  3675. }
  3676. .info.lighten-4 {
  3677. color: #85b7e7 !important;
  3678. }
  3679. .bg-info.bg-lighten-4 {
  3680. background-color: #85b7e7 !important;
  3681. }
  3682. .btn-info.btn-lighten-4 {
  3683. border-color: #236bb0 !important;
  3684. background-color: #85b7e7 !important;
  3685. }
  3686. .btn-info.btn-lighten-4:hover {
  3687. border-color: #236bb0 !important;
  3688. background-color: #1f5e9b !important;
  3689. }
  3690. .btn-info.btn-lighten-4:focus,
  3691. .btn-info.btn-lighten-4:active {
  3692. border-color: #1f5e9b !important;
  3693. background-color: #1a5186 !important;
  3694. }
  3695. .btn-outline-info.btn-outline-lighten-4 {
  3696. border-color: #85b7e7 !important;
  3697. color: #85b7e7 !important;
  3698. }
  3699. .btn-outline-info.btn-outline-lighten-4:hover {
  3700. background-color: #85b7e7 !important;
  3701. }
  3702. input:focus ~ .bg-info {
  3703. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #85b7e7 !important;
  3704. }
  3705. .border-info.border-lighten-4 {
  3706. border: 1px solid #85b7e7 !important;
  3707. }
  3708. .border-top-info.border-top-lighten-4 {
  3709. border-top: 1px solid #85b7e7 !important;
  3710. }
  3711. .border-bottom-info.border-bottom-lighten-4 {
  3712. border-bottom: 1px solid #85b7e7 !important;
  3713. }
  3714. .border-left-info.border-left-lighten-4 {
  3715. border-left: 1px solid #85b7e7 !important;
  3716. }
  3717. .border-right-info.border-right-lighten-4 {
  3718. border-right: 1px solid #85b7e7 !important;
  3719. }
  3720. .overlay-info.overlay-lighten-4 {
  3721. background: #85b7e7;
  3722. /* The Fallback */
  3723. background: rgba(133, 183, 231, 0.6);
  3724. }
  3725. .info.lighten-3 {
  3726. color: #70abe3 !important;
  3727. }
  3728. .bg-info.bg-lighten-3 {
  3729. background-color: #70abe3 !important;
  3730. }
  3731. .btn-info.btn-lighten-3 {
  3732. border-color: #236bb0 !important;
  3733. background-color: #70abe3 !important;
  3734. }
  3735. .btn-info.btn-lighten-3:hover {
  3736. border-color: #236bb0 !important;
  3737. background-color: #1f5e9b !important;
  3738. }
  3739. .btn-info.btn-lighten-3:focus,
  3740. .btn-info.btn-lighten-3:active {
  3741. border-color: #1f5e9b !important;
  3742. background-color: #1a5186 !important;
  3743. }
  3744. .btn-outline-info.btn-outline-lighten-3 {
  3745. border-color: #70abe3 !important;
  3746. color: #70abe3 !important;
  3747. }
  3748. .btn-outline-info.btn-outline-lighten-3:hover {
  3749. background-color: #70abe3 !important;
  3750. }
  3751. input:focus ~ .bg-info {
  3752. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #70abe3 !important;
  3753. }
  3754. .border-info.border-lighten-3 {
  3755. border: 1px solid #70abe3 !important;
  3756. }
  3757. .border-top-info.border-top-lighten-3 {
  3758. border-top: 1px solid #70abe3 !important;
  3759. }
  3760. .border-bottom-info.border-bottom-lighten-3 {
  3761. border-bottom: 1px solid #70abe3 !important;
  3762. }
  3763. .border-left-info.border-left-lighten-3 {
  3764. border-left: 1px solid #70abe3 !important;
  3765. }
  3766. .border-right-info.border-right-lighten-3 {
  3767. border-right: 1px solid #70abe3 !important;
  3768. }
  3769. .overlay-info.overlay-lighten-3 {
  3770. background: #70abe3;
  3771. /* The Fallback */
  3772. background: rgba(112, 171, 227, 0.6);
  3773. }
  3774. .info.lighten-2 {
  3775. color: #5b9ede !important;
  3776. }
  3777. .bg-info.bg-lighten-2 {
  3778. background-color: #5b9ede !important;
  3779. }
  3780. .btn-info.btn-lighten-2 {
  3781. border-color: #236bb0 !important;
  3782. background-color: #5b9ede !important;
  3783. }
  3784. .btn-info.btn-lighten-2:hover {
  3785. border-color: #236bb0 !important;
  3786. background-color: #1f5e9b !important;
  3787. }
  3788. .btn-info.btn-lighten-2:focus,
  3789. .btn-info.btn-lighten-2:active {
  3790. border-color: #1f5e9b !important;
  3791. background-color: #1a5186 !important;
  3792. }
  3793. .btn-outline-info.btn-outline-lighten-2 {
  3794. border-color: #5b9ede !important;
  3795. color: #5b9ede !important;
  3796. }
  3797. .btn-outline-info.btn-outline-lighten-2:hover {
  3798. background-color: #5b9ede !important;
  3799. }
  3800. input:focus ~ .bg-info {
  3801. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #5b9ede !important;
  3802. }
  3803. .border-info.border-lighten-2 {
  3804. border: 1px solid #5b9ede !important;
  3805. }
  3806. .border-top-info.border-top-lighten-2 {
  3807. border-top: 1px solid #5b9ede !important;
  3808. }
  3809. .border-bottom-info.border-bottom-lighten-2 {
  3810. border-bottom: 1px solid #5b9ede !important;
  3811. }
  3812. .border-left-info.border-left-lighten-2 {
  3813. border-left: 1px solid #5b9ede !important;
  3814. }
  3815. .border-right-info.border-right-lighten-2 {
  3816. border-right: 1px solid #5b9ede !important;
  3817. }
  3818. .overlay-info.overlay-lighten-2 {
  3819. background: #5b9ede;
  3820. /* The Fallback */
  3821. background: rgba(91, 158, 222, 0.6);
  3822. }
  3823. .info.lighten-1 {
  3824. color: #4592da !important;
  3825. }
  3826. .bg-info.bg-lighten-1 {
  3827. background-color: #4592da !important;
  3828. }
  3829. .btn-info.btn-lighten-1 {
  3830. border-color: #236bb0 !important;
  3831. background-color: #4592da !important;
  3832. }
  3833. .btn-info.btn-lighten-1:hover {
  3834. border-color: #236bb0 !important;
  3835. background-color: #1f5e9b !important;
  3836. }
  3837. .btn-info.btn-lighten-1:focus,
  3838. .btn-info.btn-lighten-1:active {
  3839. border-color: #1f5e9b !important;
  3840. background-color: #1a5186 !important;
  3841. }
  3842. .btn-outline-info.btn-outline-lighten-1 {
  3843. border-color: #4592da !important;
  3844. color: #4592da !important;
  3845. }
  3846. .btn-outline-info.btn-outline-lighten-1:hover {
  3847. background-color: #4592da !important;
  3848. }
  3849. input:focus ~ .bg-info {
  3850. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #4592da !important;
  3851. }
  3852. .border-info.border-lighten-1 {
  3853. border: 1px solid #4592da !important;
  3854. }
  3855. .border-top-info.border-top-lighten-1 {
  3856. border-top: 1px solid #4592da !important;
  3857. }
  3858. .border-bottom-info.border-bottom-lighten-1 {
  3859. border-bottom: 1px solid #4592da !important;
  3860. }
  3861. .border-left-info.border-left-lighten-1 {
  3862. border-left: 1px solid #4592da !important;
  3863. }
  3864. .border-right-info.border-right-lighten-1 {
  3865. border-right: 1px solid #4592da !important;
  3866. }
  3867. .overlay-info.overlay-lighten-1 {
  3868. background: #4592da;
  3869. /* The Fallback */
  3870. background: rgba(69, 146, 218, 0.6);
  3871. }
  3872. .info {
  3873. color: #3085d6 !important;
  3874. }
  3875. .bg-info {
  3876. background-color: #3085d6 !important;
  3877. }
  3878. .bg-info .card-header,
  3879. .bg-info .card-footer {
  3880. background-color: transparent;
  3881. }
  3882. .alert-info {
  3883. background: rgba(48, 133, 214, 0.2) !important;
  3884. color: #3085d6 !important;
  3885. }
  3886. .alert-info .alert-heading {
  3887. box-shadow: rgba(48, 133, 214, 0.4) 0px 6px 15px -7px;
  3888. }
  3889. .alert-info .alert-link {
  3890. color: #2778c5 !important;
  3891. }
  3892. .bg-rgba-info {
  3893. background: rgba(48, 133, 214, 0.15) !important;
  3894. }
  3895. .border-info {
  3896. border: 1px solid #3085d6 !important;
  3897. }
  3898. .border-top-info {
  3899. border-top: 1px solid #3085d6;
  3900. }
  3901. .border-bottom-info {
  3902. border-bottom: 1px solid #3085d6;
  3903. }
  3904. .border-left-info {
  3905. border-left: 1px solid #3085d6;
  3906. }
  3907. .border-right-info {
  3908. border-right: 1px solid #3085d6;
  3909. }
  3910. .bg-info.badge-glow,
  3911. .border-info.badge-glow,
  3912. .badge-info.badge-glow {
  3913. box-shadow: 0px 0px 10px #3085d6;
  3914. }
  3915. .badge.badge-info {
  3916. background-color: #3085d6;
  3917. }
  3918. .overlay-info {
  3919. background: #3085d6;
  3920. /* The Fallback */
  3921. background: rgba(48, 133, 214, 0.6);
  3922. }
  3923. .btn-info {
  3924. border-color: #236bb0 !important;
  3925. background-color: #3085d6 !important;
  3926. color: #fff;
  3927. }
  3928. .btn-info:hover {
  3929. border-color: #2778c5 !important;
  3930. color: #fff !important;
  3931. box-shadow: 0 8px 25px -8px #3085d6;
  3932. }
  3933. .btn-info:focus,
  3934. .btn-info:active {
  3935. color: #fff !important;
  3936. }
  3937. .btn-flat-info {
  3938. background-color: transparent;
  3939. color: #3085d6;
  3940. }
  3941. .btn-flat-info:hover {
  3942. color: #3085d6;
  3943. background-color: rgba(48, 133, 214, 0.1);
  3944. }
  3945. .btn-flat-info:active,
  3946. .btn-flat-info:focus {
  3947. background-color: #3085d6;
  3948. color: #fff !important;
  3949. }
  3950. .btn-relief-info {
  3951. background-color: #3085d6;
  3952. box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  3953. color: #fff;
  3954. }
  3955. .btn-relief-info:hover {
  3956. color: #fff;
  3957. }
  3958. .btn-relief-info:active,
  3959. .btn-relief-info:focus {
  3960. outline: none;
  3961. transform: translateY(3px);
  3962. }
  3963. .btn-outline-info {
  3964. border: 1px solid #3085d6;
  3965. background-color: transparent;
  3966. color: #3085d6;
  3967. }
  3968. .btn-outline-info:hover {
  3969. background-color: rgba(48, 133, 214, 0.08);
  3970. color: #3085d6;
  3971. }
  3972. .btn-outline-info:active {
  3973. color: #fff !important;
  3974. }
  3975. .btn-info ~ .dropdown-menu .dropdown-item.active,
  3976. .btn-outline-info ~ .dropdown-menu .dropdown-item.active,
  3977. .btn-flat-info ~ .dropdown-menu .dropdown-item.active {
  3978. background-color: #3085d6;
  3979. color: #fff;
  3980. }
  3981. .btn-info ~ .dropdown-menu .dropdown-item.active:hover,
  3982. .btn-outline-info ~ .dropdown-menu .dropdown-item.active:hover,
  3983. .btn-flat-info ~ .dropdown-menu .dropdown-item.active:hover {
  3984. color: #fff;
  3985. }
  3986. .btn-info ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  3987. .btn-outline-info ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  3988. .btn-flat-info ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover {
  3989. color: #3085d6;
  3990. }
  3991. .dropdown.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:hover i,
  3992. .dropdown.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:hover i,
  3993. .dropdown.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:hover i,
  3994. .dropup.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:hover i,
  3995. .dropup.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:hover i,
  3996. .dropup.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:hover i,
  3997. .dropright.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:hover i,
  3998. .dropright.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:hover i,
  3999. .dropright.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:hover i,
  4000. .dropleft.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:hover i,
  4001. .dropleft.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:hover i,
  4002. .dropleft.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:hover i {
  4003. color: #3085d6;
  4004. }
  4005. .dropdown.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:active i,
  4006. .dropdown.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:active i,
  4007. .dropdown.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:active i,
  4008. .dropup.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:active i,
  4009. .dropup.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:active i,
  4010. .dropup.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:active i,
  4011. .dropright.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:active i,
  4012. .dropright.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:active i,
  4013. .dropright.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:active i,
  4014. .dropleft.dropdown-icon-wrapper .btn-info ~ .dropdown-menu .dropdown-item:active i,
  4015. .dropleft.dropdown-icon-wrapper .btn-outline-info ~ .dropdown-menu .dropdown-item:active i,
  4016. .dropleft.dropdown-icon-wrapper .btn-flat-info ~ .dropdown-menu .dropdown-item:active i {
  4017. color: #fff;
  4018. }
  4019. .bullet.bullet-info {
  4020. background-color: #3085d6;
  4021. }
  4022. .pagination-info .page-item.active .page-link {
  4023. background: #3085d6;
  4024. color: #fff;
  4025. }
  4026. .pagination-info .page-item.active .page-link:hover {
  4027. color: #fff;
  4028. }
  4029. .pagination-info .page-item .page-link:hover {
  4030. color: #3085d6;
  4031. }
  4032. .pagination-info .page-item.prev-item .page-link:hover,
  4033. .pagination-info .page-item.next-item .page-link:hover {
  4034. background: #3085d6;
  4035. color: #fff;
  4036. }
  4037. .nav-pill-info .nav-item .nav-link.active {
  4038. color: #fff;
  4039. background-color: #3085d6 !important;
  4040. }
  4041. .progress-bar-info {
  4042. background-color: rgba(48, 133, 214, 0.1);
  4043. }
  4044. .progress-bar-info .progress-bar {
  4045. background-color: #3085d6;
  4046. }
  4047. .chip-info {
  4048. background-color: #3085d6 !important;
  4049. }
  4050. .chip-info .chip-body {
  4051. color: #fff !important;
  4052. }
  4053. .divider.divider-info .divider-text:before,
  4054. .divider.divider-info .divider-text:after {
  4055. border-color: #3085d6 !important;
  4056. }
  4057. input[type=checkbox].bg-info + .custom-control-label:before,
  4058. input[type=radio].bg-info + .custom-control-label:before {
  4059. background-color: #3085d6 !important;
  4060. }
  4061. input:focus ~ .bg-info {
  4062. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #3085d6 !important;
  4063. }
  4064. .vs-checkbox-info input:checked ~ .vs-checkbox {
  4065. border-color: #3085d6 !important;
  4066. }
  4067. .vs-checkbox-info input:checked ~ .vs-checkbox .vs-checkbox--check {
  4068. background-color: #3085d6 !important;
  4069. }
  4070. .vs-checkbox-info input:active:checked + .vs-checkbox .vs-checkbox--check {
  4071. background-color: #3085d6 !important;
  4072. }
  4073. .custom-switch-info .custom-control-input:checked ~ .custom-control-label::before {
  4074. background-color: #3085d6 !important;
  4075. color: #fff;
  4076. transition: all 0.2s ease-out;
  4077. }
  4078. .vs-radio-info input:checked ~ .vs-radio .vs-radio--circle {
  4079. background: #3085d6 !important;
  4080. box-shadow: 0 3px 12px 0 rgba(48, 133, 214, 0.4) !important;
  4081. }
  4082. .info.darken-1 {
  4083. color: #2778c5 !important;
  4084. }
  4085. .bg-info.bg-darken-1 {
  4086. background-color: #2778c5 !important;
  4087. }
  4088. .btn-info.btn-darken-1 {
  4089. border-color: #236bb0 !important;
  4090. background-color: #2778c5 !important;
  4091. }
  4092. .btn-info.btn-darken-1:hover {
  4093. border-color: #236bb0 !important;
  4094. background-color: #1f5e9b !important;
  4095. }
  4096. .btn-info.btn-darken-1:focus,
  4097. .btn-info.btn-darken-1:active {
  4098. border-color: #1f5e9b !important;
  4099. background-color: #1a5186 !important;
  4100. }
  4101. .btn-outline-info.btn-outline-darken-1 {
  4102. border-color: #2778c5 !important;
  4103. color: #2778c5 !important;
  4104. }
  4105. .btn-outline-info.btn-outline-darken-1:hover {
  4106. background-color: #2778c5 !important;
  4107. }
  4108. input:focus ~ .bg-info {
  4109. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #2778c5 !important;
  4110. }
  4111. .border-info.border-darken-1 {
  4112. border: 1px solid #2778c5 !important;
  4113. }
  4114. .border-top-info.border-top-darken-1 {
  4115. border-top: 1px solid #2778c5 !important;
  4116. }
  4117. .border-bottom-info.border-bottom-darken-1 {
  4118. border-bottom: 1px solid #2778c5 !important;
  4119. }
  4120. .border-left-info.border-left-darken-1 {
  4121. border-left: 1px solid #2778c5 !important;
  4122. }
  4123. .border-right-info.border-right-darken-1 {
  4124. border-right: 1px solid #2778c5 !important;
  4125. }
  4126. .overlay-info.overlay-darken-1 {
  4127. background: #2778c5;
  4128. /* The Fallback */
  4129. background: rgba(39, 120, 197, 0.6);
  4130. }
  4131. .info.darken-2 {
  4132. color: #236bb0 !important;
  4133. }
  4134. .bg-info.bg-darken-2 {
  4135. background-color: #236bb0 !important;
  4136. }
  4137. .btn-info.btn-darken-2 {
  4138. border-color: #236bb0 !important;
  4139. background-color: #236bb0 !important;
  4140. }
  4141. .btn-info.btn-darken-2:hover {
  4142. border-color: #236bb0 !important;
  4143. background-color: #1f5e9b !important;
  4144. }
  4145. .btn-info.btn-darken-2:focus,
  4146. .btn-info.btn-darken-2:active {
  4147. border-color: #1f5e9b !important;
  4148. background-color: #1a5186 !important;
  4149. }
  4150. .btn-outline-info.btn-outline-darken-2 {
  4151. border-color: #236bb0 !important;
  4152. color: #236bb0 !important;
  4153. }
  4154. .btn-outline-info.btn-outline-darken-2:hover {
  4155. background-color: #236bb0 !important;
  4156. }
  4157. input:focus ~ .bg-info {
  4158. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #236bb0 !important;
  4159. }
  4160. .border-info.border-darken-2 {
  4161. border: 1px solid #236bb0 !important;
  4162. }
  4163. .border-top-info.border-top-darken-2 {
  4164. border-top: 1px solid #236bb0 !important;
  4165. }
  4166. .border-bottom-info.border-bottom-darken-2 {
  4167. border-bottom: 1px solid #236bb0 !important;
  4168. }
  4169. .border-left-info.border-left-darken-2 {
  4170. border-left: 1px solid #236bb0 !important;
  4171. }
  4172. .border-right-info.border-right-darken-2 {
  4173. border-right: 1px solid #236bb0 !important;
  4174. }
  4175. .overlay-info.overlay-darken-2 {
  4176. background: #236bb0;
  4177. /* The Fallback */
  4178. background: rgba(35, 107, 176, 0.6);
  4179. }
  4180. .info.darken-3 {
  4181. color: #1f5e9b !important;
  4182. }
  4183. .bg-info.bg-darken-3 {
  4184. background-color: #1f5e9b !important;
  4185. }
  4186. .btn-info.btn-darken-3 {
  4187. border-color: #236bb0 !important;
  4188. background-color: #1f5e9b !important;
  4189. }
  4190. .btn-info.btn-darken-3:hover {
  4191. border-color: #236bb0 !important;
  4192. background-color: #1f5e9b !important;
  4193. }
  4194. .btn-info.btn-darken-3:focus,
  4195. .btn-info.btn-darken-3:active {
  4196. border-color: #1f5e9b !important;
  4197. background-color: #1a5186 !important;
  4198. }
  4199. .btn-outline-info.btn-outline-darken-3 {
  4200. border-color: #1f5e9b !important;
  4201. color: #1f5e9b !important;
  4202. }
  4203. .btn-outline-info.btn-outline-darken-3:hover {
  4204. background-color: #1f5e9b !important;
  4205. }
  4206. input:focus ~ .bg-info {
  4207. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #1f5e9b !important;
  4208. }
  4209. .border-info.border-darken-3 {
  4210. border: 1px solid #1f5e9b !important;
  4211. }
  4212. .border-top-info.border-top-darken-3 {
  4213. border-top: 1px solid #1f5e9b !important;
  4214. }
  4215. .border-bottom-info.border-bottom-darken-3 {
  4216. border-bottom: 1px solid #1f5e9b !important;
  4217. }
  4218. .border-left-info.border-left-darken-3 {
  4219. border-left: 1px solid #1f5e9b !important;
  4220. }
  4221. .border-right-info.border-right-darken-3 {
  4222. border-right: 1px solid #1f5e9b !important;
  4223. }
  4224. .overlay-info.overlay-darken-3 {
  4225. background: #1f5e9b;
  4226. /* The Fallback */
  4227. background: rgba(31, 94, 155, 0.6);
  4228. }
  4229. .info.darken-4 {
  4230. color: #1a5186 !important;
  4231. }
  4232. .bg-info.bg-darken-4 {
  4233. background-color: #1a5186 !important;
  4234. }
  4235. .btn-info.btn-darken-4 {
  4236. border-color: #236bb0 !important;
  4237. background-color: #1a5186 !important;
  4238. }
  4239. .btn-info.btn-darken-4:hover {
  4240. border-color: #236bb0 !important;
  4241. background-color: #1f5e9b !important;
  4242. }
  4243. .btn-info.btn-darken-4:focus,
  4244. .btn-info.btn-darken-4:active {
  4245. border-color: #1f5e9b !important;
  4246. background-color: #1a5186 !important;
  4247. }
  4248. .btn-outline-info.btn-outline-darken-4 {
  4249. border-color: #1a5186 !important;
  4250. color: #1a5186 !important;
  4251. }
  4252. .btn-outline-info.btn-outline-darken-4:hover {
  4253. background-color: #1a5186 !important;
  4254. }
  4255. input:focus ~ .bg-info {
  4256. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #1a5186 !important;
  4257. }
  4258. .border-info.border-darken-4 {
  4259. border: 1px solid #1a5186 !important;
  4260. }
  4261. .border-top-info.border-top-darken-4 {
  4262. border-top: 1px solid #1a5186 !important;
  4263. }
  4264. .border-bottom-info.border-bottom-darken-4 {
  4265. border-bottom: 1px solid #1a5186 !important;
  4266. }
  4267. .border-left-info.border-left-darken-4 {
  4268. border-left: 1px solid #1a5186 !important;
  4269. }
  4270. .border-right-info.border-right-darken-4 {
  4271. border-right: 1px solid #1a5186 !important;
  4272. }
  4273. .overlay-info.overlay-darken-4 {
  4274. background: #1a5186;
  4275. /* The Fallback */
  4276. background: rgba(26, 81, 134, 0.6);
  4277. }
  4278. .info.accent-1 {
  4279. color: #FEFFFF !important;
  4280. }
  4281. .bg-info.bg-accent-1 {
  4282. background-color: #FEFFFF !important;
  4283. }
  4284. .btn-info.btn-accent-1 {
  4285. border-color: #236bb0 !important;
  4286. background-color: #FEFFFF !important;
  4287. }
  4288. .btn-info.btn-accent-1:hover {
  4289. border-color: #236bb0 !important;
  4290. background-color: #1f5e9b !important;
  4291. }
  4292. .btn-info.btn-accent-1:focus,
  4293. .btn-info.btn-accent-1:active {
  4294. border-color: #1f5e9b !important;
  4295. background-color: #1a5186 !important;
  4296. }
  4297. .btn-outline-info.btn-outline-accent-1 {
  4298. border-color: #FEFFFF !important;
  4299. color: #FEFFFF !important;
  4300. }
  4301. .btn-outline-info.btn-outline-accent-1:hover {
  4302. background-color: #FEFFFF !important;
  4303. }
  4304. input:focus ~ .bg-info {
  4305. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FEFFFF !important;
  4306. }
  4307. .border-info.border-accent-1 {
  4308. border: 1px solid #FEFFFF !important;
  4309. }
  4310. .border-top-info.border-top-accent-1 {
  4311. border-top: 1px solid #FEFFFF !important;
  4312. }
  4313. .border-bottom-info.border-bottom-accent-1 {
  4314. border-bottom: 1px solid #FEFFFF !important;
  4315. }
  4316. .border-left-info.border-left-accent-1 {
  4317. border-left: 1px solid #FEFFFF !important;
  4318. }
  4319. .border-right-info.border-right-accent-1 {
  4320. border-right: 1px solid #FEFFFF !important;
  4321. }
  4322. .overlay-info.overlay-accent-1 {
  4323. background: #FEFFFF;
  4324. /* The Fallback */
  4325. background: rgba(254, 255, 255, 0.6);
  4326. }
  4327. .info.accent-2 {
  4328. color: #CBF5FF !important;
  4329. }
  4330. .bg-info.bg-accent-2 {
  4331. background-color: #CBF5FF !important;
  4332. }
  4333. .btn-info.btn-accent-2 {
  4334. border-color: #236bb0 !important;
  4335. background-color: #CBF5FF !important;
  4336. }
  4337. .btn-info.btn-accent-2:hover {
  4338. border-color: #236bb0 !important;
  4339. background-color: #1f5e9b !important;
  4340. }
  4341. .btn-info.btn-accent-2:focus,
  4342. .btn-info.btn-accent-2:active {
  4343. border-color: #1f5e9b !important;
  4344. background-color: #1a5186 !important;
  4345. }
  4346. .btn-outline-info.btn-outline-accent-2 {
  4347. border-color: #CBF5FF !important;
  4348. color: #CBF5FF !important;
  4349. }
  4350. .btn-outline-info.btn-outline-accent-2:hover {
  4351. background-color: #CBF5FF !important;
  4352. }
  4353. input:focus ~ .bg-info {
  4354. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #CBF5FF !important;
  4355. }
  4356. .border-info.border-accent-2 {
  4357. border: 1px solid #CBF5FF !important;
  4358. }
  4359. .border-top-info.border-top-accent-2 {
  4360. border-top: 1px solid #CBF5FF !important;
  4361. }
  4362. .border-bottom-info.border-bottom-accent-2 {
  4363. border-bottom: 1px solid #CBF5FF !important;
  4364. }
  4365. .border-left-info.border-left-accent-2 {
  4366. border-left: 1px solid #CBF5FF !important;
  4367. }
  4368. .border-right-info.border-right-accent-2 {
  4369. border-right: 1px solid #CBF5FF !important;
  4370. }
  4371. .overlay-info.overlay-accent-2 {
  4372. background: #CBF5FF;
  4373. /* The Fallback */
  4374. background: rgba(203, 245, 255, 0.6);
  4375. }
  4376. .info.accent-3 {
  4377. color: #98ECFF !important;
  4378. }
  4379. .bg-info.bg-accent-3 {
  4380. background-color: #98ECFF !important;
  4381. }
  4382. .btn-info.btn-accent-3 {
  4383. border-color: #236bb0 !important;
  4384. background-color: #98ECFF !important;
  4385. }
  4386. .btn-info.btn-accent-3:hover {
  4387. border-color: #236bb0 !important;
  4388. background-color: #1f5e9b !important;
  4389. }
  4390. .btn-info.btn-accent-3:focus,
  4391. .btn-info.btn-accent-3:active {
  4392. border-color: #1f5e9b !important;
  4393. background-color: #1a5186 !important;
  4394. }
  4395. .btn-outline-info.btn-outline-accent-3 {
  4396. border-color: #98ECFF !important;
  4397. color: #98ECFF !important;
  4398. }
  4399. .btn-outline-info.btn-outline-accent-3:hover {
  4400. background-color: #98ECFF !important;
  4401. }
  4402. input:focus ~ .bg-info {
  4403. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #98ECFF !important;
  4404. }
  4405. .border-info.border-accent-3 {
  4406. border: 1px solid #98ECFF !important;
  4407. }
  4408. .border-top-info.border-top-accent-3 {
  4409. border-top: 1px solid #98ECFF !important;
  4410. }
  4411. .border-bottom-info.border-bottom-accent-3 {
  4412. border-bottom: 1px solid #98ECFF !important;
  4413. }
  4414. .border-left-info.border-left-accent-3 {
  4415. border-left: 1px solid #98ECFF !important;
  4416. }
  4417. .border-right-info.border-right-accent-3 {
  4418. border-right: 1px solid #98ECFF !important;
  4419. }
  4420. .overlay-info.overlay-accent-3 {
  4421. background: #98ECFF;
  4422. /* The Fallback */
  4423. background: rgba(152, 236, 255, 0.6);
  4424. }
  4425. .info.accent-4 {
  4426. color: #7FE7FF !important;
  4427. }
  4428. .bg-info.bg-accent-4 {
  4429. background-color: #7FE7FF !important;
  4430. }
  4431. .btn-info.btn-accent-4 {
  4432. border-color: #236bb0 !important;
  4433. background-color: #7FE7FF !important;
  4434. }
  4435. .btn-info.btn-accent-4:hover {
  4436. border-color: #236bb0 !important;
  4437. background-color: #1f5e9b !important;
  4438. }
  4439. .btn-info.btn-accent-4:focus,
  4440. .btn-info.btn-accent-4:active {
  4441. border-color: #1f5e9b !important;
  4442. background-color: #1a5186 !important;
  4443. }
  4444. .btn-outline-info.btn-outline-accent-4 {
  4445. border-color: #7FE7FF !important;
  4446. color: #7FE7FF !important;
  4447. }
  4448. .btn-outline-info.btn-outline-accent-4:hover {
  4449. background-color: #7FE7FF !important;
  4450. }
  4451. input:focus ~ .bg-info {
  4452. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #7FE7FF !important;
  4453. }
  4454. .border-info.border-accent-4 {
  4455. border: 1px solid #7FE7FF !important;
  4456. }
  4457. .border-top-info.border-top-accent-4 {
  4458. border-top: 1px solid #7FE7FF !important;
  4459. }
  4460. .border-bottom-info.border-bottom-accent-4 {
  4461. border-bottom: 1px solid #7FE7FF !important;
  4462. }
  4463. .border-left-info.border-left-accent-4 {
  4464. border-left: 1px solid #7FE7FF !important;
  4465. }
  4466. .border-right-info.border-right-accent-4 {
  4467. border-right: 1px solid #7FE7FF !important;
  4468. }
  4469. .overlay-info.overlay-accent-4 {
  4470. background: #7FE7FF;
  4471. /* The Fallback */
  4472. background: rgba(127, 231, 255, 0.6);
  4473. }
  4474. .info.gradient-bg {
  4475. color: #640064 !important;
  4476. }
  4477. .bg-info.bg-gradient-bg {
  4478. background-color: #640064 !important;
  4479. }
  4480. .btn-info.btn-gradient-bg {
  4481. border-color: #236bb0 !important;
  4482. background-color: #640064 !important;
  4483. }
  4484. .btn-info.btn-gradient-bg:hover {
  4485. border-color: #236bb0 !important;
  4486. background-color: #1f5e9b !important;
  4487. }
  4488. .btn-info.btn-gradient-bg:focus,
  4489. .btn-info.btn-gradient-bg:active {
  4490. border-color: #1f5e9b !important;
  4491. background-color: #1a5186 !important;
  4492. }
  4493. .btn-outline-info.btn-outline-gradient-bg {
  4494. border-color: #640064 !important;
  4495. color: #640064 !important;
  4496. }
  4497. .btn-outline-info.btn-outline-gradient-bg:hover {
  4498. background-color: #640064 !important;
  4499. }
  4500. input:focus ~ .bg-info {
  4501. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important;
  4502. }
  4503. .border-info.border-gradient-bg {
  4504. border: 1px solid #640064 !important;
  4505. }
  4506. .border-top-info.border-top-gradient-bg {
  4507. border-top: 1px solid #640064 !important;
  4508. }
  4509. .border-bottom-info.border-bottom-gradient-bg {
  4510. border-bottom: 1px solid #640064 !important;
  4511. }
  4512. .border-left-info.border-left-gradient-bg {
  4513. border-left: 1px solid #640064 !important;
  4514. }
  4515. .border-right-info.border-right-gradient-bg {
  4516. border-right: 1px solid #640064 !important;
  4517. }
  4518. .overlay-info.overlay-gradient-bg {
  4519. background: #640064;
  4520. /* The Fallback */
  4521. background: rgba(100, 0, 100, 0.6);
  4522. }
  4523. .warning.gradient-light {
  4524. color: #eff082 !important;
  4525. }
  4526. .bg-warning.bg-gradient-light {
  4527. background-color: #eff082 !important;
  4528. }
  4529. .btn-warning.btn-gradient-light {
  4530. border-color: #d28d29 !important;
  4531. background-color: #eff082 !important;
  4532. }
  4533. .btn-warning.btn-gradient-light:hover {
  4534. border-color: #d28d29 !important;
  4535. background-color: #bd7f25 !important;
  4536. }
  4537. .btn-warning.btn-gradient-light:focus,
  4538. .btn-warning.btn-gradient-light:active {
  4539. border-color: #bd7f25 !important;
  4540. background-color: #a77121 !important;
  4541. }
  4542. .btn-outline-warning.btn-outline-gradient-light {
  4543. border-color: #eff082 !important;
  4544. color: #eff082 !important;
  4545. }
  4546. .btn-outline-warning.btn-outline-gradient-light:hover {
  4547. background-color: #eff082 !important;
  4548. }
  4549. input:focus ~ .bg-warning {
  4550. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #eff082 !important;
  4551. }
  4552. .border-warning.border-gradient-light {
  4553. border: 1px solid #eff082 !important;
  4554. }
  4555. .border-top-warning.border-top-gradient-light {
  4556. border-top: 1px solid #eff082 !important;
  4557. }
  4558. .border-bottom-warning.border-bottom-gradient-light {
  4559. border-bottom: 1px solid #eff082 !important;
  4560. }
  4561. .border-left-warning.border-left-gradient-light {
  4562. border-left: 1px solid #eff082 !important;
  4563. }
  4564. .border-right-warning.border-right-gradient-light {
  4565. border-right: 1px solid #eff082 !important;
  4566. }
  4567. .overlay-warning.overlay-gradient-light {
  4568. background: #eff082;
  4569. /* The Fallback */
  4570. background: rgba(239, 240, 130, 0.6);
  4571. }
  4572. .warning.lighten-5 {
  4573. color: #f2dcbc !important;
  4574. }
  4575. .bg-warning.bg-lighten-5 {
  4576. background-color: #f2dcbc !important;
  4577. }
  4578. .btn-warning.btn-lighten-5 {
  4579. border-color: #d28d29 !important;
  4580. background-color: #f2dcbc !important;
  4581. }
  4582. .btn-warning.btn-lighten-5:hover {
  4583. border-color: #d28d29 !important;
  4584. background-color: #bd7f25 !important;
  4585. }
  4586. .btn-warning.btn-lighten-5:focus,
  4587. .btn-warning.btn-lighten-5:active {
  4588. border-color: #bd7f25 !important;
  4589. background-color: #a77121 !important;
  4590. }
  4591. .btn-outline-warning.btn-outline-lighten-5 {
  4592. border-color: #f2dcbc !important;
  4593. color: #f2dcbc !important;
  4594. }
  4595. .btn-outline-warning.btn-outline-lighten-5:hover {
  4596. background-color: #f2dcbc !important;
  4597. }
  4598. input:focus ~ .bg-warning {
  4599. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f2dcbc !important;
  4600. }
  4601. .border-warning.border-lighten-5 {
  4602. border: 1px solid #f2dcbc !important;
  4603. }
  4604. .border-top-warning.border-top-lighten-5 {
  4605. border-top: 1px solid #f2dcbc !important;
  4606. }
  4607. .border-bottom-warning.border-bottom-lighten-5 {
  4608. border-bottom: 1px solid #f2dcbc !important;
  4609. }
  4610. .border-left-warning.border-left-lighten-5 {
  4611. border-left: 1px solid #f2dcbc !important;
  4612. }
  4613. .border-right-warning.border-right-lighten-5 {
  4614. border-right: 1px solid #f2dcbc !important;
  4615. }
  4616. .overlay-warning.overlay-lighten-5 {
  4617. background: #f2dcbc;
  4618. /* The Fallback */
  4619. background: rgba(242, 220, 188, 0.6);
  4620. }
  4621. .warning.lighten-4 {
  4622. color: #eed1a6 !important;
  4623. }
  4624. .bg-warning.bg-lighten-4 {
  4625. background-color: #eed1a6 !important;
  4626. }
  4627. .btn-warning.btn-lighten-4 {
  4628. border-color: #d28d29 !important;
  4629. background-color: #eed1a6 !important;
  4630. }
  4631. .btn-warning.btn-lighten-4:hover {
  4632. border-color: #d28d29 !important;
  4633. background-color: #bd7f25 !important;
  4634. }
  4635. .btn-warning.btn-lighten-4:focus,
  4636. .btn-warning.btn-lighten-4:active {
  4637. border-color: #bd7f25 !important;
  4638. background-color: #a77121 !important;
  4639. }
  4640. .btn-outline-warning.btn-outline-lighten-4 {
  4641. border-color: #eed1a6 !important;
  4642. color: #eed1a6 !important;
  4643. }
  4644. .btn-outline-warning.btn-outline-lighten-4:hover {
  4645. background-color: #eed1a6 !important;
  4646. }
  4647. input:focus ~ .bg-warning {
  4648. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #eed1a6 !important;
  4649. }
  4650. .border-warning.border-lighten-4 {
  4651. border: 1px solid #eed1a6 !important;
  4652. }
  4653. .border-top-warning.border-top-lighten-4 {
  4654. border-top: 1px solid #eed1a6 !important;
  4655. }
  4656. .border-bottom-warning.border-bottom-lighten-4 {
  4657. border-bottom: 1px solid #eed1a6 !important;
  4658. }
  4659. .border-left-warning.border-left-lighten-4 {
  4660. border-left: 1px solid #eed1a6 !important;
  4661. }
  4662. .border-right-warning.border-right-lighten-4 {
  4663. border-right: 1px solid #eed1a6 !important;
  4664. }
  4665. .overlay-warning.overlay-lighten-4 {
  4666. background: #eed1a6;
  4667. /* The Fallback */
  4668. background: rgba(238, 209, 166, 0.6);
  4669. }
  4670. .warning.lighten-3 {
  4671. color: #eac591 !important;
  4672. }
  4673. .bg-warning.bg-lighten-3 {
  4674. background-color: #eac591 !important;
  4675. }
  4676. .btn-warning.btn-lighten-3 {
  4677. border-color: #d28d29 !important;
  4678. background-color: #eac591 !important;
  4679. }
  4680. .btn-warning.btn-lighten-3:hover {
  4681. border-color: #d28d29 !important;
  4682. background-color: #bd7f25 !important;
  4683. }
  4684. .btn-warning.btn-lighten-3:focus,
  4685. .btn-warning.btn-lighten-3:active {
  4686. border-color: #bd7f25 !important;
  4687. background-color: #a77121 !important;
  4688. }
  4689. .btn-outline-warning.btn-outline-lighten-3 {
  4690. border-color: #eac591 !important;
  4691. color: #eac591 !important;
  4692. }
  4693. .btn-outline-warning.btn-outline-lighten-3:hover {
  4694. background-color: #eac591 !important;
  4695. }
  4696. input:focus ~ .bg-warning {
  4697. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #eac591 !important;
  4698. }
  4699. .border-warning.border-lighten-3 {
  4700. border: 1px solid #eac591 !important;
  4701. }
  4702. .border-top-warning.border-top-lighten-3 {
  4703. border-top: 1px solid #eac591 !important;
  4704. }
  4705. .border-bottom-warning.border-bottom-lighten-3 {
  4706. border-bottom: 1px solid #eac591 !important;
  4707. }
  4708. .border-left-warning.border-left-lighten-3 {
  4709. border-left: 1px solid #eac591 !important;
  4710. }
  4711. .border-right-warning.border-right-lighten-3 {
  4712. border-right: 1px solid #eac591 !important;
  4713. }
  4714. .overlay-warning.overlay-lighten-3 {
  4715. background: #eac591;
  4716. /* The Fallback */
  4717. background: rgba(234, 197, 145, 0.6);
  4718. }
  4719. .warning.lighten-2 {
  4720. color: #e5ba7c !important;
  4721. }
  4722. .bg-warning.bg-lighten-2 {
  4723. background-color: #e5ba7c !important;
  4724. }
  4725. .btn-warning.btn-lighten-2 {
  4726. border-color: #d28d29 !important;
  4727. background-color: #e5ba7c !important;
  4728. }
  4729. .btn-warning.btn-lighten-2:hover {
  4730. border-color: #d28d29 !important;
  4731. background-color: #bd7f25 !important;
  4732. }
  4733. .btn-warning.btn-lighten-2:focus,
  4734. .btn-warning.btn-lighten-2:active {
  4735. border-color: #bd7f25 !important;
  4736. background-color: #a77121 !important;
  4737. }
  4738. .btn-outline-warning.btn-outline-lighten-2 {
  4739. border-color: #e5ba7c !important;
  4740. color: #e5ba7c !important;
  4741. }
  4742. .btn-outline-warning.btn-outline-lighten-2:hover {
  4743. background-color: #e5ba7c !important;
  4744. }
  4745. input:focus ~ .bg-warning {
  4746. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #e5ba7c !important;
  4747. }
  4748. .border-warning.border-lighten-2 {
  4749. border: 1px solid #e5ba7c !important;
  4750. }
  4751. .border-top-warning.border-top-lighten-2 {
  4752. border-top: 1px solid #e5ba7c !important;
  4753. }
  4754. .border-bottom-warning.border-bottom-lighten-2 {
  4755. border-bottom: 1px solid #e5ba7c !important;
  4756. }
  4757. .border-left-warning.border-left-lighten-2 {
  4758. border-left: 1px solid #e5ba7c !important;
  4759. }
  4760. .border-right-warning.border-right-lighten-2 {
  4761. border-right: 1px solid #e5ba7c !important;
  4762. }
  4763. .overlay-warning.overlay-lighten-2 {
  4764. background: #e5ba7c;
  4765. /* The Fallback */
  4766. background: rgba(229, 186, 124, 0.6);
  4767. }
  4768. .warning.lighten-1 {
  4769. color: #e1af66 !important;
  4770. }
  4771. .bg-warning.bg-lighten-1 {
  4772. background-color: #e1af66 !important;
  4773. }
  4774. .btn-warning.btn-lighten-1 {
  4775. border-color: #d28d29 !important;
  4776. background-color: #e1af66 !important;
  4777. }
  4778. .btn-warning.btn-lighten-1:hover {
  4779. border-color: #d28d29 !important;
  4780. background-color: #bd7f25 !important;
  4781. }
  4782. .btn-warning.btn-lighten-1:focus,
  4783. .btn-warning.btn-lighten-1:active {
  4784. border-color: #bd7f25 !important;
  4785. background-color: #a77121 !important;
  4786. }
  4787. .btn-outline-warning.btn-outline-lighten-1 {
  4788. border-color: #e1af66 !important;
  4789. color: #e1af66 !important;
  4790. }
  4791. .btn-outline-warning.btn-outline-lighten-1:hover {
  4792. background-color: #e1af66 !important;
  4793. }
  4794. input:focus ~ .bg-warning {
  4795. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #e1af66 !important;
  4796. }
  4797. .border-warning.border-lighten-1 {
  4798. border: 1px solid #e1af66 !important;
  4799. }
  4800. .border-top-warning.border-top-lighten-1 {
  4801. border-top: 1px solid #e1af66 !important;
  4802. }
  4803. .border-bottom-warning.border-bottom-lighten-1 {
  4804. border-bottom: 1px solid #e1af66 !important;
  4805. }
  4806. .border-left-warning.border-left-lighten-1 {
  4807. border-left: 1px solid #e1af66 !important;
  4808. }
  4809. .border-right-warning.border-right-lighten-1 {
  4810. border-right: 1px solid #e1af66 !important;
  4811. }
  4812. .overlay-warning.overlay-lighten-1 {
  4813. background: #e1af66;
  4814. /* The Fallback */
  4815. background: rgba(225, 175, 102, 0.6);
  4816. }
  4817. .warning {
  4818. color: #dda451 !important;
  4819. }
  4820. .bg-warning {
  4821. background-color: #dda451 !important;
  4822. }
  4823. .bg-warning .card-header,
  4824. .bg-warning .card-footer {
  4825. background-color: transparent;
  4826. }
  4827. .alert-warning {
  4828. background: rgba(221, 164, 81, 0.2) !important;
  4829. color: #dda451 !important;
  4830. }
  4831. .alert-warning .alert-heading {
  4832. box-shadow: rgba(221, 164, 81, 0.4) 0px 6px 15px -7px;
  4833. }
  4834. .alert-warning .alert-link {
  4835. color: #d9993c !important;
  4836. }
  4837. .bg-rgba-warning {
  4838. background: rgba(221, 164, 81, 0.15) !important;
  4839. }
  4840. .border-warning {
  4841. border: 1px solid #dda451 !important;
  4842. }
  4843. .border-top-warning {
  4844. border-top: 1px solid #dda451;
  4845. }
  4846. .border-bottom-warning {
  4847. border-bottom: 1px solid #dda451;
  4848. }
  4849. .border-left-warning {
  4850. border-left: 1px solid #dda451;
  4851. }
  4852. .border-right-warning {
  4853. border-right: 1px solid #dda451;
  4854. }
  4855. .bg-warning.badge-glow,
  4856. .border-warning.badge-glow,
  4857. .badge-warning.badge-glow {
  4858. box-shadow: 0px 0px 10px #dda451;
  4859. }
  4860. .badge.badge-warning {
  4861. background-color: #dda451;
  4862. }
  4863. .overlay-warning {
  4864. background: #dda451;
  4865. /* The Fallback */
  4866. background: rgba(221, 164, 81, 0.6);
  4867. }
  4868. .btn-warning {
  4869. border-color: #d28d29 !important;
  4870. background-color: #dda451 !important;
  4871. color: #fff;
  4872. }
  4873. .btn-warning:hover {
  4874. border-color: #d9993c !important;
  4875. color: #fff !important;
  4876. box-shadow: 0 8px 25px -8px #dda451;
  4877. }
  4878. .btn-warning:focus,
  4879. .btn-warning:active {
  4880. color: #fff !important;
  4881. }
  4882. .btn-flat-warning {
  4883. background-color: transparent;
  4884. color: #dda451;
  4885. }
  4886. .btn-flat-warning:hover {
  4887. color: #dda451;
  4888. background-color: rgba(221, 164, 81, 0.1);
  4889. }
  4890. .btn-flat-warning:active,
  4891. .btn-flat-warning:focus {
  4892. background-color: #dda451;
  4893. color: #fff !important;
  4894. }
  4895. .btn-relief-warning {
  4896. background-color: #dda451;
  4897. box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  4898. color: #fff;
  4899. }
  4900. .btn-relief-warning:hover {
  4901. color: #fff;
  4902. }
  4903. .btn-relief-warning:active,
  4904. .btn-relief-warning:focus {
  4905. outline: none;
  4906. transform: translateY(3px);
  4907. }
  4908. .btn-outline-warning {
  4909. border: 1px solid #dda451;
  4910. background-color: transparent;
  4911. color: #dda451;
  4912. }
  4913. .btn-outline-warning:hover {
  4914. background-color: rgba(221, 164, 81, 0.08);
  4915. color: #dda451;
  4916. }
  4917. .btn-outline-warning:active {
  4918. color: #fff !important;
  4919. }
  4920. .btn-warning ~ .dropdown-menu .dropdown-item.active,
  4921. .btn-outline-warning ~ .dropdown-menu .dropdown-item.active,
  4922. .btn-flat-warning ~ .dropdown-menu .dropdown-item.active {
  4923. background-color: #dda451;
  4924. color: #fff;
  4925. }
  4926. .btn-warning ~ .dropdown-menu .dropdown-item.active:hover,
  4927. .btn-outline-warning ~ .dropdown-menu .dropdown-item.active:hover,
  4928. .btn-flat-warning ~ .dropdown-menu .dropdown-item.active:hover {
  4929. color: #fff;
  4930. }
  4931. .btn-warning ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  4932. .btn-outline-warning ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  4933. .btn-flat-warning ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover {
  4934. color: #dda451;
  4935. }
  4936. .dropdown.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:hover i,
  4937. .dropdown.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:hover i,
  4938. .dropdown.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:hover i,
  4939. .dropup.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:hover i,
  4940. .dropup.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:hover i,
  4941. .dropup.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:hover i,
  4942. .dropright.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:hover i,
  4943. .dropright.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:hover i,
  4944. .dropright.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:hover i,
  4945. .dropleft.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:hover i,
  4946. .dropleft.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:hover i,
  4947. .dropleft.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:hover i {
  4948. color: #dda451;
  4949. }
  4950. .dropdown.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:active i,
  4951. .dropdown.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:active i,
  4952. .dropdown.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:active i,
  4953. .dropup.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:active i,
  4954. .dropup.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:active i,
  4955. .dropup.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:active i,
  4956. .dropright.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:active i,
  4957. .dropright.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:active i,
  4958. .dropright.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:active i,
  4959. .dropleft.dropdown-icon-wrapper .btn-warning ~ .dropdown-menu .dropdown-item:active i,
  4960. .dropleft.dropdown-icon-wrapper .btn-outline-warning ~ .dropdown-menu .dropdown-item:active i,
  4961. .dropleft.dropdown-icon-wrapper .btn-flat-warning ~ .dropdown-menu .dropdown-item:active i {
  4962. color: #fff;
  4963. }
  4964. .bullet.bullet-warning {
  4965. background-color: #dda451;
  4966. }
  4967. .pagination-warning .page-item.active .page-link {
  4968. background: #dda451;
  4969. color: #fff;
  4970. }
  4971. .pagination-warning .page-item.active .page-link:hover {
  4972. color: #fff;
  4973. }
  4974. .pagination-warning .page-item .page-link:hover {
  4975. color: #dda451;
  4976. }
  4977. .pagination-warning .page-item.prev-item .page-link:hover,
  4978. .pagination-warning .page-item.next-item .page-link:hover {
  4979. background: #dda451;
  4980. color: #fff;
  4981. }
  4982. .nav-pill-warning .nav-item .nav-link.active {
  4983. color: #fff;
  4984. background-color: #dda451 !important;
  4985. }
  4986. .progress-bar-warning {
  4987. background-color: rgba(221, 164, 81, 0.1);
  4988. }
  4989. .progress-bar-warning .progress-bar {
  4990. background-color: #dda451;
  4991. }
  4992. .chip-warning {
  4993. background-color: #dda451 !important;
  4994. }
  4995. .chip-warning .chip-body {
  4996. color: #fff !important;
  4997. }
  4998. .divider.divider-warning .divider-text:before,
  4999. .divider.divider-warning .divider-text:after {
  5000. border-color: #dda451 !important;
  5001. }
  5002. input[type=checkbox].bg-warning + .custom-control-label:before,
  5003. input[type=radio].bg-warning + .custom-control-label:before {
  5004. background-color: #dda451 !important;
  5005. }
  5006. input:focus ~ .bg-warning {
  5007. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #dda451 !important;
  5008. }
  5009. .vs-checkbox-warning input:checked ~ .vs-checkbox {
  5010. border-color: #dda451 !important;
  5011. }
  5012. .vs-checkbox-warning input:checked ~ .vs-checkbox .vs-checkbox--check {
  5013. background-color: #dda451 !important;
  5014. }
  5015. .vs-checkbox-warning input:active:checked + .vs-checkbox .vs-checkbox--check {
  5016. background-color: #dda451 !important;
  5017. }
  5018. .custom-switch-warning .custom-control-input:checked ~ .custom-control-label::before {
  5019. background-color: #dda451 !important;
  5020. color: #fff;
  5021. transition: all 0.2s ease-out;
  5022. }
  5023. .vs-radio-warning input:checked ~ .vs-radio .vs-radio--circle {
  5024. background: #dda451 !important;
  5025. box-shadow: 0 3px 12px 0 rgba(221, 164, 81, 0.4) !important;
  5026. }
  5027. .warning.darken-1 {
  5028. color: #d9993c !important;
  5029. }
  5030. .bg-warning.bg-darken-1 {
  5031. background-color: #d9993c !important;
  5032. }
  5033. .btn-warning.btn-darken-1 {
  5034. border-color: #d28d29 !important;
  5035. background-color: #d9993c !important;
  5036. }
  5037. .btn-warning.btn-darken-1:hover {
  5038. border-color: #d28d29 !important;
  5039. background-color: #bd7f25 !important;
  5040. }
  5041. .btn-warning.btn-darken-1:focus,
  5042. .btn-warning.btn-darken-1:active {
  5043. border-color: #bd7f25 !important;
  5044. background-color: #a77121 !important;
  5045. }
  5046. .btn-outline-warning.btn-outline-darken-1 {
  5047. border-color: #d9993c !important;
  5048. color: #d9993c !important;
  5049. }
  5050. .btn-outline-warning.btn-outline-darken-1:hover {
  5051. background-color: #d9993c !important;
  5052. }
  5053. input:focus ~ .bg-warning {
  5054. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #d9993c !important;
  5055. }
  5056. .border-warning.border-darken-1 {
  5057. border: 1px solid #d9993c !important;
  5058. }
  5059. .border-top-warning.border-top-darken-1 {
  5060. border-top: 1px solid #d9993c !important;
  5061. }
  5062. .border-bottom-warning.border-bottom-darken-1 {
  5063. border-bottom: 1px solid #d9993c !important;
  5064. }
  5065. .border-left-warning.border-left-darken-1 {
  5066. border-left: 1px solid #d9993c !important;
  5067. }
  5068. .border-right-warning.border-right-darken-1 {
  5069. border-right: 1px solid #d9993c !important;
  5070. }
  5071. .overlay-warning.overlay-darken-1 {
  5072. background: #d9993c;
  5073. /* The Fallback */
  5074. background: rgba(217, 153, 60, 0.6);
  5075. }
  5076. .warning.darken-2 {
  5077. color: #d28d29 !important;
  5078. }
  5079. .bg-warning.bg-darken-2 {
  5080. background-color: #d28d29 !important;
  5081. }
  5082. .btn-warning.btn-darken-2 {
  5083. border-color: #d28d29 !important;
  5084. background-color: #d28d29 !important;
  5085. }
  5086. .btn-warning.btn-darken-2:hover {
  5087. border-color: #d28d29 !important;
  5088. background-color: #bd7f25 !important;
  5089. }
  5090. .btn-warning.btn-darken-2:focus,
  5091. .btn-warning.btn-darken-2:active {
  5092. border-color: #bd7f25 !important;
  5093. background-color: #a77121 !important;
  5094. }
  5095. .btn-outline-warning.btn-outline-darken-2 {
  5096. border-color: #d28d29 !important;
  5097. color: #d28d29 !important;
  5098. }
  5099. .btn-outline-warning.btn-outline-darken-2:hover {
  5100. background-color: #d28d29 !important;
  5101. }
  5102. input:focus ~ .bg-warning {
  5103. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #d28d29 !important;
  5104. }
  5105. .border-warning.border-darken-2 {
  5106. border: 1px solid #d28d29 !important;
  5107. }
  5108. .border-top-warning.border-top-darken-2 {
  5109. border-top: 1px solid #d28d29 !important;
  5110. }
  5111. .border-bottom-warning.border-bottom-darken-2 {
  5112. border-bottom: 1px solid #d28d29 !important;
  5113. }
  5114. .border-left-warning.border-left-darken-2 {
  5115. border-left: 1px solid #d28d29 !important;
  5116. }
  5117. .border-right-warning.border-right-darken-2 {
  5118. border-right: 1px solid #d28d29 !important;
  5119. }
  5120. .overlay-warning.overlay-darken-2 {
  5121. background: #d28d29;
  5122. /* The Fallback */
  5123. background: rgba(210, 141, 41, 0.6);
  5124. }
  5125. .warning.darken-3 {
  5126. color: #bd7f25 !important;
  5127. }
  5128. .bg-warning.bg-darken-3 {
  5129. background-color: #bd7f25 !important;
  5130. }
  5131. .btn-warning.btn-darken-3 {
  5132. border-color: #d28d29 !important;
  5133. background-color: #bd7f25 !important;
  5134. }
  5135. .btn-warning.btn-darken-3:hover {
  5136. border-color: #d28d29 !important;
  5137. background-color: #bd7f25 !important;
  5138. }
  5139. .btn-warning.btn-darken-3:focus,
  5140. .btn-warning.btn-darken-3:active {
  5141. border-color: #bd7f25 !important;
  5142. background-color: #a77121 !important;
  5143. }
  5144. .btn-outline-warning.btn-outline-darken-3 {
  5145. border-color: #bd7f25 !important;
  5146. color: #bd7f25 !important;
  5147. }
  5148. .btn-outline-warning.btn-outline-darken-3:hover {
  5149. background-color: #bd7f25 !important;
  5150. }
  5151. input:focus ~ .bg-warning {
  5152. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #bd7f25 !important;
  5153. }
  5154. .border-warning.border-darken-3 {
  5155. border: 1px solid #bd7f25 !important;
  5156. }
  5157. .border-top-warning.border-top-darken-3 {
  5158. border-top: 1px solid #bd7f25 !important;
  5159. }
  5160. .border-bottom-warning.border-bottom-darken-3 {
  5161. border-bottom: 1px solid #bd7f25 !important;
  5162. }
  5163. .border-left-warning.border-left-darken-3 {
  5164. border-left: 1px solid #bd7f25 !important;
  5165. }
  5166. .border-right-warning.border-right-darken-3 {
  5167. border-right: 1px solid #bd7f25 !important;
  5168. }
  5169. .overlay-warning.overlay-darken-3 {
  5170. background: #bd7f25;
  5171. /* The Fallback */
  5172. background: rgba(189, 127, 37, 0.6);
  5173. }
  5174. .warning.darken-4 {
  5175. color: #a77121 !important;
  5176. }
  5177. .bg-warning.bg-darken-4 {
  5178. background-color: #a77121 !important;
  5179. }
  5180. .btn-warning.btn-darken-4 {
  5181. border-color: #d28d29 !important;
  5182. background-color: #a77121 !important;
  5183. }
  5184. .btn-warning.btn-darken-4:hover {
  5185. border-color: #d28d29 !important;
  5186. background-color: #bd7f25 !important;
  5187. }
  5188. .btn-warning.btn-darken-4:focus,
  5189. .btn-warning.btn-darken-4:active {
  5190. border-color: #bd7f25 !important;
  5191. background-color: #a77121 !important;
  5192. }
  5193. .btn-outline-warning.btn-outline-darken-4 {
  5194. border-color: #a77121 !important;
  5195. color: #a77121 !important;
  5196. }
  5197. .btn-outline-warning.btn-outline-darken-4:hover {
  5198. background-color: #a77121 !important;
  5199. }
  5200. input:focus ~ .bg-warning {
  5201. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #a77121 !important;
  5202. }
  5203. .border-warning.border-darken-4 {
  5204. border: 1px solid #a77121 !important;
  5205. }
  5206. .border-top-warning.border-top-darken-4 {
  5207. border-top: 1px solid #a77121 !important;
  5208. }
  5209. .border-bottom-warning.border-bottom-darken-4 {
  5210. border-bottom: 1px solid #a77121 !important;
  5211. }
  5212. .border-left-warning.border-left-darken-4 {
  5213. border-left: 1px solid #a77121 !important;
  5214. }
  5215. .border-right-warning.border-right-darken-4 {
  5216. border-right: 1px solid #a77121 !important;
  5217. }
  5218. .overlay-warning.overlay-darken-4 {
  5219. background: #a77121;
  5220. /* The Fallback */
  5221. background: rgba(167, 113, 33, 0.6);
  5222. }
  5223. .warning.accent-1 {
  5224. color: #FFF5EF !important;
  5225. }
  5226. .bg-warning.bg-accent-1 {
  5227. background-color: #FFF5EF !important;
  5228. }
  5229. .btn-warning.btn-accent-1 {
  5230. border-color: #d28d29 !important;
  5231. background-color: #FFF5EF !important;
  5232. }
  5233. .btn-warning.btn-accent-1:hover {
  5234. border-color: #d28d29 !important;
  5235. background-color: #bd7f25 !important;
  5236. }
  5237. .btn-warning.btn-accent-1:focus,
  5238. .btn-warning.btn-accent-1:active {
  5239. border-color: #bd7f25 !important;
  5240. background-color: #a77121 !important;
  5241. }
  5242. .btn-outline-warning.btn-outline-accent-1 {
  5243. border-color: #FFF5EF !important;
  5244. color: #FFF5EF !important;
  5245. }
  5246. .btn-outline-warning.btn-outline-accent-1:hover {
  5247. background-color: #FFF5EF !important;
  5248. }
  5249. input:focus ~ .bg-warning {
  5250. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFF5EF !important;
  5251. }
  5252. .border-warning.border-accent-1 {
  5253. border: 1px solid #FFF5EF !important;
  5254. }
  5255. .border-top-warning.border-top-accent-1 {
  5256. border-top: 1px solid #FFF5EF !important;
  5257. }
  5258. .border-bottom-warning.border-bottom-accent-1 {
  5259. border-bottom: 1px solid #FFF5EF !important;
  5260. }
  5261. .border-left-warning.border-left-accent-1 {
  5262. border-left: 1px solid #FFF5EF !important;
  5263. }
  5264. .border-right-warning.border-right-accent-1 {
  5265. border-right: 1px solid #FFF5EF !important;
  5266. }
  5267. .overlay-warning.overlay-accent-1 {
  5268. background: #FFF5EF;
  5269. /* The Fallback */
  5270. background: rgba(255, 245, 239, 0.6);
  5271. }
  5272. .warning.accent-2 {
  5273. color: #FFE5D8 !important;
  5274. }
  5275. .bg-warning.bg-accent-2 {
  5276. background-color: #FFE5D8 !important;
  5277. }
  5278. .btn-warning.btn-accent-2 {
  5279. border-color: #d28d29 !important;
  5280. background-color: #FFE5D8 !important;
  5281. }
  5282. .btn-warning.btn-accent-2:hover {
  5283. border-color: #d28d29 !important;
  5284. background-color: #bd7f25 !important;
  5285. }
  5286. .btn-warning.btn-accent-2:focus,
  5287. .btn-warning.btn-accent-2:active {
  5288. border-color: #bd7f25 !important;
  5289. background-color: #a77121 !important;
  5290. }
  5291. .btn-outline-warning.btn-outline-accent-2 {
  5292. border-color: #FFE5D8 !important;
  5293. color: #FFE5D8 !important;
  5294. }
  5295. .btn-outline-warning.btn-outline-accent-2:hover {
  5296. background-color: #FFE5D8 !important;
  5297. }
  5298. input:focus ~ .bg-warning {
  5299. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFE5D8 !important;
  5300. }
  5301. .border-warning.border-accent-2 {
  5302. border: 1px solid #FFE5D8 !important;
  5303. }
  5304. .border-top-warning.border-top-accent-2 {
  5305. border-top: 1px solid #FFE5D8 !important;
  5306. }
  5307. .border-bottom-warning.border-bottom-accent-2 {
  5308. border-bottom: 1px solid #FFE5D8 !important;
  5309. }
  5310. .border-left-warning.border-left-accent-2 {
  5311. border-left: 1px solid #FFE5D8 !important;
  5312. }
  5313. .border-right-warning.border-right-accent-2 {
  5314. border-right: 1px solid #FFE5D8 !important;
  5315. }
  5316. .overlay-warning.overlay-accent-2 {
  5317. background: #FFE5D8;
  5318. /* The Fallback */
  5319. background: rgba(255, 229, 216, 0.6);
  5320. }
  5321. .warning.accent-3 {
  5322. color: #FFF6F3 !important;
  5323. }
  5324. .bg-warning.bg-accent-3 {
  5325. background-color: #FFF6F3 !important;
  5326. }
  5327. .btn-warning.btn-accent-3 {
  5328. border-color: #d28d29 !important;
  5329. background-color: #FFF6F3 !important;
  5330. }
  5331. .btn-warning.btn-accent-3:hover {
  5332. border-color: #d28d29 !important;
  5333. background-color: #bd7f25 !important;
  5334. }
  5335. .btn-warning.btn-accent-3:focus,
  5336. .btn-warning.btn-accent-3:active {
  5337. border-color: #bd7f25 !important;
  5338. background-color: #a77121 !important;
  5339. }
  5340. .btn-outline-warning.btn-outline-accent-3 {
  5341. border-color: #FFF6F3 !important;
  5342. color: #FFF6F3 !important;
  5343. }
  5344. .btn-outline-warning.btn-outline-accent-3:hover {
  5345. background-color: #FFF6F3 !important;
  5346. }
  5347. input:focus ~ .bg-warning {
  5348. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFF6F3 !important;
  5349. }
  5350. .border-warning.border-accent-3 {
  5351. border: 1px solid #FFF6F3 !important;
  5352. }
  5353. .border-top-warning.border-top-accent-3 {
  5354. border-top: 1px solid #FFF6F3 !important;
  5355. }
  5356. .border-bottom-warning.border-bottom-accent-3 {
  5357. border-bottom: 1px solid #FFF6F3 !important;
  5358. }
  5359. .border-left-warning.border-left-accent-3 {
  5360. border-left: 1px solid #FFF6F3 !important;
  5361. }
  5362. .border-right-warning.border-right-accent-3 {
  5363. border-right: 1px solid #FFF6F3 !important;
  5364. }
  5365. .overlay-warning.overlay-accent-3 {
  5366. background: #FFF6F3;
  5367. /* The Fallback */
  5368. background: rgba(255, 246, 243, 0.6);
  5369. }
  5370. .warning.accent-4 {
  5371. color: #FFE3DA !important;
  5372. }
  5373. .bg-warning.bg-accent-4 {
  5374. background-color: #FFE3DA !important;
  5375. }
  5376. .btn-warning.btn-accent-4 {
  5377. border-color: #d28d29 !important;
  5378. background-color: #FFE3DA !important;
  5379. }
  5380. .btn-warning.btn-accent-4:hover {
  5381. border-color: #d28d29 !important;
  5382. background-color: #bd7f25 !important;
  5383. }
  5384. .btn-warning.btn-accent-4:focus,
  5385. .btn-warning.btn-accent-4:active {
  5386. border-color: #bd7f25 !important;
  5387. background-color: #a77121 !important;
  5388. }
  5389. .btn-outline-warning.btn-outline-accent-4 {
  5390. border-color: #FFE3DA !important;
  5391. color: #FFE3DA !important;
  5392. }
  5393. .btn-outline-warning.btn-outline-accent-4:hover {
  5394. background-color: #FFE3DA !important;
  5395. }
  5396. input:focus ~ .bg-warning {
  5397. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFE3DA !important;
  5398. }
  5399. .border-warning.border-accent-4 {
  5400. border: 1px solid #FFE3DA !important;
  5401. }
  5402. .border-top-warning.border-top-accent-4 {
  5403. border-top: 1px solid #FFE3DA !important;
  5404. }
  5405. .border-bottom-warning.border-bottom-accent-4 {
  5406. border-bottom: 1px solid #FFE3DA !important;
  5407. }
  5408. .border-left-warning.border-left-accent-4 {
  5409. border-left: 1px solid #FFE3DA !important;
  5410. }
  5411. .border-right-warning.border-right-accent-4 {
  5412. border-right: 1px solid #FFE3DA !important;
  5413. }
  5414. .overlay-warning.overlay-accent-4 {
  5415. background: #FFE3DA;
  5416. /* The Fallback */
  5417. background: rgba(255, 227, 218, 0.6);
  5418. }
  5419. .warning.gradient-bg {
  5420. color: #fafafa !important;
  5421. }
  5422. .bg-warning.bg-gradient-bg {
  5423. background-color: #fafafa !important;
  5424. }
  5425. .btn-warning.btn-gradient-bg {
  5426. border-color: #d28d29 !important;
  5427. background-color: #fafafa !important;
  5428. }
  5429. .btn-warning.btn-gradient-bg:hover {
  5430. border-color: #d28d29 !important;
  5431. background-color: #bd7f25 !important;
  5432. }
  5433. .btn-warning.btn-gradient-bg:focus,
  5434. .btn-warning.btn-gradient-bg:active {
  5435. border-color: #bd7f25 !important;
  5436. background-color: #a77121 !important;
  5437. }
  5438. .btn-outline-warning.btn-outline-gradient-bg {
  5439. border-color: #fafafa !important;
  5440. color: #fafafa !important;
  5441. }
  5442. .btn-outline-warning.btn-outline-gradient-bg:hover {
  5443. background-color: #fafafa !important;
  5444. }
  5445. input:focus ~ .bg-warning {
  5446. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #fafafa !important;
  5447. }
  5448. .border-warning.border-gradient-bg {
  5449. border: 1px solid #fafafa !important;
  5450. }
  5451. .border-top-warning.border-top-gradient-bg {
  5452. border-top: 1px solid #fafafa !important;
  5453. }
  5454. .border-bottom-warning.border-bottom-gradient-bg {
  5455. border-bottom: 1px solid #fafafa !important;
  5456. }
  5457. .border-left-warning.border-left-gradient-bg {
  5458. border-left: 1px solid #fafafa !important;
  5459. }
  5460. .border-right-warning.border-right-gradient-bg {
  5461. border-right: 1px solid #fafafa !important;
  5462. }
  5463. .overlay-warning.overlay-gradient-bg {
  5464. background: #fafafa;
  5465. /* The Fallback */
  5466. background: rgba(250, 250, 250, 0.6);
  5467. }
  5468. .danger.gradient-light {
  5469. color: #f9b789 !important;
  5470. }
  5471. .bg-danger.bg-gradient-light {
  5472. background-color: #f9b789 !important;
  5473. }
  5474. .btn-danger.btn-gradient-light {
  5475. border-color: #e42728 !important;
  5476. background-color: #f9b789 !important;
  5477. }
  5478. .btn-danger.btn-gradient-light:hover {
  5479. border-color: #e42728 !important;
  5480. background-color: #d71a1c !important;
  5481. }
  5482. .btn-danger.btn-gradient-light:focus,
  5483. .btn-danger.btn-gradient-light:active {
  5484. border-color: #d71a1c !important;
  5485. background-color: #c01819 !important;
  5486. }
  5487. .btn-outline-danger.btn-outline-gradient-light {
  5488. border-color: #f9b789 !important;
  5489. color: #f9b789 !important;
  5490. }
  5491. .btn-outline-danger.btn-outline-gradient-light:hover {
  5492. background-color: #f9b789 !important;
  5493. }
  5494. input:focus ~ .bg-danger {
  5495. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f9b789 !important;
  5496. }
  5497. .border-danger.border-gradient-light {
  5498. border: 1px solid #f9b789 !important;
  5499. }
  5500. .border-top-danger.border-top-gradient-light {
  5501. border-top: 1px solid #f9b789 !important;
  5502. }
  5503. .border-bottom-danger.border-bottom-gradient-light {
  5504. border-bottom: 1px solid #f9b789 !important;
  5505. }
  5506. .border-left-danger.border-left-gradient-light {
  5507. border-left: 1px solid #f9b789 !important;
  5508. }
  5509. .border-right-danger.border-right-gradient-light {
  5510. border-right: 1px solid #f9b789 !important;
  5511. }
  5512. .overlay-danger.overlay-gradient-light {
  5513. background: #f9b789;
  5514. /* The Fallback */
  5515. background: rgba(249, 183, 137, 0.6);
  5516. }
  5517. .danger.lighten-5 {
  5518. color: #f8c6c6 !important;
  5519. }
  5520. .bg-danger.bg-lighten-5 {
  5521. background-color: #f8c6c6 !important;
  5522. }
  5523. .btn-danger.btn-lighten-5 {
  5524. border-color: #e42728 !important;
  5525. background-color: #f8c6c6 !important;
  5526. }
  5527. .btn-danger.btn-lighten-5:hover {
  5528. border-color: #e42728 !important;
  5529. background-color: #d71a1c !important;
  5530. }
  5531. .btn-danger.btn-lighten-5:focus,
  5532. .btn-danger.btn-lighten-5:active {
  5533. border-color: #d71a1c !important;
  5534. background-color: #c01819 !important;
  5535. }
  5536. .btn-outline-danger.btn-outline-lighten-5 {
  5537. border-color: #f8c6c6 !important;
  5538. color: #f8c6c6 !important;
  5539. }
  5540. .btn-outline-danger.btn-outline-lighten-5:hover {
  5541. background-color: #f8c6c6 !important;
  5542. }
  5543. input:focus ~ .bg-danger {
  5544. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f8c6c6 !important;
  5545. }
  5546. .border-danger.border-lighten-5 {
  5547. border: 1px solid #f8c6c6 !important;
  5548. }
  5549. .border-top-danger.border-top-lighten-5 {
  5550. border-top: 1px solid #f8c6c6 !important;
  5551. }
  5552. .border-bottom-danger.border-bottom-lighten-5 {
  5553. border-bottom: 1px solid #f8c6c6 !important;
  5554. }
  5555. .border-left-danger.border-left-lighten-5 {
  5556. border-left: 1px solid #f8c6c6 !important;
  5557. }
  5558. .border-right-danger.border-right-lighten-5 {
  5559. border-right: 1px solid #f8c6c6 !important;
  5560. }
  5561. .overlay-danger.overlay-lighten-5 {
  5562. background: #f8c6c6;
  5563. /* The Fallback */
  5564. background: rgba(248, 198, 198, 0.6);
  5565. }
  5566. .danger.lighten-4 {
  5567. color: #f5afaf !important;
  5568. }
  5569. .bg-danger.bg-lighten-4 {
  5570. background-color: #f5afaf !important;
  5571. }
  5572. .btn-danger.btn-lighten-4 {
  5573. border-color: #e42728 !important;
  5574. background-color: #f5afaf !important;
  5575. }
  5576. .btn-danger.btn-lighten-4:hover {
  5577. border-color: #e42728 !important;
  5578. background-color: #d71a1c !important;
  5579. }
  5580. .btn-danger.btn-lighten-4:focus,
  5581. .btn-danger.btn-lighten-4:active {
  5582. border-color: #d71a1c !important;
  5583. background-color: #c01819 !important;
  5584. }
  5585. .btn-outline-danger.btn-outline-lighten-4 {
  5586. border-color: #f5afaf !important;
  5587. color: #f5afaf !important;
  5588. }
  5589. .btn-outline-danger.btn-outline-lighten-4:hover {
  5590. background-color: #f5afaf !important;
  5591. }
  5592. input:focus ~ .bg-danger {
  5593. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f5afaf !important;
  5594. }
  5595. .border-danger.border-lighten-4 {
  5596. border: 1px solid #f5afaf !important;
  5597. }
  5598. .border-top-danger.border-top-lighten-4 {
  5599. border-top: 1px solid #f5afaf !important;
  5600. }
  5601. .border-bottom-danger.border-bottom-lighten-4 {
  5602. border-bottom: 1px solid #f5afaf !important;
  5603. }
  5604. .border-left-danger.border-left-lighten-4 {
  5605. border-left: 1px solid #f5afaf !important;
  5606. }
  5607. .border-right-danger.border-right-lighten-4 {
  5608. border-right: 1px solid #f5afaf !important;
  5609. }
  5610. .overlay-danger.overlay-lighten-4 {
  5611. background: #f5afaf;
  5612. /* The Fallback */
  5613. background: rgba(245, 175, 175, 0.6);
  5614. }
  5615. .danger.lighten-3 {
  5616. color: #f29899 !important;
  5617. }
  5618. .bg-danger.bg-lighten-3 {
  5619. background-color: #f29899 !important;
  5620. }
  5621. .btn-danger.btn-lighten-3 {
  5622. border-color: #e42728 !important;
  5623. background-color: #f29899 !important;
  5624. }
  5625. .btn-danger.btn-lighten-3:hover {
  5626. border-color: #e42728 !important;
  5627. background-color: #d71a1c !important;
  5628. }
  5629. .btn-danger.btn-lighten-3:focus,
  5630. .btn-danger.btn-lighten-3:active {
  5631. border-color: #d71a1c !important;
  5632. background-color: #c01819 !important;
  5633. }
  5634. .btn-outline-danger.btn-outline-lighten-3 {
  5635. border-color: #f29899 !important;
  5636. color: #f29899 !important;
  5637. }
  5638. .btn-outline-danger.btn-outline-lighten-3:hover {
  5639. background-color: #f29899 !important;
  5640. }
  5641. input:focus ~ .bg-danger {
  5642. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f29899 !important;
  5643. }
  5644. .border-danger.border-lighten-3 {
  5645. border: 1px solid #f29899 !important;
  5646. }
  5647. .border-top-danger.border-top-lighten-3 {
  5648. border-top: 1px solid #f29899 !important;
  5649. }
  5650. .border-bottom-danger.border-bottom-lighten-3 {
  5651. border-bottom: 1px solid #f29899 !important;
  5652. }
  5653. .border-left-danger.border-left-lighten-3 {
  5654. border-left: 1px solid #f29899 !important;
  5655. }
  5656. .border-right-danger.border-right-lighten-3 {
  5657. border-right: 1px solid #f29899 !important;
  5658. }
  5659. .overlay-danger.overlay-lighten-3 {
  5660. background: #f29899;
  5661. /* The Fallback */
  5662. background: rgba(242, 152, 153, 0.6);
  5663. }
  5664. .danger.lighten-2 {
  5665. color: #f08182 !important;
  5666. }
  5667. .bg-danger.bg-lighten-2 {
  5668. background-color: #f08182 !important;
  5669. }
  5670. .btn-danger.btn-lighten-2 {
  5671. border-color: #e42728 !important;
  5672. background-color: #f08182 !important;
  5673. }
  5674. .btn-danger.btn-lighten-2:hover {
  5675. border-color: #e42728 !important;
  5676. background-color: #d71a1c !important;
  5677. }
  5678. .btn-danger.btn-lighten-2:focus,
  5679. .btn-danger.btn-lighten-2:active {
  5680. border-color: #d71a1c !important;
  5681. background-color: #c01819 !important;
  5682. }
  5683. .btn-outline-danger.btn-outline-lighten-2 {
  5684. border-color: #f08182 !important;
  5685. color: #f08182 !important;
  5686. }
  5687. .btn-outline-danger.btn-outline-lighten-2:hover {
  5688. background-color: #f08182 !important;
  5689. }
  5690. input:focus ~ .bg-danger {
  5691. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f08182 !important;
  5692. }
  5693. .border-danger.border-lighten-2 {
  5694. border: 1px solid #f08182 !important;
  5695. }
  5696. .border-top-danger.border-top-lighten-2 {
  5697. border-top: 1px solid #f08182 !important;
  5698. }
  5699. .border-bottom-danger.border-bottom-lighten-2 {
  5700. border-bottom: 1px solid #f08182 !important;
  5701. }
  5702. .border-left-danger.border-left-lighten-2 {
  5703. border-left: 1px solid #f08182 !important;
  5704. }
  5705. .border-right-danger.border-right-lighten-2 {
  5706. border-right: 1px solid #f08182 !important;
  5707. }
  5708. .overlay-danger.overlay-lighten-2 {
  5709. background: #f08182;
  5710. /* The Fallback */
  5711. background: rgba(240, 129, 130, 0.6);
  5712. }
  5713. .danger.lighten-1 {
  5714. color: #ed6b6c !important;
  5715. }
  5716. .bg-danger.bg-lighten-1 {
  5717. background-color: #ed6b6c !important;
  5718. }
  5719. .btn-danger.btn-lighten-1 {
  5720. border-color: #e42728 !important;
  5721. background-color: #ed6b6c !important;
  5722. }
  5723. .btn-danger.btn-lighten-1:hover {
  5724. border-color: #e42728 !important;
  5725. background-color: #d71a1c !important;
  5726. }
  5727. .btn-danger.btn-lighten-1:focus,
  5728. .btn-danger.btn-lighten-1:active {
  5729. border-color: #d71a1c !important;
  5730. background-color: #c01819 !important;
  5731. }
  5732. .btn-outline-danger.btn-outline-lighten-1 {
  5733. border-color: #ed6b6c !important;
  5734. color: #ed6b6c !important;
  5735. }
  5736. .btn-outline-danger.btn-outline-lighten-1:hover {
  5737. background-color: #ed6b6c !important;
  5738. }
  5739. input:focus ~ .bg-danger {
  5740. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ed6b6c !important;
  5741. }
  5742. .border-danger.border-lighten-1 {
  5743. border: 1px solid #ed6b6c !important;
  5744. }
  5745. .border-top-danger.border-top-lighten-1 {
  5746. border-top: 1px solid #ed6b6c !important;
  5747. }
  5748. .border-bottom-danger.border-bottom-lighten-1 {
  5749. border-bottom: 1px solid #ed6b6c !important;
  5750. }
  5751. .border-left-danger.border-left-lighten-1 {
  5752. border-left: 1px solid #ed6b6c !important;
  5753. }
  5754. .border-right-danger.border-right-lighten-1 {
  5755. border-right: 1px solid #ed6b6c !important;
  5756. }
  5757. .overlay-danger.overlay-lighten-1 {
  5758. background: #ed6b6c;
  5759. /* The Fallback */
  5760. background: rgba(237, 107, 108, 0.6);
  5761. }
  5762. .danger {
  5763. color: #ea5455 !important;
  5764. }
  5765. .bg-danger {
  5766. background-color: #ea5455 !important;
  5767. }
  5768. .bg-danger .card-header,
  5769. .bg-danger .card-footer {
  5770. background-color: transparent;
  5771. }
  5772. .alert-danger {
  5773. background: rgba(234, 84, 85, 0.2) !important;
  5774. color: #ea5455 !important;
  5775. }
  5776. .alert-danger .alert-heading {
  5777. box-shadow: rgba(234, 84, 85, 0.4) 0px 6px 15px -7px;
  5778. }
  5779. .alert-danger .alert-link {
  5780. color: #e73d3e !important;
  5781. }
  5782. .bg-rgba-danger {
  5783. background: rgba(234, 84, 85, 0.15) !important;
  5784. }
  5785. .border-danger {
  5786. border: 1px solid #ea5455 !important;
  5787. }
  5788. .border-top-danger {
  5789. border-top: 1px solid #ea5455;
  5790. }
  5791. .border-bottom-danger {
  5792. border-bottom: 1px solid #ea5455;
  5793. }
  5794. .border-left-danger {
  5795. border-left: 1px solid #ea5455;
  5796. }
  5797. .border-right-danger {
  5798. border-right: 1px solid #ea5455;
  5799. }
  5800. .bg-danger.badge-glow,
  5801. .border-danger.badge-glow,
  5802. .badge-danger.badge-glow {
  5803. box-shadow: 0px 0px 10px #ea5455;
  5804. }
  5805. .badge.badge-danger {
  5806. background-color: #ea5455;
  5807. }
  5808. .overlay-danger {
  5809. background: #ea5455;
  5810. /* The Fallback */
  5811. background: rgba(234, 84, 85, 0.6);
  5812. }
  5813. .btn-danger {
  5814. border-color: #e42728 !important;
  5815. background-color: #ea5455 !important;
  5816. color: #fff;
  5817. }
  5818. .btn-danger:hover {
  5819. border-color: #e73d3e !important;
  5820. color: #fff !important;
  5821. box-shadow: 0 8px 25px -8px #ea5455;
  5822. }
  5823. .btn-danger:focus,
  5824. .btn-danger:active {
  5825. color: #fff !important;
  5826. }
  5827. .btn-flat-danger {
  5828. background-color: transparent;
  5829. color: #ea5455;
  5830. }
  5831. .btn-flat-danger:hover {
  5832. color: #ea5455;
  5833. background-color: rgba(234, 84, 85, 0.1);
  5834. }
  5835. .btn-flat-danger:active,
  5836. .btn-flat-danger:focus {
  5837. background-color: #ea5455;
  5838. color: #fff !important;
  5839. }
  5840. .btn-relief-danger {
  5841. background-color: #ea5455;
  5842. box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.2);
  5843. color: #fff;
  5844. }
  5845. .btn-relief-danger:hover {
  5846. color: #fff;
  5847. }
  5848. .btn-relief-danger:active,
  5849. .btn-relief-danger:focus {
  5850. outline: none;
  5851. transform: translateY(3px);
  5852. }
  5853. .btn-outline-danger {
  5854. border: 1px solid #ea5455;
  5855. background-color: transparent;
  5856. color: #ea5455;
  5857. }
  5858. .btn-outline-danger:hover {
  5859. background-color: rgba(234, 84, 85, 0.08);
  5860. color: #ea5455;
  5861. }
  5862. .btn-outline-danger:active {
  5863. color: #fff !important;
  5864. }
  5865. .btn-danger ~ .dropdown-menu .dropdown-item.active,
  5866. .btn-outline-danger ~ .dropdown-menu .dropdown-item.active,
  5867. .btn-flat-danger ~ .dropdown-menu .dropdown-item.active {
  5868. background-color: #ea5455;
  5869. color: #fff;
  5870. }
  5871. .btn-danger ~ .dropdown-menu .dropdown-item.active:hover,
  5872. .btn-outline-danger ~ .dropdown-menu .dropdown-item.active:hover,
  5873. .btn-flat-danger ~ .dropdown-menu .dropdown-item.active:hover {
  5874. color: #fff;
  5875. }
  5876. .btn-danger ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  5877. .btn-outline-danger ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover,
  5878. .btn-flat-danger ~ .dropdown-menu .dropdown-item:not(.active):not(:active):hover {
  5879. color: #ea5455;
  5880. }
  5881. .dropdown.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:hover i,
  5882. .dropdown.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:hover i,
  5883. .dropdown.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:hover i,
  5884. .dropup.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:hover i,
  5885. .dropup.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:hover i,
  5886. .dropup.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:hover i,
  5887. .dropright.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:hover i,
  5888. .dropright.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:hover i,
  5889. .dropright.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:hover i,
  5890. .dropleft.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:hover i,
  5891. .dropleft.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:hover i,
  5892. .dropleft.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:hover i {
  5893. color: #ea5455;
  5894. }
  5895. .dropdown.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:active i,
  5896. .dropdown.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:active i,
  5897. .dropdown.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:active i,
  5898. .dropup.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:active i,
  5899. .dropup.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:active i,
  5900. .dropup.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:active i,
  5901. .dropright.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:active i,
  5902. .dropright.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:active i,
  5903. .dropright.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:active i,
  5904. .dropleft.dropdown-icon-wrapper .btn-danger ~ .dropdown-menu .dropdown-item:active i,
  5905. .dropleft.dropdown-icon-wrapper .btn-outline-danger ~ .dropdown-menu .dropdown-item:active i,
  5906. .dropleft.dropdown-icon-wrapper .btn-flat-danger ~ .dropdown-menu .dropdown-item:active i {
  5907. color: #fff;
  5908. }
  5909. .bullet.bullet-danger {
  5910. background-color: #ea5455;
  5911. }
  5912. .pagination-danger .page-item.active .page-link {
  5913. background: #ea5455;
  5914. color: #fff;
  5915. }
  5916. .pagination-danger .page-item.active .page-link:hover {
  5917. color: #fff;
  5918. }
  5919. .pagination-danger .page-item .page-link:hover {
  5920. color: #ea5455;
  5921. }
  5922. .pagination-danger .page-item.prev-item .page-link:hover,
  5923. .pagination-danger .page-item.next-item .page-link:hover {
  5924. background: #ea5455;
  5925. color: #fff;
  5926. }
  5927. .nav-pill-danger .nav-item .nav-link.active {
  5928. color: #fff;
  5929. background-color: #ea5455 !important;
  5930. }
  5931. .progress-bar-danger {
  5932. background-color: rgba(234, 84, 85, 0.1);
  5933. }
  5934. .progress-bar-danger .progress-bar {
  5935. background-color: #ea5455;
  5936. }
  5937. .chip-danger {
  5938. background-color: #ea5455 !important;
  5939. }
  5940. .chip-danger .chip-body {
  5941. color: #fff !important;
  5942. }
  5943. .divider.divider-danger .divider-text:before,
  5944. .divider.divider-danger .divider-text:after {
  5945. border-color: #ea5455 !important;
  5946. }
  5947. input[type=checkbox].bg-danger + .custom-control-label:before,
  5948. input[type=radio].bg-danger + .custom-control-label:before {
  5949. background-color: #ea5455 !important;
  5950. }
  5951. input:focus ~ .bg-danger {
  5952. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ea5455 !important;
  5953. }
  5954. .vs-checkbox-danger input:checked ~ .vs-checkbox {
  5955. border-color: #ea5455 !important;
  5956. }
  5957. .vs-checkbox-danger input:checked ~ .vs-checkbox .vs-checkbox--check {
  5958. background-color: #ea5455 !important;
  5959. }
  5960. .vs-checkbox-danger input:active:checked + .vs-checkbox .vs-checkbox--check {
  5961. background-color: #ea5455 !important;
  5962. }
  5963. .custom-switch-danger .custom-control-input:checked ~ .custom-control-label::before {
  5964. background-color: #ea5455 !important;
  5965. color: #fff;
  5966. transition: all 0.2s ease-out;
  5967. }
  5968. .vs-radio-danger input:checked ~ .vs-radio .vs-radio--circle {
  5969. background: #ea5455 !important;
  5970. box-shadow: 0 3px 12px 0 rgba(234, 84, 85, 0.4) !important;
  5971. }
  5972. .danger.darken-1 {
  5973. color: #e73d3e !important;
  5974. }
  5975. .bg-danger.bg-darken-1 {
  5976. background-color: #e73d3e !important;
  5977. }
  5978. .btn-danger.btn-darken-1 {
  5979. border-color: #e42728 !important;
  5980. background-color: #e73d3e !important;
  5981. }
  5982. .btn-danger.btn-darken-1:hover {
  5983. border-color: #e42728 !important;
  5984. background-color: #d71a1c !important;
  5985. }
  5986. .btn-danger.btn-darken-1:focus,
  5987. .btn-danger.btn-darken-1:active {
  5988. border-color: #d71a1c !important;
  5989. background-color: #c01819 !important;
  5990. }
  5991. .btn-outline-danger.btn-outline-darken-1 {
  5992. border-color: #e73d3e !important;
  5993. color: #e73d3e !important;
  5994. }
  5995. .btn-outline-danger.btn-outline-darken-1:hover {
  5996. background-color: #e73d3e !important;
  5997. }
  5998. input:focus ~ .bg-danger {
  5999. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #e73d3e !important;
  6000. }
  6001. .border-danger.border-darken-1 {
  6002. border: 1px solid #e73d3e !important;
  6003. }
  6004. .border-top-danger.border-top-darken-1 {
  6005. border-top: 1px solid #e73d3e !important;
  6006. }
  6007. .border-bottom-danger.border-bottom-darken-1 {
  6008. border-bottom: 1px solid #e73d3e !important;
  6009. }
  6010. .border-left-danger.border-left-darken-1 {
  6011. border-left: 1px solid #e73d3e !important;
  6012. }
  6013. .border-right-danger.border-right-darken-1 {
  6014. border-right: 1px solid #e73d3e !important;
  6015. }
  6016. .overlay-danger.overlay-darken-1 {
  6017. background: #e73d3e;
  6018. /* The Fallback */
  6019. background: rgba(231, 61, 62, 0.6);
  6020. }
  6021. .danger.darken-2 {
  6022. color: #e42728 !important;
  6023. }
  6024. .bg-danger.bg-darken-2 {
  6025. background-color: #e42728 !important;
  6026. }
  6027. .btn-danger.btn-darken-2 {
  6028. border-color: #e42728 !important;
  6029. background-color: #e42728 !important;
  6030. }
  6031. .btn-danger.btn-darken-2:hover {
  6032. border-color: #e42728 !important;
  6033. background-color: #d71a1c !important;
  6034. }
  6035. .btn-danger.btn-darken-2:focus,
  6036. .btn-danger.btn-darken-2:active {
  6037. border-color: #d71a1c !important;
  6038. background-color: #c01819 !important;
  6039. }
  6040. .btn-outline-danger.btn-outline-darken-2 {
  6041. border-color: #e42728 !important;
  6042. color: #e42728 !important;
  6043. }
  6044. .btn-outline-danger.btn-outline-darken-2:hover {
  6045. background-color: #e42728 !important;
  6046. }
  6047. input:focus ~ .bg-danger {
  6048. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #e42728 !important;
  6049. }
  6050. .border-danger.border-darken-2 {
  6051. border: 1px solid #e42728 !important;
  6052. }
  6053. .border-top-danger.border-top-darken-2 {
  6054. border-top: 1px solid #e42728 !important;
  6055. }
  6056. .border-bottom-danger.border-bottom-darken-2 {
  6057. border-bottom: 1px solid #e42728 !important;
  6058. }
  6059. .border-left-danger.border-left-darken-2 {
  6060. border-left: 1px solid #e42728 !important;
  6061. }
  6062. .border-right-danger.border-right-darken-2 {
  6063. border-right: 1px solid #e42728 !important;
  6064. }
  6065. .overlay-danger.overlay-darken-2 {
  6066. background: #e42728;
  6067. /* The Fallback */
  6068. background: rgba(228, 39, 40, 0.6);
  6069. }
  6070. .danger.darken-3 {
  6071. color: #d71a1c !important;
  6072. }
  6073. .bg-danger.bg-darken-3 {
  6074. background-color: #d71a1c !important;
  6075. }
  6076. .btn-danger.btn-darken-3 {
  6077. border-color: #e42728 !important;
  6078. background-color: #d71a1c !important;
  6079. }
  6080. .btn-danger.btn-darken-3:hover {
  6081. border-color: #e42728 !important;
  6082. background-color: #d71a1c !important;
  6083. }
  6084. .btn-danger.btn-darken-3:focus,
  6085. .btn-danger.btn-darken-3:active {
  6086. border-color: #d71a1c !important;
  6087. background-color: #c01819 !important;
  6088. }
  6089. .btn-outline-danger.btn-outline-darken-3 {
  6090. border-color: #d71a1c !important;
  6091. color: #d71a1c !important;
  6092. }
  6093. .btn-outline-danger.btn-outline-darken-3:hover {
  6094. background-color: #d71a1c !important;
  6095. }
  6096. input:focus ~ .bg-danger {
  6097. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #d71a1c !important;
  6098. }
  6099. .border-danger.border-darken-3 {
  6100. border: 1px solid #d71a1c !important;
  6101. }
  6102. .border-top-danger.border-top-darken-3 {
  6103. border-top: 1px solid #d71a1c !important;
  6104. }
  6105. .border-bottom-danger.border-bottom-darken-3 {
  6106. border-bottom: 1px solid #d71a1c !important;
  6107. }
  6108. .border-left-danger.border-left-darken-3 {
  6109. border-left: 1px solid #d71a1c !important;
  6110. }
  6111. .border-right-danger.border-right-darken-3 {
  6112. border-right: 1px solid #d71a1c !important;
  6113. }
  6114. .overlay-danger.overlay-darken-3 {
  6115. background: #d71a1c;
  6116. /* The Fallback */
  6117. background: rgba(215, 26, 28, 0.6);
  6118. }
  6119. .danger.darken-4 {
  6120. color: #c01819 !important;
  6121. }
  6122. .bg-danger.bg-darken-4 {
  6123. background-color: #c01819 !important;
  6124. }
  6125. .btn-danger.btn-darken-4 {
  6126. border-color: #e42728 !important;
  6127. background-color: #c01819 !important;
  6128. }
  6129. .btn-danger.btn-darken-4:hover {
  6130. border-color: #e42728 !important;
  6131. background-color: #d71a1c !important;
  6132. }
  6133. .btn-danger.btn-darken-4:focus,
  6134. .btn-danger.btn-darken-4:active {
  6135. border-color: #d71a1c !important;
  6136. background-color: #c01819 !important;
  6137. }
  6138. .btn-outline-danger.btn-outline-darken-4 {
  6139. border-color: #c01819 !important;
  6140. color: #c01819 !important;
  6141. }
  6142. .btn-outline-danger.btn-outline-darken-4:hover {
  6143. background-color: #c01819 !important;
  6144. }
  6145. input:focus ~ .bg-danger {
  6146. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #c01819 !important;
  6147. }
  6148. .border-danger.border-darken-4 {
  6149. border: 1px solid #c01819 !important;
  6150. }
  6151. .border-top-danger.border-top-darken-4 {
  6152. border-top: 1px solid #c01819 !important;
  6153. }
  6154. .border-bottom-danger.border-bottom-darken-4 {
  6155. border-bottom: 1px solid #c01819 !important;
  6156. }
  6157. .border-left-danger.border-left-darken-4 {
  6158. border-left: 1px solid #c01819 !important;
  6159. }
  6160. .border-right-danger.border-right-darken-4 {
  6161. border-right: 1px solid #c01819 !important;
  6162. }
  6163. .overlay-danger.overlay-darken-4 {
  6164. background: #c01819;
  6165. /* The Fallback */
  6166. background: rgba(192, 24, 25, 0.6);
  6167. }
  6168. .danger.accent-1 {
  6169. color: #FFEEF1 !important;
  6170. }
  6171. .bg-danger.bg-accent-1 {
  6172. background-color: #FFEEF1 !important;
  6173. }
  6174. .btn-danger.btn-accent-1 {
  6175. border-color: #e42728 !important;
  6176. background-color: #FFEEF1 !important;
  6177. }
  6178. .btn-danger.btn-accent-1:hover {
  6179. border-color: #e42728 !important;
  6180. background-color: #d71a1c !important;
  6181. }
  6182. .btn-danger.btn-accent-1:focus,
  6183. .btn-danger.btn-accent-1:active {
  6184. border-color: #d71a1c !important;
  6185. background-color: #c01819 !important;
  6186. }
  6187. .btn-outline-danger.btn-outline-accent-1 {
  6188. border-color: #FFEEF1 !important;
  6189. color: #FFEEF1 !important;
  6190. }
  6191. .btn-outline-danger.btn-outline-accent-1:hover {
  6192. background-color: #FFEEF1 !important;
  6193. }
  6194. input:focus ~ .bg-danger {
  6195. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFEEF1 !important;
  6196. }
  6197. .border-danger.border-accent-1 {
  6198. border: 1px solid #FFEEF1 !important;
  6199. }
  6200. .border-top-danger.border-top-accent-1 {
  6201. border-top: 1px solid #FFEEF1 !important;
  6202. }
  6203. .border-bottom-danger.border-bottom-accent-1 {
  6204. border-bottom: 1px solid #FFEEF1 !important;
  6205. }
  6206. .border-left-danger.border-left-accent-1 {
  6207. border-left: 1px solid #FFEEF1 !important;
  6208. }
  6209. .border-right-danger.border-right-accent-1 {
  6210. border-right: 1px solid #FFEEF1 !important;
  6211. }
  6212. .overlay-danger.overlay-accent-1 {
  6213. background: #FFEEF1;
  6214. /* The Fallback */
  6215. background: rgba(255, 238, 241, 0.6);
  6216. }
  6217. .danger.accent-2 {
  6218. color: #FFD6DB !important;
  6219. }
  6220. .bg-danger.bg-accent-2 {
  6221. background-color: #FFD6DB !important;
  6222. }
  6223. .btn-danger.btn-accent-2 {
  6224. border-color: #e42728 !important;
  6225. background-color: #FFD6DB !important;
  6226. }
  6227. .btn-danger.btn-accent-2:hover {
  6228. border-color: #e42728 !important;
  6229. background-color: #d71a1c !important;
  6230. }
  6231. .btn-danger.btn-accent-2:focus,
  6232. .btn-danger.btn-accent-2:active {
  6233. border-color: #d71a1c !important;
  6234. background-color: #c01819 !important;
  6235. }
  6236. .btn-outline-danger.btn-outline-accent-2 {
  6237. border-color: #FFD6DB !important;
  6238. color: #FFD6DB !important;
  6239. }
  6240. .btn-outline-danger.btn-outline-accent-2:hover {
  6241. background-color: #FFD6DB !important;
  6242. }
  6243. input:focus ~ .bg-danger {
  6244. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFD6DB !important;
  6245. }
  6246. .border-danger.border-accent-2 {
  6247. border: 1px solid #FFD6DB !important;
  6248. }
  6249. .border-top-danger.border-top-accent-2 {
  6250. border-top: 1px solid #FFD6DB !important;
  6251. }
  6252. .border-bottom-danger.border-bottom-accent-2 {
  6253. border-bottom: 1px solid #FFD6DB !important;
  6254. }
  6255. .border-left-danger.border-left-accent-2 {
  6256. border-left: 1px solid #FFD6DB !important;
  6257. }
  6258. .border-right-danger.border-right-accent-2 {
  6259. border-right: 1px solid #FFD6DB !important;
  6260. }
  6261. .overlay-danger.overlay-accent-2 {
  6262. background: #FFD6DB;
  6263. /* The Fallback */
  6264. background: rgba(255, 214, 219, 0.6);
  6265. }
  6266. .danger.accent-3 {
  6267. color: #FFECEE !important;
  6268. }
  6269. .bg-danger.bg-accent-3 {
  6270. background-color: #FFECEE !important;
  6271. }
  6272. .btn-danger.btn-accent-3 {
  6273. border-color: #e42728 !important;
  6274. background-color: #FFECEE !important;
  6275. }
  6276. .btn-danger.btn-accent-3:hover {
  6277. border-color: #e42728 !important;
  6278. background-color: #d71a1c !important;
  6279. }
  6280. .btn-danger.btn-accent-3:focus,
  6281. .btn-danger.btn-accent-3:active {
  6282. border-color: #d71a1c !important;
  6283. background-color: #c01819 !important;
  6284. }
  6285. .btn-outline-danger.btn-outline-accent-3 {
  6286. border-color: #FFECEE !important;
  6287. color: #FFECEE !important;
  6288. }
  6289. .btn-outline-danger.btn-outline-accent-3:hover {
  6290. background-color: #FFECEE !important;
  6291. }
  6292. input:focus ~ .bg-danger {
  6293. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFECEE !important;
  6294. }
  6295. .border-danger.border-accent-3 {
  6296. border: 1px solid #FFECEE !important;
  6297. }
  6298. .border-top-danger.border-top-accent-3 {
  6299. border-top: 1px solid #FFECEE !important;
  6300. }
  6301. .border-bottom-danger.border-bottom-accent-3 {
  6302. border-bottom: 1px solid #FFECEE !important;
  6303. }
  6304. .border-left-danger.border-left-accent-3 {
  6305. border-left: 1px solid #FFECEE !important;
  6306. }
  6307. .border-right-danger.border-right-accent-3 {
  6308. border-right: 1px solid #FFECEE !important;
  6309. }
  6310. .overlay-danger.overlay-accent-3 {
  6311. background: #FFECEE;
  6312. /* The Fallback */
  6313. background: rgba(255, 236, 238, 0.6);
  6314. }
  6315. .danger.accent-4 {
  6316. color: #FFD3D7 !important;
  6317. }
  6318. .bg-danger.bg-accent-4 {
  6319. background-color: #FFD3D7 !important;
  6320. }
  6321. .btn-danger.btn-accent-4 {
  6322. border-color: #e42728 !important;
  6323. background-color: #FFD3D7 !important;
  6324. }
  6325. .btn-danger.btn-accent-4:hover {
  6326. border-color: #e42728 !important;
  6327. background-color: #d71a1c !important;
  6328. }
  6329. .btn-danger.btn-accent-4:focus,
  6330. .btn-danger.btn-accent-4:active {
  6331. border-color: #d71a1c !important;
  6332. background-color: #c01819 !important;
  6333. }
  6334. .btn-outline-danger.btn-outline-accent-4 {
  6335. border-color: #FFD3D7 !important;
  6336. color: #FFD3D7 !important;
  6337. }
  6338. .btn-outline-danger.btn-outline-accent-4:hover {
  6339. background-color: #FFD3D7 !important;
  6340. }
  6341. input:focus ~ .bg-danger {
  6342. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #FFD3D7 !important;
  6343. }
  6344. .border-danger.border-accent-4 {
  6345. border: 1px solid #FFD3D7 !important;
  6346. }
  6347. .border-top-danger.border-top-accent-4 {
  6348. border-top: 1px solid #FFD3D7 !important;
  6349. }
  6350. .border-bottom-danger.border-bottom-accent-4 {
  6351. border-bottom: 1px solid #FFD3D7 !important;
  6352. }
  6353. .border-left-danger.border-left-accent-4 {
  6354. border-left: 1px solid #FFD3D7 !important;
  6355. }
  6356. .border-right-danger.border-right-accent-4 {
  6357. border-right: 1px solid #FFD3D7 !important;
  6358. }
  6359. .overlay-danger.overlay-accent-4 {
  6360. background: #FFD3D7;
  6361. /* The Fallback */
  6362. background: rgba(255, 211, 215, 0.6);
  6363. }
  6364. .danger.gradient-bg {
  6365. color: #640064 !important;
  6366. }
  6367. .bg-danger.bg-gradient-bg {
  6368. background-color: #640064 !important;
  6369. }
  6370. .btn-danger.btn-gradient-bg {
  6371. border-color: #e42728 !important;
  6372. background-color: #640064 !important;
  6373. }
  6374. .btn-danger.btn-gradient-bg:hover {
  6375. border-color: #e42728 !important;
  6376. background-color: #d71a1c !important;
  6377. }
  6378. .btn-danger.btn-gradient-bg:focus,
  6379. .btn-danger.btn-gradient-bg:active {
  6380. border-color: #d71a1c !important;
  6381. background-color: #c01819 !important;
  6382. }
  6383. .btn-outline-danger.btn-outline-gradient-bg {
  6384. border-color: #640064 !important;
  6385. color: #640064 !important;
  6386. }
  6387. .btn-outline-danger.btn-outline-gradient-bg:hover {
  6388. background-color: #640064 !important;
  6389. }
  6390. input:focus ~ .bg-danger {
  6391. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #640064 !important;
  6392. }
  6393. .border-danger.border-gradient-bg {
  6394. border: 1px solid #640064 !important;
  6395. }
  6396. .border-top-danger.border-top-gradient-bg {
  6397. border-top: 1px solid #640064 !important;
  6398. }
  6399. .border-bottom-danger.border-bottom-gradient-bg {
  6400. border-bottom: 1px solid #640064 !important;
  6401. }
  6402. .border-left-danger.border-left-gradient-bg {
  6403. border-left: 1px solid #640064 !important;
  6404. }
  6405. .border-right-danger.border-right-gradient-bg {
  6406. border-right: 1px solid #640064 !important;
  6407. }
  6408. .overlay-danger.overlay-gradient-bg {
  6409. background: #640064;
  6410. /* The Fallback */
  6411. background: rgba(100, 0, 100, 0.6);
  6412. }