style.default.css 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714
  1. .clearfix:before,
  2. .clearfix:after,
  3. .navbar:before,
  4. .navbar:after,
  5. .navbar-header:before,
  6. .navbar-header:after {
  7. content: " ";
  8. display: table;
  9. }
  10. .clearfix:after,
  11. .navbar:after,
  12. .navbar-header:after {
  13. clear: both;
  14. }
  15. .center-block {
  16. display: block;
  17. margin-left: auto;
  18. margin-right: auto;
  19. }
  20. .pull-right {
  21. float: right !important;
  22. }
  23. .pull-left {
  24. float: left !important;
  25. }
  26. .hide {
  27. display: none !important;
  28. }
  29. .show {
  30. display: block !important;
  31. }
  32. .invisible {
  33. visibility: hidden;
  34. }
  35. .text-hide {
  36. font: 0/0 a;
  37. color: transparent;
  38. text-shadow: none;
  39. background-color: transparent;
  40. border: 0;
  41. }
  42. .hidden {
  43. display: none !important;
  44. visibility: hidden !important;
  45. }
  46. .affix {
  47. position: fixed;
  48. -webkit-transform: translate3d(0, 0, 0);
  49. transform: translate3d(0, 0, 0);
  50. }
  51. /* general styles */
  52. a,
  53. button {
  54. -webkit-transition: all 0.2s ease-out;
  55. -moz-transition: all 0.2s ease-out;
  56. transition: all 0.2s ease-out;
  57. }
  58. a i[class^="fa"],
  59. button i[class^="fa"] {
  60. margin: 0 5px;
  61. }
  62. .clickable {
  63. cursor: pointer !important;
  64. }
  65. .required {
  66. color: #38a7bb;
  67. }
  68. .accent {
  69. color: #38a7bb;
  70. }
  71. .text-uppercase {
  72. text-transform: uppercase;
  73. letter-spacing: 0.08em;
  74. }
  75. @media (max-width: 991px) {
  76. .text-center-sm {
  77. text-align: center;
  78. }
  79. }
  80. p.lead {
  81. margin-bottom: 40px;
  82. }
  83. section,
  84. div.section {
  85. margin-bottom: 40px;
  86. }
  87. .no-mb {
  88. margin-bottom: 0 !important;
  89. }
  90. .mb-small {
  91. margin-bottom: 20px !important;
  92. }
  93. .heading {
  94. margin-bottom: 40px;
  95. }
  96. .heading h1,
  97. .heading h2,
  98. .heading h3,
  99. .heading h4,
  100. .heading h5 {
  101. display: inline-block;
  102. border-bottom: solid 5px #38a7bb;
  103. line-height: 1.1;
  104. margin-bottom: 0;
  105. padding-bottom: 10px;
  106. vertical-align: middle;
  107. text-transform: uppercase;
  108. letter-spacing: 0.06em;
  109. }
  110. .heading h1 i[class^="fa"],
  111. .heading h2 i[class^="fa"],
  112. .heading h3 i[class^="fa"],
  113. .heading h4 i[class^="fa"],
  114. .heading h5 i[class^="fa"] {
  115. display: inline-block;
  116. background: #38a7bb;
  117. width: 30px;
  118. height: 30px;
  119. vertical-align: middle;
  120. text-align: center;
  121. color: #fff;
  122. font-size: 12px;
  123. line-height: 30px;
  124. border-radius: 15px;
  125. }
  126. .icon {
  127. display: inline-block;
  128. width: 80px;
  129. height: 80px;
  130. color: #fff;
  131. line-height: 80px;
  132. border-radius: 40px;
  133. border: solid 1px #fff;
  134. font-size: 20px;
  135. }
  136. .icon.icon-lg {
  137. font-size: 30px;
  138. border-width: 2px;
  139. }
  140. .ul-icons {
  141. padding-left: 10px;
  142. }
  143. .ul-icons li {
  144. list-style-type: none;
  145. line-height: 20px;
  146. margin-bottom: 20px;
  147. }
  148. .ul-icons li i {
  149. width: 20px;
  150. height: 20px;
  151. background: #38a7bb;
  152. color: #fff;
  153. text-align: center;
  154. border-radius: 10px;
  155. line-height: 20px;
  156. margin-right: 10px;
  157. }
  158. ul.list-style-none {
  159. list-style: none;
  160. }
  161. #text-page h1,
  162. #text-page h2,
  163. #text-page h3 {
  164. font-weight: 700;
  165. }
  166. #error-page {
  167. text-align: center;
  168. margin-top: 40px;
  169. margin-bottom: 100px;
  170. }
  171. #error-page h4 {
  172. margin-bottom: 40px;
  173. }
  174. #error-page p.buttons {
  175. margin-top: 40px;
  176. }
  177. .pages-listing .item {
  178. text-align: center;
  179. }
  180. .pages-listing .item h3 {
  181. font-size: 18px;
  182. text-transform: uppercase;
  183. margin-bottom: 20px;
  184. letter-spacing: 0.08em;
  185. }
  186. .pages-listing .item h3 a {
  187. color: #555555;
  188. }
  189. .pages-listing .item .text {
  190. margin-bottom: 20px;
  191. }
  192. .pages-listing .item .text p {
  193. color: #999999;
  194. font-size: 12px;
  195. margin-bottom: 20px;
  196. }
  197. .banner {
  198. margin-bottom: 30px;
  199. text-align: center;
  200. }
  201. .banner img {
  202. margin: 0 auto;
  203. }
  204. .banner a:hover img {
  205. opacity: 0.8;
  206. filter: alpha(opacity=80);
  207. -webkit-transition: all 0.2s ease-out;
  208. -moz-transition: all 0.2s ease-out;
  209. transition: all 0.2s ease-out;
  210. }
  211. .pages {
  212. text-align: center;
  213. }
  214. .pages .loadMore {
  215. text-align: center;
  216. }
  217. .pages .pagination {
  218. text-align: center;
  219. }
  220. .features-buttons button {
  221. margin-bottom: 20px;
  222. }
  223. @media (min-width: 1300px) {
  224. body.boxed {
  225. background: url(https://www.toptal.com/designers/subtlepatterns/patterns/subtle_zebra_3d.png);
  226. }
  227. body.boxed #all {
  228. position: relative;
  229. background: #fff;
  230. width: 1200px;
  231. margin: 0 auto;
  232. overflow: hidden;
  233. -webkit-box-shadow: 0 0 5px #cccccc;
  234. box-shadow: 0 0 5px #cccccc;
  235. }
  236. }
  237. #top {
  238. background: #555555;
  239. color: #eeeeee;
  240. padding: 10px 0;
  241. }
  242. #top p {
  243. margin: 0;
  244. font-size: 12px;
  245. }
  246. #top .social {
  247. float: right;
  248. text-align: right;
  249. }
  250. #top .social a {
  251. color: #999999;
  252. display: inline-block;
  253. width: 24px;
  254. height: 24px;
  255. border-radius: 12px;
  256. line-height: 24px;
  257. font-size: 12px;
  258. text-align: center;
  259. }
  260. #top .social a:hover {
  261. color: #fff;
  262. background: #4fbfa8;
  263. -webkit-transform: scale(1.1);
  264. transform: scale(1.1);
  265. }
  266. #top .social a:hover.facebook {
  267. background-color: #4460ae;
  268. }
  269. #top .social a:hover.gplus {
  270. background-color: #c21f25;
  271. }
  272. #top .social a:hover.twitter {
  273. background-color: #3cf;
  274. }
  275. #top .social a:hover.instagram {
  276. background-color: #cd4378;
  277. }
  278. #top .social a:hover.email {
  279. background-color: #4a7f45;
  280. }
  281. #top .login {
  282. float: right;
  283. }
  284. #top .login a {
  285. font-size: 12px;
  286. color: #eeeeee;
  287. margin-right: 15px;
  288. text-decoration: none;
  289. text-transform: uppercase;
  290. font-weight: 700;
  291. letter-spacing: 0.1em;
  292. }
  293. @media (max-width: 767px) {
  294. #top .login {
  295. float: left;
  296. }
  297. }
  298. #top.light {
  299. background: #fff;
  300. color: #999999;
  301. border-bottom: solid 1px #eeeeee;
  302. }
  303. #top.light .login a {
  304. color: #555555;
  305. }
  306. .navbar {
  307. border: none;
  308. }
  309. .navbar ul.nav > li > a {
  310. text-transform: uppercase;
  311. text-decoration: underline;
  312. font-weight: bold;
  313. letter-spacing: 0.08em;
  314. border-top: solid 5px transparent;
  315. }
  316. .navbar ul.nav > li.open > a {
  317. text-decoration: none !important;
  318. border-top: solid 5px #20616d;
  319. }
  320. @media (max-width: 768px) {
  321. .navbar ul.nav > li.active > a,
  322. .navbar ul.nav > li.open > a {
  323. border-top-color: transparent;
  324. }
  325. .navbar ul.nav > li > a:hover {
  326. border-top-color: transparent;
  327. }
  328. }
  329. .navbar.navbar-light ul.nav > li.active > a {
  330. border-top: solid 5px #20616d;
  331. background: #fff !important;
  332. color: #555555 !important;
  333. }
  334. .navbar.navbar-light ul.nav > li.active > a:hover {
  335. border-top: solid 5px #20616d;
  336. }
  337. .navbar.navbar-light ul.nav > li > a:hover,
  338. .navbar.navbar-light ul.nav > li.open > a:hover,
  339. .navbar.navbar-light ul.nav > li > a:focus,
  340. .navbar.navbar-light ul.nav > li.open > a:focus {
  341. border-top: solid 5px #38a7bb;
  342. background: #fff !important;
  343. color: #555555 !important;
  344. }
  345. .navbar ul.dropdown-menu {
  346. margin: 0;
  347. padding: 0;
  348. }
  349. .navbar ul.dropdown-menu li {
  350. list-style-type: none;
  351. border-bottom: solid 1px #eeeeee;
  352. text-transform: uppercase;
  353. letter-spacing: 0.08em;
  354. padding: 4px 0;
  355. }
  356. .navbar ul.dropdown-menu li a {
  357. position: relative;
  358. color: #999999;
  359. font-size: 12px;
  360. display: block;
  361. -webkit-transition: all 0.2s ease-out;
  362. -moz-transition: all 0.2s ease-out;
  363. transition: all 0.2s ease-out;
  364. left: 0;
  365. }
  366. .navbar ul.dropdown-menu li a:hover {
  367. color: #ea5413;
  368. text-decoration: none;
  369. background: none;
  370. left: 2px;
  371. -webkit-transition: all 0.2s ease-out;
  372. -moz-transition: all 0.2s ease-out;
  373. transition: all 0.2s ease-out;
  374. }
  375. @media (max-width: 767px) {
  376. .navbar ul.dropdown-menu li a:hover {
  377. left: 0;
  378. }
  379. }
  380. .navbar .yamm-content h3 {
  381. font-size: 18px;
  382. text-transform: uppercase;
  383. padding-bottom: 10px;
  384. margin-top: 5px;
  385. border-bottom: dotted 1px #555555;
  386. letter-spacing: 0.08em;
  387. }
  388. @media (max-width: 767px) {
  389. .navbar .yamm-content h3 {
  390. font-size: 14px;
  391. }
  392. }
  393. .navbar .yamm-content h5 {
  394. text-transform: uppercase;
  395. padding-bottom: 10px;
  396. border-bottom: dotted 1px #555555;
  397. letter-spacing: 0.08em;
  398. }
  399. .navbar .yamm-content ul {
  400. margin: 0;
  401. padding: 0;
  402. }
  403. .navbar .yamm-content ul li {
  404. list-style-type: none;
  405. border-bottom: solid 1px #eeeeee;
  406. text-transform: uppercase;
  407. padding: 4px 0;
  408. }
  409. .navbar .yamm-content ul li a {
  410. position: relative;
  411. color: #999999;
  412. font-size: 12px;
  413. display: block;
  414. -webkit-transition: all 0.2s ease-out;
  415. -moz-transition: all 0.2s ease-out;
  416. transition: all 0.2s ease-out;
  417. }
  418. .navbar .yamm-content ul li a:hover {
  419. color: #38a7bb;
  420. text-decoration: none;
  421. padding-left: 2px;
  422. }
  423. .navbar .yamm-content .banner {
  424. margin-bottom: 10px;
  425. }
  426. .navbar .yamm-fw .dropdown-menu {
  427. padding: 0;
  428. }
  429. .navbar .navbar-buttons {
  430. float: right;
  431. }
  432. .navbar .navbar-buttons button,
  433. .navbar .navbar-buttons a.btn,
  434. .navbar .navbar-buttons .btn-default.navbar-toggle {
  435. margin-top: 11px;
  436. margin-bottom: 11px;
  437. margin-left: 0;
  438. margin-right: 5px;
  439. }
  440. .navbar .btn-default,
  441. .navbar .btn-default.navbar-toggle {
  442. color: #999999;
  443. background-color: #fff;
  444. margin-left: 7px;
  445. margin-right: 0;
  446. }
  447. .navbar .btn-default:hover,
  448. .navbar .btn-default.navbar-toggle:hover,
  449. .navbar .btn-default:focus,
  450. .navbar .btn-default.navbar-toggle:focus {
  451. background-color: #fff;
  452. border-color: #38a7bb;
  453. color: #38a7bb;
  454. }
  455. .navbar #search {
  456. clear: both;
  457. border-top: solid 1px #38a7bb;
  458. text-align: right;
  459. }
  460. .navbar #search form {
  461. float: right;
  462. }
  463. .navbar #search form .input-group {
  464. width: 500px;
  465. }
  466. @media (max-width: 768px) {
  467. .navbar #search form .input-group {
  468. width: 100%;
  469. }
  470. }
  471. .navbar #basket-overview a {
  472. margin-left: 7px;
  473. }
  474. .navbar-affixed-top {
  475. top: 0;
  476. z-index: 1000;
  477. width: 100%;
  478. }
  479. .navbar-affixed-top.affix {
  480. -webkit-box-shadow: 0 0 5px #cccccc;
  481. box-shadow: 0 0 5px #cccccc;
  482. }
  483. .navbar-affixed-top.affix + section {
  484. margin-top: 62px;
  485. }
  486. @supports (position: sticky) {
  487. .navbar-affixed-top {
  488. position: sticky;
  489. }
  490. .navbar-affixed-top.affix + section {
  491. margin-top: 0;
  492. }
  493. }
  494. #login-modal {
  495. overflow: hidden;
  496. }
  497. #login-modal .modal-header h4 {
  498. text-transform: uppercase;
  499. }
  500. #login-modal form {
  501. margin-bottom: 20px;
  502. }
  503. #login-modal a {
  504. color: #38a7bb;
  505. }
  506. #login-modal p {
  507. font-weight: 300;
  508. margin-bottom: 20px;
  509. font-size: 13px;
  510. }
  511. /* buttons */
  512. .btn {
  513. font-weight: 700;
  514. font-family: "Roboto", Helvetica, Arial, sans-serif;
  515. text-transform: uppercase;
  516. letter-spacing: 0.08em;
  517. padding: 5px 12px;
  518. font-size: 13px;
  519. line-height: 1.42857143;
  520. border-radius: 0;
  521. }
  522. .input-group .btn {
  523. font-size: 14px;
  524. }
  525. .btn-lg {
  526. padding: 10px 16px;
  527. font-size: 14px;
  528. line-height: 1.33;
  529. border-radius: 0;
  530. }
  531. .btn-sm {
  532. padding: 5px 10px;
  533. font-size: 12px;
  534. line-height: 1.5;
  535. border-radius: 0;
  536. }
  537. .btn-xs {
  538. padding: 1px 5px;
  539. font-size: 12px;
  540. line-height: 1.5;
  541. border-radius: 0;
  542. }
  543. .btn-template-main {
  544. color: #181c47;
  545. background-color: #ffffff;
  546. border-color: #181c47;
  547. }
  548. .btn-template-main:hover,
  549. .btn-template-main:focus,
  550. .btn-template-main:active,
  551. .btn-template-main.active,
  552. .open > .dropdown-toggle.btn-template-main {
  553. color: #181c47;
  554. background-color: #e6e6e6;
  555. border-color: #181c47;
  556. }
  557. .btn-template-main:active,
  558. .btn-template-main.active,
  559. .open > .dropdown-toggle.btn-template-main {
  560. background-image: none;
  561. }
  562. .btn-template-main.disabled,
  563. .btn-template-main[disabled],
  564. fieldset[disabled] .btn-template-main,
  565. .btn-template-main.disabled:hover,
  566. .btn-template-main[disabled]:hover,
  567. fieldset[disabled] .btn-template-main:hover,
  568. .btn-template-main.disabled:focus,
  569. .btn-template-main[disabled]:focus,
  570. fieldset[disabled] .btn-template-main:focus,
  571. .btn-template-main.disabled:active,
  572. .btn-template-main[disabled]:active,
  573. fieldset[disabled] .btn-template-main:active,
  574. .btn-template-main.disabled.active,
  575. .btn-template-main[disabled].active,
  576. fieldset[disabled] .btn-template-main.active {
  577. background-color: #ffffff;
  578. border-color: #38a7bb;
  579. }
  580. .btn-template-main .badge {
  581. color: #ffffff;
  582. background-color: #38a7bb;
  583. }
  584. .btn-template-main:hover,
  585. .btn-template-main:focus,
  586. .btn-template-main:active,
  587. .btn-template-main.active {
  588. background: #ea5413;
  589. color: #ffffff;
  590. border-color: #ea5413;
  591. }
  592. .btn-template-transparent-primary {
  593. color: #ffffff;
  594. background-color: transparent;
  595. border-color: #ffffff;
  596. }
  597. .btn-template-transparent-primary:hover,
  598. .btn-template-transparent-primary:focus,
  599. .btn-template-transparent-primary:active,
  600. .btn-template-transparent-primary.active,
  601. .open > .dropdown-toggle.btn-template-transparent-primary {
  602. color: #ffffff;
  603. background-color: rgba(0, 0, 0, 0);
  604. border-color: #e0e0e0;
  605. }
  606. .btn-template-transparent-primary:active,
  607. .btn-template-transparent-primary.active,
  608. .open > .dropdown-toggle.btn-template-transparent-primary {
  609. background-image: none;
  610. }
  611. .btn-template-transparent-primary.disabled,
  612. .btn-template-transparent-primary[disabled],
  613. fieldset[disabled] .btn-template-transparent-primary,
  614. .btn-template-transparent-primary.disabled:hover,
  615. .btn-template-transparent-primary[disabled]:hover,
  616. fieldset[disabled] .btn-template-transparent-primary:hover,
  617. .btn-template-transparent-primary.disabled:focus,
  618. .btn-template-transparent-primary[disabled]:focus,
  619. fieldset[disabled] .btn-template-transparent-primary:focus,
  620. .btn-template-transparent-primary.disabled:active,
  621. .btn-template-transparent-primary[disabled]:active,
  622. fieldset[disabled] .btn-template-transparent-primary:active,
  623. .btn-template-transparent-primary.disabled.active,
  624. .btn-template-transparent-primary[disabled].active,
  625. fieldset[disabled] .btn-template-transparent-primary.active {
  626. background-color: transparent;
  627. border-color: #ffffff;
  628. }
  629. .btn-template-transparent-primary .badge {
  630. color: transparent;
  631. background-color: #ffffff;
  632. }
  633. .btn-template-transparent-primary:hover,
  634. .btn-template-transparent-primary:focus,
  635. .btn-template-transparent-primary:active,
  636. .btn-template-transparent-primary.active {
  637. background: #fff;
  638. color: #38a7bb;
  639. border-color: #fff;
  640. }
  641. .btn-template-transparent-black {
  642. color: #ffffff;
  643. background-color: transparent;
  644. border-color: #ffffff;
  645. }
  646. .btn-template-transparent-black:hover,
  647. .btn-template-transparent-black:focus,
  648. .btn-template-transparent-black:active,
  649. .btn-template-transparent-black.active,
  650. .open > .dropdown-toggle.btn-template-transparent-black {
  651. color: #ffffff;
  652. background-color: rgba(0, 0, 0, 0);
  653. border-color: #e0e0e0;
  654. }
  655. .btn-template-transparent-black:active,
  656. .btn-template-transparent-black.active,
  657. .open > .dropdown-toggle.btn-template-transparent-black {
  658. background-image: none;
  659. }
  660. .btn-template-transparent-black.disabled,
  661. .btn-template-transparent-black[disabled],
  662. fieldset[disabled] .btn-template-transparent-black,
  663. .btn-template-transparent-black.disabled:hover,
  664. .btn-template-transparent-black[disabled]:hover,
  665. fieldset[disabled] .btn-template-transparent-black:hover,
  666. .btn-template-transparent-black.disabled:focus,
  667. .btn-template-transparent-black[disabled]:focus,
  668. fieldset[disabled] .btn-template-transparent-black:focus,
  669. .btn-template-transparent-black.disabled:active,
  670. .btn-template-transparent-black[disabled]:active,
  671. fieldset[disabled] .btn-template-transparent-black:active,
  672. .btn-template-transparent-black.disabled.active,
  673. .btn-template-transparent-black[disabled].active,
  674. fieldset[disabled] .btn-template-transparent-black.active {
  675. background-color: transparent;
  676. border-color: #ffffff;
  677. }
  678. .btn-template-transparent-black .badge {
  679. color: transparent;
  680. background-color: #ffffff;
  681. }
  682. .btn-template-transparent-black:hover,
  683. .btn-template-transparent-black:focus,
  684. .btn-template-transparent-black:active,
  685. .btn-template-transparent-black.active {
  686. background: #fff;
  687. color: #000;
  688. border-color: #fff;
  689. }
  690. .btn-template-primary {
  691. color: #ffffff;
  692. background-color: #38a7bb;
  693. border-color: #38a7bb;
  694. }
  695. .btn-template-primary:hover,
  696. .btn-template-primary:focus,
  697. .btn-template-primary:active,
  698. .btn-template-primary.active,
  699. .open > .dropdown-toggle.btn-template-primary {
  700. color: #ffffff;
  701. background-color: #2c8494;
  702. border-color: #2a7d8c;
  703. }
  704. .btn-template-primary:active,
  705. .btn-template-primary.active,
  706. .open > .dropdown-toggle.btn-template-primary {
  707. background-image: none;
  708. }
  709. .btn-template-primary.disabled,
  710. .btn-template-primary[disabled],
  711. fieldset[disabled] .btn-template-primary,
  712. .btn-template-primary.disabled:hover,
  713. .btn-template-primary[disabled]:hover,
  714. fieldset[disabled] .btn-template-primary:hover,
  715. .btn-template-primary.disabled:focus,
  716. .btn-template-primary[disabled]:focus,
  717. fieldset[disabled] .btn-template-primary:focus,
  718. .btn-template-primary.disabled:active,
  719. .btn-template-primary[disabled]:active,
  720. fieldset[disabled] .btn-template-primary:active,
  721. .btn-template-primary.disabled.active,
  722. .btn-template-primary[disabled].active,
  723. fieldset[disabled] .btn-template-primary.active {
  724. background-color: #38a7bb;
  725. border-color: #38a7bb;
  726. }
  727. .btn-template-primary .badge {
  728. color: #38a7bb;
  729. background-color: #ffffff;
  730. }
  731. #intro {
  732. background: url("../img/home.jpg") no-repeat center top;
  733. -webkit-background-size: cover;
  734. -moz-background-size: cover;
  735. -o-background-size: cover;
  736. background-size: cover;
  737. }
  738. #intro .item {
  739. font-family: "Roboto", Helvetica, Arial, sans-serif;
  740. height: 100%;
  741. }
  742. #intro .item h1 {
  743. text-transform: uppercase;
  744. font-size: 50px;
  745. color: #fff;
  746. margin-bottom: 40px;
  747. letter-spacing: 0.08em;
  748. }
  749. @media (max-width: 991px) {
  750. #intro .item h1 {
  751. font-size: 40px;
  752. }
  753. }
  754. @media (max-width: 767px) {
  755. #intro .item h1 {
  756. font-size: 25px;
  757. }
  758. }
  759. #intro .item h3 {
  760. color: #fff;
  761. margin-bottom: 40px;
  762. }
  763. @media (max-width: 767px) {
  764. #intro .item h3 {
  765. font-size: 15px;
  766. margin-bottom: 20px;
  767. }
  768. }
  769. #intro .item .btn {
  770. text-transform: none;
  771. }
  772. @media (max-width: 991px) {
  773. #intro .item .btn {
  774. font-size: 14px;
  775. }
  776. }
  777. @media (max-width: 991px) {
  778. #intro .item .carousel-caption {
  779. left: 10%;
  780. right: 10%;
  781. }
  782. }
  783. #intro .container,
  784. #intro .row {
  785. height: 100%;
  786. position: relative;
  787. }
  788. .jumbotron {
  789. padding: 30px;
  790. margin-bottom: 0;
  791. position: relative;
  792. background: url("../img/photogrid.jpg") center center repeat;
  793. background-size: cover;
  794. -webkit-transition: all 0.2s ease-out;
  795. -moz-transition: all 0.2s ease-out;
  796. transition: all 0.2s ease-out;
  797. }
  798. .jumbotron .dark-mask {
  799. position: absolute;
  800. top: 0;
  801. left: 0;
  802. width: 100%;
  803. height: 100%;
  804. background: #38a7bb;
  805. opacity: 0.9;
  806. filter: alpha(opacity=90);
  807. }
  808. .jumbotron h1,
  809. .jumbotron h2,
  810. .jumbotron h3,
  811. .jumbotron p,
  812. .jumbotron ul {
  813. color: #fff;
  814. }
  815. .jumbotron h1,
  816. .jumbotron h2,
  817. .jumbotron h3 {
  818. color: #ffffff;
  819. text-transform: uppercase;
  820. letter-spacing: 0.08em;
  821. }
  822. .jumbotron p {
  823. margin-bottom: 20px;
  824. font-size: 21px;
  825. font-weight: 400;
  826. }
  827. .jumbotron p.text-uppercase {
  828. font-weight: 700;
  829. }
  830. .jumbotron > hr {
  831. border-top-color: #d5d5d5;
  832. }
  833. .container .jumbotron {
  834. border-radius: 0;
  835. }
  836. .jumbotron .container {
  837. max-width: 100%;
  838. z-index: 2;
  839. }
  840. @media screen and (min-width: 768px) {
  841. .jumbotron {
  842. padding-top: 48px;
  843. padding-bottom: 48px;
  844. }
  845. .container .jumbotron {
  846. padding-left: 60px;
  847. padding-right: 60px;
  848. }
  849. .jumbotron h1,
  850. .jumbotron .h1 {
  851. font-size: 46px;
  852. }
  853. }
  854. #categoryMenu h3 {
  855. padding: 20px;
  856. background: #f7f7f7;
  857. margin: 0;
  858. border-bottom: solid 1px #eeeeee;
  859. text-transform: uppercase;
  860. letter-spacing: 0.08em;
  861. }
  862. .panel.sidebar-menu h3 {
  863. padding: 5px 0;
  864. margin: 0;
  865. color: #333;
  866. line-height: 1.2;
  867. letter-spacing: 1px;
  868. }
  869. .panel.sidebar-menu {
  870. background: #fff;
  871. margin: 0 0 20px;
  872. -webkit-box-sizing: border-box;
  873. -moz-box-sizing: border-box;
  874. box-sizing: border-box;
  875. }
  876. .panel.sidebar-menu .panel-heading {
  877. text-transform: uppercase;
  878. margin-bottom: 15px;
  879. background: none;
  880. padding: 0;
  881. letter-spacing: 0.08em;
  882. border-bottom: none;
  883. }
  884. .panel.sidebar-menu .panel-heading h1,
  885. .panel.sidebar-menu .panel-heading h2,
  886. .panel.sidebar-menu .panel-heading h3,
  887. .panel.sidebar-menu .panel-heading h4,
  888. .panel.sidebar-menu .panel-heading h5 {
  889. display: inline-block;
  890. border-bottom: solid 5px #ea5413;
  891. line-height: 1.1;
  892. margin-bottom: 0;
  893. padding-bottom: 10px;
  894. }
  895. .panel.sidebar-menu .info {
  896. display: flex;
  897. justify-content: space-between;
  898. }
  899. .panel.sidebar-menu .panel-heading .btn.btn-danger {
  900. color: #fff;
  901. margin-top: 5px;
  902. }
  903. .panel.sidebar-menu .panel-body {
  904. padding: 0;
  905. }
  906. .panel.sidebar-menu .panel-body span.colour {
  907. display: inline-block;
  908. width: 15px;
  909. height: 15px;
  910. border: solid 1px #555555;
  911. vertical-align: top;
  912. margin-top: 2px;
  913. margin-left: 5px;
  914. }
  915. .panel.sidebar-menu .panel-body span.colour.white {
  916. background: #fff;
  917. }
  918. .panel.sidebar-menu .panel-body span.colour.red {
  919. background: red;
  920. }
  921. .panel.sidebar-menu .panel-body span.colour.green {
  922. background: green;
  923. }
  924. .panel.sidebar-menu .panel-body span.colour.blue {
  925. background: blue;
  926. }
  927. .panel.sidebar-menu .panel-body span.colour.yellow {
  928. background: yellow;
  929. }
  930. .panel.sidebar-menu .panel-body label {
  931. color: #999999;
  932. font-size: 12px;
  933. }
  934. .panel.sidebar-menu .panel-body label:hover {
  935. color: #555555;
  936. }
  937. .panel.sidebar-menu ul.nav.category-menu {
  938. margin-bottom: 20px;
  939. text-transform: uppercase;
  940. font-weight: 700;
  941. letter-spacing: 0.08em;
  942. }
  943. .panel.sidebar-menu ul.nav.category-menu li a {
  944. font-family: "Roboto", Helvetica, Arial, sans-serif;
  945. }
  946. .panel.sidebar-menu ul.nav ul {
  947. list-style: none;
  948. padding-left: 0;
  949. }
  950. .panel.sidebar-menu ul.nav ul li {
  951. display: block;
  952. }
  953. .panel.sidebar-menu ul.nav ul li a {
  954. position: relative;
  955. font-family: "Times New Roman", Times, serif;
  956. font-weight: normal;
  957. text-transform: none !important;
  958. display: block;
  959. padding: 10px 15px;
  960. padding-left: 30px;
  961. font-size: 12px;
  962. color: #999999;
  963. }
  964. .panel.sidebar-menu ul.nav ul li a:hover,
  965. .panel.sidebar-menu ul.nav ul li a:focus {
  966. text-decoration: none;
  967. background-color: #eeeeee;
  968. }
  969. .panel.sidebar-menu ul.tag-cloud {
  970. list-style: none;
  971. padding-left: 0;
  972. }
  973. .panel.sidebar-menu ul.tag-cloud li {
  974. display: inline-block;
  975. }
  976. .panel.sidebar-menu ul.tag-cloud li a {
  977. display: inline-block;
  978. padding: 5px;
  979. border: solid 1px #eeeeee;
  980. border-radius: 0;
  981. color: #ea5413;
  982. margin: 5px 5px 5px 0;
  983. text-transform: uppercase;
  984. letter-spacing: 0.08em;
  985. font-weight: 700;
  986. font-size: 12px;
  987. text-decoration: none;
  988. }
  989. .panel.sidebar-menu ul.tag-cloud li a:hover {
  990. color: #ea5413;
  991. border-color: #ea5413;
  992. }
  993. .panel.sidebar-menu ul.tag-cloud li.active a {
  994. color: #ffffff;
  995. background-color: #ea5413;
  996. }
  997. .panel.sidebar-menu ul.tag-cloud li.active a:hover {
  998. color: #ffffff;
  999. }
  1000. .panel.sidebar-menu ul.popular,
  1001. .panel.sidebar-menu ul.recent {
  1002. list-style: none;
  1003. padding-left: 0;
  1004. padding: 20px 0;
  1005. }
  1006. .panel.sidebar-menu ul.popular li,
  1007. .panel.sidebar-menu ul.recent li {
  1008. margin-bottom: 10px;
  1009. padding: 5px 0;
  1010. border-bottom: dotted 1px #eeeeee;
  1011. }
  1012. .panel.sidebar-menu ul.popular li:before,
  1013. .panel.sidebar-menu ul.recent li:before,
  1014. .panel.sidebar-menu ul.popular li:after,
  1015. .panel.sidebar-menu ul.recent li:after {
  1016. content: " ";
  1017. display: table;
  1018. }
  1019. .panel.sidebar-menu ul.popular li:after,
  1020. .panel.sidebar-menu ul.recent li:after {
  1021. clear: both;
  1022. }
  1023. .panel.sidebar-menu ul.popular li:before,
  1024. .panel.sidebar-menu ul.recent li:before,
  1025. .panel.sidebar-menu ul.popular li:after,
  1026. .panel.sidebar-menu ul.recent li:after {
  1027. content: " ";
  1028. display: table;
  1029. }
  1030. .panel.sidebar-menu ul.popular li:after,
  1031. .panel.sidebar-menu ul.recent li:after {
  1032. clear: both;
  1033. }
  1034. .panel.sidebar-menu ul.popular li img,
  1035. .panel.sidebar-menu ul.recent li img {
  1036. width: 50px;
  1037. margin-right: 10px;
  1038. }
  1039. .panel.sidebar-menu ul.popular li h5,
  1040. .panel.sidebar-menu ul.recent li h5 {
  1041. margin: 0 0 10px;
  1042. }
  1043. .panel.sidebar-menu ul.popular li h5 a,
  1044. .panel.sidebar-menu ul.recent li h5 a {
  1045. font-weight: normal;
  1046. }
  1047. .panel.sidebar-menu ul.popular li p.date,
  1048. .panel.sidebar-menu ul.recent li p.date {
  1049. float: right;
  1050. font-size: 12px;
  1051. color: #999999;
  1052. }
  1053. .panel.sidebar-menu ul.popular li:last-child,
  1054. .panel.sidebar-menu ul.recent li:last-child {
  1055. border-bottom: none;
  1056. }
  1057. .panel.sidebar-menu .text-widget {
  1058. font-size: 12px;
  1059. }
  1060. .panel.sidebar-menu.with-icons ul.nav li a:after {
  1061. font-family: "FontAwesome";
  1062. content: "\f105";
  1063. position: relative;
  1064. top: 0;
  1065. float: right;
  1066. }
  1067. /* ribbons for product sales etc. */
  1068. .ribbon {
  1069. position: absolute;
  1070. top: 50px;
  1071. padding-left: 51px;
  1072. font-weight: 700;
  1073. letter-spacing: 0.08em;
  1074. }
  1075. .ribbon .ribbon-background {
  1076. position: absolute;
  1077. top: 0;
  1078. right: 0;
  1079. }
  1080. .ribbon .theribbon {
  1081. position: relative;
  1082. width: 80px;
  1083. padding: 6px 20px 6px 20px;
  1084. margin: 30px 10px 10px -71px;
  1085. color: #fff;
  1086. background-color: #38a7bb;
  1087. font-family: "Roboto", Helvetica, Arial, sans-serif;
  1088. }
  1089. .ribbon .theribbon:before,
  1090. .ribbon .theribbon:after {
  1091. content: " ";
  1092. position: absolute;
  1093. width: 0;
  1094. height: 0;
  1095. }
  1096. .ribbon .theribbon:after {
  1097. left: 0px;
  1098. top: 100%;
  1099. border-width: 5px 10px;
  1100. border-style: solid;
  1101. border-color: #000000 #000000 transparent transparent;
  1102. }
  1103. .ribbon.sale {
  1104. top: 0;
  1105. }
  1106. .ribbon.new {
  1107. top: 50px;
  1108. }
  1109. .ribbon.new .theribbon {
  1110. background-color: #5bc0de;
  1111. text-shadow: 0px 1px 2px #bbb;
  1112. }
  1113. .ribbon.new .theribbon:after {
  1114. border-color: #2390b0 #2390b0 transparent transparent;
  1115. }
  1116. .ribbon.gift {
  1117. top: 100px;
  1118. }
  1119. .ribbon.gift .theribbon {
  1120. background-color: #5cb85c;
  1121. text-shadow: 0px 1px 2px #bbb;
  1122. }
  1123. .ribbon.gift .theribbon:after {
  1124. border-color: #357935 #357935 transparent transparent;
  1125. }
  1126. .owl-carousel .owl-controls .owl-page.active span,
  1127. .owl-theme .owl-controls .owl-page.active span,
  1128. .owl-carousel .owl-controls.clickable .owl-page:hover span,
  1129. .owl-theme .owl-controls.clickable .owl-page:hover span {
  1130. background: #38a7bb;
  1131. }
  1132. .owl-carousel .owl-controls .owl-buttons,
  1133. .owl-theme .owl-controls .owl-buttons {
  1134. position: absolute;
  1135. top: 5px;
  1136. right: 0;
  1137. }
  1138. .owl-carousel .owl-controls .owl-buttons div,
  1139. .owl-theme .owl-controls .owl-buttons div {
  1140. width: 26px;
  1141. height: 26px;
  1142. line-height: 25px;
  1143. margin: 0 5px 0 0;
  1144. font-size: 18px;
  1145. color: #38a7bb;
  1146. padding: 0;
  1147. background: #fff;
  1148. border-radius: 13px;
  1149. vertical-align: middle;
  1150. text-align: center;
  1151. opacity: 1;
  1152. filter: alpha(opacity=100);
  1153. }
  1154. .home-carousel {
  1155. position: relative;
  1156. background: url("../img/photogrid.jpg") center center repeat;
  1157. background-size: cover;
  1158. -webkit-transition: all 0.2s ease-out;
  1159. -moz-transition: all 0.2s ease-out;
  1160. transition: all 0.2s ease-out;
  1161. }
  1162. .home-carousel .dark-mask {
  1163. position: absolute;
  1164. top: 0;
  1165. left: 0;
  1166. width: 100%;
  1167. height: 100%;
  1168. background: #38a7bb;
  1169. opacity: 0.9;
  1170. filter: alpha(opacity=90);
  1171. }
  1172. .home-carousel .owl-carousel {
  1173. padding-top: 60px;
  1174. padding-bottom: 20px;
  1175. }
  1176. .home-carousel .owl-theme .owl-controls .owl-page span {
  1177. background: #666;
  1178. }
  1179. .home-carousel .owl-theme .owl-controls .owl-page.active span {
  1180. background: #fff;
  1181. }
  1182. .home-carousel .owl-theme .owl-controls .owl-page:hover span {
  1183. background: #fff;
  1184. }
  1185. @media (max-width: 767px) {
  1186. .home-carousel {
  1187. text-align: center !important;
  1188. }
  1189. }
  1190. @media (min-width: 992px) {
  1191. .home-carousel .right {
  1192. text-align: right;
  1193. }
  1194. }
  1195. .home-carousel h1,
  1196. .home-carousel h2,
  1197. .home-carousel h3,
  1198. .home-carousel p,
  1199. .home-carousel ul {
  1200. color: #fff;
  1201. }
  1202. .home-carousel h1 {
  1203. font-weight: 600;
  1204. text-transform: uppercase;
  1205. font-size: 35px;
  1206. letter-spacing: 0.08em;
  1207. }
  1208. @media (max-width: 991px) {
  1209. .home-carousel h1 {
  1210. font-size: 30px;
  1211. }
  1212. }
  1213. .home-carousel h2 {
  1214. font-weight: 700;
  1215. text-transform: uppercase;
  1216. font-size: 40px;
  1217. letter-spacing: 0.08em;
  1218. }
  1219. .home-carousel ul,
  1220. .home-carousel p {
  1221. font-size: 18px;
  1222. font-weight: 700;
  1223. padding: 0;
  1224. text-transform: uppercase;
  1225. letter-spacing: 0.1em;
  1226. }
  1227. @media (max-width: 991px) {
  1228. .home-carousel ul,
  1229. .home-carousel p {
  1230. font-size: 14px;
  1231. }
  1232. }
  1233. .home-carousel ul li {
  1234. margin-bottom: 10px;
  1235. }
  1236. .customers {
  1237. padding: 0;
  1238. margin-bottom: 40px;
  1239. }
  1240. .customers .item {
  1241. list-style-type: none;
  1242. text-align: center;
  1243. margin: 0 20px;
  1244. }
  1245. .customers .item img {
  1246. display: inline-block;
  1247. filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  1248. /* Firefox 10+, Firefox on Android */
  1249. filter: gray;
  1250. /* IE6-9 */
  1251. -webkit-filter: grayscale(100%);
  1252. /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  1253. -webkit-transition: all 0.2s ease-out;
  1254. -moz-transition: all 0.2s ease-out;
  1255. transition: all 0.2s ease-out;
  1256. }
  1257. .customers .item img:hover {
  1258. max-width: auto;
  1259. filter: none;
  1260. -webkit-filter: none;
  1261. }
  1262. .testimonials {
  1263. padding: 0;
  1264. margin-bottom: 40px;
  1265. }
  1266. .testimonials .item {
  1267. list-style-type: none;
  1268. margin: 0 5px;
  1269. background: #fff;
  1270. padding-bottom: 60px;
  1271. -webkit-box-sizing: border-box;
  1272. -moz-box-sizing: border-box;
  1273. box-sizing: border-box;
  1274. }
  1275. .testimonials .item .testimonial {
  1276. position: relative;
  1277. padding: 20px;
  1278. }
  1279. .testimonials .item .testimonial:before,
  1280. .testimonials .item .testimonial:after {
  1281. content: " ";
  1282. display: table;
  1283. }
  1284. .testimonials .item .testimonial:after {
  1285. clear: both;
  1286. }
  1287. .testimonials .item .testimonial:before,
  1288. .testimonials .item .testimonial:after {
  1289. content: " ";
  1290. display: table;
  1291. }
  1292. .testimonials .item .testimonial:after {
  1293. clear: both;
  1294. }
  1295. .testimonials .item .testimonial .text {
  1296. color: #999999;
  1297. margin-bottom: 40px;
  1298. }
  1299. .testimonials .item .testimonial .bottom {
  1300. position: absolute;
  1301. left: 0;
  1302. bottom: 0;
  1303. width: 100%;
  1304. -webkit-box-sizing: border-box;
  1305. -moz-box-sizing: border-box;
  1306. box-sizing: border-box;
  1307. padding: 20px;
  1308. height: 50px;
  1309. }
  1310. .testimonials .item .testimonial .bottom .icon {
  1311. color: #38a7bb;
  1312. font-size: 30px;
  1313. float: left;
  1314. width: 20%;
  1315. }
  1316. .testimonials .item .testimonial .name-picture {
  1317. float: right;
  1318. width: 80%;
  1319. text-align: right;
  1320. }
  1321. .testimonials .item .testimonial .name-picture h5 {
  1322. font-size: 14px;
  1323. text-transform: uppercase;
  1324. letter-spacing: 0.08em;
  1325. }
  1326. .testimonials .item .testimonial .name-picture p {
  1327. color: #999999;
  1328. margin: 0;
  1329. font-size: 12px;
  1330. }
  1331. .testimonials .item .testimonial .name-picture img {
  1332. float: right;
  1333. width: 60px;
  1334. border-radius: 30px;
  1335. margin-left: 10px;
  1336. }
  1337. .team-member {
  1338. text-align: center;
  1339. margin-bottom: 40px;
  1340. }
  1341. .team-member h3 {
  1342. font-size: 18px;
  1343. text-transform: uppercase;
  1344. margin-bottom: 5px;
  1345. letter-spacing: 0.08em;
  1346. }
  1347. .team-member h3 a {
  1348. color: #555555;
  1349. }
  1350. .team-member p.role {
  1351. color: #999999;
  1352. font-size: 12px;
  1353. text-transform: uppercase;
  1354. letter-spacing: 0.06em;
  1355. }
  1356. .team-member .social {
  1357. margin-bottom: 20px;
  1358. }
  1359. .team-member .social a {
  1360. margin: 0 10px 0 0;
  1361. color: #fff;
  1362. display: inline-block;
  1363. width: 26px;
  1364. height: 26px;
  1365. border-radius: 13px;
  1366. line-height: 26px;
  1367. font-size: 15px;
  1368. text-align: center;
  1369. -webkit-transition: all 0.2s ease-out;
  1370. -moz-transition: all 0.2s ease-out;
  1371. transition: all 0.2s ease-out;
  1372. vertical-align: bottom;
  1373. }
  1374. .team-member .social a i {
  1375. vertical-align: bottom;
  1376. line-height: 26px;
  1377. }
  1378. .team-member .social a.facebook {
  1379. background-color: #4460ae;
  1380. }
  1381. .team-member .social a.gplus {
  1382. background-color: #c21f25;
  1383. }
  1384. .team-member .social a.twitter {
  1385. background-color: #3cf;
  1386. }
  1387. .team-member .social a.instagram {
  1388. background-color: #cd4378;
  1389. }
  1390. .team-member .social a.email {
  1391. background-color: #4a7f45;
  1392. }
  1393. .team-member .text p {
  1394. color: #999999;
  1395. font-size: 12px;
  1396. }
  1397. .team-member .social,
  1398. .team-member-detail .social {
  1399. margin-bottom: 20px;
  1400. }
  1401. .team-member .social a,
  1402. .team-member-detail .social a {
  1403. margin: 0 10px 0 0;
  1404. color: #fff;
  1405. display: inline-block;
  1406. width: 26px;
  1407. height: 26px;
  1408. border-radius: 13px;
  1409. line-height: 26px;
  1410. font-size: 15px;
  1411. text-align: center;
  1412. -webkit-transition: all 0.2s ease-out;
  1413. -moz-transition: all 0.2s ease-out;
  1414. transition: all 0.2s ease-out;
  1415. vertical-align: bottom;
  1416. }
  1417. .team-member .social a i,
  1418. .team-member-detail .social a i {
  1419. vertical-align: bottom;
  1420. line-height: 26px;
  1421. }
  1422. .team-member .social a.facebook,
  1423. .team-member-detail .social a.facebook {
  1424. background-color: #4460ae;
  1425. }
  1426. .team-member .social a.gplus,
  1427. .team-member-detail .social a.gplus {
  1428. background-color: #c21f25;
  1429. }
  1430. .team-member .social a.twitter,
  1431. .team-member-detail .social a.twitter {
  1432. background-color: #3cf;
  1433. }
  1434. .team-member .social a.instagram,
  1435. .team-member-detail .social a.instagram {
  1436. background-color: #cd4378;
  1437. }
  1438. .team-member .social a.email,
  1439. .team-member-detail .social a.email {
  1440. background-color: #4a7f45;
  1441. }
  1442. .box-simple {
  1443. text-align: center;
  1444. margin-bottom: 40px;
  1445. }
  1446. .box-simple .icon {
  1447. color: #38a7bb;
  1448. border-color: #38a7bb;
  1449. -webkit-transition: all 0.2s ease-out;
  1450. -moz-transition: all 0.2s ease-out;
  1451. transition: all 0.2s ease-out;
  1452. }
  1453. .box-simple h3 {
  1454. font-weight: normal;
  1455. font-size: 18px;
  1456. text-transform: uppercase;
  1457. line-height: 1.5;
  1458. color: #555555;
  1459. font-weight: 800;
  1460. letter-spacing: 0.08em;
  1461. }
  1462. .box-simple h3 a {
  1463. color: #555555;
  1464. }
  1465. .box-simple p {
  1466. color: #999999;
  1467. }
  1468. .box-simple:hover .icon {
  1469. -webkit-transform: scale(1.1, 1.1);
  1470. -ms-transform: scale(1.1, 1.1);
  1471. -o-transform: scale(1.1, 1.1);
  1472. transform: scale(1.1, 1.1);
  1473. }
  1474. .box-simple:hover .icon i {
  1475. -webkit-transform: scale(1, 1);
  1476. -ms-transform: scale(1, 1);
  1477. -o-transform: scale(1, 1);
  1478. transform: scale(1, 1);
  1479. }
  1480. .box-simple.box-white {
  1481. padding: 20px;
  1482. border: dotted 1px #999999;
  1483. }
  1484. .box-simple.box-white .icon {
  1485. color: #555555;
  1486. border-color: transparent;
  1487. font-size: 70px;
  1488. }
  1489. .box-simple.box-dark {
  1490. padding: 20px;
  1491. border: dotted 1px #999999;
  1492. background: #555555;
  1493. color: #fff;
  1494. }
  1495. .box-simple.box-dark .icon {
  1496. color: #f7f7f7;
  1497. border-color: transparent;
  1498. font-size: 70px;
  1499. }
  1500. .box-simple.box-dark h3 {
  1501. color: #fff;
  1502. }
  1503. .box-simple.box-dark h3 a {
  1504. color: #fff;
  1505. }
  1506. .box-simple.box-dark p {
  1507. color: #fff;
  1508. }
  1509. .box-image {
  1510. position: relative;
  1511. overflow: hidden;
  1512. text-align: center;
  1513. margin: 15px 0;
  1514. }
  1515. .box-image .bg {
  1516. position: absolute;
  1517. top: auto;
  1518. bottom: 0;
  1519. width: 100%;
  1520. height: 100%;
  1521. opacity: 0;
  1522. filter: alpha(opacity=0);
  1523. background: #38a7bb;
  1524. }
  1525. .box-image .name {
  1526. position: absolute;
  1527. width: 100%;
  1528. height: 50%;
  1529. bottom: 0;
  1530. -webkit-transform: translate(0, 100%);
  1531. -ms-transform: translate(0, 100%);
  1532. -o-transform: translate(0, 100%);
  1533. transform: translate(0, 100%);
  1534. -webkit-transition: all 0.2s ease-out;
  1535. -moz-transition: all 0.2s ease-out;
  1536. transition: all 0.2s ease-out;
  1537. color: #fff;
  1538. padding: 0 20px;
  1539. }
  1540. .box-image .name h3 {
  1541. color: #fff;
  1542. text-transform: uppercase;
  1543. font-size: 18px;
  1544. letter-spacing: 0.08em;
  1545. }
  1546. .box-image .name h3 a {
  1547. color: #fff;
  1548. text-decoration: none;
  1549. }
  1550. .box-image .text {
  1551. position: absolute;
  1552. width: 100%;
  1553. height: 50%;
  1554. top: 0;
  1555. -webkit-transform: translate(0, -150%);
  1556. -ms-transform: translate(0, -150%);
  1557. -o-transform: translate(0, -150%);
  1558. transform: translate(0, -150%);
  1559. -webkit-transition: all 0.2s ease-out;
  1560. -moz-transition: all 0.2s ease-out;
  1561. transition: all 0.2s ease-out;
  1562. color: #fff;
  1563. padding: 0 20px;
  1564. }
  1565. .box-image:hover .bg {
  1566. opacity: 0.7;
  1567. filter: alpha(opacity=70);
  1568. }
  1569. .box-image:hover .name {
  1570. position: absolute;
  1571. -webkit-transform: translate(0, -75%);
  1572. -ms-transform: translate(0, -75%);
  1573. -o-transform: translate(0, -75%);
  1574. transform: translate(0, -75%);
  1575. }
  1576. .box-image:hover .text {
  1577. position: absolute;
  1578. -webkit-transform: translate(0, 100%);
  1579. -ms-transform: translate(0, 100%);
  1580. -o-transform: translate(0, 100%);
  1581. transform: translate(0, 100%);
  1582. }
  1583. .box-image-text {
  1584. position: relative;
  1585. overflow: hidden;
  1586. text-align: center;
  1587. margin: 15px 0;
  1588. }
  1589. .box-image-text .top {
  1590. position: relative;
  1591. margin-bottom: 10px;
  1592. }
  1593. .box-image-text .top .bg {
  1594. position: absolute;
  1595. top: auto;
  1596. bottom: 0;
  1597. width: 100%;
  1598. height: 100%;
  1599. opacity: 0;
  1600. filter: alpha(opacity=0);
  1601. background: #38a7bb;
  1602. }
  1603. .box-image-text .top .name {
  1604. position: absolute;
  1605. width: 100%;
  1606. height: 50%;
  1607. bottom: 0;
  1608. -webkit-transform: translate(0, 100%);
  1609. -ms-transform: translate(0, 100%);
  1610. -o-transform: translate(0, 100%);
  1611. transform: translate(0, 100%);
  1612. -webkit-transition: all 0.2s ease-out;
  1613. -moz-transition: all 0.2s ease-out;
  1614. transition: all 0.2s ease-out;
  1615. color: #fff;
  1616. padding: 0 20px;
  1617. }
  1618. .box-image-text .top .name h3 {
  1619. color: #fff;
  1620. text-transform: uppercase;
  1621. font-size: 18px;
  1622. letter-spacing: 0.08em;
  1623. }
  1624. .box-image-text .top .name h3 a {
  1625. color: #fff;
  1626. text-decoration: none;
  1627. }
  1628. .box-image-text .top .text {
  1629. position: absolute;
  1630. width: 100%;
  1631. height: 50%;
  1632. top: 0;
  1633. -webkit-transform: translate(0, -150%);
  1634. -ms-transform: translate(0, -150%);
  1635. -o-transform: translate(0, -150%);
  1636. transform: translate(0, -150%);
  1637. -webkit-transition: all 0.2s ease-out;
  1638. -moz-transition: all 0.2s ease-out;
  1639. transition: all 0.2s ease-out;
  1640. color: #fff;
  1641. padding: 0 20px;
  1642. }
  1643. .box-image-text .content h3,
  1644. .box-image-text .content h4 {
  1645. text-transform: uppercase;
  1646. line-height: 1.5;
  1647. color: #555555;
  1648. font-weight: 800;
  1649. letter-spacing: 0.08em;
  1650. }
  1651. .box-image-text .content p {
  1652. color: #999999;
  1653. }
  1654. .box-image-text:hover .bg {
  1655. opacity: 0.7;
  1656. filter: alpha(opacity=70);
  1657. }
  1658. .box-image-text:hover .name {
  1659. position: absolute;
  1660. -webkit-transform: translate(0, -75%);
  1661. -ms-transform: translate(0, -75%);
  1662. -o-transform: translate(0, -75%);
  1663. transform: translate(0, -75%);
  1664. }
  1665. .box-image-text:hover .text {
  1666. position: absolute;
  1667. -webkit-transform: translate(0, 100%);
  1668. -ms-transform: translate(0, 100%);
  1669. -o-transform: translate(0, 100%);
  1670. transform: translate(0, 100%);
  1671. }
  1672. /* universal box */
  1673. .box {
  1674. background: #fff;
  1675. margin: 0 0 30px;
  1676. border: solid 1px #ccc;
  1677. -webkit-box-sizing: border-box;
  1678. -moz-box-sizing: border-box;
  1679. box-sizing: border-box;
  1680. padding: 20px 0;
  1681. border-left: none;
  1682. border-right: none;
  1683. }
  1684. .box .box-header {
  1685. background: #f7f7f7;
  1686. margin: -20px 0 20px;
  1687. padding: 20px;
  1688. border-bottom: solid 1px #eeeeee;
  1689. text-transform: uppercase;
  1690. letter-spacing: 0.08em;
  1691. }
  1692. .box .box-header:before,
  1693. .box .box-header:after {
  1694. content: " ";
  1695. display: table;
  1696. }
  1697. .box .box-header:after {
  1698. clear: both;
  1699. }
  1700. .box .box-header:before,
  1701. .box .box-header:after {
  1702. content: " ";
  1703. display: table;
  1704. }
  1705. .box .box-header:after {
  1706. clear: both;
  1707. }
  1708. .box .box-footer {
  1709. background: #f7f7f7;
  1710. margin: 30px 0 -20px;
  1711. padding: 20px;
  1712. border-top: solid 1px #eeeeee;
  1713. }
  1714. .box .box-footer:before,
  1715. .box .box-footer:after {
  1716. content: " ";
  1717. display: table;
  1718. }
  1719. .box .box-footer:after {
  1720. clear: both;
  1721. }
  1722. .box .box-footer:before,
  1723. .box .box-footer:after {
  1724. content: " ";
  1725. display: table;
  1726. }
  1727. .box .box-footer:after {
  1728. clear: both;
  1729. }
  1730. @media (max-width: 991px) {
  1731. .box .box-footer .btn {
  1732. margin-bottom: 20px;
  1733. }
  1734. }
  1735. .box.no-border {
  1736. border: none;
  1737. }
  1738. #heading-breadcrumbs {
  1739. background: url("https://i.imgur.com/N7tVTSh.png");
  1740. padding: 0 0;
  1741. background-size: cover;
  1742. background-repeat: no-repeat;
  1743. padding-bottom: 20px;
  1744. margin-bottom: 40px;
  1745. text-align: center;
  1746. position: relative;
  1747. }
  1748. #heading-breadcrumbs .breadcrumbs_title {
  1749. position: relative;
  1750. }
  1751. #heading-breadcrumbs .breadcrumbs_title::after {
  1752. position: absolute;
  1753. width: 6rem;
  1754. height: 0.5rem;
  1755. top: 145%;
  1756. left: 47.5%;
  1757. content: "";
  1758. background-color: #ea5413;
  1759. }
  1760. #heading-breadcrumbs .blog_social {
  1761. display: flex;
  1762. align-items: center;
  1763. }
  1764. #heading-breadcrumbs .blog_social a {
  1765. margin-right: 1rem;
  1766. }
  1767. #heading-breadcrumbs .container:nth-of-type(1) {
  1768. padding: 60px 0;
  1769. }
  1770. #heading-breadcrumbs .container:nth-of-type(2) {
  1771. padding-top: 10px;
  1772. padding-bottom: 10px;
  1773. font-size: 1.8rem;
  1774. }
  1775. #heading-breadcrumbs .col {
  1776. position: relative;
  1777. }
  1778. #heading-breadcrumbs .col::before {
  1779. position: absolute;
  1780. content: "";
  1781. width: 100%;
  1782. height: 100%;
  1783. border-left: 1px solid black;
  1784. left: 0;
  1785. top: 0;
  1786. z-index: -1;
  1787. }
  1788. #heading-breadcrumbs .col:last-of-type::after {
  1789. position: absolute;
  1790. content: "";
  1791. width: 100%;
  1792. height: 100%;
  1793. border-right: 1px solid black;
  1794. left: 0;
  1795. top: 0;
  1796. z-index: -1;
  1797. }
  1798. @media (min-width: 1200px) {
  1799. #heading-breadcrumbs .container:nth-of-type(2) {
  1800. max-width: 60%;
  1801. }
  1802. }
  1803. #heading-breadcrumbs .container:nth-of-type(2) a {
  1804. color: #181c47;
  1805. }
  1806. #heading-breadcrumbs.no-mb {
  1807. margin-bottom: 0;
  1808. }
  1809. #heading-breadcrumbs h1 {
  1810. color: #333333;
  1811. text-transform: uppercase;
  1812. font-size: 30px;
  1813. font-weight: 700;
  1814. letter-spacing: 0.08em;
  1815. }
  1816. @media (max-width: 991px) {
  1817. #heading-breadcrumbs h1 {
  1818. text-align: center;
  1819. }
  1820. }
  1821. #heading-breadcrumbs ul.breadcrumb {
  1822. margin-top: 5px;
  1823. margin-bottom: 0;
  1824. }
  1825. .bar {
  1826. position: relative;
  1827. background: #38a7bb;
  1828. padding: 60px 0;
  1829. }
  1830. .bar.background-pentagon {
  1831. background: url("../img/texture-bw.png") center center repeat;
  1832. border-top: solid 1px #999999;
  1833. border-bottom: solid 1px #999999;
  1834. }
  1835. .bar.background-gray {
  1836. background: #eeeeee;
  1837. }
  1838. .bar.background-gray-dark {
  1839. background: #555555;
  1840. }
  1841. .bar.background-white {
  1842. background: #fff;
  1843. }
  1844. .bar.background-image-fixed-1 {
  1845. background: url("../img/fixed-background-1.jpg") center top no-repeat;
  1846. background-attachment: fixed;
  1847. background-size: cover;
  1848. }
  1849. .bar.background-image-fixed-2 {
  1850. background: url("../img/fixed-background-2.jpg") center top no-repeat;
  1851. background-attachment: fixed;
  1852. background-size: cover;
  1853. }
  1854. .bar.color-white h1,
  1855. .bar.color-white h2,
  1856. .bar.color-white h3,
  1857. .bar.color-white h4,
  1858. .bar.color-white h5,
  1859. .bar.color-white h6,
  1860. .bar.color-white p {
  1861. color: #fff;
  1862. }
  1863. .bar.padding-big {
  1864. padding: 50px 0;
  1865. }
  1866. .bar.padding-horizontal {
  1867. padding-left: 30px;
  1868. padding-right: 30px;
  1869. }
  1870. .bar.margin-vertical {
  1871. margin-top: 20px;
  1872. margin-bottom: 20px;
  1873. }
  1874. .bar .dark-mask {
  1875. position: absolute;
  1876. top: 0;
  1877. left: 0;
  1878. width: 100%;
  1879. height: 100%;
  1880. background: #000;
  1881. opacity: 0.3;
  1882. filter: alpha(opacity=30);
  1883. }
  1884. .portfolio.no-space {
  1885. padding: 0 15px;
  1886. }
  1887. .portfolio.no-space .box-image {
  1888. margin: 0 -15px;
  1889. }
  1890. .portfolio-project .project-more h4 {
  1891. color: #555555;
  1892. text-transform: uppercase;
  1893. margin-bottom: 0;
  1894. text-align: left;
  1895. font-size: 14px;
  1896. letter-spacing: 0.08em;
  1897. }
  1898. .portfolio-project .project-more p {
  1899. color: #999999;
  1900. padding: 10px 0;
  1901. margin-bottom: 20px;
  1902. text-align: left;
  1903. }
  1904. .portfolio-showcase {
  1905. margin: 15px 0 60px;
  1906. }
  1907. .portfolio-showcase h3 a {
  1908. text-transform: uppercase;
  1909. line-height: 1.5;
  1910. letter-spacing: 0.08em;
  1911. }
  1912. .portfolio-showcase p.lead {
  1913. color: #555555;
  1914. margin-bottom: 20px;
  1915. }
  1916. .portfolio-showcase p {
  1917. color: #999999;
  1918. }
  1919. .portfolio-showcase p.buttons {
  1920. margin-top: 40px;
  1921. }
  1922. .see-more {
  1923. text-align: center;
  1924. margin-top: 20px;
  1925. padding-top: 20px;
  1926. }
  1927. .see-more p {
  1928. font-size: 28px;
  1929. font-weight: 100;
  1930. margin-bottom: 20px;
  1931. }
  1932. .showcase .item {
  1933. text-align: center;
  1934. }
  1935. .showcase .item .icon {
  1936. display: inline-block;
  1937. width: 50px;
  1938. height: 50px;
  1939. color: #555555;
  1940. line-height: 50px;
  1941. border-radius: 25px;
  1942. border: solid 1px #555555;
  1943. }
  1944. .showcase .item h4 {
  1945. color: #555555;
  1946. text-transform: uppercase;
  1947. letter-spacing: 0.08em;
  1948. line-height: 1.5;
  1949. font-size: 16px;
  1950. }
  1951. .showcase .item h4 span {
  1952. font-weight: bold;
  1953. font-size: 51px;
  1954. }
  1955. .packages .package {
  1956. background: #fff;
  1957. margin-top: 25px;
  1958. margin-bottom: 20px;
  1959. padding-bottom: 15px;
  1960. text-align: center;
  1961. border: solid 1px #38a7bb;
  1962. overflow: hidden;
  1963. }
  1964. .packages .package .package-header {
  1965. height: 57px;
  1966. color: #fff;
  1967. line-height: 57px;
  1968. background: #38a7bb;
  1969. }
  1970. .packages .package .package-header h5 {
  1971. color: #fff;
  1972. text-transform: uppercase;
  1973. font-weight: bold;
  1974. line-height: 57px;
  1975. margin: 0;
  1976. letter-spacing: 0.08em;
  1977. }
  1978. .packages .package .package-header.light-gray {
  1979. background: #eeeeee;
  1980. }
  1981. .packages .package .package-header.light-gray h5 {
  1982. color: #555555;
  1983. }
  1984. .packages .package .price {
  1985. line-height: 120px;
  1986. height: 100px;
  1987. color: #fff;
  1988. font-weight: 400;
  1989. }
  1990. .packages .package .price h4 {
  1991. display: inline;
  1992. font-size: 50px;
  1993. line-height: normal;
  1994. margin-bottom: 0;
  1995. }
  1996. .packages .package .price .period {
  1997. line-height: normal;
  1998. color: #999999;
  1999. }
  2000. .packages .package ul {
  2001. padding: 0;
  2002. }
  2003. .packages .package ul li {
  2004. list-style-type: none;
  2005. padding-top: 10px;
  2006. padding-bottom: 10px;
  2007. width: 80%;
  2008. margin: auto;
  2009. border-bottom: 1px dotted #ccc;
  2010. }
  2011. .packages .package ul li:last-child {
  2012. border-bottom: 0;
  2013. }
  2014. .packages .package ul li i {
  2015. font-size: 13px;
  2016. margin-right: 5px;
  2017. }
  2018. .packages .best-value .package {
  2019. margin-top: 0;
  2020. padding-bottom: 40px;
  2021. }
  2022. .packages .best-value .package .package-header {
  2023. height: 72px;
  2024. padding-top: 17px;
  2025. height: 82px !important;
  2026. }
  2027. .packages .best-value .package .package-header h5 {
  2028. font-weight: bold;
  2029. line-height: 29px;
  2030. text-transform: uppercase;
  2031. letter-spacing: 0.08em;
  2032. }
  2033. .packages .best-value .package .package-header .meta-text {
  2034. font-size: 13px;
  2035. line-height: 15px;
  2036. }
  2037. #map {
  2038. height: 300px;
  2039. }
  2040. #map.with-border {
  2041. border-top: solid 1px #38a7bb;
  2042. border-bottom: solid 1px #38a7bb;
  2043. }
  2044. #blog-listing-big .post,
  2045. #blog-homepage .post {
  2046. margin-bottom: 60px;
  2047. }
  2048. #blog-listing-big .post h2,
  2049. #blog-homepage .post h2,
  2050. #blog-listing-big .post h4,
  2051. #blog-homepage .post h4 {
  2052. text-transform: uppercase;
  2053. letter-spacing: 0.08em;
  2054. }
  2055. #blog-listing-big .post h2 a,
  2056. #blog-homepage .post h2 a,
  2057. #blog-listing-big .post h4 a,
  2058. #blog-homepage .post h4 a {
  2059. color: #555555;
  2060. }
  2061. #blog-listing-big .post h2 a:hover,
  2062. #blog-homepage .post h2 a:hover,
  2063. #blog-listing-big .post h4 a:hover,
  2064. #blog-homepage .post h4 a:hover {
  2065. color: #38a7bb;
  2066. }
  2067. #blog-listing-big .post .author-category,
  2068. #blog-homepage .post .author-category {
  2069. color: #999999;
  2070. text-transform: uppercase;
  2071. font-weight: 300;
  2072. letter-spacing: 0.08em;
  2073. }
  2074. #blog-listing-big .post .author-category a,
  2075. #blog-homepage .post .author-category a {
  2076. font-weight: 500;
  2077. }
  2078. #blog-listing-big .post .date-comments a,
  2079. #blog-homepage .post .date-comments a {
  2080. color: #999999;
  2081. margin-right: 20px;
  2082. }
  2083. #blog-listing-big .post .date-comments a:hover,
  2084. #blog-homepage .post .date-comments a:hover {
  2085. color: #38a7bb;
  2086. }
  2087. @media (min-width: 768px) {
  2088. #blog-listing-big .post .date-comments,
  2089. #blog-homepage .post .date-comments {
  2090. text-align: right;
  2091. }
  2092. }
  2093. #blog-listing-big .post .intro,
  2094. #blog-homepage .post .intro {
  2095. text-align: left;
  2096. }
  2097. #blog-listing-big .post .image,
  2098. #blog-homepage .post .image {
  2099. margin-bottom: 10px;
  2100. overflow: hidden;
  2101. }
  2102. #blog-listing-big .post .image img,
  2103. #blog-homepage .post .image img {
  2104. -webkit-transition: all 0.2s ease-out;
  2105. -moz-transition: all 0.2s ease-out;
  2106. transition: all 0.2s ease-out;
  2107. }
  2108. @media (max-width: 767px) {
  2109. #blog-listing-big .post .image img.img-responsive,
  2110. #blog-homepage .post .image img.img-responsive {
  2111. min-width: 100%;
  2112. }
  2113. }
  2114. #blog-listing-big .post .video,
  2115. #blog-homepage .post .video {
  2116. margin-bottom: 10px;
  2117. }
  2118. #blog-listing-big .post .read-more,
  2119. #blog-homepage .post .read-more {
  2120. text-align: right;
  2121. }
  2122. #blog-listing-medium .post {
  2123. margin-bottom: 60px;
  2124. }
  2125. #blog-listing-medium .post h2 {
  2126. text-transform: uppercase;
  2127. margin: 0 0 10px;
  2128. font-size: 24px;
  2129. letter-spacing: 0.08em;
  2130. }
  2131. #blog-listing-medium .post h2 a {
  2132. color: #555555;
  2133. }
  2134. #blog-listing-medium .post h2 a:hover {
  2135. color: grey;
  2136. }
  2137. #blog-listing-medium .post .author-category {
  2138. float: left;
  2139. color: #999999;
  2140. text-transform: uppercase;
  2141. font-weight: 300;
  2142. font-size: 12px;
  2143. letter-spacing: 0.08em;
  2144. }
  2145. #blog-listing-medium .post .author-category a {
  2146. font-weight: 500;
  2147. }
  2148. #blog-listing-medium .post .date-comments {
  2149. float: right;
  2150. font-size: 12px;
  2151. }
  2152. #blog-listing-medium .post .date-comments a {
  2153. color: #999999;
  2154. margin-right: 20px;
  2155. }
  2156. #blog-listing-medium .post .date-comments a:hover {
  2157. color: #38a7bb;
  2158. }
  2159. @media (min-width: 768px) {
  2160. #blog-listing-medium .post .date-comments {
  2161. text-align: right;
  2162. }
  2163. }
  2164. #blog-listing-medium .post .intro {
  2165. text-align: left;
  2166. }
  2167. #blog-listing-medium .post .clearfix:before,
  2168. #blog-listing-medium .post .clearfix:after,
  2169. #blog-listing-medium .post .navbar:before,
  2170. #blog-listing-medium .post .navbar:after,
  2171. #blog-listing-medium .post .navbar-header:before,
  2172. #blog-listing-medium .post .navbar-header:after {
  2173. content: " ";
  2174. display: table;
  2175. }
  2176. #blog-listing-medium .post .clearfix:after,
  2177. #blog-listing-medium .post .navbar:after,
  2178. #blog-listing-medium .post .navbar-header:after {
  2179. clear: both;
  2180. }
  2181. #blog-listing-medium .post .clearfix:before,
  2182. #blog-listing-medium .post .clearfix:after,
  2183. #blog-listing-medium .post .navbar:before,
  2184. #blog-listing-medium .post .navbar:after,
  2185. #blog-listing-medium .post .navbar-header:before,
  2186. #blog-listing-medium .post .navbar-header:after {
  2187. content: " ";
  2188. display: table;
  2189. }
  2190. #blog-listing-medium .post .clearfix:after,
  2191. #blog-listing-medium .post .navbar:after,
  2192. #blog-listing-medium .post .navbar-header:after {
  2193. clear: both;
  2194. }
  2195. #blog-listing-medium .post .image {
  2196. margin-bottom: 10px;
  2197. overflow: hidden;
  2198. }
  2199. #blog-listing-medium .post .image img {
  2200. -webkit-transition: all 0.2s ease-out;
  2201. -moz-transition: all 0.2s ease-out;
  2202. transition: all 0.2s ease-out;
  2203. height: 160px;
  2204. width: 100%;
  2205. object-fit: cover;
  2206. position: relative;
  2207. }
  2208. @media (max-width: 991px) {
  2209. #blog-listing-medium .post .image img {
  2210. height: 45vw;
  2211. }
  2212. }
  2213. @media (max-width: 767px) {
  2214. #blog-listing-medium .post .image img.img-responsive {
  2215. min-width: 100%;
  2216. }
  2217. }
  2218. #blog-listing-medium .post .image::after {
  2219. position: absolute;
  2220. content: " ";
  2221. right: 4rem;
  2222. bottom: 4rem;
  2223. width: 90%;
  2224. height: 91%;
  2225. z-index: -1;
  2226. }
  2227. #blog-listing-medium .post .image img {
  2228. border: 5px solid white;
  2229. }
  2230. #blog-listing-medium .post:nth-of-type(3n + 1) .image::after {
  2231. background-color: thistle;
  2232. }
  2233. #blog-listing-medium .post:nth-of-type(3n + 2) .image::after {
  2234. background-color: #f3f3f9;
  2235. }
  2236. #blog-listing-medium .post:nth-of-type(3n) .image::after {
  2237. background-color: #eba764;
  2238. }
  2239. #blog-listing-medium .post .video {
  2240. margin-bottom: 10px;
  2241. }
  2242. #blog-listing-medium .post .read-more {
  2243. text-align: right;
  2244. }
  2245. .box-image-text.blog .author-category {
  2246. color: #999999;
  2247. text-transform: uppercase;
  2248. letter-spacing: 0.08em;
  2249. font-weight: 300;
  2250. font-size: 12px;
  2251. }
  2252. .box-image-text.blog .author-category a {
  2253. font-weight: 500;
  2254. }
  2255. .box-image-text.blog .intro {
  2256. text-align: left;
  2257. margin-bottom: 20px;
  2258. }
  2259. #blog-homepage .post {
  2260. margin-bottom: 30px;
  2261. }
  2262. #blog-homepage .post h2,
  2263. #blog-homepage .post h4,
  2264. #blog-homepage .post .author-category,
  2265. #blog-homepage .post .read-more {
  2266. text-align: center;
  2267. }
  2268. #blog-homepage .post .read-more {
  2269. margin-top: 20px;
  2270. }
  2271. #blog-post #post-content {
  2272. margin-bottom: 20px;
  2273. }
  2274. #blog-post .comment {
  2275. margin-bottom: 25px;
  2276. }
  2277. #blog-post .comment:before,
  2278. #blog-post .comment:after {
  2279. content: " ";
  2280. display: table;
  2281. }
  2282. #blog-post .comment:after {
  2283. clear: both;
  2284. }
  2285. #blog-post .comment:before,
  2286. #blog-post .comment:after {
  2287. content: " ";
  2288. display: table;
  2289. }
  2290. #blog-post .comment:after {
  2291. clear: both;
  2292. }
  2293. #blog-post .comment .posted {
  2294. color: #999999;
  2295. font-size: 12px;
  2296. }
  2297. #blog-post .comment .reply {
  2298. font-family: "Roboto", Helvetica, Arial, sans-serif;
  2299. }
  2300. #blog-post .comment.last {
  2301. margin-bottom: 0;
  2302. }
  2303. #blog-post #comments,
  2304. #blog-post #comment-form {
  2305. padding: 20px 0;
  2306. margin-top: 20px;
  2307. border-top: solid 1px #eeeeee;
  2308. }
  2309. #blog-post #comments:before,
  2310. #blog-post #comment-form:before,
  2311. #blog-post #comments:after,
  2312. #blog-post #comment-form:after {
  2313. content: " ";
  2314. display: table;
  2315. }
  2316. #blog-post #comments:after,
  2317. #blog-post #comment-form:after {
  2318. clear: both;
  2319. }
  2320. #blog-post #comments:before,
  2321. #blog-post #comment-form:before,
  2322. #blog-post #comments:after,
  2323. #blog-post #comment-form:after {
  2324. content: " ";
  2325. display: table;
  2326. }
  2327. #blog-post #comments:after,
  2328. #blog-post #comment-form:after {
  2329. clear: both;
  2330. }
  2331. #blog-post #comments h4,
  2332. #blog-post #comment-form h4 {
  2333. margin-bottom: 20px;
  2334. }
  2335. #blog-post #comment-form {
  2336. margin-bottom: 20px;
  2337. }
  2338. .product {
  2339. background: #fff;
  2340. border-bottom: solid 1px #e6e6e6;
  2341. -webkit-box-sizing: border-box;
  2342. -moz-box-sizing: border-box;
  2343. box-sizing: border-box;
  2344. margin-bottom: 60px;
  2345. overflow: hidden;
  2346. text-align: center;
  2347. }
  2348. .product .image {
  2349. overflow: hidden;
  2350. }
  2351. .product .image img {
  2352. -webkit-transition: all 0.2s ease-out;
  2353. -moz-transition: all 0.2s ease-out;
  2354. transition: all 0.2s ease-out;
  2355. }
  2356. @media (max-width: 767px) {
  2357. .product .image img.img-responsive {
  2358. min-width: 100%;
  2359. }
  2360. }
  2361. .product .text {
  2362. padding: 10px;
  2363. }
  2364. .product .text h3 {
  2365. font-size: 14px;
  2366. font-weight: 700;
  2367. height: 39.6px;
  2368. text-transform: uppercase;
  2369. letter-spacing: 0.08em;
  2370. }
  2371. .product .text h3 a {
  2372. color: #555555;
  2373. }
  2374. .product .text h3 a:hover {
  2375. text-decoration: none;
  2376. }
  2377. .product .text p.price {
  2378. font-size: 18px;
  2379. }
  2380. .product .text p.price del {
  2381. color: #999999;
  2382. }
  2383. .product .buttons {
  2384. clear: both;
  2385. position: absolute;
  2386. display: none;
  2387. bottom: 0;
  2388. -webkit-box-sizing: border-box;
  2389. -moz-box-sizing: border-box;
  2390. box-sizing: border-box;
  2391. width: 100%;
  2392. border: solid 1px transparent;
  2393. padding: 20px;
  2394. background: rgba(255, 255, 255, 0.9);
  2395. -webkit-transition: all 0.2s ease-out;
  2396. -moz-transition: all 0.2s ease-out;
  2397. transition: all 0.2s ease-out;
  2398. text-align: center;
  2399. }
  2400. .product .buttons .btn {
  2401. margin-bottom: 20px;
  2402. }
  2403. .product:hover {
  2404. border-bottom: solid 1px #808080;
  2405. top: 0;
  2406. }
  2407. .product:hover .buttons {
  2408. clear: both;
  2409. position: absolute;
  2410. top: 0;
  2411. background: rgba(255, 255, 255, 0.5);
  2412. }
  2413. .product:hover .image img {
  2414. -webkit-transform: scale(1.1, 1.1);
  2415. -ms-transform: scale(1.1, 1.1);
  2416. -o-transform: scale(1.1, 1.1);
  2417. transform: scale(1.1, 1.1);
  2418. }
  2419. .goToDescription {
  2420. font-size: 12px;
  2421. text-align: center;
  2422. margin-bottom: 40px;
  2423. }
  2424. .goToDescription a {
  2425. color: #999999;
  2426. text-decoration: underline;
  2427. }
  2428. #productMain {
  2429. margin-bottom: 30px;
  2430. }
  2431. #productMain .sizes {
  2432. text-align: center;
  2433. }
  2434. #productMain .sizes h3 {
  2435. font-weight: 700;
  2436. letter-spacing: 0.08em;
  2437. text-transform: uppercase;
  2438. margin-bottom: 40px;
  2439. }
  2440. #productMain .sizes a {
  2441. display: inline-block;
  2442. width: 40px;
  2443. height: 40px;
  2444. border-radius: 40px;
  2445. background: #ccc;
  2446. line-height: 40px;
  2447. color: #555555;
  2448. text-align: center;
  2449. text-decoration: none;
  2450. font-family: "Roboto", Helvetica, Arial, sans-serif;
  2451. }
  2452. #productMain .sizes a.active,
  2453. #productMain .sizes a:hover {
  2454. background: #38a7bb;
  2455. color: #fff;
  2456. }
  2457. #productMain .sizes input {
  2458. display: none;
  2459. }
  2460. #productMain .price {
  2461. font-size: 40px;
  2462. text-align: center;
  2463. margin-top: 40px;
  2464. margin-bottom: 40px;
  2465. }
  2466. #thumbs a {
  2467. display: block;
  2468. border: solid 1px transparent;
  2469. }
  2470. #thumbs a.active {
  2471. border-color: #38a7bb;
  2472. }
  2473. #product-social {
  2474. text-align: center;
  2475. }
  2476. #product-social h4 {
  2477. font-weight: 300;
  2478. margin-bottom: 10px;
  2479. }
  2480. #product-social p {
  2481. line-height: 26px;
  2482. }
  2483. #product-social p a {
  2484. margin: 0 10px 0 0;
  2485. color: #fff;
  2486. display: inline-block;
  2487. width: 26px;
  2488. height: 26px;
  2489. border-radius: 13px;
  2490. line-height: 26px;
  2491. font-size: 15px;
  2492. text-align: center;
  2493. -webkit-transition: all 0.2s ease-out;
  2494. -moz-transition: all 0.2s ease-out;
  2495. transition: all 0.2s ease-out;
  2496. vertical-align: bottom;
  2497. }
  2498. #product-social p a i {
  2499. vertical-align: bottom;
  2500. line-height: 26px;
  2501. }
  2502. #product-social p a.facebook {
  2503. background-color: #4460ae;
  2504. }
  2505. #product-social p a.gplus {
  2506. background-color: #c21f25;
  2507. }
  2508. #product-social p a.twitter {
  2509. background-color: #3cf;
  2510. }
  2511. #product-social p a.instagram {
  2512. background-color: #cd4378;
  2513. }
  2514. #product-social p a.email {
  2515. background-color: #4a7f45;
  2516. }
  2517. @media (max-width: 991px) {
  2518. #product-social {
  2519. text-align: center;
  2520. }
  2521. }
  2522. #checkout .nav {
  2523. margin-bottom: 20px;
  2524. border-bottom: solid 1px #38a7bb;
  2525. }
  2526. #checkout .nav li {
  2527. height: 100%;
  2528. }
  2529. #checkout .nav li a {
  2530. display: block;
  2531. height: 100%;
  2532. }
  2533. #order-summary table {
  2534. margin-top: 20px;
  2535. }
  2536. #order-summary table td {
  2537. color: #999999;
  2538. }
  2539. #order-summary table tr.total td,
  2540. #order-summary table tr.total th {
  2541. font-size: 18px;
  2542. color: #555555;
  2543. font-weight: 700;
  2544. }
  2545. #checkout .table tbody tr td,
  2546. #basket .table tbody tr td,
  2547. #customer-order .table tbody tr td {
  2548. vertical-align: middle;
  2549. }
  2550. #checkout .table tbody tr td input,
  2551. #basket .table tbody tr td input,
  2552. #customer-order .table tbody tr td input {
  2553. width: 50px;
  2554. text-align: right;
  2555. }
  2556. #checkout .table tbody tr td img,
  2557. #basket .table tbody tr td img,
  2558. #customer-order .table tbody tr td img {
  2559. width: 50px;
  2560. }
  2561. #checkout .table tfoot,
  2562. #basket .table tfoot,
  2563. #customer-order .table tfoot {
  2564. font-size: 18px;
  2565. }
  2566. .shipping-method h4,
  2567. .payment-method h4 {
  2568. text-transform: uppercase;
  2569. letter-spacing: 0.08em;
  2570. }
  2571. #customer-orders table tr th,
  2572. #customer-orders table tr td {
  2573. vertical-align: baseline;
  2574. }
  2575. #customer-order .table tfoot th {
  2576. font-size: 18px;
  2577. font-weight: 300;
  2578. }
  2579. #customer-order .addresses {
  2580. text-align: right;
  2581. margin-bottom: 30px;
  2582. }
  2583. #customer-order .addresses p {
  2584. font-size: 18px;
  2585. font-weight: 300;
  2586. }
  2587. #customer-account {
  2588. margin-bottom: 30px;
  2589. }
  2590. #get-it {
  2591. background: #38a7bb;
  2592. padding: 50px 0 30px;
  2593. color: #fff;
  2594. text-align: center;
  2595. }
  2596. #get-it h1,
  2597. #get-it h2,
  2598. #get-it h3,
  2599. #get-it h4,
  2600. #get-it h5,
  2601. #get-it h6 {
  2602. color: #fff;
  2603. text-transform: uppercase;
  2604. letter-spacing: 0.08em;
  2605. margin: 0 0 20px;
  2606. }
  2607. #get-it p {
  2608. margin: 0 0 20px;
  2609. }
  2610. #footer {
  2611. background: #f0f0f0;
  2612. padding: 50px 0;
  2613. color: #24282f;
  2614. }
  2615. #footer h1,
  2616. #footer h2,
  2617. #footer h3,
  2618. #footer h4,
  2619. #footer h5,
  2620. #footer h6 {
  2621. color: #eeeeee;
  2622. }
  2623. #footer h4 {
  2624. font-size: 14px;
  2625. font-weight: 800;
  2626. text-transform: uppercase;
  2627. letter-spacing: 0.08em;
  2628. }
  2629. #footer ul {
  2630. padding-left: 0;
  2631. list-style: none;
  2632. }
  2633. #footer ul a {
  2634. color: #999999;
  2635. }
  2636. #footer ul a:hover {
  2637. color: #38a7bb;
  2638. text-decoration: none;
  2639. }
  2640. #footer .photostream div {
  2641. float: left;
  2642. display: block;
  2643. -webkit-box-sizing: border-box;
  2644. -moz-box-sizing: border-box;
  2645. box-sizing: border-box;
  2646. width: 33%;
  2647. padding: 7.5px;
  2648. overflow: hidden;
  2649. }
  2650. #footer .photostream div a {
  2651. border: solid 1 px #eeeeee;
  2652. }
  2653. #footer .photostream div img {
  2654. -webkit-transition: all 0.2s ease-out;
  2655. -moz-transition: all 0.2s ease-out;
  2656. transition: all 0.2s ease-out;
  2657. }
  2658. #footer .photostream div:hover img {
  2659. -webkit-transform: scale(1.1, 1.1);
  2660. -ms-transform: scale(1.1, 1.1);
  2661. -o-transform: scale(1.1, 1.1);
  2662. transform: scale(1.1, 1.1);
  2663. }
  2664. #footer .blog-entries .item {
  2665. clear: both;
  2666. padding: 5px 0;
  2667. margin-bottom: 10px;
  2668. border-bottom: solid 1px #555555;
  2669. }
  2670. #footer .blog-entries .item .image {
  2671. float: left;
  2672. width: 15%;
  2673. margin-right: 10px;
  2674. }
  2675. #footer .blog-entries .item .name {
  2676. width: 75%;
  2677. margin-left: 10px;
  2678. display: table-cell;
  2679. vertical-align: middle;
  2680. }
  2681. #footer .blog-entries .item .name h5 {
  2682. margin: 0;
  2683. text-transform: uppercase;
  2684. letter-spacing: 0.08em;
  2685. font-size: 12px;
  2686. }
  2687. #footer .blog-entries .item .name h5 a {
  2688. color: #eeeeee;
  2689. }
  2690. #footer .blog-entries .item .text {
  2691. width: 100%;
  2692. clear: both;
  2693. }
  2694. #footer .blog-entries .item:last-child {
  2695. border-bottom: none;
  2696. margin-bottom: 0;
  2697. }
  2698. #footer .social a {
  2699. color: #555555;
  2700. font-size: 25px;
  2701. margin: 0 10px 0 0;
  2702. }
  2703. #footer .social a:hover {
  2704. color: #38a7bb;
  2705. }
  2706. #copyright {
  2707. background: #333;
  2708. color: #ccc;
  2709. padding: 50px 0;
  2710. font-size: 12px;
  2711. line-height: 28px;
  2712. }
  2713. #copyright p {
  2714. margin: 0;
  2715. }
  2716. @media (max-width: 991px) {
  2717. #copyright p {
  2718. float: none !important;
  2719. text-align: center;
  2720. margin-bottom: 10px;
  2721. }
  2722. }
  2723. [data-animate] {
  2724. opacity: 0;
  2725. filter: alpha(opacity=0);
  2726. }
  2727. #style-switch-button {
  2728. position: fixed;
  2729. top: 100px;
  2730. left: 0px;
  2731. border-radius: 0;
  2732. }
  2733. #style-switch {
  2734. -webkit-box-sizing: border-box;
  2735. -moz-box-sizing: border-box;
  2736. box-sizing: border-box;
  2737. width: 300px;
  2738. padding: 20px;
  2739. position: fixed;
  2740. top: 140px;
  2741. left: 0;
  2742. background: #fff;
  2743. border: solid 1px #eeeeee;
  2744. }
  2745. @media (max-width: 991px) {
  2746. #style-switch-button {
  2747. display: none;
  2748. }
  2749. #style-switch {
  2750. display: none;
  2751. }
  2752. }
  2753. /* Original Boostrap template overwrite */
  2754. /* breadcrumbs */
  2755. .breadcrumb {
  2756. font-family: "Roboto", Helvetica, Arial, sans-serif;
  2757. text-transform: uppercase;
  2758. background-color: none;
  2759. letter-spacing: 0.08em;
  2760. }
  2761. /* nav */
  2762. .nav > li > a {
  2763. padding: 10px 15px;
  2764. }
  2765. .nav > li > a:hover,
  2766. .nav > li > a:focus {
  2767. background-color: #eeeeee;
  2768. }
  2769. .nav > li.disabled > a {
  2770. color: #999999;
  2771. }
  2772. .nav > li.disabled > a:hover,
  2773. .nav > li.disabled > a:focus {
  2774. color: #999999;
  2775. }
  2776. .nav .open > a,
  2777. .nav .open > a:hover,
  2778. .nav .open > a:focus {
  2779. background-color: #eeeeee;
  2780. border-color: #38a7bb;
  2781. }
  2782. .nav-tabs {
  2783. border-bottom: 1px solid #38a7bb;
  2784. }
  2785. .nav-tabs > li {
  2786. float: left;
  2787. margin-bottom: -1px;
  2788. }
  2789. .nav-tabs > li > a {
  2790. margin-right: 2px;
  2791. line-height: 1.42857143;
  2792. border: 1px solid transparent;
  2793. border-radius: 0 0 0 0;
  2794. }
  2795. .nav-tabs > li > a:hover {
  2796. border-color: #eeeeee #eeeeee #38a7bb;
  2797. }
  2798. .nav-tabs > li.active > a,
  2799. .nav-tabs > li.active > a:hover,
  2800. .nav-tabs > li.active > a:focus {
  2801. color: #555555;
  2802. background-color: #ffffff;
  2803. border: 1px solid #38a7bb;
  2804. border-bottom-color: transparent;
  2805. cursor: default;
  2806. }
  2807. .nav-tabs.nav-justified {
  2808. width: 100%;
  2809. border-bottom: solid 1px #38a7bb;
  2810. border-bottom: 0;
  2811. }
  2812. .nav-tabs.nav-justified > li {
  2813. float: none;
  2814. }
  2815. .nav-tabs.nav-justified > li > a {
  2816. text-align: center;
  2817. /*margin-bottom: 5px;*/
  2818. }
  2819. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  2820. top: auto;
  2821. left: auto;
  2822. }
  2823. .nav-tabs.nav-justified > li > a {
  2824. margin-right: 0;
  2825. border-radius: 0;
  2826. }
  2827. .nav-tabs.nav-justified > .active > a,
  2828. .nav-tabs.nav-justified > .active > a:hover,
  2829. .nav-tabs.nav-justified > .active > a:focus {
  2830. border: 1px solid #38a7bb;
  2831. }
  2832. @media (min-width: 768px) {
  2833. .nav-tabs.nav-justified > li > a {
  2834. border-bottom: 1px solid #38a7bb;
  2835. border-radius: 0 0 0 0;
  2836. }
  2837. .nav-tabs.nav-justified > .active > a,
  2838. .nav-tabs.nav-justified > .active > a:hover,
  2839. .nav-tabs.nav-justified > .active > a:focus {
  2840. border-bottom-color: #ffffff;
  2841. }
  2842. }
  2843. .nav-pills > li {
  2844. float: left;
  2845. }
  2846. .nav-pills > li > a {
  2847. border-radius: 0;
  2848. }
  2849. .nav-pills > li + li {
  2850. margin-left: 2px;
  2851. }
  2852. .nav-pills > li.active > a,
  2853. .nav-pills > li.active > a:hover,
  2854. .nav-pills > li.active > a:focus {
  2855. color: #ffffff;
  2856. background-color: #ffebe2;
  2857. }
  2858. .nav-stacked > li {
  2859. float: none;
  2860. }
  2861. .nav-stacked > li + li {
  2862. margin-top: 2px;
  2863. margin-left: 0;
  2864. }
  2865. .nav-justified {
  2866. width: 100%;
  2867. border-bottom: solid 1px #38a7bb;
  2868. }
  2869. .nav-justified > li {
  2870. float: none;
  2871. }
  2872. .nav-justified > li > a {
  2873. text-align: center;
  2874. /*margin-bottom: 5px;*/
  2875. }
  2876. .nav-justified > .dropdown .dropdown-menu {
  2877. top: auto;
  2878. left: auto;
  2879. }
  2880. .nav-tabs-justified {
  2881. border-bottom: 0;
  2882. }
  2883. .nav-tabs-justified > li > a {
  2884. margin-right: 0;
  2885. border-radius: 0;
  2886. }
  2887. .nav-tabs-justified > .active > a,
  2888. .nav-tabs-justified > .active > a:hover,
  2889. .nav-tabs-justified > .active > a:focus {
  2890. border: 1px solid #38a7bb;
  2891. }
  2892. @media (min-width: 768px) {
  2893. .nav-tabs-justified > li > a {
  2894. border-bottom: 1px solid #38a7bb;
  2895. border-radius: 0 0 0 0;
  2896. }
  2897. .nav-tabs-justified > .active > a,
  2898. .nav-tabs-justified > .active > a:hover,
  2899. .nav-tabs-justified > .active > a:focus {
  2900. border-bottom-color: #ffffff;
  2901. }
  2902. }
  2903. .tab-content {
  2904. padding: 15px;
  2905. border: solid 1px #ddd;
  2906. border-top: none;
  2907. }
  2908. /* navbar */
  2909. .navbar {
  2910. position: relative;
  2911. min-height: 62px;
  2912. margin-bottom: 0;
  2913. border-bottom: 1px solid transparent;
  2914. }
  2915. @media (min-width: 768px) {
  2916. .navbar {
  2917. border-radius: 0px;
  2918. }
  2919. }
  2920. @media (min-width: 768px) {
  2921. .navbar-header {
  2922. float: left;
  2923. }
  2924. }
  2925. .navbar-collapse {
  2926. overflow-x: visible;
  2927. padding-right: 15px;
  2928. padding-left: 15px;
  2929. }
  2930. .navbar-collapse.in {
  2931. overflow-y: auto;
  2932. }
  2933. @media (min-width: 768px) {
  2934. .navbar-collapse {
  2935. width: auto;
  2936. border-top: 0;
  2937. box-shadow: none;
  2938. }
  2939. .navbar-collapse.collapse {
  2940. display: block !important;
  2941. height: auto !important;
  2942. padding-bottom: 0;
  2943. overflow: visible !important;
  2944. }
  2945. .navbar-collapse.in {
  2946. overflow-y: visible;
  2947. }
  2948. .navbar-fixed-top .navbar-collapse,
  2949. .navbar-static-top .navbar-collapse,
  2950. .navbar-fixed-bottom .navbar-collapse {
  2951. padding-left: 0;
  2952. padding-right: 0;
  2953. }
  2954. }
  2955. .navbar-fixed-top .navbar-collapse,
  2956. .navbar-affixed-top .navbar-collapse,
  2957. .navbar-fixed-bottom .navbar-collapse {
  2958. max-height: 340px;
  2959. }
  2960. @media (max-width: 480px) and (orientation: landscape) {
  2961. .navbar-fixed-top .navbar-collapse,
  2962. .navbar-affixed-top .navbar-collapse,
  2963. .navbar-fixed-bottom .navbar-collapse {
  2964. max-height: 200px;
  2965. }
  2966. }
  2967. .container > .navbar-header,
  2968. .container-fluid > .navbar-header,
  2969. .container > .navbar-collapse,
  2970. .container-fluid > .navbar-collapse {
  2971. margin-right: -15px;
  2972. margin-left: -15px;
  2973. }
  2974. @media (min-width: 768px) {
  2975. .container > .navbar-header,
  2976. .container-fluid > .navbar-header,
  2977. .container > .navbar-collapse,
  2978. .container-fluid > .navbar-collapse {
  2979. margin-right: 0;
  2980. margin-left: 0;
  2981. }
  2982. }
  2983. .navbar-static-top {
  2984. z-index: 1000;
  2985. border-width: 0 0 1px;
  2986. }
  2987. @media (min-width: 768px) {
  2988. .navbar-static-top {
  2989. border-radius: 0;
  2990. }
  2991. }
  2992. .navbar-fixed-top,
  2993. .navbar-fixed-bottom {
  2994. position: fixed;
  2995. right: 0;
  2996. left: 0;
  2997. z-index: 1030;
  2998. -webkit-transform: translate3d(0, 0, 0);
  2999. transform: translate3d(0, 0, 0);
  3000. }
  3001. @media (min-width: 768px) {
  3002. .navbar-fixed-top,
  3003. .navbar-fixed-bottom {
  3004. border-radius: 0;
  3005. }
  3006. }
  3007. .navbar-fixed-top {
  3008. top: 0;
  3009. border-width: 0 0 1px;
  3010. }
  3011. .navbar-fixed-bottom {
  3012. bottom: 0;
  3013. margin-bottom: 0;
  3014. border-width: 1px 0 0;
  3015. }
  3016. .navbar-brand {
  3017. float: left;
  3018. padding: 10px 15px;
  3019. font-size: 18px;
  3020. line-height: 20px;
  3021. height: 62px;
  3022. }
  3023. .navbar-brand:hover,
  3024. .navbar-brand:focus {
  3025. text-decoration: none;
  3026. }
  3027. @media (min-width: 768px) {
  3028. .navbar > .container .navbar-brand,
  3029. .navbar > .container-fluid .navbar-brand {
  3030. margin-left: -15px;
  3031. }
  3032. }
  3033. .navbar-toggle {
  3034. position: relative;
  3035. float: right;
  3036. margin-right: 15px;
  3037. padding: 9px 10px;
  3038. margin-top: 14px;
  3039. margin-bottom: 14px;
  3040. background-color: transparent;
  3041. background-image: none;
  3042. border: 1px solid transparent;
  3043. border-radius: 0;
  3044. }
  3045. .navbar-toggle:focus {
  3046. outline: 0;
  3047. }
  3048. .navbar-nav {
  3049. margin: 10.5px -15px;
  3050. }
  3051. .navbar-nav > li > a {
  3052. padding-top: 10px;
  3053. padding-bottom: 10px;
  3054. line-height: 20px;
  3055. }
  3056. @media (max-width: 767px) {
  3057. .navbar-nav .open .dropdown-menu > li > a,
  3058. .navbar-nav .open .dropdown-menu .dropdown-header {
  3059. padding: 5px 15px 5px 25px;
  3060. }
  3061. .navbar-nav .open .dropdown-menu > li > a {
  3062. line-height: 20px;
  3063. }
  3064. .navbar-nav .open .dropdown-menu > li > a:hover,
  3065. .navbar-nav .open .dropdown-menu > li > a:focus {
  3066. background-image: none;
  3067. }
  3068. }
  3069. @media (min-width: 768px) {
  3070. .navbar-nav {
  3071. float: left;
  3072. margin: 0;
  3073. }
  3074. .navbar-nav > li {
  3075. float: left;
  3076. }
  3077. .navbar-nav > li > a {
  3078. padding-top: 21px;
  3079. padding-bottom: 21px;
  3080. }
  3081. .navbar-nav.navbar-right:last-child {
  3082. margin-right: -15px;
  3083. }
  3084. }
  3085. @media (min-width: 768px) {
  3086. .navbar-left {
  3087. float: left !important;
  3088. }
  3089. .navbar-right {
  3090. float: right !important;
  3091. }
  3092. }
  3093. .navbar-form {
  3094. margin-left: -15px;
  3095. margin-right: -15px;
  3096. padding: 10px 15px;
  3097. border-top: 1px solid transparent;
  3098. border-bottom: 1px solid transparent;
  3099. -webkit-box-shadow:
  3100. inset 0 1px 0 rgba(255, 255, 255, 0.1),
  3101. 0 1px 0 rgba(255, 255, 255, 0.1);
  3102. box-shadow:
  3103. inset 0 1px 0 rgba(255, 255, 255, 0.1),
  3104. 0 1px 0 rgba(255, 255, 255, 0.1);
  3105. margin-top: 14px;
  3106. margin-bottom: 14px;
  3107. }
  3108. @media (max-width: 767px) {
  3109. .navbar-form .form-group {
  3110. margin-bottom: 5px;
  3111. }
  3112. }
  3113. @media (min-width: 768px) {
  3114. .navbar-form {
  3115. width: auto;
  3116. border: 0;
  3117. margin-left: 0;
  3118. margin-right: 0;
  3119. padding-top: 0;
  3120. padding-bottom: 0;
  3121. -webkit-box-shadow: none;
  3122. box-shadow: none;
  3123. }
  3124. .navbar-form.navbar-right:last-child {
  3125. margin-right: -15px;
  3126. }
  3127. }
  3128. .navbar-nav > li > .dropdown-menu {
  3129. margin-top: 0;
  3130. border-top-right-radius: 0;
  3131. border-top-left-radius: 0;
  3132. }
  3133. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  3134. border-bottom-right-radius: 0;
  3135. border-bottom-left-radius: 0;
  3136. }
  3137. .navbar-btn {
  3138. margin-top: 14px;
  3139. margin-bottom: 14px;
  3140. }
  3141. .navbar-btn.btn-sm {
  3142. margin-top: 16px;
  3143. margin-bottom: 16px;
  3144. }
  3145. .navbar-btn.btn-xs {
  3146. margin-top: 20px;
  3147. margin-bottom: 20px;
  3148. }
  3149. .navbar-text {
  3150. margin-top: 21px;
  3151. margin-bottom: 21px;
  3152. }
  3153. @media (min-width: 768px) {
  3154. .navbar-text {
  3155. float: left;
  3156. margin-left: 15px;
  3157. margin-right: 15px;
  3158. }
  3159. .navbar-text.navbar-right:last-child {
  3160. margin-right: 0;
  3161. }
  3162. }
  3163. .navbar-default {
  3164. background-color: #ffffff;
  3165. border-color: #cccccc;
  3166. border-bottom: none;
  3167. }
  3168. .navbar-default .navbar-brand {
  3169. color: #555555;
  3170. }
  3171. .navbar-default .navbar-brand:hover,
  3172. .navbar-default .navbar-brand:focus {
  3173. color: #3b3b3b;
  3174. background-color: transparent;
  3175. }
  3176. .navbar-default .navbar-text {
  3177. color: #777777;
  3178. }
  3179. .navbar-default .navbar-nav > li > a {
  3180. color: #555555;
  3181. }
  3182. .navbar-default .navbar-nav > li > a:hover,
  3183. .navbar-default .navbar-nav > li > a:focus {
  3184. color: #555555;
  3185. background-color: #80cbd9;
  3186. }
  3187. .navbar-default .navbar-nav > .active > a,
  3188. .navbar-default .navbar-nav > .active > a:hover,
  3189. .navbar-default .navbar-nav > .active > a:focus {
  3190. color: #ffffff;
  3191. background-color: #38a7bb;
  3192. }
  3193. .navbar-default .navbar-nav > .disabled > a,
  3194. .navbar-default .navbar-nav > .disabled > a:hover,
  3195. .navbar-default .navbar-nav > .disabled > a:focus {
  3196. color: #cccccc;
  3197. background-color: transparent;
  3198. }
  3199. .navbar-default .navbar-toggle {
  3200. border-color: #dddddd;
  3201. }
  3202. .navbar-default .navbar-toggle:hover,
  3203. .navbar-default .navbar-toggle:focus {
  3204. background-color: #ea5413;
  3205. }
  3206. .navbar-default .navbar-toggle .icon-bar {
  3207. background-color: #888888;
  3208. }
  3209. .navbar-default .navbar-collapse,
  3210. .navbar-default .navbar-form {
  3211. border-color: #cccccc;
  3212. }
  3213. .navbar-default .navbar-nav > .open > a,
  3214. .navbar-default .navbar-nav > .open > a:hover,
  3215. .navbar-default .navbar-nav > .open > a:focus {
  3216. background-color: #38a7bb;
  3217. color: #ffffff;
  3218. }
  3219. @media (max-width: 767px) {
  3220. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  3221. color: #555555;
  3222. }
  3223. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  3224. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  3225. color: #38a7bb;
  3226. }
  3227. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  3228. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  3229. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  3230. color: #ffffff;
  3231. background-color: #38a7bb;
  3232. }
  3233. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  3234. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  3235. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  3236. color: #cccccc;
  3237. background-color: transparent;
  3238. }
  3239. }
  3240. .navbar-default .navbar-link {
  3241. color: #555555;
  3242. }
  3243. .navbar-default .navbar-link:hover {
  3244. color: #555555;
  3245. }
  3246. .navbar-default .btn-link {
  3247. color: #555555;
  3248. }
  3249. .navbar-default .btn-link:hover,
  3250. .navbar-default .btn-link:focus {
  3251. color: #555555;
  3252. }
  3253. .navbar-default .btn-link[disabled]:hover,
  3254. fieldset[disabled] .navbar-default .btn-link:hover,
  3255. .navbar-default .btn-link[disabled]:focus,
  3256. fieldset[disabled] .navbar-default .btn-link:focus {
  3257. color: #cccccc;
  3258. }
  3259. /* scaffolding */
  3260. body {
  3261. font-family: "Roboto", Helvetica, Arial, sans-serif;
  3262. font-size: 14px;
  3263. line-height: 1.42857143;
  3264. color: #555555;
  3265. }
  3266. a {
  3267. color: #ea5413;
  3268. text-decoration: none;
  3269. }
  3270. .panel.sidebar-menu .panel-body a {
  3271. color: #181c47;
  3272. }
  3273. a:hover,
  3274. a:focus {
  3275. color: #cf3e00;
  3276. text-decoration: none;
  3277. }
  3278. a:focus {
  3279. outline: thin dotted;
  3280. outline: 5px auto -webkit-focus-ring-color;
  3281. outline-offset: -2px;
  3282. }
  3283. .img-rounded {
  3284. border-radius: 0;
  3285. }
  3286. hr {
  3287. margin-top: 20px;
  3288. margin-bottom: 20px;
  3289. border: 0;
  3290. border-top: 1px solid #eeeeee;
  3291. }
  3292. /* breadcrumbs */
  3293. .breadcrumb {
  3294. padding: 20px 0;
  3295. margin-bottom: 20px;
  3296. background-color: transparent;
  3297. border-radius: 0;
  3298. text-align: right;
  3299. }
  3300. .breadcrumb > li + li:before {
  3301. content: ">\00a0";
  3302. color: #555555;
  3303. }
  3304. .breadcrumb > .active {
  3305. color: #999999;
  3306. }
  3307. @media (max-width: 991px) {
  3308. .breadcrumb {
  3309. padding: 20px 0;
  3310. text-align: center;
  3311. }
  3312. }
  3313. /* dropdowns */
  3314. .dropdown-menu {
  3315. z-index: 1000;
  3316. font-size: 14px;
  3317. background-color: #ffffff;
  3318. border: 1px solid #cccccc;
  3319. border: 1px solid rgba(0, 0, 0, 0.15);
  3320. border-radius: 0;
  3321. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3322. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3323. }
  3324. .dropdown-menu.pull-right {
  3325. right: 0;
  3326. left: auto;
  3327. }
  3328. .dropdown-menu .divider {
  3329. height: 1px;
  3330. margin: 9px 0;
  3331. overflow: hidden;
  3332. background-color: #e5e5e5;
  3333. }
  3334. .dropdown-menu > li > a {
  3335. padding: 5px 20px;
  3336. line-height: 1.42857143;
  3337. color: #333333;
  3338. white-space: nowrap;
  3339. }
  3340. /* labels */
  3341. .label {
  3342. font-family: "Roboto", Helvetica, Arial, sans-serif;
  3343. font-weight: normal;
  3344. text-transform: uppercase;
  3345. letter-spacing: 0.08em;
  3346. }
  3347. /* forms.less */
  3348. label {
  3349. font-weight: normal;
  3350. }
  3351. .form-control {
  3352. -webkit-box-shadow: none;
  3353. box-shadow: none;
  3354. border-radius: 0;
  3355. }
  3356. .form-control:focus {
  3357. border-color: #38a7bb;
  3358. outline: 0;
  3359. -webkit-box-shadow:
  3360. inset 0 1px 1px rgba(0, 0, 0, 0.075),
  3361. 0 0 8px rgba(56, 167, 187, 0.6);
  3362. box-shadow:
  3363. inset 0 1px 1px rgba(0, 0, 0, 0.075),
  3364. 0 0 8px rgba(56, 167, 187, 0.6);
  3365. }
  3366. .form-group {
  3367. margin-bottom: 20px;
  3368. }
  3369. /* pager*/
  3370. .pager {
  3371. margin: 20px 0;
  3372. border-top: solid 1px #eeeeee;
  3373. padding-top: 20px;
  3374. text-transform: uppercase;
  3375. letter-spacing: 0.08em;
  3376. font-family: "Roboto", Helvetica, Arial, sans-serif;
  3377. }
  3378. .pager li {
  3379. display: inline;
  3380. }
  3381. .pager li > a,
  3382. .pager li > span {
  3383. background-color: #ffffff;
  3384. border: 1px solid #ea5413;
  3385. border-radius: 0;
  3386. color: #ea5413;
  3387. }
  3388. .pager li > a:hover,
  3389. .pager li > a:focus {
  3390. text-decoration: none;
  3391. color: #fff;
  3392. background-color: #ea5413;
  3393. }
  3394. .pager .disabled > a,
  3395. .pager .disabled > a:hover,
  3396. .pager .disabled > a:focus,
  3397. .pager .disabled > span {
  3398. color: #999999;
  3399. background-color: #ffffff;
  3400. border-color: #ddd;
  3401. }
  3402. /* pagination */
  3403. .pagination {
  3404. margin: 20px 0;
  3405. font-family: "Roboto", Helvetica, Arial, sans-serif;
  3406. border-radius: 0;
  3407. }
  3408. .pagination > li > a,
  3409. .pagination > li > span {
  3410. padding: 6px 12px;
  3411. line-height: 1.42857143;
  3412. text-decoration: none;
  3413. color: #38a7bb;
  3414. background-color: #ffffff;
  3415. border: 1px solid #dddddd;
  3416. }
  3417. .pagination > li > a:hover,
  3418. .pagination > li > span:hover,
  3419. .pagination > li > a:focus,
  3420. .pagination > li > span:focus {
  3421. color: #38a7bb;
  3422. background-color: #a7dbe5;
  3423. border-color: #dddddd;
  3424. }
  3425. .pagination > .active > a,
  3426. .pagination > .active > span,
  3427. .pagination > .active > a:hover,
  3428. .pagination > .active > span:hover,
  3429. .pagination > .active > a:focus,
  3430. .pagination > .active > span:focus {
  3431. z-index: 2;
  3432. color: #ffffff;
  3433. background-color: #38a7bb;
  3434. border-color: #38a7bb;
  3435. }
  3436. .pagination > .disabled > span,
  3437. .pagination > .disabled > span:hover,
  3438. .pagination > .disabled > span:focus,
  3439. .pagination > .disabled > a,
  3440. .pagination > .disabled > a:hover,
  3441. .pagination > .disabled > a:focus {
  3442. color: #999999;
  3443. background-color: #ffffff;
  3444. border-color: #dddddd;
  3445. }
  3446. /* responsive utilities */
  3447. @media (max-width: 767px) {
  3448. .text-center-xs {
  3449. text-align: center !important;
  3450. }
  3451. .text-center-xs img {
  3452. display: block;
  3453. margin-left: auto;
  3454. margin-right: auto;
  3455. }
  3456. }
  3457. @media (min-width: 768px) and (max-width: 991px) {
  3458. .text-center-sm {
  3459. text-align: center !important;
  3460. }
  3461. .text-center-sm img {
  3462. display: block;
  3463. margin-left: auto;
  3464. margin-right: auto;
  3465. }
  3466. }
  3467. /* type */
  3468. h1,
  3469. h2,
  3470. h3,
  3471. h4,
  3472. h5,
  3473. h6,
  3474. .h1,
  3475. .h2,
  3476. .h3,
  3477. .h4,
  3478. .h5,
  3479. .h6 {
  3480. font-family: "Roboto", Helvetica, Arial, sans-serif;
  3481. font-weight: 900;
  3482. line-height: 1.1;
  3483. color: #333333;
  3484. }
  3485. h1,
  3486. .h1,
  3487. h2,
  3488. .h2,
  3489. h3,
  3490. .h3 {
  3491. margin: 30px 0;
  3492. }
  3493. p {
  3494. margin: 0 0 10px;
  3495. }
  3496. .lead {
  3497. margin-bottom: 20px;
  3498. font-size: 18px;
  3499. }
  3500. @media (min-width: 768px) {
  3501. .lead {
  3502. font-size: 21px;
  3503. }
  3504. }
  3505. .text-small {
  3506. font-size: 12px;
  3507. }
  3508. .text-large {
  3509. font-size: 18px;
  3510. }
  3511. .text-italic {
  3512. font-style: italic;
  3513. }
  3514. .text-primary {
  3515. color: #38a7bb;
  3516. }
  3517. a.text-primary:hover {
  3518. color: #2c8494;
  3519. }
  3520. .bg-primary {
  3521. color: #fff;
  3522. background-color: #38a7bb;
  3523. }
  3524. a.bg-primary:hover {
  3525. background-color: #2c8494;
  3526. }
  3527. abbr[title],
  3528. abbr[data-original-title] {
  3529. border-bottom: 1px dotted #999999;
  3530. }
  3531. blockquote {
  3532. padding: 10px 20px;
  3533. margin: 0 0 20px;
  3534. font-size: 14px;
  3535. border-left: 5px solid #38a7bb;
  3536. }
  3537. blockquote footer,
  3538. blockquote small,
  3539. blockquote .small {
  3540. display: block;
  3541. font-size: 80%;
  3542. line-height: 1.42857143;
  3543. color: #999999;
  3544. }
  3545. blockquote footer:before,
  3546. blockquote small:before,
  3547. blockquote .small:before {
  3548. content: "\2014 \00A0";
  3549. }
  3550. .blockquote-reverse,
  3551. blockquote.pull-right {
  3552. border-right: 5px solid #38a7bb;
  3553. }
  3554. address {
  3555. margin-bottom: 20px;
  3556. line-height: 1.42857143;
  3557. }
  3558. .panel {
  3559. margin-bottom: 20px;
  3560. background-color: #ffffff;
  3561. border: 1px solid transparent;
  3562. border-radius: 0;
  3563. -webkit-box-shadow: 0 0 0;
  3564. box-shadow: 0 0 0;
  3565. }
  3566. .panel-heading {
  3567. border-top-right-radius: 0;
  3568. border-top-left-radius: 0;
  3569. text-transform: uppercase;
  3570. letter-spacing: 0.08em;
  3571. padding: 15px 15px;
  3572. }
  3573. .progress {
  3574. overflow: hidden;
  3575. height: 20px;
  3576. margin-bottom: 20px;
  3577. background-color: #f5f5f5;
  3578. border-radius: 0;
  3579. -webkit-box-shadow: none;
  3580. box-shadow: none;
  3581. }
  3582. .panel-group {
  3583. margin-bottom: 20px;
  3584. }
  3585. .panel-group .panel {
  3586. margin-bottom: 0;
  3587. border-radius: 0;
  3588. overflow: hidden;
  3589. }
  3590. .panel-group .panel + .panel {
  3591. margin-top: 5px;
  3592. }
  3593. .panel-group.accordion .panel {
  3594. border-color: #ccc;
  3595. }
  3596. .panel-primary {
  3597. border-color: #38a7bb;
  3598. }
  3599. .panel-primary > .panel-heading {
  3600. color: #ffffff;
  3601. background-color: #38a7bb;
  3602. border-color: #38a7bb;
  3603. }
  3604. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  3605. border-top-color: #38a7bb;
  3606. }
  3607. .panel-primary > .panel-heading .badge {
  3608. color: #38a7bb;
  3609. background-color: #ffffff;
  3610. }
  3611. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  3612. border-bottom-color: #38a7bb;
  3613. }
  3614. .panel-primary .panel-title {
  3615. font-weight: 300;
  3616. }
  3617. .panel-primary .panel-title a:hover {
  3618. color: #fff;
  3619. text-decoration: none;
  3620. }
  3621. a.badge:hover,
  3622. a.badge:focus {
  3623. color: #ffffff;
  3624. text-decoration: none;
  3625. cursor: pointer;
  3626. }
  3627. a.list-group-item.active > .badge,
  3628. .nav-pills > .active > a > .badge {
  3629. color: #38a7bb;
  3630. background-color: #ffffff;
  3631. }
  3632. .nav-pills > li > a > .badge {
  3633. margin-left: 3px;
  3634. }
  3635. .progress-bar-primary {
  3636. background-color: #38a7bb;
  3637. }
  3638. .progress-striped .progress-bar-primary {
  3639. background-image: -webkit-linear-gradient(
  3640. 45deg,
  3641. rgba(255, 255, 255, 0.15) 25%,
  3642. transparent 25%,
  3643. transparent 50%,
  3644. rgba(255, 255, 255, 0.15) 50%,
  3645. rgba(255, 255, 255, 0.15) 75%,
  3646. transparent 75%,
  3647. transparent
  3648. );
  3649. background-image: -o-linear-gradient(
  3650. 45deg,
  3651. rgba(255, 255, 255, 0.15) 25%,
  3652. transparent 25%,
  3653. transparent 50%,
  3654. rgba(255, 255, 255, 0.15) 50%,
  3655. rgba(255, 255, 255, 0.15) 75%,
  3656. transparent 75%,
  3657. transparent
  3658. );
  3659. background-image: linear-gradient(
  3660. 45deg,
  3661. rgba(255, 255, 255, 0.15) 25%,
  3662. transparent 25%,
  3663. transparent 50%,
  3664. rgba(255, 255, 255, 0.15) 50%,
  3665. rgba(255, 255, 255, 0.15) 75%,
  3666. transparent 75%,
  3667. transparent
  3668. );
  3669. }
  3670. /*!
  3671. * Yamm!3 - Yet another megamenu for Bootstrap 3
  3672. * http://geedmo.github.com/yamm3
  3673. *
  3674. * @geedmo - Licensed under the MIT license
  3675. */
  3676. .yamm .nav,
  3677. .yamm .collapse,
  3678. .yamm .dropup.use-yamm,
  3679. .yamm .dropdown.use-yamm {
  3680. position: static;
  3681. }
  3682. .yamm .container {
  3683. position: relative;
  3684. }
  3685. .yamm .dropdown-menu {
  3686. left: auto;
  3687. }
  3688. .yamm .nav.navbar-right .dropdown-menu {
  3689. left: auto;
  3690. right: 0;
  3691. }
  3692. .yamm .yamm-content {
  3693. padding: 20px 30px;
  3694. }
  3695. .yamm .dropdown.yamm-fw .dropdown-menu {
  3696. left: 15px;
  3697. right: 15px;
  3698. }