| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405 |
- @charset "UTF-8";
- /**
- * Simple Job Board Front-end Core CSS File - V 3.0.0
- *
- * @author PressTigers <support@presstigers.com>, 2016
- *
- * @since 1.0.0
- */
- /*--------------------------------------------------------------
- >>> TABLE OF CONTENTS:
- ----------------------------------------------------------------
- 1. Bootstrap
- 2. International Telephone Input
- 3. Simple Job Board
- 3.1. SJB Reset and dependencies
- 3.2. SJB Components
- 3.3. SJB Pages
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- 1. Bootstrap
- --------------------------------------------------------------*/
- /*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
- /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
- html {
- -ms-text-size-adjust: 100%;
- -webkit-text-size-adjust: 100%;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- .sjb-page a {
- background-color: transparent;
- }
- .sjb-page a:hover,
- .sjb-page a:active {
- outline: 0;
- }
- .sjb-page b,
- .sjb-page strong {
- font-weight: bold;
- }
- .sjb-page h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- .sjb-page small {
- font-size: 80%;
- }
- .sjb-page img {
- border: 0;
- }
- .sjb-page button,
- .sjb-page input,
- .sjb-page select,
- .sjb-page textarea {
- color: inherit;
- font: inherit;
- margin: 0;
- }
- .sjb-page button {
- overflow: visible;
- }
- .sjb-page button,
- .sjb-page select {
- text-transform: none;
- }
- .sjb-page button,
- .sjb-page html input[type="button"],
- .sjb-page input[type="reset"],
- .sjb-page input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
- }
- .sjb-page button::-moz-focus-inner,
- .sjb-page input::-moz-focus-inner {
- border: 0;
- padding: 0;
- }
- .sjb-page input {
- line-height: normal;
- }
- .sjb-page input[type="checkbox"],
- .sjb-page input[type="radio"] {
- box-sizing: border-box;
- padding: 0;
- }
- .sjb-page input[type="number"]::-webkit-inner-spin-button,
- .sjb-page input[type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- .sjb-page input[type="search"] {
- -webkit-appearance: textfield;
- box-sizing: content-box;
- }
- .sjb-page input[type="search"]::-webkit-search-cancel-button,
- .sjb-page input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- .sjb-page textarea {
- overflow: auto;
- }
- .sjb-page table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- .sjb-page {
- background-color: #fff;
- color: #666;
- font-size: 14px;
- line-height: 1.42857143;
- margin: 0;
- }
- .sjb-page * {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .sjb-page *:before,
- .sjb-page *:after {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .sjb-page input,
- .sjb-page button,
- .sjb-page select,
- .sjb-page textarea {
- font-family: inherit;
- font-size: inherit;
- line-height: inherit;
- }
- .sjb-page a {
- color: #3297fa;
- text-decoration: none;
- }
- .sjb-page a:hover,
- .sjb-page a:focus {
- color: #02305e;
- text-decoration: none;
- }
- .sjb-page a:focus {
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
- }
- .sjb-page img {
- vertical-align: middle;
- }
- .sjb-page .img-responsive {
- display: block;
- max-width: 100%;
- height: auto;
- }
- .sjb-page .sr-only {
- position: absolute;
- width: 1px;
- height: 1px;
- margin: -1px;
- padding: 0;
- overflow: hidden;
- clip: rect(0, 0, 0, 0);
- border: 0;
- }
- .sjb-page [role="button"] {
- cursor: pointer;
- }
- .sjb-page h1,
- .sjb-page h2,
- .sjb-page h3,
- .sjb-page h4,
- .sjb-page h5,
- .sjb-page h6 {
- font-family: inherit;
- font-weight: 400;
- line-height: 1.1;
- color: inherit;
- }
- .sjb-page h1,
- .sjb-page h2,
- .sjb-page h3 {
- margin-top: 20px;
- margin-bottom: 10px;
- }
- .sjb-page h4,
- .sjb-page h5,
- .sjb-page h6 {
- margin-top: 10px;
- margin-bottom: 10px;
- }
- .sjb-page h1 {
- font-size: 36px;
- }
- .sjb-page h2 {
- font-size: 30px;
- }
- .sjb-page h3 {
- font-size: 24px;
- }
- .sjb-page h4 {
- font-size: 18px;
- }
- .sjb-page h5 {
- font-size: 14px;
- }
- .sjb-page h6 {
- font-size: 12px;
- }
- .sjb-page p {
- margin: 0 0 10px;
- }
- .sjb-page ul,
- .sjb-page ol {
- margin-top: 0;
- margin-bottom: 10px;
- }
- .sjb-page ul ul,
- .sjb-page ol ul,
- .sjb-page ul ol,
- .sjb-page ol ol {
- margin-bottom: 0;
- }
- .sjb-page .row {
- margin-left: -15px;
- margin-right: -15px;
- }
- .sjb-page .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
- position: relative;
- min-height: 1px;
- padding-left: 15px;
- padding-right: 15px;
- }
- .sjb-page .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
- float: left;
- }
- .sjb-page .col-xs-12 {
- width: 100%;
- }
- .sjb-page .col-xs-11 {
- width: 91.66666667%;
- }
- .sjb-page .col-xs-10 {
- width: 83.33333333%;
- }
- .sjb-page .col-xs-9 {
- width: 75%;
- }
- .sjb-page .col-xs-8 {
- width: 66.66666667%;
- }
- .sjb-page .col-xs-7 {
- width: 58.33333333%;
- }
- .sjb-page .col-xs-6 {
- width: 50%;
- }
- .sjb-page .col-xs-5 {
- width: 41.66666667%;
- }
- .sjb-page .col-xs-4 {
- width: 33.33333333%;
- }
- .sjb-page .col-xs-3 {
- width: 25%;
- }
- .sjb-page .col-xs-2 {
- width: 16.66666667%;
- }
- .sjb-page .col-xs-1 {
- width: 8.33333333%;
- }
- .sjb-page .col-xs-pull-12 {
- right: 100%;
- }
- .sjb-page .col-xs-pull-11 {
- right: 91.66666667%;
- }
- .sjb-page .col-xs-pull-10 {
- right: 83.33333333%;
- }
- .sjb-page .col-xs-pull-9 {
- right: 75%;
- }
- .sjb-page .col-xs-pull-8 {
- right: 66.66666667%;
- }
- .sjb-page .col-xs-pull-7 {
- right: 58.33333333%;
- }
- .sjb-page .col-xs-pull-6 {
- right: 50%;
- }
- .sjb-page .col-xs-pull-5 {
- right: 41.66666667%;
- }
- .sjb-page .col-xs-pull-4 {
- right: 33.33333333%;
- }
- .sjb-page .col-xs-pull-3 {
- right: 25%;
- }
- .sjb-page .col-xs-pull-2 {
- right: 16.66666667%;
- }
- .sjb-page .col-xs-pull-1 {
- right: 8.33333333%;
- }
- .sjb-page .col-xs-pull-0 {
- right: auto;
- }
- .sjb-page .col-xs-push-12 {
- left: 100%;
- }
- .sjb-page .col-xs-push-11 {
- left: 91.66666667%;
- }
- .sjb-page .col-xs-push-10 {
- left: 83.33333333%;
- }
- .sjb-page .col-xs-push-9 {
- left: 75%;
- }
- .sjb-page .col-xs-push-8 {
- left: 66.66666667%;
- }
- .sjb-page .col-xs-push-7 {
- left: 58.33333333%;
- }
- .sjb-page .col-xs-push-6 {
- left: 50%;
- }
- .sjb-page .col-xs-push-5 {
- left: 41.66666667%;
- }
- .sjb-page .col-xs-push-4 {
- left: 33.33333333%;
- }
- .sjb-page .col-xs-push-3 {
- left: 25%;
- }
- .sjb-page .col-xs-push-2 {
- left: 16.66666667%;
- }
- .sjb-page .col-xs-push-1 {
- left: 8.33333333%;
- }
- .sjb-page .col-xs-push-0 {
- left: auto;
- }
- .sjb-page .col-xs-offset-12 {
- margin-left: 100%;
- }
- .sjb-page .col-xs-offset-11 {
- margin-left: 91.66666667%;
- }
- .sjb-page .col-xs-offset-10 {
- margin-left: 83.33333333%;
- }
- .sjb-page .col-xs-offset-9 {
- margin-left: 75%;
- }
- .sjb-page .col-xs-offset-8 {
- margin-left: 66.66666667%;
- }
- .sjb-page .col-xs-offset-7 {
- margin-left: 58.33333333%;
- }
- .sjb-page .col-xs-offset-6 {
- margin-left: 50%;
- }
- .sjb-page .col-xs-offset-5 {
- margin-left: 41.66666667%;
- }
- .sjb-page .col-xs-offset-4 {
- margin-left: 33.33333333%;
- }
- .sjb-page .col-xs-offset-3 {
- margin-left: 25%;
- }
- .sjb-page .col-xs-offset-2 {
- margin-left: 16.66666667%;
- }
- .sjb-page .col-xs-offset-1 {
- margin-left: 8.33333333%;
- }
- .sjb-page .col-xs-offset-0 {
- margin-left: 0%;
- }
- @media (min-width: 768px) {
- .sjb-page .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
- float: left;
- }
- .sjb-page .col-sm-12 {
- width: 100%;
- }
- .sjb-page .col-sm-11 {
- width: 91.66666667%;
- }
- .sjb-page .col-sm-10 {
- width: 83.33333333%;
- }
- .sjb-page .col-sm-9 {
- width: 75%;
- }
- .sjb-page .col-sm-8 {
- width: 66.66666667%;
- }
- .sjb-page .col-sm-7 {
- width: 58.33333333%;
- }
- .sjb-page .col-sm-6 {
- width: 50%;
- }
- .sjb-page .col-sm-5 {
- width: 41.66666667%;
- }
- .sjb-page .col-sm-4 {
- width: 33.33333333%;
- }
- .sjb-page .col-sm-3 {
- width: 25%;
- }
- .sjb-page .col-sm-2 {
- width: 16.66666667%;
- }
- .sjb-page .col-sm-1 {
- width: 8.33333333%;
- }
- .sjb-page .col-sm-pull-12 {
- right: 100%;
- }
- .sjb-page .col-sm-pull-11 {
- right: 91.66666667%;
- }
- .sjb-page .col-sm-pull-10 {
- right: 83.33333333%;
- }
- .sjb-page .col-sm-pull-9 {
- right: 75%;
- }
- .sjb-page .col-sm-pull-8 {
- right: 66.66666667%;
- }
- .sjb-page .col-sm-pull-7 {
- right: 58.33333333%;
- }
- .sjb-page .col-sm-pull-6 {
- right: 50%;
- }
- .sjb-page .col-sm-pull-5 {
- right: 41.66666667%;
- }
- .sjb-page .col-sm-pull-4 {
- right: 33.33333333%;
- }
- .sjb-page .col-sm-pull-3 {
- right: 25%;
- }
- .sjb-page .col-sm-pull-2 {
- right: 16.66666667%;
- }
- .sjb-page .col-sm-pull-1 {
- right: 8.33333333%;
- }
- .sjb-page .col-sm-pull-0 {
- right: auto;
- }
- .sjb-page .col-sm-push-12 {
- left: 100%;
- }
- .sjb-page .col-sm-push-11 {
- left: 91.66666667%;
- }
- .sjb-page .col-sm-push-10 {
- left: 83.33333333%;
- }
- .sjb-page .col-sm-push-9 {
- left: 75%;
- }
- .sjb-page .col-sm-push-8 {
- left: 66.66666667%;
- }
- .sjb-page .col-sm-push-7 {
- left: 58.33333333%;
- }
- .sjb-page .col-sm-push-6 {
- left: 50%;
- }
- .sjb-page .col-sm-push-5 {
- left: 41.66666667%;
- }
- .sjb-page .col-sm-push-4 {
- left: 33.33333333%;
- }
- .sjb-page .col-sm-push-3 {
- left: 25%;
- }
- .sjb-page .col-sm-push-2 {
- left: 16.66666667%;
- }
- .sjb-page .col-sm-push-1 {
- left: 8.33333333%;
- }
- .sjb-page .col-sm-push-0 {
- left: auto;
- }
- .sjb-page .col-sm-offset-12 {
- margin-left: 100%;
- }
- .sjb-page .col-sm-offset-11 {
- margin-left: 91.66666667%;
- }
- .sjb-page .col-sm-offset-10 {
- margin-left: 83.33333333%;
- }
- .sjb-page .col-sm-offset-9 {
- margin-left: 75%;
- }
- .sjb-page .col-sm-offset-8 {
- margin-left: 66.66666667%;
- }
- .sjb-page .col-sm-offset-7 {
- margin-left: 58.33333333%;
- }
- .sjb-page .col-sm-offset-6 {
- margin-left: 50%;
- }
- .sjb-page .col-sm-offset-5 {
- margin-left: 41.66666667%;
- }
- .sjb-page .col-sm-offset-4 {
- margin-left: 33.33333333%;
- }
- .sjb-page .col-sm-offset-3 {
- margin-left: 25%;
- }
- .sjb-page .col-sm-offset-2 {
- margin-left: 16.66666667%;
- }
- .sjb-page .col-sm-offset-1 {
- margin-left: 8.33333333%;
- }
- .sjb-page .col-sm-offset-0 {
- margin-left: 0%;
- }
- }
- @media (min-width: 992px) {
- .sjb-page .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
- float: left;
- }
- .sjb-page .col-md-12 {
- width: 100%;
- }
- .sjb-page .col-md-11 {
- width: 91.66666667%;
- }
- .sjb-page .col-md-10 {
- width: 83.33333333%;
- }
- .sjb-page .col-md-9 {
- width: 75%;
- }
- .sjb-page .col-md-8 {
- width: 66.66666667%;
- }
- .sjb-page .col-md-7 {
- width: 58.33333333%;
- }
- .sjb-page .col-md-6 {
- width: 50%;
- }
- .sjb-page .col-md-5 {
- width: 41.66666667%;
- }
- .sjb-page .col-md-4 {
- width: 33.33333333%;
- }
- .sjb-page .col-md-3 {
- width: 25%;
- }
- .sjb-page .col-md-2 {
- width: 16.66666667%;
- }
- .sjb-page .col-md-1 {
- width: 8.33333333%;
- }
- .sjb-page .col-md-pull-12 {
- right: 100%;
- }
- .sjb-page .col-md-pull-11 {
- right: 91.66666667%;
- }
- .sjb-page .col-md-pull-10 {
- right: 83.33333333%;
- }
- .sjb-page .col-md-pull-9 {
- right: 75%;
- }
- .sjb-page .col-md-pull-8 {
- right: 66.66666667%;
- }
- .sjb-page .col-md-pull-7 {
- right: 58.33333333%;
- }
- .sjb-page .col-md-pull-6 {
- right: 50%;
- }
- .sjb-page .col-md-pull-5 {
- right: 41.66666667%;
- }
- .sjb-page .col-md-pull-4 {
- right: 33.33333333%;
- }
- .sjb-page .col-md-pull-3 {
- right: 25%;
- }
- .sjb-page .col-md-pull-2 {
- right: 16.66666667%;
- }
- .sjb-page .col-md-pull-1 {
- right: 8.33333333%;
- }
- .sjb-page .col-md-pull-0 {
- right: auto;
- }
- .sjb-page .col-md-push-12 {
- left: 100%;
- }
- .sjb-page .col-md-push-11 {
- left: 91.66666667%;
- }
- .sjb-page .col-md-push-10 {
- left: 83.33333333%;
- }
- .sjb-page .col-md-push-9 {
- left: 75%;
- }
- .sjb-page .col-md-push-8 {
- left: 66.66666667%;
- }
- .sjb-page .col-md-push-7 {
- left: 58.33333333%;
- }
- .sjb-page .col-md-push-6 {
- left: 50%;
- }
- .sjb-page .col-md-push-5 {
- left: 41.66666667%;
- }
- .sjb-page .col-md-push-4 {
- left: 33.33333333%;
- }
- .sjb-page .col-md-push-3 {
- left: 25%;
- }
- .sjb-page .col-md-push-2 {
- left: 16.66666667%;
- }
- .sjb-page .col-md-push-1 {
- left: 8.33333333%;
- }
- .sjb-page .col-md-push-0 {
- left: auto;
- }
- .sjb-page .col-md-offset-12 {
- margin-left: 100%;
- }
- .sjb-page .col-md-offset-11 {
- margin-left: 91.66666667%;
- }
- .sjb-page .col-md-offset-10 {
- margin-left: 83.33333333%;
- }
- .sjb-page .col-md-offset-9 {
- margin-left: 75%;
- }
- .sjb-page .col-md-offset-8 {
- margin-left: 66.66666667%;
- }
- .sjb-page .col-md-offset-7 {
- margin-left: 58.33333333%;
- }
- .sjb-page .col-md-offset-6 {
- margin-left: 50%;
- }
- .sjb-page .col-md-offset-5 {
- margin-left: 41.66666667%;
- }
- .sjb-page .col-md-offset-4 {
- margin-left: 33.33333333%;
- }
- .sjb-page .col-md-offset-3 {
- margin-left: 25%;
- }
- .sjb-page .col-md-offset-2 {
- margin-left: 16.66666667%;
- }
- .sjb-page .col-md-offset-1 {
- margin-left: 8.33333333%;
- }
- .sjb-page .col-md-offset-0 {
- margin-left: 0%;
- }
- }
- @media (min-width: 1200px) {
- .sjb-page .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
- float: left;
- }
- .sjb-page .col-lg-12 {
- width: 100%;
- }
- .sjb-page .col-lg-11 {
- width: 91.66666667%;
- }
- .sjb-page .col-lg-10 {
- width: 83.33333333%;
- }
- .sjb-page .col-lg-9 {
- width: 75%;
- }
- .sjb-page .col-lg-8 {
- width: 66.66666667%;
- }
- .sjb-page .col-lg-7 {
- width: 58.33333333%;
- }
- .sjb-page .col-lg-6 {
- width: 50%;
- }
- .sjb-page .col-lg-5 {
- width: 41.66666667%;
- }
- .sjb-page .col-lg-4 {
- width: 33.33333333%;
- }
- .sjb-page .col-lg-3 {
- width: 25%;
- }
- .sjb-page .col-lg-2 {
- width: 16.66666667%;
- }
- .sjb-page .col-lg-1 {
- width: 8.33333333%;
- }
- .sjb-page .col-lg-pull-12 {
- right: 100%;
- }
- .sjb-page .col-lg-pull-11 {
- right: 91.66666667%;
- }
- .sjb-page .col-lg-pull-10 {
- right: 83.33333333%;
- }
- .sjb-page .col-lg-pull-9 {
- right: 75%;
- }
- .sjb-page .col-lg-pull-8 {
- right: 66.66666667%;
- }
- .sjb-page .col-lg-pull-7 {
- right: 58.33333333%;
- }
- .sjb-page .col-lg-pull-6 {
- right: 50%;
- }
- .sjb-page .col-lg-pull-5 {
- right: 41.66666667%;
- }
- .sjb-page .col-lg-pull-4 {
- right: 33.33333333%;
- }
- .sjb-page .col-lg-pull-3 {
- right: 25%;
- }
- .sjb-page .col-lg-pull-2 {
- right: 16.66666667%;
- }
- .sjb-page .col-lg-pull-1 {
- right: 8.33333333%;
- }
- .sjb-page .col-lg-pull-0 {
- right: auto;
- }
- .sjb-page .col-lg-push-12 {
- left: 100%;
- }
- .sjb-page .col-lg-push-11 {
- left: 91.66666667%;
- }
- .sjb-page .col-lg-push-10 {
- left: 83.33333333%;
- }
- .sjb-page .col-lg-push-9 {
- left: 75%;
- }
- .sjb-page .col-lg-push-8 {
- left: 66.66666667%;
- }
- .sjb-page .col-lg-push-7 {
- left: 58.33333333%;
- }
- .sjb-page .col-lg-push-6 {
- left: 50%;
- }
- .sjb-page .col-lg-push-5 {
- left: 41.66666667%;
- }
- .sjb-page .col-lg-push-4 {
- left: 33.33333333%;
- }
- .sjb-page .col-lg-push-3 {
- left: 25%;
- }
- .sjb-page .col-lg-push-2 {
- left: 16.66666667%;
- }
- .sjb-page .col-lg-push-1 {
- left: 8.33333333%;
- }
- .sjb-page .col-lg-push-0 {
- left: auto;
- }
- .sjb-page .col-lg-offset-12 {
- margin-left: 100%;
- }
- .sjb-page .col-lg-offset-11 {
- margin-left: 91.66666667%;
- }
- .sjb-page .col-lg-offset-10 {
- margin-left: 83.33333333%;
- }
- .sjb-page .col-lg-offset-9 {
- margin-left: 75%;
- }
- .sjb-page .col-lg-offset-8 {
- margin-left: 66.66666667%;
- }
- .sjb-page .col-lg-offset-7 {
- margin-left: 58.33333333%;
- }
- .sjb-page .col-lg-offset-6 {
- margin-left: 50%;
- }
- .sjb-page .col-lg-offset-5 {
- margin-left: 41.66666667%;
- }
- .sjb-page .col-lg-offset-4 {
- margin-left: 33.33333333%;
- }
- .sjb-page .col-lg-offset-3 {
- margin-left: 25%;
- }
- .sjb-page .col-lg-offset-2 {
- margin-left: 16.66666667%;
- }
- .sjb-page .col-lg-offset-1 {
- margin-left: 8.33333333%;
- }
- .sjb-page .col-lg-offset-0 {
- margin-left: 0%;
- }
- }
- .sjb-page table {
- background-color: transparent;
- }
- .sjb-page th {
- text-align: left;
- }
- .sjb-page .table {
- width: 100%;
- max-width: 100%;
- margin-bottom: 20px;
- }
- .sjb-page .table > thead > tr > th,
- .sjb-page .table > tbody > tr > th,
- .sjb-page .table > tfoot > tr > th,
- .sjb-page .table > thead > tr > td,
- .sjb-page .table > tbody > tr > td,
- .sjb-page .table > tfoot > tr > td {
- padding: 8px;
- line-height: 1.42857143;
- vertical-align: top;
- border-top: 1px solid #ddd;
- }
- .sjb-page .table > thead > tr > th {
- vertical-align: bottom;
- border-bottom: 2px solid #ddd;
- }
- .sjb-page .table > caption + thead > tr:first-child > th,
- .sjb-page .table > colgroup + thead > tr:first-child > th,
- .sjb-page .table > thead:first-child > tr:first-child > th,
- .sjb-page .table > caption + thead > tr:first-child > td,
- .sjb-page .table > colgroup + thead > tr:first-child > td,
- .sjb-page .table > thead:first-child > tr:first-child > td {
- border-top: 0;
- }
- .sjb-page .table > tbody + tbody {
- border-top: 2px solid #ddd;
- }
- .sjb-page .table .table {
- background-color: #fff;
- }
- .sjb-page .table-condensed > thead > tr > th,
- .sjb-page .table-condensed > tbody > tr > th,
- .sjb-page .table-condensed > tfoot > tr > th,
- .sjb-page .table-condensed > thead > tr > td,
- .sjb-page .table-condensed > tbody > tr > td,
- .sjb-page .table-condensed > tfoot > tr > td {
- padding: 5px;
- }
- .sjb-page .table-bordered {
- border: 1px solid #ddd;
- }
- .sjb-page .table-bordered > thead > tr > th,
- .sjb-page .table-bordered > tbody > tr > th,
- .sjb-page .table-bordered > tfoot > tr > th,
- .sjb-page .table-bordered > thead > tr > td,
- .sjb-page .table-bordered > tbody > tr > td,
- .sjb-page .table-bordered > tfoot > tr > td {
- border: 1px solid #ddd;
- }
- .sjb-page .table-bordered > thead > tr > th,
- .sjb-page .table-bordered > thead > tr > td {
- border-bottom-width: 2px;
- }
- .sjb-page .table-striped > tbody > tr:nth-of-type(odd) {
- background-color: #f9f9f9;
- }
- .sjb-page .table-hover > tbody > tr:hover {
- background-color: #f5f5f5;
- }
- .sjb-page table col[class*="col-"] {
- position: static;
- float: none;
- display: table-column;
- }
- .sjb-page table td[class*="col-"],
- .sjb-page table th[class*="col-"] {
- position: static;
- float: none;
- display: table-cell;
- }
- .sjb-page .table > thead > tr > td.active,
- .sjb-page .table > tbody > tr > td.active,
- .sjb-page .table > tfoot > tr > td.active,
- .sjb-page .table > thead > tr > th.active,
- .sjb-page .table > tbody > tr > th.active,
- .sjb-page .table > tfoot > tr > th.active,
- .sjb-page .table > thead > tr.active > td,
- .sjb-page .table > tbody > tr.active > td,
- .sjb-page .table > tfoot > tr.active > td,
- .sjb-page .table > thead > tr.active > th,
- .sjb-page .table > tbody > tr.active > th,
- .sjb-page .table > tfoot > tr.active > th {
- background-color: #f5f5f5;
- }
- .sjb-page .table-hover > tbody > tr > td.active:hover,
- .sjb-page .table-hover > tbody > tr > th.active:hover,
- .sjb-page .table-hover > tbody > tr.active:hover > td,
- .sjb-page .table-hover > tbody > tr:hover > .active,
- .sjb-page .table-hover > tbody > tr.active:hover > th {
- background-color: #e8e8e8;
- }
- .sjb-page .table > thead > tr > td.success,
- .sjb-page .table > tbody > tr > td.success,
- .sjb-page .table > tfoot > tr > td.success,
- .sjb-page .table > thead > tr > th.success,
- .sjb-page .table > tbody > tr > th.success,
- .sjb-page .table > tfoot > tr > th.success,
- .sjb-page .table > thead > tr.success > td,
- .sjb-page .table > tbody > tr.success > td,
- .sjb-page .table > tfoot > tr.success > td,
- .sjb-page .table > thead > tr.success > th,
- .sjb-page .table > tbody > tr.success > th,
- .sjb-page .table > tfoot > tr.success > th {
- background-color: #dff0d8;
- }
- .sjb-page .table-hover > tbody > tr > td.success:hover,
- .sjb-page .table-hover > tbody > tr > th.success:hover,
- .sjb-page .table-hover > tbody > tr.success:hover > td,
- .sjb-page .table-hover > tbody > tr:hover > .success,
- .sjb-page .table-hover > tbody > tr.success:hover > th {
- background-color: #d0e9c6;
- }
- .sjb-page .table > thead > tr > td.info,
- .sjb-page .table > tbody > tr > td.info,
- .sjb-page .table > tfoot > tr > td.info,
- .sjb-page .table > thead > tr > th.info,
- .sjb-page .table > tbody > tr > th.info,
- .sjb-page .table > tfoot > tr > th.info,
- .sjb-page .table > thead > tr.info > td,
- .sjb-page .table > tbody > tr.info > td,
- .sjb-page .table > tfoot > tr.info > td,
- .sjb-page .table > thead > tr.info > th,
- .sjb-page .table > tbody > tr.info > th,
- .sjb-page .table > tfoot > tr.info > th {
- background-color: #d9edf7;
- }
- .sjb-page .table-hover > tbody > tr > td.info:hover,
- .sjb-page .table-hover > tbody > tr > th.info:hover,
- .sjb-page .table-hover > tbody > tr.info:hover > td,
- .sjb-page .table-hover > tbody > tr:hover > .info,
- .sjb-page .table-hover > tbody > tr.info:hover > th {
- background-color: #c4e3f3;
- }
- .sjb-page .table > thead > tr > td.warning,
- .sjb-page .table > tbody > tr > td.warning,
- .sjb-page .table > tfoot > tr > td.warning,
- .sjb-page .table > thead > tr > th.warning,
- .sjb-page .table > tbody > tr > th.warning,
- .sjb-page .table > tfoot > tr > th.warning,
- .sjb-page .table > thead > tr.warning > td,
- .sjb-page .table > tbody > tr.warning > td,
- .sjb-page .table > tfoot > tr.warning > td,
- .sjb-page .table > thead > tr.warning > th,
- .sjb-page .table > tbody > tr.warning > th,
- .sjb-page .table > tfoot > tr.warning > th {
- background-color: #fcf8e3;
- }
- .sjb-page .table-hover > tbody > tr > td.warning:hover,
- .sjb-page .table-hover > tbody > tr > th.warning:hover,
- .sjb-page .table-hover > tbody > tr.warning:hover > td,
- .sjb-page .table-hover > tbody > tr:hover > .warning,
- .sjb-page .table-hover > tbody > tr.warning:hover > th {
- background-color: #faf2cc;
- }
- .sjb-page .table > thead > tr > td.danger,
- .sjb-page .table > tbody > tr > td.danger,
- .sjb-page .table > tfoot > tr > td.danger,
- .sjb-page .table > thead > tr > th.danger,
- .sjb-page .table > tbody > tr > th.danger,
- .sjb-page .table > tfoot > tr > th.danger,
- .sjb-page .table > thead > tr.danger > td,
- .sjb-page .table > tbody > tr.danger > td,
- .sjb-page .table > tfoot > tr.danger > td,
- .sjb-page .table > thead > tr.danger > th,
- .sjb-page .table > tbody > tr.danger > th,
- .sjb-page .table > tfoot > tr.danger > th {
- background-color: #f2dede;
- }
- .sjb-page .table-hover > tbody > tr > td.danger:hover,
- .sjb-page .table-hover > tbody > tr > th.danger:hover,
- .sjb-page .table-hover > tbody > tr.danger:hover > td,
- .sjb-page .table-hover > tbody > tr:hover > .danger,
- .sjb-page .table-hover > tbody > tr.danger:hover > th {
- background-color: #ebcccc;
- }
- .sjb-page .table-responsive {
- overflow-x: auto;
- min-height: 0.01%;
- }
- @media screen and (max-width: 767px) {
- .sjb-page .table-responsive {
- width: 100%;
- margin-bottom: 15px;
- overflow-y: hidden;
- -ms-overflow-style: -ms-autohiding-scrollbar;
- border: 1px solid #ddd;
- }
- .sjb-page .table-responsive > .table {
- margin-bottom: 0;
- }
- .sjb-page .table-responsive > .table > thead > tr > th,
- .sjb-page .table-responsive > .table > tbody > tr > th,
- .sjb-page .table-responsive > .table > tfoot > tr > th,
- .sjb-page .table-responsive > .table > thead > tr > td,
- .sjb-page .table-responsive > .table > tbody > tr > td,
- .sjb-page .table-responsive > .table > tfoot > tr > td {
- white-space: nowrap;
- }
- .sjb-page .table-responsive > .table-bordered {
- border: 0;
- }
- .sjb-page .table-responsive > .table-bordered > thead > tr > th:first-child,
- .sjb-page .table-responsive > .table-bordered > tbody > tr > th:first-child,
- .sjb-page .table-responsive > .table-bordered > tfoot > tr > th:first-child,
- .sjb-page .table-responsive > .table-bordered > thead > tr > td:first-child,
- .sjb-page .table-responsive > .table-bordered > tbody > tr > td:first-child,
- .sjb-page .table-responsive > .table-bordered > tfoot > tr > td:first-child {
- border-left: 0;
- }
- .sjb-page .table-responsive > .table-bordered > thead > tr > th:last-child,
- .sjb-page .table-responsive > .table-bordered > tbody > tr > th:last-child,
- .sjb-page .table-responsive > .table-bordered > tfoot > tr > th:last-child,
- .sjb-page .table-responsive > .table-bordered > thead > tr > td:last-child,
- .sjb-page .table-responsive > .table-bordered > tbody > tr > td:last-child,
- .sjb-page .table-responsive > .table-bordered > tfoot > tr > td:last-child {
- border-right: 0;
- }
- .sjb-page .table-responsive > .table-bordered > tbody > tr:last-child > th,
- .sjb-page .table-responsive > .table-bordered > tfoot > tr:last-child > th,
- .sjb-page .table-responsive > .table-bordered > tbody > tr:last-child > td,
- .sjb-page .table-responsive > .table-bordered > tfoot > tr:last-child > td {
- border-bottom: 0;
- }
- }
- .sjb-page label {
- display: inline-block;
- max-width: 100%;
- margin-bottom: 5px;
- font-weight: bold;
- }
- .sjb-page input[type="search"] {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .sjb-page input[type="radio"],
- .sjb-page input[type="checkbox"] {
- margin: 4px 0 0;
- margin-top: 1px \9;
- line-height: normal;
- }
- .sjb-page input[type="file"] {
- display: block;
- }
- .sjb-page input[type="file"]:focus,
- .sjb-page input[type="radio"]:focus,
- .sjb-page input[type="checkbox"]:focus {
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
- }
- .sjb-page .form-control {
- display: block;
- width: 100%;
- height: 34px;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.42857143;
- color: #666;
- background-color: #fff;
- background-image: none;
- border: 1px solid #e1e1e1;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- }
- .sjb-page .form-control:focus {
- border-color: #e1e1e1;
- outline: 0;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- }
- .sjb-page .form-control::-moz-placeholder {
- color: #a4a4a4;
- opacity: 1;
- }
- .sjb-page .form-control:-ms-input-placeholder {
- color: #a4a4a4;
- }
- .sjb-page .form-control::-webkit-input-placeholder {
- color: #a4a4a4;
- }
- .sjb-page .form-control::-ms-expand {
- border: 0;
- background-color: transparent;
- }
- textarea.sjb-page .form-control {
- height: auto;
- }
- .sjb-page input[type="search"] {
- -webkit-appearance: none;
- }
- @media screen and (-webkit-min-device-pixel-ratio: 0) {
- .sjb-page input[type="date"].form-control,
- .sjb-page input[type="time"].form-control,
- .sjb-page input[type="datetime-local"].form-control,
- .sjb-page input[type="month"].form-control {
- line-height: 34px;
- }
- .sjb-page input[type="date"].input-sm,
- .sjb-page input[type="time"].input-sm,
- .sjb-page input[type="datetime-local"].input-sm,
- .sjb-page input[type="month"].input-sm,
- .input-group-sm .sjb-page input[type="date"],
- .input-group-sm .sjb-page input[type="time"],
- .input-group-sm .sjb-page input[type="datetime-local"],
- .input-group-sm .sjb-page input[type="month"] {
- line-height: 30px;
- }
- .sjb-page input[type="date"].input-lg,
- .sjb-page input[type="time"].input-lg,
- .sjb-page input[type="datetime-local"].input-lg,
- .sjb-page input[type="month"].input-lg,
- .input-group-lg .sjb-page input[type="date"],
- .input-group-lg .sjb-page input[type="time"],
- .input-group-lg .sjb-page input[type="datetime-local"],
- .input-group-lg .sjb-page input[type="month"] {
- line-height: 44px;
- }
- }
- .sjb-page .form-group {
- margin-bottom: 15px;
- }
- .sjb-page .radio,
- .sjb-page .checkbox {
- position: relative;
- display: block;
- margin-top: 10px;
- margin-bottom: 10px;
- }
- .sjb-page .radio label,
- .sjb-page .checkbox label {
- min-height: 20px;
- padding-left: 20px;
- margin-bottom: 0;
- font-weight: normal;
- cursor: pointer;
- }
- .sjb-page .radio input[type="radio"],
- .sjb-page .checkbox input[type="checkbox"] {
- position: absolute;
- margin-left: -20px;
- margin-top: 4px \9;
- }
- .sjb-page .radio + .radio,
- .sjb-page .checkbox + .checkbox {
- margin-top: -5px;
- }
- .sjb-page input[type="radio"][disabled],
- .sjb-page input[type="checkbox"][disabled],
- .sjb-page input[type="radio"].disabled,
- .sjb-page input[type="checkbox"].disabled,
- fieldset[disabled] .sjb-page input[type="radio"],
- fieldset[disabled] .sjb-page input[type="checkbox"] {
- cursor: not-allowed;
- }
- .sjb-page .radio.disabled label,
- .sjb-page .checkbox.disabled label,
- fieldset[disabled] .sjb-page .radio label,
- fieldset[disabled] .sjb-page .checkbox label {
- cursor: not-allowed;
- }
- .sjb-page .btn {
- display: inline-block;
- margin-bottom: 0;
- font-weight: normal;
- text-align: center;
- vertical-align: middle;
- touch-action: manipulation;
- cursor: pointer;
- background-image: none;
- border: 1px solid transparent;
- white-space: nowrap;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.42857143;
- border-radius: 4px;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .sjb-page .btn:focus,
- .sjb-page .btn:active:focus,
- .sjb-page .btn.active:focus,
- .sjb-page .btn.focus,
- .sjb-page .btn:active.focus,
- .sjb-page .btn.active.focus {
- outline: 5px auto -webkit-focus-ring-color;
- outline-offset: -2px;
- }
- .sjb-page .btn:hover,
- .sjb-page .btn:focus,
- .sjb-page .btn.focus {
- color: #fff;
- text-decoration: none;
- }
- .sjb-page .btn:active,
- .sjb-page .btn.active {
- outline: 0;
- background-image: none;
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
- }
- .sjb-page .btn-primary {
- color: #fff;
- background-color: #3297fa;
- border-color: #198af9;
- }
- .sjb-page .btn-primary:focus,
- .sjb-page .btn-primary.focus {
- color: #fff;
- background-color: #067ef3;
- border-color: #034a90;
- }
- .sjb-page .btn-primary:hover {
- color: #fff;
- background-color: #067ef3;
- border-color: #056cd0;
- }
- .sjb-page .btn-primary:active,
- .sjb-page .btn-primary.active,
- .open > .dropdown-toggle.sjb-page .btn-primary {
- color: #fff;
- background-color: #067ef3;
- border-color: #056cd0;
- }
- .sjb-page .btn-primary:active:hover,
- .sjb-page .btn-primary.active:hover,
- .open > .dropdown-toggle.sjb-page .btn-primary:hover,
- .sjb-page .btn-primary:active:focus,
- .sjb-page .btn-primary.active:focus,
- .open > .dropdown-toggle.sjb-page .btn-primary:focus,
- .sjb-page .btn-primary:active.focus,
- .sjb-page .btn-primary.active.focus,
- .open > .dropdown-toggle.sjb-page .btn-primary.focus {
- color: #fff;
- background-color: #056cd0;
- border-color: #034a90;
- }
- .sjb-page .btn-primary:active,
- .sjb-page .btn-primary.active,
- .open > .dropdown-toggle.sjb-page .btn-primary {
- background-image: none;
- }
- .sjb-page .btn-primary.disabled:hover,
- .sjb-page .btn-primary[disabled]:hover,
- fieldset[disabled] .sjb-page .btn-primary:hover,
- .sjb-page .btn-primary.disabled:focus,
- .sjb-page .btn-primary[disabled]:focus,
- fieldset[disabled] .sjb-page .btn-primary:focus,
- .sjb-page .btn-primary.disabled.focus,
- .sjb-page .btn-primary[disabled].focus,
- fieldset[disabled] .sjb-page .btn-primary.focus {
- background-color: #3297fa;
- border-color: #198af9;
- }
- .sjb-page .btn-primary .badge {
- color: #3297fa;
- background-color: #fff;
- }
- .sjb-page .alert {
- padding: 15px;
- margin-bottom: 20px;
- border: 1px solid transparent;
- border-radius: 4px;
- }
- .sjb-page .alert-success {
- background-color: #dff0d8;
- border-color: #d6e9c6;
- color: #3c763d;
- }
- .sjb-page .alert-success hr {
- border-top-color: #c9e2b3;
- }
- .sjb-page .alert-success .alert-link {
- color: #2b542c;
- }
- .sjb-page .alert-info {
- background-color: #d9edf7;
- border-color: #bce8f1;
- color: #31708f;
- }
- .sjb-page .alert-info hr {
- border-top-color: #a6e1ec;
- }
- .sjb-page .alert-info .alert-link {
- color: #245269;
- }
- .sjb-page .alert-warning {
- background-color: #fcf8e3;
- border-color: #faebcc;
- color: #8a6d3b;
- }
- .sjb-page .alert-warning hr {
- border-top-color: #f7e1b5;
- }
- .sjb-page .alert-warning .alert-link {
- color: #66512c;
- }
- .sjb-page .alert-danger {
- background-color: #f2dede;
- border-color: #ebccd1;
- color: #a94442;
- }
- .sjb-page .alert-danger hr {
- border-top-color: #e4b9c0;
- }
- .sjb-page .alert-danger .alert-link {
- color: #843534;
- }
- .sjb-page .clearfix:before,
- .sjb-page .clearfix:after,
- .sjb-page .sjb-page .row:before,
- .sjb-page .sjb-page .row:after {
- content: " ";
- display: table;
- }
- .sjb-page .clearfix:after,
- .sjb-page .sjb-page .row:after {
- clear: both;
- }
- .sjb-page .pull-right {
- float: right !important;
- }
- .sjb-page .pull-left {
- float: left !important;
- }
- @-ms-viewport {
- width: device-width;
- }
- .visible-xs,
- .visible-sm,
- .visible-md,
- .visible-lg {
- display: none !important;
- }
- .visible-xs-block,
- .visible-xs-inline,
- .visible-xs-inline-block,
- .visible-sm-block,
- .visible-sm-inline,
- .visible-sm-inline-block,
- .visible-md-block,
- .visible-md-inline,
- .visible-md-inline-block,
- .visible-lg-block,
- .visible-lg-inline,
- .visible-lg-inline-block {
- display: none !important;
- }
- @media (max-width: 767px) {
- .visible-xs {
- display: block !important;
- }
- table.visible-xs {
- display: table !important;
- }
- tr.visible-xs {
- display: table-row !important;
- }
- th.visible-xs,
- td.visible-xs {
- display: table-cell !important;
- }
- }
- @media (max-width: 767px) {
- .visible-xs-block {
- display: block !important;
- }
- }
- @media (max-width: 767px) {
- .visible-xs-inline {
- display: inline !important;
- }
- }
- @media (max-width: 767px) {
- .visible-xs-inline-block {
- display: inline-block !important;
- }
- }
- @media (min-width: 768px) and (max-width: 991px) {
- .visible-sm {
- display: block !important;
- }
- table.visible-sm {
- display: table !important;
- }
- tr.visible-sm {
- display: table-row !important;
- }
- th.visible-sm,
- td.visible-sm {
- display: table-cell !important;
- }
- }
- @media (min-width: 768px) and (max-width: 991px) {
- .visible-sm-block {
- display: block !important;
- }
- }
- @media (min-width: 768px) and (max-width: 991px) {
- .visible-sm-inline {
- display: inline !important;
- }
- }
- @media (min-width: 768px) and (max-width: 991px) {
- .visible-sm-inline-block {
- display: inline-block !important;
- }
- }
- @media (min-width: 992px) and (max-width: 1199px) {
- .visible-md {
- display: block !important;
- }
- table.visible-md {
- display: table !important;
- }
- tr.visible-md {
- display: table-row !important;
- }
- th.visible-md,
- td.visible-md {
- display: table-cell !important;
- }
- }
- @media (min-width: 992px) and (max-width: 1199px) {
- .visible-md-block {
- display: block !important;
- }
- }
- @media (min-width: 992px) and (max-width: 1199px) {
- .visible-md-inline {
- display: inline !important;
- }
- }
- @media (min-width: 992px) and (max-width: 1199px) {
- .visible-md-inline-block {
- display: inline-block !important;
- }
- }
- @media (min-width: 1200px) {
- .visible-lg {
- display: block !important;
- }
- table.visible-lg {
- display: table !important;
- }
- tr.visible-lg {
- display: table-row !important;
- }
- th.visible-lg,
- td.visible-lg {
- display: table-cell !important;
- }
- }
- @media (min-width: 1200px) {
- .visible-lg-block {
- display: block !important;
- }
- }
- @media (min-width: 1200px) {
- .visible-lg-inline {
- display: inline !important;
- }
- }
- @media (min-width: 1200px) {
- .visible-lg-inline-block {
- display: inline-block !important;
- }
- }
- @media (max-width: 767px) {
- .hidden-xs {
- display: none !important;
- }
- }
- @media (min-width: 768px) and (max-width: 991px) {
- .hidden-sm {
- display: none !important;
- }
- }
- @media (min-width: 992px) and (max-width: 1199px) {
- .hidden-md {
- display: none !important;
- }
- }
- @media (min-width: 1200px) {
- .hidden-lg {
- display: none !important;
- }
- }
- .visible-print {
- display: none !important;
- }
- @media print {
- .visible-print {
- display: block !important;
- }
- table.visible-print {
- display: table !important;
- }
- tr.visible-print {
- display: table-row !important;
- }
- th.visible-print,
- td.visible-print {
- display: table-cell !important;
- }
- }
- .visible-print-block {
- display: none !important;
- }
- @media print {
- .visible-print-block {
- display: block !important;
- }
- }
- .visible-print-inline {
- display: none !important;
- }
- @media print {
- .visible-print-inline {
- display: inline !important;
- }
- }
- .visible-print-inline-block {
- display: none !important;
- }
- @media print {
- .visible-print-inline-block {
- display: inline-block !important;
- }
- }
- @media print {
- .hidden-print {
- display: none !important;
- }
- }
- /*--------------------------------------------------------------
- 2. International Telephone Input
- --------------------------------------------------------------*/
- .intl-tel-input {
- position: relative;
- }
- .intl-tel-input * {
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- }
- .intl-tel-input .hide {
- display: none;
- }
- .intl-tel-input .v-hide {
- visibility: hidden;
- }
- .intl-tel-input input,
- .intl-tel-input input[type=text],
- .intl-tel-input input[type=tel] {
- position: relative;
- z-index: 0;
- margin-top: 0 !important;
- margin-bottom: 0 !important;
- padding-left: 48px !important;
- padding-right: 48px !important;
- margin-left: 0;
- transition: background-color 100ms ease-out;
- }
- .intl-tel-input input.iti-invalid-key {
- transition: background-color 0ms ease-out;
- background-color: #ffc7c7;
- }
- .intl-tel-input .flag-container {
- position: absolute;
- top: 0;
- bottom: 0;
- padding: 1px;
- }
- .intl-tel-input .flag-container:hover {
- cursor: pointer;
- }
- .intl-tel-input .flag-container:hover .selected-flag {
- background-color: rgba(0, 0, 0, 0.05);
- }
- .intl-tel-input input[disabled] + .flag-container:hover,
- .intl-tel-input input[readonly] + .flag-container:hover {
- cursor: default;
- }
- .intl-tel-input input[disabled] + .flag-container:hover .selected-flag,
- .intl-tel-input input[readonly] + .flag-container:hover .selected-flag {
- background-color: transparent;
- }
- .intl-tel-input .selected-flag {
- z-index: 1;
- position: relative;
- width: 42px;
- height: 100%;
- padding: 0 15px 0 8px;
- }
- .intl-tel-input .selected-flag .iti-flag {
- position: absolute;
- top: 0;
- bottom: 0;
- margin: auto;
- }
- .intl-tel-input .selected-flag .iti-arrow {
- position: absolute;
- top: 50%;
- margin-top: -2px;
- right: 4px;
- width: 0;
- height: 0;
- border-left: 3px solid transparent;
- border-right: 3px solid transparent;
- border-top: 4px solid #555;
- }
- .intl-tel-input .selected-flag .iti-arrow.up {
- border-top: none;
- border-bottom: 4px solid #555;
- }
- .intl-tel-input .country-list {
- list-style: none !important;
- position: absolute;
- z-index: 2;
- padding: 0 !important;
- margin: 0 0 0 -1px;
- box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
- background-color: white;
- border: 1px solid #ccc;
- white-space: nowrap;
- max-height: 200px;
- overflow-y: scroll;
- }
- .intl-tel-input .country-list.dropup {
- bottom: 100%;
- margin-bottom: -1px;
- }
- .intl-tel-input .country-list .flag-box {
- display: inline-block;
- width: 20px;
- }
- @media (max-width: 500px) {
- .intl-tel-input .country-list {
- white-space: normal;
- }
- }
- .intl-tel-input .country-list .divider {
- padding-bottom: 5px;
- margin-bottom: 5px;
- border-bottom: 1px solid #ccc;
- }
- .intl-tel-input .country-list .country {
- padding: 5px 10px;
- }
- .intl-tel-input .country-list .country .dial-code {
- color: #999;
- }
- .intl-tel-input .country-list .country.highlight {
- background-color: rgba(0, 0, 0, 0.05);
- }
- .intl-tel-input .country-list .flag-box,
- .intl-tel-input .country-list .country-name,
- .intl-tel-input .country-list .dial-code {
- vertical-align: middle;
- }
- .intl-tel-input .country-list .flag-box,
- .intl-tel-input .country-list .country-name {
- margin-right: 6px;
- margin-left: 6px;
- }
- .intl-tel-input select {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1;
- width: 42px;
- height: 100%;
- opacity: 0;
- }
- .intl-tel-input.iti-container {
- position: absolute;
- top: -1000px;
- left: -1000px;
- z-index: 1060;
- padding: 1px;
- }
- .intl-tel-input.iti-container:hover {
- cursor: pointer;
- }
- .iti-flag {
- width: 20px;
- }
- .iti-flag.be {
- width: 18px;
- }
- .iti-flag.ch {
- width: 15px;
- }
- .iti-flag.mc {
- width: 19px;
- }
- .iti-flag.ne {
- width: 18px;
- }
- .iti-flag.np {
- width: 13px;
- }
- .iti-flag.va {
- width: 15px;
- }
- @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
- .iti-flag {
- background-size: 5630px 15px;
- }
- }
- .iti-flag.ac {
- height: 10px;
- background-position: 0px 0px;
- }
- .iti-flag.ad {
- height: 14px;
- background-position: -22px 0px;
- }
- .iti-flag.ae {
- height: 10px;
- background-position: -44px 0px;
- }
- .iti-flag.af {
- height: 14px;
- background-position: -66px 0px;
- }
- .iti-flag.ag {
- height: 14px;
- background-position: -88px 0px;
- }
- .iti-flag.ai {
- height: 10px;
- background-position: -110px 0px;
- }
- .iti-flag.al {
- height: 15px;
- background-position: -132px 0px;
- }
- .iti-flag.am {
- height: 10px;
- background-position: -154px 0px;
- }
- .iti-flag.ao {
- height: 14px;
- background-position: -176px 0px;
- }
- .iti-flag.aq {
- height: 14px;
- background-position: -198px 0px;
- }
- .iti-flag.ar {
- height: 13px;
- background-position: -220px 0px;
- }
- .iti-flag.as {
- height: 10px;
- background-position: -242px 0px;
- }
- .iti-flag.at {
- height: 14px;
- background-position: -264px 0px;
- }
- .iti-flag.au {
- height: 10px;
- background-position: -286px 0px;
- }
- .iti-flag.aw {
- height: 14px;
- background-position: -308px 0px;
- }
- .iti-flag.ax {
- height: 13px;
- background-position: -330px 0px;
- }
- .iti-flag.az {
- height: 10px;
- background-position: -352px 0px;
- }
- .iti-flag.ba {
- height: 10px;
- background-position: -374px 0px;
- }
- .iti-flag.bb {
- height: 14px;
- background-position: -396px 0px;
- }
- .iti-flag.bd {
- height: 12px;
- background-position: -418px 0px;
- }
- .iti-flag.be {
- height: 15px;
- background-position: -440px 0px;
- }
- .iti-flag.bf {
- height: 14px;
- background-position: -460px 0px;
- }
- .iti-flag.bg {
- height: 12px;
- background-position: -482px 0px;
- }
- .iti-flag.bh {
- height: 12px;
- background-position: -504px 0px;
- }
- .iti-flag.bi {
- height: 12px;
- background-position: -526px 0px;
- }
- .iti-flag.bj {
- height: 14px;
- background-position: -548px 0px;
- }
- .iti-flag.bl {
- height: 14px;
- background-position: -570px 0px;
- }
- .iti-flag.bm {
- height: 10px;
- background-position: -592px 0px;
- }
- .iti-flag.bn {
- height: 10px;
- background-position: -614px 0px;
- }
- .iti-flag.bo {
- height: 14px;
- background-position: -636px 0px;
- }
- .iti-flag.bq {
- height: 14px;
- background-position: -658px 0px;
- }
- .iti-flag.br {
- height: 14px;
- background-position: -680px 0px;
- }
- .iti-flag.bs {
- height: 10px;
- background-position: -702px 0px;
- }
- .iti-flag.bt {
- height: 14px;
- background-position: -724px 0px;
- }
- .iti-flag.bv {
- height: 15px;
- background-position: -746px 0px;
- }
- .iti-flag.bw {
- height: 14px;
- background-position: -768px 0px;
- }
- .iti-flag.by {
- height: 10px;
- background-position: -790px 0px;
- }
- .iti-flag.bz {
- height: 14px;
- background-position: -812px 0px;
- }
- .iti-flag.ca {
- height: 10px;
- background-position: -834px 0px;
- }
- .iti-flag.cc {
- height: 10px;
- background-position: -856px 0px;
- }
- .iti-flag.cd {
- height: 15px;
- background-position: -878px 0px;
- }
- .iti-flag.cf {
- height: 14px;
- background-position: -900px 0px;
- }
- .iti-flag.cg {
- height: 14px;
- background-position: -922px 0px;
- }
- .iti-flag.ch {
- height: 15px;
- background-position: -944px 0px;
- }
- .iti-flag.ci {
- height: 14px;
- background-position: -961px 0px;
- }
- .iti-flag.ck {
- height: 10px;
- background-position: -983px 0px;
- }
- .iti-flag.cl {
- height: 14px;
- background-position: -1005px 0px;
- }
- .iti-flag.cm {
- height: 14px;
- background-position: -1027px 0px;
- }
- .iti-flag.cn {
- height: 14px;
- background-position: -1049px 0px;
- }
- .iti-flag.co {
- height: 14px;
- background-position: -1071px 0px;
- }
- .iti-flag.cp {
- height: 14px;
- background-position: -1093px 0px;
- }
- .iti-flag.cr {
- height: 12px;
- background-position: -1115px 0px;
- }
- .iti-flag.cu {
- height: 10px;
- background-position: -1137px 0px;
- }
- .iti-flag.cv {
- height: 12px;
- background-position: -1159px 0px;
- }
- .iti-flag.cw {
- height: 14px;
- background-position: -1181px 0px;
- }
- .iti-flag.cx {
- height: 10px;
- background-position: -1203px 0px;
- }
- .iti-flag.cy {
- height: 13px;
- background-position: -1225px 0px;
- }
- .iti-flag.cz {
- height: 14px;
- background-position: -1247px 0px;
- }
- .iti-flag.de {
- height: 12px;
- background-position: -1269px 0px;
- }
- .iti-flag.dg {
- height: 10px;
- background-position: -1291px 0px;
- }
- .iti-flag.dj {
- height: 14px;
- background-position: -1313px 0px;
- }
- .iti-flag.dk {
- height: 15px;
- background-position: -1335px 0px;
- }
- .iti-flag.dm {
- height: 10px;
- background-position: -1357px 0px;
- }
- .iti-flag.do {
- height: 13px;
- background-position: -1379px 0px;
- }
- .iti-flag.dz {
- height: 14px;
- background-position: -1401px 0px;
- }
- .iti-flag.ea {
- height: 14px;
- background-position: -1423px 0px;
- }
- .iti-flag.ec {
- height: 14px;
- background-position: -1445px 0px;
- }
- .iti-flag.ee {
- height: 13px;
- background-position: -1467px 0px;
- }
- .iti-flag.eg {
- height: 14px;
- background-position: -1489px 0px;
- }
- .iti-flag.eh {
- height: 10px;
- background-position: -1511px 0px;
- }
- .iti-flag.er {
- height: 10px;
- background-position: -1533px 0px;
- }
- .iti-flag.es {
- height: 14px;
- background-position: -1555px 0px;
- }
- .iti-flag.et {
- height: 10px;
- background-position: -1577px 0px;
- }
- .iti-flag.eu {
- height: 14px;
- background-position: -1599px 0px;
- }
- .iti-flag.fi {
- height: 12px;
- background-position: -1621px 0px;
- }
- .iti-flag.fj {
- height: 10px;
- background-position: -1643px 0px;
- }
- .iti-flag.fk {
- height: 10px;
- background-position: -1665px 0px;
- }
- .iti-flag.fm {
- height: 11px;
- background-position: -1687px 0px;
- }
- .iti-flag.fo {
- height: 15px;
- background-position: -1709px 0px;
- }
- .iti-flag.fr {
- height: 14px;
- background-position: -1731px 0px;
- }
- .iti-flag.ga {
- height: 15px;
- background-position: -1753px 0px;
- }
- .iti-flag.gb {
- height: 10px;
- background-position: -1775px 0px;
- }
- .iti-flag.gd {
- height: 12px;
- background-position: -1797px 0px;
- }
- .iti-flag.ge {
- height: 14px;
- background-position: -1819px 0px;
- }
- .iti-flag.gf {
- height: 14px;
- background-position: -1841px 0px;
- }
- .iti-flag.gg {
- height: 14px;
- background-position: -1863px 0px;
- }
- .iti-flag.gh {
- height: 14px;
- background-position: -1885px 0px;
- }
- .iti-flag.gi {
- height: 10px;
- background-position: -1907px 0px;
- }
- .iti-flag.gl {
- height: 14px;
- background-position: -1929px 0px;
- }
- .iti-flag.gm {
- height: 14px;
- background-position: -1951px 0px;
- }
- .iti-flag.gn {
- height: 14px;
- background-position: -1973px 0px;
- }
- .iti-flag.gp {
- height: 14px;
- background-position: -1995px 0px;
- }
- .iti-flag.gq {
- height: 14px;
- background-position: -2017px 0px;
- }
- .iti-flag.gr {
- height: 14px;
- background-position: -2039px 0px;
- }
- .iti-flag.gs {
- height: 10px;
- background-position: -2061px 0px;
- }
- .iti-flag.gt {
- height: 13px;
- background-position: -2083px 0px;
- }
- .iti-flag.gu {
- height: 11px;
- background-position: -2105px 0px;
- }
- .iti-flag.gw {
- height: 10px;
- background-position: -2127px 0px;
- }
- .iti-flag.gy {
- height: 12px;
- background-position: -2149px 0px;
- }
- .iti-flag.hk {
- height: 14px;
- background-position: -2171px 0px;
- }
- .iti-flag.hm {
- height: 10px;
- background-position: -2193px 0px;
- }
- .iti-flag.hn {
- height: 10px;
- background-position: -2215px 0px;
- }
- .iti-flag.hr {
- height: 10px;
- background-position: -2237px 0px;
- }
- .iti-flag.ht {
- height: 12px;
- background-position: -2259px 0px;
- }
- .iti-flag.hu {
- height: 10px;
- background-position: -2281px 0px;
- }
- .iti-flag.ic {
- height: 14px;
- background-position: -2303px 0px;
- }
- .iti-flag.id {
- height: 14px;
- background-position: -2325px 0px;
- }
- .iti-flag.ie {
- height: 10px;
- background-position: -2347px 0px;
- }
- .iti-flag.il {
- height: 15px;
- background-position: -2369px 0px;
- }
- .iti-flag.im {
- height: 10px;
- background-position: -2391px 0px;
- }
- .iti-flag.in {
- height: 14px;
- background-position: -2413px 0px;
- }
- .iti-flag.io {
- height: 10px;
- background-position: -2435px 0px;
- }
- .iti-flag.iq {
- height: 14px;
- background-position: -2457px 0px;
- }
- .iti-flag.ir {
- height: 12px;
- background-position: -2479px 0px;
- }
- .iti-flag.is {
- height: 15px;
- background-position: -2501px 0px;
- }
- .iti-flag.it {
- height: 14px;
- background-position: -2523px 0px;
- }
- .iti-flag.je {
- height: 12px;
- background-position: -2545px 0px;
- }
- .iti-flag.jm {
- height: 10px;
- background-position: -2567px 0px;
- }
- .iti-flag.jo {
- height: 10px;
- background-position: -2589px 0px;
- }
- .iti-flag.jp {
- height: 14px;
- background-position: -2611px 0px;
- }
- .iti-flag.ke {
- height: 14px;
- background-position: -2633px 0px;
- }
- .iti-flag.kg {
- height: 12px;
- background-position: -2655px 0px;
- }
- .iti-flag.kh {
- height: 13px;
- background-position: -2677px 0px;
- }
- .iti-flag.ki {
- height: 10px;
- background-position: -2699px 0px;
- }
- .iti-flag.km {
- height: 12px;
- background-position: -2721px 0px;
- }
- .iti-flag.kn {
- height: 14px;
- background-position: -2743px 0px;
- }
- .iti-flag.kp {
- height: 10px;
- background-position: -2765px 0px;
- }
- .iti-flag.kr {
- height: 14px;
- background-position: -2787px 0px;
- }
- .iti-flag.kw {
- height: 10px;
- background-position: -2809px 0px;
- }
- .iti-flag.ky {
- height: 10px;
- background-position: -2831px 0px;
- }
- .iti-flag.kz {
- height: 10px;
- background-position: -2853px 0px;
- }
- .iti-flag.la {
- height: 14px;
- background-position: -2875px 0px;
- }
- .iti-flag.lb {
- height: 14px;
- background-position: -2897px 0px;
- }
- .iti-flag.lc {
- height: 10px;
- background-position: -2919px 0px;
- }
- .iti-flag.li {
- height: 12px;
- background-position: -2941px 0px;
- }
- .iti-flag.lk {
- height: 10px;
- background-position: -2963px 0px;
- }
- .iti-flag.lr {
- height: 11px;
- background-position: -2985px 0px;
- }
- .iti-flag.ls {
- height: 14px;
- background-position: -3007px 0px;
- }
- .iti-flag.lt {
- height: 12px;
- background-position: -3029px 0px;
- }
- .iti-flag.lu {
- height: 12px;
- background-position: -3051px 0px;
- }
- .iti-flag.lv {
- height: 10px;
- background-position: -3073px 0px;
- }
- .iti-flag.ly {
- height: 10px;
- background-position: -3095px 0px;
- }
- .iti-flag.ma {
- height: 14px;
- background-position: -3117px 0px;
- }
- .iti-flag.mc {
- height: 15px;
- background-position: -3139px 0px;
- }
- .iti-flag.md {
- height: 10px;
- background-position: -3160px 0px;
- }
- .iti-flag.me {
- height: 10px;
- background-position: -3182px 0px;
- }
- .iti-flag.mf {
- height: 14px;
- background-position: -3204px 0px;
- }
- .iti-flag.mg {
- height: 14px;
- background-position: -3226px 0px;
- }
- .iti-flag.mh {
- height: 11px;
- background-position: -3248px 0px;
- }
- .iti-flag.mk {
- height: 10px;
- background-position: -3270px 0px;
- }
- .iti-flag.ml {
- height: 14px;
- background-position: -3292px 0px;
- }
- .iti-flag.mm {
- height: 14px;
- background-position: -3314px 0px;
- }
- .iti-flag.mn {
- height: 10px;
- background-position: -3336px 0px;
- }
- .iti-flag.mo {
- height: 14px;
- background-position: -3358px 0px;
- }
- .iti-flag.mp {
- height: 10px;
- background-position: -3380px 0px;
- }
- .iti-flag.mq {
- height: 14px;
- background-position: -3402px 0px;
- }
- .iti-flag.mr {
- height: 14px;
- background-position: -3424px 0px;
- }
- .iti-flag.ms {
- height: 10px;
- background-position: -3446px 0px;
- }
- .iti-flag.mt {
- height: 14px;
- background-position: -3468px 0px;
- }
- .iti-flag.mu {
- height: 14px;
- background-position: -3490px 0px;
- }
- .iti-flag.mv {
- height: 14px;
- background-position: -3512px 0px;
- }
- .iti-flag.mw {
- height: 14px;
- background-position: -3534px 0px;
- }
- .iti-flag.mx {
- height: 12px;
- background-position: -3556px 0px;
- }
- .iti-flag.my {
- height: 10px;
- background-position: -3578px 0px;
- }
- .iti-flag.mz {
- height: 14px;
- background-position: -3600px 0px;
- }
- .iti-flag.na {
- height: 14px;
- background-position: -3622px 0px;
- }
- .iti-flag.nc {
- height: 10px;
- background-position: -3644px 0px;
- }
- .iti-flag.ne {
- height: 15px;
- background-position: -3666px 0px;
- }
- .iti-flag.nf {
- height: 10px;
- background-position: -3686px 0px;
- }
- .iti-flag.ng {
- height: 10px;
- background-position: -3708px 0px;
- }
- .iti-flag.ni {
- height: 12px;
- background-position: -3730px 0px;
- }
- .iti-flag.nl {
- height: 14px;
- background-position: -3752px 0px;
- }
- .iti-flag.no {
- height: 15px;
- background-position: -3774px 0px;
- }
- .iti-flag.np {
- height: 15px;
- background-position: -3796px 0px;
- }
- .iti-flag.nr {
- height: 10px;
- background-position: -3811px 0px;
- }
- .iti-flag.nu {
- height: 10px;
- background-position: -3833px 0px;
- }
- .iti-flag.nz {
- height: 10px;
- background-position: -3855px 0px;
- }
- .iti-flag.om {
- height: 10px;
- background-position: -3877px 0px;
- }
- .iti-flag.pa {
- height: 14px;
- background-position: -3899px 0px;
- }
- .iti-flag.pe {
- height: 14px;
- background-position: -3921px 0px;
- }
- .iti-flag.pf {
- height: 14px;
- background-position: -3943px 0px;
- }
- .iti-flag.pg {
- height: 15px;
- background-position: -3965px 0px;
- }
- .iti-flag.ph {
- height: 10px;
- background-position: -3987px 0px;
- }
- .iti-flag.pk {
- height: 14px;
- background-position: -4009px 0px;
- }
- .iti-flag.pl {
- height: 13px;
- background-position: -4031px 0px;
- }
- .iti-flag.pm {
- height: 14px;
- background-position: -4053px 0px;
- }
- .iti-flag.pn {
- height: 10px;
- background-position: -4075px 0px;
- }
- .iti-flag.pr {
- height: 14px;
- background-position: -4097px 0px;
- }
- .iti-flag.ps {
- height: 10px;
- background-position: -4119px 0px;
- }
- .iti-flag.pt {
- height: 14px;
- background-position: -4141px 0px;
- }
- .iti-flag.pw {
- height: 13px;
- background-position: -4163px 0px;
- }
- .iti-flag.py {
- height: 11px;
- background-position: -4185px 0px;
- }
- .iti-flag.qa {
- height: 8px;
- background-position: -4207px 0px;
- }
- .iti-flag.re {
- height: 14px;
- background-position: -4229px 0px;
- }
- .iti-flag.ro {
- height: 14px;
- background-position: -4251px 0px;
- }
- .iti-flag.rs {
- height: 14px;
- background-position: -4273px 0px;
- }
- .iti-flag.ru {
- height: 14px;
- background-position: -4295px 0px;
- }
- .iti-flag.rw {
- height: 14px;
- background-position: -4317px 0px;
- }
- .iti-flag.sa {
- height: 14px;
- background-position: -4339px 0px;
- }
- .iti-flag.sb {
- height: 10px;
- background-position: -4361px 0px;
- }
- .iti-flag.sc {
- height: 10px;
- background-position: -4383px 0px;
- }
- .iti-flag.sd {
- height: 10px;
- background-position: -4405px 0px;
- }
- .iti-flag.se {
- height: 13px;
- background-position: -4427px 0px;
- }
- .iti-flag.sg {
- height: 14px;
- background-position: -4449px 0px;
- }
- .iti-flag.sh {
- height: 10px;
- background-position: -4471px 0px;
- }
- .iti-flag.si {
- height: 10px;
- background-position: -4493px 0px;
- }
- .iti-flag.sj {
- height: 15px;
- background-position: -4515px 0px;
- }
- .iti-flag.sk {
- height: 14px;
- background-position: -4537px 0px;
- }
- .iti-flag.sl {
- height: 14px;
- background-position: -4559px 0px;
- }
- .iti-flag.sm {
- height: 15px;
- background-position: -4581px 0px;
- }
- .iti-flag.sn {
- height: 14px;
- background-position: -4603px 0px;
- }
- .iti-flag.so {
- height: 14px;
- background-position: -4625px 0px;
- }
- .iti-flag.sr {
- height: 14px;
- background-position: -4647px 0px;
- }
- .iti-flag.ss {
- height: 10px;
- background-position: -4669px 0px;
- }
- .iti-flag.st {
- height: 10px;
- background-position: -4691px 0px;
- }
- .iti-flag.sv {
- height: 12px;
- background-position: -4713px 0px;
- }
- .iti-flag.sx {
- height: 14px;
- background-position: -4735px 0px;
- }
- .iti-flag.sy {
- height: 14px;
- background-position: -4757px 0px;
- }
- .iti-flag.sz {
- height: 14px;
- background-position: -4779px 0px;
- }
- .iti-flag.ta {
- height: 10px;
- background-position: -4801px 0px;
- }
- .iti-flag.tc {
- height: 10px;
- background-position: -4823px 0px;
- }
- .iti-flag.td {
- height: 14px;
- background-position: -4845px 0px;
- }
- .iti-flag.tf {
- height: 14px;
- background-position: -4867px 0px;
- }
- .iti-flag.tg {
- height: 13px;
- background-position: -4889px 0px;
- }
- .iti-flag.th {
- height: 14px;
- background-position: -4911px 0px;
- }
- .iti-flag.tj {
- height: 10px;
- background-position: -4933px 0px;
- }
- .iti-flag.tk {
- height: 10px;
- background-position: -4955px 0px;
- }
- .iti-flag.tl {
- height: 10px;
- background-position: -4977px 0px;
- }
- .iti-flag.tm {
- height: 14px;
- background-position: -4999px 0px;
- }
- .iti-flag.tn {
- height: 14px;
- background-position: -5021px 0px;
- }
- .iti-flag.to {
- height: 10px;
- background-position: -5043px 0px;
- }
- .iti-flag.tr {
- height: 14px;
- background-position: -5065px 0px;
- }
- .iti-flag.tt {
- height: 12px;
- background-position: -5087px 0px;
- }
- .iti-flag.tv {
- height: 10px;
- background-position: -5109px 0px;
- }
- .iti-flag.tw {
- height: 14px;
- background-position: -5131px 0px;
- }
- .iti-flag.tz {
- height: 14px;
- background-position: -5153px 0px;
- }
- .iti-flag.ua {
- height: 14px;
- background-position: -5175px 0px;
- }
- .iti-flag.ug {
- height: 14px;
- background-position: -5197px 0px;
- }
- .iti-flag.um {
- height: 11px;
- background-position: -5219px 0px;
- }
- .iti-flag.us {
- height: 11px;
- background-position: -5241px 0px;
- }
- .iti-flag.uy {
- height: 14px;
- background-position: -5263px 0px;
- }
- .iti-flag.uz {
- height: 10px;
- background-position: -5285px 0px;
- }
- .iti-flag.va {
- height: 15px;
- background-position: -5307px 0px;
- }
- .iti-flag.vc {
- height: 14px;
- background-position: -5324px 0px;
- }
- .iti-flag.ve {
- height: 14px;
- background-position: -5346px 0px;
- }
- .iti-flag.vg {
- height: 10px;
- background-position: -5368px 0px;
- }
- .iti-flag.vi {
- height: 14px;
- background-position: -5390px 0px;
- }
- .iti-flag.vn {
- height: 14px;
- background-position: -5412px 0px;
- }
- .iti-flag.vu {
- height: 12px;
- background-position: -5434px 0px;
- }
- .iti-flag.wf {
- height: 14px;
- background-position: -5456px 0px;
- }
- .iti-flag.ws {
- height: 10px;
- background-position: -5478px 0px;
- }
- .iti-flag.xk {
- height: 15px;
- background-position: -5500px 0px;
- }
- .iti-flag.ye {
- height: 14px;
- background-position: -5522px 0px;
- }
- .iti-flag.yt {
- height: 14px;
- background-position: -5544px 0px;
- }
- .iti-flag.za {
- height: 14px;
- background-position: -5566px 0px;
- }
- .iti-flag.zm {
- height: 14px;
- background-position: -5588px 0px;
- }
- .iti-flag.zw {
- height: 10px;
- background-position: -5610px 0px;
- }
- .iti-flag {
- width: 20px;
- height: 15px;
- box-shadow: 0px 0px 1px 0px #888;
- background-image: url("../images/flags.png");
- background-repeat: no-repeat;
- background-color: #dbdbdb;
- background-position: 20px 0;
- }
- @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
- .iti-flag {
- background-image: url("../images/flags@2x.png");
- }
- }
- .iti-flag.np {
- background-color: transparent;
- }
- /*--------------------------------------------------------------
- 3. Simple Job Board
- --------------------------------------------------------------*/
- /* SJB Reset and dependencies */
- .sjb-page ::-moz-selection {
- background: #3297fa;
- color: #fff;
- }
- .sjb-page ::selection {
- background: #3297fa;
- color: #fff;
- }
- .sjb-page .list-data article,
- .sjb-page .list-data footer,
- .sjb-page .list-data header,
- .sjb-page .list-data section {
- display: block;
- }
- .sjb-page a {
- outline: none;
- text-decoration: none;
- -webkit-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- }
- .sjb-page a:hover,
- .sjb-page a:focus {
- outline: none;
- text-decoration: none;
- }
- .sjb-page .btn {
- border: 0;
- font-size: 14px;
- outline: none;
- -webkit-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- }
- .sjb-page img {
- height: auto;
- max-width: 100%;
- }
- /* SJB Components */
- .sjb-page .sjb-filters {
- background-color: #f2f2f2;
- border: 0;
- margin: 30px 0 15px;
- padding: 35px 30px 0;
- overflow: hidden;
- }
- .sjb-page .sjb-filters .form-control {
- border: 1px solid #e1e1e1;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- color: #666;
- font-size: 16px;
- height: 40px;
- margin-bottom: 35px;
- }
- .sjb-page .sjb-filters .form-control::-moz-placeholder {
- color: #a4a4a4;
- opacity: 1;
- }
- .sjb-page .sjb-filters .form-control:-ms-input-placeholder {
- color: #a4a4a4;
- }
- .sjb-page .sjb-filters .form-control::-webkit-input-placeholder {
- color: #a4a4a4;
- }
- .sjb-page .sjb-filters .form-control:focus {
- border-color: #e1e1e1;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- outline: 0 none;
- }
- .sjb-page .sjb-filters select {
- -webkit-appearance: inherit;
- -moz-appearance: inherit;
- appearance: inherit;
- background: #fff url("../images/select-arrow.png") no-repeat center right 10px;
- }
- .sjb-page .sjb-filters select::-ms-expand {
- display: none;
- }
- .sjb-page .sjb-filters .btn-search {
- border: 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- font-family: "FontAwesome";
- font-size: 20px;
- height: 40px;
- margin-bottom: 35px;
- padding: 0;
- width: 100%;
- }
- .sjb-page .pagination {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- float: left;
- margin: 15px 0 0 0;
- padding: 0;
- width: 100%;
- box-shadow: none;
- position: relative;
- border: none;
- }
- .sjb-page .pagination:before,
- .sjb-page .pagination:after {
- background-color: transparent;
- }
- .sjb-page .pagination li {
- display: inline-block;
- vertical-align: middle;
- line-height: 20px;
- margin-right: 2px;
- }
- .sjb-page .pagination li .next,
- .sjb-page .pagination li .prev {
- height: auto;
- width: auto;
- content: none;
- position: static;
- margin-top: 0;
- padding: 8px 16px;
- line-height: 23px;
- vertical-align: middle;
- }
- .sjb-page .pagination li a {
- background-color: #e1e1e1;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- color: #3b3a3c;
- font-weight: 300;
- margin: 0;
- padding: 8px 16px;
- text-align: center;
- line-height: 23px;
- text-decoration: none;
- }
- .sjb-page .pagination li a:before,
- .sjb-page .pagination li a:after {
- line-height: 23px;
- height: auto;
- width: auto;
- content: none;
- display: block;
- vertical-align: middle;
- }
- @media (max-width: 767px) {
- .sjb-page .pagination li a {
- margin: 0 3px;
- text-align: center;
- }
- }
- .sjb-page .pagination li a:hover {
- background-color: #3297fa;
- color: #fff;
- }
- .sjb-page .pagination li a:focus {
- background-color: #fff;
- color: #3b3a3c;
- }
- .sjb-page .pagination li span {
- border: none;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- color: #3b3a3c;
- font-weight: normal;
- margin: 0;
- padding: 8px 16px;
- text-align: center;
- line-height: 23px;
- }
- .sjb-page .pagination li span:before,
- .sjb-page .pagination li span:after {
- line-height: normal;
- height: auto;
- width: auto;
- content: none;
- display: block;
- }
- @media (max-width: 767px) {
- .sjb-page .pagination li span {
- text-align: center;
- }
- }
- .sjb-page .pagination li span:hover {
- color: #fff;
- background-color: #3297fa;
- }
- .sjb-page .pagination li span.current {
- color: #fff;
- background-color: #3297fa;
- }
- .sjb-page .pagination li span.current:hover {
- color: #fff;
- background-color: #3297fa;
- }
- .sjb-page .pagination li:first-child a,
- .sjb-page .pagination li:first-child span {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- margin-left: 0;
- }
- .sjb-page .pagination li:last-child a,
- .sjb-page .pagination li:last-child span {
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- margin-right: 0;
- }
- .sjb-page .pagination li:before {
- content: none;
- }
- .ui-datepicker {
- border: 1px solid #e1e1e1;
- color: #666;
- font-family: "Roboto", sans-serif;
- z-index: 999 !important;
- }
- .ui-datepicker .ui-datepicker-header {
- background: #f2f2f2;
- border: 1px solid #e1e1e1;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- }
- .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
- .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
- border: 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
- border-radius: 0;
- top: 3px;
- }
- .ui-datepicker .ui-datepicker-header .ui-datepicker-prev.ui-state-hover,
- .ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-state-hover {
- background: #c8c8c8;
- border: 1px solid #c8c8c8;
- }
- .ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
- left: 3px;
- }
- .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
- right: 3px;
- }
- .ui-datepicker .ui-datepicker-title select {
- border: 1px solid #e1e1e1;
- color: #666;
- font-family: "Roboto", sans-serif;
- font-size: 16px;
- }
- .ui-datepicker .ui-state-default {
- background: #f2f2f2;
- border: 1px solid #e1e1e1;
- }
- .ui-datepicker .ui-state-highlight {
- background: #3297fa;
- border: 1px solid #3297fa;
- color: #fff;
- }
- .ui-datepicker .ui-state-hover {
- background: #067ef3;
- border: 1px solid #067ef3;
- color: #fff;
- }
- .ui-datepicker table {
- font-size: 14px;
- }
- .ui-datepicker table td a,
- .ui-datepicker table td span {
- text-align: center;
- }
- .ui-datepicker select.ui-datepicker-month,
- .ui-datepicker select.ui-datepicker-year {
- width: 100%;
- }
- /* SJB Pages */
- .sjb-page .no-job-listing {
- font-size: 16px;
- }
- .sjb-page .list-data {
- background: #fff;
- border-bottom: 1px dotted #dcdcdc;
- float: left;
- margin: 0px 0;
- padding: 20px 20px 10px;
- width: 100%;
- }
- .sjb-page .list-data .company-logo {
- margin-bottom: 15px;
- }
- .sjb-page .list-data .company-logo img {
- border: 1px solid #e1e1e1;
- }
- @media (max-width: 767px) {
- .sjb-page .list-data .company-logo img {
- height: 95px;
- width: 95px;
- }
- }
- .sjb-page .list-data .header-margin-top {
- margin-top: 16px;
- }
- @media (max-width: 991px) {
- .sjb-page .list-data .header-margin-top {
- margin-top: 19px;
- }
- }
- @media (max-width: 767px) {
- .sjb-page .list-data .header-margin-top {
- margin-top: 0;
- }
- }
- .sjb-page .list-data .job-info {
- margin: 0 0 10px;
- }
- .sjb-page .list-data .job-info h4 {
- color: #3b3a3c;
- font-size: 16px;
- margin: 0;
- padding: 0;
- word-wrap: break-word;
- }
- .sjb-page .list-data .job-info h4 a {
- color: #3b3a3c;
- font-size: 16px;
- word-wrap: break-word;
- }
- .sjb-page .list-data .job-info h4 a:hover {
- color: #3297fa;
- }
- .sjb-page .list-data .job-description {
- float: left;
- width: 100%;
- }
- .sjb-page .list-data .job-description p {
- color: #666;
- font-size: 16px;
- margin: 0 0 10px;
- word-wrap: break-word;
- }
- .sjb-page .list-data .job-type,
- .sjb-page .list-data .job-location,
- .sjb-page .list-data .job-date {
- color: #3297fa;
- font-size: 14px;
- margin-bottom: 10px;
- word-wrap: break-word;
- }
- .sjb-page .list-data .job-type i,
- .sjb-page .list-data .job-location i,
- .sjb-page .list-data .job-date i {
- color: #3b3a3c;
- margin-right: 5px;
- }
- .sjb-page .sjb-listing .list-view .no-job-listing p {
- font-size: 16px;
- }
- .sjb-page .sjb-listing .grid-view .no-job-listing p {
- font-size: 16px;
- }
- .sjb-page .sjb-listing .grid-view .row .grid-item:nth-child(3n+1) {
- clear: left;
- }
- @media (min-width: 768px) and (max-width: 991px) {
- .sjb-page .sjb-listing .grid-view .row .grid-item:nth-child(3n+1) {
- clear: none;
- }
- }
- @media (min-width: 768px) and (max-width: 991px) {
- .sjb-page .sjb-listing .grid-view .row .grid-item:nth-child(2n+1) {
- clear: left;
- }
- }
- .sjb-page .sjb-detail {
- margin: 30px 0 0;
- }
- .sjb-page .sjb-detail .list-data {
- border: 0;
- margin: 0;
- padding: 0;
- }
- .sjb-page .sjb-detail .list-data .job-detail {
- margin: 0 0 20px;
- }
- .sjb-page .sjb-detail .list-data .job-detail h3 {
- color: #3297fa;
- font-weight: 500;
- font-size: 24px;
- }
- @media (min-width: 1200px) {
- .sjb-page .sjb-detail .list-data .job-info-margin {
- margin: 0 0 10px 27px;
- }
- }
- @media (min-width: 992px) and (max-width: 1199px) {
- .sjb-page .sjb-detail .list-data .job-info-margin {
- margin: 0 0 10px 44px;
- }
- }
- .sjb-page .sjb-detail .list-data .company-tagline {
- margin: 0 0 20px;
- }
- .sjb-page .sjb-detail .list-data h3 {
- color: #3297fa;
- font-size: 16px;
- margin: 17px 0;
- }
- .sjb-page .sjb-detail .list-data ul {
- list-style: none;
- margin: 0 0 12px;
- padding: 0;
- }
- .sjb-page .sjb-detail .list-data ul li {
- font-size: 16px;
- line-height: 24px;
- padding-left: 15px;
- position: relative;
- }
- .sjb-page .sjb-detail .list-data ul li::before {
- color: #3297fa;
- content: "\f101";
- font-family: "FontAwesome";
- font-size: 12px;
- left: 0;
- position: absolute;
- top: 0;
- }
- .sjb-page .sjb-detail .job-features {
- float: left;
- width: 100%;
- }
- .sjb-page .sjb-detail .job-features .table {
- font-size: 16px;
- font-weight: 400;
- }
- .sjb-page .sjb-detail .job-features .table td {
- border-top: 1px solid #e1e1e1;
- padding: 10px 15px;
- width: 70%;
- }
- .sjb-page .sjb-detail .job-features .table td:first-child {
- border-right: 1px solid #e1e1e1;
- padding-left: 0;
- width: 30%;
- }
- .sjb-page .sjb-detail .job-features .table tr:first-child td {
- border-top: 0;
- }
- .sjb-page .sjb-detail .job-features .table tr:last-child td {
- border-bottom: 1px solid #e1e1e1;
- }
- .sjb-page .sjb-detail .jobpost-form {
- float: left;
- width: 100%;
- }
- .sjb-page .sjb-detail .jobpost-form label {
- font-size: 16px;
- font-weight: 400;
- }
- .sjb-page .sjb-detail .jobpost-form label.small {
- margin-right: 15px;
- }
- .sjb-page .sjb-detail .jobpost-form label.small input {
- margin-right: 5px;
- }
- .sjb-page .sjb-detail .jobpost-form .required {
- color: #f00;
- font-size: 16px;
- }
- .sjb-page .sjb-detail .jobpost-form .form-control {
- font-size: 16px;
- height: 46px;
- -webkit-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- }
- .sjb-page .sjb-detail .jobpost-form .form-control:hover {
- border-color: #3297fa;
- }
- .sjb-page .sjb-detail .jobpost-form .intl-tel-input {
- z-index: 1;
- }
- .sjb-page .sjb-detail .jobpost-form .intl-tel-input .flag-container:hover + .form-control {
- border-color: #3297fa;
- }
- .sjb-page .sjb-detail .jobpost-form .file {
- background: #fff;
- border: 1px solid #e1e1e1;
- border-radius: 4px;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
- font-size: 16px;
- height: 46px;
- line-height: 1.42857;
- padding: 10px 12px;
- position: relative;
- text-align: left;
- -webkit-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- width: 100%;
- }
- .sjb-page .sjb-detail .jobpost-form .file div {
- background: #3297fa;
- border-radius: 4px;
- color: #fff;
- font-size: 14px;
- height: 32px;
- padding: 6px 12px;
- position: absolute;
- right: 6px;
- text-align: center;
- top: 6px;
- -webkit-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- }
- .sjb-page .sjb-detail .jobpost-form .file input[type="file"] {
- left: 0;
- position: absolute;
- top: 0;
- z-index: 100;
- }
- .sjb-page .sjb-detail .jobpost-form .file:hover {
- border-color: #3297fa;
- }
- .sjb-page .sjb-detail .jobpost-form .file:hover div {
- background: #067ef3;
- }
- .sjb-page .sjb-detail .jobpost-form .validity-note {
- color: #f00;
- display: none;
- font-size: 14px;
- font-style: italic;
- margin-left: 10px;
- }
- .sjb-page .sjb-detail .jobpost-form .app-submit {
- margin: 15px 0;
- }
- .sjb-page .intl-tel-input .country-list .country,
- .sjb-page .intl-tel-input .country-list .divider {
- line-height: normal;
- }
- .sjb-page .intl-tel-input .country-list .country::before,
- .sjb-page .intl-tel-input .country-list .divider::before {
- content: "";
- font-size: 0;
- margin-right: 0;
- padding-right: 0;
- }
- .job-info
- {
- padding-left: 20px;
- }
- .job-info h4 a
- {
- font-size: 16px;
- font-weight: 600;
- }
- .job-location, .job-date
- {
- color: #474747 !important;
- }
|