custom-whmcs-style.less 60 KB

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