| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419 |
- /***
- Removed from orignal
- 1.) WHMCS Bootstrap Override Sheet
- 2.) body h1,h2, etc anf link classes from WHMCS Main Style Sheet
- 3.) @section List Tables along wiht all classes related to
- datatables and table lists
- 4.) @section Main Navbar
- 5.) Client Homepage
- 6.) Client Homepage Tiles
- 7.) Client Homepage
- 8.) General Styles - header-lined and breadcumbs
- 9.) Domain Checker section
- 10.) @section Home Page Banner
- 11.) @section Home Page Shortcut Buttons
- 12.) Language Chooser
- 13.) Login or Register Popover
- 14.) @section Navigational Bar
- 15.) @section Announcements Page
- 16.) @section Affiliates Page
- 17.) @section Client Notifications
- 18.) Store
- 19.) @section Sidebar Panels - removed panel-title clases
- 20.) @invoice-summary // removed
- ***/
- .container-fluid.without-padding {
- padding-left: 0;
- padding-right: 0;
- overflow-x: hidden;
- }
- .table-container {
- padding: 0 0 25px 0;
- }
- .primary-content .card {
- margin-bottom: 1rem;
- }
- .primary-content .card.mw-540 {
- max-width: 540px;
- margin-left: auto;
- margin-right: auto;
- }
- .primary-content .card.mw-750 {
- max-width: 750px;
- margin-left: auto;
- margin-right: auto;
- }
- .primary-content .card-body {
- overflow: auto;
- }
- @media (min-width: 768px) {
- .primary-content .card-body.extra-padding {
- padding: 1.8rem;
- }
- }
- @media (min-width: 1200px) {
- .primary-content .card-body.extra-padding {
- padding: 3rem;
- }
- }
- .primary-content .card-title {
- margin: 0 0 20px 0;
- padding: 0;
- font-size: 22px;
- }
- /**
- * WHMCS Bootstrap Override Sheet
- */
- .has-feedback label ~ .form-control-feedback {
- top: 27px !important;
- }
- .list-group-item > i.far.fa-circle {
- color: #808080;
- }
- .has-error button {
- border-color: #a94442;
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
- }
- /*
- * Language strings which are too long to fit into buttons should be "chopped off" inside the div
- * of that button, instead of "overflowing" outside of the button. CORE-9272
- */
- .btn {
- overflow: hidden;
- }
- .label {
- max-width: 100%;
- border-radius: 4px;
- display: inline;
- padding: .2em .6em .3em;
- font-size: 75%;
- font-weight: 400;
- line-height: 1;
- color: @white;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- }
- /**
- * WHMCS Main Style Sheet
- */
- /**
- * -------------------------
- * @section Sections
- * -------------------------
- */
- section#header {
- margin: 0;
- padding: 10px 0;
- background-color: #fff;
- border-radius: 5px 5px 0 0;
- }
- section#header .logo img {
- margin: 0;
- padding: 0;
- max-height: 50px;
- vertical-align: middle;
- }
- section#header .logo-text {
- font-family: 'Raleway';
- font-weight: 400;
- font-size: 2.6em;
- white-space: nowrap;
- }
- section#header .search {
- margin: 20px 0;
- }
- section#header .search .form-control {
- border-color: #eee;
- box-shadow: none;
- }
- section#header .search .btn {
- background-color: #eee;
- border-color: #eee;
- color: #888;
- }
- section#main-content {
- margin-bottom: 60px;
- }
- @media (min-width: 992px) {
- .main-content {
- min-height: 530px;
- }
- }
- .main-content, #order-clouder, .primary-content {
- &.left-layout {
- @media (max-width: 1199px) {
- min-height: auto;
- }
- }
- }
- section#footer {
- margin: 0;
- padding: 20px 10px;
- background-color: #f8f8f8;
- border-top: 1px solid #ddd;
- color: #666;
- font-size: 0.9em;
- }
- section#footer p {
- margin: 0;
- }
- @media (min-width: 450px) {
- section#footer {
- line-height: 32px;
- }
- }
- section#footer .back-to-top {
- float: right;
- }
- section#footer .back-to-top i {
- padding: 10px;
- background-color: #ddd;
- color: #888;
- border-radius: 3px;
- opacity: 0.7;
- }
- .adminreturndiv {
- display: none !important;
- }
- .alert-bordered-left {
- border: 0;
- border-left: 3px solid;
- border-radius: 0;
- text-align: left;
- }
- .truncate {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- /**
- * -------------------------
- * @section Main Navbar
- * -------------------------
- */
- /**
- * -------------------------
- * @section General Styles
- * -------------------------
- */
- div.header-lined small {
- white-space: nowrap;
- overflow: hidden;
- }
- @media (min-width: 380px) {
- .btn-input-padded-responsive {
- padding-left: 20px;
- padding-right: 20px;
- }
- }
- @media (min-width: 500px) {
- .btn-input-padded-responsive {
- padding-left: 35px;
- padding-right: 35px;
- }
- }
- #fullpage-overlay {
- display: table;
- position: fixed;
- z-index: 1000;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: black;
- background-color: rgba(0, 0, 0, 0.8);
- color: #fff;
- }
- #fullpage-overlay .outer-wrapper {
- position: relative;
- height: 100%;
- }
- #fullpage-overlay .inner-wrapper {
- position: absolute;
- top: 50%;
- left: 50%;
- height: 30%;
- width: 50%;
- margin: -3% 0 0 -25%;
- text-align: center;
- }
- #fullpage-overlay .msg {
- display: inline-block;
- padding: 20px;
- max-width: 400px;
- }
- .compact-control-bar {
- margin: 0;
- padding: 5px;
- background-color: #eee;
- border-radius: 3px;
- }
- /**
- * -------------------------
- * @section Margin Classes
- * -------------------------
- */
- .margin-10 {
- margin: 10px;
- }
- .margin-bottom {
- margin-bottom: 20px;
- }
- .margin-top-5 {
- margin-top: 5px;
- }
- .margin-bottom-5 {
- margin-bottom: 5px;
- }
- .col-button-left {
- padding-left: 0;
- padding-right: 7px;
- }
- .col-button-right {
- padding-left: 7px;
- padding-right: 0;
- }
- /**
- * -------------------------
- * @section Form Classes
- * -------------------------
- */
- .input-inline {
- display: inline-block;
- }
- .input-inline-100 {
- width: 100px;
- }
- .select-inline {
- display: inline-block;
- width: auto;
- }
- .form-group .field-error-msg {
- display: none;
- font-size: 0.85em;
- color: #cc0000;
- }
- /**
- * -------------------------
- * @section Responsive Pull Left & Right
- * -------------------------
- */
- /**
- * -------------------------
- * @section Login Page
- * -------------------------
- */
- .logincontainer {
- margin: 40px auto 100px auto;
- padding: 0 10px;
- max-width: 500px;
- }
- .logincontainer.with-social {
- max-width: 650px;
- }
- .logincontainer .social-signin-btns {
- padding: 23px 0;
- }
- @media (max-width: 500px) {
- .logincontainer .social-signin-btns .btn {
- display: block;
- width: 100%;
- }
- }
- @media (max-width: 600px) {
- .logincontainer {
- margin: 0 auto 30px auto;
- }
- }
- @media (min-width: 768px) {
- .logincontainer.with-social .login-form {
- padding-right: 29px;
- border-right: 1px solid #ddd;
- }
- .logincontainer .social-signin-btns .btn {
- display: block;
- width: 100%;
- }
- }
- /**
- * -------------------------
- * @section Icons
- * -------------------------
- */
- i.icon-rss {
- color: #ff6600;
- }
- /**
- * -------------------------
- * @section Main Menu
- * -------------------------
- */
- section#main-menu {
- background-color: #006687;
- }
- /**
- * -------------------------
- * @section Home Page Banner
- * -------------------------
- */
- /**
- * -------------------------
- * @section Home Page Shortcut Buttons
- * -------------------------
- */
- /**
- * -------------------------
- * Client Homepage
- * -------------------------
- */
- .home-kb-search {
- margin-bottom: 15px;
- }
- .home-kb-search .form-control {
- padding-left: 50px;
- }
- .home-kb-search i {
- float: left;
- margin-top: -30px;
- margin-left: 20px;
- }
- /**
- * -------------------------
- * Client Homepage Tiles
- * -------------------------
- */
- /**
- * -------------------------
- * Panel Accents
- * -------------------------
- */
- .panel.panel-accent-gold {
- border-top: 3px solid #f0ad4e;
- }
- .panel.panel-accent-green {
- border-top: 3px solid #5cb85c;
- }
- .panel.panel-accent-red {
- border-top: 3px solid #d9534f;
- }
- .panel.panel-accent-blue {
- border-top: 3px solid #5bc0de;
- }
- .panel.panel-accent-orange {
- border-top: 3px solid #f39c12;
- }
- .panel.panel-accent-pink {
- border-top: 3px solid #e671b8;
- }
- .panel.panel-accent-purple {
- border-top: 3px solid #7b4f9d;
- }
- .panel.panel-accent-lime {
- border-top: 3px solid #8cbf26;
- }
- .panel.panel-accent-magenta {
- border-top: 3px solid #ff0097;
- }
- .panel.panel-accent-teal {
- border-top: 3px solid #00aba9;
- }
- .panel.panel-accent-turquoise {
- border-top: 3px solid #1abc9c;
- }
- .panel.panel-accent-emerald {
- border-top: 3px solid #2ecc71;
- }
- .panel.panel-accent-amethyst {
- border-top: 3px solid #9b59b6;
- }
- .panel.panel-accent-wet-asphalt {
- border-top: 3px solid #34495e;
- }
- .panel.panel-accent-midnight-blue {
- border-top: 3px solid #2c3e50;
- }
- .panel.panel-accent-sun-flower {
- border-top: 3px solid #f1c40f;
- }
- .panel.panel-accent-pomegranate {
- border-top: 3px solid #c0392b;
- }
- .panel.panel-accent-silver {
- border-top: 3px solid #bdc3c7;
- }
- .panel.panel-accent-asbestos {
- border-top: 3px solid #7f8c8d;
- }
- .panel.panel-accent-brand-cpanel-orange {
- border-top: 3px solid #ff6c2c;
- }
- /**
- * -------------------------
- * Background Colors
- * -------------------------
- */
- .bg-color-gold {
- background-color: #f0ad4e;
- }
- .bg-color-green {
- background-color: #5cb85c;
- }
- .bg-color-red {
- background-color: #d9534f;
- }
- .bg-color-blue {
- background-color: #5bc0de;
- }
- .bg-color-orange {
- background-color: #f39c12;
- }
- .bg-color-pink {
- background-color: #e671b8;
- }
- .bg-color-purple {
- background-color: #7b4f9d;
- }
- .bg-color-lime {
- background-color: #8cbf26;
- }
- .bg-color-magenta {
- background-color: #ff0097;
- }
- .bg-color-teal {
- background-color: #00aba9;
- }
- .bg-color-turquoise {
- background-color: #1abc9c;
- }
- .bg-color-emerald {
- background-color: #2ecc71;
- }
- .bg-color-amethyst {
- background-color: #9b59b6;
- }
- .bg-color-wet-asphalt {
- background-color: #34495e;
- }
- .bg-color-midnight-blue {
- background-color: #2c3e50;
- }
- .bg-color-sun-flower {
- background-color: #f1c40f;
- }
- .bg-color-pomegranate {
- background-color: #c0392b;
- }
- .bg-color-silver {
- background-color: #bdc3c7;
- }
- .bg-color-asbestos {
- background-color: #7f8c8d;
- }
- /**
- * -------------------------
- * @section Navigational Bar
- * -------------------------
- */
- /**
- * -------------------------
- * @section Twitter Feed
- * -------------------------
- */
- div.home-twitter {
- margin-top: 20px;
- margin-bottom: 40px;
- }
- div.tweet > i {
- color: #2BABCF;
- float: left;
- margin-right: 15px;
- }
- div.tweet span {
- font-size: 12px;
- color: #ccc;
- }
- /**
- * -------------------------
- * @section Domain Checker
- * -------------------------
- */
- /**
- * -------------------------
- * @section Announcements Page
- * -------------------------
- */
- /**
- * -------------------------
- * @section Product Details Page
- * -------------------------
- */
- div.product-details {
- margin: 0 0 20px 0;
- }
- div.product-details div.product-icon {
- margin: 0;
- padding: 0;
- background-color: #efefef;
- border-radius: 10px;
- padding: 30px;
- font-size: 60px;
- line-height: 1em;
- }
- .product-status {
- margin: 0 0 20px 0;
- padding: 0;
- border-radius: 10px;
- }
- .product-status-pending {
- background-color: #F89406;
- }
- .product-status-active {
- background-color: #46A546;
- }
- .product-status-suspended {
- background-color: #0768B8;
- }
- .product-status-terminated,
- .product-status-cancelled {
- background-color: #666;
- }
- .product-status-fraud {
- background-color: #000;
- }
- .product-status-text {
- padding: 5px;
- color: #fff;
- text-align: center;
- text-transform: uppercase;
- }
- div.product-details-tab-container {
- margin: 0;
- padding: 20px;
- border: 1px solid #ddd;
- border-top: 0;
- }
- .module-client-area {
- padding: 15px 15px 0 15px;
- }
- .ssl-inactive {
- cursor: pointer;
- }
- #mc-promo-widgets {
- .panel {
- &.content {
- display: flex;
- justify-content: space-between;
- }
-
- .panel-heading {
- padding: 1rem;
-
- .panel-title {
- font-size: 1rem;
- }
- }
- }
- .btn {
- padding: .375rem .75rem;
- }
- }
- .mc-promo-manage, .mc-promo-login {
- position: relative;
- .logo {
- display: flex;
- align-items: center;
- justify-content: center;
- border-right: 1px solid @default-border-color;
- padding: 1em;
- img {
- max-width: 70px;
- display: block;
- border-radius: 4px;
- }
-
- + div {
- display: flex;
- flex-direction: column;
- width: 100%;
- }
- }
- }
- @media (min-width: 1200px) {
- #mc-promo-widgets {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- -moz-column-gap: 1%;
- column-gap: 1%;
- }
- }
- /**
- * -------------------------
- * @section List Tables
- * -------------------------
- */
- /**
- * -------------------------
- * @section Status Lights
- * -------------------------
- */
- .status {
- display: block;
- font-size: @baseFontSize - 2;
- line-height: 22px;
- border-radius: 4px;
- background-color: @white;
- }
- .status-custom {
- background-color: #fff;
- color: black;
- border: 1px solid black;
- padding: 1px;
- }
- .status-pending {
- background-color: #d9534f;
- }
- .status-pending-transfer {
- background-color: #f0ad4e;
- }
- .status-active,
- .status-open,
- .status-completed {
- background-color: #5cb85c;
- }
- .status-suspended {
- background-color: #f0ad4e;
- }
- .status-customer-reply {
- background-color: #ff6600;
- }
- .status-fraud {
- background-color: #000;
- }
- .status-answered {
- background-color: #7b4f9d;
- }
- .status-expired,
- .status-transferred-away {
- background-color: #004258;
- }
- .status-terminated {
- background-color: #666;
- }
- .status-onhold {
- background-color: #336699;
- }
- .status-inprogress {
- background-color: #c0392b;
- }
- .status-closed {
- background-color: #87939f;
- }
- .status-paid {
- background-color: #5cb85c;
- }
- .status-unpaid {
- background-color: #d9534f;
- }
- .status-cancelled {
- background-color: #87939f;
- }
- .status-collections {
- background-color: #2c3e50;
- }
- .status-refunded {
- background-color: #f0ad4e;
- }
- .status-payment-pending {
- background-color: #336699;
- }
- .status-delivered {
- background-color: #336699;
- }
- .status-accepted {
- background-color: #5cb85c;
- }
- .status-lost,
- .status-dead {
- background-color: #000;
- }
- .status-pending-registration,
- .status-redemption,
- .status-grace {
- background-color: #f89406;
- }
- /**
- * -------------------------
- * Colors
- * -------------------------
- */
- .card-accent-gold {
- border-top: 3px solid #f0ad4e;
- }
- .card-accent-green {
- border-top: 3px solid #5cb85c;
- }
- .card-accent-red {
- border-top: 3px solid #d9534f;
- }
- .card-accent-blue {
- border-top: 3px solid #5bc0de;
- }
- .card-accent-orange {
- border-top: 3px solid #ff6600;
- }
- .card-accent-pink {
- border-top: 3px solid #e671b8;
- }
- .card-accent-purple {
- border-top: 3px solid #7b4f9d;
- }
- .card-accent-lime {
- border-top: 3px solid #8cbf26;
- }
- .card-accent-magenta {
- border-top: 3px solid #ff0097;
- }
- .card-accent-teal {
- border-top: 3px solid #00aba9;
- }
- .card-accent-turquoise {
- border-top: 3px solid #1abc9c;
- }
- .card-accent-emerald {
- border-top: 3px solid #2ecc71;
- }
- .card-accent-amethyst {
- border-top: 3px solid #9b59b6;
- }
- .card-accent-wet-asphalt {
- border-top: 3px solid #004258;
- }
- .card-accent-midnight-blue {
- border-top: 3px solid #2c3e50;
- }
- .card-accent-sun-flower {
- border-top: 3px solid #f1c40f;
- }
- .card-accent-pomegranate {
- border-top: 3px solid #c0392b;
- }
- .card-accent-silver {
- border-top: 3px solid #bdc3c7;
- }
- .card-accent-asbestos {
- border-top: 3px solid #7f8c8d;
- }
- .bg-color-gold {
- background-color: #f0ad4e;
- }
- .bg-color-green {
- background-color: #5cb85c;
- }
- .bg-color-red {
- background-color: #d9534f;
- }
- .bg-color-blue {
- background-color: #5bc0de;
- }
- .bg-color-orange {
- background-color: #ff6600;
- }
- .bg-color-pink {
- background-color: #e671b8;
- }
- .bg-color-purple {
- background-color: #7b4f9d;
- }
- .bg-color-lime {
- background-color: #8cbf26;
- }
- .bg-color-magenta {
- background-color: #ff0097;
- }
- .bg-color-teal {
- background-color: #00aba9;
- }
- .bg-color-turquoise {
- background-color: #1abc9c;
- }
- .bg-color-emerald {
- background-color: #2ecc71;
- }
- .bg-color-amethyst {
- background-color: #9b59b6;
- }
- .bg-color-wet-asphalt {
- background-color: #004258;
- }
- .bg-color-midnight-blue {
- background-color: #2c3e50;
- }
- .bg-color-sun-flower {
- background-color: #f1c40f;
- }
- .bg-color-pomegranate {
- background-color: #c0392b;
- }
- .bg-color-silver {
- background-color: #bdc3c7;
- }
- .bg-color-asbestos {
- background-color: #7f8c8d;
- }
- .label-default {
- background-color: #666;
- }
- .label-success {
- background-color: #5cb85c;
- }
- .label-info {
- background-color: #5bc0de;
- }
- .label-warning {
- background-color: #f0ad4e;
- }
- .label-danger {
- background-color: #d9534f;
- }
- /**
- * -------------------------
- * @section Affiliates Page
- * -------------------------
- */
- /**
- * -------------------------
- * @section Support Tickets
- * -------------------------
- */
- .ticket-subject.unread {
- font-weight: bold;
- }
- .ticket-reply .rating,
- .ticket-reply .rating-done {
- float: right;
- padding: 5px 10px;
- unicode-bidi: bidi-override;
- direction: rtl;
- }
- .ticket-reply .rating span.star,
- .ticket-reply .rating-done span.star {
- font-family: "Font Awesome 5 Pro";
- font-weight: normal;
- font-style: normal;
- display: inline-block;
- }
- .ticket-reply .rating-done .rated {
- display: inline-block;
- font-size: 12px;
- }
- .ticket-reply .rating span.star:hover {
- cursor: pointer;
- }
- .ticket-reply .rating span.star:before,
- .ticket-reply .rating-done span.star:before {
- content: "\f005";
- padding-right: 0;
- color: #999;
- }
- .ticket-reply .rating span.star:hover:before,
- .ticket-reply .rating span.star:hover ~ span.star:before,
- .ticket-reply .rating-done span.star.active:before {
- content: "\f005";
- color: #F2DE88;
- }
- .md-editor .btn-toolbar .btn-group {
- margin-right: 6px;
- }
- .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 {
- padding: 0;
- }
- .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 {
- border-bottom: 0;
- }
- .view-ticket .posted-by {
- font-size: 0.9rem;
- padding: 0.5rem 0.75rem;
- }
- .view-ticket .posted-by .posted-by-name {
- font-weight: bold;
- }
- .view-ticket .message p:last-child {
- margin-bottom: 0;
- }
- .view-ticket .attachments {
- border-top: 1px dashed #ddd;
- font-size: 80%;
- }
- .view-ticket .attachment-list {
- list-style: none;
- margin: 10px 0 -10px 0;
- padding: 0;
- }
- .view-ticket .attachment-list li {
- display: inline-block;
- width: 190px;
- vertical-align: top;
- }
- .view-ticket .attachment-list li span {
- display: block;
- padding: 5px 5px 10px 5px;
- margin-bottom: 10px;
- border: 1px solid #ddd;
- border-radius: 3px;
- }
- .view-ticket .attachment-list li figure {
- margin: 0 0 5px 0;
- background-color: #f6f6f6;
- line-height: 100px;
- text-align: center;
- font-size: 4em;
- }
- /**
- * -------------------------
- * @section Support Ticket Feedback
- * -------------------------
- */
- .ticketfeedbackstaffcont {
- margin: 10px auto;
- padding: 15px;
- width: 90%;
- background-color: #efefef;
- border-radius: 6px;
- }
- .ticketfeedbackrating {
- padding: 0 100px;
- }
- .ticketfeedbackrating .rate {
- float: left;
- padding: 0 10px;
- min-width: 30px;
- text-align: center;
- }
- @media (min-width: 380px) {
- .btn-input-padded-responsive {
- padding-left: 20px;
- padding-right: 20px;
- }
- }
- @media (min-width: 500px) {
- .btn-input-padded-responsive {
- padding-left: 35px;
- padding-right: 35px;
- }
- }
- /**
- * -------------------------
- * @section Requestor Types
- * -------------------------
- */
- .requestor-type-operator {
- background-color: #5bc0de;
- }
- .requestor-type-owner {
- background-color: #5cb85c;
- }
- .requestor-type-authorizeduser {
- background-color: #777;
- }
- .requestor-type-externaluser {
- background-color: #f0ad4e;
- }
- .requestor-type-subaccount {
- background-color: #777;
- }
- .requestor-type-guest {
- background-color: #ccc;
- }
- /**
- * -------------------------
- * @section Support Ticket Feedback
- * -------------------------
- */
- .ticketfeedbackstaffcont {
- margin: 10px auto;
- padding: 15px;
- width: 90%;
- background-color: #efefef;
- -moz-border-radius: 6px;
- -webkit-border-radius: 6px;
- -o-border-radius: 6px;
- border-radius: 6px;
- }
- .ticketfeedbackrating {
- padding: 0 100px;
- }
- .ticketfeedbackrating .rate {
- float: left;
- padding: 0 10px;
- min-width: 30px;
- text-align: center;
- }
- /**
- * -------------------------
- * @section Client Notifications
- * -------------------------
- */
- /**
- * -------------------------
- * @section Captcha
- * -------------------------
- */
- .captchaimage {
- margin: 0;
- padding: 3px 0 4px;
- -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
- transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
- text-align: right;
- }
- /**
- * -------------------------
- * @section Credit Cards
- * -------------------------
- */
- div.credit-card {
- margin: 0 auto 30px;
- max-width: 400px;
- background-color: #f8f8f8;
- border: 1px solid #ccc;
- border-radius: 8px;
- }
- div.credit-card div.card-type {
- float: right;
- padding: 10px 20px;
- font-size: 1.2em;
- }
- div.credit-card div.card-icon {
- float: left;
- padding: 7px 7px;
- font-size: 1.2em;
- }
- div.credit-card div.card-number {
- padding: 10px;
- background-color: #ccc;
- font-size: 1.6em;
- text-align: center;
- clear: both;
- }
- div.credit-card div.card-start {
- float: left;
- padding: 20px 0 50px 50px;
- font-size: 1.3em;
- text-align: right;
- }
- div.credit-card div.card-expiry {
- float: right;
- padding: 20px 50px 50px 0;
- height: 120px;
- font-size: 1.3em;
- text-align: right;
- }
- div.credit-card div.end {
- clear: both;
- }
- @media (max-width: 600px) {
- div.credit-card {
- max-width: 250px;
- }
- div.credit-card div.card-type {
- font-size: 1.0em;
- }
- div.credit-card div.card-icon {
- font-size: 1.0em;
- }
- div.credit-card div.card-number {
- padding: 6px 10px;
- font-size: 1.2em;
- }
- div.credit-card div.card-start {
- padding: 20px 0 30px 50px;
- font-size: 0.9em;
- }
- div.credit-card div.card-expiry {
- padding: 20px 50px 30px 0;
- height: 80px;
- font-size: 0.9em;
- }
- }
- .auth3d-area {
- border: 1px solid #fff;
- }
- .submit-3d {
- width: 80%;
- border: 1px solid #fff;
- }
- /* Card colors colorpicked from website logos */
- div.credit-card .logo-visa {
- color: #1a1f71;
- }
- div.credit-card .logo-amex {
- color: #43abdf;
- }
- div.credit-card .logo-mastercard {
- color: #ed0b00;
- }
- div.credit-card .logo-discover {
- color: #000000;
- }
- div.two-column-grid,
- div.three-column-grid {
- display: inline-grid;
- grid-template-columns: repeat(3, auto) minmax(10em, 30em) auto;
- font-weight: 300;
- font-size: 13px;
- }
- div.two-column-grid {
- grid-template-columns: repeat(2, auto) minmax(10em, 30em) auto;
- }
- div.two-column-grid > div,
- div.three-column-grid > div {
- margin: 5px 0;
- padding-right: 5px;
- }
- div.two-column-grid > div > label,
- div.three-column-grid > div > label {
- font-weight: normal;
- }
- #frmPayment .paymethod-info {
- margin: 5px 0;
- cursor: pointer;
- }
- #frmPayment .paymethod-info label {
- font-weight: normal;
- cursor: pointer;
- }
- .iframe-input-container {
- height: 34px;
- }
- #payMethodList tr {
- font-size: smaller;
- }
- #payMethodList tr td:nth-child(2),
- #payMethodList tr td:nth-child(3) {
- max-width: 15em;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- /**
- * -------------------------
- * @section Sidebar Responsive Behaviour Classes
- * -------------------------
- */
- div.sidebar .list-group-item-selected {
- background-color: #319FC3;
- color: #FFFFFF;
- }
- div.sidebar .list-group-item-selected .badge {
- background-color: #FFFFFF;
- color: #319FC3;
- }
- .sidebar.sidebar-secondary {
- clear: left;
- }
- @media (max-width: 991px) {
- .panel-actions {
- border: 0;
- box-shadow: none;
- }
- .panel-actions > .panel-heading > .panel-title {
- display: inline;
- }
- .panel-actions > .panel-heading {
- border-radius: 3px;
- }
- .panel-actions > .list-group {
- padding: 10px;
- overflow-x: scroll;
- overflow-y: unset;
- white-space: nowrap;
- }
- .panel-actions > .list-group .list-group-item {
- display: inline-block;
- border: 1px solid #ddd !important;
- border-radius: 3px !important;
- white-space: nowrap;
- text-align: center;
- padding: 5px 25px;
- margin: 2px;
- }
- .panel-actions > .list-group .list-group-item > .badge {
- float: none;
- margin: -2px 0 0 10px;
- }
- }
- /**
- * -------------------------
- * @section Two Factor Authentication
- * -------------------------
- */
- .twofa-setup .modal-body {
- min-height: 100px;
- }
- .twofa-setup .activation-msg {
- margin: 25px 0;
- padding: 15px;
- border: 1px dashed #ddd;
- text-align: center;
- font-weight: bold;
- font-size: 1.1em;
- }
- .twofa-setup .backup-code {
- margin: 20px auto;
- padding: 10px;
- background-color: #efefef;
- color: #444;
- text-align: center;
- }
- .twofa-module {
- margin: 10px 0;
- padding: 14px 20px;
- border: 1px solid #ccc;
- border-radius: 4px;
- cursor: pointer;
- }
- .twofa-module .col-radio {
- float: left;
- width: 35px;
- margin-top: 12px;
- }
- .twofa-module .col-logo {
- float: left;
- width: 80px;
- line-height: 40px;
- text-align: center;
- }
- .twofa-module .col-description {
- margin-left: 136px;
- }
- .twofa-module img {
- max-width: 100%;
- max-height: 40px;
- }
- .twofa-module.active {
- border-color: #337ab7;
- }
- /**
- * -------------------------
- * @section Popups
- * -------------------------
- */
- #popup-backdrop {
- background-color: #2E363F;
- padding: 15px;
- height: 100%;
- }
- .popup-header-padding {
- margin-top: 5px;
- margin-bottom: 5px;
- }
- /**
- * -------------------------
- * @section Uncategorized
- * -------------------------
- */
- .btn.btn-action {
- background-color: #72CA06;
- border-color: #498302;
- }
- /**
- * -------------------------
- * @section Knowledgebase
- * -------------------------
- */
- .kb-category {
- margin: 0 0 10px 0;
- }
- .kb-category a {
- display: block;
- margin: 0 0 2px 0;
- font-weight: bold;
- text-decoration: none;
- }
- .kb-category a small {
- color: #888;
- }
- .kbarticles {
- padding: 0 0 25px 0;
- font-size: 0.8em;
- }
- .kbarticles a {
- font-size: 1.2em;
- font-weight: 700;
- }
- .kbarticles a .glyphicon {
- color: #8ce;
- }
- .kbcategories a.admin-inline-edit,
- .kbarticles a.admin-inline-edit {
- font-size: 0.92em;
- }
- h3.kb-alsoread {
- padding: 8px 15px;
- background-color: #eee;
- border-radius: 6px;
- font-size: 0.9em;
- }
- .kb-article-title {
- margin: 0 0 22px 0;
- font-size: 1.6em;
- }
- .kb-article-title h2 {
- margin: 0;
- }
- .kb-article-title .btn-print {
- float: right;
- font-size: 1em;
- }
- .kb-article-content {
- margin: 0 0 30px 0;
- font-size: 1.2em;
- line-height: 1.2em;
- font-weight: 200;
- }
- .kb-rate-article {
- margin: 20px 0;
- padding: 15px 20px;
- background-color: #eff7ff;
- font-size: 1.4em;
- line-height: 38px;
- font-weight: 200;
- color: #4d7cab;
- }
- .kb-rate-article .btn-lg {
- padding: 0 16px;
- }
- .kb-article-details {
- color: #999;
- list-style: none;
- margin: 35px 5px;
- padding: 0;
- }
- .kb-search .form-control {
- box-shadow: none;
- border-radius: 3px;
- }
- .kb-search > .input-group-btn > .btn {
- border-radius: 0 3px 3px 0;
- }
- /**
- * -------------------------
- * @section Domain Checker Responsive
- * -------------------------
- */
- #stepResults {
- font-size: 20px;
- }
- #stepResults .label {
- font-size: 20px;
- }
- @media (max-width: 992px) {
- #stepResults {
- font-size: 14px;
- }
- #stepResults .label {
- font-size: 14px;
- }
- div.domainresults table tr td {
- padding: 5px 5px;
- }
- }
- /**
- * -------------------------
- * Printing
- * -------------------------
- */
- @media print {
- .sidebar,
- #main-menu,
- #top-nav,
- .header-lined {
- display: none;
- }
- a[href]:after {
- content:"" !important;
- }
- }
- /**
- * -------------------------
- * Badges Spacing
- * -------------------------
- */
- h3.with-badge::after {
- content: '.';
- color: #fff;
- }
- h3.with-badge span, h3.with-badge i {
- float: left;
- padding-right: 8px;
- }
- h3.with-badge .badge {
- line-height: initial;
- margin-top: 3px;
- }
- @media (min-width: 992px) {
- h3.with-badge .badge {
- padding: 3px 7px 3px 8px;
- }
- .sidebar .list-group-item .badge {
- margin-top: -2px;
- padding: 3px 7px 3px 8px;
- line-height: initial;
- min-width: 36px;
- }
- }
- /**
- * -------------------------
- * Admin Masquerade Notice
- * -------------------------
- */
- .admin-masquerade-notice {
- margin: 25px 0 0 auto;
- padding: 4px 10px;
- max-width: 240px;
- font-family: Tahoma;
- font-size: 0.7em;
- text-align: right;
- }
- .admin-masquerade-notice a {
- text-decoration: underline;
- }
- a.admin-inline-edit {
- margin-left: 6px;
- font-weight: 400;
- color: #888;
- }
- a.admin-inline-edit:hover {
- color: #444;
- text-decoration: none;
- }
- /**
- * -------------------------
- * Language Chooser
- * -------------------------
- */
- /**
- * -------------------------
- * Login or Register Popover
- * -------------------------
- */
- /**
- * -------------------------
- * Mass Pay
- * -------------------------
- */
- tr.masspay-invoice-detail td {
- font-size: 0.8em;
- }
- tr.masspay-total td {
- background-color: #efefef;
- font-weight: bold;
- }
- /**
- * -------------------------
- * Error Page
- * -------------------------
- */
- .error-container {
- text-align: center;
- }
- .error-container h1 {
- margin-top: 40px;
- }
- .error-container .buttons {
- margin: 25px 0;
- }
- .error-container .buttons .btn {
- margin: 5px;
- }
- /**
- * -------------------------
- * Collapsable Panels
- * -------------------------
- */
- .panel-collapsable > .panel-heading {
- cursor: pointer;
- }
- .panel-collapsable > .panel-body-collapsed {
- display: none;
- }
- /**
- * -------------------------
- * Licensing Addon
- * -------------------------
- */
- .licensing-addon-latest-download h3 {
- margin-top: 0;
- }
- /**
- * -------------------------
- * Domain Checker Captchas
- * -------------------------
- */
- #google-recaptcha-domainchecker {
- width: 304px;
- height: 78px;
- margin-top: 15px;
- margin-bottom: 15px;
- }
- #default-captcha-domainchecker {
- margin-top: 15px;
- margin-bottom: -63px;
- }
- #default-captcha-domainchecker #inputCaptcha {
- width: 100px;
- border-radius: 4px;
- }
- .domainchecker-homepage-captcha #google-recaptcha-domainchecker {
- margin-bottom: -46px;
- }
- @media (max-width: 991px) {
- #google-recaptcha-domainchecker {
- padding-left: 2.5%;
- }
- #default-captcha-domainchecker {
- margin-bottom: -25px;
- }
- }
- @media (max-width: 736px) {
- #google-recaptcha-domainchecker {
- transform: scale(0.935);
- transform-origin: 0 0;
- -webkit-transform: scale(0.935);
- -webkit-transform-origin: 0 0;
- }
- }
- @media (max-width: 384px) {
- #google-recaptcha-domainchecker {
- transform: scale(0.96);
- transform-origin: 0 0;
- }
- }
- @media (max-width: 360px) {
- #google-recaptcha-domainchecker {
- transform: scale(0.89);
- transform-origin: 0 0;
- }
- }
- @media (max-width: 320px) {
- #google-recaptcha-domainchecker {
- padding-left: 13.5%;
- transform: scale(0.83);
- transform-origin: 0 0;
- -webkit-transform: scale(0.785);
- -webkit-transform-origin: 0 0;
- }
- }
- /**
- * -------------------------
- * Email Verification
- * -------------------------
- */
- .verification-banner {
- margin: 0;
- padding: 10px;
- font-weight: 300;
- background-color: @brand-danger;
- border-bottom: 1px solid @brand-danger;
- color: @white;
-
- .close {
- text-shadow: none;
- color: @white;
- }
-
- .text {
- display: block;
- }
-
- .btn {
- margin: 3px 0 7px;
- padding: 3px 10px;
- font-style: normal;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- .verification-banner .btn.close {
- margin-left: 10px;
- background-color: transparent;
- font-size: 22px;
- opacity: 1;
- }
- .verification-banner .fas,
- .verification-banner .fal,
- .verification-banner .far {
- float: left;
- margin-right: 10px;
- margin-top: 10px;
- }
- @media (min-width: 768px) {
- .verification-banner .text {
- padding-top: 9px;
- padding-bottom: 0;
- }
- .verification-banner .btn {
- margin: 0;
- padding: 9px 25px;
- }
- .verification-banner .button {
- float: right;
- }
- .verification-banner .fas,
- .verification-banner .fal,
- .verification-banner .far {
- font-size: 36px;
- }
- }
- .verification-banner.email-verification .btn.btn-action,
- .verification-banner.email-verification .btn.btn-action:active,
- .verification-banner.email-verification .btn.btn-action:hover,
- .verification-banner.email-verification .btn.btn-action:focus,
- .verification-banner.email-verification .btn.btn-action[disabled]:hover {
- background-color: #50525f!important;
- border-color: #50525f!important;
- color: #fff!important;
- }
- .verification-banner.user-validation i {
- margin-left: 0.11em;
- }
- /**
- * -------------------------
- * Markdown Editor
- * -------------------------
- */
- .md-editor {
- border: 1px solid #ddd;
- border-radius: 3px;
- }
- .md-editor > .btn-toolbar {
- background-color: #fff !important;
- }
- .md-editor > .btn-toolbar .hidden {
- display: none !important;
- }
- .md-editor > textarea.markdown-editor,
- .md-editor > .md-preview {
- padding: 15px !important;
- border-top: 1px solid #ddd !important;
- border-bottom: 1px solid #ddd !important;
- background-color: #fff !important;
- }
- div.md-editor.active {
- display: block;
- border: 1px solid #ddd;
- outline: 0;
- -webkit-box-shadow: none;
- box-shadow: none;
- }
- .markdown-editor-status {
- padding: 2px 10px;
- font-size: 9pt;
- color: #959694;
- text-align: right;
- }
- .small-font {
- font-size: 0.9em;
- }
- /**
- * -------------------------
- * Markdown Content Formatting
- * -------------------------
- */
- .md-preview h1, .markdown-content h1 {
- font-size: 1.6em;
- color: #333;
- }
- .md-preview h2, .markdown-content h2 {
- font-size: 1.4em;
- color: #333;
- }
- .md-preview h3, .markdown-content h3 {
- font-size: 1.2em;
- color: #333;
- }
- .md-preview h4, .markdown-content h4 {
- font-size: 1.1em;
- color: #333;
- }
- .md-preview pre, .markdown-content pre {
- padding: 15px;
- background-color: #444;
- color: #f8f8f8;
- border: 0;
- }
- .md-preview pre code, .markdown-content pre code {
- white-space: pre;
- word-break: normal;
- word-wrap: normal;
- }
- .md-preview blockquote, .markdown-content blockquote {
- font-size: 1em;
- padding: 10px 20px;
- margin: 0 0 20px;
- border-left: 5px solid #eeeeee;
- }
- .md-preview table, .markdown-content table {
- margin: 10px 0;
- background-color: #fff;
- border: 1px solid #ddd;
- }
- .md-preview table > thead > tr > th, .markdown-content table > thead > tr > th {
- padding: 4px 10px;
- background-color: #f8f8f8;
- border: 1px solid #ddd;
- font-weight: bold;
- text-align: center;
- }
- .md-preview table > tbody > tr > td, .markdown-content table > tbody > tr > td {
- padding: 3px 8px;
- border: 1px solid #ddd;
- }
- /**
- * -------------------------
- * Sidebar Panels
- * -------------------------
- */
- .panel-sidebar {
- border-color: #eee;
- font-size: 15px;
- }
- .panel-sidebar>.panel-heading {
- color: #333;
- background-color: #f5f5f5;
- border-bottom: 0;
- }
- .panel-heading i.far,
- .panel-heading i.fas,
- .panel-heading i.fal,
- .panel-heading i.fab {
- font-size:0.85em;
- }
- .panel-sidebar .panel-minimise {
- margin-top: 4px;
- color: #ddd;
- cursor: pointer;
- transition: transform 200ms ease;
- }
- .panel-sidebar .panel-minimise.minimised {
- transform: rotate(180deg);
- margin-top: 7px;
- }
- .panel-sidebar>.panel-footer {
- color: #333;
- background-color: #f5f5f5;
- border-top: 0;
- }
- .panel-sidebar .list-group-item {
- line-height: 24px;
- }
- .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle):not(.no-transform) {
- float: right;
- line-height: 24px;
- font-size: 16px;
- color: #ccc;
- }
- .panel-sidebar .list-group-item.disabled,
- .panel-sidebar .list-group-item.disabled:focus,
- .panel-sidebar .list-group-item.disabled:hover {
- background-color: transparent;
- opacity: 0.5;
- }
- .panel-sidebar a.list-group-item:hover i.fas,
- .panel-sidebar a.list-group-item:hover i.far {
- color: #666 !important;
- }
- .panel-sidebar a.list-group-item.active,
- .panel-sidebar a.list-group-item.active:focus,
- .panel-sidebar a.list-group-item.active:hover {
- background-color: #465054;
- border-color: #465054;
- }
- .panel-sidebar a.list-group-item.active i,
- .panel-sidebar a.list-group-item.active:focus i,
- .panel-sidebar a.list-group-item.active:hover i {
- color: #fff;
- }
- .panel-sidebar.view-filter-btns .list-group-item.active,
- .panel-sidebar.view-filter-btns .list-group-item.active:focus,
- .panel-sidebar.view-filter-btns .list-group-item.active:hover {
- background-color: #eee;
- border-color: #eee;
- color: #555;
- }
- .panel-sidebar .recent-ticket {
- line-height: 20px;
- }
- /**
- * -------------------------
- * Store
- * -------------------------
- */
- /**
- * -------------------------
- * Promotional Content Formatting
- * -------------------------
- */
- .promo-banner {
- overflow: auto;
- }
- .promo-banner .icon {
- float: left;
- margin: 0 20px 0 0;
- }
- .promo-banner .icon-left {
- text-align: center;
- width: 155px;
- float: left;
- }
- @media (max-width: 767.98px) {
- .promo-banner .icon-left {
- width: 90px;
- float: none;
- }
- }
- .promo-banner .icon-left img {
- max-width: 100%;
- max-height: 100%;
- }
- @media (max-width: 767.98px) {
- .promo-banner form {
- text-align: center;
- }
- }
- .promo-banner .icon {
- float: left;
- margin: 0 20px 0 0;
- }
- .promo-banner h3 {
- margin: 0;
- padding: 0;
- font-size: 24px;
- font-weight: 300;
- }
- .promo-banner h4 {
- font-size: 18px;
- font-weight: 300;
- }
- .promo-banner p {
- margin: 5px 0;
- }
- .promo-banner ul {
- margin: 0;
- padding: 0;
- list-style: none;
- font-size: 0.92em;
- }
- .promo-banner ul li {
- margin-bottom: 4px;
- }
- @media (min-width: 1200px) {
- .promo-banner ul li {
- width: 50%;
- }
- .promo-banner ul li.left {
- float: left;
- }
- .promo-banner ul li.right {
- float: right;
- }
- }
- .promo-banner .fa:not(.fa-spinner) {
- font-size: 1.2em;
- color: #91c590;
- margin-left: 20px;
- margin-right: 10px;
- }
- .promo-banner a {
- color: #ff6600;
- text-decoration: underline;
- }
- .promo-banner .btn {
- margin: 6px 0 0 0;
- padding: 8px 30px;
- background-color: #ff6600;
- border: 0;
- color: #fff;
- }
- @media (max-width: 650px) {
- .promo-banner .icon {
- width: 100%;
- margin-bottom: 15px;
- }
- }
- .promo-banner-rounded {
- border-radius: 4px;
- }
- .promo-banner-slim {
- padding: 10px;
- }
- .promo-banner-slim .icon-left {
- width: 85px;
- }
- .promo-banner-slim .content {
- margin-left: 110px;
- }
- .promo-banner-slim h3 {
- font-size: 18px;
- }
- .promo-banner-slim h4 {
- font-size: 14px;
- }
- .promo-banner-slim .btn {
- margin: 0 20px 0 0;
- padding: 6px 20px;
- }
- .promo-banner.symantec {
- border-top: 3px solid #4da24c;
- }
- .promo-banner.symantec .btn {
- background-color: #4da24c;
- }
- .promo-banner.weebly {
- border-top: 3px solid #2990ea;
- }
- .promo-banner.weebly .btn {
- background-color: #2990ea;
- }
- .promo-banner.spamexperts {
- border-top: 3px solid #589ed7;
- }
- .promo-banner.spamexperts .btn {
- background-color: #589ed7;
- }
- .promo-banner-slim.weebly .icon-left {
- width: 160px;
- }
- .promo-banner-slim.weebly .content {
- margin-left: 185px;
- }
- .promo-banner.sitelock {
- border-top: 3px solid #f2952d;
- }
- .promo-banner.sitelock .btn {
- background-color: #f2952d;
- }
- .promo-banner.codeguard {
- border-top: 3px solid #a9cc5f;
- }
- .promo-banner.codeguard a {
- color: #a9cc5f;
- }
- .promo-banner.codeguard .btn {
- background-color: #a9cc5f;
- }
- .promo-banner.sitelockvpn {
- border-top: 3px solid #555;
- }
- .promo-banner.sitelockvpn .btn {
- background-color: #555;
- }
- .promo-banner.nordvpn {
- border-top: 3px solid #4687FF;
- }
- .promo-banner.nordvpn .btn {
- background-color: #4687FF;
- }
- .promo-banner.marketgoo {
- border-top: 3px solid #3090e0;
- }
- .promo-banner.marketgoo .btn {
- background-color: #3090e0;
- }
- .promo-banner.ox {
- border-top: 3px solid #666;
- }
- .promo-banner.ox a {
- color: #666;
- }
- .promo-banner.ox .btn {
- background-color: #666;
- }
- .promo-banner.sitebuilder {
- border-top: 3px solid #ff3377;
- }
- .promo-banner.sitebuilder a {
- color: #ff3377;
- }
- .promo-banner.sitebuilder .btn {
- background-color: #ff3377;
- }
- .promo-banner.xovinow {
- border-top: 3px solid #10069F;
- }
- .promo-banner.xovinow a {
- color: #10069F;
- }
- .promo-banner.xovinow .btn {
- background-color: #10069F;
- }
- .promo-banner.threesixtymonitoring {
- border-top: 3px solid #ce3b56;
- }
- .promo-banner.threesixtymonitoring .btn {
- background-color: #ce3b56;
- }
- .promo-banner.threesixtymonitoring a {
- color: #ce3b56;
- }
- .mc-panel-promo {
- font-size: 0.95em;
- }
- .mc-panel-promo img {
- display: block;
- margin: 0 auto 6px;
- max-width: 90%;
- max-height: 87px;
- }
- .promotions-slider-control .carousel-control-prev-icon {
- 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");
- }
- .promotions-slider-control .carousel-control-next-icon {
- 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");
- }
- /**
- * -------------------------
- * MarketConnect Service SSO
- * -------------------------
- */
- /**
- * -------------------------
- * MarketConnect Service SSO
- * -------------------------
- */
-
- .panel-mc-sso {
- padding: 0 10px 10px 10px;
- }
- .panel-mc-sso img {
- max-width: 100%;
- max-height: 120px;
- }
- .panel-mc-sso .row {
- margin-left: -5px;
- margin-right: -5px;
- }
- .panel-mc-sso .col-sm-6 {
- padding-left: 5px;
- padding-right: 5px;
- }
- .panel-mc-sso .form-control,
- .panel-mc-sso .btn,
- .panel-mc-sso small {
- margin-top: 5px;
- }
- .panel-mc-sso small {
- display: block;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] {
- border-top: solid 3px #ce3b56;
- }
- .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 {
- max-height: initial;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-metrics-row > div:not(:last-child) {
- border-right: 1px solid #ccc;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-metric {
- margin-top: 20px;
- font-size: 40px;
- line-height: 1;
- color: #902a6d;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-title {
- font-weight: bold;
- color: #888;
- text-transform: uppercase;
- font-size: 12px;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight {
- margin-top: 4px;
- height: 2px;
- border-radius: 2px;
- background-color: #902a6d;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-servers,
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-monitors,
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-alerts {
- margin-top: 4px;
- height: 2px;
- border-radius: 2px;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-servers {
- background-color: #902a6d;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-monitors {
- background-color: #af3362;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .threesixtymonitoring-highlight-alerts {
- background-color: #ce3b56;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] form,
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] small {
- text-align: center;
- }
- .client-home-cards div[menuitemname=ThreesixtymonitoringLogin] .btn {
- width: 100%;
- }
- /**
- * -------------------------
- * Social buttons
- * -------------------------
- */
- .social-signin-btns {
- text-align: center;
- }
- .social-signin-btns .btn {
- margin-bottom: 5px;
- }
- .btn-social {
- position: relative;
- text-align: left;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- padding: 0.375rem 0.75rem;
- }
- .btn-social i.fas,
- .btn-social i.far {
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- padding-right: 2px;
- width: 32px;
- line-height: 34px;
- font-size: 1.6em;
- text-align: center;
- border-right: 1px solid rgba(0, 0, 0, 0.2);
- }
- .btn-facebook {
- color: #fff;
- background-color: #4267b2;
- border-color: rgba(0, 0, 0, 0.2)
- }
- .btn-facebook:hover, .btn-facebook:focus, .btn-facebook:active, .btn-facebook.active, .open .dropdown-toggle.btn-facebook {
- color: #fff;
- background-color: #30487b;
- border-color: rgba(0, 0, 0, 0.2)
- }
- .btn-facebook:active, .btn-facebook.active, .open .dropdown-toggle.btn-facebook {
- background-image: none
- }
- .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 {
- background-color: #4267b2;
- border-color: rgba(0, 0, 0, 0.2)
- }
- .btn-twitter {
- color: #fff;
- background-color: #2ba9e1;
- border-color: rgba(0, 0, 0, 0.2)
- }
- .btn-twitter:hover, .btn-twitter:focus, .btn-twitter:active, .btn-twitter.active, .open .dropdown-toggle.btn-twitter {
- color: #fff;
- background-color: #1c92c7;
- border-color: rgba(0, 0, 0, 0.2)
- }
- .btn-twitter:active, .btn-twitter.active, .open .dropdown-toggle.btn-twitter {
- background-image: none
- }
- .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 {
- background-color: #2ba9e1;
- border-color: rgba(0, 0, 0, 0.2)
- }
- .providerPreLinking {
- min-height: 52px;
- }
- .providerLinkingFeedback {
- display: none;
- }
- /**
- * -------------------------
- * Registration page
- * -------------------------
- */
- #registration {
- margin: 0;
- padding: 0 0 40px 0;
- }
- #registration .field-container {
- margin: 0 0 30px 0;
- }
- #registration label {
- font-weight: normal;
- }
- #registration .info-text-sm {
- font-size: 0.85em;
- text-align: center;
- }
- .marketing-email-optin {
- margin: 0 0 20px 0;
- padding: 10px 20px 20px;
- background-color: #f8f8f8;
- border-radius: 3px;
- }
- @media (max-width: 767px) {
- .btn-xs-block {
- display: block;
- width: 100%;
- }
- }
- /*
- * Section Dividers
- */
- #registration .sub-heading {
- height: 0;
- border-top: 1px solid #DDD;
- text-align: center;
- margin-top: 20px;
- margin-bottom: 30px;
- }
- #registration .sub-heading span {
- display: inline-block;
- position: relative;
- padding: 0 17px;
- top: -11px;
- font-size: 16px;
- color: #058;
- background-color: #fff;
- }
- /**
- * Form fields
- */
- #registration .prepend-icon {
- top: 0;
- left: 0;
- display: inline-block;
- vertical-align: top;
- position: relative;
- width: 100%;
- font-weight: normal;
- }
- #registration .field,
- #registration .form-control {
- position: relative;
- vertical-align: top;
- display: -moz-inline-stack;
- display: inline-block;
- outline: none;
- height: 36px;
- width: 100%;
- }
- #registration .input-group-lg > .form-control {
- height: 46px;
- padding: 10px 16px;
- font-size: 18px;
- line-height: 1.3333333;
- border-radius: 6px 0 0 6px;
- }
- #registration .form-control-qty {
- width: 70px;
- text-align: center;
- }
- #registration .form-control-static-inline {
- display: inline-block;
- }
- #registration textarea.field {
- height: auto;
- }
- #registration .prepend-icon .field {
- -webkit-appearance: none;
- padding-left: 36px;
- }
- #registration .prepend-icon .field-icon i {
- position: relative;
- font-size: 14px;
- }
- #registration .prepend-icon .field-icon {
- top: 0;
- z-index: 4;
- width: 42px;
- height: 36px;
- color: inherit;
- line-height: 36px;
- position: absolute;
- text-align: center;
- -webkit-transition: all 0.5s ease-out;
- -moz-transition: all 0.5s ease-out;
- -ms-transition: all 0.5s ease-out;
- -o-transition: all 0.5s ease-out;
- transition: all 0.5s ease-out;
- pointer-events: none;
- }
- #registration .field-icon i {
- color: #bbb;
- }
- #registration .field-help-text {
- display: block;
- margin-top: 5px;
- margin-bottom: 10px;
- color: #888;
- font-size: 12px;
- }
- /**
- * -------------------------
- * Password Strength Meter
- * -------------------------
- */
- .password-strength-meter .progress {
- margin-bottom: 5px;
- }
- .password-strength-meter p {
- margin-bottom: 15px;
- }
- /**
- * -------------------------
- * Service Upgrade
- * -------------------------
- */
- .upgrade .product-to-be-upgraded {
- margin: 20px 0;
- padding: 15px;
- background-color: #f8f8f8;
- }
- .upgrade .product-to-be-upgraded h4,
- .upgrade .product-to-be-upgraded h5 {
- margin: 0;
- }
- .upgrade .products {
- margin-left: -5px;
- margin-right: -5px;
- }
- .upgrade .products .column {
- padding-left: 5px;
- padding-right: 5px;
- }
- .upgrade .products .product {
- margin: 20px 0;
- padding: 0;
- background-color: #fff;
- }
- .upgrade .products .product .current,
- .upgrade .products .product .recommended {
- padding: 5px;
- background-color: #ffbc00;
- color: #f5f5f5;
- font-weight: bold;
- text-align: center;
- }
- .upgrade .products .product .recommended {
- background-color: #25ac2f;
- }
- .upgrade .products .product ul {
- border-left: 1px solid #eee;
- border-right: 1px solid #eee;
- }
- .upgrade .products .product .footer {
- border: 1px solid #eee;
- border-top: 0;
- }
- .upgrade .products .product .header {
- margin: 0;
- padding: 20px;
- background-color: #2b5580;
- color: #fff;
- min-height: 150px;
- }
- .upgrade .products .product .header p {
- font-size: 1.1em;
- font-weight: 300;
- }
- .upgrade .products .product ul {
- margin: 0;
- padding: 20px 25px;
- list-style: none;
- }
- .upgrade .products .product ul li {
- line-height: 25px;
- font-size: 0.9em;
- text-align: right;
- color: #aaa;
- border-bottom: 1px solid #eee;
- }
- .upgrade .products .product ul li:last-child {
- border: 0;
- }
- .upgrade .products .product ul li span {
- float: left;
- color: #444;
- }
- .upgrade .products .fas,
- .upgrade .products .far {
- font-size: 1.3em;
- }
- .upgrade .products .fa-check {
- color: #23ad2e;
- }
- .upgrade .products .product .footer {
- margin: 0;
- padding: 20px;
- }
- .upgrade .products .product .footer select {
- margin-bottom: 10px;
- }
- .upgrade .products .product .btn {
- background-color: #2b5580;
- color: #fff;
- }
- /**
- * Helper Alerts
- */
- .alert .fas.pull-left {
- margin: -3px 0 0 -3px;
- }
- .alert .alert-text {
- margin-left: 56px;
- }
- .panel-sidebar .alert {
- padding: 10px 15px;
- margin-bottom: 5px;
- }
- /**
- * iCheck controls
- */
- .checkbox-inline.icheck-label, .radio-inline.icheck-label {
- padding-left: 0;
- margin-left: 30px;
- margin-right: 20px;
- }
- .icheck-label .iradio_square-blue {
- margin-right: 5px;
- margin-left: -30px;
- margin-top: -2px;
- }
- /**
- * JsonForm
- */
- form[data-role="json-form"] .has-error input.form-control,
- form[data-role="json-form"] .has-error textarea.form-control,
- form[data-role="json-form"] .has-error select.form-control {
- background-color: #fff0f0;
- transition: 0.2s;
- }
- form[data-role="json-form"] .has-error .tooltip-inner {
- background-color: #9d2a0b;
- }
- form[data-role="json-form"] .has-error .tooltip.top .tooltip-arrow {
- border-top-color: #9d2a0b;
- }
- /**
- * Credit Card Input
- */
- .cc-number-field {
- background-image: url(../../../../../assets/img/payment/unknown.png);
- background-repeat: no-repeat;
- background-position: right 10px center;
- }
- .cc-number-field.visa {
- background-image: url(../../../../../assets/img/payment/visa.png);
- }
- .cc-number-field.mastercard {
- background-image: url(../../../../../assets/img/payment/mastercard.png);
- }
- .cc-number-field.amex {
- background-image: url(../../../../../assets/img/payment/amex.png);
- }
- .cc-number-field.dinersclub {
- background-image: url(../../../../../assets/img/payment/dinersclub.png);
- }
- .cc-number-field.discover {
- background-image: url(../../../../../assets/img/payment/discover.png);
- }
- .cc-number-field.unionpay {
- background-image: url(../../../../../assets/img/payment/unionpay.png);
- }
- .cc-number-field.jcb {
- background-image: url(../../../../../assets/img/payment/jcb.png);
- }
- .cc-number-field.maestro {
- background-image: url(../../../../../assets/img/payment/maestro.png);
- }
- .cc-number-field.forbrugsforeningen {
- background-image: url(../../../../../assets/img/payment/forbrugsforeningen.png);
- }
- .cc-number-field.dankort {
- background-image: url(../../../../../assets/img/payment/dankort.png);
- }
- /**
- * Usage Billing
- */
- .modal-metric-pricing .modal-header,
- .modal-metric-pricing .modal-body,
- .modal-metric-pricing .modal-footer {
- text-align: center !important;
- border: 0;
- }
- .modal-metric-pricing .modal-footer {
- padding-bottom: 45px;
- }
- /**
- * Select Account
- */
- .select-account {
- margin: 20px auto;
- padding: 0;
- }
- .select-account a {
- display: block;
- margin: 0;
- text-decoration: none;
- }
- .select-account a.disabled {
- opacity: 0.5;
- }
- .continue-container {
- margin: 40px auto;
- padding: 20px;
- background-color: #f6f6f6;
- border: 1px solid #eee;
- max-width: 500px;
- }
- /**
- * Invites
- */
- .invite-box {
- margin: 20px 0;
- padding: 20px;
- background-color:#f6f6f6;
- border:1px solid #eee;
- }
- /**
- * Variables declared here can be overridden by consuming applications, with
- * the help of the `!default` flag.
- *
- * @example
- * // overriding $hoverColor
- * $hoverColor: rgba(red, 0.05);
- *
- * // overriding image path
- * $flagsImagePath: "images/";
- *
- * // import the scss file after the overrides
- * @import "bower_component/intl-tel-input/src/css/intlTelInput";
- */
- .intl-tel-input {
- position: relative;
- display: inline-block; }
- .intl-tel-input * {
- box-sizing: border-box;
- -moz-box-sizing: border-box; }
- .intl-tel-input .hide {
- display: none; }
- .intl-tel-input .v-hide {
- visibility: hidden; }
- .intl-tel-input input, .intl-tel-input input[type=text], .intl-tel-input input[type=tel] {
- position: relative;
- z-index: 0;
- margin-top: 0 !important;
- margin-bottom: 0 !important;
- padding-right: 36px;
- margin-right: 0; }
- .intl-tel-input .flag-container {
- position: absolute;
- top: 0;
- bottom: 0;
- right: 0;
- padding: 1px; }
- .intl-tel-input .selected-flag {
- z-index: 1;
- position: relative;
- width: 36px;
- height: 100%;
- padding: 0 0 0 8px; }
- .intl-tel-input .selected-flag .iti-flag {
- position: absolute;
- top: 0;
- bottom: 0;
- margin: auto; }
- .intl-tel-input .selected-flag .iti-arrow {
- position: absolute;
- top: 50%;
- margin-top: -2px;
- right: 6px;
- width: 0;
- height: 0;
- border-left: 3px solid transparent;
- border-right: 3px solid transparent;
- border-top: 4px solid #555; }
- .intl-tel-input .selected-flag .iti-arrow.up {
- border-top: none;
- border-bottom: 4px solid #555; }
- .intl-tel-input .country-list {
- position: absolute;
- z-index: 2;
- list-style: none;
- text-align: left;
- padding: 0;
- margin: 0 0 0 -1px;
- box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
- background-color: white;
- border: 1px solid @default-border-color;
- white-space: nowrap;
- max-height: 200px;
- overflow-y: scroll; }
- .intl-tel-input .country-list.dropup {
- bottom: 100%;
- margin-bottom: -1px; }
- .intl-tel-input .country-list .flag-box {
- display: inline-block;
- width: 20px; }
- @media (max-width: 500px) {
- .intl-tel-input .country-list {
- white-space: normal; } }
- .intl-tel-input .country-list .divider {
- padding-bottom: 5px;
- margin-bottom: 5px;
- border-bottom: 1px solid #CCC; }
- .intl-tel-input .country-list .country {
- padding: 5px 10px; }
- .intl-tel-input .country-list .country .dial-code {
- color: #999; }
- .intl-tel-input .country-list .country.highlight {
- background-color: @gray-lighter; }
- .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name, .intl-tel-input .country-list .dial-code {
- vertical-align: middle; }
- .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
- margin-right: 6px; }
- .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] {
- padding-right: 6px;
- padding-left: 52px;
- margin-left: 0; }
- .intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container {
- right: auto;
- left: 0; }
- .intl-tel-input.allow-dropdown .selected-flag, .intl-tel-input.separate-dial-code .selected-flag {
- width: 46px; }
- .intl-tel-input.allow-dropdown .flag-container:hover {
- cursor: pointer; }
- .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
- background-color: rgba(0, 0, 0, 0.05); }
- .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {
- cursor: default; }
- .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {
- background-color: transparent; }
- .intl-tel-input.separate-dial-code .selected-flag {
- background-color: transparent!important; border-right: 1px solid @default-border-color;
- display: table; }
- .intl-tel-input.separate-dial-code .selected-dial-code {
- display: table-cell;
- vertical-align: middle;
- padding-left: 28px; }
- .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] {
- padding-left: 66px; }
- .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
- width: 60px; }
- .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] {
- padding-left: 76px; }
- .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
- width: 70px; }
- .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] {
- padding-left: 74px; }
- .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
- width: 68px; }
- .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] {
- padding-left: 84px; }
- .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
- width: 78px; }
- .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] {
- padding-left: 82px; }
- .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
- width: 76px; }
- .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] {
- padding-left: 92px; }
- .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
- width: 86px; }
- .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] {
- padding-left: 90px; }
- .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
- width: 84px; }
- .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] {
- padding-left: 100px; }
- .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
- width: 94px; }
- .intl-tel-input.iti-container {
- position: absolute;
- top: -1000px;
- left: -1000px;
- z-index: 1060;
- padding: 1px; }
- .intl-tel-input.iti-container:hover {
- cursor: pointer; }
- .iti-mobile .intl-tel-input.iti-container {
- top: 30px;
- bottom: 30px;
- left: 30px;
- right: 30px;
- position: fixed; }
- .iti-mobile .intl-tel-input .country-list {
- max-height: 100%;
- width: 100%; }
- .iti-mobile .intl-tel-input .country-list .country {
- padding: 10px 10px;
- line-height: 1.5em; }
- .iti-flag {
- width: 20px; }
- .iti-flag.be {
- width: 18px; }
- .iti-flag.ch {
- width: 15px; }
- .iti-flag.mc {
- width: 19px; }
- .iti-flag.ne {
- width: 18px; }
- .iti-flag.np {
- width: 13px; }
- .iti-flag.va {
- width: 15px; }
- @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
- .iti-flag {
- background-size: 5630px 15px; } }
- .iti-flag.ac {
- height: 10px;
- background-position: 0px 0px; }
- .iti-flag.ad {
- height: 14px;
- background-position: -22px 0px; }
- .iti-flag.ae {
- height: 10px;
- background-position: -44px 0px; }
- .iti-flag.af {
- height: 14px;
- background-position: -66px 0px; }
- .iti-flag.ag {
- height: 14px;
- background-position: -88px 0px; }
- .iti-flag.ai {
- height: 10px;
- background-position: -110px 0px; }
- .iti-flag.al {
- height: 15px;
- background-position: -132px 0px; }
- .iti-flag.am {
- height: 10px;
- background-position: -154px 0px; }
- .iti-flag.ao {
- height: 14px;
- background-position: -176px 0px; }
- .iti-flag.aq {
- height: 14px;
- background-position: -198px 0px; }
- .iti-flag.ar {
- height: 13px;
- background-position: -220px 0px; }
- .iti-flag.as {
- height: 10px;
- background-position: -242px 0px; }
- .iti-flag.at {
- height: 14px;
- background-position: -264px 0px; }
- .iti-flag.au {
- height: 10px;
- background-position: -286px 0px; }
- .iti-flag.aw {
- height: 14px;
- background-position: -308px 0px; }
- .iti-flag.ax {
- height: 13px;
- background-position: -330px 0px; }
- .iti-flag.az {
- height: 10px;
- background-position: -352px 0px; }
- .iti-flag.ba {
- height: 10px;
- background-position: -374px 0px; }
- .iti-flag.bb {
- height: 14px;
- background-position: -396px 0px; }
- .iti-flag.bd {
- height: 12px;
- background-position: -418px 0px; }
- .iti-flag.be {
- height: 15px;
- background-position: -440px 0px; }
- .iti-flag.bf {
- height: 14px;
- background-position: -460px 0px; }
- .iti-flag.bg {
- height: 12px;
- background-position: -482px 0px; }
- .iti-flag.bh {
- height: 12px;
- background-position: -504px 0px; }
- .iti-flag.bi {
- height: 12px;
- background-position: -526px 0px; }
- .iti-flag.bj {
- height: 14px;
- background-position: -548px 0px; }
- .iti-flag.bl {
- height: 14px;
- background-position: -570px 0px; }
- .iti-flag.bm {
- height: 10px;
- background-position: -592px 0px; }
- .iti-flag.bn {
- height: 10px;
- background-position: -614px 0px; }
- .iti-flag.bo {
- height: 14px;
- background-position: -636px 0px; }
- .iti-flag.bq {
- height: 14px;
- background-position: -658px 0px; }
- .iti-flag.br {
- height: 14px;
- background-position: -680px 0px; }
- .iti-flag.bs {
- height: 10px;
- background-position: -702px 0px; }
- .iti-flag.bt {
- height: 14px;
- background-position: -724px 0px; }
- .iti-flag.bv {
- height: 15px;
- background-position: -746px 0px; }
- .iti-flag.bw {
- height: 14px;
- background-position: -768px 0px; }
- .iti-flag.by {
- height: 10px;
- background-position: -790px 0px; }
- .iti-flag.bz {
- height: 14px;
- background-position: -812px 0px; }
- .iti-flag.ca {
- height: 10px;
- background-position: -834px 0px; }
- .iti-flag.cc {
- height: 10px;
- background-position: -856px 0px; }
- .iti-flag.cd {
- height: 15px;
- background-position: -878px 0px; }
- .iti-flag.cf {
- height: 14px;
- background-position: -900px 0px; }
- .iti-flag.cg {
- height: 14px;
- background-position: -922px 0px; }
- .iti-flag.ch {
- height: 15px;
- background-position: -944px 0px; }
- .iti-flag.ci {
- height: 14px;
- background-position: -961px 0px; }
- .iti-flag.ck {
- height: 10px;
- background-position: -983px 0px; }
- .iti-flag.cl {
- height: 14px;
- background-position: -1005px 0px; }
- .iti-flag.cm {
- height: 14px;
- background-position: -1027px 0px; }
- .iti-flag.cn {
- height: 14px;
- background-position: -1049px 0px; }
- .iti-flag.co {
- height: 14px;
- background-position: -1071px 0px; }
- .iti-flag.cp {
- height: 14px;
- background-position: -1093px 0px; }
- .iti-flag.cr {
- height: 12px;
- background-position: -1115px 0px; }
- .iti-flag.cu {
- height: 10px;
- background-position: -1137px 0px; }
- .iti-flag.cv {
- height: 12px;
- background-position: -1159px 0px; }
- .iti-flag.cw {
- height: 14px;
- background-position: -1181px 0px; }
- .iti-flag.cx {
- height: 10px;
- background-position: -1203px 0px; }
- .iti-flag.cy {
- height: 13px;
- background-position: -1225px 0px; }
- .iti-flag.cz {
- height: 14px;
- background-position: -1247px 0px; }
- .iti-flag.de {
- height: 12px;
- background-position: -1269px 0px; }
- .iti-flag.dg {
- height: 10px;
- background-position: -1291px 0px; }
- .iti-flag.dj {
- height: 14px;
- background-position: -1313px 0px; }
- .iti-flag.dk {
- height: 15px;
- background-position: -1335px 0px; }
- .iti-flag.dm {
- height: 10px;
- background-position: -1357px 0px; }
- .iti-flag.do {
- height: 13px;
- background-position: -1379px 0px; }
- .iti-flag.dz {
- height: 14px;
- background-position: -1401px 0px; }
- .iti-flag.ea {
- height: 14px;
- background-position: -1423px 0px; }
- .iti-flag.ec {
- height: 14px;
- background-position: -1445px 0px; }
- .iti-flag.ee {
- height: 13px;
- background-position: -1467px 0px; }
- .iti-flag.eg {
- height: 14px;
- background-position: -1489px 0px; }
- .iti-flag.eh {
- height: 10px;
- background-position: -1511px 0px; }
- .iti-flag.er {
- height: 10px;
- background-position: -1533px 0px; }
- .iti-flag.es {
- height: 14px;
- background-position: -1555px 0px; }
- .iti-flag.et {
- height: 10px;
- background-position: -1577px 0px; }
- .iti-flag.eu {
- height: 14px;
- background-position: -1599px 0px; }
- .iti-flag.fi {
- height: 12px;
- background-position: -1621px 0px; }
- .iti-flag.fj {
- height: 10px;
- background-position: -1643px 0px; }
- .iti-flag.fk {
- height: 10px;
- background-position: -1665px 0px; }
- .iti-flag.fm {
- height: 11px;
- background-position: -1687px 0px; }
- .iti-flag.fo {
- height: 15px;
- background-position: -1709px 0px; }
- .iti-flag.fr {
- height: 14px;
- background-position: -1731px 0px; }
- .iti-flag.ga {
- height: 15px;
- background-position: -1753px 0px; }
- .iti-flag.gb {
- height: 10px;
- background-position: -1775px 0px; }
- .iti-flag.gd {
- height: 12px;
- background-position: -1797px 0px; }
- .iti-flag.ge {
- height: 14px;
- background-position: -1819px 0px; }
- .iti-flag.gf {
- height: 14px;
- background-position: -1841px 0px; }
- .iti-flag.gg {
- height: 14px;
- background-position: -1863px 0px; }
- .iti-flag.gh {
- height: 14px;
- background-position: -1885px 0px; }
- .iti-flag.gi {
- height: 10px;
- background-position: -1907px 0px; }
- .iti-flag.gl {
- height: 14px;
- background-position: -1929px 0px; }
- .iti-flag.gm {
- height: 14px;
- background-position: -1951px 0px; }
- .iti-flag.gn {
- height: 14px;
- background-position: -1973px 0px; }
- .iti-flag.gp {
- height: 14px;
- background-position: -1995px 0px; }
- .iti-flag.gq {
- height: 14px;
- background-position: -2017px 0px; }
- .iti-flag.gr {
- height: 14px;
- background-position: -2039px 0px; }
- .iti-flag.gs {
- height: 10px;
- background-position: -2061px 0px; }
- .iti-flag.gt {
- height: 13px;
- background-position: -2083px 0px; }
- .iti-flag.gu {
- height: 11px;
- background-position: -2105px 0px; }
- .iti-flag.gw {
- height: 10px;
- background-position: -2127px 0px; }
- .iti-flag.gy {
- height: 12px;
- background-position: -2149px 0px; }
- .iti-flag.hk {
- height: 14px;
- background-position: -2171px 0px; }
- .iti-flag.hm {
- height: 10px;
- background-position: -2193px 0px; }
- .iti-flag.hn {
- height: 10px;
- background-position: -2215px 0px; }
- .iti-flag.hr {
- height: 10px;
- background-position: -2237px 0px; }
- .iti-flag.ht {
- height: 12px;
- background-position: -2259px 0px; }
- .iti-flag.hu {
- height: 10px;
- background-position: -2281px 0px; }
- .iti-flag.ic {
- height: 14px;
- background-position: -2303px 0px; }
- .iti-flag.id {
- height: 14px;
- background-position: -2325px 0px; }
- .iti-flag.ie {
- height: 10px;
- background-position: -2347px 0px; }
- .iti-flag.il {
- height: 15px;
- background-position: -2369px 0px; }
- .iti-flag.im {
- height: 10px;
- background-position: -2391px 0px; }
- .iti-flag.in {
- height: 14px;
- background-position: -2413px 0px; }
- .iti-flag.io {
- height: 10px;
- background-position: -2435px 0px; }
- .iti-flag.iq {
- height: 14px;
- background-position: -2457px 0px; }
- .iti-flag.ir {
- height: 12px;
- background-position: -2479px 0px; }
- .iti-flag.is {
- height: 15px;
- background-position: -2501px 0px; }
- .iti-flag.it {
- height: 14px;
- background-position: -2523px 0px; }
- .iti-flag.je {
- height: 12px;
- background-position: -2545px 0px; }
- .iti-flag.jm {
- height: 10px;
- background-position: -2567px 0px; }
- .iti-flag.jo {
- height: 10px;
- background-position: -2589px 0px; }
- .iti-flag.jp {
- height: 14px;
- background-position: -2611px 0px; }
- .iti-flag.ke {
- height: 14px;
- background-position: -2633px 0px; }
- .iti-flag.kg {
- height: 12px;
- background-position: -2655px 0px; }
- .iti-flag.kh {
- height: 13px;
- background-position: -2677px 0px; }
- .iti-flag.ki {
- height: 10px;
- background-position: -2699px 0px; }
- .iti-flag.km {
- height: 12px;
- background-position: -2721px 0px; }
- .iti-flag.kn {
- height: 14px;
- background-position: -2743px 0px; }
- .iti-flag.kp {
- height: 10px;
- background-position: -2765px 0px; }
- .iti-flag.kr {
- height: 14px;
- background-position: -2787px 0px; }
- .iti-flag.kw {
- height: 10px;
- background-position: -2809px 0px; }
- .iti-flag.ky {
- height: 10px;
- background-position: -2831px 0px; }
- .iti-flag.kz {
- height: 10px;
- background-position: -2853px 0px; }
- .iti-flag.la {
- height: 14px;
- background-position: -2875px 0px; }
- .iti-flag.lb {
- height: 14px;
- background-position: -2897px 0px; }
- .iti-flag.lc {
- height: 10px;
- background-position: -2919px 0px; }
- .iti-flag.li {
- height: 12px;
- background-position: -2941px 0px; }
- .iti-flag.lk {
- height: 10px;
- background-position: -2963px 0px; }
- .iti-flag.lr {
- height: 11px;
- background-position: -2985px 0px; }
- .iti-flag.ls {
- height: 14px;
- background-position: -3007px 0px; }
- .iti-flag.lt {
- height: 12px;
- background-position: -3029px 0px; }
- .iti-flag.lu {
- height: 12px;
- background-position: -3051px 0px; }
- .iti-flag.lv {
- height: 10px;
- background-position: -3073px 0px; }
- .iti-flag.ly {
- height: 10px;
- background-position: -3095px 0px; }
- .iti-flag.ma {
- height: 14px;
- background-position: -3117px 0px; }
- .iti-flag.mc {
- height: 15px;
- background-position: -3139px 0px; }
- .iti-flag.md {
- height: 10px;
- background-position: -3160px 0px; }
- .iti-flag.me {
- height: 10px;
- background-position: -3182px 0px; }
- .iti-flag.mf {
- height: 14px;
- background-position: -3204px 0px; }
- .iti-flag.mg {
- height: 14px;
- background-position: -3226px 0px; }
- .iti-flag.mh {
- height: 11px;
- background-position: -3248px 0px; }
- .iti-flag.mk {
- height: 10px;
- background-position: -3270px 0px; }
- .iti-flag.ml {
- height: 14px;
- background-position: -3292px 0px; }
- .iti-flag.mm {
- height: 14px;
- background-position: -3314px 0px; }
- .iti-flag.mn {
- height: 10px;
- background-position: -3336px 0px; }
- .iti-flag.mo {
- height: 14px;
- background-position: -3358px 0px; }
- .iti-flag.mp {
- height: 10px;
- background-position: -3380px 0px; }
- .iti-flag.mq {
- height: 14px;
- background-position: -3402px 0px; }
- .iti-flag.mr {
- height: 14px;
- background-position: -3424px 0px; }
- .iti-flag.ms {
- height: 10px;
- background-position: -3446px 0px; }
- .iti-flag.mt {
- height: 14px;
- background-position: -3468px 0px; }
- .iti-flag.mu {
- height: 14px;
- background-position: -3490px 0px; }
- .iti-flag.mv {
- height: 14px;
- background-position: -3512px 0px; }
- .iti-flag.mw {
- height: 14px;
- background-position: -3534px 0px; }
- .iti-flag.mx {
- height: 12px;
- background-position: -3556px 0px; }
- .iti-flag.my {
- height: 10px;
- background-position: -3578px 0px; }
- .iti-flag.mz {
- height: 14px;
- background-position: -3600px 0px; }
- .iti-flag.na {
- height: 14px;
- background-position: -3622px 0px; }
- .iti-flag.nc {
- height: 10px;
- background-position: -3644px 0px; }
- .iti-flag.ne {
- height: 15px;
- background-position: -3666px 0px; }
- .iti-flag.nf {
- height: 10px;
- background-position: -3686px 0px; }
- .iti-flag.ng {
- height: 10px;
- background-position: -3708px 0px; }
- .iti-flag.ni {
- height: 12px;
- background-position: -3730px 0px; }
- .iti-flag.nl {
- height: 14px;
- background-position: -3752px 0px; }
- .iti-flag.no {
- height: 15px;
- background-position: -3774px 0px; }
- .iti-flag.np {
- height: 15px;
- background-position: -3796px 0px; }
- .iti-flag.nr {
- height: 10px;
- background-position: -3811px 0px; }
- .iti-flag.nu {
- height: 10px;
- background-position: -3833px 0px; }
- .iti-flag.nz {
- height: 10px;
- background-position: -3855px 0px; }
- .iti-flag.om {
- height: 10px;
- background-position: -3877px 0px; }
- .iti-flag.pa {
- height: 14px;
- background-position: -3899px 0px; }
- .iti-flag.pe {
- height: 14px;
- background-position: -3921px 0px; }
- .iti-flag.pf {
- height: 14px;
- background-position: -3943px 0px; }
- .iti-flag.pg {
- height: 15px;
- background-position: -3965px 0px; }
- .iti-flag.ph {
- height: 10px;
- background-position: -3987px 0px; }
- .iti-flag.pk {
- height: 14px;
- background-position: -4009px 0px; }
- .iti-flag.pl {
- height: 13px;
- background-position: -4031px 0px; }
- .iti-flag.pm {
- height: 14px;
- background-position: -4053px 0px; }
- .iti-flag.pn {
- height: 10px;
- background-position: -4075px 0px; }
- .iti-flag.pr {
- height: 14px;
- background-position: -4097px 0px; }
- .iti-flag.ps {
- height: 10px;
- background-position: -4119px 0px; }
- .iti-flag.pt {
- height: 14px;
- background-position: -4141px 0px; }
- .iti-flag.pw {
- height: 13px;
- background-position: -4163px 0px; }
- .iti-flag.py {
- height: 11px;
- background-position: -4185px 0px; }
- .iti-flag.qa {
- height: 8px;
- background-position: -4207px 0px; }
- .iti-flag.re {
- height: 14px;
- background-position: -4229px 0px; }
- .iti-flag.ro {
- height: 14px;
- background-position: -4251px 0px; }
- .iti-flag.rs {
- height: 14px;
- background-position: -4273px 0px; }
- .iti-flag.ru {
- height: 14px;
- background-position: -4295px 0px; }
- .iti-flag.rw {
- height: 14px;
- background-position: -4317px 0px; }
- .iti-flag.sa {
- height: 14px;
- background-position: -4339px 0px; }
- .iti-flag.sb {
- height: 10px;
- background-position: -4361px 0px; }
- .iti-flag.sc {
- height: 10px;
- background-position: -4383px 0px; }
- .iti-flag.sd {
- height: 10px;
- background-position: -4405px 0px; }
- .iti-flag.se {
- height: 13px;
- background-position: -4427px 0px; }
- .iti-flag.sg {
- height: 14px;
- background-position: -4449px 0px; }
- .iti-flag.sh {
- height: 10px;
- background-position: -4471px 0px; }
- .iti-flag.si {
- height: 10px;
- background-position: -4493px 0px; }
- .iti-flag.sj {
- height: 15px;
- background-position: -4515px 0px; }
- .iti-flag.sk {
- height: 14px;
- background-position: -4537px 0px; }
- .iti-flag.sl {
- height: 14px;
- background-position: -4559px 0px; }
- .iti-flag.sm {
- height: 15px;
- background-position: -4581px 0px; }
- .iti-flag.sn {
- height: 14px;
- background-position: -4603px 0px; }
- .iti-flag.so {
- height: 14px;
- background-position: -4625px 0px; }
- .iti-flag.sr {
- height: 14px;
- background-position: -4647px 0px; }
- .iti-flag.ss {
- height: 10px;
- background-position: -4669px 0px; }
- .iti-flag.st {
- height: 10px;
- background-position: -4691px 0px; }
- .iti-flag.sv {
- height: 12px;
- background-position: -4713px 0px; }
- .iti-flag.sx {
- height: 14px;
- background-position: -4735px 0px; }
- .iti-flag.sy {
- height: 14px;
- background-position: -4757px 0px; }
- .iti-flag.sz {
- height: 14px;
- background-position: -4779px 0px; }
- .iti-flag.ta {
- height: 10px;
- background-position: -4801px 0px; }
- .iti-flag.tc {
- height: 10px;
- background-position: -4823px 0px; }
- .iti-flag.td {
- height: 14px;
- background-position: -4845px 0px; }
- .iti-flag.tf {
- height: 14px;
- background-position: -4867px 0px; }
- .iti-flag.tg {
- height: 13px;
- background-position: -4889px 0px; }
- .iti-flag.th {
- height: 14px;
- background-position: -4911px 0px; }
- .iti-flag.tj {
- height: 10px;
- background-position: -4933px 0px; }
- .iti-flag.tk {
- height: 10px;
- background-position: -4955px 0px; }
- .iti-flag.tl {
- height: 10px;
- background-position: -4977px 0px; }
- .iti-flag.tm {
- height: 14px;
- background-position: -4999px 0px; }
- .iti-flag.tn {
- height: 14px;
- background-position: -5021px 0px; }
- .iti-flag.to {
- height: 10px;
- background-position: -5043px 0px; }
- .iti-flag.tr {
- height: 14px;
- background-position: -5065px 0px; }
- .iti-flag.tt {
- height: 12px;
- background-position: -5087px 0px; }
- .iti-flag.tv {
- height: 10px;
- background-position: -5109px 0px; }
- .iti-flag.tw {
- height: 14px;
- background-position: -5131px 0px; }
- .iti-flag.tz {
- height: 14px;
- background-position: -5153px 0px; }
- .iti-flag.ua {
- height: 14px;
- background-position: -5175px 0px; }
- .iti-flag.ug {
- height: 14px;
- background-position: -5197px 0px; }
- .iti-flag.um {
- height: 11px;
- background-position: -5219px 0px; }
- .iti-flag.us {
- height: 11px;
- background-position: -5241px 0px; }
- .iti-flag.uy {
- height: 14px;
- background-position: -5263px 0px; }
- .iti-flag.uz {
- height: 10px;
- background-position: -5285px 0px; }
- .iti-flag.va {
- height: 15px;
- background-position: -5307px 0px; }
- .iti-flag.vc {
- height: 14px;
- background-position: -5324px 0px; }
- .iti-flag.ve {
- height: 14px;
- background-position: -5346px 0px; }
- .iti-flag.vg {
- height: 10px;
- background-position: -5368px 0px; }
- .iti-flag.vi {
- height: 14px;
- background-position: -5390px 0px; }
- .iti-flag.vn {
- height: 14px;
- background-position: -5412px 0px; }
- .iti-flag.vu {
- height: 12px;
- background-position: -5434px 0px; }
- .iti-flag.wf {
- height: 14px;
- background-position: -5456px 0px; }
- .iti-flag.ws {
- height: 10px;
- background-position: -5478px 0px; }
- .iti-flag.xk {
- height: 15px;
- background-position: -5500px 0px; }
- .iti-flag.ye {
- height: 14px;
- background-position: -5522px 0px; }
- .iti-flag.yt {
- height: 14px;
- background-position: -5544px 0px; }
- .iti-flag.za {
- height: 14px;
- background-position: -5566px 0px; }
- .iti-flag.zm {
- height: 14px;
- background-position: -5588px 0px; }
- .iti-flag.zw {
- height: 10px;
- background-position: -5610px 0px; }
- .iti-flag {
- width: 20px;
- height: 15px;
- box-shadow: 0px 0px 1px 0px #888;
- background-image: url("../../img/flags.png");
- background-repeat: no-repeat;
- background-color: #DBDBDB;
- background-position: 20px 0; }
- @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
- .iti-flag {
- background-image: url("../../img/flags@2x.png"); } }
- .iti-flag.np {
- background-color: transparent; }
-
-
- /**
- * WHMCS Telephone Country Code Dropdown
- *
- * Using https://github.com/jackocnr/intl-tel-input
- *
- * @copyright Copyright (c) WHMCS Limited 2005-2017
- * @license http://www.whmcs.com/license/ WHMCS Eula
- */
- .intl-tel-input {
- width: 100%;
- }
- /* ========================================================================
- * bootstrap-switch - v3.3.2
- * http://www.bootstrap-switch.org
- * ========================================================================
- * Copyright 2012-2013 Mattia Larentis
- *
- * ========================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ========================================================================
- */
- .bootstrap-switch {
- display: inline-block;
- direction: ltr;
- cursor: pointer;
- border-radius: 4px;
- border: 1px solid;
- border-color: @default-border-color;
- position: relative;
- text-align: left;
- overflow: hidden;
- line-height: 8px;
- z-index: 0;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- vertical-align: middle;
- -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- }
- .bootstrap-switch .bootstrap-switch-container {
- display: inline-block;
- top: 0;
- border-radius: 4px;
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
- .bootstrap-switch .bootstrap-switch-handle-on,
- .bootstrap-switch .bootstrap-switch-handle-off,
- .bootstrap-switch .bootstrap-switch-label {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- cursor: pointer;
- display: inline-block !important;
- height: 100%;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 20px;
- }
- .bootstrap-switch .bootstrap-switch-handle-on,
- .bootstrap-switch .bootstrap-switch-handle-off {
- text-align: center;
- z-index: 1;
- }
- .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
- .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
- color: #fff;
- background: #428bca;
- }
- .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
- .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
- color: #fff;
- background: #5bc0de;
- }
- .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
- .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
- color: #fff;
- background: #5cb85c;
- }
- .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
- .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
- background: #f0ad4e;
- color: #fff;
- }
- .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
- .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
- color: #fff;
- background: #d9534f;
- }
- .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
- .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
- color: #000;
- background: #eeeeee;
- }
- .bootstrap-switch .bootstrap-switch-label {
- text-align: center;
- margin-top: -1px;
- margin-bottom: -1px;
- z-index: 100;
- color: #333333;
- background: #ffffff;
- }
- .bootstrap-switch .bootstrap-switch-handle-on {
- border-bottom-left-radius: 3px;
- border-top-left-radius: 3px;
- }
- .bootstrap-switch .bootstrap-switch-handle-off {
- border-bottom-right-radius: 3px;
- border-top-right-radius: 3px;
- }
- .bootstrap-switch input[type='radio'],
- .bootstrap-switch input[type='checkbox'] {
- position: absolute !important;
- top: 0;
- left: 0;
- opacity: 0;
- filter: alpha(opacity=0);
- z-index: -1;
- }
- .bootstrap-switch input[type='radio'].form-control,
- .bootstrap-switch input[type='checkbox'].form-control {
- height: auto;
- }
- .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
- .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
- .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
- padding: 1px 5px;
- font-size: 12px;
- line-height: 1.5;
- }
- .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
- .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
- .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
- padding: 5px 10px;
- font-size: 12px;
- line-height: 1.5;
- }
- .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
- .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
- .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
- padding: 6px 16px;
- font-size: 18px;
- line-height: 1.33;
- }
- .bootstrap-switch.bootstrap-switch-disabled,
- .bootstrap-switch.bootstrap-switch-readonly,
- .bootstrap-switch.bootstrap-switch-indeterminate {
- cursor: default !important;
- }
- .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
- .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
- .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
- .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
- .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
- .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
- .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
- .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
- .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
- opacity: 0.5;
- filter: alpha(opacity=50);
- cursor: default !important;
- }
- .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
- -webkit-transition: margin-left 0.5s;
- transition: margin-left 0.5s;
- }
- .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
- border-bottom-left-radius: 0;
- border-top-left-radius: 0;
- border-bottom-right-radius: 3px;
- border-top-right-radius: 3px;
- }
- .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
- border-bottom-right-radius: 0;
- border-top-right-radius: 0;
- border-bottom-left-radius: 3px;
- border-top-left-radius: 3px;
- }
- .bootstrap-switch.bootstrap-switch-focused {
- border-color: #66afe9;
- outline: 0;
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
- }
- .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
- .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
- border-bottom-right-radius: 3px;
- border-top-right-radius: 3px;
- }
- .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
- .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
- border-bottom-left-radius: 3px;
- border-top-left-radius: 3px;
- }
- .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%}
- div.dtr-modal {
- position: fixed;
- box-sizing: border-box;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- z-index: 100;
- padding: 10em 1em;
- }
- div.dtr-modal div.dtr-modal-display {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- width: 50%;
- height: 50%;
- overflow: auto;
- margin: auto;
- z-index: 102;
- overflow: auto;
- background-color: #f5f5f7;
- border: 1px solid black;
- border-radius: 0.5em;
- box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
- }
- div.dtr-modal div.dtr-modal-content {
- position: relative;
- padding: 1em;
- }
- div.dtr-modal div.dtr-modal-close {
- position: absolute;
- top: 6px;
- right: 6px;
- width: 22px;
- height: 22px;
- border: 1px solid #eaeaea;
- background-color: #f9f9f9;
- text-align: center;
- border-radius: 3px;
- cursor: pointer;
- z-index: 12;
- }
- div.dtr-modal div.dtr-modal-close:hover {
- background-color: #eaeaea;
- }
- div.dtr-modal div.dtr-modal-background {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 101;
- background: rgba(0, 0, 0, 0.6);
- }
- @media screen and (max-width: 767px) {
- div.dtr-modal div.dtr-modal-display {
- width: 95%;
- }
- }
- div.dtr-bs-modal table.table tr:first-child td {
- border-top: none;
- }
- .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}
- /* iCheck plugin Square skin, blue
- ----------------------------------- */
- .icheckbox_square-blue,
- .iradio_square-blue {
- display: inline-block;
- *display: inline;
- vertical-align: middle;
- margin: 0;
- padding: 0;
- width: 22px;
- height: 22px;
- background: url(../../css/blue.png) no-repeat;
- border: none;
- cursor: pointer;
- }
- .icheckbox_square-blue {
- background-position: 0 0;
- }
- .icheckbox_square-blue.hover {
- background-position: -24px 0;
- }
- .icheckbox_square-blue.checked {
- background-position: -48px 0;
- }
- .icheckbox_square-blue.disabled {
- background-position: -72px 0;
- cursor: default;
- }
- .icheckbox_square-blue.checked.disabled {
- background-position: -96px 0;
- }
- .iradio_square-blue {
- background-position: -120px 0;
- }
- .iradio_square-blue.hover {
- background-position: -144px 0;
- }
- .iradio_square-blue.checked {
- background-position: -168px 0;
- }
- .iradio_square-blue.disabled {
- background-position: -192px 0;
- cursor: default;
- }
- .iradio_square-blue.checked.disabled {
- background-position: -216px 0;
- }
- /* HiDPI support */
- @media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
- .icheckbox_square-blue,
- .iradio_square-blue {
- background-image: url(../../css/blue@2x.png);
- -webkit-background-size: 240px 24px;
- background-size: 240px 24px;
- }
- }
- .w-hidden {
- display: none;
- }
- .form-check-inline {
- display: initial;
- }
- @media (max-width: 991.98px) {
- .licensing-verification h3 {
- font-size: 1.4em;
- }
- }
- @media (max-width: 767.98px) {
- .licensing-verification h3 {
- font-size: 1em;
- }
- }
- @media (max-width: 991.98px) {
- .licensing-verification h2 {
- font-size: 1.7em;
- }
- }
- @media (max-width: 767.98px) {
- .licensing-verification h2 {
- font-size: 1.2em;
- }
- }
- .licensing-verification .secondary-input-submit {
- display: none;
- }
- @media (max-width: 767.98px) {
- .licensing-verification .input-group .input-group-append {
- display: none;
- }
- .licensing-verification .input-group input {
- border-radius: 0 6px 6px 0 !important;
- }
- .licensing-verification .secondary-input-submit {
- display: block;
- padding-top: 0.5em;
- }
- }
- .captcha-overlay-badge {
- position: fixed;
- bottom: 20px;
- right: 20px;
- z-index: 9999;
- cursor: pointer;
- }
- .captcha-overlay-badge-hidden {
- display: none;
- }
- .captcha-overlay-badge img {
- width: 60px;
- height: auto;
- }
- .captcha-overlay-popup {
- display: none;
- position: fixed;
- bottom: 80px;
- right: 20px;
- background-color: #fff;
- border: 1px solid #ccc;
- padding: 10px;
- width: 300px;
- z-index: 9998;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
- }
|