style.pink.css 74 KB

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