whmcs.less 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419
  1. /***
  2. Removed from orignal
  3. 1.) WHMCS Bootstrap Override Sheet
  4. 2.) body h1,h2, etc anf link classes from WHMCS Main Style Sheet
  5. 3.) @section List Tables along wiht all classes related to
  6. datatables and table lists
  7. 4.) @section Main Navbar
  8. 5.) Client Homepage
  9. 6.) Client Homepage Tiles
  10. 7.) Client Homepage
  11. 8.) General Styles - header-lined and breadcumbs
  12. 9.) Domain Checker section
  13. 10.) @section Home Page Banner
  14. 11.) @section Home Page Shortcut Buttons
  15. 12.) Language Chooser
  16. 13.) Login or Register Popover
  17. 14.) @section Navigational Bar
  18. 15.) @section Announcements Page
  19. 16.) @section Affiliates Page
  20. 17.) @section Client Notifications
  21. 18.) Store
  22. 19.) @section Sidebar Panels - removed panel-title clases
  23. 20.) @invoice-summary // removed
  24. ***/
  25. .container-fluid.without-padding {
  26. padding-left: 0;
  27. padding-right: 0;
  28. overflow-x: hidden;
  29. }
  30. .table-container {
  31. padding: 0 0 25px 0;
  32. }
  33. .primary-content .card {
  34. margin-bottom: 1rem;
  35. }
  36. .primary-content .card.mw-540 {
  37. max-width: 540px;
  38. margin-left: auto;
  39. margin-right: auto;
  40. }
  41. .primary-content .card.mw-750 {
  42. max-width: 750px;
  43. margin-left: auto;
  44. margin-right: auto;
  45. }
  46. .primary-content .card-body {
  47. overflow: auto;
  48. }
  49. @media (min-width: 768px) {
  50. .primary-content .card-body.extra-padding {
  51. padding: 1.8rem;
  52. }
  53. }
  54. @media (min-width: 1200px) {
  55. .primary-content .card-body.extra-padding {
  56. padding: 3rem;
  57. }
  58. }
  59. .primary-content .card-title {
  60. margin: 0 0 20px 0;
  61. padding: 0;
  62. font-size: 22px;
  63. }
  64. /**
  65. * WHMCS Bootstrap Override Sheet
  66. */
  67. .has-feedback label ~ .form-control-feedback {
  68. top: 27px !important;
  69. }
  70. .list-group-item > i.far.fa-circle {
  71. color: #808080;
  72. }
  73. .has-error button {
  74. border-color: #a94442;
  75. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  76. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  77. }
  78. /*
  79. * Language strings which are too long to fit into buttons should be "chopped off" inside the div
  80. * of that button, instead of "overflowing" outside of the button. CORE-9272
  81. */
  82. .btn {
  83. overflow: hidden;
  84. }
  85. .label {
  86. max-width: 100%;
  87. border-radius: 4px;
  88. display: inline;
  89. padding: .2em .6em .3em;
  90. font-size: 75%;
  91. font-weight: 400;
  92. line-height: 1;
  93. color: @white;
  94. text-align: center;
  95. white-space: nowrap;
  96. vertical-align: baseline;
  97. }
  98. /**
  99. * WHMCS Main Style Sheet
  100. */
  101. /**
  102. * -------------------------
  103. * @section Sections
  104. * -------------------------
  105. */
  106. section#header {
  107. margin: 0;
  108. padding: 10px 0;
  109. background-color: #fff;
  110. border-radius: 5px 5px 0 0;
  111. }
  112. section#header .logo img {
  113. margin: 0;
  114. padding: 0;
  115. max-height: 50px;
  116. vertical-align: middle;
  117. }
  118. section#header .logo-text {
  119. font-family: 'Raleway';
  120. font-weight: 400;
  121. font-size: 2.6em;
  122. white-space: nowrap;
  123. }
  124. section#header .search {
  125. margin: 20px 0;
  126. }
  127. section#header .search .form-control {
  128. border-color: #eee;
  129. box-shadow: none;
  130. }
  131. section#header .search .btn {
  132. background-color: #eee;
  133. border-color: #eee;
  134. color: #888;
  135. }
  136. section#main-content {
  137. margin-bottom: 60px;
  138. }
  139. @media (min-width: 992px) {
  140. .main-content {
  141. min-height: 530px;
  142. }
  143. }
  144. .main-content, #order-clouder, .primary-content {
  145. &.left-layout {
  146. @media (max-width: 1199px) {
  147. min-height: auto;
  148. }
  149. }
  150. }
  151. section#footer {
  152. margin: 0;
  153. padding: 20px 10px;
  154. background-color: #f8f8f8;
  155. border-top: 1px solid #ddd;
  156. color: #666;
  157. font-size: 0.9em;
  158. }
  159. section#footer p {
  160. margin: 0;
  161. }
  162. @media (min-width: 450px) {
  163. section#footer {
  164. line-height: 32px;
  165. }
  166. }
  167. section#footer .back-to-top {
  168. float: right;
  169. }
  170. section#footer .back-to-top i {
  171. padding: 10px;
  172. background-color: #ddd;
  173. color: #888;
  174. border-radius: 3px;
  175. opacity: 0.7;
  176. }
  177. .adminreturndiv {
  178. display: none !important;
  179. }
  180. .alert-bordered-left {
  181. border: 0;
  182. border-left: 3px solid;
  183. border-radius: 0;
  184. text-align: left;
  185. }
  186. .truncate {
  187. white-space: nowrap;
  188. overflow: hidden;
  189. text-overflow: ellipsis;
  190. }
  191. /**
  192. * -------------------------
  193. * @section Main Navbar
  194. * -------------------------
  195. */
  196. /**
  197. * -------------------------
  198. * @section General Styles
  199. * -------------------------
  200. */
  201. div.header-lined small {
  202. white-space: nowrap;
  203. overflow: hidden;
  204. }
  205. @media (min-width: 380px) {
  206. .btn-input-padded-responsive {
  207. padding-left: 20px;
  208. padding-right: 20px;
  209. }
  210. }
  211. @media (min-width: 500px) {
  212. .btn-input-padded-responsive {
  213. padding-left: 35px;
  214. padding-right: 35px;
  215. }
  216. }
  217. #fullpage-overlay {
  218. display: table;
  219. position: fixed;
  220. z-index: 1000;
  221. top: 0;
  222. left: 0;
  223. width: 100%;
  224. height: 100%;
  225. background-color: black;
  226. background-color: rgba(0, 0, 0, 0.8);
  227. color: #fff;
  228. }
  229. #fullpage-overlay .outer-wrapper {
  230. position: relative;
  231. height: 100%;
  232. }
  233. #fullpage-overlay .inner-wrapper {
  234. position: absolute;
  235. top: 50%;
  236. left: 50%;
  237. height: 30%;
  238. width: 50%;
  239. margin: -3% 0 0 -25%;
  240. text-align: center;
  241. }
  242. #fullpage-overlay .msg {
  243. display: inline-block;
  244. padding: 20px;
  245. max-width: 400px;
  246. }
  247. .compact-control-bar {
  248. margin: 0;
  249. padding: 5px;
  250. background-color: #eee;
  251. border-radius: 3px;
  252. }
  253. /**
  254. * -------------------------
  255. * @section Margin Classes
  256. * -------------------------
  257. */
  258. .margin-10 {
  259. margin: 10px;
  260. }
  261. .margin-bottom {
  262. margin-bottom: 20px;
  263. }
  264. .margin-top-5 {
  265. margin-top: 5px;
  266. }
  267. .margin-bottom-5 {
  268. margin-bottom: 5px;
  269. }
  270. .col-button-left {
  271. padding-left: 0;
  272. padding-right: 7px;
  273. }
  274. .col-button-right {
  275. padding-left: 7px;
  276. padding-right: 0;
  277. }
  278. /**
  279. * -------------------------
  280. * @section Form Classes
  281. * -------------------------
  282. */
  283. .input-inline {
  284. display: inline-block;
  285. }
  286. .input-inline-100 {
  287. width: 100px;
  288. }
  289. .select-inline {
  290. display: inline-block;
  291. width: auto;
  292. }
  293. .form-group .field-error-msg {
  294. display: none;
  295. font-size: 0.85em;
  296. color: #cc0000;
  297. }
  298. /**
  299. * -------------------------
  300. * @section Responsive Pull Left & Right
  301. * -------------------------
  302. */
  303. /**
  304. * -------------------------
  305. * @section Login Page
  306. * -------------------------
  307. */
  308. .logincontainer {
  309. margin: 40px auto 100px auto;
  310. padding: 0 10px;
  311. max-width: 500px;
  312. }
  313. .logincontainer.with-social {
  314. max-width: 650px;
  315. }
  316. .logincontainer .social-signin-btns {
  317. padding: 23px 0;
  318. }
  319. @media (max-width: 500px) {
  320. .logincontainer .social-signin-btns .btn {
  321. display: block;
  322. width: 100%;
  323. }
  324. }
  325. @media (max-width: 600px) {
  326. .logincontainer {
  327. margin: 0 auto 30px auto;
  328. }
  329. }
  330. @media (min-width: 768px) {
  331. .logincontainer.with-social .login-form {
  332. padding-right: 29px;
  333. border-right: 1px solid #ddd;
  334. }
  335. .logincontainer .social-signin-btns .btn {
  336. display: block;
  337. width: 100%;
  338. }
  339. }
  340. /**
  341. * -------------------------
  342. * @section Icons
  343. * -------------------------
  344. */
  345. i.icon-rss {
  346. color: #ff6600;
  347. }
  348. /**
  349. * -------------------------
  350. * @section Main Menu
  351. * -------------------------
  352. */
  353. section#main-menu {
  354. background-color: #006687;
  355. }
  356. /**
  357. * -------------------------
  358. * @section Home Page Banner
  359. * -------------------------
  360. */
  361. /**
  362. * -------------------------
  363. * @section Home Page Shortcut Buttons
  364. * -------------------------
  365. */
  366. /**
  367. * -------------------------
  368. * Client Homepage
  369. * -------------------------
  370. */
  371. .home-kb-search {
  372. margin-bottom: 15px;
  373. }
  374. .home-kb-search .form-control {
  375. padding-left: 50px;
  376. }
  377. .home-kb-search i {
  378. float: left;
  379. margin-top: -30px;
  380. margin-left: 20px;
  381. }
  382. /**
  383. * -------------------------
  384. * Client Homepage Tiles
  385. * -------------------------
  386. */
  387. /**
  388. * -------------------------
  389. * Panel Accents
  390. * -------------------------
  391. */
  392. .panel.panel-accent-gold {
  393. border-top: 3px solid #f0ad4e;
  394. }
  395. .panel.panel-accent-green {
  396. border-top: 3px solid #5cb85c;
  397. }
  398. .panel.panel-accent-red {
  399. border-top: 3px solid #d9534f;
  400. }
  401. .panel.panel-accent-blue {
  402. border-top: 3px solid #5bc0de;
  403. }
  404. .panel.panel-accent-orange {
  405. border-top: 3px solid #f39c12;
  406. }
  407. .panel.panel-accent-pink {
  408. border-top: 3px solid #e671b8;
  409. }
  410. .panel.panel-accent-purple {
  411. border-top: 3px solid #7b4f9d;
  412. }
  413. .panel.panel-accent-lime {
  414. border-top: 3px solid #8cbf26;
  415. }
  416. .panel.panel-accent-magenta {
  417. border-top: 3px solid #ff0097;
  418. }
  419. .panel.panel-accent-teal {
  420. border-top: 3px solid #00aba9;
  421. }
  422. .panel.panel-accent-turquoise {
  423. border-top: 3px solid #1abc9c;
  424. }
  425. .panel.panel-accent-emerald {
  426. border-top: 3px solid #2ecc71;
  427. }
  428. .panel.panel-accent-amethyst {
  429. border-top: 3px solid #9b59b6;
  430. }
  431. .panel.panel-accent-wet-asphalt {
  432. border-top: 3px solid #34495e;
  433. }
  434. .panel.panel-accent-midnight-blue {
  435. border-top: 3px solid #2c3e50;
  436. }
  437. .panel.panel-accent-sun-flower {
  438. border-top: 3px solid #f1c40f;
  439. }
  440. .panel.panel-accent-pomegranate {
  441. border-top: 3px solid #c0392b;
  442. }
  443. .panel.panel-accent-silver {
  444. border-top: 3px solid #bdc3c7;
  445. }
  446. .panel.panel-accent-asbestos {
  447. border-top: 3px solid #7f8c8d;
  448. }
  449. .panel.panel-accent-brand-cpanel-orange {
  450. border-top: 3px solid #ff6c2c;
  451. }
  452. /**
  453. * -------------------------
  454. * Background Colors
  455. * -------------------------
  456. */
  457. .bg-color-gold {
  458. background-color: #f0ad4e;
  459. }
  460. .bg-color-green {
  461. background-color: #5cb85c;
  462. }
  463. .bg-color-red {
  464. background-color: #d9534f;
  465. }
  466. .bg-color-blue {
  467. background-color: #5bc0de;
  468. }
  469. .bg-color-orange {
  470. background-color: #f39c12;
  471. }
  472. .bg-color-pink {
  473. background-color: #e671b8;
  474. }
  475. .bg-color-purple {
  476. background-color: #7b4f9d;
  477. }
  478. .bg-color-lime {
  479. background-color: #8cbf26;
  480. }
  481. .bg-color-magenta {
  482. background-color: #ff0097;
  483. }
  484. .bg-color-teal {
  485. background-color: #00aba9;
  486. }
  487. .bg-color-turquoise {
  488. background-color: #1abc9c;
  489. }
  490. .bg-color-emerald {
  491. background-color: #2ecc71;
  492. }
  493. .bg-color-amethyst {
  494. background-color: #9b59b6;
  495. }
  496. .bg-color-wet-asphalt {
  497. background-color: #34495e;
  498. }
  499. .bg-color-midnight-blue {
  500. background-color: #2c3e50;
  501. }
  502. .bg-color-sun-flower {
  503. background-color: #f1c40f;
  504. }
  505. .bg-color-pomegranate {
  506. background-color: #c0392b;
  507. }
  508. .bg-color-silver {
  509. background-color: #bdc3c7;
  510. }
  511. .bg-color-asbestos {
  512. background-color: #7f8c8d;
  513. }
  514. /**
  515. * -------------------------
  516. * @section Navigational Bar
  517. * -------------------------
  518. */
  519. /**
  520. * -------------------------
  521. * @section Twitter Feed
  522. * -------------------------
  523. */
  524. div.home-twitter {
  525. margin-top: 20px;
  526. margin-bottom: 40px;
  527. }
  528. div.tweet > i {
  529. color: #2BABCF;
  530. float: left;
  531. margin-right: 15px;
  532. }
  533. div.tweet span {
  534. font-size: 12px;
  535. color: #ccc;
  536. }
  537. /**
  538. * -------------------------
  539. * @section Domain Checker
  540. * -------------------------
  541. */
  542. /**
  543. * -------------------------
  544. * @section Announcements Page
  545. * -------------------------
  546. */
  547. /**
  548. * -------------------------
  549. * @section Product Details Page
  550. * -------------------------
  551. */
  552. div.product-details {
  553. margin: 0 0 20px 0;
  554. }
  555. div.product-details div.product-icon {
  556. margin: 0;
  557. padding: 0;
  558. background-color: #efefef;
  559. border-radius: 10px;
  560. padding: 30px;
  561. font-size: 60px;
  562. line-height: 1em;
  563. }
  564. .product-status {
  565. margin: 0 0 20px 0;
  566. padding: 0;
  567. border-radius: 10px;
  568. }
  569. .product-status-pending {
  570. background-color: #F89406;
  571. }
  572. .product-status-active {
  573. background-color: #46A546;
  574. }
  575. .product-status-suspended {
  576. background-color: #0768B8;
  577. }
  578. .product-status-terminated,
  579. .product-status-cancelled {
  580. background-color: #666;
  581. }
  582. .product-status-fraud {
  583. background-color: #000;
  584. }
  585. .product-status-text {
  586. padding: 5px;
  587. color: #fff;
  588. text-align: center;
  589. text-transform: uppercase;
  590. }
  591. div.product-details-tab-container {
  592. margin: 0;
  593. padding: 20px;
  594. border: 1px solid #ddd;
  595. border-top: 0;
  596. }
  597. .module-client-area {
  598. padding: 15px 15px 0 15px;
  599. }
  600. .ssl-inactive {
  601. cursor: pointer;
  602. }
  603. #mc-promo-widgets {
  604. .panel {
  605. &.content {
  606. display: flex;
  607. justify-content: space-between;
  608. }
  609. .panel-heading {
  610. padding: 1rem;
  611. .panel-title {
  612. font-size: 1rem;
  613. }
  614. }
  615. }
  616. .btn {
  617. padding: .375rem .75rem;
  618. }
  619. }
  620. .mc-promo-manage, .mc-promo-login {
  621. position: relative;
  622. .logo {
  623. display: flex;
  624. align-items: center;
  625. justify-content: center;
  626. border-right: 1px solid @default-border-color;
  627. padding: 1em;
  628. img {
  629. max-width: 70px;
  630. display: block;
  631. border-radius: 4px;
  632. }
  633. + div {
  634. display: flex;
  635. flex-direction: column;
  636. width: 100%;
  637. }
  638. }
  639. }
  640. @media (min-width: 1200px) {
  641. #mc-promo-widgets {
  642. display: grid;
  643. grid-template-columns: repeat(2, 1fr);
  644. -moz-column-gap: 1%;
  645. column-gap: 1%;
  646. }
  647. }
  648. /**
  649. * -------------------------
  650. * @section List Tables
  651. * -------------------------
  652. */
  653. /**
  654. * -------------------------
  655. * @section Status Lights
  656. * -------------------------
  657. */
  658. .status {
  659. display: block;
  660. font-size: @baseFontSize - 2;
  661. line-height: 22px;
  662. border-radius: 4px;
  663. background-color: @white;
  664. }
  665. .status-custom {
  666. background-color: #fff;
  667. color: black;
  668. border: 1px solid black;
  669. padding: 1px;
  670. }
  671. .status-pending {
  672. background-color: #d9534f;
  673. }
  674. .status-pending-transfer {
  675. background-color: #f0ad4e;
  676. }
  677. .status-active,
  678. .status-open,
  679. .status-completed {
  680. background-color: #5cb85c;
  681. }
  682. .status-suspended {
  683. background-color: #f0ad4e;
  684. }
  685. .status-customer-reply {
  686. background-color: #ff6600;
  687. }
  688. .status-fraud {
  689. background-color: #000;
  690. }
  691. .status-answered {
  692. background-color: #7b4f9d;
  693. }
  694. .status-expired,
  695. .status-transferred-away {
  696. background-color: #004258;
  697. }
  698. .status-terminated {
  699. background-color: #666;
  700. }
  701. .status-onhold {
  702. background-color: #336699;
  703. }
  704. .status-inprogress {
  705. background-color: #c0392b;
  706. }
  707. .status-closed {
  708. background-color: #87939f;
  709. }
  710. .status-paid {
  711. background-color: #5cb85c;
  712. }
  713. .status-unpaid {
  714. background-color: #d9534f;
  715. }
  716. .status-cancelled {
  717. background-color: #87939f;
  718. }
  719. .status-collections {
  720. background-color: #2c3e50;
  721. }
  722. .status-refunded {
  723. background-color: #f0ad4e;
  724. }
  725. .status-payment-pending {
  726. background-color: #336699;
  727. }
  728. .status-delivered {
  729. background-color: #336699;
  730. }
  731. .status-accepted {
  732. background-color: #5cb85c;
  733. }
  734. .status-lost,
  735. .status-dead {
  736. background-color: #000;
  737. }
  738. .status-pending-registration,
  739. .status-redemption,
  740. .status-grace {
  741. background-color: #f89406;
  742. }
  743. /**
  744. * -------------------------
  745. * Colors
  746. * -------------------------
  747. */
  748. .card-accent-gold {
  749. border-top: 3px solid #f0ad4e;
  750. }
  751. .card-accent-green {
  752. border-top: 3px solid #5cb85c;
  753. }
  754. .card-accent-red {
  755. border-top: 3px solid #d9534f;
  756. }
  757. .card-accent-blue {
  758. border-top: 3px solid #5bc0de;
  759. }
  760. .card-accent-orange {
  761. border-top: 3px solid #ff6600;
  762. }
  763. .card-accent-pink {
  764. border-top: 3px solid #e671b8;
  765. }
  766. .card-accent-purple {
  767. border-top: 3px solid #7b4f9d;
  768. }
  769. .card-accent-lime {
  770. border-top: 3px solid #8cbf26;
  771. }
  772. .card-accent-magenta {
  773. border-top: 3px solid #ff0097;
  774. }
  775. .card-accent-teal {
  776. border-top: 3px solid #00aba9;
  777. }
  778. .card-accent-turquoise {
  779. border-top: 3px solid #1abc9c;
  780. }
  781. .card-accent-emerald {
  782. border-top: 3px solid #2ecc71;
  783. }
  784. .card-accent-amethyst {
  785. border-top: 3px solid #9b59b6;
  786. }
  787. .card-accent-wet-asphalt {
  788. border-top: 3px solid #004258;
  789. }
  790. .card-accent-midnight-blue {
  791. border-top: 3px solid #2c3e50;
  792. }
  793. .card-accent-sun-flower {
  794. border-top: 3px solid #f1c40f;
  795. }
  796. .card-accent-pomegranate {
  797. border-top: 3px solid #c0392b;
  798. }
  799. .card-accent-silver {
  800. border-top: 3px solid #bdc3c7;
  801. }
  802. .card-accent-asbestos {
  803. border-top: 3px solid #7f8c8d;
  804. }
  805. .bg-color-gold {
  806. background-color: #f0ad4e;
  807. }
  808. .bg-color-green {
  809. background-color: #5cb85c;
  810. }
  811. .bg-color-red {
  812. background-color: #d9534f;
  813. }
  814. .bg-color-blue {
  815. background-color: #5bc0de;
  816. }
  817. .bg-color-orange {
  818. background-color: #ff6600;
  819. }
  820. .bg-color-pink {
  821. background-color: #e671b8;
  822. }
  823. .bg-color-purple {
  824. background-color: #7b4f9d;
  825. }
  826. .bg-color-lime {
  827. background-color: #8cbf26;
  828. }
  829. .bg-color-magenta {
  830. background-color: #ff0097;
  831. }
  832. .bg-color-teal {
  833. background-color: #00aba9;
  834. }
  835. .bg-color-turquoise {
  836. background-color: #1abc9c;
  837. }
  838. .bg-color-emerald {
  839. background-color: #2ecc71;
  840. }
  841. .bg-color-amethyst {
  842. background-color: #9b59b6;
  843. }
  844. .bg-color-wet-asphalt {
  845. background-color: #004258;
  846. }
  847. .bg-color-midnight-blue {
  848. background-color: #2c3e50;
  849. }
  850. .bg-color-sun-flower {
  851. background-color: #f1c40f;
  852. }
  853. .bg-color-pomegranate {
  854. background-color: #c0392b;
  855. }
  856. .bg-color-silver {
  857. background-color: #bdc3c7;
  858. }
  859. .bg-color-asbestos {
  860. background-color: #7f8c8d;
  861. }
  862. .label-default {
  863. background-color: #666;
  864. }
  865. .label-success {
  866. background-color: #5cb85c;
  867. }
  868. .label-info {
  869. background-color: #5bc0de;
  870. }
  871. .label-warning {
  872. background-color: #f0ad4e;
  873. }
  874. .label-danger {
  875. background-color: #d9534f;
  876. }
  877. /**
  878. * -------------------------
  879. * @section Affiliates Page
  880. * -------------------------
  881. */
  882. /**
  883. * -------------------------
  884. * @section Support Tickets
  885. * -------------------------
  886. */
  887. .ticket-subject.unread {
  888. font-weight: bold;
  889. }
  890. .ticket-reply .rating,
  891. .ticket-reply .rating-done {
  892. float: right;
  893. padding: 5px 10px;
  894. unicode-bidi: bidi-override;
  895. direction: rtl;
  896. }
  897. .ticket-reply .rating span.star,
  898. .ticket-reply .rating-done span.star {
  899. font-family: "Font Awesome 5 Pro";
  900. font-weight: normal;
  901. font-style: normal;
  902. display: inline-block;
  903. }
  904. .ticket-reply .rating-done .rated {
  905. display: inline-block;
  906. font-size: 12px;
  907. }
  908. .ticket-reply .rating span.star:hover {
  909. cursor: pointer;
  910. }
  911. .ticket-reply .rating span.star:before,
  912. .ticket-reply .rating-done span.star:before {
  913. content: "\f005";
  914. padding-right: 0;
  915. color: #999;
  916. }
  917. .ticket-reply .rating span.star:hover:before,
  918. .ticket-reply .rating span.star:hover ~ span.star:before,
  919. .ticket-reply .rating-done span.star.active:before {
  920. content: "\f005";
  921. color: #F2DE88;
  922. }
  923. .md-editor .btn-toolbar .btn-group {
  924. margin-right: 6px;
  925. }
  926. .view-ticket .card-body, .view-ticket .mc-promo-manage .content, .mc-promo-manage .view-ticket .content, .view-ticket .mc-promo-login .content, .mc-promo-login .view-ticket .content {
  927. padding: 0;
  928. }
  929. .view-ticket .card-body:last-child, .view-ticket .mc-promo-manage .content:last-child, .mc-promo-manage .view-ticket .content:last-child, .view-ticket .mc-promo-login .content:last-child, .mc-promo-login .view-ticket .content:last-child {
  930. border-bottom: 0;
  931. }
  932. .view-ticket .posted-by {
  933. font-size: 0.9rem;
  934. padding: 0.5rem 0.75rem;
  935. }
  936. .view-ticket .posted-by .posted-by-name {
  937. font-weight: bold;
  938. }
  939. .view-ticket .message p:last-child {
  940. margin-bottom: 0;
  941. }
  942. .view-ticket .attachments {
  943. border-top: 1px dashed #ddd;
  944. font-size: 80%;
  945. }
  946. .view-ticket .attachment-list {
  947. list-style: none;
  948. margin: 10px 0 -10px 0;
  949. padding: 0;
  950. }
  951. .view-ticket .attachment-list li {
  952. display: inline-block;
  953. width: 190px;
  954. vertical-align: top;
  955. }
  956. .view-ticket .attachment-list li span {
  957. display: block;
  958. padding: 5px 5px 10px 5px;
  959. margin-bottom: 10px;
  960. border: 1px solid #ddd;
  961. border-radius: 3px;
  962. }
  963. .view-ticket .attachment-list li figure {
  964. margin: 0 0 5px 0;
  965. background-color: #f6f6f6;
  966. line-height: 100px;
  967. text-align: center;
  968. font-size: 4em;
  969. }
  970. /**
  971. * -------------------------
  972. * @section Support Ticket Feedback
  973. * -------------------------
  974. */
  975. .ticketfeedbackstaffcont {
  976. margin: 10px auto;
  977. padding: 15px;
  978. width: 90%;
  979. background-color: #efefef;
  980. border-radius: 6px;
  981. }
  982. .ticketfeedbackrating {
  983. padding: 0 100px;
  984. }
  985. .ticketfeedbackrating .rate {
  986. float: left;
  987. padding: 0 10px;
  988. min-width: 30px;
  989. text-align: center;
  990. }
  991. @media (min-width: 380px) {
  992. .btn-input-padded-responsive {
  993. padding-left: 20px;
  994. padding-right: 20px;
  995. }
  996. }
  997. @media (min-width: 500px) {
  998. .btn-input-padded-responsive {
  999. padding-left: 35px;
  1000. padding-right: 35px;
  1001. }
  1002. }
  1003. /**
  1004. * -------------------------
  1005. * @section Requestor Types
  1006. * -------------------------
  1007. */
  1008. .requestor-type-operator {
  1009. background-color: #5bc0de;
  1010. }
  1011. .requestor-type-owner {
  1012. background-color: #5cb85c;
  1013. }
  1014. .requestor-type-authorizeduser {
  1015. background-color: #777;
  1016. }
  1017. .requestor-type-externaluser {
  1018. background-color: #f0ad4e;
  1019. }
  1020. .requestor-type-subaccount {
  1021. background-color: #777;
  1022. }
  1023. .requestor-type-guest {
  1024. background-color: #ccc;
  1025. }
  1026. /**
  1027. * -------------------------
  1028. * @section Support Ticket Feedback
  1029. * -------------------------
  1030. */
  1031. .ticketfeedbackstaffcont {
  1032. margin: 10px auto;
  1033. padding: 15px;
  1034. width: 90%;
  1035. background-color: #efefef;
  1036. -moz-border-radius: 6px;
  1037. -webkit-border-radius: 6px;
  1038. -o-border-radius: 6px;
  1039. border-radius: 6px;
  1040. }
  1041. .ticketfeedbackrating {
  1042. padding: 0 100px;
  1043. }
  1044. .ticketfeedbackrating .rate {
  1045. float: left;
  1046. padding: 0 10px;
  1047. min-width: 30px;
  1048. text-align: center;
  1049. }
  1050. /**
  1051. * -------------------------
  1052. * @section Client Notifications
  1053. * -------------------------
  1054. */
  1055. /**
  1056. * -------------------------
  1057. * @section Captcha
  1058. * -------------------------
  1059. */
  1060. .captchaimage {
  1061. margin: 0;
  1062. padding: 3px 0 4px;
  1063. -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  1064. transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  1065. text-align: right;
  1066. }
  1067. /**
  1068. * -------------------------
  1069. * @section Credit Cards
  1070. * -------------------------
  1071. */
  1072. div.credit-card {
  1073. margin: 0 auto 30px;
  1074. max-width: 400px;
  1075. background-color: #f8f8f8;
  1076. border: 1px solid #ccc;
  1077. border-radius: 8px;
  1078. }
  1079. div.credit-card div.card-type {
  1080. float: right;
  1081. padding: 10px 20px;
  1082. font-size: 1.2em;
  1083. }
  1084. div.credit-card div.card-icon {
  1085. float: left;
  1086. padding: 7px 7px;
  1087. font-size: 1.2em;
  1088. }
  1089. div.credit-card div.card-number {
  1090. padding: 10px;
  1091. background-color: #ccc;
  1092. font-size: 1.6em;
  1093. text-align: center;
  1094. clear: both;
  1095. }
  1096. div.credit-card div.card-start {
  1097. float: left;
  1098. padding: 20px 0 50px 50px;
  1099. font-size: 1.3em;
  1100. text-align: right;
  1101. }
  1102. div.credit-card div.card-expiry {
  1103. float: right;
  1104. padding: 20px 50px 50px 0;
  1105. height: 120px;
  1106. font-size: 1.3em;
  1107. text-align: right;
  1108. }
  1109. div.credit-card div.end {
  1110. clear: both;
  1111. }
  1112. @media (max-width: 600px) {
  1113. div.credit-card {
  1114. max-width: 250px;
  1115. }
  1116. div.credit-card div.card-type {
  1117. font-size: 1.0em;
  1118. }
  1119. div.credit-card div.card-icon {
  1120. font-size: 1.0em;
  1121. }
  1122. div.credit-card div.card-number {
  1123. padding: 6px 10px;
  1124. font-size: 1.2em;
  1125. }
  1126. div.credit-card div.card-start {
  1127. padding: 20px 0 30px 50px;
  1128. font-size: 0.9em;
  1129. }
  1130. div.credit-card div.card-expiry {
  1131. padding: 20px 50px 30px 0;
  1132. height: 80px;
  1133. font-size: 0.9em;
  1134. }
  1135. }
  1136. .auth3d-area {
  1137. border: 1px solid #fff;
  1138. }
  1139. .submit-3d {
  1140. width: 80%;
  1141. border: 1px solid #fff;
  1142. }
  1143. /* Card colors colorpicked from website logos */
  1144. div.credit-card .logo-visa {
  1145. color: #1a1f71;
  1146. }
  1147. div.credit-card .logo-amex {
  1148. color: #43abdf;
  1149. }
  1150. div.credit-card .logo-mastercard {
  1151. color: #ed0b00;
  1152. }
  1153. div.credit-card .logo-discover {
  1154. color: #000000;
  1155. }
  1156. div.two-column-grid,
  1157. div.three-column-grid {
  1158. display: inline-grid;
  1159. grid-template-columns: repeat(3, auto) minmax(10em, 30em) auto;
  1160. font-weight: 300;
  1161. font-size: 13px;
  1162. }
  1163. div.two-column-grid {
  1164. grid-template-columns: repeat(2, auto) minmax(10em, 30em) auto;
  1165. }
  1166. div.two-column-grid > div,
  1167. div.three-column-grid > div {
  1168. margin: 5px 0;
  1169. padding-right: 5px;
  1170. }
  1171. div.two-column-grid > div > label,
  1172. div.three-column-grid > div > label {
  1173. font-weight: normal;
  1174. }
  1175. #frmPayment .paymethod-info {
  1176. margin: 5px 0;
  1177. cursor: pointer;
  1178. }
  1179. #frmPayment .paymethod-info label {
  1180. font-weight: normal;
  1181. cursor: pointer;
  1182. }
  1183. .iframe-input-container {
  1184. height: 34px;
  1185. }
  1186. #payMethodList tr {
  1187. font-size: smaller;
  1188. }
  1189. #payMethodList tr td:nth-child(2),
  1190. #payMethodList tr td:nth-child(3) {
  1191. max-width: 15em;
  1192. overflow: hidden;
  1193. white-space: nowrap;
  1194. text-overflow: ellipsis;
  1195. }
  1196. /**
  1197. * -------------------------
  1198. * @section Sidebar Responsive Behaviour Classes
  1199. * -------------------------
  1200. */
  1201. div.sidebar .list-group-item-selected {
  1202. background-color: #319FC3;
  1203. color: #FFFFFF;
  1204. }
  1205. div.sidebar .list-group-item-selected .badge {
  1206. background-color: #FFFFFF;
  1207. color: #319FC3;
  1208. }
  1209. .sidebar.sidebar-secondary {
  1210. clear: left;
  1211. }
  1212. @media (max-width: 991px) {
  1213. .panel-actions {
  1214. border: 0;
  1215. box-shadow: none;
  1216. }
  1217. .panel-actions > .panel-heading > .panel-title {
  1218. display: inline;
  1219. }
  1220. .panel-actions > .panel-heading {
  1221. border-radius: 3px;
  1222. }
  1223. .panel-actions > .list-group {
  1224. padding: 10px;
  1225. overflow-x: scroll;
  1226. overflow-y: unset;
  1227. white-space: nowrap;
  1228. }
  1229. .panel-actions > .list-group .list-group-item {
  1230. display: inline-block;
  1231. border: 1px solid #ddd !important;
  1232. border-radius: 3px !important;
  1233. white-space: nowrap;
  1234. text-align: center;
  1235. padding: 5px 25px;
  1236. margin: 2px;
  1237. }
  1238. .panel-actions > .list-group .list-group-item > .badge {
  1239. float: none;
  1240. margin: -2px 0 0 10px;
  1241. }
  1242. }
  1243. /**
  1244. * -------------------------
  1245. * @section Two Factor Authentication
  1246. * -------------------------
  1247. */
  1248. .twofa-setup .modal-body {
  1249. min-height: 100px;
  1250. }
  1251. .twofa-setup .activation-msg {
  1252. margin: 25px 0;
  1253. padding: 15px;
  1254. border: 1px dashed #ddd;
  1255. text-align: center;
  1256. font-weight: bold;
  1257. font-size: 1.1em;
  1258. }
  1259. .twofa-setup .backup-code {
  1260. margin: 20px auto;
  1261. padding: 10px;
  1262. background-color: #efefef;
  1263. color: #444;
  1264. text-align: center;
  1265. }
  1266. .twofa-module {
  1267. margin: 10px 0;
  1268. padding: 14px 20px;
  1269. border: 1px solid #ccc;
  1270. border-radius: 4px;
  1271. cursor: pointer;
  1272. }
  1273. .twofa-module .col-radio {
  1274. float: left;
  1275. width: 35px;
  1276. margin-top: 12px;
  1277. }
  1278. .twofa-module .col-logo {
  1279. float: left;
  1280. width: 80px;
  1281. line-height: 40px;
  1282. text-align: center;
  1283. }
  1284. .twofa-module .col-description {
  1285. margin-left: 136px;
  1286. }
  1287. .twofa-module img {
  1288. max-width: 100%;
  1289. max-height: 40px;
  1290. }
  1291. .twofa-module.active {
  1292. border-color: #337ab7;
  1293. }
  1294. /**
  1295. * -------------------------
  1296. * @section Popups
  1297. * -------------------------
  1298. */
  1299. #popup-backdrop {
  1300. background-color: #2E363F;
  1301. padding: 15px;
  1302. height: 100%;
  1303. }
  1304. .popup-header-padding {
  1305. margin-top: 5px;
  1306. margin-bottom: 5px;
  1307. }
  1308. /**
  1309. * -------------------------
  1310. * @section Uncategorized
  1311. * -------------------------
  1312. */
  1313. .btn.btn-action {
  1314. background-color: #72CA06;
  1315. border-color: #498302;
  1316. }
  1317. /**
  1318. * -------------------------
  1319. * @section Knowledgebase
  1320. * -------------------------
  1321. */
  1322. .kb-category {
  1323. margin: 0 0 10px 0;
  1324. }
  1325. .kb-category a {
  1326. display: block;
  1327. margin: 0 0 2px 0;
  1328. font-weight: bold;
  1329. text-decoration: none;
  1330. }
  1331. .kb-category a small {
  1332. color: #888;
  1333. }
  1334. .kbarticles {
  1335. padding: 0 0 25px 0;
  1336. font-size: 0.8em;
  1337. }
  1338. .kbarticles a {
  1339. font-size: 1.2em;
  1340. font-weight: 700;
  1341. }
  1342. .kbarticles a .glyphicon {
  1343. color: #8ce;
  1344. }
  1345. .kbcategories a.admin-inline-edit,
  1346. .kbarticles a.admin-inline-edit {
  1347. font-size: 0.92em;
  1348. }
  1349. h3.kb-alsoread {
  1350. padding: 8px 15px;
  1351. background-color: #eee;
  1352. border-radius: 6px;
  1353. font-size: 0.9em;
  1354. }
  1355. .kb-article-title {
  1356. margin: 0 0 22px 0;
  1357. font-size: 1.6em;
  1358. }
  1359. .kb-article-title h2 {
  1360. margin: 0;
  1361. }
  1362. .kb-article-title .btn-print {
  1363. float: right;
  1364. font-size: 1em;
  1365. }
  1366. .kb-article-content {
  1367. margin: 0 0 30px 0;
  1368. font-size: 1.2em;
  1369. line-height: 1.2em;
  1370. font-weight: 200;
  1371. }
  1372. .kb-rate-article {
  1373. margin: 20px 0;
  1374. padding: 15px 20px;
  1375. background-color: #eff7ff;
  1376. font-size: 1.4em;
  1377. line-height: 38px;
  1378. font-weight: 200;
  1379. color: #4d7cab;
  1380. }
  1381. .kb-rate-article .btn-lg {
  1382. padding: 0 16px;
  1383. }
  1384. .kb-article-details {
  1385. color: #999;
  1386. list-style: none;
  1387. margin: 35px 5px;
  1388. padding: 0;
  1389. }
  1390. .kb-search .form-control {
  1391. box-shadow: none;
  1392. border-radius: 3px;
  1393. }
  1394. .kb-search > .input-group-btn > .btn {
  1395. border-radius: 0 3px 3px 0;
  1396. }
  1397. /**
  1398. * -------------------------
  1399. * @section Domain Checker Responsive
  1400. * -------------------------
  1401. */
  1402. #stepResults {
  1403. font-size: 20px;
  1404. }
  1405. #stepResults .label {
  1406. font-size: 20px;
  1407. }
  1408. @media (max-width: 992px) {
  1409. #stepResults {
  1410. font-size: 14px;
  1411. }
  1412. #stepResults .label {
  1413. font-size: 14px;
  1414. }
  1415. div.domainresults table tr td {
  1416. padding: 5px 5px;
  1417. }
  1418. }
  1419. /**
  1420. * -------------------------
  1421. * Printing
  1422. * -------------------------
  1423. */
  1424. @media print {
  1425. .sidebar,
  1426. #main-menu,
  1427. #top-nav,
  1428. .header-lined {
  1429. display: none;
  1430. }
  1431. a[href]:after {
  1432. content:"" !important;
  1433. }
  1434. }
  1435. /**
  1436. * -------------------------
  1437. * Badges Spacing
  1438. * -------------------------
  1439. */
  1440. h3.with-badge::after {
  1441. content: '.';
  1442. color: #fff;
  1443. }
  1444. h3.with-badge span, h3.with-badge i {
  1445. float: left;
  1446. padding-right: 8px;
  1447. }
  1448. h3.with-badge .badge {
  1449. line-height: initial;
  1450. margin-top: 3px;
  1451. }
  1452. @media (min-width: 992px) {
  1453. h3.with-badge .badge {
  1454. padding: 3px 7px 3px 8px;
  1455. }
  1456. .sidebar .list-group-item .badge {
  1457. margin-top: -2px;
  1458. padding: 3px 7px 3px 8px;
  1459. line-height: initial;
  1460. min-width: 36px;
  1461. }
  1462. }
  1463. /**
  1464. * -------------------------
  1465. * Admin Masquerade Notice
  1466. * -------------------------
  1467. */
  1468. .admin-masquerade-notice {
  1469. margin: 25px 0 0 auto;
  1470. padding: 4px 10px;
  1471. max-width: 240px;
  1472. font-family: Tahoma;
  1473. font-size: 0.7em;
  1474. text-align: right;
  1475. }
  1476. .admin-masquerade-notice a {
  1477. text-decoration: underline;
  1478. }
  1479. a.admin-inline-edit {
  1480. margin-left: 6px;
  1481. font-weight: 400;
  1482. color: #888;
  1483. }
  1484. a.admin-inline-edit:hover {
  1485. color: #444;
  1486. text-decoration: none;
  1487. }
  1488. /**
  1489. * -------------------------
  1490. * Language Chooser
  1491. * -------------------------
  1492. */
  1493. /**
  1494. * -------------------------
  1495. * Login or Register Popover
  1496. * -------------------------
  1497. */
  1498. /**
  1499. * -------------------------
  1500. * Mass Pay
  1501. * -------------------------
  1502. */
  1503. tr.masspay-invoice-detail td {
  1504. font-size: 0.8em;
  1505. }
  1506. tr.masspay-total td {
  1507. background-color: #efefef;
  1508. font-weight: bold;
  1509. }
  1510. /**
  1511. * -------------------------
  1512. * Error Page
  1513. * -------------------------
  1514. */
  1515. .error-container {
  1516. text-align: center;
  1517. }
  1518. .error-container h1 {
  1519. margin-top: 40px;
  1520. }
  1521. .error-container .buttons {
  1522. margin: 25px 0;
  1523. }
  1524. .error-container .buttons .btn {
  1525. margin: 5px;
  1526. }
  1527. /**
  1528. * -------------------------
  1529. * Collapsable Panels
  1530. * -------------------------
  1531. */
  1532. .panel-collapsable > .panel-heading {
  1533. cursor: pointer;
  1534. }
  1535. .panel-collapsable > .panel-body-collapsed {
  1536. display: none;
  1537. }
  1538. /**
  1539. * -------------------------
  1540. * Licensing Addon
  1541. * -------------------------
  1542. */
  1543. .licensing-addon-latest-download h3 {
  1544. margin-top: 0;
  1545. }
  1546. /**
  1547. * -------------------------
  1548. * Domain Checker Captchas
  1549. * -------------------------
  1550. */
  1551. #google-recaptcha-domainchecker {
  1552. width: 304px;
  1553. height: 78px;
  1554. margin-top: 15px;
  1555. margin-bottom: 15px;
  1556. }
  1557. #default-captcha-domainchecker {
  1558. margin-top: 15px;
  1559. margin-bottom: -63px;
  1560. }
  1561. #default-captcha-domainchecker #inputCaptcha {
  1562. width: 100px;
  1563. border-radius: 4px;
  1564. }
  1565. .domainchecker-homepage-captcha #google-recaptcha-domainchecker {
  1566. margin-bottom: -46px;
  1567. }
  1568. @media (max-width: 991px) {
  1569. #google-recaptcha-domainchecker {
  1570. padding-left: 2.5%;
  1571. }
  1572. #default-captcha-domainchecker {
  1573. margin-bottom: -25px;
  1574. }
  1575. }
  1576. @media (max-width: 736px) {
  1577. #google-recaptcha-domainchecker {
  1578. transform: scale(0.935);
  1579. transform-origin: 0 0;
  1580. -webkit-transform: scale(0.935);
  1581. -webkit-transform-origin: 0 0;
  1582. }
  1583. }
  1584. @media (max-width: 384px) {
  1585. #google-recaptcha-domainchecker {
  1586. transform: scale(0.96);
  1587. transform-origin: 0 0;
  1588. }
  1589. }
  1590. @media (max-width: 360px) {
  1591. #google-recaptcha-domainchecker {
  1592. transform: scale(0.89);
  1593. transform-origin: 0 0;
  1594. }
  1595. }
  1596. @media (max-width: 320px) {
  1597. #google-recaptcha-domainchecker {
  1598. padding-left: 13.5%;
  1599. transform: scale(0.83);
  1600. transform-origin: 0 0;
  1601. -webkit-transform: scale(0.785);
  1602. -webkit-transform-origin: 0 0;
  1603. }
  1604. }
  1605. /**
  1606. * -------------------------
  1607. * Email Verification
  1608. * -------------------------
  1609. */
  1610. .verification-banner {
  1611. margin: 0;
  1612. padding: 10px;
  1613. font-weight: 300;
  1614. background-color: @brand-danger;
  1615. border-bottom: 1px solid @brand-danger;
  1616. color: @white;
  1617. .close {
  1618. text-shadow: none;
  1619. color: @white;
  1620. }
  1621. .text {
  1622. display: block;
  1623. }
  1624. .btn {
  1625. margin: 3px 0 7px;
  1626. padding: 3px 10px;
  1627. font-style: normal;
  1628. white-space: nowrap;
  1629. overflow: hidden;
  1630. text-overflow: ellipsis;
  1631. }
  1632. }
  1633. .verification-banner .btn.close {
  1634. margin-left: 10px;
  1635. background-color: transparent;
  1636. font-size: 22px;
  1637. opacity: 1;
  1638. }
  1639. .verification-banner .fas,
  1640. .verification-banner .fal,
  1641. .verification-banner .far {
  1642. float: left;
  1643. margin-right: 10px;
  1644. margin-top: 10px;
  1645. }
  1646. @media (min-width: 768px) {
  1647. .verification-banner .text {
  1648. padding-top: 9px;
  1649. padding-bottom: 0;
  1650. }
  1651. .verification-banner .btn {
  1652. margin: 0;
  1653. padding: 9px 25px;
  1654. }
  1655. .verification-banner .button {
  1656. float: right;
  1657. }
  1658. .verification-banner .fas,
  1659. .verification-banner .fal,
  1660. .verification-banner .far {
  1661. font-size: 36px;
  1662. }
  1663. }
  1664. .verification-banner.email-verification .btn.btn-action,
  1665. .verification-banner.email-verification .btn.btn-action:active,
  1666. .verification-banner.email-verification .btn.btn-action:hover,
  1667. .verification-banner.email-verification .btn.btn-action:focus,
  1668. .verification-banner.email-verification .btn.btn-action[disabled]:hover {
  1669. background-color: #50525f!important;
  1670. border-color: #50525f!important;
  1671. color: #fff!important;
  1672. }
  1673. .verification-banner.user-validation i {
  1674. margin-left: 0.11em;
  1675. }
  1676. /**
  1677. * -------------------------
  1678. * Markdown Editor
  1679. * -------------------------
  1680. */
  1681. .md-editor {
  1682. border: 1px solid #ddd;
  1683. border-radius: 3px;
  1684. }
  1685. .md-editor > .btn-toolbar {
  1686. background-color: #fff !important;
  1687. }
  1688. .md-editor > .btn-toolbar .hidden {
  1689. display: none !important;
  1690. }
  1691. .md-editor > textarea.markdown-editor,
  1692. .md-editor > .md-preview {
  1693. padding: 15px !important;
  1694. border-top: 1px solid #ddd !important;
  1695. border-bottom: 1px solid #ddd !important;
  1696. background-color: #fff !important;
  1697. }
  1698. div.md-editor.active {
  1699. display: block;
  1700. border: 1px solid #ddd;
  1701. outline: 0;
  1702. -webkit-box-shadow: none;
  1703. box-shadow: none;
  1704. }
  1705. .markdown-editor-status {
  1706. padding: 2px 10px;
  1707. font-size: 9pt;
  1708. color: #959694;
  1709. text-align: right;
  1710. }
  1711. .small-font {
  1712. font-size: 0.9em;
  1713. }
  1714. /**
  1715. * -------------------------
  1716. * Markdown Content Formatting
  1717. * -------------------------
  1718. */
  1719. .md-preview h1, .markdown-content h1 {
  1720. font-size: 1.6em;
  1721. color: #333;
  1722. }
  1723. .md-preview h2, .markdown-content h2 {
  1724. font-size: 1.4em;
  1725. color: #333;
  1726. }
  1727. .md-preview h3, .markdown-content h3 {
  1728. font-size: 1.2em;
  1729. color: #333;
  1730. }
  1731. .md-preview h4, .markdown-content h4 {
  1732. font-size: 1.1em;
  1733. color: #333;
  1734. }
  1735. .md-preview pre, .markdown-content pre {
  1736. padding: 15px;
  1737. background-color: #444;
  1738. color: #f8f8f8;
  1739. border: 0;
  1740. }
  1741. .md-preview pre code, .markdown-content pre code {
  1742. white-space: pre;
  1743. word-break: normal;
  1744. word-wrap: normal;
  1745. }
  1746. .md-preview blockquote, .markdown-content blockquote {
  1747. font-size: 1em;
  1748. padding: 10px 20px;
  1749. margin: 0 0 20px;
  1750. border-left: 5px solid #eeeeee;
  1751. }
  1752. .md-preview table, .markdown-content table {
  1753. margin: 10px 0;
  1754. background-color: #fff;
  1755. border: 1px solid #ddd;
  1756. }
  1757. .md-preview table > thead > tr > th, .markdown-content table > thead > tr > th {
  1758. padding: 4px 10px;
  1759. background-color: #f8f8f8;
  1760. border: 1px solid #ddd;
  1761. font-weight: bold;
  1762. text-align: center;
  1763. }
  1764. .md-preview table > tbody > tr > td, .markdown-content table > tbody > tr > td {
  1765. padding: 3px 8px;
  1766. border: 1px solid #ddd;
  1767. }
  1768. /**
  1769. * -------------------------
  1770. * Sidebar Panels
  1771. * -------------------------
  1772. */
  1773. .panel-sidebar {
  1774. border-color: #eee;
  1775. font-size: 15px;
  1776. }
  1777. .panel-sidebar>.panel-heading {
  1778. color: #333;
  1779. background-color: #f5f5f5;
  1780. border-bottom: 0;
  1781. }
  1782. .panel-heading i.far,
  1783. .panel-heading i.fas,
  1784. .panel-heading i.fal,
  1785. .panel-heading i.fab {
  1786. font-size:0.85em;
  1787. }
  1788. .panel-sidebar .panel-minimise {
  1789. margin-top: 4px;
  1790. color: #ddd;
  1791. cursor: pointer;
  1792. transition: transform 200ms ease;
  1793. }
  1794. .panel-sidebar .panel-minimise.minimised {
  1795. transform: rotate(180deg);
  1796. margin-top: 7px;
  1797. }
  1798. .panel-sidebar>.panel-footer {
  1799. color: #333;
  1800. background-color: #f5f5f5;
  1801. border-top: 0;
  1802. }
  1803. .panel-sidebar .list-group-item {
  1804. line-height: 24px;
  1805. }
  1806. .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle):not(.no-transform) {
  1807. float: right;
  1808. line-height: 24px;
  1809. font-size: 16px;
  1810. color: #ccc;
  1811. }
  1812. .panel-sidebar .list-group-item.disabled,
  1813. .panel-sidebar .list-group-item.disabled:focus,
  1814. .panel-sidebar .list-group-item.disabled:hover {
  1815. background-color: transparent;
  1816. opacity: 0.5;
  1817. }
  1818. .panel-sidebar a.list-group-item:hover i.fas,
  1819. .panel-sidebar a.list-group-item:hover i.far {
  1820. color: #666 !important;
  1821. }
  1822. .panel-sidebar a.list-group-item.active,
  1823. .panel-sidebar a.list-group-item.active:focus,
  1824. .panel-sidebar a.list-group-item.active:hover {
  1825. background-color: #465054;
  1826. border-color: #465054;
  1827. }
  1828. .panel-sidebar a.list-group-item.active i,
  1829. .panel-sidebar a.list-group-item.active:focus i,
  1830. .panel-sidebar a.list-group-item.active:hover i {
  1831. color: #fff;
  1832. }
  1833. .panel-sidebar.view-filter-btns .list-group-item.active,
  1834. .panel-sidebar.view-filter-btns .list-group-item.active:focus,
  1835. .panel-sidebar.view-filter-btns .list-group-item.active:hover {
  1836. background-color: #eee;
  1837. border-color: #eee;
  1838. color: #555;
  1839. }
  1840. .panel-sidebar .recent-ticket {
  1841. line-height: 20px;
  1842. }
  1843. /**
  1844. * -------------------------
  1845. * Store
  1846. * -------------------------
  1847. */
  1848. /**
  1849. * -------------------------
  1850. * Promotional Content Formatting
  1851. * -------------------------
  1852. */
  1853. .promo-banner {
  1854. overflow: auto;
  1855. }
  1856. .promo-banner .icon {
  1857. float: left;
  1858. margin: 0 20px 0 0;
  1859. }
  1860. .promo-banner .icon-left {
  1861. text-align: center;
  1862. width: 155px;
  1863. float: left;
  1864. }
  1865. @media (max-width: 767.98px) {
  1866. .promo-banner .icon-left {
  1867. width: 90px;
  1868. float: none;
  1869. }
  1870. }
  1871. .promo-banner .icon-left img {
  1872. max-width: 100%;
  1873. max-height: 100%;
  1874. }
  1875. @media (max-width: 767.98px) {
  1876. .promo-banner form {
  1877. text-align: center;
  1878. }
  1879. }
  1880. .promo-banner .icon {
  1881. float: left;
  1882. margin: 0 20px 0 0;
  1883. }
  1884. .promo-banner h3 {
  1885. margin: 0;
  1886. padding: 0;
  1887. font-size: 24px;
  1888. font-weight: 300;
  1889. }
  1890. .promo-banner h4 {
  1891. font-size: 18px;
  1892. font-weight: 300;
  1893. }
  1894. .promo-banner p {
  1895. margin: 5px 0;
  1896. }
  1897. .promo-banner ul {
  1898. margin: 0;
  1899. padding: 0;
  1900. list-style: none;
  1901. font-size: 0.92em;
  1902. }
  1903. .promo-banner ul li {
  1904. margin-bottom: 4px;
  1905. }
  1906. @media (min-width: 1200px) {
  1907. .promo-banner ul li {
  1908. width: 50%;
  1909. }
  1910. .promo-banner ul li.left {
  1911. float: left;
  1912. }
  1913. .promo-banner ul li.right {
  1914. float: right;
  1915. }
  1916. }
  1917. .promo-banner .fa:not(.fa-spinner) {
  1918. font-size: 1.2em;
  1919. color: #91c590;
  1920. margin-left: 20px;
  1921. margin-right: 10px;
  1922. }
  1923. .promo-banner a {
  1924. color: #ff6600;
  1925. text-decoration: underline;
  1926. }
  1927. .promo-banner .btn {
  1928. margin: 6px 0 0 0;
  1929. padding: 8px 30px;
  1930. background-color: #ff6600;
  1931. border: 0;
  1932. color: #fff;
  1933. }
  1934. @media (max-width: 650px) {
  1935. .promo-banner .icon {
  1936. width: 100%;
  1937. margin-bottom: 15px;
  1938. }
  1939. }
  1940. .promo-banner-rounded {
  1941. border-radius: 4px;
  1942. }
  1943. .promo-banner-slim {
  1944. padding: 10px;
  1945. }
  1946. .promo-banner-slim .icon-left {
  1947. width: 85px;
  1948. }
  1949. .promo-banner-slim .content {
  1950. margin-left: 110px;
  1951. }
  1952. .promo-banner-slim h3 {
  1953. font-size: 18px;
  1954. }
  1955. .promo-banner-slim h4 {
  1956. font-size: 14px;
  1957. }
  1958. .promo-banner-slim .btn {
  1959. margin: 0 20px 0 0;
  1960. padding: 6px 20px;
  1961. }
  1962. .promo-banner.symantec {
  1963. border-top: 3px solid #4da24c;
  1964. }
  1965. .promo-banner.symantec .btn {
  1966. background-color: #4da24c;
  1967. }
  1968. .promo-banner.weebly {
  1969. border-top: 3px solid #2990ea;
  1970. }
  1971. .promo-banner.weebly .btn {
  1972. background-color: #2990ea;
  1973. }
  1974. .promo-banner.spamexperts {
  1975. border-top: 3px solid #589ed7;
  1976. }
  1977. .promo-banner.spamexperts .btn {
  1978. background-color: #589ed7;
  1979. }
  1980. .promo-banner-slim.weebly .icon-left {
  1981. width: 160px;
  1982. }
  1983. .promo-banner-slim.weebly .content {
  1984. margin-left: 185px;
  1985. }
  1986. .promo-banner.sitelock {
  1987. border-top: 3px solid #f2952d;
  1988. }
  1989. .promo-banner.sitelock .btn {
  1990. background-color: #f2952d;
  1991. }
  1992. .promo-banner.codeguard {
  1993. border-top: 3px solid #a9cc5f;
  1994. }
  1995. .promo-banner.codeguard a {
  1996. color: #a9cc5f;
  1997. }
  1998. .promo-banner.codeguard .btn {
  1999. background-color: #a9cc5f;
  2000. }
  2001. .promo-banner.sitelockvpn {
  2002. border-top: 3px solid #555;
  2003. }
  2004. .promo-banner.sitelockvpn .btn {
  2005. background-color: #555;
  2006. }
  2007. .promo-banner.nordvpn {
  2008. border-top: 3px solid #4687FF;
  2009. }
  2010. .promo-banner.nordvpn .btn {
  2011. background-color: #4687FF;
  2012. }
  2013. .promo-banner.marketgoo {
  2014. border-top: 3px solid #3090e0;
  2015. }
  2016. .promo-banner.marketgoo .btn {
  2017. background-color: #3090e0;
  2018. }
  2019. .promo-banner.ox {
  2020. border-top: 3px solid #666;
  2021. }
  2022. .promo-banner.ox a {
  2023. color: #666;
  2024. }
  2025. .promo-banner.ox .btn {
  2026. background-color: #666;
  2027. }
  2028. .promo-banner.sitebuilder {
  2029. border-top: 3px solid #ff3377;
  2030. }
  2031. .promo-banner.sitebuilder a {
  2032. color: #ff3377;
  2033. }
  2034. .promo-banner.sitebuilder .btn {
  2035. background-color: #ff3377;
  2036. }
  2037. .promo-banner.xovinow {
  2038. border-top: 3px solid #10069F;
  2039. }
  2040. .promo-banner.xovinow a {
  2041. color: #10069F;
  2042. }
  2043. .promo-banner.xovinow .btn {
  2044. background-color: #10069F;
  2045. }
  2046. .promo-banner.threesixtymonitoring {
  2047. border-top: 3px solid #ce3b56;
  2048. }
  2049. .promo-banner.threesixtymonitoring .btn {
  2050. background-color: #ce3b56;
  2051. }
  2052. .promo-banner.threesixtymonitoring a {
  2053. color: #ce3b56;
  2054. }
  2055. .mc-panel-promo {
  2056. font-size: 0.95em;
  2057. }
  2058. .mc-panel-promo img {
  2059. display: block;
  2060. margin: 0 auto 6px;
  2061. max-width: 90%;
  2062. max-height: 87px;
  2063. }
  2064. .promotions-slider-control .carousel-control-prev-icon {
  2065. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231c3965' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
  2066. }
  2067. .promotions-slider-control .carousel-control-next-icon {
  2068. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231c3965' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
  2069. }
  2070. /**
  2071. * -------------------------
  2072. * MarketConnect Service SSO
  2073. * -------------------------
  2074. */
  2075. /**
  2076. * -------------------------
  2077. * MarketConnect Service SSO
  2078. * -------------------------
  2079. */
  2080. .panel-mc-sso {
  2081. padding: 0 10px 10px 10px;
  2082. }
  2083. .panel-mc-sso img {
  2084. max-width: 100%;
  2085. max-height: 120px;
  2086. }
  2087. .panel-mc-sso .row {
  2088. margin-left: -5px;
  2089. margin-right: -5px;
  2090. }
  2091. .panel-mc-sso .col-sm-6 {
  2092. padding-left: 5px;
  2093. padding-right: 5px;
  2094. }
  2095. .panel-mc-sso .form-control,
  2096. .panel-mc-sso .btn,
  2097. .panel-mc-sso small {
  2098. margin-top: 5px;
  2099. }
  2100. .panel-mc-sso small {
  2101. display: block;
  2102. }
  2103. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] {
  2104. border-top: solid 3px #ce3b56;
  2105. }
  2106. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .card-body, .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .mc-promo-manage .content, .mc-promo-manage .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .content, .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .mc-promo-login .content, .mc-promo-login .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .content {
  2107. max-height: initial;
  2108. }
  2109. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-metrics-row > div:not(:last-child) {
  2110. border-right: 1px solid #ccc;
  2111. }
  2112. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-metric {
  2113. margin-top: 20px;
  2114. font-size: 40px;
  2115. line-height: 1;
  2116. color: #902a6d;
  2117. }
  2118. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-title {
  2119. font-weight: bold;
  2120. color: #888;
  2121. text-transform: uppercase;
  2122. font-size: 12px;
  2123. }
  2124. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight {
  2125. margin-top: 4px;
  2126. height: 2px;
  2127. border-radius: 2px;
  2128. background-color: #902a6d;
  2129. }
  2130. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-servers,
  2131. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-monitors,
  2132. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-alerts {
  2133. margin-top: 4px;
  2134. height: 2px;
  2135. border-radius: 2px;
  2136. }
  2137. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-servers {
  2138. background-color: #902a6d;
  2139. }
  2140. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-monitors {
  2141. background-color: #af3362;
  2142. }
  2143. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-alerts {
  2144. background-color: #ce3b56;
  2145. }
  2146. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] form,
  2147. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] small {
  2148. text-align: center;
  2149. }
  2150. .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .btn {
  2151. width: 100%;
  2152. }
  2153. /**
  2154. * -------------------------
  2155. * Social buttons
  2156. * -------------------------
  2157. */
  2158. .social-signin-btns {
  2159. text-align: center;
  2160. }
  2161. .social-signin-btns .btn {
  2162. margin-bottom: 5px;
  2163. }
  2164. .btn-social {
  2165. position: relative;
  2166. text-align: left;
  2167. white-space: nowrap;
  2168. overflow: hidden;
  2169. text-overflow: ellipsis;
  2170. padding: 0.375rem 0.75rem;
  2171. }
  2172. .btn-social i.fas,
  2173. .btn-social i.far {
  2174. position: absolute;
  2175. left: 0;
  2176. top: 0;
  2177. bottom: 0;
  2178. padding-right: 2px;
  2179. width: 32px;
  2180. line-height: 34px;
  2181. font-size: 1.6em;
  2182. text-align: center;
  2183. border-right: 1px solid rgba(0, 0, 0, 0.2);
  2184. }
  2185. .btn-facebook {
  2186. color: #fff;
  2187. background-color: #4267b2;
  2188. border-color: rgba(0, 0, 0, 0.2)
  2189. }
  2190. .btn-facebook:hover, .btn-facebook:focus, .btn-facebook:active, .btn-facebook.active, .open .dropdown-toggle.btn-facebook {
  2191. color: #fff;
  2192. background-color: #30487b;
  2193. border-color: rgba(0, 0, 0, 0.2)
  2194. }
  2195. .btn-facebook:active, .btn-facebook.active, .open .dropdown-toggle.btn-facebook {
  2196. background-image: none
  2197. }
  2198. .btn-facebook.disabled, .btn-facebook[disabled], fieldset[disabled] .btn-facebook, .btn-facebook.disabled:hover, .btn-facebook[disabled]:hover, fieldset[disabled] .btn-facebook:hover, .btn-facebook.disabled:focus, .btn-facebook[disabled]:focus, fieldset[disabled] .btn-facebook:focus, .btn-facebook.disabled:active, .btn-facebook[disabled]:active, fieldset[disabled] .btn-facebook:active, .btn-facebook.disabled.active, .btn-facebook[disabled].active, fieldset[disabled] .btn-facebook.active {
  2199. background-color: #4267b2;
  2200. border-color: rgba(0, 0, 0, 0.2)
  2201. }
  2202. .btn-twitter {
  2203. color: #fff;
  2204. background-color: #2ba9e1;
  2205. border-color: rgba(0, 0, 0, 0.2)
  2206. }
  2207. .btn-twitter:hover, .btn-twitter:focus, .btn-twitter:active, .btn-twitter.active, .open .dropdown-toggle.btn-twitter {
  2208. color: #fff;
  2209. background-color: #1c92c7;
  2210. border-color: rgba(0, 0, 0, 0.2)
  2211. }
  2212. .btn-twitter:active, .btn-twitter.active, .open .dropdown-toggle.btn-twitter {
  2213. background-image: none
  2214. }
  2215. .btn-twitter.disabled, .btn-twitter[disabled], fieldset[disabled] .btn-twitter, .btn-twitter.disabled:hover, .btn-twitter[disabled]:hover, fieldset[disabled] .btn-twitter:hover, .btn-twitter.disabled:focus, .btn-twitter[disabled]:focus, fieldset[disabled] .btn-twitter:focus, .btn-twitter.disabled:active, .btn-twitter[disabled]:active, fieldset[disabled] .btn-twitter:active, .btn-twitter.disabled.active, .btn-twitter[disabled].active, fieldset[disabled] .btn-twitter.active {
  2216. background-color: #2ba9e1;
  2217. border-color: rgba(0, 0, 0, 0.2)
  2218. }
  2219. .providerPreLinking {
  2220. min-height: 52px;
  2221. }
  2222. .providerLinkingFeedback {
  2223. display: none;
  2224. }
  2225. /**
  2226. * -------------------------
  2227. * Registration page
  2228. * -------------------------
  2229. */
  2230. #registration {
  2231. margin: 0;
  2232. padding: 0 0 40px 0;
  2233. }
  2234. #registration .field-container {
  2235. margin: 0 0 30px 0;
  2236. }
  2237. #registration label {
  2238. font-weight: normal;
  2239. }
  2240. #registration .info-text-sm {
  2241. font-size: 0.85em;
  2242. text-align: center;
  2243. }
  2244. .marketing-email-optin {
  2245. margin: 0 0 20px 0;
  2246. padding: 10px 20px 20px;
  2247. background-color: #f8f8f8;
  2248. border-radius: 3px;
  2249. }
  2250. @media (max-width: 767px) {
  2251. .btn-xs-block {
  2252. display: block;
  2253. width: 100%;
  2254. }
  2255. }
  2256. /*
  2257. * Section Dividers
  2258. */
  2259. #registration .sub-heading {
  2260. height: 0;
  2261. border-top: 1px solid #DDD;
  2262. text-align: center;
  2263. margin-top: 20px;
  2264. margin-bottom: 30px;
  2265. }
  2266. #registration .sub-heading span {
  2267. display: inline-block;
  2268. position: relative;
  2269. padding: 0 17px;
  2270. top: -11px;
  2271. font-size: 16px;
  2272. color: #058;
  2273. background-color: #fff;
  2274. }
  2275. /**
  2276. * Form fields
  2277. */
  2278. #registration .prepend-icon {
  2279. top: 0;
  2280. left: 0;
  2281. display: inline-block;
  2282. vertical-align: top;
  2283. position: relative;
  2284. width: 100%;
  2285. font-weight: normal;
  2286. }
  2287. #registration .field,
  2288. #registration .form-control {
  2289. position: relative;
  2290. vertical-align: top;
  2291. display: -moz-inline-stack;
  2292. display: inline-block;
  2293. outline: none;
  2294. height: 36px;
  2295. width: 100%;
  2296. }
  2297. #registration .input-group-lg > .form-control {
  2298. height: 46px;
  2299. padding: 10px 16px;
  2300. font-size: 18px;
  2301. line-height: 1.3333333;
  2302. border-radius: 6px 0 0 6px;
  2303. }
  2304. #registration .form-control-qty {
  2305. width: 70px;
  2306. text-align: center;
  2307. }
  2308. #registration .form-control-static-inline {
  2309. display: inline-block;
  2310. }
  2311. #registration textarea.field {
  2312. height: auto;
  2313. }
  2314. #registration .prepend-icon .field {
  2315. -webkit-appearance: none;
  2316. padding-left: 36px;
  2317. }
  2318. #registration .prepend-icon .field-icon i {
  2319. position: relative;
  2320. font-size: 14px;
  2321. }
  2322. #registration .prepend-icon .field-icon {
  2323. top: 0;
  2324. z-index: 4;
  2325. width: 42px;
  2326. height: 36px;
  2327. color: inherit;
  2328. line-height: 36px;
  2329. position: absolute;
  2330. text-align: center;
  2331. -webkit-transition: all 0.5s ease-out;
  2332. -moz-transition: all 0.5s ease-out;
  2333. -ms-transition: all 0.5s ease-out;
  2334. -o-transition: all 0.5s ease-out;
  2335. transition: all 0.5s ease-out;
  2336. pointer-events: none;
  2337. }
  2338. #registration .field-icon i {
  2339. color: #bbb;
  2340. }
  2341. #registration .field-help-text {
  2342. display: block;
  2343. margin-top: 5px;
  2344. margin-bottom: 10px;
  2345. color: #888;
  2346. font-size: 12px;
  2347. }
  2348. /**
  2349. * -------------------------
  2350. * Password Strength Meter
  2351. * -------------------------
  2352. */
  2353. .password-strength-meter .progress {
  2354. margin-bottom: 5px;
  2355. }
  2356. .password-strength-meter p {
  2357. margin-bottom: 15px;
  2358. }
  2359. /**
  2360. * -------------------------
  2361. * Service Upgrade
  2362. * -------------------------
  2363. */
  2364. .upgrade .product-to-be-upgraded {
  2365. margin: 20px 0;
  2366. padding: 15px;
  2367. background-color: #f8f8f8;
  2368. }
  2369. .upgrade .product-to-be-upgraded h4,
  2370. .upgrade .product-to-be-upgraded h5 {
  2371. margin: 0;
  2372. }
  2373. .upgrade .products {
  2374. margin-left: -5px;
  2375. margin-right: -5px;
  2376. }
  2377. .upgrade .products .column {
  2378. padding-left: 5px;
  2379. padding-right: 5px;
  2380. }
  2381. .upgrade .products .product {
  2382. margin: 20px 0;
  2383. padding: 0;
  2384. background-color: #fff;
  2385. }
  2386. .upgrade .products .product .current,
  2387. .upgrade .products .product .recommended {
  2388. padding: 5px;
  2389. background-color: #ffbc00;
  2390. color: #f5f5f5;
  2391. font-weight: bold;
  2392. text-align: center;
  2393. }
  2394. .upgrade .products .product .recommended {
  2395. background-color: #25ac2f;
  2396. }
  2397. .upgrade .products .product ul {
  2398. border-left: 1px solid #eee;
  2399. border-right: 1px solid #eee;
  2400. }
  2401. .upgrade .products .product .footer {
  2402. border: 1px solid #eee;
  2403. border-top: 0;
  2404. }
  2405. .upgrade .products .product .header {
  2406. margin: 0;
  2407. padding: 20px;
  2408. background-color: #2b5580;
  2409. color: #fff;
  2410. min-height: 150px;
  2411. }
  2412. .upgrade .products .product .header p {
  2413. font-size: 1.1em;
  2414. font-weight: 300;
  2415. }
  2416. .upgrade .products .product ul {
  2417. margin: 0;
  2418. padding: 20px 25px;
  2419. list-style: none;
  2420. }
  2421. .upgrade .products .product ul li {
  2422. line-height: 25px;
  2423. font-size: 0.9em;
  2424. text-align: right;
  2425. color: #aaa;
  2426. border-bottom: 1px solid #eee;
  2427. }
  2428. .upgrade .products .product ul li:last-child {
  2429. border: 0;
  2430. }
  2431. .upgrade .products .product ul li span {
  2432. float: left;
  2433. color: #444;
  2434. }
  2435. .upgrade .products .fas,
  2436. .upgrade .products .far {
  2437. font-size: 1.3em;
  2438. }
  2439. .upgrade .products .fa-check {
  2440. color: #23ad2e;
  2441. }
  2442. .upgrade .products .product .footer {
  2443. margin: 0;
  2444. padding: 20px;
  2445. }
  2446. .upgrade .products .product .footer select {
  2447. margin-bottom: 10px;
  2448. }
  2449. .upgrade .products .product .btn {
  2450. background-color: #2b5580;
  2451. color: #fff;
  2452. }
  2453. /**
  2454. * Helper Alerts
  2455. */
  2456. .alert .fas.pull-left {
  2457. margin: -3px 0 0 -3px;
  2458. }
  2459. .alert .alert-text {
  2460. margin-left: 56px;
  2461. }
  2462. .panel-sidebar .alert {
  2463. padding: 10px 15px;
  2464. margin-bottom: 5px;
  2465. }
  2466. /**
  2467. * iCheck controls
  2468. */
  2469. .checkbox-inline.icheck-label, .radio-inline.icheck-label {
  2470. padding-left: 0;
  2471. margin-left: 30px;
  2472. margin-right: 20px;
  2473. }
  2474. .icheck-label .iradio_square-blue {
  2475. margin-right: 5px;
  2476. margin-left: -30px;
  2477. margin-top: -2px;
  2478. }
  2479. /**
  2480. * JsonForm
  2481. */
  2482. form[data-role="json-form"] .has-error input.form-control,
  2483. form[data-role="json-form"] .has-error textarea.form-control,
  2484. form[data-role="json-form"] .has-error select.form-control {
  2485. background-color: #fff0f0;
  2486. transition: 0.2s;
  2487. }
  2488. form[data-role="json-form"] .has-error .tooltip-inner {
  2489. background-color: #9d2a0b;
  2490. }
  2491. form[data-role="json-form"] .has-error .tooltip.top .tooltip-arrow {
  2492. border-top-color: #9d2a0b;
  2493. }
  2494. /**
  2495. * Credit Card Input
  2496. */
  2497. .cc-number-field {
  2498. background-image: url(../../../../../assets/img/payment/unknown.png);
  2499. background-repeat: no-repeat;
  2500. background-position: right 10px center;
  2501. }
  2502. .cc-number-field.visa {
  2503. background-image: url(../../../../../assets/img/payment/visa.png);
  2504. }
  2505. .cc-number-field.mastercard {
  2506. background-image: url(../../../../../assets/img/payment/mastercard.png);
  2507. }
  2508. .cc-number-field.amex {
  2509. background-image: url(../../../../../assets/img/payment/amex.png);
  2510. }
  2511. .cc-number-field.dinersclub {
  2512. background-image: url(../../../../../assets/img/payment/dinersclub.png);
  2513. }
  2514. .cc-number-field.discover {
  2515. background-image: url(../../../../../assets/img/payment/discover.png);
  2516. }
  2517. .cc-number-field.unionpay {
  2518. background-image: url(../../../../../assets/img/payment/unionpay.png);
  2519. }
  2520. .cc-number-field.jcb {
  2521. background-image: url(../../../../../assets/img/payment/jcb.png);
  2522. }
  2523. .cc-number-field.maestro {
  2524. background-image: url(../../../../../assets/img/payment/maestro.png);
  2525. }
  2526. .cc-number-field.forbrugsforeningen {
  2527. background-image: url(../../../../../assets/img/payment/forbrugsforeningen.png);
  2528. }
  2529. .cc-number-field.dankort {
  2530. background-image: url(../../../../../assets/img/payment/dankort.png);
  2531. }
  2532. /**
  2533. * Usage Billing
  2534. */
  2535. .modal-metric-pricing .modal-header,
  2536. .modal-metric-pricing .modal-body,
  2537. .modal-metric-pricing .modal-footer {
  2538. text-align: center !important;
  2539. border: 0;
  2540. }
  2541. .modal-metric-pricing .modal-footer {
  2542. padding-bottom: 45px;
  2543. }
  2544. /**
  2545. * Select Account
  2546. */
  2547. .select-account {
  2548. margin: 20px auto;
  2549. padding: 0;
  2550. }
  2551. .select-account a {
  2552. display: block;
  2553. margin: 0;
  2554. text-decoration: none;
  2555. }
  2556. .select-account a.disabled {
  2557. opacity: 0.5;
  2558. }
  2559. .continue-container {
  2560. margin: 40px auto;
  2561. padding: 20px;
  2562. background-color: #f6f6f6;
  2563. border: 1px solid #eee;
  2564. max-width: 500px;
  2565. }
  2566. /**
  2567. * Invites
  2568. */
  2569. .invite-box {
  2570. margin: 20px 0;
  2571. padding: 20px;
  2572. background-color:#f6f6f6;
  2573. border:1px solid #eee;
  2574. }
  2575. /**
  2576. * Variables declared here can be overridden by consuming applications, with
  2577. * the help of the `!default` flag.
  2578. *
  2579. * @example
  2580. * // overriding $hoverColor
  2581. * $hoverColor: rgba(red, 0.05);
  2582. *
  2583. * // overriding image path
  2584. * $flagsImagePath: "images/";
  2585. *
  2586. * // import the scss file after the overrides
  2587. * @import "bower_component/intl-tel-input/src/css/intlTelInput";
  2588. */
  2589. .intl-tel-input {
  2590. position: relative;
  2591. display: inline-block; }
  2592. .intl-tel-input * {
  2593. box-sizing: border-box;
  2594. -moz-box-sizing: border-box; }
  2595. .intl-tel-input .hide {
  2596. display: none; }
  2597. .intl-tel-input .v-hide {
  2598. visibility: hidden; }
  2599. .intl-tel-input input, .intl-tel-input input[type=text], .intl-tel-input input[type=tel] {
  2600. position: relative;
  2601. z-index: 0;
  2602. margin-top: 0 !important;
  2603. margin-bottom: 0 !important;
  2604. padding-right: 36px;
  2605. margin-right: 0; }
  2606. .intl-tel-input .flag-container {
  2607. position: absolute;
  2608. top: 0;
  2609. bottom: 0;
  2610. right: 0;
  2611. padding: 1px; }
  2612. .intl-tel-input .selected-flag {
  2613. z-index: 1;
  2614. position: relative;
  2615. width: 36px;
  2616. height: 100%;
  2617. padding: 0 0 0 8px; }
  2618. .intl-tel-input .selected-flag .iti-flag {
  2619. position: absolute;
  2620. top: 0;
  2621. bottom: 0;
  2622. margin: auto; }
  2623. .intl-tel-input .selected-flag .iti-arrow {
  2624. position: absolute;
  2625. top: 50%;
  2626. margin-top: -2px;
  2627. right: 6px;
  2628. width: 0;
  2629. height: 0;
  2630. border-left: 3px solid transparent;
  2631. border-right: 3px solid transparent;
  2632. border-top: 4px solid #555; }
  2633. .intl-tel-input .selected-flag .iti-arrow.up {
  2634. border-top: none;
  2635. border-bottom: 4px solid #555; }
  2636. .intl-tel-input .country-list {
  2637. position: absolute;
  2638. z-index: 2;
  2639. list-style: none;
  2640. text-align: left;
  2641. padding: 0;
  2642. margin: 0 0 0 -1px;
  2643. box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  2644. background-color: white;
  2645. border: 1px solid @default-border-color;
  2646. white-space: nowrap;
  2647. max-height: 200px;
  2648. overflow-y: scroll; }
  2649. .intl-tel-input .country-list.dropup {
  2650. bottom: 100%;
  2651. margin-bottom: -1px; }
  2652. .intl-tel-input .country-list .flag-box {
  2653. display: inline-block;
  2654. width: 20px; }
  2655. @media (max-width: 500px) {
  2656. .intl-tel-input .country-list {
  2657. white-space: normal; } }
  2658. .intl-tel-input .country-list .divider {
  2659. padding-bottom: 5px;
  2660. margin-bottom: 5px;
  2661. border-bottom: 1px solid #CCC; }
  2662. .intl-tel-input .country-list .country {
  2663. padding: 5px 10px; }
  2664. .intl-tel-input .country-list .country .dial-code {
  2665. color: #999; }
  2666. .intl-tel-input .country-list .country.highlight {
  2667. background-color: @gray-lighter; }
  2668. .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name, .intl-tel-input .country-list .dial-code {
  2669. vertical-align: middle; }
  2670. .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
  2671. margin-right: 6px; }
  2672. .intl-tel-input.allow-dropdown input, .intl-tel-input.allow-dropdown input[type=text], .intl-tel-input.allow-dropdown input[type=tel], .intl-tel-input.separate-dial-code input, .intl-tel-input.separate-dial-code input[type=text], .intl-tel-input.separate-dial-code input[type=tel] {
  2673. padding-right: 6px;
  2674. padding-left: 52px;
  2675. margin-left: 0; }
  2676. .intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container {
  2677. right: auto;
  2678. left: 0; }
  2679. .intl-tel-input.allow-dropdown .selected-flag, .intl-tel-input.separate-dial-code .selected-flag {
  2680. width: 46px; }
  2681. .intl-tel-input.allow-dropdown .flag-container:hover {
  2682. cursor: pointer; }
  2683. .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
  2684. background-color: rgba(0, 0, 0, 0.05); }
  2685. .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {
  2686. cursor: default; }
  2687. .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {
  2688. background-color: transparent; }
  2689. .intl-tel-input.separate-dial-code .selected-flag {
  2690. background-color: transparent!important; border-right: 1px solid @default-border-color;
  2691. display: table; }
  2692. .intl-tel-input.separate-dial-code .selected-dial-code {
  2693. display: table-cell;
  2694. vertical-align: middle;
  2695. padding-left: 28px; }
  2696. .intl-tel-input.separate-dial-code.iti-sdc-2 input, .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel] {
  2697. padding-left: 66px; }
  2698. .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
  2699. width: 60px; }
  2700. .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
  2701. padding-left: 76px; }
  2702. .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
  2703. width: 70px; }
  2704. .intl-tel-input.separate-dial-code.iti-sdc-3 input, .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel] {
  2705. padding-left: 74px; }
  2706. .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
  2707. width: 68px; }
  2708. .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
  2709. padding-left: 84px; }
  2710. .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
  2711. width: 78px; }
  2712. .intl-tel-input.separate-dial-code.iti-sdc-4 input, .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel] {
  2713. padding-left: 82px; }
  2714. .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
  2715. width: 76px; }
  2716. .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel] {
  2717. padding-left: 92px; }
  2718. .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
  2719. width: 86px; }
  2720. .intl-tel-input.separate-dial-code.iti-sdc-5 input, .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel] {
  2721. padding-left: 90px; }
  2722. .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
  2723. width: 84px; }
  2724. .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel] {
  2725. padding-left: 100px; }
  2726. .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
  2727. width: 94px; }
  2728. .intl-tel-input.iti-container {
  2729. position: absolute;
  2730. top: -1000px;
  2731. left: -1000px;
  2732. z-index: 1060;
  2733. padding: 1px; }
  2734. .intl-tel-input.iti-container:hover {
  2735. cursor: pointer; }
  2736. .iti-mobile .intl-tel-input.iti-container {
  2737. top: 30px;
  2738. bottom: 30px;
  2739. left: 30px;
  2740. right: 30px;
  2741. position: fixed; }
  2742. .iti-mobile .intl-tel-input .country-list {
  2743. max-height: 100%;
  2744. width: 100%; }
  2745. .iti-mobile .intl-tel-input .country-list .country {
  2746. padding: 10px 10px;
  2747. line-height: 1.5em; }
  2748. .iti-flag {
  2749. width: 20px; }
  2750. .iti-flag.be {
  2751. width: 18px; }
  2752. .iti-flag.ch {
  2753. width: 15px; }
  2754. .iti-flag.mc {
  2755. width: 19px; }
  2756. .iti-flag.ne {
  2757. width: 18px; }
  2758. .iti-flag.np {
  2759. width: 13px; }
  2760. .iti-flag.va {
  2761. width: 15px; }
  2762. @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  2763. .iti-flag {
  2764. background-size: 5630px 15px; } }
  2765. .iti-flag.ac {
  2766. height: 10px;
  2767. background-position: 0px 0px; }
  2768. .iti-flag.ad {
  2769. height: 14px;
  2770. background-position: -22px 0px; }
  2771. .iti-flag.ae {
  2772. height: 10px;
  2773. background-position: -44px 0px; }
  2774. .iti-flag.af {
  2775. height: 14px;
  2776. background-position: -66px 0px; }
  2777. .iti-flag.ag {
  2778. height: 14px;
  2779. background-position: -88px 0px; }
  2780. .iti-flag.ai {
  2781. height: 10px;
  2782. background-position: -110px 0px; }
  2783. .iti-flag.al {
  2784. height: 15px;
  2785. background-position: -132px 0px; }
  2786. .iti-flag.am {
  2787. height: 10px;
  2788. background-position: -154px 0px; }
  2789. .iti-flag.ao {
  2790. height: 14px;
  2791. background-position: -176px 0px; }
  2792. .iti-flag.aq {
  2793. height: 14px;
  2794. background-position: -198px 0px; }
  2795. .iti-flag.ar {
  2796. height: 13px;
  2797. background-position: -220px 0px; }
  2798. .iti-flag.as {
  2799. height: 10px;
  2800. background-position: -242px 0px; }
  2801. .iti-flag.at {
  2802. height: 14px;
  2803. background-position: -264px 0px; }
  2804. .iti-flag.au {
  2805. height: 10px;
  2806. background-position: -286px 0px; }
  2807. .iti-flag.aw {
  2808. height: 14px;
  2809. background-position: -308px 0px; }
  2810. .iti-flag.ax {
  2811. height: 13px;
  2812. background-position: -330px 0px; }
  2813. .iti-flag.az {
  2814. height: 10px;
  2815. background-position: -352px 0px; }
  2816. .iti-flag.ba {
  2817. height: 10px;
  2818. background-position: -374px 0px; }
  2819. .iti-flag.bb {
  2820. height: 14px;
  2821. background-position: -396px 0px; }
  2822. .iti-flag.bd {
  2823. height: 12px;
  2824. background-position: -418px 0px; }
  2825. .iti-flag.be {
  2826. height: 15px;
  2827. background-position: -440px 0px; }
  2828. .iti-flag.bf {
  2829. height: 14px;
  2830. background-position: -460px 0px; }
  2831. .iti-flag.bg {
  2832. height: 12px;
  2833. background-position: -482px 0px; }
  2834. .iti-flag.bh {
  2835. height: 12px;
  2836. background-position: -504px 0px; }
  2837. .iti-flag.bi {
  2838. height: 12px;
  2839. background-position: -526px 0px; }
  2840. .iti-flag.bj {
  2841. height: 14px;
  2842. background-position: -548px 0px; }
  2843. .iti-flag.bl {
  2844. height: 14px;
  2845. background-position: -570px 0px; }
  2846. .iti-flag.bm {
  2847. height: 10px;
  2848. background-position: -592px 0px; }
  2849. .iti-flag.bn {
  2850. height: 10px;
  2851. background-position: -614px 0px; }
  2852. .iti-flag.bo {
  2853. height: 14px;
  2854. background-position: -636px 0px; }
  2855. .iti-flag.bq {
  2856. height: 14px;
  2857. background-position: -658px 0px; }
  2858. .iti-flag.br {
  2859. height: 14px;
  2860. background-position: -680px 0px; }
  2861. .iti-flag.bs {
  2862. height: 10px;
  2863. background-position: -702px 0px; }
  2864. .iti-flag.bt {
  2865. height: 14px;
  2866. background-position: -724px 0px; }
  2867. .iti-flag.bv {
  2868. height: 15px;
  2869. background-position: -746px 0px; }
  2870. .iti-flag.bw {
  2871. height: 14px;
  2872. background-position: -768px 0px; }
  2873. .iti-flag.by {
  2874. height: 10px;
  2875. background-position: -790px 0px; }
  2876. .iti-flag.bz {
  2877. height: 14px;
  2878. background-position: -812px 0px; }
  2879. .iti-flag.ca {
  2880. height: 10px;
  2881. background-position: -834px 0px; }
  2882. .iti-flag.cc {
  2883. height: 10px;
  2884. background-position: -856px 0px; }
  2885. .iti-flag.cd {
  2886. height: 15px;
  2887. background-position: -878px 0px; }
  2888. .iti-flag.cf {
  2889. height: 14px;
  2890. background-position: -900px 0px; }
  2891. .iti-flag.cg {
  2892. height: 14px;
  2893. background-position: -922px 0px; }
  2894. .iti-flag.ch {
  2895. height: 15px;
  2896. background-position: -944px 0px; }
  2897. .iti-flag.ci {
  2898. height: 14px;
  2899. background-position: -961px 0px; }
  2900. .iti-flag.ck {
  2901. height: 10px;
  2902. background-position: -983px 0px; }
  2903. .iti-flag.cl {
  2904. height: 14px;
  2905. background-position: -1005px 0px; }
  2906. .iti-flag.cm {
  2907. height: 14px;
  2908. background-position: -1027px 0px; }
  2909. .iti-flag.cn {
  2910. height: 14px;
  2911. background-position: -1049px 0px; }
  2912. .iti-flag.co {
  2913. height: 14px;
  2914. background-position: -1071px 0px; }
  2915. .iti-flag.cp {
  2916. height: 14px;
  2917. background-position: -1093px 0px; }
  2918. .iti-flag.cr {
  2919. height: 12px;
  2920. background-position: -1115px 0px; }
  2921. .iti-flag.cu {
  2922. height: 10px;
  2923. background-position: -1137px 0px; }
  2924. .iti-flag.cv {
  2925. height: 12px;
  2926. background-position: -1159px 0px; }
  2927. .iti-flag.cw {
  2928. height: 14px;
  2929. background-position: -1181px 0px; }
  2930. .iti-flag.cx {
  2931. height: 10px;
  2932. background-position: -1203px 0px; }
  2933. .iti-flag.cy {
  2934. height: 13px;
  2935. background-position: -1225px 0px; }
  2936. .iti-flag.cz {
  2937. height: 14px;
  2938. background-position: -1247px 0px; }
  2939. .iti-flag.de {
  2940. height: 12px;
  2941. background-position: -1269px 0px; }
  2942. .iti-flag.dg {
  2943. height: 10px;
  2944. background-position: -1291px 0px; }
  2945. .iti-flag.dj {
  2946. height: 14px;
  2947. background-position: -1313px 0px; }
  2948. .iti-flag.dk {
  2949. height: 15px;
  2950. background-position: -1335px 0px; }
  2951. .iti-flag.dm {
  2952. height: 10px;
  2953. background-position: -1357px 0px; }
  2954. .iti-flag.do {
  2955. height: 13px;
  2956. background-position: -1379px 0px; }
  2957. .iti-flag.dz {
  2958. height: 14px;
  2959. background-position: -1401px 0px; }
  2960. .iti-flag.ea {
  2961. height: 14px;
  2962. background-position: -1423px 0px; }
  2963. .iti-flag.ec {
  2964. height: 14px;
  2965. background-position: -1445px 0px; }
  2966. .iti-flag.ee {
  2967. height: 13px;
  2968. background-position: -1467px 0px; }
  2969. .iti-flag.eg {
  2970. height: 14px;
  2971. background-position: -1489px 0px; }
  2972. .iti-flag.eh {
  2973. height: 10px;
  2974. background-position: -1511px 0px; }
  2975. .iti-flag.er {
  2976. height: 10px;
  2977. background-position: -1533px 0px; }
  2978. .iti-flag.es {
  2979. height: 14px;
  2980. background-position: -1555px 0px; }
  2981. .iti-flag.et {
  2982. height: 10px;
  2983. background-position: -1577px 0px; }
  2984. .iti-flag.eu {
  2985. height: 14px;
  2986. background-position: -1599px 0px; }
  2987. .iti-flag.fi {
  2988. height: 12px;
  2989. background-position: -1621px 0px; }
  2990. .iti-flag.fj {
  2991. height: 10px;
  2992. background-position: -1643px 0px; }
  2993. .iti-flag.fk {
  2994. height: 10px;
  2995. background-position: -1665px 0px; }
  2996. .iti-flag.fm {
  2997. height: 11px;
  2998. background-position: -1687px 0px; }
  2999. .iti-flag.fo {
  3000. height: 15px;
  3001. background-position: -1709px 0px; }
  3002. .iti-flag.fr {
  3003. height: 14px;
  3004. background-position: -1731px 0px; }
  3005. .iti-flag.ga {
  3006. height: 15px;
  3007. background-position: -1753px 0px; }
  3008. .iti-flag.gb {
  3009. height: 10px;
  3010. background-position: -1775px 0px; }
  3011. .iti-flag.gd {
  3012. height: 12px;
  3013. background-position: -1797px 0px; }
  3014. .iti-flag.ge {
  3015. height: 14px;
  3016. background-position: -1819px 0px; }
  3017. .iti-flag.gf {
  3018. height: 14px;
  3019. background-position: -1841px 0px; }
  3020. .iti-flag.gg {
  3021. height: 14px;
  3022. background-position: -1863px 0px; }
  3023. .iti-flag.gh {
  3024. height: 14px;
  3025. background-position: -1885px 0px; }
  3026. .iti-flag.gi {
  3027. height: 10px;
  3028. background-position: -1907px 0px; }
  3029. .iti-flag.gl {
  3030. height: 14px;
  3031. background-position: -1929px 0px; }
  3032. .iti-flag.gm {
  3033. height: 14px;
  3034. background-position: -1951px 0px; }
  3035. .iti-flag.gn {
  3036. height: 14px;
  3037. background-position: -1973px 0px; }
  3038. .iti-flag.gp {
  3039. height: 14px;
  3040. background-position: -1995px 0px; }
  3041. .iti-flag.gq {
  3042. height: 14px;
  3043. background-position: -2017px 0px; }
  3044. .iti-flag.gr {
  3045. height: 14px;
  3046. background-position: -2039px 0px; }
  3047. .iti-flag.gs {
  3048. height: 10px;
  3049. background-position: -2061px 0px; }
  3050. .iti-flag.gt {
  3051. height: 13px;
  3052. background-position: -2083px 0px; }
  3053. .iti-flag.gu {
  3054. height: 11px;
  3055. background-position: -2105px 0px; }
  3056. .iti-flag.gw {
  3057. height: 10px;
  3058. background-position: -2127px 0px; }
  3059. .iti-flag.gy {
  3060. height: 12px;
  3061. background-position: -2149px 0px; }
  3062. .iti-flag.hk {
  3063. height: 14px;
  3064. background-position: -2171px 0px; }
  3065. .iti-flag.hm {
  3066. height: 10px;
  3067. background-position: -2193px 0px; }
  3068. .iti-flag.hn {
  3069. height: 10px;
  3070. background-position: -2215px 0px; }
  3071. .iti-flag.hr {
  3072. height: 10px;
  3073. background-position: -2237px 0px; }
  3074. .iti-flag.ht {
  3075. height: 12px;
  3076. background-position: -2259px 0px; }
  3077. .iti-flag.hu {
  3078. height: 10px;
  3079. background-position: -2281px 0px; }
  3080. .iti-flag.ic {
  3081. height: 14px;
  3082. background-position: -2303px 0px; }
  3083. .iti-flag.id {
  3084. height: 14px;
  3085. background-position: -2325px 0px; }
  3086. .iti-flag.ie {
  3087. height: 10px;
  3088. background-position: -2347px 0px; }
  3089. .iti-flag.il {
  3090. height: 15px;
  3091. background-position: -2369px 0px; }
  3092. .iti-flag.im {
  3093. height: 10px;
  3094. background-position: -2391px 0px; }
  3095. .iti-flag.in {
  3096. height: 14px;
  3097. background-position: -2413px 0px; }
  3098. .iti-flag.io {
  3099. height: 10px;
  3100. background-position: -2435px 0px; }
  3101. .iti-flag.iq {
  3102. height: 14px;
  3103. background-position: -2457px 0px; }
  3104. .iti-flag.ir {
  3105. height: 12px;
  3106. background-position: -2479px 0px; }
  3107. .iti-flag.is {
  3108. height: 15px;
  3109. background-position: -2501px 0px; }
  3110. .iti-flag.it {
  3111. height: 14px;
  3112. background-position: -2523px 0px; }
  3113. .iti-flag.je {
  3114. height: 12px;
  3115. background-position: -2545px 0px; }
  3116. .iti-flag.jm {
  3117. height: 10px;
  3118. background-position: -2567px 0px; }
  3119. .iti-flag.jo {
  3120. height: 10px;
  3121. background-position: -2589px 0px; }
  3122. .iti-flag.jp {
  3123. height: 14px;
  3124. background-position: -2611px 0px; }
  3125. .iti-flag.ke {
  3126. height: 14px;
  3127. background-position: -2633px 0px; }
  3128. .iti-flag.kg {
  3129. height: 12px;
  3130. background-position: -2655px 0px; }
  3131. .iti-flag.kh {
  3132. height: 13px;
  3133. background-position: -2677px 0px; }
  3134. .iti-flag.ki {
  3135. height: 10px;
  3136. background-position: -2699px 0px; }
  3137. .iti-flag.km {
  3138. height: 12px;
  3139. background-position: -2721px 0px; }
  3140. .iti-flag.kn {
  3141. height: 14px;
  3142. background-position: -2743px 0px; }
  3143. .iti-flag.kp {
  3144. height: 10px;
  3145. background-position: -2765px 0px; }
  3146. .iti-flag.kr {
  3147. height: 14px;
  3148. background-position: -2787px 0px; }
  3149. .iti-flag.kw {
  3150. height: 10px;
  3151. background-position: -2809px 0px; }
  3152. .iti-flag.ky {
  3153. height: 10px;
  3154. background-position: -2831px 0px; }
  3155. .iti-flag.kz {
  3156. height: 10px;
  3157. background-position: -2853px 0px; }
  3158. .iti-flag.la {
  3159. height: 14px;
  3160. background-position: -2875px 0px; }
  3161. .iti-flag.lb {
  3162. height: 14px;
  3163. background-position: -2897px 0px; }
  3164. .iti-flag.lc {
  3165. height: 10px;
  3166. background-position: -2919px 0px; }
  3167. .iti-flag.li {
  3168. height: 12px;
  3169. background-position: -2941px 0px; }
  3170. .iti-flag.lk {
  3171. height: 10px;
  3172. background-position: -2963px 0px; }
  3173. .iti-flag.lr {
  3174. height: 11px;
  3175. background-position: -2985px 0px; }
  3176. .iti-flag.ls {
  3177. height: 14px;
  3178. background-position: -3007px 0px; }
  3179. .iti-flag.lt {
  3180. height: 12px;
  3181. background-position: -3029px 0px; }
  3182. .iti-flag.lu {
  3183. height: 12px;
  3184. background-position: -3051px 0px; }
  3185. .iti-flag.lv {
  3186. height: 10px;
  3187. background-position: -3073px 0px; }
  3188. .iti-flag.ly {
  3189. height: 10px;
  3190. background-position: -3095px 0px; }
  3191. .iti-flag.ma {
  3192. height: 14px;
  3193. background-position: -3117px 0px; }
  3194. .iti-flag.mc {
  3195. height: 15px;
  3196. background-position: -3139px 0px; }
  3197. .iti-flag.md {
  3198. height: 10px;
  3199. background-position: -3160px 0px; }
  3200. .iti-flag.me {
  3201. height: 10px;
  3202. background-position: -3182px 0px; }
  3203. .iti-flag.mf {
  3204. height: 14px;
  3205. background-position: -3204px 0px; }
  3206. .iti-flag.mg {
  3207. height: 14px;
  3208. background-position: -3226px 0px; }
  3209. .iti-flag.mh {
  3210. height: 11px;
  3211. background-position: -3248px 0px; }
  3212. .iti-flag.mk {
  3213. height: 10px;
  3214. background-position: -3270px 0px; }
  3215. .iti-flag.ml {
  3216. height: 14px;
  3217. background-position: -3292px 0px; }
  3218. .iti-flag.mm {
  3219. height: 14px;
  3220. background-position: -3314px 0px; }
  3221. .iti-flag.mn {
  3222. height: 10px;
  3223. background-position: -3336px 0px; }
  3224. .iti-flag.mo {
  3225. height: 14px;
  3226. background-position: -3358px 0px; }
  3227. .iti-flag.mp {
  3228. height: 10px;
  3229. background-position: -3380px 0px; }
  3230. .iti-flag.mq {
  3231. height: 14px;
  3232. background-position: -3402px 0px; }
  3233. .iti-flag.mr {
  3234. height: 14px;
  3235. background-position: -3424px 0px; }
  3236. .iti-flag.ms {
  3237. height: 10px;
  3238. background-position: -3446px 0px; }
  3239. .iti-flag.mt {
  3240. height: 14px;
  3241. background-position: -3468px 0px; }
  3242. .iti-flag.mu {
  3243. height: 14px;
  3244. background-position: -3490px 0px; }
  3245. .iti-flag.mv {
  3246. height: 14px;
  3247. background-position: -3512px 0px; }
  3248. .iti-flag.mw {
  3249. height: 14px;
  3250. background-position: -3534px 0px; }
  3251. .iti-flag.mx {
  3252. height: 12px;
  3253. background-position: -3556px 0px; }
  3254. .iti-flag.my {
  3255. height: 10px;
  3256. background-position: -3578px 0px; }
  3257. .iti-flag.mz {
  3258. height: 14px;
  3259. background-position: -3600px 0px; }
  3260. .iti-flag.na {
  3261. height: 14px;
  3262. background-position: -3622px 0px; }
  3263. .iti-flag.nc {
  3264. height: 10px;
  3265. background-position: -3644px 0px; }
  3266. .iti-flag.ne {
  3267. height: 15px;
  3268. background-position: -3666px 0px; }
  3269. .iti-flag.nf {
  3270. height: 10px;
  3271. background-position: -3686px 0px; }
  3272. .iti-flag.ng {
  3273. height: 10px;
  3274. background-position: -3708px 0px; }
  3275. .iti-flag.ni {
  3276. height: 12px;
  3277. background-position: -3730px 0px; }
  3278. .iti-flag.nl {
  3279. height: 14px;
  3280. background-position: -3752px 0px; }
  3281. .iti-flag.no {
  3282. height: 15px;
  3283. background-position: -3774px 0px; }
  3284. .iti-flag.np {
  3285. height: 15px;
  3286. background-position: -3796px 0px; }
  3287. .iti-flag.nr {
  3288. height: 10px;
  3289. background-position: -3811px 0px; }
  3290. .iti-flag.nu {
  3291. height: 10px;
  3292. background-position: -3833px 0px; }
  3293. .iti-flag.nz {
  3294. height: 10px;
  3295. background-position: -3855px 0px; }
  3296. .iti-flag.om {
  3297. height: 10px;
  3298. background-position: -3877px 0px; }
  3299. .iti-flag.pa {
  3300. height: 14px;
  3301. background-position: -3899px 0px; }
  3302. .iti-flag.pe {
  3303. height: 14px;
  3304. background-position: -3921px 0px; }
  3305. .iti-flag.pf {
  3306. height: 14px;
  3307. background-position: -3943px 0px; }
  3308. .iti-flag.pg {
  3309. height: 15px;
  3310. background-position: -3965px 0px; }
  3311. .iti-flag.ph {
  3312. height: 10px;
  3313. background-position: -3987px 0px; }
  3314. .iti-flag.pk {
  3315. height: 14px;
  3316. background-position: -4009px 0px; }
  3317. .iti-flag.pl {
  3318. height: 13px;
  3319. background-position: -4031px 0px; }
  3320. .iti-flag.pm {
  3321. height: 14px;
  3322. background-position: -4053px 0px; }
  3323. .iti-flag.pn {
  3324. height: 10px;
  3325. background-position: -4075px 0px; }
  3326. .iti-flag.pr {
  3327. height: 14px;
  3328. background-position: -4097px 0px; }
  3329. .iti-flag.ps {
  3330. height: 10px;
  3331. background-position: -4119px 0px; }
  3332. .iti-flag.pt {
  3333. height: 14px;
  3334. background-position: -4141px 0px; }
  3335. .iti-flag.pw {
  3336. height: 13px;
  3337. background-position: -4163px 0px; }
  3338. .iti-flag.py {
  3339. height: 11px;
  3340. background-position: -4185px 0px; }
  3341. .iti-flag.qa {
  3342. height: 8px;
  3343. background-position: -4207px 0px; }
  3344. .iti-flag.re {
  3345. height: 14px;
  3346. background-position: -4229px 0px; }
  3347. .iti-flag.ro {
  3348. height: 14px;
  3349. background-position: -4251px 0px; }
  3350. .iti-flag.rs {
  3351. height: 14px;
  3352. background-position: -4273px 0px; }
  3353. .iti-flag.ru {
  3354. height: 14px;
  3355. background-position: -4295px 0px; }
  3356. .iti-flag.rw {
  3357. height: 14px;
  3358. background-position: -4317px 0px; }
  3359. .iti-flag.sa {
  3360. height: 14px;
  3361. background-position: -4339px 0px; }
  3362. .iti-flag.sb {
  3363. height: 10px;
  3364. background-position: -4361px 0px; }
  3365. .iti-flag.sc {
  3366. height: 10px;
  3367. background-position: -4383px 0px; }
  3368. .iti-flag.sd {
  3369. height: 10px;
  3370. background-position: -4405px 0px; }
  3371. .iti-flag.se {
  3372. height: 13px;
  3373. background-position: -4427px 0px; }
  3374. .iti-flag.sg {
  3375. height: 14px;
  3376. background-position: -4449px 0px; }
  3377. .iti-flag.sh {
  3378. height: 10px;
  3379. background-position: -4471px 0px; }
  3380. .iti-flag.si {
  3381. height: 10px;
  3382. background-position: -4493px 0px; }
  3383. .iti-flag.sj {
  3384. height: 15px;
  3385. background-position: -4515px 0px; }
  3386. .iti-flag.sk {
  3387. height: 14px;
  3388. background-position: -4537px 0px; }
  3389. .iti-flag.sl {
  3390. height: 14px;
  3391. background-position: -4559px 0px; }
  3392. .iti-flag.sm {
  3393. height: 15px;
  3394. background-position: -4581px 0px; }
  3395. .iti-flag.sn {
  3396. height: 14px;
  3397. background-position: -4603px 0px; }
  3398. .iti-flag.so {
  3399. height: 14px;
  3400. background-position: -4625px 0px; }
  3401. .iti-flag.sr {
  3402. height: 14px;
  3403. background-position: -4647px 0px; }
  3404. .iti-flag.ss {
  3405. height: 10px;
  3406. background-position: -4669px 0px; }
  3407. .iti-flag.st {
  3408. height: 10px;
  3409. background-position: -4691px 0px; }
  3410. .iti-flag.sv {
  3411. height: 12px;
  3412. background-position: -4713px 0px; }
  3413. .iti-flag.sx {
  3414. height: 14px;
  3415. background-position: -4735px 0px; }
  3416. .iti-flag.sy {
  3417. height: 14px;
  3418. background-position: -4757px 0px; }
  3419. .iti-flag.sz {
  3420. height: 14px;
  3421. background-position: -4779px 0px; }
  3422. .iti-flag.ta {
  3423. height: 10px;
  3424. background-position: -4801px 0px; }
  3425. .iti-flag.tc {
  3426. height: 10px;
  3427. background-position: -4823px 0px; }
  3428. .iti-flag.td {
  3429. height: 14px;
  3430. background-position: -4845px 0px; }
  3431. .iti-flag.tf {
  3432. height: 14px;
  3433. background-position: -4867px 0px; }
  3434. .iti-flag.tg {
  3435. height: 13px;
  3436. background-position: -4889px 0px; }
  3437. .iti-flag.th {
  3438. height: 14px;
  3439. background-position: -4911px 0px; }
  3440. .iti-flag.tj {
  3441. height: 10px;
  3442. background-position: -4933px 0px; }
  3443. .iti-flag.tk {
  3444. height: 10px;
  3445. background-position: -4955px 0px; }
  3446. .iti-flag.tl {
  3447. height: 10px;
  3448. background-position: -4977px 0px; }
  3449. .iti-flag.tm {
  3450. height: 14px;
  3451. background-position: -4999px 0px; }
  3452. .iti-flag.tn {
  3453. height: 14px;
  3454. background-position: -5021px 0px; }
  3455. .iti-flag.to {
  3456. height: 10px;
  3457. background-position: -5043px 0px; }
  3458. .iti-flag.tr {
  3459. height: 14px;
  3460. background-position: -5065px 0px; }
  3461. .iti-flag.tt {
  3462. height: 12px;
  3463. background-position: -5087px 0px; }
  3464. .iti-flag.tv {
  3465. height: 10px;
  3466. background-position: -5109px 0px; }
  3467. .iti-flag.tw {
  3468. height: 14px;
  3469. background-position: -5131px 0px; }
  3470. .iti-flag.tz {
  3471. height: 14px;
  3472. background-position: -5153px 0px; }
  3473. .iti-flag.ua {
  3474. height: 14px;
  3475. background-position: -5175px 0px; }
  3476. .iti-flag.ug {
  3477. height: 14px;
  3478. background-position: -5197px 0px; }
  3479. .iti-flag.um {
  3480. height: 11px;
  3481. background-position: -5219px 0px; }
  3482. .iti-flag.us {
  3483. height: 11px;
  3484. background-position: -5241px 0px; }
  3485. .iti-flag.uy {
  3486. height: 14px;
  3487. background-position: -5263px 0px; }
  3488. .iti-flag.uz {
  3489. height: 10px;
  3490. background-position: -5285px 0px; }
  3491. .iti-flag.va {
  3492. height: 15px;
  3493. background-position: -5307px 0px; }
  3494. .iti-flag.vc {
  3495. height: 14px;
  3496. background-position: -5324px 0px; }
  3497. .iti-flag.ve {
  3498. height: 14px;
  3499. background-position: -5346px 0px; }
  3500. .iti-flag.vg {
  3501. height: 10px;
  3502. background-position: -5368px 0px; }
  3503. .iti-flag.vi {
  3504. height: 14px;
  3505. background-position: -5390px 0px; }
  3506. .iti-flag.vn {
  3507. height: 14px;
  3508. background-position: -5412px 0px; }
  3509. .iti-flag.vu {
  3510. height: 12px;
  3511. background-position: -5434px 0px; }
  3512. .iti-flag.wf {
  3513. height: 14px;
  3514. background-position: -5456px 0px; }
  3515. .iti-flag.ws {
  3516. height: 10px;
  3517. background-position: -5478px 0px; }
  3518. .iti-flag.xk {
  3519. height: 15px;
  3520. background-position: -5500px 0px; }
  3521. .iti-flag.ye {
  3522. height: 14px;
  3523. background-position: -5522px 0px; }
  3524. .iti-flag.yt {
  3525. height: 14px;
  3526. background-position: -5544px 0px; }
  3527. .iti-flag.za {
  3528. height: 14px;
  3529. background-position: -5566px 0px; }
  3530. .iti-flag.zm {
  3531. height: 14px;
  3532. background-position: -5588px 0px; }
  3533. .iti-flag.zw {
  3534. height: 10px;
  3535. background-position: -5610px 0px; }
  3536. .iti-flag {
  3537. width: 20px;
  3538. height: 15px;
  3539. box-shadow: 0px 0px 1px 0px #888;
  3540. background-image: url("../../img/flags.png");
  3541. background-repeat: no-repeat;
  3542. background-color: #DBDBDB;
  3543. background-position: 20px 0; }
  3544. @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  3545. .iti-flag {
  3546. background-image: url("../../img/flags@2x.png"); } }
  3547. .iti-flag.np {
  3548. background-color: transparent; }
  3549. /**
  3550. * WHMCS Telephone Country Code Dropdown
  3551. *
  3552. * Using https://github.com/jackocnr/intl-tel-input
  3553. *
  3554. * @copyright Copyright (c) WHMCS Limited 2005-2017
  3555. * @license http://www.whmcs.com/license/ WHMCS Eula
  3556. */
  3557. .intl-tel-input {
  3558. width: 100%;
  3559. }
  3560. /* ========================================================================
  3561. * bootstrap-switch - v3.3.2
  3562. * http://www.bootstrap-switch.org
  3563. * ========================================================================
  3564. * Copyright 2012-2013 Mattia Larentis
  3565. *
  3566. * ========================================================================
  3567. * Licensed under the Apache License, Version 2.0 (the "License");
  3568. * you may not use this file except in compliance with the License.
  3569. * You may obtain a copy of the License at
  3570. *
  3571. * http://www.apache.org/licenses/LICENSE-2.0
  3572. *
  3573. * Unless required by applicable law or agreed to in writing, software
  3574. * distributed under the License is distributed on an "AS IS" BASIS,
  3575. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  3576. * See the License for the specific language governing permissions and
  3577. * limitations under the License.
  3578. * ========================================================================
  3579. */
  3580. .bootstrap-switch {
  3581. display: inline-block;
  3582. direction: ltr;
  3583. cursor: pointer;
  3584. border-radius: 4px;
  3585. border: 1px solid;
  3586. border-color: @default-border-color;
  3587. position: relative;
  3588. text-align: left;
  3589. overflow: hidden;
  3590. line-height: 8px;
  3591. z-index: 0;
  3592. -webkit-user-select: none;
  3593. -moz-user-select: none;
  3594. -ms-user-select: none;
  3595. user-select: none;
  3596. vertical-align: middle;
  3597. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  3598. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  3599. }
  3600. .bootstrap-switch .bootstrap-switch-container {
  3601. display: inline-block;
  3602. top: 0;
  3603. border-radius: 4px;
  3604. -webkit-transform: translate3d(0, 0, 0);
  3605. transform: translate3d(0, 0, 0);
  3606. }
  3607. .bootstrap-switch .bootstrap-switch-handle-on,
  3608. .bootstrap-switch .bootstrap-switch-handle-off,
  3609. .bootstrap-switch .bootstrap-switch-label {
  3610. -webkit-box-sizing: border-box;
  3611. -moz-box-sizing: border-box;
  3612. box-sizing: border-box;
  3613. cursor: pointer;
  3614. display: inline-block !important;
  3615. height: 100%;
  3616. padding: 6px 12px;
  3617. font-size: 14px;
  3618. line-height: 20px;
  3619. }
  3620. .bootstrap-switch .bootstrap-switch-handle-on,
  3621. .bootstrap-switch .bootstrap-switch-handle-off {
  3622. text-align: center;
  3623. z-index: 1;
  3624. }
  3625. .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
  3626. .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
  3627. color: #fff;
  3628. background: #428bca;
  3629. }
  3630. .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
  3631. .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
  3632. color: #fff;
  3633. background: #5bc0de;
  3634. }
  3635. .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
  3636. .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
  3637. color: #fff;
  3638. background: #5cb85c;
  3639. }
  3640. .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
  3641. .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
  3642. background: #f0ad4e;
  3643. color: #fff;
  3644. }
  3645. .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
  3646. .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
  3647. color: #fff;
  3648. background: #d9534f;
  3649. }
  3650. .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
  3651. .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
  3652. color: #000;
  3653. background: #eeeeee;
  3654. }
  3655. .bootstrap-switch .bootstrap-switch-label {
  3656. text-align: center;
  3657. margin-top: -1px;
  3658. margin-bottom: -1px;
  3659. z-index: 100;
  3660. color: #333333;
  3661. background: #ffffff;
  3662. }
  3663. .bootstrap-switch .bootstrap-switch-handle-on {
  3664. border-bottom-left-radius: 3px;
  3665. border-top-left-radius: 3px;
  3666. }
  3667. .bootstrap-switch .bootstrap-switch-handle-off {
  3668. border-bottom-right-radius: 3px;
  3669. border-top-right-radius: 3px;
  3670. }
  3671. .bootstrap-switch input[type='radio'],
  3672. .bootstrap-switch input[type='checkbox'] {
  3673. position: absolute !important;
  3674. top: 0;
  3675. left: 0;
  3676. opacity: 0;
  3677. filter: alpha(opacity=0);
  3678. z-index: -1;
  3679. }
  3680. .bootstrap-switch input[type='radio'].form-control,
  3681. .bootstrap-switch input[type='checkbox'].form-control {
  3682. height: auto;
  3683. }
  3684. .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
  3685. .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
  3686. .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
  3687. padding: 1px 5px;
  3688. font-size: 12px;
  3689. line-height: 1.5;
  3690. }
  3691. .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
  3692. .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
  3693. .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
  3694. padding: 5px 10px;
  3695. font-size: 12px;
  3696. line-height: 1.5;
  3697. }
  3698. .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
  3699. .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
  3700. .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
  3701. padding: 6px 16px;
  3702. font-size: 18px;
  3703. line-height: 1.33;
  3704. }
  3705. .bootstrap-switch.bootstrap-switch-disabled,
  3706. .bootstrap-switch.bootstrap-switch-readonly,
  3707. .bootstrap-switch.bootstrap-switch-indeterminate {
  3708. cursor: default !important;
  3709. }
  3710. .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
  3711. .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
  3712. .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
  3713. .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
  3714. .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
  3715. .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
  3716. .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
  3717. .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
  3718. .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
  3719. opacity: 0.5;
  3720. filter: alpha(opacity=50);
  3721. cursor: default !important;
  3722. }
  3723. .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
  3724. -webkit-transition: margin-left 0.5s;
  3725. transition: margin-left 0.5s;
  3726. }
  3727. .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
  3728. border-bottom-left-radius: 0;
  3729. border-top-left-radius: 0;
  3730. border-bottom-right-radius: 3px;
  3731. border-top-right-radius: 3px;
  3732. }
  3733. .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
  3734. border-bottom-right-radius: 0;
  3735. border-top-right-radius: 0;
  3736. border-bottom-left-radius: 3px;
  3737. border-top-left-radius: 3px;
  3738. }
  3739. .bootstrap-switch.bootstrap-switch-focused {
  3740. border-color: #66afe9;
  3741. outline: 0;
  3742. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  3743. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  3744. }
  3745. .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
  3746. .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
  3747. border-bottom-right-radius: 3px;
  3748. border-top-right-radius: 3px;
  3749. }
  3750. .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
  3751. .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
  3752. border-bottom-left-radius: 3px;
  3753. border-top-left-radius: 3px;
  3754. }
  3755. .md-editor{display:block;border:1px solid #ddd}.md-editor .md-footer,.md-editor>.md-header{display:block;padding:6px 4px;background:#f5f5f5}.md-editor>.md-header{margin:0}.md-editor>.md-preview{background:#fff;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;min-height:10px;overflow:auto}.md-editor>textarea{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:14px;outline:0;margin:0;display:block;padding:0;width:100%;border:0;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;border-radius:0;box-shadow:none;background:#eee}.md-editor>textarea:focus{box-shadow:none;background:#fff}.md-editor.active{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.md-editor .md-controls{float:right;padding:3px}.md-editor .md-controls .md-control{right:5px;color:#bebebe;padding:3px 3px 3px 10px}.md-editor .md-controls .md-control:hover{color:#333}.md-editor.md-fullscreen-mode{width:100%;height:100%;position:fixed;top:0;left:0;z-index:99999;padding:60px 30px 15px;background:#fff!important;border:0!important}.md-editor.md-fullscreen-mode .md-footer{display:none}.md-editor.md-fullscreen-mode .md-input,.md-editor.md-fullscreen-mode .md-preview{margin:0 auto!important;height:100%!important;font-size:20px!important;padding:20px!important;color:#999;line-height:1.6em!important;resize:none!important;box-shadow:none!important;background:#fff!important;border:0!important}.md-editor.md-fullscreen-mode .md-preview{color:#333;overflow:auto}.md-editor.md-fullscreen-mode .md-input:focus,.md-editor.md-fullscreen-mode .md-input:hover{color:#333;background:#fff!important}.md-editor.md-fullscreen-mode .md-header{background:0 0;text-align:center;position:fixed;width:100%;top:20px}.md-editor.md-fullscreen-mode .btn-group{float:none}.md-editor.md-fullscreen-mode .btn{border:0;background:0 0;color:#b3b3b3}.md-editor.md-fullscreen-mode .btn.active,.md-editor.md-fullscreen-mode .btn:active,.md-editor.md-fullscreen-mode .btn:focus,.md-editor.md-fullscreen-mode .btn:hover{box-shadow:none;color:#333}.md-editor.md-fullscreen-mode .md-fullscreen-controls{position:absolute;top:20px;right:20px;text-align:right;z-index:1002;display:block}.md-editor.md-fullscreen-mode .md-fullscreen-controls a{color:#b3b3b3;clear:right;margin:10px;width:30px;height:30px;text-align:center}.md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover{color:#333;text-decoration:none}.md-editor.md-fullscreen-mode .md-editor{height:100%!important;position:relative}.md-editor .md-fullscreen-controls{display:none}.md-nooverflow{overflow:hidden;position:fixed;width:100%}
  3756. div.dtr-modal {
  3757. position: fixed;
  3758. box-sizing: border-box;
  3759. top: 0;
  3760. left: 0;
  3761. height: 100%;
  3762. width: 100%;
  3763. z-index: 100;
  3764. padding: 10em 1em;
  3765. }
  3766. div.dtr-modal div.dtr-modal-display {
  3767. position: absolute;
  3768. top: 0;
  3769. left: 0;
  3770. bottom: 0;
  3771. right: 0;
  3772. width: 50%;
  3773. height: 50%;
  3774. overflow: auto;
  3775. margin: auto;
  3776. z-index: 102;
  3777. overflow: auto;
  3778. background-color: #f5f5f7;
  3779. border: 1px solid black;
  3780. border-radius: 0.5em;
  3781. box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  3782. }
  3783. div.dtr-modal div.dtr-modal-content {
  3784. position: relative;
  3785. padding: 1em;
  3786. }
  3787. div.dtr-modal div.dtr-modal-close {
  3788. position: absolute;
  3789. top: 6px;
  3790. right: 6px;
  3791. width: 22px;
  3792. height: 22px;
  3793. border: 1px solid #eaeaea;
  3794. background-color: #f9f9f9;
  3795. text-align: center;
  3796. border-radius: 3px;
  3797. cursor: pointer;
  3798. z-index: 12;
  3799. }
  3800. div.dtr-modal div.dtr-modal-close:hover {
  3801. background-color: #eaeaea;
  3802. }
  3803. div.dtr-modal div.dtr-modal-background {
  3804. position: fixed;
  3805. top: 0;
  3806. left: 0;
  3807. right: 0;
  3808. bottom: 0;
  3809. z-index: 101;
  3810. background: rgba(0, 0, 0, 0.6);
  3811. }
  3812. @media screen and (max-width: 767px) {
  3813. div.dtr-modal div.dtr-modal-display {
  3814. width: 95%;
  3815. }
  3816. }
  3817. div.dtr-bs-modal table.table tr:first-child td {
  3818. border-top: none;
  3819. }
  3820. .multiselect-container{position:absolute;list-style-type:none;margin:0;padding:0}.multiselect-container .input-group{margin:5px}.multiselect-container>li{padding:0}.multiselect-container>li>a.multiselect-all label{font-weight:700}.multiselect-container>li.multiselect-group label{margin:0;padding:3px 20px 3px 20px;height:100%;font-weight:700}.multiselect-container>li.multiselect-group-clickable label{cursor:pointer}.multiselect-container>li>a{padding:0}.multiselect-container>li>a>label{margin:0;height:100%;cursor:pointer;font-weight:400;padding:3px 20px 3px 40px}.multiselect-container>li>a>label.radio,.multiselect-container>li>a>label.checkbox{margin:0}.multiselect-container>li>a>label>input[type=checkbox]{margin-bottom:5px}.btn-group>.btn-group:nth-child(2)>.multiselect.btn{border-top-left-radius:4px;border-bottom-left-radius:4px}.form-inline .multiselect-container label.checkbox,.form-inline .multiselect-container label.radio{padding:3px 20px 3px 40px}.form-inline .multiselect-container li a label.checkbox input[type=checkbox],.form-inline .multiselect-container li a label.radio input[type=radio]{margin-left:-20px;margin-right:0}
  3821. /* iCheck plugin Square skin, blue
  3822. ----------------------------------- */
  3823. .icheckbox_square-blue,
  3824. .iradio_square-blue {
  3825. display: inline-block;
  3826. *display: inline;
  3827. vertical-align: middle;
  3828. margin: 0;
  3829. padding: 0;
  3830. width: 22px;
  3831. height: 22px;
  3832. background: url(../../css/blue.png) no-repeat;
  3833. border: none;
  3834. cursor: pointer;
  3835. }
  3836. .icheckbox_square-blue {
  3837. background-position: 0 0;
  3838. }
  3839. .icheckbox_square-blue.hover {
  3840. background-position: -24px 0;
  3841. }
  3842. .icheckbox_square-blue.checked {
  3843. background-position: -48px 0;
  3844. }
  3845. .icheckbox_square-blue.disabled {
  3846. background-position: -72px 0;
  3847. cursor: default;
  3848. }
  3849. .icheckbox_square-blue.checked.disabled {
  3850. background-position: -96px 0;
  3851. }
  3852. .iradio_square-blue {
  3853. background-position: -120px 0;
  3854. }
  3855. .iradio_square-blue.hover {
  3856. background-position: -144px 0;
  3857. }
  3858. .iradio_square-blue.checked {
  3859. background-position: -168px 0;
  3860. }
  3861. .iradio_square-blue.disabled {
  3862. background-position: -192px 0;
  3863. cursor: default;
  3864. }
  3865. .iradio_square-blue.checked.disabled {
  3866. background-position: -216px 0;
  3867. }
  3868. /* HiDPI support */
  3869. @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  3870. .icheckbox_square-blue,
  3871. .iradio_square-blue {
  3872. background-image: url(../../css/blue@2x.png);
  3873. -webkit-background-size: 240px 24px;
  3874. background-size: 240px 24px;
  3875. }
  3876. }
  3877. .w-hidden {
  3878. display: none;
  3879. }
  3880. .form-check-inline {
  3881. display: initial;
  3882. }
  3883. @media (max-width: 991.98px) {
  3884. .licensing-verification h3 {
  3885. font-size: 1.4em;
  3886. }
  3887. }
  3888. @media (max-width: 767.98px) {
  3889. .licensing-verification h3 {
  3890. font-size: 1em;
  3891. }
  3892. }
  3893. @media (max-width: 991.98px) {
  3894. .licensing-verification h2 {
  3895. font-size: 1.7em;
  3896. }
  3897. }
  3898. @media (max-width: 767.98px) {
  3899. .licensing-verification h2 {
  3900. font-size: 1.2em;
  3901. }
  3902. }
  3903. .licensing-verification .secondary-input-submit {
  3904. display: none;
  3905. }
  3906. @media (max-width: 767.98px) {
  3907. .licensing-verification .input-group .input-group-append {
  3908. display: none;
  3909. }
  3910. .licensing-verification .input-group input {
  3911. border-radius: 0 6px 6px 0 !important;
  3912. }
  3913. .licensing-verification .secondary-input-submit {
  3914. display: block;
  3915. padding-top: 0.5em;
  3916. }
  3917. }
  3918. .captcha-overlay-badge {
  3919. position: fixed;
  3920. bottom: 20px;
  3921. right: 20px;
  3922. z-index: 9999;
  3923. cursor: pointer;
  3924. }
  3925. .captcha-overlay-badge-hidden {
  3926. display: none;
  3927. }
  3928. .captcha-overlay-badge img {
  3929. width: 60px;
  3930. height: auto;
  3931. }
  3932. .captcha-overlay-popup {
  3933. display: none;
  3934. position: fixed;
  3935. bottom: 80px;
  3936. right: 20px;
  3937. background-color: #fff;
  3938. border: 1px solid #ccc;
  3939. padding: 10px;
  3940. width: 300px;
  3941. z-index: 9998;
  3942. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  3943. }