| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987 |
- .container {
- margin-right: auto;
- margin-left: auto;
- padding-left: 0.9375rem;
- padding-right: 0.9375rem;
- }
- .container::after {
- content: "";
- display: table;
- clear: both;
- }
- .container-fluid {
- margin-right: auto;
- margin-left: auto;
- padding-left: 0.375rem;
- padding-right: 0.375rem;
- }
- .container-fluid::after {
- content: "";
- display: table;
- clear: both;
- }
- .row {
- margin-left: -0.9375rem;
- margin-right: -0.9375rem;
- }
- .row::after {
- content: "";
- display: table;
- clear: both;
- }
- .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, .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, .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, .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, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
- position: relative;
- box-sizing: border-box;
- min-height: 1px;
- width: 100%;
- padding-left: 0.9375rem;
- padding-right: 0.9375rem;
- }
- .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;
- }
- .col-xs-1 {
- width: 8.33333%;
- }
- .col-xs-2 {
- width: 16.66667%;
- }
- .col-xs-3 {
- width: 25%;
- }
- .col-xs-4 {
- width: 33.33333%;
- }
- .col-xs-5 {
- width: 41.66667%;
- }
- .col-xs-6 {
- width: 50%;
- }
- .col-xs-7 {
- width: 58.33333%;
- }
- .col-xs-8 {
- width: 66.66667%;
- }
- .col-xs-9 {
- width: 75%;
- }
- .col-xs-10 {
- width: 83.33333%;
- }
- .col-xs-11 {
- width: 91.66667%;
- }
- .col-xs-12 {
- width: 100%;
- }
- .col-xs-pull-0 {
- right: auto;
- }
- .col-xs-pull-1 {
- right: 8.33333%;
- }
- .col-xs-pull-2 {
- right: 16.66667%;
- }
- .col-xs-pull-3 {
- right: 25%;
- }
- .col-xs-pull-4 {
- right: 33.33333%;
- }
- .col-xs-pull-5 {
- right: 41.66667%;
- }
- .col-xs-pull-6 {
- right: 50%;
- }
- .col-xs-pull-7 {
- right: 58.33333%;
- }
- .col-xs-pull-8 {
- right: 66.66667%;
- }
- .col-xs-pull-9 {
- right: 75%;
- }
- .col-xs-pull-10 {
- right: 83.33333%;
- }
- .col-xs-pull-11 {
- right: 91.66667%;
- }
- .col-xs-pull-12 {
- right: 100%;
- }
- .col-xs-push-0 {
- left: auto;
- }
- .col-xs-push-1 {
- left: 8.33333%;
- }
- .col-xs-push-2 {
- left: 16.66667%;
- }
- .col-xs-push-3 {
- left: 25%;
- }
- .col-xs-push-4 {
- left: 33.33333%;
- }
- .col-xs-push-5 {
- left: 41.66667%;
- }
- .col-xs-push-6 {
- left: 50%;
- }
- .col-xs-push-7 {
- left: 58.33333%;
- }
- .col-xs-push-8 {
- left: 66.66667%;
- }
- .col-xs-push-9 {
- left: 75%;
- }
- .col-xs-push-10 {
- left: 83.33333%;
- }
- .col-xs-push-11 {
- left: 91.66667%;
- }
- .col-xs-push-12 {
- left: 100%;
- }
- .col-xs-offset-0 {
- margin-left: 0%;
- }
- .col-xs-offset-1 {
- margin-left: 8.33333%;
- }
- .col-xs-offset-2 {
- margin-left: 16.66667%;
- }
- .col-xs-offset-3 {
- margin-left: 25%;
- }
- .col-xs-offset-4 {
- margin-left: 33.33333%;
- }
- .col-xs-offset-5 {
- margin-left: 41.66667%;
- }
- .col-xs-offset-6 {
- margin-left: 50%;
- }
- .col-xs-offset-7 {
- margin-left: 58.33333%;
- }
- .col-xs-offset-8 {
- margin-left: 66.66667%;
- }
- .col-xs-offset-9 {
- margin-left: 75%;
- }
- .col-xs-offset-10 {
- margin-left: 83.33333%;
- }
- .col-xs-offset-11 {
- margin-left: 91.66667%;
- }
- .col-xs-offset-12 {
- margin-left: 100%;
- }
- .img-fluid {
- display: block;
- max-width: 100%;
- height: auto;
- }
- .img-rounded {
- border-radius: 0.3rem;
- }
- .img-thumbnail {
- padding: 0.25rem;
- line-height: 1.5;
- background-color: #fff;
- border: 1px solid #ddd;
- border-radius: 0.25rem;
- transition: all .2s ease-in-out;
- display: inline-block;
- max-width: 100%;
- height: auto;
- }
- .img-circle {
- border-radius: 50%;
- }
- /*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */
- /**
- * 1. Change the default font family in all browsers (opinionated).
- * 2. Correct the line height in all browsers.
- * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
- */
- /* Document
- ========================================================================== */
- html {
- font-family: sans-serif;
- /* 1 */
- line-height: 1.15;
- /* 2 */
- -ms-text-size-adjust: 100%;
- /* 3 */
- -webkit-text-size-adjust: 100%;
- /* 3 */
- }
- /* Sections
- ========================================================================== */
- /**
- * Remove the margin in all browsers (opinionated).
- */
- body {
- margin: 0;
- }
- /**
- * Add the correct display in IE 9-.
- */
- article,
- aside,
- footer,
- header,
- nav,
- section {
- display: block;
- }
- /**
- * Correct the font size and margin on `h1` elements within `section` and
- * `article` contexts in Chrome, Firefox, and Safari.
- */
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- /* Grouping content
- ========================================================================== */
- /**
- * Add the correct display in IE 9-.
- * 1. Add the correct display in IE.
- */
- figcaption,
- figure,
- main {
- /* 1 */
- display: block;
- }
- /**
- * Add the correct margin in IE 8.
- */
- figure {
- margin: 1em 40px;
- }
- /**
- * 1. Add the correct box sizing in Firefox.
- * 2. Show the overflow in Edge and IE.
- */
- hr {
- box-sizing: content-box;
- /* 1 */
- height: 0;
- /* 1 */
- overflow: visible;
- /* 2 */
- }
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
- pre {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */
- }
- /* Text-level semantics
- ========================================================================== */
- /**
- * 1. Remove the gray background on active links in IE 10.
- * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
- */
- a {
- background-color: transparent;
- /* 1 */
- -webkit-text-decoration-skip: objects;
- /* 2 */
- }
- /**
- * Remove the outline on focused links when they are also active or hovered
- * in all browsers (opinionated).
- */
- a:active,
- a:hover {
- outline-width: 0;
- }
- /**
- * 1. Remove the bottom border in Firefox 39-.
- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
- */
- abbr[title] {
- border-bottom: none;
- /* 1 */
- text-decoration: underline;
- /* 2 */
- -webkit-text-decoration: underline dotted;
- text-decoration: underline dotted;
- /* 2 */
- }
- /**
- * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
- */
- b,
- strong {
- font-weight: inherit;
- }
- /**
- * Add the correct font weight in Chrome, Edge, and Safari.
- */
- b,
- strong {
- font-weight: bolder;
- }
- /**
- * 1. Correct the inheritance and scaling of font size in all browsers.
- * 2. Correct the odd `em` font sizing in all browsers.
- */
- code,
- kbd,
- samp {
- font-family: monospace, monospace;
- /* 1 */
- font-size: 1em;
- /* 2 */
- }
- /**
- * Add the correct font style in Android 4.3-.
- */
- dfn {
- font-style: italic;
- }
- /**
- * Add the correct background and color in IE 9-.
- */
- mark {
- background-color: #ff0;
- color: #000;
- }
- /**
- * Add the correct font size in all browsers.
- */
- small {
- font-size: 80%;
- }
- /**
- * Prevent `sub` and `sup` elements from affecting the line height in
- * all browsers.
- */
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- sub {
- bottom: -0.25em;
- }
- sup {
- top: -0.5em;
- }
- /* Embedded content
- ========================================================================== */
- /**
- * Add the correct display in IE 9-.
- */
- audio,
- video {
- display: inline-block;
- }
- /**
- * Add the correct display in iOS 4-7.
- */
- audio:not([controls]) {
- display: none;
- height: 0;
- }
- /**
- * Remove the border on images inside links in IE 10-.
- */
- img {
- border-style: none;
- }
- /**
- * Hide the overflow in IE.
- */
- svg:not(:root) {
- overflow: hidden;
- }
- /* Forms
- ========================================================================== */
- /**
- * 1. Change the font styles in all browsers (opinionated).
- * 2. Remove the margin in Firefox and Safari.
- */
- button,
- input,
- optgroup,
- select,
- textarea {
- font-family: sans-serif;
- /* 1 */
- font-size: 100%;
- /* 1 */
- line-height: 1.15;
- /* 1 */
- margin: 0;
- /* 2 */
- }
- /**
- * Show the overflow in IE.
- * 1. Show the overflow in Edge.
- */
- button,
- input {
- /* 1 */
- overflow: visible;
- }
- /**
- * Remove the inheritance of text transform in Edge, Firefox, and IE.
- * 1. Remove the inheritance of text transform in Firefox.
- */
- button,
- select {
- /* 1 */
- text-transform: none;
- }
- /**
- * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
- * controls in Android 4.
- * 2. Correct the inability to style clickable types in iOS and Safari.
- */
- button,
- html [type="button"],
- [type="reset"],
- [type="submit"] {
- -webkit-appearance: button;
- /* 2 */
- }
- /**
- * Remove the inner border and padding in Firefox.
- */
- button::-moz-focus-inner,
- [type="button"]::-moz-focus-inner,
- [type="reset"]::-moz-focus-inner,
- [type="submit"]::-moz-focus-inner {
- border-style: none;
- padding: 0;
- }
- /**
- * Restore the focus styles unset by the previous rule.
- */
- button:-moz-focusring,
- [type="button"]:-moz-focusring,
- [type="reset"]:-moz-focusring,
- [type="submit"]:-moz-focusring {
- outline: 1px dotted ButtonText;
- }
- /**
- * Change the border, margin, and padding in all browsers (opinionated).
- */
- fieldset {
- border: 1px solid #c0c0c0;
- margin: 0 2px;
- padding: 0.35em 0.625em 0.75em;
- }
- /**
- * 1. Correct the text wrapping in Edge and IE.
- * 2. Correct the color inheritance from `fieldset` elements in IE.
- * 3. Remove the padding so developers are not caught out when they zero out
- * `fieldset` elements in all browsers.
- */
- legend {
- box-sizing: border-box;
- /* 1 */
- color: inherit;
- /* 2 */
- display: table;
- /* 1 */
- max-width: 100%;
- /* 1 */
- padding: 0;
- /* 3 */
- white-space: normal;
- /* 1 */
- }
- /**
- * 1. Add the correct display in IE 9-.
- * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
- */
- progress {
- display: inline-block;
- /* 1 */
- vertical-align: baseline;
- /* 2 */
- }
- /**
- * Remove the default vertical scrollbar in IE.
- */
- textarea {
- overflow: auto;
- }
- /**
- * 1. Add the correct box sizing in IE 10-.
- * 2. Remove the padding in IE 10-.
- */
- [type="checkbox"],
- [type="radio"] {
- box-sizing: border-box;
- /* 1 */
- padding: 0;
- /* 2 */
- }
- /**
- * Correct the cursor style of increment and decrement buttons in Chrome.
- */
- [type="number"]::-webkit-inner-spin-button,
- [type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- /**
- * 1. Correct the odd appearance in Chrome and Safari.
- * 2. Correct the outline style in Safari.
- */
- [type="search"] {
- -webkit-appearance: textfield;
- /* 1 */
- outline-offset: -2px;
- /* 2 */
- }
- /**
- * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
- */
- [type="search"]::-webkit-search-cancel-button,
- [type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- /**
- * 1. Correct the inability to style clickable types in iOS and Safari.
- * 2. Change font properties to `inherit` in Safari.
- */
- ::-webkit-file-upload-button {
- -webkit-appearance: button;
- /* 1 */
- font: inherit;
- /* 2 */
- }
- /* Interactive
- ========================================================================== */
- /*
- * Add the correct display in IE 9-.
- * 1. Add the correct display in Edge, IE, and Firefox.
- */
- details,
- menu {
- display: block;
- }
- /*
- * Add the correct display in all browsers.
- */
- summary {
- display: list-item;
- }
- /* Scripting
- ========================================================================== */
- /**
- * Add the correct display in IE 9-.
- */
- canvas {
- display: inline-block;
- }
- /**
- * Add the correct display in IE.
- */
- template {
- display: none;
- }
- /* Hidden
- ========================================================================== */
- /**
- * Add the correct display in IE 10-.
- */
- [hidden] {
- display: none;
- }
- /* List
- ========================================================================== */
- ul,
- ol {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- a:hover {
- color: #F26522;
- text-decoration: none;
- }
- img {
- max-width: 100%;
- }
- body {
- font-family: 'Source Sans Pro', sans-serif;
- font-weight: 300;
- }
- a {
- text-decoration: none;
- transition: all 0.5s;
- }
- input {
- outline: none !important;
- }
- select {
- outline: none;
- }
- body {
- overflow-x: hidden;
- }
- .caret {
- display: inline-block;
- width: 0;
- height: 0;
- margin-left: 2px;
- vertical-align: middle;
- border-top: 4px solid;
- border-right: 4px solid transparent;
- border-left: 4px solid transparent;
- }
- * {
- font-weight: 400;
- }
- .title-primary {
- position: relative;
- font-size: 30px;
- line-height: 1.2;
- color: #272c59;
- font-weight: 600;
- margin-top: 0;
- }
- .title-primary:after {
- display: block;
- width: 116px;
- height: 17px;
- content: '';
- background-image: url(../img/decor.png);
- background-position: center center;
- background-size: cover;
- position: absolute;
- top: calc(100% + 20px);
- left: 0;
- z-index: 1;
- }
- .title-primary:before {
- display: block;
- content: '';
- position: absolute;
- max-width: 400px;
- width: 100%;
- height: 1px;
- background-color: #F26522;
- top: calc(100% + 28px);
- left: 0;
- z-index: 0;
- }
- .footer {
- padding: 50px 0;
- background-color: #F26522;
- }
- .footer .footer-logo {
- text-align: center;
- padding-bottom: 30px;
- border-bottom: 1px solid rgba(255, 255, 255, 0.3);
- }
- .footer .title-primary {
- font-size: 20px;
- margin-top: 30px;
- color: #fff;
- text-transform: uppercase;
- }
- .footer .title-primary:before {
- background-color: rgba(255, 255, 255, 0.3);
- }
- .footer .wrap-most-user {
- text-align: left;
- margin-top: 80px;
- }
- .footer .wrap-most-user img {
- width: 108px;
- height: 108px;
- border-radius: 10px;
- margin: 0 5px 5px 0;
- }
- .footer .usefull-link {
- margin-top: 80px;
- }
- .footer .usefull-link i {
- margin-right: 5px;
- }
- .footer .usefull-link a {
- color: #fff;
- font-size: 17px;
- display: block;
- margin-bottom: 20px;
- }
- .footer .usefull-link a:hover span {
- text-decoration: underline;
- }
- .footer .language {
- margin-top: 80px;
- }
- .footer .language img {
- display: inline-block;
- width: 80px;
- border-radius: 10px;
- margin-right: 10px;
- }
- .footer .language p {
- color: #fff;
- }
- .menu-toggle {
- display: inline-block;
- margin-left: -15px;
- outline: none;
- float: right;
- }
- .menu-toggle svg {
- cursor: pointer;
- display: inline-block;
- height: 60px;
- transform: translate3d(0, 0, 0);
- width: 50px;
- }
- .menu-toggle path {
- fill: none;
- stroke: #fff;
- stroke-dashoffset: 0;
- stroke-linecap: round;
- stroke-width: 40px;
- transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25), stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
- }
- .menu-toggle.is-active path#middle {
- stroke-dasharray: 1px 220px;
- stroke-dashoffset: -115px;
- }
- .menu-toggle.is-active path#top, .menu-toggle.is-active path#bottom {
- stroke-dashoffset: -650px;
- }
- .menu-toggle path#top, .menu-toggle path#bottom {
- stroke-dasharray: 240px 950px;
- }
- body {
- overflow-x: hidden;
- }
- p {
- line-height: 1.3;
- }
- .login-left {
- color: #fff;
- }
- .breadcrumb {
- width: -webkit-max-content;
- width: -moz-max-content;
- width: max-content;
- padding: 20px;
- border-radius: 5px 5px 0 0;
- background-color: #fff;
- }
- .breadcrumb i {
- margin: 0 5px;
- }
- .breadcrumb a {
- color: #333;
- }
- .breadcrumb a:hover {
- color: #F26522;
- }
- body .header {
- background-color: #F26522;
- }
- body .header .login {
- text-align: right;
- padding: 15px 0;
- }
- body .header .login a {
- color: #fff;
- font-size: 14px;
- font-weight: 600;
- }
- body .header .login i {
- margin-right: 5px;
- }
- body .header .login .menu-login-success {
- display: none;
- }
- body .header .login.login-success .menu-login-success {
- display: block;
- }
- body .header .login.login-success .menu-login-success div {
- display: inline-block;
- margin: 0 8px;
- }
- body .header .login.login-success .menu-login-success div:last-child {
- margin-right: 0;
- }
- body .header .login.login-success .menu-login {
- /*//display: none;*/
- }
- .button {
- background: linear-gradient(to right, yellow -30%, #F26522 100%);
- /*background: linear-gradient(to bottom, #80C200 0%, #B7EB2B 100%) color: #fff !important;*/
- font-size: 14px;
- font-weight: 600;
- border-radius: 20px;
- /* padding: 14px 30px; */
- margin: 20px auto;
- display: block;
- /* max-width: 200px; */
- text-align: center;
- transition: all 0.5s;
- height: 45px;
- padding: 12px;
- color: white;
- }
- .button:hover {
- background-color: #F26522;
- }
- .slick-arrow {
- display: inline-block;
- width: 40px;
- height: 40px;
- background-color: #F26522;
- border: none;
- border-radius: 100%;
- font-size: 0;
- cursor: pointer;
- outline: none;
- transition: all 0.5s;
- }
- .slick-arrow:hover {
- background-color: #272c59;
- }
- .slick-arrow.slick-prev:after {
- content: url(../img/arrow.png);
- transform: rotate(90deg) translateY(1px);
- display: block;
- }
- .slick-arrow.slick-next:after {
- content: url(../img/arrow.png);
- transform: rotate(-90deg) translateY(1px);
- display: block;
- }
- body.homepage .header {
- background-image: url(../img/banner.png);
- background-position: center center;
- background-repeat: repeat;
- background-size: cover;
- height: 950px;
- background-color: transparent !important;
- padding-bottom: 30px;
- }
- body.homepage .header .logo-menu {
- margin: 0;
- }
- body.homepage > .wrap-content {
- margin-top: -870px;
- }
- .logo-menu {
- margin-bottom: 20px;
- }
- .logo-menu img {
- display: inline-block;
- max-width: 200px;
- transform: translateY(20px);
- }
- .logo-menu .menu {
- background-color: #282c59;
- border-radius: 10px;
- display: inline-block;
- width: calc(100% - 300px);
- height: 70px;
- padding: 0 20px;
- float: right;
- }
- .logo-menu .menu li {
- position: relative;
- display: inline-block;
- line-height: 70px;
- padding: 0 20px;
- }
- .logo-menu .menu li:after {
- display: block;
- content: '';
- width: 2px;
- height: 2px;
- position: absolute;
- top: 50%;
- background-color: #fff;
- right: 0;
- transform: translateY(-50%);
- }
- .logo-menu .menu li a {
- color: #a3a8d9;
- font-weight: 600;
- transition: all 0.5s;
- }
- .logo-menu .menu li a.active, .logo-menu .menu li a:hover {
- color: #fff;
- }
- .logo-menu .menu i {
- color: #fff;
- font-weight: 500;
- margin-left: 20px;
- }
- .logo-menu .menu input {
- width: 300px;
- height: 33px;
- line-height: 38px;
- border-radius: 10px;
- padding: 0 20px;
- border: none;
- margin: 0 10px;
- font-weight: 400;
- font-size: 15px;
- }
- .form {
- position: relative;
- }
- .form .form-wrapper {
- width: 400px;
- display: inline-block;
- vertical-align: top;
- margin-top: 50px;
- background-color: #fff;
- border-radius: 10px;
- padding: 50px 30px;
- text-align: center;
- position: relative;
- z-index: 1;
- }
- .form .heading {
- position: relative;
- color: #272c59;
- margin-bottom: 25px;
- }
- .form .heading h3, .form .heading h4 {
- margin: 0;
- font-size: 30px;
- font-weight: 400;
- }
- .form .heading h3 span, .form .heading h4 span {
- color: #F26522;
- }
- .form .heading h4 {
- color: #272c59;
- }
- .form .title {
- font-size: 16px;
- font-weight: 600;
- text-align: left;
- color: #272c59;
- margin: 10px 0;
- }
- .form .nice-select {
- width: 100%;
- margin-bottom: 15px;
- }
- .form .nice-select .list {
- width: 100%;
- }
- .form .three-input {
- display: grid;
- grid-gap: 15px;
- grid-template-columns: repeat(3, 1fr);
- padding: 0;
- }
- .form .two-input input {
- background-color: #fff;
- border-radius: 5px;
- border: solid 1px #e8e8e8;
- box-sizing: border-box;
- clear: both;
- cursor: pointer;
- display: inline-block;
- width: calc(50% - 10px);
- margin-bottom: 15px;
- font-family: inherit;
- font-size: 14px;
- font-weight: normal;
- height: 42px;
- line-height: 40px;
- outline: none;
- padding-left: 18px;
- padding-right: 30px;
- position: relative;
- text-align: left !important;
- }
- .form .two-input input:first-child {
- transform: translateX(-8px);
- }
- .form .two-input input:last-child {
- transform: translateX(8px);
- }
- .form .desc {
- font-size: 14px;
- line-height: 1.5;
- margin: 0;
- }
- .form .desc a {
- color: #F26522 !important;
- text-decoration: underline;
- }
- .form > img {
- float: right;
- max-width: 750px;
- width: 100%;
- }
- .how-it-works {
- margin-top: 90px;
- }
- .how-it-works .sub-title {
- margin-top: 70px;
- margin-bottom: 30px;
- font-weight: 400;
- }
- .how-it-works .block-icon {
- text-align: center;
- max-width: 600px;
- margin: 0 auto 20px auto;
- font-size: 0;
- }
- .how-it-works .icon,
- .how-it-works .wrap-content {
- display: inline-block;
- vertical-align: top;
- }
- .how-it-works .icon {
- position: relative;
- width: 60px;
- height: 60px;
- border-radius: 100%;
- background-color: #F26522;
- }
- .how-it-works .icon i {
- font-size: 28px;
- color: #fff;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .how-it-works .wrap-content {
- display: inline-block;
- width: calc(100% - 80px);
- margin-left: 20px;
- text-align: left;
- }
- .how-it-works .wrap-content .title {
- font-size: 22px;
- color: #F26522;
- }
- .how-it-works .wrap-content p {
- font-size: 15px;
- line-height: 1.4;
- color: #272c59;
- }
- .love-tips {
- padding: 50px 0;
- background-color: #f9f9f9;
- }
- .love-tips .col-md-12 {
- margin-bottom: 30px;
- }
- .love-tips .love-tip p {
- text-align: left;
- line-height: 1.4;
- }
- .recent-members {
- padding: 50px 0;
- }
- .recent-members .wrap-member {
- position: relative;
- padding-top: 50px;
- }
- .recent-members .wrap-image,
- .recent-members .wrap-image img {
- border-radius: 10px 10px 0 0;
- }
- .recent-members .wrap-image {
- position: relative;
- overflow: hidden;
- }
- .recent-members .wrap-image .meta {
- position: absolute;
- bottom: 10px;
- left: 10px;
- }
- .recent-members .wrap-image .meta .gallery,
- .recent-members .wrap-image .meta .email,
- .recent-members .wrap-image .meta .love,
- .recent-members .wrap-image .meta .gift {
- position: relative;
- display: inline-block;
- color: #fff;
- border-radius: 20px;
- background: rgba(31, 31, 31, 0.6);
- padding: 4px 15px;
- margin: 0 2px;
- z-index: 1;
- }
- .recent-members .wrap-image .meta .gallery i,
- .recent-members .wrap-image .meta .email i,
- .recent-members .wrap-image .meta .love i,
- .recent-members .wrap-image .meta .gift i {
- color: #fff;
- }
- .recent-members .wrap-image:after {
- display: block;
- position: absolute;
- content: '';
- width: 100%;
- height: 100%;
- border-radius: 10px 10px 0 0;
- top: 0;
- left: 0;
- background-color: #F26522;
- opacity: 0;
- visibility: hidden;
- transition: all 0.5s;
- }
- .recent-members .wrap-content {
- position: relative;
- background-color: #f9f9f9;
- padding: 20px;
- border-radius: 0 0 10px 10px;
- margin-top: -2px;
- z-index: 2;
- }
- .recent-members .wrap-content .title {
- position: relative;
- font-size: 22px;
- }
- .recent-members .wrap-content .title a {
- color: #F26522;
- }
- .recent-members .wrap-content .title:after {
- display: block;
- content: '';
- position: absolute;
- top: 50%;
- right: 0;
- width: 10px;
- height: 10px;
- border-radius: 100%;
- transform: translateY(-50%);
- }
- .recent-members .wrap-content .title:after {
- background-color: #ccc;
- }
- .recent-members .wrap-content.active .title:after {
- background-color: #4fc401;
- }
- .recent-members .member {
- outline: none;
- }
- .recent-members .member:hover .wrap-image:after {
- opacity: 0.5;
- visibility: visible;
- }
- .recent-members .slick-arrow {
- display: inline-block;
- position: absolute;
- top: -5%;
- right: 80px;
- }
- .recent-members .slick-prev {
- right: 70px;
- }
- .recent-members .slick-next {
- right: 15px;
- }
- .wrap-login,
- .wrap-register,
- .wrap-register-subcribe {
- max-width: 800px;
- width: 100%;
- position: fixed;
- padding: 50px;
- left: 50%;
- top: 50%;
- opacity: 0;
- visibility: hidden;
- background-color: #fff;
- transform: translate(-50%, -20%);
- box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.2);
- border-radius: 15px;
- transition: all 0.5s;
- z-index: 999;
- }
- .wrap-login h3,
- .wrap-register h3,
- .wrap-register-subcribe h3 {
- font-weight: 600;
- border-bottom: 1px solid #eee;
- padding-bottom: 10px;
- }
- .wrap-login h3 span,
- .wrap-register h3 span,
- .wrap-register-subcribe h3 span {
- color: #F26522;
- }
- .wrap-login .col-lg-5 img,
- .wrap-register .col-lg-5 img,
- .wrap-register-subcribe .col-lg-5 img {
- margin-top: 30px;
- }
- .wrap-login .wrap-confirm,
- .wrap-register .wrap-confirm,
- .wrap-register-subcribe .wrap-confirm {
- margin: 5px 0;
- }
- .wrap-login .title,
- .wrap-login .get-otp,
- .wrap-register .title,
- .wrap-register .get-otp,
- .wrap-register-subcribe .title,
- .wrap-register-subcribe .get-otp {
- font-size: 16px;
- font-weight: 600;
- text-align: left;
- color: #272c59;
- margin: 10px 0;
- display: block;
- }
- .wrap-login .get-otp,
- .wrap-register .get-otp,
- .wrap-register-subcribe .get-otp {
- color: #F26522 !important;
- }
- .wrap-login input,
- .wrap-register input,
- .wrap-register-subcribe input {
- background-color: #fff;
- border-radius: 5px;
- border: solid 1px #e8e8e8;
- box-sizing: border-box;
- clear: both;
- cursor: pointer;
- display: inline-block;
- width: 100%;
- font-family: inherit;
- font-size: 14px;
- font-weight: normal;
- height: 42px;
- line-height: 40px;
- outline: none;
- padding-left: 18px;
- padding-right: 30px;
- position: relative;
- text-align: left !important;
- }
- .wrap-login .button,
- .wrap-register .button,
- .wrap-register-subcribe .button {
- text-align: center;
- }
- .wrap-login .close-popup,
- .wrap-register .close-popup,
- .wrap-register-subcribe .close-popup {
- position: absolute;
- top: 20px;
- right: 20px;
- }
- .wrap-login .close-popup i,
- .wrap-register .close-popup i,
- .wrap-register-subcribe .close-popup i {
- font-size: 25px;
- color: #333;
- }
- .wrap-register .login-now {
- color: #F26522;
- transition: all 0.5s;
- }
- .wrap-register .login-now:hover {
- text-decoration: underline;
- }
- .wrap-register .service,
- .wrap-register-subcribe .service {
- font-size: 0;
- position: relative;
- min-height: 60px;
- }
- .wrap-register .service p,
- .wrap-register-subcribe .service p {
- display: inline-block;
- vertical-align: middle;
- font-size: 20px;
- font-weight: 400;
- margin: 10px 20px 10px 0;
- }
- .wrap-register .service p i,
- .wrap-register-subcribe .service p i {
- font-size: 20px;
- color: #c61932;
- }
- .wrap-register .service .button-register,
- .wrap-register-subcribe .service .button-register {
- display: inline-block;
- vertical-align: middle;
- font-size: 16px;
- padding: 7px 20px;
- margin: 0;
- }
- .wrap-register .service .confirm-total,
- .wrap-register-subcribe .service .confirm-total {
- opacity: 0;
- visibility: hidden;
- }
- .wrap-register .service .confirm,
- .wrap-register-subcribe .service .confirm {
- position: relative;
- display: inline-block;
- width: 48%;
- margin-right: 8px !important;
- margin-top: -50px;
- opacity: 0;
- visibility: hidden;
- transition: all 0.5s;
- }
- .wrap-register .service .confirm .wrap-confirm,
- .wrap-register-subcribe .service .confirm .wrap-confirm {
- display: flex;
- }
- .wrap-register .service .confirm .button-confirm,
- .wrap-register-subcribe .service .confirm .button-confirm {
- font-size: 14px;
- height: 42px;
- line-height: 42px;
- padding: 0 10px;
- margin: 0;
- border-radius: 0 5px 5px 0;
- }
- .wrap-register .service.input-fade-in .confirm,
- .wrap-register .service.input-fade-in .confirm-total,
- .wrap-register-subcribe .service.input-fade-in .confirm,
- .wrap-register-subcribe .service.input-fade-in .confirm-total {
- margin: 0;
- opacity: 1;
- visibility: visible;
- }
- .dialog-popup {
- position: fixed;
- top: 50%;
- left: 50%;
- display: flex;
- border-radius: 15px;
- overflow: hidden;
- max-width: 800px;
- width: 60%;
- margin: 0 auto;
- opacity: 0;
- visibility: hidden;
- transform: translate(-50%, -30%);
- transition: all 0.5s;
- z-index: 100;
- }
- .dialog-popup .close-popup {
- position: absolute;
- top: 20px;
- right: 20px;
- font-size: 20px;
- color: #111;
- z-index: 1;
- }
- .dialog-popup .user-img {
- width: 40%;
- background-position: center;
- background-size: cover;
- }
- .dialog-popup .wrap-intro-user {
- /*width: 60%;*/
- background-color: #f6f6f6;
- padding: 50px 30px;
- }
- .dialog-popup input {
- width: calc(100% - 200px);
- border: none;
- padding: 10px 20px;
- border-radius: 10px;
- outline: none;
- margin-bottom: 20px;
- }
- .dialog-popup textarea {
- width: 90%;
- border: none;
- padding: 20px;
- border-radius: 10px;
- outline: none;
- }
- .dialog-popup .button {
- text-align: center;
- display: inline-block;
- }
- .chat-popup .wrap-intro-user {
- background-color: #f6f6f6;
- padding: 50px 30px;
- }
- body:after {
- background-color: #000;
- content: '';
- height: 100%;
- left: 0;
- opacity: 0;
- visibility: hidden;
- position: fixed;
- top: 0;
- width: 100%;
- z-index: 99;
- transition: all 0.5s;
- }
- body.popup-active-login:after {
- opacity: 0.8;
- visibility: visible;
- }
- body.popup-active-login .wrap-login {
- opacity: 1;
- visibility: visible;
- transform: translate(-50%, -50%);
- }
- body.popup-active-register:after {
- opacity: 0.8;
- visibility: visible;
- }
- body.popup-active-register .wrap-register {
- opacity: 1;
- visibility: visible;
- transform: translate(-50%, -50%);
- }
- body.popup-active-register-subcribe:after {
- opacity: 0.8;
- visibility: visible;
- }
- body.popup-active-register-subcribe .wrap-register-subcribe {
- opacity: 1;
- visibility: visible;
- transform: translate(-50%, -50%);
- }
- /*body.popup-chat:after {
- opacity: 0.8;
- visibility: visible;
- }*/
- body.popup-dialog:after {
- opacity: 0.8;
- visibility: visible;
- }
- /*body.popup-chat .popup-chat-active .dialog-popup {
- opacity: 1;
- visibility: visible;
- transform: translate(-50%, -50%);
- }*/
- body.popup-dialog .dialog-popup-active {
- opacity: 1;
- visibility: visible;
- transform: translate(-50%, -50%);
- }
- .article-love-tips {
- font-size: 0;
- border-bottom: 1px solid #ccc;
- padding: 25px 15px;
- }
- .article-love-tips.first {
- border-top: none;
- }
- .article-love-tips.last {
- border-bottom: none;
- }
- .article-love-tips .article-love-tips-image,
- .article-love-tips .article-love-tips-content {
- display: inline-block;
- vertical-align: middle;
- }
- .article-love-tips .article-love-tips-image {
- width: 200px;
- height: 200px;
- border-radius: 100%;
- margin-right: 30px;
- background-size: cover;
- background-position: center center;
- }
- .article-love-tips .article-love-tips-content {
- width: calc(100% - 230px);
- text-align: center;
- }
- .article-love-tips .article-love-tips-content h3 a {
- color: #333;
- font-size: 22px;
- letter-spacing: 0.3px;
- font-weight: 600;
- margin-top: 0;
- }
- .article-love-tips .article-love-tips-content h3 a:hover {
- color: #F26522;
- }
- .article-love-tips .article-love-tips-content p {
- font-size: 16px;
- line-height: 1.3;
- font-weight: 400;
- }
- .article-love-tips .article-love-tips-content .date,
- .article-love-tips .article-love-tips-content .comments {
- font-size: 14px;
- color: rgba(51, 51, 51, 0.7);
- display: inline-block;
- margin: 0 5px;
- }
- .page-404 .wrap-content {
- padding: 100px 0;
- }
- .page-404 .wrap-content .title-primary {
- font-size: 18px;
- }
- .page-404 .wrap-content .title {
- margin: 80px 0 30px 0;
- font-size: 60px;
- color: #272c59;
- }
- .page-404 .wrap-content .button {
- margin: 20px 0;
- }
- .page-love-tips-detail > .wrap-content {
- padding: 100px 0;
- }
- .page-love-tips-detail .wrap-image-content .wrap-image {
- display: inline-block;
- vertical-align: top;
- width: 250px;
- margin-right: 20px;
- position: relative;
- }
- .page-love-tips-detail .wrap-image-content .wrap-image .wrap-date {
- position: absolute;
- width: 100px;
- height: 100px;
- color: #fff;
- background-color: #F26522;
- top: -20px;
- border-radius: 100%;
- text-align: center;
- }
- .page-love-tips-detail .wrap-image-content .wrap-image .wrap-date .date-month {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 50%;
- transform: translateY(-30%);
- }
- .page-love-tips-detail .wrap-image-content .wrap-image .wrap-date .date {
- font-weight: 700;
- font-size: 30px;
- }
- .page-love-tips-detail .wrap-image-content .wrap-image .article-love-tips-image {
- width: 220px;
- height: 220px;
- border-radius: 100%;
- background-size: cover;
- background-position: center center;
- }
- .page-love-tips-detail .wrap-image-content .wrap-content {
- display: inline-block;
- width: calc(100% - 280px);
- vertical-align: top;
- }
- .page-love-tips-detail .wrap-image-content .wrap-content .title {
- font-size: 30px;
- font-weight: 600;
- margin-bottom: 10px;
- }
- .page-love-tips-detail .wrap-image-content .wrap-content .meta {
- color: rgba(31, 31, 31, 0.7);
- margin-bottom: 20px;
- }
- .page-love-tips-detail .wrap-image-content .wrap-content .meta i {
- color: #000;
- font-weight: 600;
- }
- .page-love-tips-detail .wrap-quote {
- border-left: 3px solid #F26522;
- padding-left: 30px;
- }
- .page-love-tips-detail .wrap-quote .quote {
- font-style: italic;
- font-size: 20px;
- margin-bottom: 20px;
- }
- .page-love-tips-detail .wrap-quote .author-image {
- display: inline-block;
- vertical-align: middle;
- width: 80px;
- height: 80px;
- background-size: cover;
- background-position: center;
- border-radius: 100%;
- }
- .page-love-tips-detail .wrap-quote .author-content {
- display: inline-block;
- vertical-align: middle;
- width: calc(100% - 130px);
- margin-left: 20px;
- }
- .page-love-tips-detail .wrap-quote .name {
- font-weight: 600;
- margin-bottom: 7px;
- }
- .page-love-tips-detail .content-list i {
- color: #F26522;
- margin-right: 5px;
- }
- .page-love-tips-detail .content-list li {
- margin-bottom: 7px;
- }
- .page-love-tips-detail .wrap-image-content.square {
- margin: 20px 0;
- }
- .page-love-tips-detail .wrap-image-content.square br {
- display: none;
- }
- .page-love-tips-detail .wrap-image-content.square .image-square {
- width: 250px;
- height: 300px;
- background-position: center;
- background-size: cover;
- border-radius: 10px;
- }
- .page-love-tips-detail .wrap-author {
- position: relative;
- margin: 30px 0;
- background-color: #f6f6f6;
- padding: 20px;
- border-radius: 10px;
- }
- .page-love-tips-detail .wrap-author .name {
- display: inline-block;
- font-weight: 600;
- border-bottom: 1px solid #ccc;
- padding-bottom: 10px;
- }
- .page-love-tips-detail .wrap-author .social {
- position: absolute;
- top: 20px;
- right: 20px;
- }
- .page-love-tips-detail .wrap-author .social a {
- color: #fff;
- margin: 0 5px;
- background-color: #272c59;
- padding: 5px;
- border-radius: 100%;
- width: 20px;
- height: 20px;
- display: inline-block;
- text-align: center;
- }
- .page-love-tips-detail .wrap-author .social a:hover {
- background-color: #F26522;
- }
- .page-love-tips-detail .wrap-author .social a:first-child {
- margin-left: 0;
- }
- .page-love-tips-detail .wrap-author .social a:last-child {
- margin-right: 0;
- }
- .page-love-tips-detail .wrap-author .social a i {
- font-size: 13px;
- }
- .page-love-tips-detail .wrap-author .author-image {
- width: 100px;
- height: 100px;
- border-radius: 100%;
- background-size: cover;
- background-position: center;
- display: inline-block;
- vertical-align: top;
- }
- .page-love-tips-detail .wrap-author .author-content {
- display: inline-block;
- vertical-align: top;
- margin-left: 30px;
- width: calc(100% - 150px);
- }
- .page-love-tips-detail .row.comment-facebook {
- margin-top: 50px;
- }
- .page-about-us .wrap-content {
- padding: 100px 0;
- }
- .page-about-us .wrap-content .desc {
- margin: 50px 0;
- }
- .page-about-us .row-accordion {
- display: flex;
- align-items: center;
- }
- .page-about-us .title-accordion {
- position: relative;
- background: #F26522;
- padding: 25px;
- border-radius: 10px;
- margin-bottom: 10px;
- }
- .page-about-us .title-accordion:after {
- content: url(../img/arrow.png);
- transform: translateY(-50%);
- display: inline-block;
- position: absolute;
- top: 50%;
- right: 25px;
- transition: all 0.5s;
- }
- .page-about-us .title-accordion.open {
- margin: 0;
- border-radius: 10px 10px 0 0;
- }
- .page-about-us .title-accordion.open:after {
- transform: translateY(-50%) rotate(180deg);
- }
- .page-about-us .title-accordion a {
- font-size: 17px;
- font-weight: 600;
- color: #fff;
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 25px;
- line-height: 50px;
- outline: none;
- }
- .page-about-us .content-accordion {
- padding: 20px;
- background-color: #f6f6f6;
- border-radius: 0 0 10px 10px;
- margin-bottom: 20px;
- box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.2);
- }
- .page-about-us .col-img {
- text-align: center;
- }
- .page-match-profile > .wrap-content {
- padding: 100px 0;
- }
- .page-match-profile .recent-members {
- padding: 0;
- }
- .page-match-profile .recent-members.loaded {
- height: initial;
- }
- .page-match-profile .recent-members .wrap-member {
- padding: 0;
- }
- .page-match-profile .recent-members .wrap-loadmore {
- display: none;
- }
- .page-match-profile .recent-members .wrap-loadmore.loaded {
- display: block;
- }
- .page-match-profile .recent-members .member {
- margin-bottom: 20px;
- }
- .page-match-profile .recent-members .member .wrap-content {
- transition: all 0.5s;
- }
- .page-match-profile .recent-members .member .wrap-content:hover {
- box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.2);
- }
- .page-match-profile .recent-members .btn-loadmore {
- text-align: center;
- }
- .page-match-profile .recent-members .btn-loadmore .button {
- display: flex;
- justify-content: center;
- }
- .page-match-profile-detail > .wrap-content {
- padding: 100px 0;
- }
- .page-match-profile-detail .intro-user {
- display: flex;
- margin-bottom: 40px;
- border-radius: 15px;
- overflow: hidden;
- }
- .page-match-profile-detail .intro-user .user-img {
- width: 40%;
- background-position: center;
- background-size: cover;
- }
- .page-match-profile-detail .intro-user .wrap-intro-user {
- width: 60%;
- background-color: #f6f6f6;
- padding: 30px;
- }
- .page-match-profile-detail .intro-user .wrap-intro-user .name {
- color: #272c59;
- font-size: 25px;
- font-weight: 600;
- position: relative;
- }
- .page-match-profile-detail .intro-user .wrap-intro-user .name:before {
- display: block;
- content: '';
- position: absolute;
- background-color: #ccc;
- top: 50%;
- right: 0;
- width: 10px;
- height: 10px;
- border-radius: 100%;
- transform: translateY(-50%);
- }
- .page-match-profile-detail .intro-user .wrap-intro-user.active .name::before {
- background-color: #4fc401;
- }
- .page-match-profile-detail .intro-user .wrap-intro-user .intro {
- font-size: 18px;
- line-height: 1.4;
- }
- .page-match-profile-detail .intro-user .wrap-intro-user textarea {
- width: 90%;
- border: none;
- padding: 20px;
- border-radius: 10px;
- outline: none;
- }
- .page-match-profile-detail .intro-user .wrap-intro-user .button {
- text-align: center;
- display: inline-block;
- }
- .page-match-profile-detail .user-extra {
- display: grid;
- grid-gap: 30px;
- grid-template-columns: repeat(3, 1fr);
- padding: 0;
- }
- .page-match-profile-detail .user-extra .col-extra {
- background-color: #f6f6f6;
- border-radius: 15px;
- padding: 30px 20px;
- }
- .page-match-profile-detail .user-extra .col-extra .title {
- font-size: 18px;
- color: #272c59;
- font-weight: 600;
- margin-bottom: 25px;
- }
- .page-match-profile-detail .user-extra .col-extra span {
- color: #969696;
- font-weight: 600;
- }
- .page-match-profile-detail .user-extra .col-extra p {
- line-height: 1.4;
- }
- .page-match-profile-detail .user-extra .col-extra.about p {
- margin-top: 0;
- margin-bottom: 10px;
- }
- .page-match-profile-detail .user-extra .col-extra.favorite {
- font-size: 0;
- }
- .page-match-profile-detail .user-extra .col-extra.favorite .icons {
- display: inline-block;
- width: 33.33%;
- text-align: center;
- }
- .page-match-profile-detail .user-extra .col-extra.favorite .icons h5 {
- font-size: 16px;
- margin: 20px 0;
- }
- .user-gallery img {
- border-radius: 10px !important;
- }
- .user-gallery a {
- outline: none;
- }
- .user-gallery .user-gallery-bg {
- position: relative;
- width: 100%;
- height: 250px;
- border-radius: 10px;
- background-position: center;
- background-size: cover;
- }
- .user-gallery .user-gallery-bg:after {
- position: absolute;
- content: '\f06e';
- font-family: 'FontAwesome';
- font-size: 25px;
- text-align: center;
- line-height: 50px;
- width: 50px;
- height: 50px;
- color: #fff;
- border: 1px solid #fff;
- border-radius: 100%;
- top: 50%;
- left: 50%;
- opacity: 0;
- visibility: hidden;
- transform: translate(-50%, -30%);
- transition: all 0.5s;
- }
- .user-gallery .user-gallery-bg:before {
- display: block;
- position: absolute;
- content: '';
- width: 100%;
- height: 100%;
- border-radius: 10px;
- top: 0;
- left: 0;
- background-color: #F26522;
- opacity: 0;
- visibility: hidden;
- transition: all 0.5s;
- }
- .user-gallery .user-gallery-bg:hover:before {
- opacity: 0.7;
- visibility: visible;
- }
- .user-gallery .user-gallery-bg:hover:after {
- opacity: 1;
- visibility: visible;
- transform: translate(-50%, -50%);
- }
- .sidebar .section-widget {
- background-color: #f6f6f6;
- border-radius: 10px;
- padding: 30px 20px;
- margin-bottom: 30px;
- }
- .sidebar .section-widget.user-info {
- text-align: center;
- }
- .sidebar .section-widget.user-info .welcome {
- font-weight: 600;
- font-size: 18px;
- margin-bottom: 20px;
- }
- .sidebar .section-widget.searches .search-element {
- transition: all 0.5s;
- padding: 10px 20px;
- margin: 0 -20px;
- }
- .sidebar .section-widget.searches .search-element a {
- color: #333;
- }
- .sidebar .section-widget.searches .search-element i {
- margin-right: 5px;
- }
- .sidebar .section-widget.searches .search-element:hover {
- background-color: #F26522;
- }
- .sidebar .section-widget.searches .search-element:hover a, .sidebar .section-widget.searches .search-element:hover i {
- color: #fff;
- }
- .sidebar .title-widget {
- font-size: 20px;
- color: #272c59;
- font-weight: 600;
- margin-bottom: 20px;
- }
- .sidebar .title {
- font-size: 16px;
- font-weight: 600;
- text-align: left;
- color: #272c59;
- margin: 10px 0;
- }
- .sidebar .two-select {
- display: grid;
- grid-gap: 15px;
- grid-template-columns: repeat(2, 1fr);
- padding: 0;
- }
- .sidebar .two-select .nice-select {
- margin: 0;
- }
- .sidebar .nice-select {
- width: 100%;
- margin-bottom: 20px;
- }
- .sidebar .nice-select .list {
- width: 100% !important;
- }
- .sidebar .btn-search {
- text-align: center;
- }
- .sidebar .button {
- display: inline-block;
- }
- .sidebar .button i {
- margin-right: 7px;
- }
- .sidebar .user {
- margin-bottom: 15px;
- }
- .sidebar .user .user-image {
- display: inline-block;
- vertical-align: middle;
- border-radius: 100%;
- width: 60px;
- height: 60px;
- background-size: cover;
- background-position: center;
- }
- .sidebar .user .wrap-user-content {
- display: inline-block;
- vertical-align: middle;
- width: calc(100% - 100px);
- margin-left: 15px;
- }
- .sidebar .user .wrap-user-content .title {
- margin: 0 0 5px 0 !important;
- }
- .sidebar .user .wrap-user-content .view i {
- font-weight: 600;
- }
- .my-profile > .wrap-content {
- padding: 100px 0;
- }
- .my-profile .sidebar .title {
- font-size: 20px;
- color: #272c59;
- font-weight: 600;
- margin-bottom: 20px;
- }
- .my-profile .sidebar .col-extra.favorite .icons {
- display: inline-block;
- width: 32.33%;
- text-align: center;
- }
- .my-profile .user-gallery .button {
- margin-top: 50px;
- }
- .my-profile .info-user .wrap-field {
- padding: 5px 0;
- /*border-bottom: 1px solid #eee;*/
- }
- .my-profile .info-user .wrap-field.first {
- margin-top: 50px;
- }
- .my-profile .info-user .wrap-field .title-filed {
- display: inline-block;
- vertical-align: top;
- max-width: 150px;
- width: 100%;
- margin-top: 10px;
- }
- .my-profile .info-user .wrap-field textarea,
- .my-profile .info-user .wrap-field input {
- display: inline-block;
- vertical-align: top;
- background-color: #fff;
- border-radius: 5px;
- border: solid 1px #e8e8e8;
- box-sizing: border-box;
- clear: both;
- display: inline-block;
- width: calc(100% - 155px);
- font-size: 14px;
- font-weight: normal;
- height: 42px;
- line-height: 40px;
- outline: none;
- padding-left: 18px;
- padding-right: 30px;
- position: relative;
- text-align: left !important;
- }
- .my-profile .info-user .wrap-field textarea {
- height: auto !important;
- }
- .my-profile .info-user .wrap-field .nice-select {
- width: calc(100% - 155px);
- float: none;
- display: inline-block;
- }
- .my-profile .info-user .wrap-field .nice-select .list {
- width: 100%;
- }
- .my-profile .info-user .wrap-field .wrap-birth-day {
- display: inline-block;
- vertical-align: middle;
- width: calc(100% - 155px);
- }
- .my-profile .info-user .wrap-field .birthday {
- display: grid;
- grid-gap: 15px;
- grid-template-columns: repeat(3, 1fr);
- padding: 0;
- }
- .my-profile .info-user .wrap-field .birthday .nice-select {
- width: 100%;
- }
- .my-profile .info-user .button {
- text-align: center;
- }
- .gift-element {
- margin-bottom: 20px;
- padding-bottom: 20px;
- border-bottom: 1px solid #eee;
- }
- .gift-element.last {
- border: none;
- padding: 0;
- margin: 0;
- }
- .gift-element .wrap-image {
- display: inline-block;
- vertical-align: top;
- width: 100px;
- }
- .gift-element .wrap-image .gift-img {
- width: 100px;
- height: 100px;
- background-size: cover;
- background-position: center;
- border-radius: 10px;
- }
- .gift-element .wrap-content {
- display: inline-block;
- vertical-align: top;
- width: calc(100% - 120px);
- margin-left: 10px;
- }
- .gift-element .wrap-content .numbers {
- font-weight: 600;
- font-size: 20px;
- }
- .gift-element .wrap-content .button {
- padding: 8px 12px;
- }
- .page-message > .wrap-content {
- padding: 100px 0;
- }
- .page-message .chat-wrap {
- background-color: #f6f6f6;
- border-radius: 10px;
- padding: 30px 20px;
- margin-bottom: 30px;
- }
- .page-message .chat-wrap .chat-user:nth-child(even) {
- background-color: bisque;
- }
- .page-message .chat-wrap .chat-user:nth-child(odd) {
- background-color: antiquewhite;
- }
- .page-message .chat-wrap .chat-user:nth-child(2) {
- border-radius: 10px 10px 0 0;
- }
- .page-message .search {
- position: relative;
- margin-bottom: 30px;
- }
- .page-message .search input {
- width: calc(100% - 75px);
- height: 50px;
- line-height: 38px;
- border-radius: 10px;
- padding: 0 50px 0 20px;
- border: none;
- font-weight: 400;
- font-size: 15px;
- }
- .page-message .search i {
- position: absolute;
- top: 50%;
- right: 20px;
- transform: translateY(-50%);
- }
- .page-message .chat-user {
- position: relative;
- display: block;
- width: calc(100% - 30px);
- padding: 15px;
- }
- .page-message .chat-user:last-child {
- border-radius: 0 0 10px 10px;
- }
- .page-message .chat-user .wrap-message {
- position: relative;
- z-index: 1;
- cursor: pointer;
- }
- .page-message .chat-user .user-img,
- .page-message .chat-user .title-name,
- .page-message .chat-user .time,
- .page-message .chat-user .btn-delete {
- display: inline-block;
- vertical-align: middle;
- }
- .page-message .chat-user .title-name {
- /*width: 70%;*/
- padding: 10px 20px;
- font-weight: 600;
- height: 60px;
- overflow: hidden;
- line-height: 60px;
- }
- .page-message .chat-user .user-img,
- .page-message .chat-user .btn-delete {
- text-align: center;
- }
- .page-message .chat-user .btn-delete {
- color: red;
- margin-left: 30px;
- }
- .page-message .chat-user .user-img {
- display: inline-block;
- vertical-align: middle;
- border-radius: 100%;
- width: 60px;
- height: 60px;
- background-size: cover;
- background-position: center;
- }
- .page-message .chat-user .time {
- margin: auto;
- float: right;
- line-height: 80px; /* max-height: 60px; */
- vertical-align: middle;
- text-align: center;
- margin: auto;
- }
- .page-message .chat-user.open-message .wrap-chat-box {
- display: block;
- }
- .page-message .chat-user .wrap-chat-box {
- background-color: #fff;
- border-radius: 10px;
- display: none;
- transition: all 0.5s;
- }
- .page-message .chat-user .wrap-chat-box .inbox,
- .page-message .chat-user .wrap-chat-box .outbox {
- padding: 15px;
- }
- .page-message .chat-user .wrap-chat-box .inbox .user-img,
- .page-message .chat-user .wrap-chat-box .outbox .user-img {
- display: inline-block;
- vertical-align: middle;
- }
- .page-message .chat-user .wrap-chat-box .inbox .wrap-content {
- margin-left: 10px;
- }
- .page-message .chat-user .wrap-chat-box .outbox .wrap-content {
- margin-right: 10px;
- background-color: #F26522;
- }
- .page-message .chat-user .wrap-chat-box .outbox .wrap-content .content {
- color: #fff;
- }
- .page-message .chat-user .wrap-chat-box .wrap-content {
- display: inline-block;
- vertical-align: middle;
- width: calc(100% - 120px);
- padding: 10px 20px;
- background-color: #f0f0f0;
- border-radius: 20px;
- }
- .page-message .chat-user .wrap-chat-box .wrap-reply {
- padding: 15px;
- }
- .page-message .chat-user .wrap-chat-box .wrap-reply .reply i {
- color: #F26522;
- }
- .page-message .chat-user .wrap-chat-box .wrap-reply input {
- width: calc(100% - 80px);
- line-height: 38px;
- border-radius: 10px;
- padding: 0 10px 0 15px;
- border: none;
- font-weight: 400;
- font-size: 15px;
- margin: 0 15px;
- background-color: #f6f6f6;
- }
- @media (min-width: 544px) {
- .container {
- max-width: 576px;
- }
- .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;
- }
- .col-sm-1 {
- width: 8.33333%;
- }
- .col-sm-2 {
- width: 16.66667%;
- }
- .col-sm-3 {
- width: 25%;
- }
- .col-sm-4 {
- width: 33.33333%;
- }
- .col-sm-5 {
- width: 41.66667%;
- }
- .col-sm-6 {
- width: 50%;
- }
- .col-sm-7 {
- width: 58.33333%;
- }
- .col-sm-8 {
- width: 66.66667%;
- }
- .col-sm-9 {
- width: 75%;
- }
- .col-sm-10 {
- width: 83.33333%;
- }
- .col-sm-11 {
- width: 91.66667%;
- }
- .col-sm-12 {
- width: 100%;
- }
- .col-sm-pull-0 {
- right: auto;
- }
- .col-sm-pull-1 {
- right: 8.33333%;
- }
- .col-sm-pull-2 {
- right: 16.66667%;
- }
- .col-sm-pull-3 {
- right: 25%;
- }
- .col-sm-pull-4 {
- right: 33.33333%;
- }
- .col-sm-pull-5 {
- right: 41.66667%;
- }
- .col-sm-pull-6 {
- right: 50%;
- }
- .col-sm-pull-7 {
- right: 58.33333%;
- }
- .col-sm-pull-8 {
- right: 66.66667%;
- }
- .col-sm-pull-9 {
- right: 75%;
- }
- .col-sm-pull-10 {
- right: 83.33333%;
- }
- .col-sm-pull-11 {
- right: 91.66667%;
- }
- .col-sm-pull-12 {
- right: 100%;
- }
- .col-sm-push-0 {
- left: auto;
- }
- .col-sm-push-1 {
- left: 8.33333%;
- }
- .col-sm-push-2 {
- left: 16.66667%;
- }
- .col-sm-push-3 {
- left: 25%;
- }
- .col-sm-push-4 {
- left: 33.33333%;
- }
- .col-sm-push-5 {
- left: 41.66667%;
- }
- .col-sm-push-6 {
- left: 50%;
- }
- .col-sm-push-7 {
- left: 58.33333%;
- }
- .col-sm-push-8 {
- left: 66.66667%;
- }
- .col-sm-push-9 {
- left: 75%;
- }
- .col-sm-push-10 {
- left: 83.33333%;
- }
- .col-sm-push-11 {
- left: 91.66667%;
- }
- .col-sm-push-12 {
- left: 100%;
- }
- .col-sm-offset-0 {
- margin-left: 0%;
- }
- .col-sm-offset-1 {
- margin-left: 8.33333%;
- }
- .col-sm-offset-2 {
- margin-left: 16.66667%;
- }
- .col-sm-offset-3 {
- margin-left: 25%;
- }
- .col-sm-offset-4 {
- margin-left: 33.33333%;
- }
- .col-sm-offset-5 {
- margin-left: 41.66667%;
- }
- .col-sm-offset-6 {
- margin-left: 50%;
- }
- .col-sm-offset-7 {
- margin-left: 58.33333%;
- }
- .col-sm-offset-8 {
- margin-left: 66.66667%;
- }
- .col-sm-offset-9 {
- margin-left: 75%;
- }
- .col-sm-offset-10 {
- margin-left: 83.33333%;
- }
- .col-sm-offset-11 {
- margin-left: 91.66667%;
- }
- .col-sm-offset-12 {
- margin-left: 100%;
- }
- }
- @media (min-width: 768px) {
- .container {
- max-width: 720px;
- }
- .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;
- }
- .col-md-1 {
- width: 8.33333%;
- }
- .col-md-2 {
- width: 16.66667%;
- }
- .col-md-3 {
- width: 25%;
- }
- .col-md-4 {
- width: 33.33333%;
- }
- .col-md-5 {
- width: 41.66667%;
- }
- .col-md-6 {
- width: 50%;
- }
- .col-md-7 {
- width: 58.33333%;
- }
- .col-md-8 {
- width: 66.66667%;
- }
- .col-md-9 {
- width: 75%;
- }
- .col-md-10 {
- width: 83.33333%;
- }
- .col-md-11 {
- width: 91.66667%;
- }
- .col-md-12 {
- width: 100%;
- }
- .col-md-pull-0 {
- right: auto;
- }
- .col-md-pull-1 {
- right: 8.33333%;
- }
- .col-md-pull-2 {
- right: 16.66667%;
- }
- .col-md-pull-3 {
- right: 25%;
- }
- .col-md-pull-4 {
- right: 33.33333%;
- }
- .col-md-pull-5 {
- right: 41.66667%;
- }
- .col-md-pull-6 {
- right: 50%;
- }
- .col-md-pull-7 {
- right: 58.33333%;
- }
- .col-md-pull-8 {
- right: 66.66667%;
- }
- .col-md-pull-9 {
- right: 75%;
- }
- .col-md-pull-10 {
- right: 83.33333%;
- }
- .col-md-pull-11 {
- right: 91.66667%;
- }
- .col-md-pull-12 {
- right: 100%;
- }
- .col-md-push-0 {
- left: auto;
- }
- .col-md-push-1 {
- left: 8.33333%;
- }
- .col-md-push-2 {
- left: 16.66667%;
- }
- .col-md-push-3 {
- left: 25%;
- }
- .col-md-push-4 {
- left: 33.33333%;
- }
- .col-md-push-5 {
- left: 41.66667%;
- }
- .col-md-push-6 {
- left: 50%;
- }
- .col-md-push-7 {
- left: 58.33333%;
- }
- .col-md-push-8 {
- left: 66.66667%;
- }
- .col-md-push-9 {
- left: 75%;
- }
- .col-md-push-10 {
- left: 83.33333%;
- }
- .col-md-push-11 {
- left: 91.66667%;
- }
- .col-md-push-12 {
- left: 100%;
- }
- .col-md-offset-0 {
- margin-left: 0%;
- }
- .col-md-offset-1 {
- margin-left: 8.33333%;
- }
- .col-md-offset-2 {
- margin-left: 16.66667%;
- }
- .col-md-offset-3 {
- margin-left: 25%;
- }
- .col-md-offset-4 {
- margin-left: 33.33333%;
- }
- .col-md-offset-5 {
- margin-left: 41.66667%;
- }
- .col-md-offset-6 {
- margin-left: 50%;
- }
- .col-md-offset-7 {
- margin-left: 58.33333%;
- }
- .col-md-offset-8 {
- margin-left: 66.66667%;
- }
- .col-md-offset-9 {
- margin-left: 75%;
- }
- .col-md-offset-10 {
- margin-left: 83.33333%;
- }
- .col-md-offset-11 {
- margin-left: 91.66667%;
- }
- .col-md-offset-12 {
- margin-left: 100%;
- }
- }
- @media (min-width: 992px) {
- .container {
- max-width: 940px;
- }
- .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;
- }
- .col-lg-1 {
- width: 8.33333%;
- }
- .col-lg-2 {
- width: 16.66667%;
- }
- .col-lg-3 {
- width: 25%;
- }
- .col-lg-4 {
- width: 33.33333%;
- }
- .col-lg-5 {
- width: 41.66667%;
- }
- .col-lg-6 {
- width: 50%;
- }
- .col-lg-7 {
- width: 58.33333%;
- }
- .col-lg-8 {
- width: 66.66667%;
- }
- .col-lg-9 {
- width: 75%;
- }
- .col-lg-10 {
- width: 83.33333%;
- }
- .col-lg-11 {
- width: 91.66667%;
- }
- .col-lg-12 {
- width: 100%;
- }
- .col-lg-pull-0 {
- right: auto;
- }
- .col-lg-pull-1 {
- right: 8.33333%;
- }
- .col-lg-pull-2 {
- right: 16.66667%;
- }
- .col-lg-pull-3 {
- right: 25%;
- }
- .col-lg-pull-4 {
- right: 33.33333%;
- }
- .col-lg-pull-5 {
- right: 41.66667%;
- }
- .col-lg-pull-6 {
- right: 50%;
- }
- .col-lg-pull-7 {
- right: 58.33333%;
- }
- .col-lg-pull-8 {
- right: 66.66667%;
- }
- .col-lg-pull-9 {
- right: 75%;
- }
- .col-lg-pull-10 {
- right: 83.33333%;
- }
- .col-lg-pull-11 {
- right: 91.66667%;
- }
- .col-lg-pull-12 {
- right: 100%;
- }
- .col-lg-push-0 {
- left: auto;
- }
- .col-lg-push-1 {
- left: 8.33333%;
- }
- .col-lg-push-2 {
- left: 16.66667%;
- }
- .col-lg-push-3 {
- left: 25%;
- }
- .col-lg-push-4 {
- left: 33.33333%;
- }
- .col-lg-push-5 {
- left: 41.66667%;
- }
- .col-lg-push-6 {
- left: 50%;
- }
- .col-lg-push-7 {
- left: 58.33333%;
- }
- .col-lg-push-8 {
- left: 66.66667%;
- }
- .col-lg-push-9 {
- left: 75%;
- }
- .col-lg-push-10 {
- left: 83.33333%;
- }
- .col-lg-push-11 {
- left: 91.66667%;
- }
- .col-lg-push-12 {
- left: 100%;
- }
- .col-lg-offset-0 {
- margin-left: 0%;
- }
- .col-lg-offset-1 {
- margin-left: 8.33333%;
- }
- .col-lg-offset-2 {
- margin-left: 16.66667%;
- }
- .col-lg-offset-3 {
- margin-left: 25%;
- }
- .col-lg-offset-4 {
- margin-left: 33.33333%;
- }
- .col-lg-offset-5 {
- margin-left: 41.66667%;
- }
- .col-lg-offset-6 {
- margin-left: 50%;
- }
- .col-lg-offset-7 {
- margin-left: 58.33333%;
- }
- .col-lg-offset-8 {
- margin-left: 66.66667%;
- }
- .col-lg-offset-9 {
- margin-left: 75%;
- }
- .col-lg-offset-10 {
- margin-left: 83.33333%;
- }
- .col-lg-offset-11 {
- margin-left: 91.66667%;
- }
- .col-lg-offset-12 {
- margin-left: 100%;
- }
- .menu-toggle {
- display: none;
- }
- }
- @media (min-width: 1200px) {
- .container {
- max-width: 1200px;
- }
- .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
- float: left;
- }
- .col-xl-1 {
- width: 8.33333%;
- }
- .col-xl-2 {
- width: 16.66667%;
- }
- .col-xl-3 {
- width: 25%;
- }
- .col-xl-4 {
- width: 33.33333%;
- }
- .col-xl-5 {
- width: 41.66667%;
- }
- .col-xl-6 {
- width: 50%;
- }
- .col-xl-7 {
- width: 58.33333%;
- }
- .col-xl-8 {
- width: 66.66667%;
- }
- .col-xl-9 {
- width: 75%;
- }
- .col-xl-10 {
- width: 83.33333%;
- }
- .col-xl-11 {
- width: 91.66667%;
- }
- .col-xl-12 {
- width: 100%;
- }
- .col-xl-pull-0 {
- right: auto;
- }
- .col-xl-pull-1 {
- right: 8.33333%;
- }
- .col-xl-pull-2 {
- right: 16.66667%;
- }
- .col-xl-pull-3 {
- right: 25%;
- }
- .col-xl-pull-4 {
- right: 33.33333%;
- }
- .col-xl-pull-5 {
- right: 41.66667%;
- }
- .col-xl-pull-6 {
- right: 50%;
- }
- .col-xl-pull-7 {
- right: 58.33333%;
- }
- .col-xl-pull-8 {
- right: 66.66667%;
- }
- .col-xl-pull-9 {
- right: 75%;
- }
- .col-xl-pull-10 {
- right: 83.33333%;
- }
- .col-xl-pull-11 {
- right: 91.66667%;
- }
- .col-xl-pull-12 {
- right: 100%;
- }
- .col-xl-push-0 {
- left: auto;
- }
- .col-xl-push-1 {
- left: 8.33333%;
- }
- .col-xl-push-2 {
- left: 16.66667%;
- }
- .col-xl-push-3 {
- left: 25%;
- }
- .col-xl-push-4 {
- left: 33.33333%;
- }
- .col-xl-push-5 {
- left: 41.66667%;
- }
- .col-xl-push-6 {
- left: 50%;
- }
- .col-xl-push-7 {
- left: 58.33333%;
- }
- .col-xl-push-8 {
- left: 66.66667%;
- }
- .col-xl-push-9 {
- left: 75%;
- }
- .col-xl-push-10 {
- left: 83.33333%;
- }
- .col-xl-push-11 {
- left: 91.66667%;
- }
- .col-xl-push-12 {
- left: 100%;
- }
- .col-xl-offset-0 {
- margin-left: 0%;
- }
- .col-xl-offset-1 {
- margin-left: 8.33333%;
- }
- .col-xl-offset-2 {
- margin-left: 16.66667%;
- }
- .col-xl-offset-3 {
- margin-left: 25%;
- }
- .col-xl-offset-4 {
- margin-left: 33.33333%;
- }
- .col-xl-offset-5 {
- margin-left: 41.66667%;
- }
- .col-xl-offset-6 {
- margin-left: 50%;
- }
- .col-xl-offset-7 {
- margin-left: 58.33333%;
- }
- .col-xl-offset-8 {
- margin-left: 66.66667%;
- }
- .col-xl-offset-9 {
- margin-left: 75%;
- }
- .col-xl-offset-10 {
- margin-left: 83.33333%;
- }
- .col-xl-offset-11 {
- margin-left: 91.66667%;
- }
- .col-xl-offset-12 {
- margin-left: 100%;
- }
- }
- @media (max-width: 767.9px) {
- .title-primary:before {
- width: 50%;
- }
- .breadcrumb {
- margin-left: 10px;
- }
- .logo-menu {
- padding: 0 15px;
- }
- .form > img {
- display: none !important;
- }
- .wrap-register .service .confirm-total,
- .wrap-register-subcribe .service .confirm-total {
- margin-top: -50px;
- }
- .wrap-register .service .confirm,
- .wrap-register-subcribe .service .confirm {
- width: 100%;
- margin-bottom: 10px;
- }
- .dialog-popup {
- display: block;
- width: 90%;
- }
- .dialog-popup .close-popup {
- width: 20px;
- text-align: center;
- border-radius: 100%;
- background-color: #fff;
- }
- .dialog-popup .user-img {
- width: 100%;
- height: 200px;
- }
- .dialog-popup .wrap-intro-user {
- width: 100%;
- padding: 10px 20px;
- }
- .dialog-popup input {
- width: calc(100% - 200px);
- }
- .dialog-popup textarea {
- width: calc(100% - 40px);
- }
- .page-love-tips-detail .wrap-image-content .wrap-image .wrap-date {
- top: 0;
- left: 10%;
- }
- .page-love-tips-detail .wrap-author .social a {
- margin: 5px 0;
- }
- .page-about-us .wrap-content {
- padding: 50px 0;
- }
- .page-about-us .row-accordion {
- display: block;
- }
- .page-match-profile .recent-members .wrap-member {
- padding: 0 15px;
- }
- .my-profile .info-user .wrap-field .title-filed {
- font-size: 20px;
- max-width: none;
- display: block;
- margin-bottom: 10px;
- }
- .my-profile .info-user .wrap-field textarea,
- .my-profile .info-user .wrap-field input {
- width: 100%;
- }
- .my-profile .info-user .wrap-field .nice-select {
- width: 100%;
- }
- .my-profile .info-user .wrap-field .wrap-birth-day {
- width: 100%;
- }
- .page-message > .wrap-content {
- padding: 50px 0;
- }
- .page-message .chat-user .title-name {
- /*width: 65%;*/
- padding: 10px;
- line-height: 40px;
- height: 40px;
- }
- .page-message .chat-user .time {
- line-height: inherit;
- float: none;
- }
- .page-message .chat-user .wrap-chat-box .wrap-reply input {
- /*width: 55% !important;*/
- width: calc(100% - 60px) !important;
- margin: 0 5px;
- }
- }
- @media screen and (max-width: 1200px) {
- .footer .wrap-most-user img {
- width: 80px;
- height: 80px;
- }
- .logo-menu .menu input {
- width: 60px;
- }
- .form > img {
- position: absolute;
- left: 25%;
- }
- }
- @media (max-width: 991.9px) {
- .footer .wrap-most-user img {
- width: 60px;
- height: 60px;
- }
- .logo-menu .menu {
- display: none;
- }
- .menu-mobile {
- position: fixed;
- background-color: #fff;
- width: 300px;
- top: 0;
- left: 0;
- height: 100vh;
- box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.2);
- transform: translateX(-400px);
- transition: all 0.5s;
- z-index: 10;
- }
- .menu-mobile .menu-mobile {
- list-style: none;
- }
- .menu-mobile .search-wrapper {
- position: relative;
- }
- .menu-mobile .search-wrapper .search {
- position: absolute;
- top: 50%;
- right: 25px;
- transform: translateY(-50%);
- }
- .menu-mobile input {
- width: calc(100% - 50px);
- height: 30px;
- padding: 0 35px 0 10px;
- }
- .menu-mobile li {
- padding: 10px 20px;
- border-bottom: 1px solid #eee;
- }
- .menu-mobile li a {
- color: #333333;
- }
- .menu-toggle.is-active .menu-mobile {
- transform: translateX(0);
- }
- .search-wrapper {
- background-color: #e6e6e6;
- padding: 10px;
- position: relative;
- }
- .form {
- overflow: hidden;
- transform: translateX(10px);
- }
- .form .form-wrapper {
- left: 5%;
- }
- .form > img {
- left: 20%;
- max-width: none;
- }
- .wrap-login,
- .wrap-register,
- .wrap-register-subcribe {
- width: 65%;
- }
- .wrap-register .service p,
- .wrap-register-subcribe .service p {
- margin: 0 10px 0 0;
- }
- .article-love-tips .article-love-tips-image,
- .article-love-tips .article-love-tips-content {
- display: block;
- text-align: center;
- }
- .article-love-tips .article-love-tips-image {
- margin: 0 auto 20px auto;
- }
- .article-love-tips .article-love-tips-content {
- width: 100%;
- }
- .page-love-tips-detail .wrap-image-content .wrap-image {
- width: 100%;
- }
- .page-love-tips-detail .wrap-image-content .wrap-image .article-love-tips-image {
- margin: 0 auto 20px auto;
- }
- .page-love-tips-detail .wrap-image-content .wrap-content {
- width: 100%;
- }
- .page-love-tips-detail .wrap-image-content.square .image-square {
- width: 100%;
- }
- .page-love-tips-detail .wrap-author .social {
- position: static;
- }
- .page-match-profile > .wrap-content {
- padding: 50px 0;
- }
- .page-match-profile-detail > .wrap-content {
- padding: 50px 0;
- }
- .page-match-profile-detail .intro-user {
- display: block;
- }
- .page-match-profile-detail .intro-user .user-img {
- width: 100%;
- height: 300px;
- }
- .page-match-profile-detail .intro-user .wrap-intro-user {
- width: 100%;
- }
- .page-match-profile-detail .user-extra {
- display: block;
- }
- .page-match-profile-detail .user-extra .col-extra {
- margin-bottom: 15px;
- }
- .user-gallery .user-gallery-bg {
- height: 180px;
- }
- .my-profile > .wrap-content {
- padding: 50px 0;
- }
- .page-message .chat-wrap {
- padding: 20px 5px;
- }
- .page-message .chat-user {
- padding: 5px;
- width: calc(100% - 10px);
- }
- .page-message .chat-user .user-img {
- width: 40px;
- height: 40px;
- }
- .page-message .chat-user .wrap-chat-box {
- margin-top: 20px;
- }
- .page-message .chat-user .wrap-chat-box .wrap-content {
- width: calc(100% - 90px);
- margin-right: 0px !important;
- margin-left: 0px !important;
- }
- .page-message .chat-user .wrap-chat-box .inbox, .page-message .chat-user .wrap-chat-box .outbox,
- .page-message .chat-user .wrap-chat-box .inbox, .page-message .chat-user .wrap-chat-box .inbox {
- padding: 5px;
- }
- .page-message .chat-user .wrap-chat-box .wrap-reply input {
- /*width: 65%;*/
- width: calc(100% - 60px) !important;
- margin: 0 5px;
- }
- }
- @media screen and (max-width: 800px) {
- .d-sm-none {
- display: none;
- }
- }
- @media (max-width: 543.9px) {
- .form {
- text-align: center;
- }
- .form .form-wrapper {
- width: 100%;
- }
- .container {
- overflow-x: hidden;
- }
- .form-wrapper {
- left: 0 !important;
- max-width: 300px;
- }
- .love-tip {
- text-align: center;
- }
- }
- @media screen and (max-width: 350px) {
- .form .form-wrapper {
- max-width: 270px;
- padding: 20px 13px;
- transform: translateX(-8px);
- }
- }
- @media (max-width: 1199.9px) {
- .recent-members .wrap-image .meta .gallery,
- .recent-members .wrap-image .meta .email,
- .recent-members .wrap-image .meta .love {
- padding: 4px 10px;
- }
- }
- /*# sourceMappingURL=style.css.map */
|