style.css 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987
  1. .container {
  2. margin-right: auto;
  3. margin-left: auto;
  4. padding-left: 0.9375rem;
  5. padding-right: 0.9375rem;
  6. }
  7. .container::after {
  8. content: "";
  9. display: table;
  10. clear: both;
  11. }
  12. .container-fluid {
  13. margin-right: auto;
  14. margin-left: auto;
  15. padding-left: 0.375rem;
  16. padding-right: 0.375rem;
  17. }
  18. .container-fluid::after {
  19. content: "";
  20. display: table;
  21. clear: both;
  22. }
  23. .row {
  24. margin-left: -0.9375rem;
  25. margin-right: -0.9375rem;
  26. }
  27. .row::after {
  28. content: "";
  29. display: table;
  30. clear: both;
  31. }
  32. .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 {
  33. position: relative;
  34. box-sizing: border-box;
  35. min-height: 1px;
  36. width: 100%;
  37. padding-left: 0.9375rem;
  38. padding-right: 0.9375rem;
  39. }
  40. .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 {
  41. float: left;
  42. }
  43. .col-xs-1 {
  44. width: 8.33333%;
  45. }
  46. .col-xs-2 {
  47. width: 16.66667%;
  48. }
  49. .col-xs-3 {
  50. width: 25%;
  51. }
  52. .col-xs-4 {
  53. width: 33.33333%;
  54. }
  55. .col-xs-5 {
  56. width: 41.66667%;
  57. }
  58. .col-xs-6 {
  59. width: 50%;
  60. }
  61. .col-xs-7 {
  62. width: 58.33333%;
  63. }
  64. .col-xs-8 {
  65. width: 66.66667%;
  66. }
  67. .col-xs-9 {
  68. width: 75%;
  69. }
  70. .col-xs-10 {
  71. width: 83.33333%;
  72. }
  73. .col-xs-11 {
  74. width: 91.66667%;
  75. }
  76. .col-xs-12 {
  77. width: 100%;
  78. }
  79. .col-xs-pull-0 {
  80. right: auto;
  81. }
  82. .col-xs-pull-1 {
  83. right: 8.33333%;
  84. }
  85. .col-xs-pull-2 {
  86. right: 16.66667%;
  87. }
  88. .col-xs-pull-3 {
  89. right: 25%;
  90. }
  91. .col-xs-pull-4 {
  92. right: 33.33333%;
  93. }
  94. .col-xs-pull-5 {
  95. right: 41.66667%;
  96. }
  97. .col-xs-pull-6 {
  98. right: 50%;
  99. }
  100. .col-xs-pull-7 {
  101. right: 58.33333%;
  102. }
  103. .col-xs-pull-8 {
  104. right: 66.66667%;
  105. }
  106. .col-xs-pull-9 {
  107. right: 75%;
  108. }
  109. .col-xs-pull-10 {
  110. right: 83.33333%;
  111. }
  112. .col-xs-pull-11 {
  113. right: 91.66667%;
  114. }
  115. .col-xs-pull-12 {
  116. right: 100%;
  117. }
  118. .col-xs-push-0 {
  119. left: auto;
  120. }
  121. .col-xs-push-1 {
  122. left: 8.33333%;
  123. }
  124. .col-xs-push-2 {
  125. left: 16.66667%;
  126. }
  127. .col-xs-push-3 {
  128. left: 25%;
  129. }
  130. .col-xs-push-4 {
  131. left: 33.33333%;
  132. }
  133. .col-xs-push-5 {
  134. left: 41.66667%;
  135. }
  136. .col-xs-push-6 {
  137. left: 50%;
  138. }
  139. .col-xs-push-7 {
  140. left: 58.33333%;
  141. }
  142. .col-xs-push-8 {
  143. left: 66.66667%;
  144. }
  145. .col-xs-push-9 {
  146. left: 75%;
  147. }
  148. .col-xs-push-10 {
  149. left: 83.33333%;
  150. }
  151. .col-xs-push-11 {
  152. left: 91.66667%;
  153. }
  154. .col-xs-push-12 {
  155. left: 100%;
  156. }
  157. .col-xs-offset-0 {
  158. margin-left: 0%;
  159. }
  160. .col-xs-offset-1 {
  161. margin-left: 8.33333%;
  162. }
  163. .col-xs-offset-2 {
  164. margin-left: 16.66667%;
  165. }
  166. .col-xs-offset-3 {
  167. margin-left: 25%;
  168. }
  169. .col-xs-offset-4 {
  170. margin-left: 33.33333%;
  171. }
  172. .col-xs-offset-5 {
  173. margin-left: 41.66667%;
  174. }
  175. .col-xs-offset-6 {
  176. margin-left: 50%;
  177. }
  178. .col-xs-offset-7 {
  179. margin-left: 58.33333%;
  180. }
  181. .col-xs-offset-8 {
  182. margin-left: 66.66667%;
  183. }
  184. .col-xs-offset-9 {
  185. margin-left: 75%;
  186. }
  187. .col-xs-offset-10 {
  188. margin-left: 83.33333%;
  189. }
  190. .col-xs-offset-11 {
  191. margin-left: 91.66667%;
  192. }
  193. .col-xs-offset-12 {
  194. margin-left: 100%;
  195. }
  196. .img-fluid {
  197. display: block;
  198. max-width: 100%;
  199. height: auto;
  200. }
  201. .img-rounded {
  202. border-radius: 0.3rem;
  203. }
  204. .img-thumbnail {
  205. padding: 0.25rem;
  206. line-height: 1.5;
  207. background-color: #fff;
  208. border: 1px solid #ddd;
  209. border-radius: 0.25rem;
  210. transition: all .2s ease-in-out;
  211. display: inline-block;
  212. max-width: 100%;
  213. height: auto;
  214. }
  215. .img-circle {
  216. border-radius: 50%;
  217. }
  218. /*! normalize.css v4.2.0 | MIT License | github.com/necolas/normalize.css */
  219. /**
  220. * 1. Change the default font family in all browsers (opinionated).
  221. * 2. Correct the line height in all browsers.
  222. * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
  223. */
  224. /* Document
  225. ========================================================================== */
  226. html {
  227. font-family: sans-serif;
  228. /* 1 */
  229. line-height: 1.15;
  230. /* 2 */
  231. -ms-text-size-adjust: 100%;
  232. /* 3 */
  233. -webkit-text-size-adjust: 100%;
  234. /* 3 */
  235. }
  236. /* Sections
  237. ========================================================================== */
  238. /**
  239. * Remove the margin in all browsers (opinionated).
  240. */
  241. body {
  242. margin: 0;
  243. }
  244. /**
  245. * Add the correct display in IE 9-.
  246. */
  247. article,
  248. aside,
  249. footer,
  250. header,
  251. nav,
  252. section {
  253. display: block;
  254. }
  255. /**
  256. * Correct the font size and margin on `h1` elements within `section` and
  257. * `article` contexts in Chrome, Firefox, and Safari.
  258. */
  259. h1 {
  260. font-size: 2em;
  261. margin: 0.67em 0;
  262. }
  263. /* Grouping content
  264. ========================================================================== */
  265. /**
  266. * Add the correct display in IE 9-.
  267. * 1. Add the correct display in IE.
  268. */
  269. figcaption,
  270. figure,
  271. main {
  272. /* 1 */
  273. display: block;
  274. }
  275. /**
  276. * Add the correct margin in IE 8.
  277. */
  278. figure {
  279. margin: 1em 40px;
  280. }
  281. /**
  282. * 1. Add the correct box sizing in Firefox.
  283. * 2. Show the overflow in Edge and IE.
  284. */
  285. hr {
  286. box-sizing: content-box;
  287. /* 1 */
  288. height: 0;
  289. /* 1 */
  290. overflow: visible;
  291. /* 2 */
  292. }
  293. /**
  294. * 1. Correct the inheritance and scaling of font size in all browsers.
  295. * 2. Correct the odd `em` font sizing in all browsers.
  296. */
  297. pre {
  298. font-family: monospace, monospace;
  299. /* 1 */
  300. font-size: 1em;
  301. /* 2 */
  302. }
  303. /* Text-level semantics
  304. ========================================================================== */
  305. /**
  306. * 1. Remove the gray background on active links in IE 10.
  307. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
  308. */
  309. a {
  310. background-color: transparent;
  311. /* 1 */
  312. -webkit-text-decoration-skip: objects;
  313. /* 2 */
  314. }
  315. /**
  316. * Remove the outline on focused links when they are also active or hovered
  317. * in all browsers (opinionated).
  318. */
  319. a:active,
  320. a:hover {
  321. outline-width: 0;
  322. }
  323. /**
  324. * 1. Remove the bottom border in Firefox 39-.
  325. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  326. */
  327. abbr[title] {
  328. border-bottom: none;
  329. /* 1 */
  330. text-decoration: underline;
  331. /* 2 */
  332. -webkit-text-decoration: underline dotted;
  333. text-decoration: underline dotted;
  334. /* 2 */
  335. }
  336. /**
  337. * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
  338. */
  339. b,
  340. strong {
  341. font-weight: inherit;
  342. }
  343. /**
  344. * Add the correct font weight in Chrome, Edge, and Safari.
  345. */
  346. b,
  347. strong {
  348. font-weight: bolder;
  349. }
  350. /**
  351. * 1. Correct the inheritance and scaling of font size in all browsers.
  352. * 2. Correct the odd `em` font sizing in all browsers.
  353. */
  354. code,
  355. kbd,
  356. samp {
  357. font-family: monospace, monospace;
  358. /* 1 */
  359. font-size: 1em;
  360. /* 2 */
  361. }
  362. /**
  363. * Add the correct font style in Android 4.3-.
  364. */
  365. dfn {
  366. font-style: italic;
  367. }
  368. /**
  369. * Add the correct background and color in IE 9-.
  370. */
  371. mark {
  372. background-color: #ff0;
  373. color: #000;
  374. }
  375. /**
  376. * Add the correct font size in all browsers.
  377. */
  378. small {
  379. font-size: 80%;
  380. }
  381. /**
  382. * Prevent `sub` and `sup` elements from affecting the line height in
  383. * all browsers.
  384. */
  385. sub,
  386. sup {
  387. font-size: 75%;
  388. line-height: 0;
  389. position: relative;
  390. vertical-align: baseline;
  391. }
  392. sub {
  393. bottom: -0.25em;
  394. }
  395. sup {
  396. top: -0.5em;
  397. }
  398. /* Embedded content
  399. ========================================================================== */
  400. /**
  401. * Add the correct display in IE 9-.
  402. */
  403. audio,
  404. video {
  405. display: inline-block;
  406. }
  407. /**
  408. * Add the correct display in iOS 4-7.
  409. */
  410. audio:not([controls]) {
  411. display: none;
  412. height: 0;
  413. }
  414. /**
  415. * Remove the border on images inside links in IE 10-.
  416. */
  417. img {
  418. border-style: none;
  419. }
  420. /**
  421. * Hide the overflow in IE.
  422. */
  423. svg:not(:root) {
  424. overflow: hidden;
  425. }
  426. /* Forms
  427. ========================================================================== */
  428. /**
  429. * 1. Change the font styles in all browsers (opinionated).
  430. * 2. Remove the margin in Firefox and Safari.
  431. */
  432. button,
  433. input,
  434. optgroup,
  435. select,
  436. textarea {
  437. font-family: sans-serif;
  438. /* 1 */
  439. font-size: 100%;
  440. /* 1 */
  441. line-height: 1.15;
  442. /* 1 */
  443. margin: 0;
  444. /* 2 */
  445. }
  446. /**
  447. * Show the overflow in IE.
  448. * 1. Show the overflow in Edge.
  449. */
  450. button,
  451. input {
  452. /* 1 */
  453. overflow: visible;
  454. }
  455. /**
  456. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  457. * 1. Remove the inheritance of text transform in Firefox.
  458. */
  459. button,
  460. select {
  461. /* 1 */
  462. text-transform: none;
  463. }
  464. /**
  465. * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
  466. * controls in Android 4.
  467. * 2. Correct the inability to style clickable types in iOS and Safari.
  468. */
  469. button,
  470. html [type="button"],
  471. [type="reset"],
  472. [type="submit"] {
  473. -webkit-appearance: button;
  474. /* 2 */
  475. }
  476. /**
  477. * Remove the inner border and padding in Firefox.
  478. */
  479. button::-moz-focus-inner,
  480. [type="button"]::-moz-focus-inner,
  481. [type="reset"]::-moz-focus-inner,
  482. [type="submit"]::-moz-focus-inner {
  483. border-style: none;
  484. padding: 0;
  485. }
  486. /**
  487. * Restore the focus styles unset by the previous rule.
  488. */
  489. button:-moz-focusring,
  490. [type="button"]:-moz-focusring,
  491. [type="reset"]:-moz-focusring,
  492. [type="submit"]:-moz-focusring {
  493. outline: 1px dotted ButtonText;
  494. }
  495. /**
  496. * Change the border, margin, and padding in all browsers (opinionated).
  497. */
  498. fieldset {
  499. border: 1px solid #c0c0c0;
  500. margin: 0 2px;
  501. padding: 0.35em 0.625em 0.75em;
  502. }
  503. /**
  504. * 1. Correct the text wrapping in Edge and IE.
  505. * 2. Correct the color inheritance from `fieldset` elements in IE.
  506. * 3. Remove the padding so developers are not caught out when they zero out
  507. * `fieldset` elements in all browsers.
  508. */
  509. legend {
  510. box-sizing: border-box;
  511. /* 1 */
  512. color: inherit;
  513. /* 2 */
  514. display: table;
  515. /* 1 */
  516. max-width: 100%;
  517. /* 1 */
  518. padding: 0;
  519. /* 3 */
  520. white-space: normal;
  521. /* 1 */
  522. }
  523. /**
  524. * 1. Add the correct display in IE 9-.
  525. * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
  526. */
  527. progress {
  528. display: inline-block;
  529. /* 1 */
  530. vertical-align: baseline;
  531. /* 2 */
  532. }
  533. /**
  534. * Remove the default vertical scrollbar in IE.
  535. */
  536. textarea {
  537. overflow: auto;
  538. }
  539. /**
  540. * 1. Add the correct box sizing in IE 10-.
  541. * 2. Remove the padding in IE 10-.
  542. */
  543. [type="checkbox"],
  544. [type="radio"] {
  545. box-sizing: border-box;
  546. /* 1 */
  547. padding: 0;
  548. /* 2 */
  549. }
  550. /**
  551. * Correct the cursor style of increment and decrement buttons in Chrome.
  552. */
  553. [type="number"]::-webkit-inner-spin-button,
  554. [type="number"]::-webkit-outer-spin-button {
  555. height: auto;
  556. }
  557. /**
  558. * 1. Correct the odd appearance in Chrome and Safari.
  559. * 2. Correct the outline style in Safari.
  560. */
  561. [type="search"] {
  562. -webkit-appearance: textfield;
  563. /* 1 */
  564. outline-offset: -2px;
  565. /* 2 */
  566. }
  567. /**
  568. * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
  569. */
  570. [type="search"]::-webkit-search-cancel-button,
  571. [type="search"]::-webkit-search-decoration {
  572. -webkit-appearance: none;
  573. }
  574. /**
  575. * 1. Correct the inability to style clickable types in iOS and Safari.
  576. * 2. Change font properties to `inherit` in Safari.
  577. */
  578. ::-webkit-file-upload-button {
  579. -webkit-appearance: button;
  580. /* 1 */
  581. font: inherit;
  582. /* 2 */
  583. }
  584. /* Interactive
  585. ========================================================================== */
  586. /*
  587. * Add the correct display in IE 9-.
  588. * 1. Add the correct display in Edge, IE, and Firefox.
  589. */
  590. details,
  591. menu {
  592. display: block;
  593. }
  594. /*
  595. * Add the correct display in all browsers.
  596. */
  597. summary {
  598. display: list-item;
  599. }
  600. /* Scripting
  601. ========================================================================== */
  602. /**
  603. * Add the correct display in IE 9-.
  604. */
  605. canvas {
  606. display: inline-block;
  607. }
  608. /**
  609. * Add the correct display in IE.
  610. */
  611. template {
  612. display: none;
  613. }
  614. /* Hidden
  615. ========================================================================== */
  616. /**
  617. * Add the correct display in IE 10-.
  618. */
  619. [hidden] {
  620. display: none;
  621. }
  622. /* List
  623. ========================================================================== */
  624. ul,
  625. ol {
  626. margin: 0;
  627. padding: 0;
  628. list-style: none;
  629. }
  630. a:hover {
  631. color: #F26522;
  632. text-decoration: none;
  633. }
  634. img {
  635. max-width: 100%;
  636. }
  637. body {
  638. font-family: 'Source Sans Pro', sans-serif;
  639. font-weight: 300;
  640. }
  641. a {
  642. text-decoration: none;
  643. transition: all 0.5s;
  644. }
  645. input {
  646. outline: none !important;
  647. }
  648. select {
  649. outline: none;
  650. }
  651. body {
  652. overflow-x: hidden;
  653. }
  654. .caret {
  655. display: inline-block;
  656. width: 0;
  657. height: 0;
  658. margin-left: 2px;
  659. vertical-align: middle;
  660. border-top: 4px solid;
  661. border-right: 4px solid transparent;
  662. border-left: 4px solid transparent;
  663. }
  664. * {
  665. font-weight: 400;
  666. }
  667. .title-primary {
  668. position: relative;
  669. font-size: 30px;
  670. line-height: 1.2;
  671. color: #272c59;
  672. font-weight: 600;
  673. margin-top: 0;
  674. }
  675. .title-primary:after {
  676. display: block;
  677. width: 116px;
  678. height: 17px;
  679. content: '';
  680. background-image: url(../img/decor.png);
  681. background-position: center center;
  682. background-size: cover;
  683. position: absolute;
  684. top: calc(100% + 20px);
  685. left: 0;
  686. z-index: 1;
  687. }
  688. .title-primary:before {
  689. display: block;
  690. content: '';
  691. position: absolute;
  692. max-width: 400px;
  693. width: 100%;
  694. height: 1px;
  695. background-color: #F26522;
  696. top: calc(100% + 28px);
  697. left: 0;
  698. z-index: 0;
  699. }
  700. .footer {
  701. padding: 50px 0;
  702. background-color: #F26522;
  703. }
  704. .footer .footer-logo {
  705. text-align: center;
  706. padding-bottom: 30px;
  707. border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  708. }
  709. .footer .title-primary {
  710. font-size: 20px;
  711. margin-top: 30px;
  712. color: #fff;
  713. text-transform: uppercase;
  714. }
  715. .footer .title-primary:before {
  716. background-color: rgba(255, 255, 255, 0.3);
  717. }
  718. .footer .wrap-most-user {
  719. text-align: left;
  720. margin-top: 80px;
  721. }
  722. .footer .wrap-most-user img {
  723. width: 108px;
  724. height: 108px;
  725. border-radius: 10px;
  726. margin: 0 5px 5px 0;
  727. }
  728. .footer .usefull-link {
  729. margin-top: 80px;
  730. }
  731. .footer .usefull-link i {
  732. margin-right: 5px;
  733. }
  734. .footer .usefull-link a {
  735. color: #fff;
  736. font-size: 17px;
  737. display: block;
  738. margin-bottom: 20px;
  739. }
  740. .footer .usefull-link a:hover span {
  741. text-decoration: underline;
  742. }
  743. .footer .language {
  744. margin-top: 80px;
  745. }
  746. .footer .language img {
  747. display: inline-block;
  748. width: 80px;
  749. border-radius: 10px;
  750. margin-right: 10px;
  751. }
  752. .footer .language p {
  753. color: #fff;
  754. }
  755. .menu-toggle {
  756. display: inline-block;
  757. margin-left: -15px;
  758. outline: none;
  759. float: right;
  760. }
  761. .menu-toggle svg {
  762. cursor: pointer;
  763. display: inline-block;
  764. height: 60px;
  765. transform: translate3d(0, 0, 0);
  766. width: 50px;
  767. }
  768. .menu-toggle path {
  769. fill: none;
  770. stroke: #fff;
  771. stroke-dashoffset: 0;
  772. stroke-linecap: round;
  773. stroke-width: 40px;
  774. 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);
  775. }
  776. .menu-toggle.is-active path#middle {
  777. stroke-dasharray: 1px 220px;
  778. stroke-dashoffset: -115px;
  779. }
  780. .menu-toggle.is-active path#top, .menu-toggle.is-active path#bottom {
  781. stroke-dashoffset: -650px;
  782. }
  783. .menu-toggle path#top, .menu-toggle path#bottom {
  784. stroke-dasharray: 240px 950px;
  785. }
  786. body {
  787. overflow-x: hidden;
  788. }
  789. p {
  790. line-height: 1.3;
  791. }
  792. .login-left {
  793. color: #fff;
  794. }
  795. .breadcrumb {
  796. width: -webkit-max-content;
  797. width: -moz-max-content;
  798. width: max-content;
  799. padding: 20px;
  800. border-radius: 5px 5px 0 0;
  801. background-color: #fff;
  802. }
  803. .breadcrumb i {
  804. margin: 0 5px;
  805. }
  806. .breadcrumb a {
  807. color: #333;
  808. }
  809. .breadcrumb a:hover {
  810. color: #F26522;
  811. }
  812. body .header {
  813. background-color: #F26522;
  814. }
  815. body .header .login {
  816. text-align: right;
  817. padding: 15px 0;
  818. }
  819. body .header .login a {
  820. color: #fff;
  821. font-size: 14px;
  822. font-weight: 600;
  823. }
  824. body .header .login i {
  825. margin-right: 5px;
  826. }
  827. body .header .login .menu-login-success {
  828. display: none;
  829. }
  830. body .header .login.login-success .menu-login-success {
  831. display: block;
  832. }
  833. body .header .login.login-success .menu-login-success div {
  834. display: inline-block;
  835. margin: 0 8px;
  836. }
  837. body .header .login.login-success .menu-login-success div:last-child {
  838. margin-right: 0;
  839. }
  840. body .header .login.login-success .menu-login {
  841. /*//display: none;*/
  842. }
  843. .button {
  844. background: linear-gradient(to right, yellow -30%, #F26522 100%);
  845. /*background: linear-gradient(to bottom, #80C200 0%, #B7EB2B 100%) color: #fff !important;*/
  846. font-size: 14px;
  847. font-weight: 600;
  848. border-radius: 20px;
  849. /* padding: 14px 30px; */
  850. margin: 20px auto;
  851. display: block;
  852. /* max-width: 200px; */
  853. text-align: center;
  854. transition: all 0.5s;
  855. height: 45px;
  856. padding: 12px;
  857. color: white;
  858. }
  859. .button:hover {
  860. background-color: #F26522;
  861. }
  862. .slick-arrow {
  863. display: inline-block;
  864. width: 40px;
  865. height: 40px;
  866. background-color: #F26522;
  867. border: none;
  868. border-radius: 100%;
  869. font-size: 0;
  870. cursor: pointer;
  871. outline: none;
  872. transition: all 0.5s;
  873. }
  874. .slick-arrow:hover {
  875. background-color: #272c59;
  876. }
  877. .slick-arrow.slick-prev:after {
  878. content: url(../img/arrow.png);
  879. transform: rotate(90deg) translateY(1px);
  880. display: block;
  881. }
  882. .slick-arrow.slick-next:after {
  883. content: url(../img/arrow.png);
  884. transform: rotate(-90deg) translateY(1px);
  885. display: block;
  886. }
  887. body.homepage .header {
  888. background-image: url(../img/banner.png);
  889. background-position: center center;
  890. background-repeat: repeat;
  891. background-size: cover;
  892. height: 950px;
  893. background-color: transparent !important;
  894. padding-bottom: 30px;
  895. }
  896. body.homepage .header .logo-menu {
  897. margin: 0;
  898. }
  899. body.homepage > .wrap-content {
  900. margin-top: -870px;
  901. }
  902. .logo-menu {
  903. margin-bottom: 20px;
  904. }
  905. .logo-menu img {
  906. display: inline-block;
  907. max-width: 200px;
  908. transform: translateY(20px);
  909. }
  910. .logo-menu .menu {
  911. background-color: #282c59;
  912. border-radius: 10px;
  913. display: inline-block;
  914. width: calc(100% - 300px);
  915. height: 70px;
  916. padding: 0 20px;
  917. float: right;
  918. }
  919. .logo-menu .menu li {
  920. position: relative;
  921. display: inline-block;
  922. line-height: 70px;
  923. padding: 0 20px;
  924. }
  925. .logo-menu .menu li:after {
  926. display: block;
  927. content: '';
  928. width: 2px;
  929. height: 2px;
  930. position: absolute;
  931. top: 50%;
  932. background-color: #fff;
  933. right: 0;
  934. transform: translateY(-50%);
  935. }
  936. .logo-menu .menu li a {
  937. color: #a3a8d9;
  938. font-weight: 600;
  939. transition: all 0.5s;
  940. }
  941. .logo-menu .menu li a.active, .logo-menu .menu li a:hover {
  942. color: #fff;
  943. }
  944. .logo-menu .menu i {
  945. color: #fff;
  946. font-weight: 500;
  947. margin-left: 20px;
  948. }
  949. .logo-menu .menu input {
  950. width: 300px;
  951. height: 33px;
  952. line-height: 38px;
  953. border-radius: 10px;
  954. padding: 0 20px;
  955. border: none;
  956. margin: 0 10px;
  957. font-weight: 400;
  958. font-size: 15px;
  959. }
  960. .form {
  961. position: relative;
  962. }
  963. .form .form-wrapper {
  964. width: 400px;
  965. display: inline-block;
  966. vertical-align: top;
  967. margin-top: 50px;
  968. background-color: #fff;
  969. border-radius: 10px;
  970. padding: 50px 30px;
  971. text-align: center;
  972. position: relative;
  973. z-index: 1;
  974. }
  975. .form .heading {
  976. position: relative;
  977. color: #272c59;
  978. margin-bottom: 25px;
  979. }
  980. .form .heading h3, .form .heading h4 {
  981. margin: 0;
  982. font-size: 30px;
  983. font-weight: 400;
  984. }
  985. .form .heading h3 span, .form .heading h4 span {
  986. color: #F26522;
  987. }
  988. .form .heading h4 {
  989. color: #272c59;
  990. }
  991. .form .title {
  992. font-size: 16px;
  993. font-weight: 600;
  994. text-align: left;
  995. color: #272c59;
  996. margin: 10px 0;
  997. }
  998. .form .nice-select {
  999. width: 100%;
  1000. margin-bottom: 15px;
  1001. }
  1002. .form .nice-select .list {
  1003. width: 100%;
  1004. }
  1005. .form .three-input {
  1006. display: grid;
  1007. grid-gap: 15px;
  1008. grid-template-columns: repeat(3, 1fr);
  1009. padding: 0;
  1010. }
  1011. .form .two-input input {
  1012. background-color: #fff;
  1013. border-radius: 5px;
  1014. border: solid 1px #e8e8e8;
  1015. box-sizing: border-box;
  1016. clear: both;
  1017. cursor: pointer;
  1018. display: inline-block;
  1019. width: calc(50% - 10px);
  1020. margin-bottom: 15px;
  1021. font-family: inherit;
  1022. font-size: 14px;
  1023. font-weight: normal;
  1024. height: 42px;
  1025. line-height: 40px;
  1026. outline: none;
  1027. padding-left: 18px;
  1028. padding-right: 30px;
  1029. position: relative;
  1030. text-align: left !important;
  1031. }
  1032. .form .two-input input:first-child {
  1033. transform: translateX(-8px);
  1034. }
  1035. .form .two-input input:last-child {
  1036. transform: translateX(8px);
  1037. }
  1038. .form .desc {
  1039. font-size: 14px;
  1040. line-height: 1.5;
  1041. margin: 0;
  1042. }
  1043. .form .desc a {
  1044. color: #F26522 !important;
  1045. text-decoration: underline;
  1046. }
  1047. .form > img {
  1048. float: right;
  1049. max-width: 750px;
  1050. width: 100%;
  1051. }
  1052. .how-it-works {
  1053. margin-top: 90px;
  1054. }
  1055. .how-it-works .sub-title {
  1056. margin-top: 70px;
  1057. margin-bottom: 30px;
  1058. font-weight: 400;
  1059. }
  1060. .how-it-works .block-icon {
  1061. text-align: center;
  1062. max-width: 600px;
  1063. margin: 0 auto 20px auto;
  1064. font-size: 0;
  1065. }
  1066. .how-it-works .icon,
  1067. .how-it-works .wrap-content {
  1068. display: inline-block;
  1069. vertical-align: top;
  1070. }
  1071. .how-it-works .icon {
  1072. position: relative;
  1073. width: 60px;
  1074. height: 60px;
  1075. border-radius: 100%;
  1076. background-color: #F26522;
  1077. }
  1078. .how-it-works .icon i {
  1079. font-size: 28px;
  1080. color: #fff;
  1081. position: absolute;
  1082. top: 50%;
  1083. left: 50%;
  1084. transform: translate(-50%, -50%);
  1085. }
  1086. .how-it-works .wrap-content {
  1087. display: inline-block;
  1088. width: calc(100% - 80px);
  1089. margin-left: 20px;
  1090. text-align: left;
  1091. }
  1092. .how-it-works .wrap-content .title {
  1093. font-size: 22px;
  1094. color: #F26522;
  1095. }
  1096. .how-it-works .wrap-content p {
  1097. font-size: 15px;
  1098. line-height: 1.4;
  1099. color: #272c59;
  1100. }
  1101. .love-tips {
  1102. padding: 50px 0;
  1103. background-color: #f9f9f9;
  1104. }
  1105. .love-tips .col-md-12 {
  1106. margin-bottom: 30px;
  1107. }
  1108. .love-tips .love-tip p {
  1109. text-align: left;
  1110. line-height: 1.4;
  1111. }
  1112. .recent-members {
  1113. padding: 50px 0;
  1114. }
  1115. .recent-members .wrap-member {
  1116. position: relative;
  1117. padding-top: 50px;
  1118. }
  1119. .recent-members .wrap-image,
  1120. .recent-members .wrap-image img {
  1121. border-radius: 10px 10px 0 0;
  1122. }
  1123. .recent-members .wrap-image {
  1124. position: relative;
  1125. overflow: hidden;
  1126. }
  1127. .recent-members .wrap-image .meta {
  1128. position: absolute;
  1129. bottom: 10px;
  1130. left: 10px;
  1131. }
  1132. .recent-members .wrap-image .meta .gallery,
  1133. .recent-members .wrap-image .meta .email,
  1134. .recent-members .wrap-image .meta .love,
  1135. .recent-members .wrap-image .meta .gift {
  1136. position: relative;
  1137. display: inline-block;
  1138. color: #fff;
  1139. border-radius: 20px;
  1140. background: rgba(31, 31, 31, 0.6);
  1141. padding: 4px 15px;
  1142. margin: 0 2px;
  1143. z-index: 1;
  1144. }
  1145. .recent-members .wrap-image .meta .gallery i,
  1146. .recent-members .wrap-image .meta .email i,
  1147. .recent-members .wrap-image .meta .love i,
  1148. .recent-members .wrap-image .meta .gift i {
  1149. color: #fff;
  1150. }
  1151. .recent-members .wrap-image:after {
  1152. display: block;
  1153. position: absolute;
  1154. content: '';
  1155. width: 100%;
  1156. height: 100%;
  1157. border-radius: 10px 10px 0 0;
  1158. top: 0;
  1159. left: 0;
  1160. background-color: #F26522;
  1161. opacity: 0;
  1162. visibility: hidden;
  1163. transition: all 0.5s;
  1164. }
  1165. .recent-members .wrap-content {
  1166. position: relative;
  1167. background-color: #f9f9f9;
  1168. padding: 20px;
  1169. border-radius: 0 0 10px 10px;
  1170. margin-top: -2px;
  1171. z-index: 2;
  1172. }
  1173. .recent-members .wrap-content .title {
  1174. position: relative;
  1175. font-size: 22px;
  1176. }
  1177. .recent-members .wrap-content .title a {
  1178. color: #F26522;
  1179. }
  1180. .recent-members .wrap-content .title:after {
  1181. display: block;
  1182. content: '';
  1183. position: absolute;
  1184. top: 50%;
  1185. right: 0;
  1186. width: 10px;
  1187. height: 10px;
  1188. border-radius: 100%;
  1189. transform: translateY(-50%);
  1190. }
  1191. .recent-members .wrap-content .title:after {
  1192. background-color: #ccc;
  1193. }
  1194. .recent-members .wrap-content.active .title:after {
  1195. background-color: #4fc401;
  1196. }
  1197. .recent-members .member {
  1198. outline: none;
  1199. }
  1200. .recent-members .member:hover .wrap-image:after {
  1201. opacity: 0.5;
  1202. visibility: visible;
  1203. }
  1204. .recent-members .slick-arrow {
  1205. display: inline-block;
  1206. position: absolute;
  1207. top: -5%;
  1208. right: 80px;
  1209. }
  1210. .recent-members .slick-prev {
  1211. right: 70px;
  1212. }
  1213. .recent-members .slick-next {
  1214. right: 15px;
  1215. }
  1216. .wrap-login,
  1217. .wrap-register,
  1218. .wrap-register-subcribe {
  1219. max-width: 800px;
  1220. width: 100%;
  1221. position: fixed;
  1222. padding: 50px;
  1223. left: 50%;
  1224. top: 50%;
  1225. opacity: 0;
  1226. visibility: hidden;
  1227. background-color: #fff;
  1228. transform: translate(-50%, -20%);
  1229. box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.2);
  1230. border-radius: 15px;
  1231. transition: all 0.5s;
  1232. z-index: 999;
  1233. }
  1234. .wrap-login h3,
  1235. .wrap-register h3,
  1236. .wrap-register-subcribe h3 {
  1237. font-weight: 600;
  1238. border-bottom: 1px solid #eee;
  1239. padding-bottom: 10px;
  1240. }
  1241. .wrap-login h3 span,
  1242. .wrap-register h3 span,
  1243. .wrap-register-subcribe h3 span {
  1244. color: #F26522;
  1245. }
  1246. .wrap-login .col-lg-5 img,
  1247. .wrap-register .col-lg-5 img,
  1248. .wrap-register-subcribe .col-lg-5 img {
  1249. margin-top: 30px;
  1250. }
  1251. .wrap-login .wrap-confirm,
  1252. .wrap-register .wrap-confirm,
  1253. .wrap-register-subcribe .wrap-confirm {
  1254. margin: 5px 0;
  1255. }
  1256. .wrap-login .title,
  1257. .wrap-login .get-otp,
  1258. .wrap-register .title,
  1259. .wrap-register .get-otp,
  1260. .wrap-register-subcribe .title,
  1261. .wrap-register-subcribe .get-otp {
  1262. font-size: 16px;
  1263. font-weight: 600;
  1264. text-align: left;
  1265. color: #272c59;
  1266. margin: 10px 0;
  1267. display: block;
  1268. }
  1269. .wrap-login .get-otp,
  1270. .wrap-register .get-otp,
  1271. .wrap-register-subcribe .get-otp {
  1272. color: #F26522 !important;
  1273. }
  1274. .wrap-login input,
  1275. .wrap-register input,
  1276. .wrap-register-subcribe input {
  1277. background-color: #fff;
  1278. border-radius: 5px;
  1279. border: solid 1px #e8e8e8;
  1280. box-sizing: border-box;
  1281. clear: both;
  1282. cursor: pointer;
  1283. display: inline-block;
  1284. width: 100%;
  1285. font-family: inherit;
  1286. font-size: 14px;
  1287. font-weight: normal;
  1288. height: 42px;
  1289. line-height: 40px;
  1290. outline: none;
  1291. padding-left: 18px;
  1292. padding-right: 30px;
  1293. position: relative;
  1294. text-align: left !important;
  1295. }
  1296. .wrap-login .button,
  1297. .wrap-register .button,
  1298. .wrap-register-subcribe .button {
  1299. text-align: center;
  1300. }
  1301. .wrap-login .close-popup,
  1302. .wrap-register .close-popup,
  1303. .wrap-register-subcribe .close-popup {
  1304. position: absolute;
  1305. top: 20px;
  1306. right: 20px;
  1307. }
  1308. .wrap-login .close-popup i,
  1309. .wrap-register .close-popup i,
  1310. .wrap-register-subcribe .close-popup i {
  1311. font-size: 25px;
  1312. color: #333;
  1313. }
  1314. .wrap-register .login-now {
  1315. color: #F26522;
  1316. transition: all 0.5s;
  1317. }
  1318. .wrap-register .login-now:hover {
  1319. text-decoration: underline;
  1320. }
  1321. .wrap-register .service,
  1322. .wrap-register-subcribe .service {
  1323. font-size: 0;
  1324. position: relative;
  1325. min-height: 60px;
  1326. }
  1327. .wrap-register .service p,
  1328. .wrap-register-subcribe .service p {
  1329. display: inline-block;
  1330. vertical-align: middle;
  1331. font-size: 20px;
  1332. font-weight: 400;
  1333. margin: 10px 20px 10px 0;
  1334. }
  1335. .wrap-register .service p i,
  1336. .wrap-register-subcribe .service p i {
  1337. font-size: 20px;
  1338. color: #c61932;
  1339. }
  1340. .wrap-register .service .button-register,
  1341. .wrap-register-subcribe .service .button-register {
  1342. display: inline-block;
  1343. vertical-align: middle;
  1344. font-size: 16px;
  1345. padding: 7px 20px;
  1346. margin: 0;
  1347. }
  1348. .wrap-register .service .confirm-total,
  1349. .wrap-register-subcribe .service .confirm-total {
  1350. opacity: 0;
  1351. visibility: hidden;
  1352. }
  1353. .wrap-register .service .confirm,
  1354. .wrap-register-subcribe .service .confirm {
  1355. position: relative;
  1356. display: inline-block;
  1357. width: 48%;
  1358. margin-right: 8px !important;
  1359. margin-top: -50px;
  1360. opacity: 0;
  1361. visibility: hidden;
  1362. transition: all 0.5s;
  1363. }
  1364. .wrap-register .service .confirm .wrap-confirm,
  1365. .wrap-register-subcribe .service .confirm .wrap-confirm {
  1366. display: flex;
  1367. }
  1368. .wrap-register .service .confirm .button-confirm,
  1369. .wrap-register-subcribe .service .confirm .button-confirm {
  1370. font-size: 14px;
  1371. height: 42px;
  1372. line-height: 42px;
  1373. padding: 0 10px;
  1374. margin: 0;
  1375. border-radius: 0 5px 5px 0;
  1376. }
  1377. .wrap-register .service.input-fade-in .confirm,
  1378. .wrap-register .service.input-fade-in .confirm-total,
  1379. .wrap-register-subcribe .service.input-fade-in .confirm,
  1380. .wrap-register-subcribe .service.input-fade-in .confirm-total {
  1381. margin: 0;
  1382. opacity: 1;
  1383. visibility: visible;
  1384. }
  1385. .dialog-popup {
  1386. position: fixed;
  1387. top: 50%;
  1388. left: 50%;
  1389. display: flex;
  1390. border-radius: 15px;
  1391. overflow: hidden;
  1392. max-width: 800px;
  1393. width: 60%;
  1394. margin: 0 auto;
  1395. opacity: 0;
  1396. visibility: hidden;
  1397. transform: translate(-50%, -30%);
  1398. transition: all 0.5s;
  1399. z-index: 100;
  1400. }
  1401. .dialog-popup .close-popup {
  1402. position: absolute;
  1403. top: 20px;
  1404. right: 20px;
  1405. font-size: 20px;
  1406. color: #111;
  1407. z-index: 1;
  1408. }
  1409. .dialog-popup .user-img {
  1410. width: 40%;
  1411. background-position: center;
  1412. background-size: cover;
  1413. }
  1414. .dialog-popup .wrap-intro-user {
  1415. /*width: 60%;*/
  1416. background-color: #f6f6f6;
  1417. padding: 50px 30px;
  1418. }
  1419. .dialog-popup input {
  1420. width: calc(100% - 200px);
  1421. border: none;
  1422. padding: 10px 20px;
  1423. border-radius: 10px;
  1424. outline: none;
  1425. margin-bottom: 20px;
  1426. }
  1427. .dialog-popup textarea {
  1428. width: 90%;
  1429. border: none;
  1430. padding: 20px;
  1431. border-radius: 10px;
  1432. outline: none;
  1433. }
  1434. .dialog-popup .button {
  1435. text-align: center;
  1436. display: inline-block;
  1437. }
  1438. .chat-popup .wrap-intro-user {
  1439. background-color: #f6f6f6;
  1440. padding: 50px 30px;
  1441. }
  1442. body:after {
  1443. background-color: #000;
  1444. content: '';
  1445. height: 100%;
  1446. left: 0;
  1447. opacity: 0;
  1448. visibility: hidden;
  1449. position: fixed;
  1450. top: 0;
  1451. width: 100%;
  1452. z-index: 99;
  1453. transition: all 0.5s;
  1454. }
  1455. body.popup-active-login:after {
  1456. opacity: 0.8;
  1457. visibility: visible;
  1458. }
  1459. body.popup-active-login .wrap-login {
  1460. opacity: 1;
  1461. visibility: visible;
  1462. transform: translate(-50%, -50%);
  1463. }
  1464. body.popup-active-register:after {
  1465. opacity: 0.8;
  1466. visibility: visible;
  1467. }
  1468. body.popup-active-register .wrap-register {
  1469. opacity: 1;
  1470. visibility: visible;
  1471. transform: translate(-50%, -50%);
  1472. }
  1473. body.popup-active-register-subcribe:after {
  1474. opacity: 0.8;
  1475. visibility: visible;
  1476. }
  1477. body.popup-active-register-subcribe .wrap-register-subcribe {
  1478. opacity: 1;
  1479. visibility: visible;
  1480. transform: translate(-50%, -50%);
  1481. }
  1482. /*body.popup-chat:after {
  1483. opacity: 0.8;
  1484. visibility: visible;
  1485. }*/
  1486. body.popup-dialog:after {
  1487. opacity: 0.8;
  1488. visibility: visible;
  1489. }
  1490. /*body.popup-chat .popup-chat-active .dialog-popup {
  1491. opacity: 1;
  1492. visibility: visible;
  1493. transform: translate(-50%, -50%);
  1494. }*/
  1495. body.popup-dialog .dialog-popup-active {
  1496. opacity: 1;
  1497. visibility: visible;
  1498. transform: translate(-50%, -50%);
  1499. }
  1500. .article-love-tips {
  1501. font-size: 0;
  1502. border-bottom: 1px solid #ccc;
  1503. padding: 25px 15px;
  1504. }
  1505. .article-love-tips.first {
  1506. border-top: none;
  1507. }
  1508. .article-love-tips.last {
  1509. border-bottom: none;
  1510. }
  1511. .article-love-tips .article-love-tips-image,
  1512. .article-love-tips .article-love-tips-content {
  1513. display: inline-block;
  1514. vertical-align: middle;
  1515. }
  1516. .article-love-tips .article-love-tips-image {
  1517. width: 200px;
  1518. height: 200px;
  1519. border-radius: 100%;
  1520. margin-right: 30px;
  1521. background-size: cover;
  1522. background-position: center center;
  1523. }
  1524. .article-love-tips .article-love-tips-content {
  1525. width: calc(100% - 230px);
  1526. text-align: center;
  1527. }
  1528. .article-love-tips .article-love-tips-content h3 a {
  1529. color: #333;
  1530. font-size: 22px;
  1531. letter-spacing: 0.3px;
  1532. font-weight: 600;
  1533. margin-top: 0;
  1534. }
  1535. .article-love-tips .article-love-tips-content h3 a:hover {
  1536. color: #F26522;
  1537. }
  1538. .article-love-tips .article-love-tips-content p {
  1539. font-size: 16px;
  1540. line-height: 1.3;
  1541. font-weight: 400;
  1542. }
  1543. .article-love-tips .article-love-tips-content .date,
  1544. .article-love-tips .article-love-tips-content .comments {
  1545. font-size: 14px;
  1546. color: rgba(51, 51, 51, 0.7);
  1547. display: inline-block;
  1548. margin: 0 5px;
  1549. }
  1550. .page-404 .wrap-content {
  1551. padding: 100px 0;
  1552. }
  1553. .page-404 .wrap-content .title-primary {
  1554. font-size: 18px;
  1555. }
  1556. .page-404 .wrap-content .title {
  1557. margin: 80px 0 30px 0;
  1558. font-size: 60px;
  1559. color: #272c59;
  1560. }
  1561. .page-404 .wrap-content .button {
  1562. margin: 20px 0;
  1563. }
  1564. .page-love-tips-detail > .wrap-content {
  1565. padding: 100px 0;
  1566. }
  1567. .page-love-tips-detail .wrap-image-content .wrap-image {
  1568. display: inline-block;
  1569. vertical-align: top;
  1570. width: 250px;
  1571. margin-right: 20px;
  1572. position: relative;
  1573. }
  1574. .page-love-tips-detail .wrap-image-content .wrap-image .wrap-date {
  1575. position: absolute;
  1576. width: 100px;
  1577. height: 100px;
  1578. color: #fff;
  1579. background-color: #F26522;
  1580. top: -20px;
  1581. border-radius: 100%;
  1582. text-align: center;
  1583. }
  1584. .page-love-tips-detail .wrap-image-content .wrap-image .wrap-date .date-month {
  1585. position: absolute;
  1586. width: 100%;
  1587. height: 100%;
  1588. top: 50%;
  1589. transform: translateY(-30%);
  1590. }
  1591. .page-love-tips-detail .wrap-image-content .wrap-image .wrap-date .date {
  1592. font-weight: 700;
  1593. font-size: 30px;
  1594. }
  1595. .page-love-tips-detail .wrap-image-content .wrap-image .article-love-tips-image {
  1596. width: 220px;
  1597. height: 220px;
  1598. border-radius: 100%;
  1599. background-size: cover;
  1600. background-position: center center;
  1601. }
  1602. .page-love-tips-detail .wrap-image-content .wrap-content {
  1603. display: inline-block;
  1604. width: calc(100% - 280px);
  1605. vertical-align: top;
  1606. }
  1607. .page-love-tips-detail .wrap-image-content .wrap-content .title {
  1608. font-size: 30px;
  1609. font-weight: 600;
  1610. margin-bottom: 10px;
  1611. }
  1612. .page-love-tips-detail .wrap-image-content .wrap-content .meta {
  1613. color: rgba(31, 31, 31, 0.7);
  1614. margin-bottom: 20px;
  1615. }
  1616. .page-love-tips-detail .wrap-image-content .wrap-content .meta i {
  1617. color: #000;
  1618. font-weight: 600;
  1619. }
  1620. .page-love-tips-detail .wrap-quote {
  1621. border-left: 3px solid #F26522;
  1622. padding-left: 30px;
  1623. }
  1624. .page-love-tips-detail .wrap-quote .quote {
  1625. font-style: italic;
  1626. font-size: 20px;
  1627. margin-bottom: 20px;
  1628. }
  1629. .page-love-tips-detail .wrap-quote .author-image {
  1630. display: inline-block;
  1631. vertical-align: middle;
  1632. width: 80px;
  1633. height: 80px;
  1634. background-size: cover;
  1635. background-position: center;
  1636. border-radius: 100%;
  1637. }
  1638. .page-love-tips-detail .wrap-quote .author-content {
  1639. display: inline-block;
  1640. vertical-align: middle;
  1641. width: calc(100% - 130px);
  1642. margin-left: 20px;
  1643. }
  1644. .page-love-tips-detail .wrap-quote .name {
  1645. font-weight: 600;
  1646. margin-bottom: 7px;
  1647. }
  1648. .page-love-tips-detail .content-list i {
  1649. color: #F26522;
  1650. margin-right: 5px;
  1651. }
  1652. .page-love-tips-detail .content-list li {
  1653. margin-bottom: 7px;
  1654. }
  1655. .page-love-tips-detail .wrap-image-content.square {
  1656. margin: 20px 0;
  1657. }
  1658. .page-love-tips-detail .wrap-image-content.square br {
  1659. display: none;
  1660. }
  1661. .page-love-tips-detail .wrap-image-content.square .image-square {
  1662. width: 250px;
  1663. height: 300px;
  1664. background-position: center;
  1665. background-size: cover;
  1666. border-radius: 10px;
  1667. }
  1668. .page-love-tips-detail .wrap-author {
  1669. position: relative;
  1670. margin: 30px 0;
  1671. background-color: #f6f6f6;
  1672. padding: 20px;
  1673. border-radius: 10px;
  1674. }
  1675. .page-love-tips-detail .wrap-author .name {
  1676. display: inline-block;
  1677. font-weight: 600;
  1678. border-bottom: 1px solid #ccc;
  1679. padding-bottom: 10px;
  1680. }
  1681. .page-love-tips-detail .wrap-author .social {
  1682. position: absolute;
  1683. top: 20px;
  1684. right: 20px;
  1685. }
  1686. .page-love-tips-detail .wrap-author .social a {
  1687. color: #fff;
  1688. margin: 0 5px;
  1689. background-color: #272c59;
  1690. padding: 5px;
  1691. border-radius: 100%;
  1692. width: 20px;
  1693. height: 20px;
  1694. display: inline-block;
  1695. text-align: center;
  1696. }
  1697. .page-love-tips-detail .wrap-author .social a:hover {
  1698. background-color: #F26522;
  1699. }
  1700. .page-love-tips-detail .wrap-author .social a:first-child {
  1701. margin-left: 0;
  1702. }
  1703. .page-love-tips-detail .wrap-author .social a:last-child {
  1704. margin-right: 0;
  1705. }
  1706. .page-love-tips-detail .wrap-author .social a i {
  1707. font-size: 13px;
  1708. }
  1709. .page-love-tips-detail .wrap-author .author-image {
  1710. width: 100px;
  1711. height: 100px;
  1712. border-radius: 100%;
  1713. background-size: cover;
  1714. background-position: center;
  1715. display: inline-block;
  1716. vertical-align: top;
  1717. }
  1718. .page-love-tips-detail .wrap-author .author-content {
  1719. display: inline-block;
  1720. vertical-align: top;
  1721. margin-left: 30px;
  1722. width: calc(100% - 150px);
  1723. }
  1724. .page-love-tips-detail .row.comment-facebook {
  1725. margin-top: 50px;
  1726. }
  1727. .page-about-us .wrap-content {
  1728. padding: 100px 0;
  1729. }
  1730. .page-about-us .wrap-content .desc {
  1731. margin: 50px 0;
  1732. }
  1733. .page-about-us .row-accordion {
  1734. display: flex;
  1735. align-items: center;
  1736. }
  1737. .page-about-us .title-accordion {
  1738. position: relative;
  1739. background: #F26522;
  1740. padding: 25px;
  1741. border-radius: 10px;
  1742. margin-bottom: 10px;
  1743. }
  1744. .page-about-us .title-accordion:after {
  1745. content: url(../img/arrow.png);
  1746. transform: translateY(-50%);
  1747. display: inline-block;
  1748. position: absolute;
  1749. top: 50%;
  1750. right: 25px;
  1751. transition: all 0.5s;
  1752. }
  1753. .page-about-us .title-accordion.open {
  1754. margin: 0;
  1755. border-radius: 10px 10px 0 0;
  1756. }
  1757. .page-about-us .title-accordion.open:after {
  1758. transform: translateY(-50%) rotate(180deg);
  1759. }
  1760. .page-about-us .title-accordion a {
  1761. font-size: 17px;
  1762. font-weight: 600;
  1763. color: #fff;
  1764. position: absolute;
  1765. width: 100%;
  1766. height: 100%;
  1767. top: 0;
  1768. left: 25px;
  1769. line-height: 50px;
  1770. outline: none;
  1771. }
  1772. .page-about-us .content-accordion {
  1773. padding: 20px;
  1774. background-color: #f6f6f6;
  1775. border-radius: 0 0 10px 10px;
  1776. margin-bottom: 20px;
  1777. box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.2);
  1778. }
  1779. .page-about-us .col-img {
  1780. text-align: center;
  1781. }
  1782. .page-match-profile > .wrap-content {
  1783. padding: 100px 0;
  1784. }
  1785. .page-match-profile .recent-members {
  1786. padding: 0;
  1787. }
  1788. .page-match-profile .recent-members.loaded {
  1789. height: initial;
  1790. }
  1791. .page-match-profile .recent-members .wrap-member {
  1792. padding: 0;
  1793. }
  1794. .page-match-profile .recent-members .wrap-loadmore {
  1795. display: none;
  1796. }
  1797. .page-match-profile .recent-members .wrap-loadmore.loaded {
  1798. display: block;
  1799. }
  1800. .page-match-profile .recent-members .member {
  1801. margin-bottom: 20px;
  1802. }
  1803. .page-match-profile .recent-members .member .wrap-content {
  1804. transition: all 0.5s;
  1805. }
  1806. .page-match-profile .recent-members .member .wrap-content:hover {
  1807. box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.2);
  1808. }
  1809. .page-match-profile .recent-members .btn-loadmore {
  1810. text-align: center;
  1811. }
  1812. .page-match-profile .recent-members .btn-loadmore .button {
  1813. display: flex;
  1814. justify-content: center;
  1815. }
  1816. .page-match-profile-detail > .wrap-content {
  1817. padding: 100px 0;
  1818. }
  1819. .page-match-profile-detail .intro-user {
  1820. display: flex;
  1821. margin-bottom: 40px;
  1822. border-radius: 15px;
  1823. overflow: hidden;
  1824. }
  1825. .page-match-profile-detail .intro-user .user-img {
  1826. width: 40%;
  1827. background-position: center;
  1828. background-size: cover;
  1829. }
  1830. .page-match-profile-detail .intro-user .wrap-intro-user {
  1831. width: 60%;
  1832. background-color: #f6f6f6;
  1833. padding: 30px;
  1834. }
  1835. .page-match-profile-detail .intro-user .wrap-intro-user .name {
  1836. color: #272c59;
  1837. font-size: 25px;
  1838. font-weight: 600;
  1839. position: relative;
  1840. }
  1841. .page-match-profile-detail .intro-user .wrap-intro-user .name:before {
  1842. display: block;
  1843. content: '';
  1844. position: absolute;
  1845. background-color: #ccc;
  1846. top: 50%;
  1847. right: 0;
  1848. width: 10px;
  1849. height: 10px;
  1850. border-radius: 100%;
  1851. transform: translateY(-50%);
  1852. }
  1853. .page-match-profile-detail .intro-user .wrap-intro-user.active .name::before {
  1854. background-color: #4fc401;
  1855. }
  1856. .page-match-profile-detail .intro-user .wrap-intro-user .intro {
  1857. font-size: 18px;
  1858. line-height: 1.4;
  1859. }
  1860. .page-match-profile-detail .intro-user .wrap-intro-user textarea {
  1861. width: 90%;
  1862. border: none;
  1863. padding: 20px;
  1864. border-radius: 10px;
  1865. outline: none;
  1866. }
  1867. .page-match-profile-detail .intro-user .wrap-intro-user .button {
  1868. text-align: center;
  1869. display: inline-block;
  1870. }
  1871. .page-match-profile-detail .user-extra {
  1872. display: grid;
  1873. grid-gap: 30px;
  1874. grid-template-columns: repeat(3, 1fr);
  1875. padding: 0;
  1876. }
  1877. .page-match-profile-detail .user-extra .col-extra {
  1878. background-color: #f6f6f6;
  1879. border-radius: 15px;
  1880. padding: 30px 20px;
  1881. }
  1882. .page-match-profile-detail .user-extra .col-extra .title {
  1883. font-size: 18px;
  1884. color: #272c59;
  1885. font-weight: 600;
  1886. margin-bottom: 25px;
  1887. }
  1888. .page-match-profile-detail .user-extra .col-extra span {
  1889. color: #969696;
  1890. font-weight: 600;
  1891. }
  1892. .page-match-profile-detail .user-extra .col-extra p {
  1893. line-height: 1.4;
  1894. }
  1895. .page-match-profile-detail .user-extra .col-extra.about p {
  1896. margin-top: 0;
  1897. margin-bottom: 10px;
  1898. }
  1899. .page-match-profile-detail .user-extra .col-extra.favorite {
  1900. font-size: 0;
  1901. }
  1902. .page-match-profile-detail .user-extra .col-extra.favorite .icons {
  1903. display: inline-block;
  1904. width: 33.33%;
  1905. text-align: center;
  1906. }
  1907. .page-match-profile-detail .user-extra .col-extra.favorite .icons h5 {
  1908. font-size: 16px;
  1909. margin: 20px 0;
  1910. }
  1911. .user-gallery img {
  1912. border-radius: 10px !important;
  1913. }
  1914. .user-gallery a {
  1915. outline: none;
  1916. }
  1917. .user-gallery .user-gallery-bg {
  1918. position: relative;
  1919. width: 100%;
  1920. height: 250px;
  1921. border-radius: 10px;
  1922. background-position: center;
  1923. background-size: cover;
  1924. }
  1925. .user-gallery .user-gallery-bg:after {
  1926. position: absolute;
  1927. content: '\f06e';
  1928. font-family: 'FontAwesome';
  1929. font-size: 25px;
  1930. text-align: center;
  1931. line-height: 50px;
  1932. width: 50px;
  1933. height: 50px;
  1934. color: #fff;
  1935. border: 1px solid #fff;
  1936. border-radius: 100%;
  1937. top: 50%;
  1938. left: 50%;
  1939. opacity: 0;
  1940. visibility: hidden;
  1941. transform: translate(-50%, -30%);
  1942. transition: all 0.5s;
  1943. }
  1944. .user-gallery .user-gallery-bg:before {
  1945. display: block;
  1946. position: absolute;
  1947. content: '';
  1948. width: 100%;
  1949. height: 100%;
  1950. border-radius: 10px;
  1951. top: 0;
  1952. left: 0;
  1953. background-color: #F26522;
  1954. opacity: 0;
  1955. visibility: hidden;
  1956. transition: all 0.5s;
  1957. }
  1958. .user-gallery .user-gallery-bg:hover:before {
  1959. opacity: 0.7;
  1960. visibility: visible;
  1961. }
  1962. .user-gallery .user-gallery-bg:hover:after {
  1963. opacity: 1;
  1964. visibility: visible;
  1965. transform: translate(-50%, -50%);
  1966. }
  1967. .sidebar .section-widget {
  1968. background-color: #f6f6f6;
  1969. border-radius: 10px;
  1970. padding: 30px 20px;
  1971. margin-bottom: 30px;
  1972. }
  1973. .sidebar .section-widget.user-info {
  1974. text-align: center;
  1975. }
  1976. .sidebar .section-widget.user-info .welcome {
  1977. font-weight: 600;
  1978. font-size: 18px;
  1979. margin-bottom: 20px;
  1980. }
  1981. .sidebar .section-widget.searches .search-element {
  1982. transition: all 0.5s;
  1983. padding: 10px 20px;
  1984. margin: 0 -20px;
  1985. }
  1986. .sidebar .section-widget.searches .search-element a {
  1987. color: #333;
  1988. }
  1989. .sidebar .section-widget.searches .search-element i {
  1990. margin-right: 5px;
  1991. }
  1992. .sidebar .section-widget.searches .search-element:hover {
  1993. background-color: #F26522;
  1994. }
  1995. .sidebar .section-widget.searches .search-element:hover a, .sidebar .section-widget.searches .search-element:hover i {
  1996. color: #fff;
  1997. }
  1998. .sidebar .title-widget {
  1999. font-size: 20px;
  2000. color: #272c59;
  2001. font-weight: 600;
  2002. margin-bottom: 20px;
  2003. }
  2004. .sidebar .title {
  2005. font-size: 16px;
  2006. font-weight: 600;
  2007. text-align: left;
  2008. color: #272c59;
  2009. margin: 10px 0;
  2010. }
  2011. .sidebar .two-select {
  2012. display: grid;
  2013. grid-gap: 15px;
  2014. grid-template-columns: repeat(2, 1fr);
  2015. padding: 0;
  2016. }
  2017. .sidebar .two-select .nice-select {
  2018. margin: 0;
  2019. }
  2020. .sidebar .nice-select {
  2021. width: 100%;
  2022. margin-bottom: 20px;
  2023. }
  2024. .sidebar .nice-select .list {
  2025. width: 100% !important;
  2026. }
  2027. .sidebar .btn-search {
  2028. text-align: center;
  2029. }
  2030. .sidebar .button {
  2031. display: inline-block;
  2032. }
  2033. .sidebar .button i {
  2034. margin-right: 7px;
  2035. }
  2036. .sidebar .user {
  2037. margin-bottom: 15px;
  2038. }
  2039. .sidebar .user .user-image {
  2040. display: inline-block;
  2041. vertical-align: middle;
  2042. border-radius: 100%;
  2043. width: 60px;
  2044. height: 60px;
  2045. background-size: cover;
  2046. background-position: center;
  2047. }
  2048. .sidebar .user .wrap-user-content {
  2049. display: inline-block;
  2050. vertical-align: middle;
  2051. width: calc(100% - 100px);
  2052. margin-left: 15px;
  2053. }
  2054. .sidebar .user .wrap-user-content .title {
  2055. margin: 0 0 5px 0 !important;
  2056. }
  2057. .sidebar .user .wrap-user-content .view i {
  2058. font-weight: 600;
  2059. }
  2060. .my-profile > .wrap-content {
  2061. padding: 100px 0;
  2062. }
  2063. .my-profile .sidebar .title {
  2064. font-size: 20px;
  2065. color: #272c59;
  2066. font-weight: 600;
  2067. margin-bottom: 20px;
  2068. }
  2069. .my-profile .sidebar .col-extra.favorite .icons {
  2070. display: inline-block;
  2071. width: 32.33%;
  2072. text-align: center;
  2073. }
  2074. .my-profile .user-gallery .button {
  2075. margin-top: 50px;
  2076. }
  2077. .my-profile .info-user .wrap-field {
  2078. padding: 5px 0;
  2079. /*border-bottom: 1px solid #eee;*/
  2080. }
  2081. .my-profile .info-user .wrap-field.first {
  2082. margin-top: 50px;
  2083. }
  2084. .my-profile .info-user .wrap-field .title-filed {
  2085. display: inline-block;
  2086. vertical-align: top;
  2087. max-width: 150px;
  2088. width: 100%;
  2089. margin-top: 10px;
  2090. }
  2091. .my-profile .info-user .wrap-field textarea,
  2092. .my-profile .info-user .wrap-field input {
  2093. display: inline-block;
  2094. vertical-align: top;
  2095. background-color: #fff;
  2096. border-radius: 5px;
  2097. border: solid 1px #e8e8e8;
  2098. box-sizing: border-box;
  2099. clear: both;
  2100. display: inline-block;
  2101. width: calc(100% - 155px);
  2102. font-size: 14px;
  2103. font-weight: normal;
  2104. height: 42px;
  2105. line-height: 40px;
  2106. outline: none;
  2107. padding-left: 18px;
  2108. padding-right: 30px;
  2109. position: relative;
  2110. text-align: left !important;
  2111. }
  2112. .my-profile .info-user .wrap-field textarea {
  2113. height: auto !important;
  2114. }
  2115. .my-profile .info-user .wrap-field .nice-select {
  2116. width: calc(100% - 155px);
  2117. float: none;
  2118. display: inline-block;
  2119. }
  2120. .my-profile .info-user .wrap-field .nice-select .list {
  2121. width: 100%;
  2122. }
  2123. .my-profile .info-user .wrap-field .wrap-birth-day {
  2124. display: inline-block;
  2125. vertical-align: middle;
  2126. width: calc(100% - 155px);
  2127. }
  2128. .my-profile .info-user .wrap-field .birthday {
  2129. display: grid;
  2130. grid-gap: 15px;
  2131. grid-template-columns: repeat(3, 1fr);
  2132. padding: 0;
  2133. }
  2134. .my-profile .info-user .wrap-field .birthday .nice-select {
  2135. width: 100%;
  2136. }
  2137. .my-profile .info-user .button {
  2138. text-align: center;
  2139. }
  2140. .gift-element {
  2141. margin-bottom: 20px;
  2142. padding-bottom: 20px;
  2143. border-bottom: 1px solid #eee;
  2144. }
  2145. .gift-element.last {
  2146. border: none;
  2147. padding: 0;
  2148. margin: 0;
  2149. }
  2150. .gift-element .wrap-image {
  2151. display: inline-block;
  2152. vertical-align: top;
  2153. width: 100px;
  2154. }
  2155. .gift-element .wrap-image .gift-img {
  2156. width: 100px;
  2157. height: 100px;
  2158. background-size: cover;
  2159. background-position: center;
  2160. border-radius: 10px;
  2161. }
  2162. .gift-element .wrap-content {
  2163. display: inline-block;
  2164. vertical-align: top;
  2165. width: calc(100% - 120px);
  2166. margin-left: 10px;
  2167. }
  2168. .gift-element .wrap-content .numbers {
  2169. font-weight: 600;
  2170. font-size: 20px;
  2171. }
  2172. .gift-element .wrap-content .button {
  2173. padding: 8px 12px;
  2174. }
  2175. .page-message > .wrap-content {
  2176. padding: 100px 0;
  2177. }
  2178. .page-message .chat-wrap {
  2179. background-color: #f6f6f6;
  2180. border-radius: 10px;
  2181. padding: 30px 20px;
  2182. margin-bottom: 30px;
  2183. }
  2184. .page-message .chat-wrap .chat-user:nth-child(even) {
  2185. background-color: bisque;
  2186. }
  2187. .page-message .chat-wrap .chat-user:nth-child(odd) {
  2188. background-color: antiquewhite;
  2189. }
  2190. .page-message .chat-wrap .chat-user:nth-child(2) {
  2191. border-radius: 10px 10px 0 0;
  2192. }
  2193. .page-message .search {
  2194. position: relative;
  2195. margin-bottom: 30px;
  2196. }
  2197. .page-message .search input {
  2198. width: calc(100% - 75px);
  2199. height: 50px;
  2200. line-height: 38px;
  2201. border-radius: 10px;
  2202. padding: 0 50px 0 20px;
  2203. border: none;
  2204. font-weight: 400;
  2205. font-size: 15px;
  2206. }
  2207. .page-message .search i {
  2208. position: absolute;
  2209. top: 50%;
  2210. right: 20px;
  2211. transform: translateY(-50%);
  2212. }
  2213. .page-message .chat-user {
  2214. position: relative;
  2215. display: block;
  2216. width: calc(100% - 30px);
  2217. padding: 15px;
  2218. }
  2219. .page-message .chat-user:last-child {
  2220. border-radius: 0 0 10px 10px;
  2221. }
  2222. .page-message .chat-user .wrap-message {
  2223. position: relative;
  2224. z-index: 1;
  2225. cursor: pointer;
  2226. }
  2227. .page-message .chat-user .user-img,
  2228. .page-message .chat-user .title-name,
  2229. .page-message .chat-user .time,
  2230. .page-message .chat-user .btn-delete {
  2231. display: inline-block;
  2232. vertical-align: middle;
  2233. }
  2234. .page-message .chat-user .title-name {
  2235. /*width: 70%;*/
  2236. padding: 10px 20px;
  2237. font-weight: 600;
  2238. height: 60px;
  2239. overflow: hidden;
  2240. line-height: 60px;
  2241. }
  2242. .page-message .chat-user .user-img,
  2243. .page-message .chat-user .btn-delete {
  2244. text-align: center;
  2245. }
  2246. .page-message .chat-user .btn-delete {
  2247. color: red;
  2248. margin-left: 30px;
  2249. }
  2250. .page-message .chat-user .user-img {
  2251. display: inline-block;
  2252. vertical-align: middle;
  2253. border-radius: 100%;
  2254. width: 60px;
  2255. height: 60px;
  2256. background-size: cover;
  2257. background-position: center;
  2258. }
  2259. .page-message .chat-user .time {
  2260. margin: auto;
  2261. float: right;
  2262. line-height: 80px; /* max-height: 60px; */
  2263. vertical-align: middle;
  2264. text-align: center;
  2265. margin: auto;
  2266. }
  2267. .page-message .chat-user.open-message .wrap-chat-box {
  2268. display: block;
  2269. }
  2270. .page-message .chat-user .wrap-chat-box {
  2271. background-color: #fff;
  2272. border-radius: 10px;
  2273. display: none;
  2274. transition: all 0.5s;
  2275. }
  2276. .page-message .chat-user .wrap-chat-box .inbox,
  2277. .page-message .chat-user .wrap-chat-box .outbox {
  2278. padding: 15px;
  2279. }
  2280. .page-message .chat-user .wrap-chat-box .inbox .user-img,
  2281. .page-message .chat-user .wrap-chat-box .outbox .user-img {
  2282. display: inline-block;
  2283. vertical-align: middle;
  2284. }
  2285. .page-message .chat-user .wrap-chat-box .inbox .wrap-content {
  2286. margin-left: 10px;
  2287. }
  2288. .page-message .chat-user .wrap-chat-box .outbox .wrap-content {
  2289. margin-right: 10px;
  2290. background-color: #F26522;
  2291. }
  2292. .page-message .chat-user .wrap-chat-box .outbox .wrap-content .content {
  2293. color: #fff;
  2294. }
  2295. .page-message .chat-user .wrap-chat-box .wrap-content {
  2296. display: inline-block;
  2297. vertical-align: middle;
  2298. width: calc(100% - 120px);
  2299. padding: 10px 20px;
  2300. background-color: #f0f0f0;
  2301. border-radius: 20px;
  2302. }
  2303. .page-message .chat-user .wrap-chat-box .wrap-reply {
  2304. padding: 15px;
  2305. }
  2306. .page-message .chat-user .wrap-chat-box .wrap-reply .reply i {
  2307. color: #F26522;
  2308. }
  2309. .page-message .chat-user .wrap-chat-box .wrap-reply input {
  2310. width: calc(100% - 80px);
  2311. line-height: 38px;
  2312. border-radius: 10px;
  2313. padding: 0 10px 0 15px;
  2314. border: none;
  2315. font-weight: 400;
  2316. font-size: 15px;
  2317. margin: 0 15px;
  2318. background-color: #f6f6f6;
  2319. }
  2320. @media (min-width: 544px) {
  2321. .container {
  2322. max-width: 576px;
  2323. }
  2324. .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 {
  2325. float: left;
  2326. }
  2327. .col-sm-1 {
  2328. width: 8.33333%;
  2329. }
  2330. .col-sm-2 {
  2331. width: 16.66667%;
  2332. }
  2333. .col-sm-3 {
  2334. width: 25%;
  2335. }
  2336. .col-sm-4 {
  2337. width: 33.33333%;
  2338. }
  2339. .col-sm-5 {
  2340. width: 41.66667%;
  2341. }
  2342. .col-sm-6 {
  2343. width: 50%;
  2344. }
  2345. .col-sm-7 {
  2346. width: 58.33333%;
  2347. }
  2348. .col-sm-8 {
  2349. width: 66.66667%;
  2350. }
  2351. .col-sm-9 {
  2352. width: 75%;
  2353. }
  2354. .col-sm-10 {
  2355. width: 83.33333%;
  2356. }
  2357. .col-sm-11 {
  2358. width: 91.66667%;
  2359. }
  2360. .col-sm-12 {
  2361. width: 100%;
  2362. }
  2363. .col-sm-pull-0 {
  2364. right: auto;
  2365. }
  2366. .col-sm-pull-1 {
  2367. right: 8.33333%;
  2368. }
  2369. .col-sm-pull-2 {
  2370. right: 16.66667%;
  2371. }
  2372. .col-sm-pull-3 {
  2373. right: 25%;
  2374. }
  2375. .col-sm-pull-4 {
  2376. right: 33.33333%;
  2377. }
  2378. .col-sm-pull-5 {
  2379. right: 41.66667%;
  2380. }
  2381. .col-sm-pull-6 {
  2382. right: 50%;
  2383. }
  2384. .col-sm-pull-7 {
  2385. right: 58.33333%;
  2386. }
  2387. .col-sm-pull-8 {
  2388. right: 66.66667%;
  2389. }
  2390. .col-sm-pull-9 {
  2391. right: 75%;
  2392. }
  2393. .col-sm-pull-10 {
  2394. right: 83.33333%;
  2395. }
  2396. .col-sm-pull-11 {
  2397. right: 91.66667%;
  2398. }
  2399. .col-sm-pull-12 {
  2400. right: 100%;
  2401. }
  2402. .col-sm-push-0 {
  2403. left: auto;
  2404. }
  2405. .col-sm-push-1 {
  2406. left: 8.33333%;
  2407. }
  2408. .col-sm-push-2 {
  2409. left: 16.66667%;
  2410. }
  2411. .col-sm-push-3 {
  2412. left: 25%;
  2413. }
  2414. .col-sm-push-4 {
  2415. left: 33.33333%;
  2416. }
  2417. .col-sm-push-5 {
  2418. left: 41.66667%;
  2419. }
  2420. .col-sm-push-6 {
  2421. left: 50%;
  2422. }
  2423. .col-sm-push-7 {
  2424. left: 58.33333%;
  2425. }
  2426. .col-sm-push-8 {
  2427. left: 66.66667%;
  2428. }
  2429. .col-sm-push-9 {
  2430. left: 75%;
  2431. }
  2432. .col-sm-push-10 {
  2433. left: 83.33333%;
  2434. }
  2435. .col-sm-push-11 {
  2436. left: 91.66667%;
  2437. }
  2438. .col-sm-push-12 {
  2439. left: 100%;
  2440. }
  2441. .col-sm-offset-0 {
  2442. margin-left: 0%;
  2443. }
  2444. .col-sm-offset-1 {
  2445. margin-left: 8.33333%;
  2446. }
  2447. .col-sm-offset-2 {
  2448. margin-left: 16.66667%;
  2449. }
  2450. .col-sm-offset-3 {
  2451. margin-left: 25%;
  2452. }
  2453. .col-sm-offset-4 {
  2454. margin-left: 33.33333%;
  2455. }
  2456. .col-sm-offset-5 {
  2457. margin-left: 41.66667%;
  2458. }
  2459. .col-sm-offset-6 {
  2460. margin-left: 50%;
  2461. }
  2462. .col-sm-offset-7 {
  2463. margin-left: 58.33333%;
  2464. }
  2465. .col-sm-offset-8 {
  2466. margin-left: 66.66667%;
  2467. }
  2468. .col-sm-offset-9 {
  2469. margin-left: 75%;
  2470. }
  2471. .col-sm-offset-10 {
  2472. margin-left: 83.33333%;
  2473. }
  2474. .col-sm-offset-11 {
  2475. margin-left: 91.66667%;
  2476. }
  2477. .col-sm-offset-12 {
  2478. margin-left: 100%;
  2479. }
  2480. }
  2481. @media (min-width: 768px) {
  2482. .container {
  2483. max-width: 720px;
  2484. }
  2485. .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 {
  2486. float: left;
  2487. }
  2488. .col-md-1 {
  2489. width: 8.33333%;
  2490. }
  2491. .col-md-2 {
  2492. width: 16.66667%;
  2493. }
  2494. .col-md-3 {
  2495. width: 25%;
  2496. }
  2497. .col-md-4 {
  2498. width: 33.33333%;
  2499. }
  2500. .col-md-5 {
  2501. width: 41.66667%;
  2502. }
  2503. .col-md-6 {
  2504. width: 50%;
  2505. }
  2506. .col-md-7 {
  2507. width: 58.33333%;
  2508. }
  2509. .col-md-8 {
  2510. width: 66.66667%;
  2511. }
  2512. .col-md-9 {
  2513. width: 75%;
  2514. }
  2515. .col-md-10 {
  2516. width: 83.33333%;
  2517. }
  2518. .col-md-11 {
  2519. width: 91.66667%;
  2520. }
  2521. .col-md-12 {
  2522. width: 100%;
  2523. }
  2524. .col-md-pull-0 {
  2525. right: auto;
  2526. }
  2527. .col-md-pull-1 {
  2528. right: 8.33333%;
  2529. }
  2530. .col-md-pull-2 {
  2531. right: 16.66667%;
  2532. }
  2533. .col-md-pull-3 {
  2534. right: 25%;
  2535. }
  2536. .col-md-pull-4 {
  2537. right: 33.33333%;
  2538. }
  2539. .col-md-pull-5 {
  2540. right: 41.66667%;
  2541. }
  2542. .col-md-pull-6 {
  2543. right: 50%;
  2544. }
  2545. .col-md-pull-7 {
  2546. right: 58.33333%;
  2547. }
  2548. .col-md-pull-8 {
  2549. right: 66.66667%;
  2550. }
  2551. .col-md-pull-9 {
  2552. right: 75%;
  2553. }
  2554. .col-md-pull-10 {
  2555. right: 83.33333%;
  2556. }
  2557. .col-md-pull-11 {
  2558. right: 91.66667%;
  2559. }
  2560. .col-md-pull-12 {
  2561. right: 100%;
  2562. }
  2563. .col-md-push-0 {
  2564. left: auto;
  2565. }
  2566. .col-md-push-1 {
  2567. left: 8.33333%;
  2568. }
  2569. .col-md-push-2 {
  2570. left: 16.66667%;
  2571. }
  2572. .col-md-push-3 {
  2573. left: 25%;
  2574. }
  2575. .col-md-push-4 {
  2576. left: 33.33333%;
  2577. }
  2578. .col-md-push-5 {
  2579. left: 41.66667%;
  2580. }
  2581. .col-md-push-6 {
  2582. left: 50%;
  2583. }
  2584. .col-md-push-7 {
  2585. left: 58.33333%;
  2586. }
  2587. .col-md-push-8 {
  2588. left: 66.66667%;
  2589. }
  2590. .col-md-push-9 {
  2591. left: 75%;
  2592. }
  2593. .col-md-push-10 {
  2594. left: 83.33333%;
  2595. }
  2596. .col-md-push-11 {
  2597. left: 91.66667%;
  2598. }
  2599. .col-md-push-12 {
  2600. left: 100%;
  2601. }
  2602. .col-md-offset-0 {
  2603. margin-left: 0%;
  2604. }
  2605. .col-md-offset-1 {
  2606. margin-left: 8.33333%;
  2607. }
  2608. .col-md-offset-2 {
  2609. margin-left: 16.66667%;
  2610. }
  2611. .col-md-offset-3 {
  2612. margin-left: 25%;
  2613. }
  2614. .col-md-offset-4 {
  2615. margin-left: 33.33333%;
  2616. }
  2617. .col-md-offset-5 {
  2618. margin-left: 41.66667%;
  2619. }
  2620. .col-md-offset-6 {
  2621. margin-left: 50%;
  2622. }
  2623. .col-md-offset-7 {
  2624. margin-left: 58.33333%;
  2625. }
  2626. .col-md-offset-8 {
  2627. margin-left: 66.66667%;
  2628. }
  2629. .col-md-offset-9 {
  2630. margin-left: 75%;
  2631. }
  2632. .col-md-offset-10 {
  2633. margin-left: 83.33333%;
  2634. }
  2635. .col-md-offset-11 {
  2636. margin-left: 91.66667%;
  2637. }
  2638. .col-md-offset-12 {
  2639. margin-left: 100%;
  2640. }
  2641. }
  2642. @media (min-width: 992px) {
  2643. .container {
  2644. max-width: 940px;
  2645. }
  2646. .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 {
  2647. float: left;
  2648. }
  2649. .col-lg-1 {
  2650. width: 8.33333%;
  2651. }
  2652. .col-lg-2 {
  2653. width: 16.66667%;
  2654. }
  2655. .col-lg-3 {
  2656. width: 25%;
  2657. }
  2658. .col-lg-4 {
  2659. width: 33.33333%;
  2660. }
  2661. .col-lg-5 {
  2662. width: 41.66667%;
  2663. }
  2664. .col-lg-6 {
  2665. width: 50%;
  2666. }
  2667. .col-lg-7 {
  2668. width: 58.33333%;
  2669. }
  2670. .col-lg-8 {
  2671. width: 66.66667%;
  2672. }
  2673. .col-lg-9 {
  2674. width: 75%;
  2675. }
  2676. .col-lg-10 {
  2677. width: 83.33333%;
  2678. }
  2679. .col-lg-11 {
  2680. width: 91.66667%;
  2681. }
  2682. .col-lg-12 {
  2683. width: 100%;
  2684. }
  2685. .col-lg-pull-0 {
  2686. right: auto;
  2687. }
  2688. .col-lg-pull-1 {
  2689. right: 8.33333%;
  2690. }
  2691. .col-lg-pull-2 {
  2692. right: 16.66667%;
  2693. }
  2694. .col-lg-pull-3 {
  2695. right: 25%;
  2696. }
  2697. .col-lg-pull-4 {
  2698. right: 33.33333%;
  2699. }
  2700. .col-lg-pull-5 {
  2701. right: 41.66667%;
  2702. }
  2703. .col-lg-pull-6 {
  2704. right: 50%;
  2705. }
  2706. .col-lg-pull-7 {
  2707. right: 58.33333%;
  2708. }
  2709. .col-lg-pull-8 {
  2710. right: 66.66667%;
  2711. }
  2712. .col-lg-pull-9 {
  2713. right: 75%;
  2714. }
  2715. .col-lg-pull-10 {
  2716. right: 83.33333%;
  2717. }
  2718. .col-lg-pull-11 {
  2719. right: 91.66667%;
  2720. }
  2721. .col-lg-pull-12 {
  2722. right: 100%;
  2723. }
  2724. .col-lg-push-0 {
  2725. left: auto;
  2726. }
  2727. .col-lg-push-1 {
  2728. left: 8.33333%;
  2729. }
  2730. .col-lg-push-2 {
  2731. left: 16.66667%;
  2732. }
  2733. .col-lg-push-3 {
  2734. left: 25%;
  2735. }
  2736. .col-lg-push-4 {
  2737. left: 33.33333%;
  2738. }
  2739. .col-lg-push-5 {
  2740. left: 41.66667%;
  2741. }
  2742. .col-lg-push-6 {
  2743. left: 50%;
  2744. }
  2745. .col-lg-push-7 {
  2746. left: 58.33333%;
  2747. }
  2748. .col-lg-push-8 {
  2749. left: 66.66667%;
  2750. }
  2751. .col-lg-push-9 {
  2752. left: 75%;
  2753. }
  2754. .col-lg-push-10 {
  2755. left: 83.33333%;
  2756. }
  2757. .col-lg-push-11 {
  2758. left: 91.66667%;
  2759. }
  2760. .col-lg-push-12 {
  2761. left: 100%;
  2762. }
  2763. .col-lg-offset-0 {
  2764. margin-left: 0%;
  2765. }
  2766. .col-lg-offset-1 {
  2767. margin-left: 8.33333%;
  2768. }
  2769. .col-lg-offset-2 {
  2770. margin-left: 16.66667%;
  2771. }
  2772. .col-lg-offset-3 {
  2773. margin-left: 25%;
  2774. }
  2775. .col-lg-offset-4 {
  2776. margin-left: 33.33333%;
  2777. }
  2778. .col-lg-offset-5 {
  2779. margin-left: 41.66667%;
  2780. }
  2781. .col-lg-offset-6 {
  2782. margin-left: 50%;
  2783. }
  2784. .col-lg-offset-7 {
  2785. margin-left: 58.33333%;
  2786. }
  2787. .col-lg-offset-8 {
  2788. margin-left: 66.66667%;
  2789. }
  2790. .col-lg-offset-9 {
  2791. margin-left: 75%;
  2792. }
  2793. .col-lg-offset-10 {
  2794. margin-left: 83.33333%;
  2795. }
  2796. .col-lg-offset-11 {
  2797. margin-left: 91.66667%;
  2798. }
  2799. .col-lg-offset-12 {
  2800. margin-left: 100%;
  2801. }
  2802. .menu-toggle {
  2803. display: none;
  2804. }
  2805. }
  2806. @media (min-width: 1200px) {
  2807. .container {
  2808. max-width: 1200px;
  2809. }
  2810. .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 {
  2811. float: left;
  2812. }
  2813. .col-xl-1 {
  2814. width: 8.33333%;
  2815. }
  2816. .col-xl-2 {
  2817. width: 16.66667%;
  2818. }
  2819. .col-xl-3 {
  2820. width: 25%;
  2821. }
  2822. .col-xl-4 {
  2823. width: 33.33333%;
  2824. }
  2825. .col-xl-5 {
  2826. width: 41.66667%;
  2827. }
  2828. .col-xl-6 {
  2829. width: 50%;
  2830. }
  2831. .col-xl-7 {
  2832. width: 58.33333%;
  2833. }
  2834. .col-xl-8 {
  2835. width: 66.66667%;
  2836. }
  2837. .col-xl-9 {
  2838. width: 75%;
  2839. }
  2840. .col-xl-10 {
  2841. width: 83.33333%;
  2842. }
  2843. .col-xl-11 {
  2844. width: 91.66667%;
  2845. }
  2846. .col-xl-12 {
  2847. width: 100%;
  2848. }
  2849. .col-xl-pull-0 {
  2850. right: auto;
  2851. }
  2852. .col-xl-pull-1 {
  2853. right: 8.33333%;
  2854. }
  2855. .col-xl-pull-2 {
  2856. right: 16.66667%;
  2857. }
  2858. .col-xl-pull-3 {
  2859. right: 25%;
  2860. }
  2861. .col-xl-pull-4 {
  2862. right: 33.33333%;
  2863. }
  2864. .col-xl-pull-5 {
  2865. right: 41.66667%;
  2866. }
  2867. .col-xl-pull-6 {
  2868. right: 50%;
  2869. }
  2870. .col-xl-pull-7 {
  2871. right: 58.33333%;
  2872. }
  2873. .col-xl-pull-8 {
  2874. right: 66.66667%;
  2875. }
  2876. .col-xl-pull-9 {
  2877. right: 75%;
  2878. }
  2879. .col-xl-pull-10 {
  2880. right: 83.33333%;
  2881. }
  2882. .col-xl-pull-11 {
  2883. right: 91.66667%;
  2884. }
  2885. .col-xl-pull-12 {
  2886. right: 100%;
  2887. }
  2888. .col-xl-push-0 {
  2889. left: auto;
  2890. }
  2891. .col-xl-push-1 {
  2892. left: 8.33333%;
  2893. }
  2894. .col-xl-push-2 {
  2895. left: 16.66667%;
  2896. }
  2897. .col-xl-push-3 {
  2898. left: 25%;
  2899. }
  2900. .col-xl-push-4 {
  2901. left: 33.33333%;
  2902. }
  2903. .col-xl-push-5 {
  2904. left: 41.66667%;
  2905. }
  2906. .col-xl-push-6 {
  2907. left: 50%;
  2908. }
  2909. .col-xl-push-7 {
  2910. left: 58.33333%;
  2911. }
  2912. .col-xl-push-8 {
  2913. left: 66.66667%;
  2914. }
  2915. .col-xl-push-9 {
  2916. left: 75%;
  2917. }
  2918. .col-xl-push-10 {
  2919. left: 83.33333%;
  2920. }
  2921. .col-xl-push-11 {
  2922. left: 91.66667%;
  2923. }
  2924. .col-xl-push-12 {
  2925. left: 100%;
  2926. }
  2927. .col-xl-offset-0 {
  2928. margin-left: 0%;
  2929. }
  2930. .col-xl-offset-1 {
  2931. margin-left: 8.33333%;
  2932. }
  2933. .col-xl-offset-2 {
  2934. margin-left: 16.66667%;
  2935. }
  2936. .col-xl-offset-3 {
  2937. margin-left: 25%;
  2938. }
  2939. .col-xl-offset-4 {
  2940. margin-left: 33.33333%;
  2941. }
  2942. .col-xl-offset-5 {
  2943. margin-left: 41.66667%;
  2944. }
  2945. .col-xl-offset-6 {
  2946. margin-left: 50%;
  2947. }
  2948. .col-xl-offset-7 {
  2949. margin-left: 58.33333%;
  2950. }
  2951. .col-xl-offset-8 {
  2952. margin-left: 66.66667%;
  2953. }
  2954. .col-xl-offset-9 {
  2955. margin-left: 75%;
  2956. }
  2957. .col-xl-offset-10 {
  2958. margin-left: 83.33333%;
  2959. }
  2960. .col-xl-offset-11 {
  2961. margin-left: 91.66667%;
  2962. }
  2963. .col-xl-offset-12 {
  2964. margin-left: 100%;
  2965. }
  2966. }
  2967. @media (max-width: 767.9px) {
  2968. .title-primary:before {
  2969. width: 50%;
  2970. }
  2971. .breadcrumb {
  2972. margin-left: 10px;
  2973. }
  2974. .logo-menu {
  2975. padding: 0 15px;
  2976. }
  2977. .form > img {
  2978. display: none !important;
  2979. }
  2980. .wrap-register .service .confirm-total,
  2981. .wrap-register-subcribe .service .confirm-total {
  2982. margin-top: -50px;
  2983. }
  2984. .wrap-register .service .confirm,
  2985. .wrap-register-subcribe .service .confirm {
  2986. width: 100%;
  2987. margin-bottom: 10px;
  2988. }
  2989. .dialog-popup {
  2990. display: block;
  2991. width: 90%;
  2992. }
  2993. .dialog-popup .close-popup {
  2994. width: 20px;
  2995. text-align: center;
  2996. border-radius: 100%;
  2997. background-color: #fff;
  2998. }
  2999. .dialog-popup .user-img {
  3000. width: 100%;
  3001. height: 200px;
  3002. }
  3003. .dialog-popup .wrap-intro-user {
  3004. width: 100%;
  3005. padding: 10px 20px;
  3006. }
  3007. .dialog-popup input {
  3008. width: calc(100% - 200px);
  3009. }
  3010. .dialog-popup textarea {
  3011. width: calc(100% - 40px);
  3012. }
  3013. .page-love-tips-detail .wrap-image-content .wrap-image .wrap-date {
  3014. top: 0;
  3015. left: 10%;
  3016. }
  3017. .page-love-tips-detail .wrap-author .social a {
  3018. margin: 5px 0;
  3019. }
  3020. .page-about-us .wrap-content {
  3021. padding: 50px 0;
  3022. }
  3023. .page-about-us .row-accordion {
  3024. display: block;
  3025. }
  3026. .page-match-profile .recent-members .wrap-member {
  3027. padding: 0 15px;
  3028. }
  3029. .my-profile .info-user .wrap-field .title-filed {
  3030. font-size: 20px;
  3031. max-width: none;
  3032. display: block;
  3033. margin-bottom: 10px;
  3034. }
  3035. .my-profile .info-user .wrap-field textarea,
  3036. .my-profile .info-user .wrap-field input {
  3037. width: 100%;
  3038. }
  3039. .my-profile .info-user .wrap-field .nice-select {
  3040. width: 100%;
  3041. }
  3042. .my-profile .info-user .wrap-field .wrap-birth-day {
  3043. width: 100%;
  3044. }
  3045. .page-message > .wrap-content {
  3046. padding: 50px 0;
  3047. }
  3048. .page-message .chat-user .title-name {
  3049. /*width: 65%;*/
  3050. padding: 10px;
  3051. line-height: 40px;
  3052. height: 40px;
  3053. }
  3054. .page-message .chat-user .time {
  3055. line-height: inherit;
  3056. float: none;
  3057. }
  3058. .page-message .chat-user .wrap-chat-box .wrap-reply input {
  3059. /*width: 55% !important;*/
  3060. width: calc(100% - 60px) !important;
  3061. margin: 0 5px;
  3062. }
  3063. }
  3064. @media screen and (max-width: 1200px) {
  3065. .footer .wrap-most-user img {
  3066. width: 80px;
  3067. height: 80px;
  3068. }
  3069. .logo-menu .menu input {
  3070. width: 60px;
  3071. }
  3072. .form > img {
  3073. position: absolute;
  3074. left: 25%;
  3075. }
  3076. }
  3077. @media (max-width: 991.9px) {
  3078. .footer .wrap-most-user img {
  3079. width: 60px;
  3080. height: 60px;
  3081. }
  3082. .logo-menu .menu {
  3083. display: none;
  3084. }
  3085. .menu-mobile {
  3086. position: fixed;
  3087. background-color: #fff;
  3088. width: 300px;
  3089. top: 0;
  3090. left: 0;
  3091. height: 100vh;
  3092. box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.2);
  3093. transform: translateX(-400px);
  3094. transition: all 0.5s;
  3095. z-index: 10;
  3096. }
  3097. .menu-mobile .menu-mobile {
  3098. list-style: none;
  3099. }
  3100. .menu-mobile .search-wrapper {
  3101. position: relative;
  3102. }
  3103. .menu-mobile .search-wrapper .search {
  3104. position: absolute;
  3105. top: 50%;
  3106. right: 25px;
  3107. transform: translateY(-50%);
  3108. }
  3109. .menu-mobile input {
  3110. width: calc(100% - 50px);
  3111. height: 30px;
  3112. padding: 0 35px 0 10px;
  3113. }
  3114. .menu-mobile li {
  3115. padding: 10px 20px;
  3116. border-bottom: 1px solid #eee;
  3117. }
  3118. .menu-mobile li a {
  3119. color: #333333;
  3120. }
  3121. .menu-toggle.is-active .menu-mobile {
  3122. transform: translateX(0);
  3123. }
  3124. .search-wrapper {
  3125. background-color: #e6e6e6;
  3126. padding: 10px;
  3127. position: relative;
  3128. }
  3129. .form {
  3130. overflow: hidden;
  3131. transform: translateX(10px);
  3132. }
  3133. .form .form-wrapper {
  3134. left: 5%;
  3135. }
  3136. .form > img {
  3137. left: 20%;
  3138. max-width: none;
  3139. }
  3140. .wrap-login,
  3141. .wrap-register,
  3142. .wrap-register-subcribe {
  3143. width: 65%;
  3144. }
  3145. .wrap-register .service p,
  3146. .wrap-register-subcribe .service p {
  3147. margin: 0 10px 0 0;
  3148. }
  3149. .article-love-tips .article-love-tips-image,
  3150. .article-love-tips .article-love-tips-content {
  3151. display: block;
  3152. text-align: center;
  3153. }
  3154. .article-love-tips .article-love-tips-image {
  3155. margin: 0 auto 20px auto;
  3156. }
  3157. .article-love-tips .article-love-tips-content {
  3158. width: 100%;
  3159. }
  3160. .page-love-tips-detail .wrap-image-content .wrap-image {
  3161. width: 100%;
  3162. }
  3163. .page-love-tips-detail .wrap-image-content .wrap-image .article-love-tips-image {
  3164. margin: 0 auto 20px auto;
  3165. }
  3166. .page-love-tips-detail .wrap-image-content .wrap-content {
  3167. width: 100%;
  3168. }
  3169. .page-love-tips-detail .wrap-image-content.square .image-square {
  3170. width: 100%;
  3171. }
  3172. .page-love-tips-detail .wrap-author .social {
  3173. position: static;
  3174. }
  3175. .page-match-profile > .wrap-content {
  3176. padding: 50px 0;
  3177. }
  3178. .page-match-profile-detail > .wrap-content {
  3179. padding: 50px 0;
  3180. }
  3181. .page-match-profile-detail .intro-user {
  3182. display: block;
  3183. }
  3184. .page-match-profile-detail .intro-user .user-img {
  3185. width: 100%;
  3186. height: 300px;
  3187. }
  3188. .page-match-profile-detail .intro-user .wrap-intro-user {
  3189. width: 100%;
  3190. }
  3191. .page-match-profile-detail .user-extra {
  3192. display: block;
  3193. }
  3194. .page-match-profile-detail .user-extra .col-extra {
  3195. margin-bottom: 15px;
  3196. }
  3197. .user-gallery .user-gallery-bg {
  3198. height: 180px;
  3199. }
  3200. .my-profile > .wrap-content {
  3201. padding: 50px 0;
  3202. }
  3203. .page-message .chat-wrap {
  3204. padding: 20px 5px;
  3205. }
  3206. .page-message .chat-user {
  3207. padding: 5px;
  3208. width: calc(100% - 10px);
  3209. }
  3210. .page-message .chat-user .user-img {
  3211. width: 40px;
  3212. height: 40px;
  3213. }
  3214. .page-message .chat-user .wrap-chat-box {
  3215. margin-top: 20px;
  3216. }
  3217. .page-message .chat-user .wrap-chat-box .wrap-content {
  3218. width: calc(100% - 90px);
  3219. margin-right: 0px !important;
  3220. margin-left: 0px !important;
  3221. }
  3222. .page-message .chat-user .wrap-chat-box .inbox, .page-message .chat-user .wrap-chat-box .outbox,
  3223. .page-message .chat-user .wrap-chat-box .inbox, .page-message .chat-user .wrap-chat-box .inbox {
  3224. padding: 5px;
  3225. }
  3226. .page-message .chat-user .wrap-chat-box .wrap-reply input {
  3227. /*width: 65%;*/
  3228. width: calc(100% - 60px) !important;
  3229. margin: 0 5px;
  3230. }
  3231. }
  3232. @media screen and (max-width: 800px) {
  3233. .d-sm-none {
  3234. display: none;
  3235. }
  3236. }
  3237. @media (max-width: 543.9px) {
  3238. .form {
  3239. text-align: center;
  3240. }
  3241. .form .form-wrapper {
  3242. width: 100%;
  3243. }
  3244. .container {
  3245. overflow-x: hidden;
  3246. }
  3247. .form-wrapper {
  3248. left: 0 !important;
  3249. max-width: 300px;
  3250. }
  3251. .love-tip {
  3252. text-align: center;
  3253. }
  3254. }
  3255. @media screen and (max-width: 350px) {
  3256. .form .form-wrapper {
  3257. max-width: 270px;
  3258. padding: 20px 13px;
  3259. transform: translateX(-8px);
  3260. }
  3261. }
  3262. @media (max-width: 1199.9px) {
  3263. .recent-members .wrap-image .meta .gallery,
  3264. .recent-members .wrap-image .meta .email,
  3265. .recent-members .wrap-image .meta .love {
  3266. padding: 4px 10px;
  3267. }
  3268. }
  3269. /*# sourceMappingURL=style.css.map */