1
0

style.css 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270
  1. h1[_ngcontent-tnh-c135] {
  2. color: #369;
  3. font-family: Arial, Helvetica, sans-serif;
  4. font-size: 250%;
  5. }
  6. .vc-wrapper[_ngcontent-tnh-c210] {
  7. position: fixed;
  8. top: 0;
  9. left: 0;
  10. width: 100vw;
  11. height: 100vh;
  12. z-index: 2000;
  13. background: linear-gradient(to bottom, rgba(50, 100, 160, 0.1), rgba(50, 100, 160, 0.1)), url("/assets/images/gunbg.png");
  14. background-repeat: repeat;
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. .vc-wrapper[_ngcontent-tnh-c210]:after {
  20. background: #181c22;
  21. content: "";
  22. position: absolute;
  23. top: 50vh;
  24. left: 0;
  25. width: 100vw;
  26. height: 50vh;
  27. }
  28. .vc-msg[_ngcontent-tnh-c210] {
  29. width: 500px;
  30. height: -webkit-min-content;
  31. height: -moz-min-content;
  32. height: min-content;
  33. max-width: 100vw;
  34. background: white;
  35. z-index: 1;
  36. padding: 20px;
  37. box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  38. }
  39. .title[_ngcontent-tnh-c210] {
  40. font-size: 1.5em;
  41. margin-bottom: 10px;
  42. }
  43. #wrapper[_ngcontent-tnh-c136] {
  44. padding: 30px 30px 30px 30px;
  45. background: linear-gradient(to bottom, rgba(50, 100, 160, 0.1), rgba(50, 100, 160, 0.1)), url("/assets/images/gunbg.png");
  46. }
  47. #page[_ngcontent-tnh-c136] {
  48. box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.5);
  49. }
  50. main[_ngcontent-tnh-c136] {
  51. background: #fff;
  52. }
  53. *[_ngcontent-tnh-c136] {
  54. margin: 0;
  55. padding: 0;
  56. font-family: "Roboto", sans-serif;
  57. font-stretch: 100%;
  58. }
  59. li[_ngcontent-tnh-c136] {
  60. list-style: none;
  61. }
  62. .content[_ngcontent-tnh-c136] {
  63. display: grid;
  64. grid-template-columns: repeat(24, 1fr);
  65. grid-template-rows: -webkit-min-content;
  66. grid-template-rows: min-content;
  67. grid-gap: 20px;
  68. padding: 20px;
  69. }
  70. .email-verify[_ngcontent-tnh-c136] {
  71. position: fixed;
  72. top: 0;
  73. left: 0;
  74. width: 100vw;
  75. background: tomato;
  76. color: white;
  77. z-index: 1003;
  78. text-align: center;
  79. padding: 5px;
  80. }
  81. .email-verify[_ngcontent-tnh-c136] a[_ngcontent-tnh-c136] {
  82. text-decoration: underline;
  83. }
  84. [_nghost-tnh-c136] {
  85. display: grid;
  86. grid-template-rows: 250px auto;
  87. grid-template-columns: 1fr;
  88. }
  89. #wrapper[_ngcontent-tnh-c136] {
  90. grid-row: 1/span 1;
  91. grid-column: 1;
  92. }
  93. .bg-gradient[_ngcontent-tnh-c136] {
  94. grid-row: 2/span 1;
  95. grid-column: 1;
  96. }
  97. #page[_ngcontent-tnh-c136] {
  98. display: grid;
  99. grid-template-columns: -webkit-min-content auto;
  100. grid-template-columns: min-content auto;
  101. grid-template-rows: 55px auto 60px;
  102. min-height: calc(100vh - 30px);
  103. }
  104. .router-outlet[_ngcontent-tnh-c136] {
  105. display: none;
  106. }
  107. main[_ngcontent-tnh-c136] {
  108. display: grid;
  109. grid-row-start: 2;
  110. grid-row-end: 3;
  111. background: #eee;
  112. }
  113. footer[_ngcontent-tnh-c136] {
  114. grid-column-start: 2;
  115. }
  116. @media only screen and (max-width: 800px) {
  117. }
  118. .fl-ri[_ngcontent-tnh-c136] {
  119. float: right;
  120. }
  121. .fl-le[_ngcontent-tnh-c136] {
  122. float: left;
  123. }
  124. .ta-ri[_ngcontent-tnh-c136] {
  125. text-align: right;
  126. }
  127. .text-center[_ngcontent-tnh-c136] {
  128. text-align: center;
  129. }
  130. .margin-auto[_ngcontent-tnh-c136] {
  131. margin: auto;
  132. }
  133. .nopadding[_ngcontent-tnh-c136] {
  134. padding: 0px !important;
  135. }
  136. .nopadding-sides[_ngcontent-tnh-c136] {
  137. padding-left: 0;
  138. padding-right: 0;
  139. }
  140. .grid-newline[_ngcontent-tnh-c136] {
  141. grid-column-start: 1;
  142. }
  143. .chubby[_ngcontent-tnh-c136] {
  144. grid-column-end: span 2;
  145. }
  146. .top-margin-20[_ngcontent-tnh-c136] {
  147. margin-top: 20px !important;
  148. }
  149. .color-green[_ngcontent-tnh-c136] {
  150. color: green;
  151. }
  152. .color-red[_ngcontent-tnh-c136] {
  153. color: #b20000;
  154. }
  155. .color-tomato[_ngcontent-tnh-c136] {
  156. color: #FF6347 !important;
  157. }
  158. .size-10[_ngcontent-tnh-c136] {
  159. font-size: 10px;
  160. }
  161. .size-32[_ngcontent-tnh-c136] {
  162. font-size: 32px;
  163. }
  164. .test[_ngcontent-tnh-c136] {
  165. color: red;
  166. }
  167. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  168. <script src="./js/page.js" defer></script>
  169. <script src="./js/admin.js" defer></script>
  170. [_nghost-tnh-c147] {
  171. position: fixed;
  172. bottom: 20px;
  173. right: 20px;
  174. z-index: 1002;
  175. }
  176. ul[_ngcontent-tnh-c147] li[_ngcontent-tnh-c147] {
  177. list-style: none;
  178. display: block;
  179. position: relative;
  180. min-width: 300px;
  181. margin-bottom: 10px;
  182. padding: 10px;
  183. box-sizing: border-box;
  184. color: rgba(255, 255, 255, 0.9);
  185. border-radius: 5px;
  186. box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.3);
  187. }
  188. ul[_ngcontent-tnh-c147] li[_ngcontent-tnh-c147] .icon[_ngcontent-tnh-c147] {
  189. color: white;
  190. border-right: 1px solid rgba(255, 255, 255, 0.3);
  191. padding-right: 10px;
  192. margin-right: 5px;
  193. }
  194. ul[_ngcontent-tnh-c147] li.error[_ngcontent-tnh-c147] {
  195. background: Tomato;
  196. }
  197. ul[_ngcontent-tnh-c147] li.warning[_ngcontent-tnh-c147] {
  198. background: #FF7900;
  199. }
  200. ul[_ngcontent-tnh-c147] li.success[_ngcontent-tnh-c147] {
  201. background: #4BB543;
  202. }
  203. ul[_ngcontent-tnh-c147] li.info[_ngcontent-tnh-c147] {
  204. background: #3264a0;
  205. }
  206. ul[_ngcontent-tnh-c147] li[_ngcontent-tnh-c147]:after {
  207. background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.2));
  208. position: absolute;
  209. top: 0;
  210. left: 0;
  211. width: 100%;
  212. height: 100%;
  213. content: "";
  214. }
  215. ul[_ngcontent-tnh-c147] li.fading[_ngcontent-tnh-c147] {
  216. opacity: 0;
  217. transition: 0.5s all;
  218. }
  219. @charset "UTF-8";
  220. [_nghost-tnh-c138] {
  221. display: grid;
  222. grid-template-rows: auto 150px 100px 100px 200px auto;
  223. grid-template-columns: auto 500px auto;
  224. height: 100vh;
  225. background: linear-gradient(to bottom, rgba(50, 100, 160, 0.1), rgba(50, 100, 160, 0.1)), url("/assets/images/gunbg.png");
  226. }
  227. [_nghost-tnh-c138] .bg-footer[_ngcontent-tnh-c138] {
  228. grid-row-start: 4;
  229. grid-row-end: -1;
  230. grid-column-start: 1;
  231. grid-column-end: -1;
  232. background: #24282e;
  233. }
  234. [_nghost-tnh-c138] header[_ngcontent-tnh-c138] {
  235. background: url("/assets/images/serverlogo_big.png") no-repeat center;
  236. background-position-y: 0;
  237. grid-column: 2/span 1;
  238. grid-row: 2/span 1;
  239. }
  240. [_nghost-tnh-c138] main.small[_ngcontent-tnh-c138] {
  241. grid-row: 3/span 1;
  242. }
  243. [_nghost-tnh-c138] main.small[_ngcontent-tnh-c138] button[_ngcontent-tnh-c138] {
  244. margin-top: -10px;
  245. }
  246. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] {
  247. grid-row: 3/span 2;
  248. grid-column: 2/span 1;
  249. z-index: 1;
  250. }
  251. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] a[_ngcontent-tnh-c138] {
  252. color: #fff;
  253. text-decoration: none;
  254. }
  255. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] a[_ngcontent-tnh-c138]:hover {
  256. margin-top: -1px;
  257. }
  258. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] {
  259. background: #34373d;
  260. color: #eee;
  261. box-shadow: 0px 0px 20px 3px rgba(5, 5, 0, 0.2);
  262. border-radius: 5px;
  263. width: 400px;
  264. height: 100%;
  265. margin: auto;
  266. display: grid;
  267. grid-template-columns: -webkit-min-content auto;
  268. grid-template-columns: min-content auto;
  269. padding: 20px;
  270. }
  271. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] .label[_ngcontent-tnh-c138] {
  272. background: #3264a0;
  273. color: #eee;
  274. grid-column-start: 1;
  275. height: 16px;
  276. padding: 10px;
  277. border-radius: 5px 0 0 5px;
  278. }
  279. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138] {
  280. margin-bottom: 20px;
  281. font-size: 15px;
  282. padding: 8px;
  283. background: #43474c;
  284. color: #eee;
  285. border: none;
  286. height: 20px;
  287. border-radius: 0 5px 5px 0;
  288. }
  289. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]::-webkit-input-placeholder {
  290. color: #ddd;
  291. }
  292. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]::-moz-placeholder {
  293. color: #ddd;
  294. }
  295. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]:-ms-input-placeholder {
  296. color: #ddd;
  297. }
  298. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]::-ms-input-placeholder {
  299. color: #ddd;
  300. }
  301. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]::placeholder {
  302. color: #ddd;
  303. }
  304. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] input[_ngcontent-tnh-c138]:focus {
  305. outline: 0;
  306. }
  307. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] .checkbox[_ngcontent-tnh-c138] {
  308. -webkit-appearance: none;
  309. background-color: #fafafa;
  310. border: 1px solid #cacece;
  311. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  312. padding: 9px;
  313. border-radius: 3px;
  314. display: inline-block;
  315. position: relative;
  316. margin: 0;
  317. cursor: pointer;
  318. }
  319. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] .checkbox[_ngcontent-tnh-c138]:checked {
  320. background-color: #e9ecee;
  321. border: 1px solid #adb8c0;
  322. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  323. color: #99a1a7;
  324. }
  325. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fieldset[_ngcontent-tnh-c138] .checkbox[_ngcontent-tnh-c138]:checked:after {
  326. content: "✔";
  327. font-size: 14px;
  328. position: absolute;
  329. top: 0;
  330. left: 3px;
  331. color: #99a1a7;
  332. }
  333. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] button[_ngcontent-tnh-c138] {
  334. padding: 8px;
  335. border: 0;
  336. font-size: 14px;
  337. cursor: pointer;
  338. background: #3264a0;
  339. color: white;
  340. width: 100%;
  341. border-radius: 5px;
  342. height: 40px;
  343. margin-top: 15px;
  344. }
  345. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] button[_ngcontent-tnh-c138]:disabled,
  346. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] button[disabled][_ngcontent-tnh-c138] {
  347. background: #888 !important;
  348. }
  349. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] .fat[_ngcontent-tnh-c138] {
  350. grid-column: 1/span 2;
  351. }
  352. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] footer[_ngcontent-tnh-c138] {
  353. text-align: center;
  354. margin-top: 10px;
  355. font-size: 14px;
  356. }
  357. [_nghost-tnh-c138] main[_ngcontent-tnh-c138] footer[_ngcontent-tnh-c138] a[_ngcontent-tnh-c138] {
  358. text-decoration: none;
  359. color: #aaa;
  360. margin: 0 20px 0 20px;
  361. }
  362. [_nghost-tnh-c137] {
  363. grid-row-start: 1;
  364. grid-row-end: 4;
  365. position: relative;
  366. background: #24282e;
  367. }
  368. [_nghost-tnh-c137] #panel[_ngcontent-tnh-c137] {
  369. background: #24282e;
  370. width: 230px;
  371. transition: all 0.3s;
  372. z-index: 3;
  373. }
  374. [_nghost-tnh-c137] #panel[_ngcontent-tnh-c137] *[_ngcontent-tnh-c137] {
  375. white-space: nowrap;
  376. }
  377. .phone-header[_ngcontent-tnh-c137] {
  378. display: none;
  379. }
  380. #panel.compact[_ngcontent-tnh-c137] {
  381. width: 50px;
  382. }
  383. #panel.compact[_ngcontent-tnh-c137] .category[_ngcontent-tnh-c137] {
  384. display: none;
  385. }
  386. #panel.compact[_ngcontent-tnh-c137] .user[_ngcontent-tnh-c137] {
  387. padding: 0;
  388. }
  389. #panel.compact[_ngcontent-tnh-c137] .user[_ngcontent-tnh-c137] .name[_ngcontent-tnh-c137],
  390. #panel.compact[_ngcontent-tnh-c137] .user[_ngcontent-tnh-c137] .description[_ngcontent-tnh-c137] {
  391. display: none;
  392. }
  393. #panel.compact[_ngcontent-tnh-c137] .user[_ngcontent-tnh-c137] .avatar[_ngcontent-tnh-c137] {
  394. width: 50px;
  395. height: 50px;
  396. border-radius: 0;
  397. }
  398. #panel.compact[_ngcontent-tnh-c137] .user[_ngcontent-tnh-c137] .icons[_ngcontent-tnh-c137] {
  399. display: none;
  400. }
  401. #panel.compact[_ngcontent-tnh-c137] .menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] {
  402. font-size: 1.25em;
  403. }
  404. #panel.compact[_ngcontent-tnh-c137] .menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] .link-label[_ngcontent-tnh-c137] {
  405. display: none;
  406. }
  407. #panel.compact[_ngcontent-tnh-c137] .phone-header[_ngcontent-tnh-c137] {
  408. margin: 3px;
  409. font-size: 1.25em;
  410. }
  411. @media only screen and (max-width: 800px) {
  412. #panel[_ngcontent-tnh-c137] {
  413. position: fixed;
  414. top: 0;
  415. left: 0;
  416. width: 230px;
  417. height: 100%;
  418. overflow-y: scroll;
  419. }
  420. header[_ngcontent-tnh-c137] {
  421. display: none;
  422. }
  423. .phone-header[_ngcontent-tnh-c137] {
  424. color: white;
  425. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  426. padding: 10px;
  427. margin: 10px;
  428. display: block;
  429. }
  430. }
  431. header[_ngcontent-tnh-c137] {
  432. color: #fff;
  433. z-index: 5;
  434. background-image: url('/assets/images/serverlogo.png');
  435. background-repeat: no-repeat;
  436. background-size: 90%;
  437. background-position: center;
  438. padding: 27px;
  439. height: 50px;
  440. }
  441. header[_ngcontent-tnh-c137] h1[_ngcontent-tnh-c137] {
  442. font-size: 20px;
  443. display: none;
  444. }
  445. .user[_ngcontent-tnh-c137] {
  446. width: 100%;
  447. padding: 10px 10px 10px 10px;
  448. background: #24282e;
  449. position: relative;
  450. box-sizing: border-box;
  451. font-size: 1em;
  452. }
  453. .user[_ngcontent-tnh-c137] .avatar[_ngcontent-tnh-c137] {
  454. width: 45px;
  455. height: 45px;
  456. display: inline-block;
  457. }
  458. .user[_ngcontent-tnh-c137] .avatar[_ngcontent-tnh-c137] img[_ngcontent-tnh-c137] {
  459. width: 100%;
  460. height: 100%;
  461. border-radius: 50px;
  462. }
  463. .user[_ngcontent-tnh-c137] .description[_ngcontent-tnh-c137] {
  464. display: inline-block;
  465. vertical-align: top;
  466. padding-left: 10px;
  467. color: white;
  468. line-height: 1;
  469. }
  470. .user[_ngcontent-tnh-c137] .description[_ngcontent-tnh-c137] .rank[_ngcontent-tnh-c137] {
  471. color: rgba(255, 255, 255, 0.75);
  472. display: block;
  473. line-height: 1;
  474. font-size: 1em;
  475. }
  476. .user[_ngcontent-tnh-c137] .icons[_ngcontent-tnh-c137] {
  477. color: rgba(255, 255, 255, 0.75);
  478. display: inline;
  479. position: absolute;
  480. bottom: 10px;
  481. right: 10px;
  482. text-align: right;
  483. }
  484. .user[_ngcontent-tnh-c137] .icons[_ngcontent-tnh-c137] a[_ngcontent-tnh-c137] {
  485. margin-left: 5px;
  486. cursor: pointer;
  487. }
  488. .user[_ngcontent-tnh-c137] .icons[_ngcontent-tnh-c137] .icon[_ngcontent-tnh-c137]:hover {
  489. color: white;
  490. }
  491. .user[_ngcontent-tnh-c137] .icons[_ngcontent-tnh-c137] .selected[_ngcontent-tnh-c137] {
  492. color: #ffffff !important;
  493. border-bottom: 3px solid #3264a0;
  494. }
  495. .category[_ngcontent-tnh-c137] {
  496. background: #24282e;
  497. padding: 10px;
  498. margin-top: 5px;
  499. cursor: pointer;
  500. -webkit-user-select: none;
  501. -moz-user-select: none;
  502. -ms-user-select: none;
  503. user-select: none;
  504. }
  505. .category[_ngcontent-tnh-c137] h2[_ngcontent-tnh-c137] {
  506. font-size: 1em;
  507. font-weight: bold;
  508. color: white;
  509. text-align: left;
  510. }
  511. .category[_ngcontent-tnh-c137] .change[_ngcontent-tnh-c137] {
  512. text-align: center;
  513. text-decoration: none;
  514. font-size: 10px;
  515. }
  516. .category[_ngcontent-tnh-c137] .collapse[_ngcontent-tnh-c137] {
  517. float: right;
  518. color: rgba(255, 255, 255, 0.8);
  519. }
  520. .category[_ngcontent-tnh-c137] .collapse[_ngcontent-tnh-c137]:hover {
  521. color: white;
  522. }
  523. ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] {
  524. color: rgba(255, 255, 255, 0.9);
  525. padding: 5px 5px 5px 10px;
  526. margin-top: 5px;
  527. cursor: pointer;
  528. font-size: 1em;
  529. list-style-type: none;
  530. outline: none;
  531. }
  532. ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] a[_ngcontent-tnh-c137] {
  533. text-decoration: none;
  534. color: inherit;
  535. }
  536. ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] .link-label[_ngcontent-tnh-c137] {
  537. margin-left: 10px;
  538. }
  539. ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137] svg[_ngcontent-tnh-c137] {
  540. color: rgba(255, 255, 255, 0.5);
  541. }
  542. ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137]:hover {
  543. color: white;
  544. }
  545. ul.menu[_ngcontent-tnh-c137] li.selected[_ngcontent-tnh-c137] {
  546. border-left: 3px solid #3264a0;
  547. padding-left: 7px;
  548. color: white;
  549. }
  550. ul.menu[_ngcontent-tnh-c137] li.selected[_ngcontent-tnh-c137] svg[_ngcontent-tnh-c137] {
  551. color: white;
  552. }
  553. ul.menu[_ngcontent-tnh-c137] li[_ngcontent-tnh-c137]:last-child {
  554. margin-bottom: 20px !important;
  555. }
  556. .controlpanel[_ngcontent-tnh-c137] {
  557. position: relative;
  558. z-index: 1;
  559. text-shadow: 0 0 5px black;
  560. font-size: 15px;
  561. }
  562. .controlpanel[_ngcontent-tnh-c137]:before {
  563. content: "";
  564. width: 100%;
  565. height: 100%;
  566. position: absolute;
  567. top: 0;
  568. left: 0;
  569. background-image: url("/assets/images/controlpanel.png");
  570. z-index: -1;
  571. opacity: 1;
  572. }
  573. .gov[_ngcontent-tnh-c137] {
  574. position: relative;
  575. z-index: 1;
  576. text-shadow: 0 0 5px black;
  577. font-size: 15px;
  578. }
  579. .gov[_ngcontent-tnh-c137]:before {
  580. content: "";
  581. width: 100%;
  582. height: 100%;
  583. position: absolute;
  584. top: 0;
  585. left: 0;
  586. background-image: url("/assets/images/gov-menu.png");
  587. z-index: -1;
  588. opacity: 0.5;
  589. }
  590. @media only screen and (max-width: 800px) {
  591. [_nghost-tnh-c140] {
  592. grid-row: 1/span 1 !important;
  593. grid-column: 1/span 1 !important;
  594. }
  595. #wrapper[_ngcontent-tnh-c140] {
  596. grid-template-columns: auto 175px auto 100px !important;
  597. }
  598. }
  599. [_nghost-tnh-c140] {
  600. padding: 4px;
  601. background: #323439;
  602. z-index: 1;
  603. position: relative;
  604. font-size: 14px;
  605. }
  606. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] {
  607. display: grid;
  608. padding: 5px;
  609. overflow: auto;
  610. grid-template-columns: auto -webkit-min-content;
  611. grid-template-columns: auto min-content;
  612. width: 100%;
  613. }
  614. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] {
  615. font-weight: bold;
  616. text-align: right;
  617. margin: 0px 10px 0 0px;
  618. cursor: pointer;
  619. font-size: 1em;
  620. display: flex;
  621. align-items: center;
  622. white-space: nowrap;
  623. }
  624. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .user[_ngcontent-tnh-c140] {
  625. display: flex;
  626. align-content: center;
  627. font-weight: 500;
  628. cursor: pointer;
  629. }
  630. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .user[_ngcontent-tnh-c140] .avatar[_ngcontent-tnh-c140] {
  631. border-radius: 50%;
  632. background-size: 100%;
  633. height: 30px;
  634. width: 30px;
  635. position: relative;
  636. margin-left: 10px;
  637. }
  638. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .user[_ngcontent-tnh-c140] .avatar[_ngcontent-tnh-c140] .dropdown[_ngcontent-tnh-c140] {
  639. color: white;
  640. position: absolute;
  641. bottom: -5px;
  642. right: -5px;
  643. }
  644. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .user[_ngcontent-tnh-c140] .name[_ngcontent-tnh-c140] {
  645. color: white;
  646. line-height: 1.2;
  647. }
  648. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .user[_ngcontent-tnh-c140] .name[_ngcontent-tnh-c140] .rank[_ngcontent-tnh-c140] {
  649. color: #ddd;
  650. font-weight: 400;
  651. }
  652. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .icon-group[_ngcontent-tnh-c140] {
  653. display: inline-block;
  654. position: relative;
  655. }
  656. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .icon[_ngcontent-tnh-c140] {
  657. margin: 0 0 0 10px;
  658. color: #eee;
  659. background: rgba(255, 255, 255, 0.1);
  660. padding: 10px;
  661. border-radius: 50px;
  662. position: relative;
  663. }
  664. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .icon[_ngcontent-tnh-c140]:hover {
  665. cursor: pointer;
  666. background: rgba(255, 255, 255, 0.2);
  667. }
  668. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .notice[_ngcontent-tnh-c140] {
  669. font-size: 0.9em;
  670. line-height: 1.5em;
  671. background: red;
  672. width: 18px;
  673. height: 18px;
  674. text-align: center;
  675. border-radius: 20px;
  676. position: absolute;
  677. right: 0;
  678. color: rgba(255, 255, 255, 0.6);
  679. top: 0;
  680. }
  681. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .icons[_ngcontent-tnh-c140] .seen[_ngcontent-tnh-c140] {
  682. background: white;
  683. color: #444;
  684. }
  685. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .links[_ngcontent-tnh-c140] {
  686. margin: 3px 0 0 0;
  687. list-style: none;
  688. }
  689. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .links[_ngcontent-tnh-c140] li[_ngcontent-tnh-c140] {
  690. display: inline-block;
  691. margin-right: 10px;
  692. color: rgba(255, 255, 255, 0.5);
  693. background: rgba(255, 255, 255, 0.1);
  694. padding: 5px 10px;
  695. border-radius: 5px;
  696. font-size: 1em;
  697. }
  698. [_nghost-tnh-c140] #wrapper[_ngcontent-tnh-c140] .links[_ngcontent-tnh-c140] li[_ngcontent-tnh-c140]:hover {
  699. cursor: pointer;
  700. background: rgba(255, 255, 255, 0.2);
  701. color: rgba(255, 255, 255, 0.8);
  702. }
  703. .social[_ngcontent-tnh-c140] {
  704. margin: 3px 0 0 20px;
  705. }
  706. .social[_ngcontent-tnh-c140] .discord[_ngcontent-tnh-c140]:hover {
  707. color: #7289da;
  708. }
  709. .social[_ngcontent-tnh-c140] .teamspeak[_ngcontent-tnh-c140]:hover {
  710. color: #87acba;
  711. }
  712. .social[_ngcontent-tnh-c140] .youtube[_ngcontent-tnh-c140]:hover {
  713. color: red;
  714. }
  715. .social[_ngcontent-tnh-c140] .twitter[_ngcontent-tnh-c140]:hover {
  716. color: #00aced;
  717. }
  718. .social[_ngcontent-tnh-c140]>*[_ngcontent-tnh-c140] {
  719. background: rgba(255, 255, 255, 0.1);
  720. padding: 5px;
  721. border-radius: 5px;
  722. margin: 0 5px 0 5px;
  723. color: rgba(255, 255, 255, 0.5);
  724. }
  725. .social[_ngcontent-tnh-c140]>*[_ngcontent-tnh-c140]:hover {
  726. cursor: pointer;
  727. background: rgba(255, 255, 255, 0.2);
  728. }
  729. [_nghost-tnh-c139] {
  730. padding: 10px;
  731. font-size: 0.8em;
  732. color: rgba(0, 0, 0, 0.5);
  733. height: 1fr;
  734. background: linear-gradient(to bottom, #eee, #f5f5f5);
  735. text-align: center;
  736. }
  737. [_nghost-tnh-c139] .links[_ngcontent-tnh-c139] a[_ngcontent-tnh-c139] {
  738. text-decoration: none;
  739. padding: 0 10px;
  740. }
  741. .container[_ngcontent-tnh-c207] {
  742. position: absolute;
  743. background: white;
  744. right: 60px;
  745. min-width: 300px;
  746. top: 60px;
  747. box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
  748. text-align: left;
  749. cursor: default;
  750. font-size: 16px;
  751. padding: 10px;
  752. box-sizing: border-box;
  753. font-weight: 400;
  754. display: grid;
  755. grid-template-columns: 80px auto;
  756. grid-gap: 10px;
  757. z-index: 5;
  758. }
  759. .avatar[_ngcontent-tnh-c207] {
  760. width: 80px;
  761. height: 80px;
  762. }
  763. .menu[_ngcontent-tnh-c207] {
  764. float: right;
  765. display: inline-block;
  766. }
  767. .menu[_ngcontent-tnh-c207] .menu-icon[_ngcontent-tnh-c207] {
  768. color: #666;
  769. padding-left: 10px;
  770. cursor: pointer;
  771. }
  772. .menu[_ngcontent-tnh-c207] .menu-icon[_ngcontent-tnh-c207]:hover {
  773. color: black;
  774. }
  775. .characters[_ngcontent-tnh-c207] {
  776. border-top: 1px solid #ddd;
  777. grid-column: 1/-1;
  778. padding-top: 10px;
  779. }
  780. .characters[_ngcontent-tnh-c207] .character[_ngcontent-tnh-c207] {
  781. display: inline-block;
  782. width: 25px;
  783. height: 25px;
  784. background-size: 300%;
  785. background-position: center top 3px;
  786. background-repeaT: no-repeat;
  787. border-radius: 50%;
  788. background-color: #ddd;
  789. margin-right: 5px;
  790. cursor: pointer;
  791. }
  792. [_nghost-tnh-c159] {
  793. position: absolute;
  794. top: 55px;
  795. left: 0;
  796. width: 100%;
  797. height: 5px;
  798. background: #f6f6f6;
  799. }
  800. [_nghost-tnh-c159] .loadingbar[_ngcontent-tnh-c159] {
  801. width: 100%;
  802. height: 100%;
  803. }
  804. [_nghost-tnh-c159] .active[_ngcontent-tnh-c159] {
  805. background: linear-gradient(182deg, #3264a0, #eaf4ff);
  806. background-size: 400% 400%;
  807. -webkit-animation: LoadingSlider 2s ease infinite;
  808. animation: LoadingSlider 2s ease infinite;
  809. }
  810. @-webkit-keyframes LoadingSlider {
  811. 0% {
  812. background-position: 68% 0%;
  813. }
  814. 50% {
  815. background-position: 33% 100%;
  816. }
  817. 100% {
  818. background-position: 68% 0%;
  819. }
  820. }
  821. @keyframes LoadingSlider {
  822. 0% {
  823. background-position: 68% 0%;
  824. }
  825. 50% {
  826. background-position: 33% 100%;
  827. }
  828. 100% {
  829. background-position: 68% 0%;
  830. }
  831. }
  832. .active[_ngcontent-tnh-c150] {
  833. visibility: visible !important;
  834. }
  835. .notifications[_ngcontent-tnh-c150]:after {
  836. background: white;
  837. width: 20px;
  838. height: 20px;
  839. pointer-events: none;
  840. border-radius: 3px;
  841. position: absolute;
  842. right: 10px;
  843. top: 0;
  844. transform: rotate(45deg);
  845. content: "";
  846. }
  847. .notifications[_ngcontent-tnh-c150] {
  848. visibility: hidden;
  849. position: absolute;
  850. right: 10px;
  851. top: 50px;
  852. background: white;
  853. border-radius: 5px;
  854. box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.1);
  855. }
  856. .notifications[_ngcontent-tnh-c150] header[_ngcontent-tnh-c150] {
  857. padding: 15px 10px 10px 17px;
  858. border-bottom: 1px solid #eee;
  859. }
  860. .notifications[_ngcontent-tnh-c150] header[_ngcontent-tnh-c150] h2[_ngcontent-tnh-c150] {
  861. display: inline;
  862. font-size: 1em;
  863. font-weight: 500;
  864. color: #888;
  865. }
  866. .notifications[_ngcontent-tnh-c150] header[_ngcontent-tnh-c150] .close[_ngcontent-tnh-c150] {
  867. margin-top: 4px;
  868. margin-left: 10px;
  869. }
  870. .notifications[_ngcontent-tnh-c150] footer[_ngcontent-tnh-c150] {
  871. color: #333;
  872. background: #eee;
  873. padding: 10px;
  874. border-radius: 0 0 8px 8px;
  875. }
  876. .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] {
  877. padding: 10px;
  878. }
  879. .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li[_ngcontent-tnh-c150] {
  880. list-style: none;
  881. margin-bottom: 5px;
  882. padding: 5px;
  883. display: flex;
  884. }
  885. .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li[_ngcontent-tnh-c150] .label[_ngcontent-tnh-c150] {
  886. font-weight: 500;
  887. }
  888. .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li[_ngcontent-tnh-c150] .label[_ngcontent-tnh-c150] .time[_ngcontent-tnh-c150] {
  889. display: block;
  890. color: #888;
  891. }
  892. .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li[_ngcontent-tnh-c150] .icon[_ngcontent-tnh-c150] {
  893. background: #3264a0;
  894. color: white;
  895. border-radius: 50px;
  896. height: -webkit-min-content;
  897. height: -moz-min-content;
  898. height: min-content;
  899. padding: 10px 8px;
  900. margin-right: 15px;
  901. }
  902. .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li.read[_ngcontent-tnh-c150] {
  903. background: transparent;
  904. }
  905. .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li.read[_ngcontent-tnh-c150] .label[_ngcontent-tnh-c150] {
  906. font-weight: 400;
  907. }
  908. .notifications[_ngcontent-tnh-c150] ul[_ngcontent-tnh-c150] li.read[_ngcontent-tnh-c150] .icon[_ngcontent-tnh-c150] {
  909. background: #eee;
  910. color: black;
  911. }
  912. .frozen[_ngcontent-tnh-c142] {
  913. -webkit-filter: grayscale(90%);
  914. filter: grayscale(90%);
  915. }
  916. .character_preview[_ngcontent-tnh-c142] {
  917. background-color: #fff;
  918. background-repeat: no-repeat;
  919. background-position: -110px 30px;
  920. min-height: 200px;
  921. cursor: pointer;
  922. line-height: normal;
  923. box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.15);
  924. padding: 15px;
  925. box-sizing: border-box;
  926. }
  927. .character_preview[_ngcontent-tnh-c142] .character_ic_info[_ngcontent-tnh-c142] {
  928. float: right;
  929. padding-top: 10px;
  930. padding-right: 10px;
  931. line-height: normal;
  932. text-shadow: 0 0 9px #fff;
  933. min-width: 50%;
  934. }
  935. .character_preview[_ngcontent-tnh-c142] .character_ic_info[_ngcontent-tnh-c142] .key[_ngcontent-tnh-c142] {
  936. display: block;
  937. font-size: 12px;
  938. text-transform: uppercase;
  939. line-height: normal;
  940. margin-right: 20px;
  941. }
  942. .character_preview[_ngcontent-tnh-c142] .character_ic_info[_ngcontent-tnh-c142] .value[_ngcontent-tnh-c142] {
  943. display: block;
  944. font-size: 14px;
  945. font-weight: bold;
  946. margin-bottom: 5px;
  947. line-height: normal;
  948. }
  949. .app-info[_ngcontent-tnh-c142] {
  950. margin-left: 150px;
  951. display: block;
  952. }
  953. [_nghost-tnh-c219] .map-section[_ngcontent-tnh-c219] {
  954. width: 100%;
  955. height: 100%;
  956. background-repeat: no-repeat;
  957. position: relative;
  958. display: block;
  959. }
  960. [_nghost-tnh-c219] .map-section[_ngcontent-tnh-c219] .marker[_ngcontent-tnh-c219] {
  961. width: 16px;
  962. height: 16px;
  963. position: absolute;
  964. top: 50px;
  965. left: calc(50% - 8px);
  966. }
  967. [_nghost-tnh-c219] .map-section[_ngcontent-tnh-c219] .marker.house[_ngcontent-tnh-c219] {
  968. background: url("./mapicons/house.gif");
  969. background-size: 100%;
  970. background-repeat: no-repeat;
  971. }
  972. [_nghost-tnh-c219] .map-section[_ngcontent-tnh-c219] .marker.housered[_ngcontent-tnh-c219] {
  973. background: url("./mapicons/housered.gif");
  974. background-size: 100%;
  975. background-repeat: no-repeat;
  976. }
  977. [_nghost-tnh-c219] .vector[_ngcontent-tnh-c219] {
  978. background-image: url("https://mmrtn.net/map/res/img/mapa.svg");
  979. color: black;
  980. }
  981. .frozen[_ngcontent-tnh-c145]>*[_ngcontent-tnh-c145] {
  982. -webkit-filter: grayscale(80%);
  983. filter: grayscale(80%);
  984. }
  985. .header[_ngcontent-tnh-c145] {
  986. -webkit-filter: none !important;
  987. filter: none !important;
  988. }
  989. .property[_ngcontent-tnh-c145] {
  990. box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2);
  991. }
  992. .map-buttons[_ngcontent-tnh-c145] {
  993. float: right;
  994. display: inline-block;
  995. }
  996. .address[_ngcontent-tnh-c145] {
  997. font-size: 14px;
  998. }
  999. .marker[_ngcontent-tnh-c145] {
  1000. width: 16px;
  1001. height: 16px;
  1002. position: absolute;
  1003. top: calc(50% - 18px);
  1004. left: calc(50% - 8px);
  1005. }
  1006. .marker.house[_ngcontent-tnh-c145] {
  1007. background: url("./mapicons/house.gif");
  1008. background-size: 100%;
  1009. background-repeat: no-repeat;
  1010. }
  1011. .marker.housered[_ngcontent-tnh-c145] {
  1012. background: url("./mapicons/housered.gif");
  1013. background-size: 100%;
  1014. background-repeat: no-repeat;
  1015. }
  1016. .vehicle[_ngcontent-tnh-c145] {
  1017. height: 220px;
  1018. padding: 10px;
  1019. background-color: rgba(186, 224, 247, 0.7);
  1020. border-radius: 0px;
  1021. box-shadow: 2px 2px 7px 0 rgba(0, 0, 0, 0.15);
  1022. }
  1023. [_nghost-tnh-c216] {
  1024. text-transform: uppercase;
  1025. font-size: 12px;
  1026. font-weight: 500;
  1027. letter-spacing: 1px;
  1028. border: 0;
  1029. display: inline-block;
  1030. white-space: nowrap;
  1031. position: relative;
  1032. }
  1033. [_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1034. padding: 8px 8px 8px 8px;
  1035. border-radius: 3px;
  1036. box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  1037. position: relative;
  1038. background: white;
  1039. }
  1040. *[_ngcontent-tnh-c216]:disabled {
  1041. pointer-events: none;
  1042. color: red !important;
  1043. }
  1044. .button[_ngcontent-tnh-c216]:hover {
  1045. -webkit-transform: scale(0.98);
  1046. }
  1047. .green[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1048. background: linear-gradient(#61cf55, #57af4b);
  1049. color: white;
  1050. }
  1051. .red[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1052. background: linear-gradient(#ff3838, #d13636);
  1053. color: white;
  1054. }
  1055. .grey[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1056. background: linear-gradient(#333, #222);
  1057. color: white;
  1058. }
  1059. .no-shadow[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1060. box-shadow: none !important;
  1061. }
  1062. .tomato[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1063. background: linear-gradient(Tomato, #d95a3e);
  1064. color: white;
  1065. }
  1066. .tomato-text[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1067. color: Tomato;
  1068. }
  1069. .thin[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1070. padding: 4px 4px 4px 2px;
  1071. }
  1072. .blue[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1073. background: linear-gradient(#3264a0, #325d99);
  1074. color: white;
  1075. }
  1076. .shadow[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1077. box-shadow: 2px 2px 10px 3px rgba(0, 0, 0, 0.25);
  1078. }
  1079. .blue-border[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1080. border: 2px solid #31425C;
  1081. }
  1082. .border-radius-right[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1083. border-radius: 0 5px 5px 0;
  1084. }
  1085. .icon[_ngcontent-tnh-c216] {
  1086. display: inline-block;
  1087. padding-left: 4px;
  1088. padding-right: 4px !important;
  1089. }
  1090. .caption[_ngcontent-tnh-c216] {
  1091. display: inline-block;
  1092. padding-left: 4px;
  1093. padding-right: 4px;
  1094. }
  1095. .right[_ngcontent-tnh-c216] {
  1096. padding: 8px 4px 8px 8px !important;
  1097. }
  1098. .right[_ngcontent-tnh-c216] .icon[_ngcontent-tnh-c216] {
  1099. float: right;
  1100. }
  1101. .btn-wrapper[_ngcontent-tnh-c216] {
  1102. cursor: pointer;
  1103. }
  1104. .btn-wrapper.disabled[_ngcontent-tnh-c216] {
  1105. cursor: not-allowed;
  1106. -webkit-filter: grayscale(100%);
  1107. filter: grayscale(100%);
  1108. }
  1109. .btn-wrapper.disabled[_ngcontent-tnh-c216] .button[_ngcontent-tnh-c216] {
  1110. pointer-events: none;
  1111. }
  1112. .more[_ngcontent-tnh-c216] {
  1113. visibility: hidden;
  1114. opacity: 0;
  1115. position: absolute;
  1116. right: 0px;
  1117. top: calc(100% + 10px);
  1118. color: #888;
  1119. box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.15);
  1120. z-index: 2;
  1121. background: white;
  1122. padding: 10px;
  1123. list-style: none;
  1124. border-radius: 3px;
  1125. font-size: 14px;
  1126. transition: opacity 0.2s;
  1127. }
  1128. .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216]:not(:last-child) {
  1129. border-bottom: 1px solid #eee;
  1130. padding-bottom: 5px;
  1131. margin-bottom: 5px;
  1132. }
  1133. .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216] {
  1134. text-transform: none;
  1135. font-weight: 500;
  1136. }
  1137. .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216]:hover {
  1138. color: #333;
  1139. }
  1140. .moreVisible[_ngcontent-tnh-c216] {
  1141. visibility: visible;
  1142. opacity: 1;
  1143. }
  1144. .preview[_ngcontent-tnh-c164] {
  1145. height: 200px;
  1146. position: relative;
  1147. background-color: rgba(186, 224, 247, 0.5);
  1148. }
  1149. .marker[_ngcontent-tnh-c164] {
  1150. width: 16px;
  1151. height: 16px;
  1152. position: absolute;
  1153. top: calc(50% - 8px);
  1154. left: calc(50% - 8px);
  1155. color: white;
  1156. }
  1157. .previewContainer[_ngcontent-tnh-c166] {
  1158. position: relative;
  1159. width: 100%;
  1160. height: 100%;
  1161. }
  1162. .loader[_ngcontent-tnh-c166] {
  1163. text-align: center;
  1164. width: 100%;
  1165. box-sizing: border-box;
  1166. position: absolute;
  1167. top: 45%;
  1168. left: 0;
  1169. opacity: 0.7;
  1170. text-transform: uppercase;
  1171. font-weight: bold;
  1172. }
  1173. .preview[_ngcontent-tnh-c166] {
  1174. background-size: contain;
  1175. background-repeat: no-repeat;
  1176. background-position: center;
  1177. position: absolute;
  1178. }
  1179. .infobar[_ngcontent-tnh-c215] {
  1180. display: block;
  1181. float: left;
  1182. position: relative;
  1183. width: 100%;
  1184. background: white;
  1185. box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.15);
  1186. }
  1187. .error[_ngcontent-tnh-c215] {
  1188. border-top: 3px solid Tomato;
  1189. }
  1190. .error[_ngcontent-tnh-c215] .icon[_ngcontent-tnh-c215] {
  1191. color: Tomato;
  1192. }
  1193. .warning[_ngcontent-tnh-c215] {
  1194. border-top: 3px solid orange;
  1195. }
  1196. .warning[_ngcontent-tnh-c215] .icon[_ngcontent-tnh-c215] {
  1197. color: orange;
  1198. }
  1199. .success[_ngcontent-tnh-c215] {
  1200. border-top: 3px solid #4BB543;
  1201. }
  1202. .success[_ngcontent-tnh-c215] .icon[_ngcontent-tnh-c215] {
  1203. color: #4BB543;
  1204. }
  1205. .info[_ngcontent-tnh-c215] {
  1206. border-top: 3px solid #3264a0;
  1207. }
  1208. .info[_ngcontent-tnh-c215] .icon[_ngcontent-tnh-c215] {
  1209. color: #3264a0;
  1210. }
  1211. .icon[_ngcontent-tnh-c215] {
  1212. display: inline-block;
  1213. border-right: 1px solid #eee;
  1214. padding: 4px 8px;
  1215. margin: 4px 5px 4px 0;
  1216. float: left;
  1217. position: absolute;
  1218. top: 0;
  1219. bottom: 0;
  1220. }
  1221. .message[_ngcontent-tnh-c215] {
  1222. display: inline-block;
  1223. padding: 8px;
  1224. color: #333;
  1225. width: calc(100% - 55px);
  1226. float: right;
  1227. }
  1228. .layer[_ngcontent-tnh-c154] {
  1229. background: rgba(255, 255, 255, 0.9);
  1230. width: 100%;
  1231. height: 100%;
  1232. }
  1233. .container[_ngcontent-tnh-c154] {
  1234. width: 100%;
  1235. height: 700px;
  1236. overflow: hidden;
  1237. }
  1238. [_nghost-tnh-c154] {
  1239. position: relative;
  1240. overflow: hidden;
  1241. }
  1242. .content[_ngcontent-tnh-c154] {
  1243. position: relative;
  1244. }
  1245. .character[_ngcontent-tnh-c154] {
  1246. color: #333;
  1247. }
  1248. .players[_ngcontent-tnh-c154]>li[_ngcontent-tnh-c154] {
  1249. display: inline;
  1250. }
  1251. .players[_ngcontent-tnh-c154]>li[_ngcontent-tnh-c154]:after {
  1252. content: " ";
  1253. }
  1254. .players[_ngcontent-tnh-c154]>li[_ngcontent-tnh-c154]:nth-last-child(1):after {
  1255. content: "";
  1256. }
  1257. .charname[_ngcontent-tnh-c154] {
  1258. color: #888;
  1259. }
  1260. .charname[_ngcontent-tnh-c154]:before {
  1261. content: "(";
  1262. }
  1263. .charname[_ngcontent-tnh-c154]:after {
  1264. content: ")";
  1265. }
  1266. .alternate[_ngcontent-tnh-c154]>li[_ngcontent-tnh-c154]:nth-child(odd) {
  1267. color: #888;
  1268. font-weight: bold;
  1269. }
  1270. .preview[_ngcontent-tnh-c163] {
  1271. background: linear-gradient(to bottom, #cde2ef, #bae0f7);
  1272. padding: 10px;
  1273. color: #336699;
  1274. position: relative;
  1275. height: 380px;
  1276. }
  1277. .preview[_ngcontent-tnh-c163] .scene[_ngcontent-tnh-c163] {
  1278. position: absolute;
  1279. top: 0;
  1280. left: 35%;
  1281. width: 100%;
  1282. height: 100%;
  1283. border: 0;
  1284. }
  1285. .preview[_ngcontent-tnh-c163] .header[_ngcontent-tnh-c163] {
  1286. font-weight: bold;
  1287. position: absolute;
  1288. top: 15px;
  1289. left: 15px;
  1290. font-size: 16px !important;
  1291. padding-bottom: 5px;
  1292. float: left;
  1293. z-index: 2;
  1294. }
  1295. .preview[_ngcontent-tnh-c163] .header[_ngcontent-tnh-c163] .credit[_ngcontent-tnh-c163] {
  1296. display: block;
  1297. font-weight: normal;
  1298. opacity: 0.5;
  1299. font-size: 14px;
  1300. }
  1301. .preview[_ngcontent-tnh-c163] .properties[_ngcontent-tnh-c163] {
  1302. font-size: 14px;
  1303. padding: 5px;
  1304. z-index: 22222;
  1305. text-align: right;
  1306. color: rgba(51, 102, 153, 0.51);
  1307. font-weight: bold;
  1308. float: right;
  1309. }
  1310. .skins[_ngcontent-tnh-c163] {
  1311. display: grid;
  1312. grid-template-columns: repeat(6, 1fr);
  1313. grid-gap: 10px;
  1314. }
  1315. .skins[_ngcontent-tnh-c163] .skin[_ngcontent-tnh-c163] {
  1316. background-repeat: no-repeat;
  1317. background-size: auto 100%;
  1318. background-position: center;
  1319. height: 220px;
  1320. cursor: pointer;
  1321. }
  1322. .skinFilterChoice[_ngcontent-tnh-c163] {
  1323. cursor: pointer;
  1324. }
  1325. .skinFilterChoice.selected[_ngcontent-tnh-c163] {
  1326. font-weight: bold;
  1327. color: #336699 !important;
  1328. }
  1329. .paused[_ngcontent-tnh-c163] {
  1330. opacity: 0.5;
  1331. }
  1332. [_nghost-tnh-c216] {
  1333. text-transform: uppercase;
  1334. font-size: 12px;
  1335. font-weight: 500;
  1336. letter-spacing: 1px;
  1337. border: 0;
  1338. display: inline-block;
  1339. white-space: nowrap;
  1340. position: relative;
  1341. }
  1342. [_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1343. padding: 8px 8px 8px 8px;
  1344. border-radius: 3px;
  1345. box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  1346. position: relative;
  1347. background: white;
  1348. }
  1349. *[_ngcontent-tnh-c216]:disabled {
  1350. pointer-events: none;
  1351. color: red !important;
  1352. }
  1353. .button[_ngcontent-tnh-c216]:hover {
  1354. -webkit-transform: scale(0.98);
  1355. }
  1356. .green[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1357. background: linear-gradient(#61cf55, #57af4b);
  1358. color: white;
  1359. }
  1360. .red[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1361. background: linear-gradient(#ff3838, #d13636);
  1362. color: white;
  1363. }
  1364. .grey[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1365. background: linear-gradient(#333, #222);
  1366. color: white;
  1367. }
  1368. .no-shadow[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1369. box-shadow: none !important;
  1370. }
  1371. .tomato[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1372. background: linear-gradient(Tomato, #d95a3e);
  1373. color: white;
  1374. }
  1375. .tomato-text[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1376. color: Tomato;
  1377. }
  1378. .thin[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1379. padding: 4px 4px 4px 2px;
  1380. }
  1381. .blue[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1382. background: linear-gradient(#3264a0, #325d99);
  1383. color: white;
  1384. }
  1385. .shadow[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1386. box-shadow: 2px 2px 10px 3px rgba(0, 0, 0, 0.25);
  1387. }
  1388. .blue-border[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1389. border: 2px solid #31425C;
  1390. }
  1391. .border-radius-right[_nghost-tnh-c216] .button[_ngcontent-tnh-c216] {
  1392. border-radius: 0 5px 5px 0;
  1393. }
  1394. .icon[_ngcontent-tnh-c216] {
  1395. display: inline-block;
  1396. padding-left: 4px;
  1397. padding-right: 4px !important;
  1398. }
  1399. .caption[_ngcontent-tnh-c216] {
  1400. display: inline-block;
  1401. padding-left: 4px;
  1402. padding-right: 4px;
  1403. }
  1404. .right[_ngcontent-tnh-c216] {
  1405. padding: 8px 4px 8px 8px !important;
  1406. }
  1407. .right[_ngcontent-tnh-c216] .icon[_ngcontent-tnh-c216] {
  1408. float: right;
  1409. }
  1410. .btn-wrapper[_ngcontent-tnh-c216] {
  1411. cursor: pointer;
  1412. }
  1413. .btn-wrapper.disabled[_ngcontent-tnh-c216] {
  1414. cursor: not-allowed;
  1415. -webkit-filter: grayscale(100%);
  1416. filter: grayscale(100%);
  1417. }
  1418. .btn-wrapper.disabled[_ngcontent-tnh-c216] .button[_ngcontent-tnh-c216] {
  1419. pointer-events: none;
  1420. }
  1421. .more[_ngcontent-tnh-c216] {
  1422. visibility: hidden;
  1423. opacity: 0;
  1424. position: absolute;
  1425. right: 0px;
  1426. top: calc(100% + 10px);
  1427. color: #888;
  1428. box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.15);
  1429. z-index: 2;
  1430. background: white;
  1431. padding: 10px;
  1432. list-style: none;
  1433. border-radius: 3px;
  1434. font-size: 14px;
  1435. transition: opacity 0.2s;
  1436. }
  1437. .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216]:not(:last-child) {
  1438. border-bottom: 1px solid #eee;
  1439. padding-bottom: 5px;
  1440. margin-bottom: 5px;
  1441. }
  1442. .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216] {
  1443. text-transform: none;
  1444. font-weight: 500;
  1445. }
  1446. .more[_ngcontent-tnh-c216] li[_ngcontent-tnh-c216]:hover {
  1447. color: #333;
  1448. }
  1449. .moreVisible[_ngcontent-tnh-c216] {
  1450. visibility: visible;
  1451. opacity: 1;
  1452. }
  1453. iframe {
  1454. width: 500px;
  1455. /* It should not be 100% */
  1456. height: 500px:
  1457. margin-left: auto;
  1458. /* Automatic margin from left */
  1459. margin-right: auto;
  1460. /* Automatic margin from right */
  1461. overflow: hidden;
  1462. }
  1463. ul[_ngcontent-tnh-c149] {
  1464. padding-left: 30px;
  1465. display: inline-block;
  1466. float: right;
  1467. }
  1468. ul[_ngcontent-tnh-c149] li[_ngcontent-tnh-c149] {
  1469. display: inline-block;
  1470. margin-right: 10px;
  1471. margin: 5px 10px 5px 10px;
  1472. cursor: pointer;
  1473. outline: none;
  1474. }
  1475. ul[_ngcontent-tnh-c149] .selected[_ngcontent-tnh-c149] {
  1476. border-bottom: 2px solid #1e263d;
  1477. padding-bottom: 3px;
  1478. }
  1479. ul[_ngcontent-tnh-c149] li[_ngcontent-tnh-c149]:not(.selected):hover {
  1480. border-bottom: 2px solid rgba(30, 38, 61, 0.44);
  1481. padding-bottom: 3px;
  1482. }
  1483. p[_ngcontent-tnh-c174] {
  1484. -webkit-hyphens: auto;
  1485. -ms-hyphens: auto;
  1486. hyphens: auto;
  1487. }
  1488. .connected-service[_ngcontent-tnh-c174] {
  1489. width: 100%;
  1490. height: 50px;
  1491. background: #f5f5f5;
  1492. }
  1493. .connected-service[_ngcontent-tnh-c174] .icon[_ngcontent-tnh-c174] {
  1494. height: 50px;
  1495. width: 50px;
  1496. font-size: 35px;
  1497. display: inline-block;
  1498. float: left;
  1499. }
  1500. .connected-service[_ngcontent-tnh-c174] .avatar[_ngcontent-tnh-c174] {
  1501. height: 50px;
  1502. width: 50px;
  1503. display: inline-block;
  1504. float: left;
  1505. padding: 5px;
  1506. box-sizing: border-box;
  1507. }
  1508. .connected-service[_ngcontent-tnh-c174] .avatar[_ngcontent-tnh-c174] img[_ngcontent-tnh-c174] {
  1509. width: 100%;
  1510. height: 100%;
  1511. }
  1512. .connected-service[_ngcontent-tnh-c174] .name[_ngcontent-tnh-c174] {
  1513. display: inline-block;
  1514. float: left;
  1515. font-size: 14px;
  1516. padding-top: 15px;
  1517. color: #333 !important;
  1518. padding-left: 5px;
  1519. }
  1520. .connected-service[_ngcontent-tnh-c174] .disconnect[_ngcontent-tnh-c174] {
  1521. display: inline-block;
  1522. float: right;
  1523. color: Tomato;
  1524. height: 50px;
  1525. font-size: 20px;
  1526. padding: 10px;
  1527. box-sizing: border-box;
  1528. cursor: pointer;
  1529. }
  1530. .vacant[_ngcontent-tnh-c174] {
  1531. border-left: 3px solid #f5f5f5 !important;
  1532. }
  1533. .vacant[_ngcontent-tnh-c174] .name[_ngcontent-tnh-c174] {
  1534. color: #888 !important;
  1535. cursor: pointer;
  1536. }
  1537. .vacant[_ngcontent-tnh-c174] .icon[_ngcontent-tnh-c174] {
  1538. color: #888 !important;
  1539. }
  1540. .vacant[_ngcontent-tnh-c174] .disconnect[_ngcontent-tnh-c174] {
  1541. display: none;
  1542. }
  1543. .vacant[_ngcontent-tnh-c174]:hover {
  1544. color: black !important;
  1545. }
  1546. .discord[_ngcontent-tnh-c174] {
  1547. color: #7289da;
  1548. }
  1549. .teamspeak[_ngcontent-tnh-c174] {
  1550. color: #87acba;
  1551. border-left: 3px solid #87acba;
  1552. }
  1553. .forum[_ngcontent-tnh-c174] {
  1554. color: #87acba;
  1555. }
  1556. .notification-settings[_ngcontent-tnh-c174] {
  1557. display: grid;
  1558. grid-template-columns: auto 100px 100px;
  1559. grid-gap: 5px;
  1560. }
  1561. [_nghost-tnh-c187] {
  1562. display: inline-block;
  1563. }
  1564. .toggle[_ngcontent-tnh-c187] {
  1565. width: 40px;
  1566. height: 20px;
  1567. background: #eee;
  1568. border-radius: 9px;
  1569. position: relative;
  1570. transition: all 200ms;
  1571. cursor: pointer;
  1572. }
  1573. .toggle[_ngcontent-tnh-c187]:before {
  1574. content: "";
  1575. display: block;
  1576. width: 20px;
  1577. height: 20px;
  1578. background: #aaa;
  1579. border-radius: 50px;
  1580. position: absolute;
  1581. border: 2px solid #eee;
  1582. box-sizing: border-box;
  1583. transition: all 200ms;
  1584. left: 0;
  1585. }
  1586. .enabled[_ngcontent-tnh-c187]:before {
  1587. left: 20px;
  1588. background: #4BB543;
  1589. }
  1590. .disabled[_ngcontent-tnh-c187] {
  1591. cursor: not-allowed;
  1592. -webkit-filter: grayscale(66%);
  1593. filter: grayscale(66%);
  1594. }
  1595. .wrapper[_ngcontent-tnh-c217] {
  1596. position: relative;
  1597. border-bottom: 1px solid #eee;
  1598. width: 100%;
  1599. display: flex;
  1600. flex-direction: row;
  1601. height: 40px;
  1602. }
  1603. .icon-wrapper[_ngcontent-tnh-c217] {
  1604. padding: 0 5px;
  1605. }
  1606. .icon[_ngcontent-tnh-c217] {
  1607. font-size: 0.8em;
  1608. position: absolute;
  1609. bottom: 10px;
  1610. color: #888;
  1611. }
  1612. input[_ngcontent-tnh-c217] {
  1613. border: none;
  1614. outline: none;
  1615. width: 100%;
  1616. left: 0px;
  1617. position: absolute;
  1618. bottom: 5px;
  1619. font-size: 1em;
  1620. background: transparent;
  1621. padding: 0 5px;
  1622. }
  1623. .wrapper.focus[_ngcontent-tnh-c217] {
  1624. border-bottom: 1px solid #1e263d;
  1625. }
  1626. label[_ngcontent-tnh-c217] {
  1627. display: block;
  1628. position: absolute;
  1629. left: 5px;
  1630. bottom: 0px;
  1631. font-size: 1em;
  1632. transition: 0.2s all;
  1633. pointer-events: none;
  1634. color: #888;
  1635. }
  1636. .focus[_ngcontent-tnh-c217] label[_ngcontent-tnh-c217],
  1637. .hasValue[_ngcontent-tnh-c217] label[_ngcontent-tnh-c217] {
  1638. bottom: 20px;
  1639. font-size: 0.8em;
  1640. font-weight: 500;
  1641. }
  1642. .hasIcon[_ngcontent-tnh-c217] input[_ngcontent-tnh-c217] {
  1643. width: calc(100% - 30px);
  1644. left: 30px;
  1645. }
  1646. .hasIcon[_ngcontent-tnh-c217] label[_ngcontent-tnh-c217] {
  1647. left: 30px;
  1648. }
  1649. .sbx-custom {
  1650. display: inline-block;
  1651. position: relative;
  1652. width: 278px;
  1653. height: 29px;
  1654. white-space: nowrap;
  1655. box-sizing: border-box;
  1656. font-size: 14px;
  1657. }
  1658. .sbx-custom__wrapper {
  1659. width: 100%;
  1660. height: 100%;
  1661. }
  1662. .sbx-custom__input {
  1663. display: inline-block;
  1664. -webkit-transition: box-shadow .4s ease, background .4s ease;
  1665. transition: box-shadow .4s ease, background .4s ease;
  1666. border: 0;
  1667. border-radius: 2px;
  1668. box-shadow: inset 0 0 0 1px #CCCCCC;
  1669. background: #FFFFFF;
  1670. padding: 0;
  1671. padding-right: 54px;
  1672. padding-left: 11px;
  1673. width: 100%;
  1674. height: 100%;
  1675. vertical-align: middle;
  1676. white-space: normal;
  1677. font-size: inherit;
  1678. -webkit-appearance: none;
  1679. -moz-appearance: none;
  1680. appearance: none;
  1681. }
  1682. .sbx-custom__input::-webkit-search-decoration, .sbx-custom__input::-webkit-search-cancel-button, .sbx-custom__input::-webkit-search-results-button, .sbx-custom__input::-webkit-search-results-decoration {
  1683. display: none;
  1684. }
  1685. .sbx-custom__input:hover {
  1686. box-shadow: inset 0 0 0 1px #b3b3b3;
  1687. }
  1688. .sbx-custom__input:focus, .sbx-custom__input:active {
  1689. outline: 0;
  1690. box-shadow: inset 0 0 0 1px #4D3743;
  1691. background: #FFFFFF;
  1692. }
  1693. .sbx-custom__input::-webkit-input-placeholder {
  1694. color: #BBBBBB;
  1695. }
  1696. .sbx-custom__input::-moz-placeholder {
  1697. color: #BBBBBB;
  1698. }
  1699. .sbx-custom__input:-ms-input-placeholder {
  1700. color: #BBBBBB;
  1701. }
  1702. .sbx-custom__input::placeholder {
  1703. color: #BBBBBB;
  1704. }
  1705. .sbx-custom__submit {
  1706. position: absolute;
  1707. top: 0;
  1708. right: 0;
  1709. left: inherit;
  1710. margin: 0;
  1711. border: 0;
  1712. border-radius: 0 4px 4px 0;
  1713. background-color: rgba(255, 255, 255, 0);
  1714. padding: 0;
  1715. width: 29px;
  1716. height: 100%;
  1717. vertical-align: middle;
  1718. text-align: center;
  1719. font-size: inherit;
  1720. -webkit-user-select: none;
  1721. -moz-user-select: none;
  1722. -ms-user-select: none;
  1723. user-select: none;
  1724. }
  1725. .sbx-custom__submit::before {
  1726. display: inline-block;
  1727. margin-right: -4px;
  1728. height: 100%;
  1729. vertical-align: middle;
  1730. content: '';
  1731. }
  1732. .sbx-custom__submit:hover, .sbx-custom__submit:active {
  1733. cursor: pointer;
  1734. }
  1735. .sbx-custom__submit:focus {
  1736. outline: 0;
  1737. }
  1738. .sbx-custom__submit svg {
  1739. width: 17px;
  1740. height: 17px;
  1741. vertical-align: middle;
  1742. fill: #FF2E83;
  1743. }
  1744. .sbx-custom__reset {
  1745. display: none;
  1746. position: absolute;
  1747. top: 2px;
  1748. right: 29px;
  1749. margin: 0;
  1750. border: 0;
  1751. background: none;
  1752. cursor: pointer;
  1753. padding: 0;
  1754. font-size: inherit;
  1755. -webkit-user-select: none;
  1756. -moz-user-select: none;
  1757. -ms-user-select: none;
  1758. user-select: none;
  1759. fill: rgba(0, 0, 0, 0.5);
  1760. }
  1761. .sbx-custom__reset:focus {
  1762. outline: 0;
  1763. }
  1764. .sbx-custom__reset svg {
  1765. display: block;
  1766. margin: 4px;
  1767. width: 17px;
  1768. height: 17px;
  1769. }
  1770. .sbx-custom__input:valid ~ .sbx-custom__reset {
  1771. display: block;
  1772. -webkit-animation-name: sbx-reset-in;
  1773. animation-name: sbx-reset-in;
  1774. -webkit-animation-duration: .15s;
  1775. animation-duration: .15s;
  1776. }
  1777. @-webkit-keyframes sbx-reset-in {
  1778. 0% {
  1779. -webkit-transform: translate3d(-20%, 0, 0);
  1780. transform: translate3d(-20%, 0, 0);
  1781. opacity: 0;
  1782. }
  1783. 100% {
  1784. -webkit-transform: none;
  1785. transform: none;
  1786. opacity: 1;
  1787. }
  1788. }
  1789. @keyframes sbx-reset-in {
  1790. 0% {
  1791. -webkit-transform: translate3d(-20%, 0, 0);
  1792. transform: translate3d(-20%, 0, 0);
  1793. opacity: 0;
  1794. }
  1795. 100% {
  1796. -webkit-transform: none;
  1797. transform: none;
  1798. opacity: 1;
  1799. }
  1800. }
  1801. .mat-form-field {
  1802. display: inline-block;
  1803. position: relative;
  1804. text-align: left;
  1805. }
  1806. [dir=rtl] .mat-form-field {
  1807. text-align: right;
  1808. }
  1809. .mat-form-field-wrapper {
  1810. position: relative;
  1811. }
  1812. .mat-form-field-flex {
  1813. display: inline-flex;
  1814. align-items: baseline;
  1815. box-sizing: border-box;
  1816. width: 100%;
  1817. }
  1818. .mat-form-field-prefix,
  1819. .mat-form-field-suffix {
  1820. white-space: nowrap;
  1821. flex: none;
  1822. position: relative;
  1823. }
  1824. .mat-form-field-infix {
  1825. display: block;
  1826. position: relative;
  1827. flex: auto;
  1828. min-width: 0;
  1829. width: 180px;
  1830. }
  1831. .cdk-high-contrast-active .mat-form-field-infix {
  1832. border-image: linear-gradient(transparent, transparent);
  1833. }
  1834. .mat-form-field-label-wrapper {
  1835. position: absolute;
  1836. left: 0;
  1837. box-sizing: content-box;
  1838. width: 100%;
  1839. height: 100%;
  1840. overflow: hidden;
  1841. pointer-events: none;
  1842. }
  1843. [dir=rtl] .mat-form-field-label-wrapper {
  1844. left: auto;
  1845. right: 0;
  1846. }
  1847. .mat-form-field-label {
  1848. position: absolute;
  1849. left: 0;
  1850. font: inherit;
  1851. pointer-events: none;
  1852. width: 100%;
  1853. white-space: nowrap;
  1854. text-overflow: ellipsis;
  1855. overflow: hidden;
  1856. transform-origin: 0 0;
  1857. transition: transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1), color 400ms cubic-bezier(0.25, 0.8, 0.25, 1), width 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  1858. display: none;
  1859. }
  1860. [dir=rtl] .mat-form-field-label {
  1861. transform-origin: 100% 0;
  1862. left: auto;
  1863. right: 0;
  1864. }
  1865. .mat-form-field-empty.mat-form-field-label,
  1866. .mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label {
  1867. display: block;
  1868. }
  1869. .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label {
  1870. display: none;
  1871. }
  1872. .mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label {
  1873. display: block;
  1874. transition: none;
  1875. }
  1876. .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,
  1877. .mat-input-server[placeholder]:not(:placeholder-shown)+.mat-form-field-label-wrapper .mat-form-field-label {
  1878. display: none;
  1879. }
  1880. .mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label,
  1881. .mat-form-field-can-float .mat-input-server[placeholder]:not(:placeholder-shown)+.mat-form-field-label-wrapper .mat-form-field-label {
  1882. display: block;
  1883. }
  1884. .mat-form-field-label:not(.mat-form-field-empty) {
  1885. transition: none;
  1886. }
  1887. .mat-form-field-underline {
  1888. position: absolute;
  1889. width: 100%;
  1890. pointer-events: none;
  1891. transform: scale3d(1, 1.0001, 1);
  1892. }
  1893. .mat-form-field-ripple {
  1894. position: absolute;
  1895. left: 0;
  1896. width: 100%;
  1897. transform-origin: 50%;
  1898. transform: scaleX(0.5);
  1899. opacity: 0;
  1900. transition: background-color 300ms cubic-bezier(0.55, 0, 0.55, 0.2);
  1901. }
  1902. .mat-form-field.mat-focused .mat-form-field-ripple,
  1903. .mat-form-field.mat-form-field-invalid .mat-form-field-ripple {
  1904. opacity: 1;
  1905. transform: scaleX(1);
  1906. transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1), opacity 100ms cubic-bezier(0.25, 0.8, 0.25, 1), background-color 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  1907. }
  1908. .mat-form-field-subscript-wrapper {
  1909. position: absolute;
  1910. box-sizing: border-box;
  1911. width: 100%;
  1912. overflow: hidden;
  1913. }
  1914. .mat-form-field-subscript-wrapper .mat-icon,
  1915. .mat-form-field-label-wrapper .mat-icon {
  1916. width: 1em;
  1917. height: 1em;
  1918. font-size: inherit;
  1919. vertical-align: baseline;
  1920. }
  1921. .mat-form-field-hint-wrapper {
  1922. display: flex;
  1923. }
  1924. .mat-form-field-hint-spacer {
  1925. flex: 1 0 1em;
  1926. }
  1927. .mat-error {
  1928. display: block;
  1929. }
  1930. .mat-form-field-control-wrapper {
  1931. position: relative;
  1932. }
  1933. .mat-form-field._mat-animation-noopable .mat-form-field-label,
  1934. .mat-form-field._mat-animation-noopable .mat-form-field-ripple {
  1935. transition: none;
  1936. }
  1937. .mat-form-field-appearance-fill .mat-form-field-flex {
  1938. border-radius: 4px 4px 0 0;
  1939. padding: .75em .75em 0 .75em;
  1940. }
  1941. .cdk-high-contrast-active .mat-form-field-appearance-fill .mat-form-field-flex {
  1942. outline: solid 1px;
  1943. }
  1944. .mat-form-field-appearance-fill .mat-form-field-underline::before {
  1945. content: "";
  1946. display: block;
  1947. position: absolute;
  1948. bottom: 0;
  1949. height: 1px;
  1950. width: 100%;
  1951. }
  1952. .mat-form-field-appearance-fill .mat-form-field-ripple {
  1953. bottom: 0;
  1954. height: 2px;
  1955. }
  1956. .cdk-high-contrast-active .mat-form-field-appearance-fill .mat-form-field-ripple {
  1957. height: 0;
  1958. border-top: solid 2px;
  1959. }
  1960. .mat-form-field-appearance-fill:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple {
  1961. opacity: 1;
  1962. transform: none;
  1963. transition: opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1);
  1964. }
  1965. .mat-form-field-appearance-fill._mat-animation-noopable:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple {
  1966. transition: none;
  1967. }
  1968. .mat-form-field-appearance-fill .mat-form-field-subscript-wrapper {
  1969. padding: 0 1em;
  1970. }
  1971. .mat-input-element {
  1972. font: inherit;
  1973. background: transparent;
  1974. color: currentColor;
  1975. border: none;
  1976. outline: none;
  1977. padding: 0;
  1978. margin: 0;
  1979. width: 100%;
  1980. max-width: 100%;
  1981. vertical-align: bottom;
  1982. text-align: inherit;
  1983. }
  1984. .mat-input-element:-moz-ui-invalid {
  1985. box-shadow: none;
  1986. }
  1987. .mat-input-element::-ms-clear,
  1988. .mat-input-element::-ms-reveal {
  1989. display: none;
  1990. }
  1991. .mat-input-element,
  1992. .mat-input-element::-webkit-search-cancel-button,
  1993. .mat-input-element::-webkit-search-decoration,
  1994. .mat-input-element::-webkit-search-results-button,
  1995. .mat-input-element::-webkit-search-results-decoration {
  1996. -webkit-appearance: none;
  1997. }
  1998. .mat-input-element::-webkit-contacts-auto-fill-button,
  1999. .mat-input-element::-webkit-caps-lock-indicator,
  2000. .mat-input-element::-webkit-credentials-auto-fill-button {
  2001. visibility: hidden;
  2002. }
  2003. .mat-input-element[type=date]::after,
  2004. .mat-input-element[type=datetime]::after,
  2005. .mat-input-element[type=datetime-local]::after,
  2006. .mat-input-element[type=month]::after,
  2007. .mat-input-element[type=week]::after,
  2008. .mat-input-element[type=time]::after {
  2009. content: " ";
  2010. white-space: pre;
  2011. width: 1px;
  2012. }
  2013. .mat-input-element::-webkit-inner-spin-button,
  2014. .mat-input-element::-webkit-calendar-picker-indicator,
  2015. .mat-input-element::-webkit-clear-button {
  2016. font-size: .75em;
  2017. }
  2018. .mat-input-element::placeholder {
  2019. -webkit-user-select: none;
  2020. -moz-user-select: none;
  2021. -ms-user-select: none;
  2022. user-select: none;
  2023. transition: color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);
  2024. }
  2025. .mat-input-element::placeholder:-ms-input-placeholder {
  2026. -ms-user-select: text;
  2027. }
  2028. .mat-input-element::-moz-placeholder {
  2029. -webkit-user-select: none;
  2030. -moz-user-select: none;
  2031. -ms-user-select: none;
  2032. user-select: none;
  2033. transition: color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);
  2034. }
  2035. .mat-input-element::-moz-placeholder:-ms-input-placeholder {
  2036. -ms-user-select: text;
  2037. }
  2038. .mat-input-element::-webkit-input-placeholder {
  2039. -webkit-user-select: none;
  2040. -moz-user-select: none;
  2041. -ms-user-select: none;
  2042. user-select: none;
  2043. transition: color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);
  2044. }
  2045. .mat-input-element::-webkit-input-placeholder:-ms-input-placeholder {
  2046. -ms-user-select: text;
  2047. }
  2048. .mat-input-element:-ms-input-placeholder {
  2049. -webkit-user-select: none;
  2050. -moz-user-select: none;
  2051. -ms-user-select: none;
  2052. user-select: none;
  2053. transition: color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);
  2054. }
  2055. .mat-input-element:-ms-input-placeholder:-ms-input-placeholder {
  2056. -ms-user-select: text;
  2057. }
  2058. .mat-form-field-hide-placeholder .mat-input-element::placeholder {
  2059. color: transparent !important;
  2060. -webkit-text-fill-color: transparent;
  2061. transition: none;
  2062. }
  2063. .mat-form-field-hide-placeholder .mat-input-element::-moz-placeholder {
  2064. color: transparent !important;
  2065. -webkit-text-fill-color: transparent;
  2066. transition: none;
  2067. }
  2068. .mat-form-field-hide-placeholder .mat-input-element::-webkit-input-placeholder {
  2069. color: transparent !important;
  2070. -webkit-text-fill-color: transparent;
  2071. transition: none;
  2072. }
  2073. .mat-form-field-hide-placeholder .mat-input-element:-ms-input-placeholder {
  2074. color: transparent !important;
  2075. -webkit-text-fill-color: transparent;
  2076. transition: none;
  2077. }
  2078. textarea.mat-input-element {
  2079. resize: vertical;
  2080. overflow: auto;
  2081. }
  2082. textarea.mat-input-element.cdk-textarea-autosize {
  2083. resize: none;
  2084. }
  2085. textarea.mat-input-element {
  2086. padding: 2px 0;
  2087. margin: -2px 0;
  2088. }
  2089. select.mat-input-element {
  2090. -moz-appearance: none;
  2091. -webkit-appearance: none;
  2092. position: relative;
  2093. background-color: transparent;
  2094. display: inline-flex;
  2095. box-sizing: border-box;
  2096. padding-top: 1em;
  2097. top: -1em;
  2098. margin-bottom: -1em;
  2099. }
  2100. select.mat-input-element::-ms-expand {
  2101. display: none;
  2102. }
  2103. select.mat-input-element::-moz-focus-inner {
  2104. border: 0;
  2105. }
  2106. select.mat-input-element:not(:disabled) {
  2107. cursor: pointer;
  2108. }
  2109. select.mat-input-element::-ms-value {
  2110. color: inherit;
  2111. background: none;
  2112. }
  2113. .mat-focused .cdk-high-contrast-active select.mat-input-element::-ms-value {
  2114. color: inherit;
  2115. }
  2116. .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  2117. content: "";
  2118. width: 0;
  2119. height: 0;
  2120. border-left: 5px solid transparent;
  2121. border-right: 5px solid transparent;
  2122. border-top: 5px solid;
  2123. position: absolute;
  2124. top: 50%;
  2125. right: 0;
  2126. margin-top: -2.5px;
  2127. pointer-events: none;
  2128. }
  2129. [dir=rtl] .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  2130. right: auto;
  2131. left: 0;
  2132. }
  2133. .mat-form-field-type-mat-native-select .mat-input-element {
  2134. padding-right: 15px;
  2135. }
  2136. [dir=rtl] .mat-form-field-type-mat-native-select .mat-input-element {
  2137. padding-right: 0;
  2138. padding-left: 15px;
  2139. }
  2140. .mat-form-field-type-mat-native-select .mat-form-field-label-wrapper {
  2141. max-width: calc(100% - 10px);
  2142. }
  2143. .mat-form-field-type-mat-native-select.mat-form-field-appearance-outline .mat-form-field-infix::after {
  2144. margin-top: -5px;
  2145. }
  2146. .mat-form-field-type-mat-native-select.mat-form-field-appearance-fill .mat-form-field-infix::after {
  2147. margin-top: -10px;
  2148. }
  2149. .mat-form-field-appearance-legacy .mat-form-field-label {
  2150. transform: perspective(100px);
  2151. -ms-transform: none;
  2152. }
  2153. .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-icon,
  2154. .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon {
  2155. width: 1em;
  2156. }
  2157. .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-icon-button,
  2158. .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon-button {
  2159. font: inherit;
  2160. vertical-align: baseline;
  2161. }
  2162. .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-icon-button .mat-icon,
  2163. .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-icon-button .mat-icon {
  2164. font-size: inherit;
  2165. }
  2166. .mat-form-field-appearance-legacy .mat-form-field-underline {
  2167. height: 1px;
  2168. }
  2169. .cdk-high-contrast-active .mat-form-field-appearance-legacy .mat-form-field-underline {
  2170. height: 0;
  2171. border-top: solid 1px;
  2172. }
  2173. .mat-form-field-appearance-legacy .mat-form-field-ripple {
  2174. top: 0;
  2175. height: 2px;
  2176. overflow: hidden;
  2177. }
  2178. .cdk-high-contrast-active .mat-form-field-appearance-legacy .mat-form-field-ripple {
  2179. height: 0;
  2180. border-top: solid 2px;
  2181. }
  2182. .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  2183. background-position: 0;
  2184. background-color: transparent;
  2185. }
  2186. .cdk-high-contrast-active .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  2187. border-top-style: dotted;
  2188. border-top-width: 2px;
  2189. }
  2190. .mat-form-field-appearance-legacy.mat-form-field-invalid:not(.mat-focused) .mat-form-field-ripple {
  2191. height: 1px;
  2192. }
  2193. .mat-form-field-appearance-outline .mat-form-field-wrapper {
  2194. margin: .25em 0;
  2195. }
  2196. .mat-form-field-appearance-outline .mat-form-field-flex {
  2197. padding: 0 .75em 0 .75em;
  2198. margin-top: -0.25em;
  2199. position: relative;
  2200. }
  2201. .mat-form-field-appearance-outline .mat-form-field-prefix,
  2202. .mat-form-field-appearance-outline .mat-form-field-suffix {
  2203. top: .25em;
  2204. }
  2205. .mat-form-field-appearance-outline .mat-form-field-outline {
  2206. display: flex;
  2207. position: absolute;
  2208. top: .25em;
  2209. left: 0;
  2210. right: 0;
  2211. bottom: 0;
  2212. pointer-events: none;
  2213. }
  2214. .mat-form-field-appearance-outline .mat-form-field-outline-start,
  2215. .mat-form-field-appearance-outline .mat-form-field-outline-end {
  2216. border: 1px solid currentColor;
  2217. min-width: 5px;
  2218. }
  2219. .mat-form-field-appearance-outline .mat-form-field-outline-start {
  2220. border-radius: 5px 0 0 5px;
  2221. border-right-style: none;
  2222. }
  2223. [dir=rtl] .mat-form-field-appearance-outline .mat-form-field-outline-start {
  2224. border-right-style: solid;
  2225. border-left-style: none;
  2226. border-radius: 0 5px 5px 0;
  2227. }
  2228. .mat-form-field-appearance-outline .mat-form-field-outline-end {
  2229. border-radius: 0 5px 5px 0;
  2230. border-left-style: none;
  2231. flex-grow: 1;
  2232. }
  2233. [dir=rtl] .mat-form-field-appearance-outline .mat-form-field-outline-end {
  2234. border-left-style: solid;
  2235. border-right-style: none;
  2236. border-radius: 5px 0 0 5px;
  2237. }
  2238. .mat-form-field-appearance-outline .mat-form-field-outline-gap {
  2239. border-radius: .000001px;
  2240. border: 1px solid currentColor;
  2241. border-left-style: none;
  2242. border-right-style: none;
  2243. }
  2244. .mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-outline-gap {
  2245. border-top-color: transparent;
  2246. }
  2247. .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  2248. opacity: 0;
  2249. }
  2250. .mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-start,
  2251. .mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-end,
  2252. .mat-form-field-appearance-outline .mat-form-field-outline-thick .mat-form-field-outline-gap {
  2253. border-width: 2px;
  2254. }
  2255. .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline,
  2256. .mat-form-field-appearance-outline.mat-form-field-invalid .mat-form-field-outline {
  2257. opacity: 0;
  2258. transition: opacity 100ms cubic-bezier(0.25, 0.8, 0.25, 1);
  2259. }
  2260. .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick,
  2261. .mat-form-field-appearance-outline.mat-form-field-invalid .mat-form-field-outline-thick {
  2262. opacity: 1;
  2263. }
  2264. .mat-form-field-appearance-outline:not(.mat-form-field-disabled) .mat-form-field-flex:hover .mat-form-field-outline {
  2265. opacity: 0;
  2266. transition: opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1);
  2267. }
  2268. .mat-form-field-appearance-outline:not(.mat-form-field-disabled) .mat-form-field-flex:hover .mat-form-field-outline-thick {
  2269. opacity: 1;
  2270. }
  2271. .mat-form-field-appearance-outline .mat-form-field-subscript-wrapper {
  2272. padding: 0 1em;
  2273. }
  2274. .mat-form-field-appearance-outline._mat-animation-noopable:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-outline,
  2275. .mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline,
  2276. .mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline-start,
  2277. .mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline-end,
  2278. .mat-form-field-appearance-outline._mat-animation-noopable .mat-form-field-outline-gap {
  2279. transition: none;
  2280. }
  2281. .mat-form-field-appearance-standard .mat-form-field-flex {
  2282. padding-top: .75em;
  2283. }
  2284. .mat-form-field-appearance-standard .mat-form-field-underline {
  2285. height: 1px;
  2286. }
  2287. .cdk-high-contrast-active .mat-form-field-appearance-standard .mat-form-field-underline {
  2288. height: 0;
  2289. border-top: solid 1px;
  2290. }
  2291. .mat-form-field-appearance-standard .mat-form-field-ripple {
  2292. bottom: 0;
  2293. height: 2px;
  2294. }
  2295. .cdk-high-contrast-active .mat-form-field-appearance-standard .mat-form-field-ripple {
  2296. height: 0;
  2297. border-top: 2px;
  2298. }
  2299. .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  2300. background-position: 0;
  2301. background-color: transparent;
  2302. }
  2303. .cdk-high-contrast-active .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  2304. border-top-style: dotted;
  2305. border-top-width: 2px;
  2306. }
  2307. .mat-form-field-appearance-standard:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple {
  2308. opacity: 1;
  2309. transform: none;
  2310. transition: opacity 600ms cubic-bezier(0.25, 0.8, 0.25, 1);
  2311. }
  2312. .mat-form-field-appearance-standard._mat-animation-noopable:not(.mat-form-field-disabled) .mat-form-field-flex:hover~.mat-form-field-underline .mat-form-field-ripple {
  2313. transition: none;
  2314. }
  2315. .category[_ngcontent-tnh-c225] {
  2316. color: #333;
  2317. border-top: 5px solid #3264a0;
  2318. background: #fff;
  2319. padding: 20px;
  2320. display: inline-flex;
  2321. font-size: 1em;
  2322. box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.15);
  2323. width: 150px;
  2324. height: 150px;
  2325. align-items: center;
  2326. justify-content: center;
  2327. flex-direction: column;
  2328. margin-right: 20px;
  2329. cursor: pointer;
  2330. transition: 100ms transform;
  2331. }
  2332. .category[_ngcontent-tnh-c225]:hover {
  2333. transform: scale(1.02);
  2334. background: #0b95da;
  2335. color: white;
  2336. }
  2337. .icon[_ngcontent-tnh-c225] {
  2338. font-size: 4em;
  2339. }
  2340. .serverbutton[_ngcontent-tnh-c225] {
  2341. color: #333;
  2342. border-top: 0px solid #0b95da;
  2343. background: #fff;
  2344. padding: 20px;
  2345. display: inline-flex;
  2346. font-size: 1em;
  2347. box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.15);
  2348. width: 200px;
  2349. height: 50px;
  2350. align-items: center;
  2351. justify-content: center;
  2352. flex-direction: column;
  2353. margin-right: 20px;
  2354. cursor: pointer;
  2355. transition: 100ms transform;
  2356. }
  2357. .serverbutton[_ngcontent-tnh-c225]:hover {
  2358. transform: scale(1.02);
  2359. background: #c3c3c3;
  2360. color: white;
  2361. }
  2362. #map[_ngcontent-tnh-c196] {
  2363. position: absolute;
  2364. top: 0;
  2365. left: 0;
  2366. width: 100%;
  2367. height: 100%;
  2368. }
  2369. #map-popup[_ngcontent-tnh-c196] {
  2370. background: white;
  2371. padding: 10px;
  2372. box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2);
  2373. border-radius: 5px;
  2374. line-height: 1.1em;
  2375. font-size: 0.8em;
  2376. }
  2377. .options[_ngcontent-tnh-c196] {
  2378. position: absolute;
  2379. bottom: 100px;
  2380. left: 20px;
  2381. z-index: 5;
  2382. width: 200px;
  2383. }
  2384. .options[_ngcontent-tnh-c196] .options-icon.open[_ngcontent-tnh-c196] {
  2385. background-color: #eee;
  2386. }
  2387. .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] {
  2388. background: white;
  2389. padding: 5px;
  2390. border-radius: 50%;
  2391. width: 20px;
  2392. height: 20px;
  2393. box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
  2394. margin-top: 10px;
  2395. position: relative;
  2396. }
  2397. .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] .option-choices[_ngcontent-tnh-c196] {
  2398. position: absolute;
  2399. left: 40px;
  2400. top: 0px;
  2401. bottom: 0;
  2402. transition: width 200ms;
  2403. overflow: hidden;
  2404. z-index: -1;
  2405. }
  2406. .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] .option-choices[_ngcontent-tnh-c196] .options-choice-icon[_ngcontent-tnh-c196] {
  2407. cursor: pointer;
  2408. margin-right: 5px;
  2409. background-color: white;
  2410. background-repeat: no-repeat;
  2411. background-position: center;
  2412. display: inline-block;
  2413. padding: 5px;
  2414. border-radius: 50%;
  2415. width: 20px;
  2416. height: 20px;
  2417. box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.5);
  2418. position: relative;
  2419. }
  2420. .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] .option-choices[_ngcontent-tnh-c196] .options-choice-icon.disabled[_ngcontent-tnh-c196] {
  2421. -webkit-filter: grayscale(100%);
  2422. filter: grayscale(100%);
  2423. }
  2424. .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] .option-choices[_ngcontent-tnh-c196] .options-choice-icon.disabled[_ngcontent-tnh-c196]:after {
  2425. content: "";
  2426. background: white;
  2427. opacity: 0.3;
  2428. border-radius: 50%;
  2429. width: 100%;
  2430. height: 100%;
  2431. position: absolute;
  2432. top: 0;
  2433. left: 0;
  2434. }
  2435. .options[_ngcontent-tnh-c196] .options-icon[_ngcontent-tnh-c196] .option-choices[_ngcontent-tnh-c196] .icon-headshot[_ngcontent-tnh-c196] {
  2436. background-size: 250%;
  2437. background-position: center 2px;
  2438. }
  2439. .options[_ngcontent-tnh-c196] .optionsHidden[_ngcontent-tnh-c196] {
  2440. width: 0 !important;
  2441. }
  2442. .layer-switch[_ngcontent-tnh-c196] {
  2443. position: absolute;
  2444. bottom: 20px;
  2445. left: 20px;
  2446. width: 60px;
  2447. height: 60px;
  2448. background: white;
  2449. z-index: 5;
  2450. box-shadow: 0px 0px 5px 0px black;
  2451. }
  2452. .layer-switch[_ngcontent-tnh-c196] .layer[_ngcontent-tnh-c196] {
  2453. background: #eee;
  2454. width: 100%;
  2455. height: 100%;
  2456. font-size: 0.7em;
  2457. font-weight: 400;
  2458. display: flex;
  2459. align-items: flex-end;
  2460. padding: 3px;
  2461. background: url("https://mmrtn.net/map/res/img/mapSelector_satellite.png");
  2462. background-size: contain;
  2463. box-sizing: border-box;
  2464. text-shadow: 0 0 3px black;
  2465. color: white;
  2466. }
  2467. .layer-switch[_ngcontent-tnh-c196] .vector[_ngcontent-tnh-c196] {
  2468. background: url("#");
  2469. }
  2470. .layer-switch[_ngcontent-tnh-c196] .raster[_ngcontent-tnh-c196] {
  2471. background: url("#");
  2472. }
  2473. .map-wrapper[_ngcontent-tnh-c196] {
  2474. position: relative;
  2475. height: 100%;
  2476. }
  2477. iframe {
  2478. position: absolute;
  2479. top: 0;
  2480. left: 0;
  2481. width: 100%;
  2482. height: 100%;
  2483. border: 0;
  2484. }
  2485. .state {
  2486. background: linear-gradient(to bottom, #4194d5, #3a78b2);
  2487. color: white;
  2488. border: none;
  2489. padding: 20px;
  2490. border-radius: 0;
  2491. box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.08);
  2492. margin-bottom: 10px;
  2493. }
  2494. .state.main {
  2495. display: block;
  2496. font-weight: bold;
  2497. font-size: 20px;
  2498. }
  2499. .state.orange {
  2500. background: linear-gradient(to bottom, orange, #e08c00);
  2501. }
  2502. .state.tomato {
  2503. background: linear-gradient(to bottom, tomato, tomato);
  2504. }
  2505. .application[_ngcontent-tnh-c154] {
  2506. background-color: white;
  2507. /*background-image: url("https://www.countryflags.io/us/flat/64.png");*/
  2508. background-repeat: no-repeat;
  2509. background-position: right 10px center;
  2510. background-size: contain;
  2511. cursor: pointer;
  2512. transition: 150ms transform;
  2513. padding: 10px;
  2514. border: 0px solid #eee;
  2515. margin-bottom: 5px;
  2516. display: grid;
  2517. grid-template-columns: 70px auto-webkit-min-content 64px;
  2518. grid-template-columns: 70px auto min-content 64px;
  2519. border-left: 3px solid #3264a0;
  2520. }
  2521. .application[_ngcontent-tnh-c154]:hover {
  2522. transform: scale(1.01);
  2523. background-color: #f5f5f5;
  2524. }
  2525. .application[_ngcontent-tnh-c154] span {
  2526. white-space: nowrap;
  2527. }
  2528. .application[_ngcontent-tnh-c154].blocked {
  2529. opacity: 0.5;
  2530. }
  2531. .options {
  2532. list-style: none;
  2533. }
  2534. .options li {
  2535. font-weight: bold;
  2536. }
  2537. .options li.icon {
  2538. color: #888;
  2539. margin-right: 10px;
  2540. }
  2541. .answer {
  2542. margin-top: 10px;
  2543. white-space: pre-line;
  2544. margin-bottom: 20px;
  2545. font-size: 14 px;
  2546. margin-right: 20px;
  2547. line-height: 1.5;
  2548. }
  2549. .other-character {
  2550. background-repeat: no-repeat;
  2551. background-position: left-80px top;
  2552. height: 55px;
  2553. cursor: pointer;
  2554. line-height: normal;
  2555. position: relative;
  2556. margin-bottom: 10px;
  2557. }
  2558. .other-character.description {
  2559. margin-left: 80px;
  2560. float: left;
  2561. margin-top: 5px;
  2562. }
  2563. .flags a {
  2564. color: inherit;
  2565. }
  2566. .flags li {
  2567. list-style: none;
  2568. padding: 3px;
  2569. color: white;
  2570. font-weight: bold;
  2571. font-size: 14px;
  2572. margin-bottom: 3px;
  2573. text-shadow: 0 0 5px#fff;
  2574. }
  2575. .flags li.icon {
  2576. margin: 0 5px 0 2px;
  2577. }
  2578. .flags li.warning {
  2579. color: darkorange;
  2580. }
  2581. .flags li.serious {
  2582. color: #b20000;
  2583. }
  2584. .buttons > * {
  2585. margin-right: 10px;
  2586. }
  2587. <!--
  2588. .searchbox {
  2589. width: 100%;
  2590. background: #43474d;
  2591. padding: 5px;
  2592. border-radius: 5px;
  2593. }
  2594. .searchbox .searchbutton {
  2595. float: right;
  2596. color: #aaa;
  2597. background: none;
  2598. border: none;
  2599. font-size: 14px;
  2600. cursor: pointer;
  2601. }
  2602. .searchbox .searchfield {
  2603. width: calc(100% - 50px);
  2604. font-size: 14px;
  2605. border: none;
  2606. outline: none;
  2607. margin: 0;
  2608. padding: 0 0 0 5px;
  2609. background: #43474d;
  2610. color: #eee;
  2611. }
  2612. .searchbox .searchfield::-webkit-input-placeholder {
  2613. color: #aaa;
  2614. }
  2615. .searchbox .searchfield::-moz-placeholder {
  2616. color: #aaa;
  2617. }
  2618. .searchbox .searchfield:-ms-input-placeholder {
  2619. color: #aaa;
  2620. }
  2621. .searchbox .searchfield::-ms-input-placeholder {
  2622. color: #aaa;
  2623. }
  2624. .searchbox .searchfield::placeholder {
  2625. color: #aaa;
  2626. }
  2627. .results {
  2628. position: absolute;
  2629. top: 48px;
  2630. left: 10px;
  2631. background: white;
  2632. z-index: 100;
  2633. border: 1px solid #eee;
  2634. box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.15);
  2635. min-width: 500px;
  2636. }
  2637. .results li {
  2638. padding: 10px;
  2639. border-top: 1px solid #f5f5f5;
  2640. }
  2641. .results li .preview {
  2642. display: inline-block;
  2643. }
  2644. .results li .ped {
  2645. background-image: url("https://nkar/images/skins/304.png");
  2646. background-size: 500%;
  2647. background-position-x: center;
  2648. height: 40px;
  2649. width: 40px;
  2650. display: inline-block;
  2651. }
  2652. .results li p {
  2653. margin-left: 10px;
  2654. display: inline-block;
  2655. height: 100%;
  2656. vertical-align: top;
  2657. }
  2658. .wrapper.loading[_ngcontent-tnh-c200]:after {
  2659. content: "";
  2660. position: absolute;
  2661. top: 0;
  2662. left: 0;
  2663. width: 100%;
  2664. height: 100%;
  2665. background: #fff;
  2666. opacity: 0.5;
  2667. }
  2668. .wrapper[_ngcontent-tnh-c200] {
  2669. position: relative;
  2670. }
  2671. .link[_ngcontent-tnh-c200] {
  2672. background: white;
  2673. font-size: 1.2em;
  2674. padding: 15px;
  2675. text-align: center;
  2676. font-family: monospace;
  2677. box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.15);
  2678. margin-bottom: 20px;
  2679. }
  2680. .headshot {
  2681. height: 50px;
  2682. width: 50px;
  2683. background-size: 300%;
  2684. background-position: center top 5px;
  2685. background-repeat: no-repeat;
  2686. border-radius: 50%;
  2687. display: inline-block;
  2688. background-color: #ddd;
  2689. margin-right: 20px;
  2690. }
  2691. .character {
  2692. display: flex;
  2693. align-items: center;
  2694. margin-bottom: 10px;
  2695. }
  2696. .online {
  2697. border: 2px solid #4BB543;
  2698. background-color: white;
  2699. }
  2700. /*.card-title {
  2701. display: flex;
  2702. justify-content: space-between;
  2703. align-items: baseline;
  2704. }*/
  2705. #menyja {
  2706. position: absolute;
  2707. z-index: 10;
  2708. width: 168px;
  2709. height: 30px;
  2710. border: 1px solid #000;
  2711. }
  2712. footer[_ngcontent-tnh-c167] {
  2713. margin-top: 10px;
  2714. }
  2715. footer[_ngcontent-tnh-c167] .info[_ngcontent-tnh-c167] {
  2716. text-transform: uppercase;
  2717. color: #888;
  2718. font-size: 14px;
  2719. font-weight: bold;
  2720. }
  2721. header[_ngcontent-tnh-c167] {
  2722. padding-bottom: 10px;
  2723. overflow: auto;
  2724. }
  2725. .pagination[_ngcontent-tnh-c167] {
  2726. border: 1px solid #eee;
  2727. float: right;
  2728. display: inline-block;
  2729. }
  2730. .pagination[_ngcontent-tnh-c167] a[_ngcontent-tnh-c167] {
  2731. display: inline-block;
  2732. background: white;
  2733. width: 40px;
  2734. padding: 5px 0;
  2735. text-align: center;
  2736. color: #888;
  2737. cursor: pointer;
  2738. border-right: 1px solid #eee;
  2739. }
  2740. .pagination[_ngcontent-tnh-c167] .current[_ngcontent-tnh-c167] {
  2741. color: #111;
  2742. font-weight: bold;
  2743. }
  2744. .child[_ngcontent-tnh-c167]:not(.child-shown) {
  2745. display: none;
  2746. color: red;
  2747. }