main.css 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448
  1. .overlay[data-v-b98ce164] {
  2. background-color: rgba(0, 0, 0, 0.8);
  3. position: fixed;
  4. top: 0;
  5. right: 0;
  6. bottom: 0;
  7. left: 0;
  8. z-index: 99999;
  9. }
  10. .modal[data-v-b98ce164] {
  11. background-color: #fff;
  12. position: absolute;
  13. box-sizing: border;
  14. max-width: 80vw;
  15. max-height: 70vh;
  16. top: 0;
  17. right: 0;
  18. bottom: 0;
  19. left: 0;
  20. margin: auto;
  21. padding: 1em;
  22. border-radius: 3px;
  23. box-shadow: 2px 2px;
  24. }
  25. .form-item[data-v-7bb795f8],
  26. .form-actions[data-v-7bb795f8] {
  27. display: inline-block;
  28. max-width: 32%;
  29. margin: 0;
  30. }
  31. input[data-v-7bb795f8] {
  32. box-sizing: border-box;
  33. max-width: 100%;
  34. }
  35. div.description[data-v-7bb795f8] {
  36. display: none;
  37. }
  38. .form-item-persistent-login[data-v-7bb795f8] {
  39. display: none;
  40. }
  41. .form-type-email[data-v-2acc57a0],
  42. .form-type-password-confirm[data-v-2acc57a0] {
  43. max-width: 30%;
  44. margin: 0;
  45. }
  46. .form-type-password input.weak[data-v-2acc57a0] {
  47. border-width: 2px;
  48. border-color: red !important;
  49. }
  50. .form-type-password input.weak[data-v-2acc57a0]:focus {
  51. outline: none;
  52. }
  53. .form-type-password input.medium[data-v-2acc57a0] {
  54. border-width: 2px;
  55. border-color: orange !important;
  56. }
  57. .form-type-password input.medium[data-v-2acc57a0]:focus {
  58. outline: none;
  59. }
  60. .form-type-password input.strong[data-v-2acc57a0] {
  61. border-width: 2px;
  62. border-color: green !important;
  63. }
  64. .form-type-password input.strong[data-v-2acc57a0]:focus {
  65. outline: none;
  66. }
  67. input[data-v-2acc57a0] {
  68. box-sizing: content-box;
  69. max-width: 100%;
  70. }
  71. label[data-v-2acc57a0],
  72. div.description[data-v-2acc57a0] {
  73. display: none;
  74. }
  75. fieldset[data-v-340aa566] {
  76. padding: 0;
  77. margin: 0;
  78. border: none;
  79. }
  80. #user-tools[data-v-4e9a834e]{
  81. margin-right:0.5em;
  82. /* padding-right:0.5em; */
  83. /* border-right:1px solid #222; */
  84. }
  85. h4[data-v-4e9a834e]{
  86. margin:0;
  87. display:inline-block;
  88. font-size:inherited;
  89. vertical-align: top;
  90. }
  91. .cool-lightbox{position:fixed;left:0;bottom:0;top:0;display:flex;align-items:center;justify-content:center;right:0;transition:all .3s ease}.cool-lightbox .cool-lightbox-zoom{position:absolute;bottom:15px;left:50%;display:flex;z-index:99999;background-color:rgba(15,15,15,.8);border-radius:8px;padding:0 12px;align-items:center;transform:translateX(-50%)}.cool-lightbox .cool-lightbox-zoom input[type=range]{-webkit-appearance:none;margin:10px 0;width:105px;background:0 0}.cool-lightbox .cool-lightbox-zoom input[type=range]:focus{outline:0}.cool-lightbox .cool-lightbox-zoom input[type=range]::-webkit-slider-runnable-track{width:100%;height:4px;cursor:pointer;animate:.2s;box-shadow:0 0 0 #000;background:#e6e6e6;border-radius:11px;border:0 solid #000}.cool-lightbox .cool-lightbox-zoom input[type=range]::-webkit-slider-thumb{box-shadow:1px 1px 1px #000;border:1px solid #000;height:12px;width:12px;border-radius:13px;background:#fff;cursor:pointer;-webkit-appearance:none;margin-top:-4.5px}.cool-lightbox .cool-lightbox-zoom input[type=range]:focus::-webkit-slider-runnable-track{background:#e6e6e6}.cool-lightbox .cool-lightbox-zoom input[type=range]::-moz-range-track{width:100%;height:4px;cursor:pointer;animate:.2s;box-shadow:0 0 0 #000;background:#e6e6e6;border-radius:11px;border:0 solid #000}.cool-lightbox .cool-lightbox-zoom input[type=range]::-moz-range-thumb{box-shadow:1px 1px 1px #000;border:1px solid #000;height:12px;width:12px;border-radius:13px;background:#fff;cursor:pointer}.cool-lightbox .cool-lightbox-zoom input[type=range]::-ms-track{width:100%;height:4px;cursor:pointer;animate:.2s;background:0 0;border-color:transparent;color:transparent}.cool-lightbox .cool-lightbox-zoom input[type=range]::-ms-fill-lower{background:#e6e6e6;border:0 solid #000;border-radius:22px;box-shadow:0 0 0 #000}.cool-lightbox .cool-lightbox-zoom input[type=range]::-ms-fill-upper{background:#e6e6e6;border:0 solid #000;border-radius:22px;box-shadow:0 0 0 #000}.cool-lightbox .cool-lightbox-zoom input[type=range]::-ms-thumb{box-shadow:1px 1px 1px #000;border:1px solid #000;height:12px;width:12px;border-radius:13px;background:#fff;cursor:pointer}.cool-lightbox .cool-lightbox-zoom input[type=range]:focus::-ms-fill-lower{background:#e6e6e6}.cool-lightbox .cool-lightbox-zoom input[type=range]:focus::-ms-fill-upper{background:#e6e6e6}.cool-lightbox .cool-lightbox-zoom .cool-lightbox-zoom__icon{height:15px;width:15px;color:#fff}.cool-lightbox .cool-lightbox-zoom .cool-lightbox-zoom__icon:first-of-type{margin-right:10px}.cool-lightbox .cool-lightbox-zoom .cool-lightbox-zoom__icon:last-of-type{margin-left:10px}.cool-lightbox .cool-lightbox-thumbs{position:absolute;height:100vh;overflow-y:auto;width:102px;right:-102px;top:0;overflow-x:hidden;transition:none;background-color:#ddd;scrollbar-width:thin;scrollbar-color:#fa4242 rgba(175,175,175,.9)}@media (min-width:767px){.cool-lightbox .cool-lightbox-thumbs{transition:all .3s ease}}.cool-lightbox .cool-lightbox-thumbs::-webkit-scrollbar{width:6px;height:6px}.cool-lightbox .cool-lightbox-thumbs::-webkit-scrollbar-button{width:0;height:0}.cool-lightbox .cool-lightbox-thumbs::-webkit-scrollbar-thumb{background:#fa4242;border:0 none #fff;border-radius:50px}.cool-lightbox .cool-lightbox-thumbs::-webkit-scrollbar-thumb:hover{background:#fff}.cool-lightbox .cool-lightbox-thumbs::-webkit-scrollbar-thumb:active{background:#000}.cool-lightbox .cool-lightbox-thumbs::-webkit-scrollbar-track{background:#e1e1e1;border:0 none #fff;border-radius:8px}.cool-lightbox .cool-lightbox-thumbs::-webkit-scrollbar-track:hover{background:#666}.cool-lightbox .cool-lightbox-thumbs::-webkit-scrollbar-track:active{background:#333}.cool-lightbox .cool-lightbox-thumbs::-webkit-scrollbar-corner{background:0 0}@media (min-width:767px){.cool-lightbox .cool-lightbox-thumbs{width:212px;right:-212px}}.cool-lightbox .cool-lightbox-thumbs .cool-lightbox-thumbs__list{display:flex;flex-wrap:wrap;padding:2px;padding-right:0}.cool-lightbox .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb{background-color:#000;width:100%;margin-right:2px;margin-bottom:2px;display:block;height:75px;position:relative}@media (min-width:767px){.cool-lightbox .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb{width:calc(100%/2 - 2px)}}.cool-lightbox .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb:before{top:0;left:0;right:0;bottom:0;opacity:0;content:'';z-index:150;transition:all .3s ease;position:absolute;visibility:hidden;border:3px solid #fa4242}.cool-lightbox .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb img{width:100%;height:100%;object-fit:cover}.cool-lightbox .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb.is-video .cool-lightbox__thumb__icon{position:absolute;z-index:100;top:50%;left:50%;width:25px;height:25px;transform:translate(-50%,-50%)}.cool-lightbox .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb.is-video .cool-lightbox__thumb__icon path{fill:#fff}.cool-lightbox .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb.is-video:after{content:'';top:0;left:0;right:0;bottom:0;z-index:50;position:absolute;background:rgba(0,0,0,.6)}.cool-lightbox .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb.active:before,.cool-lightbox .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb:hover:before{opacity:1;visibility:visible}.cool-lightbox .cool-lightbox__inner{padding:60px 0;position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;transition:none}@media (min-width:767px){.cool-lightbox .cool-lightbox__inner{transition:all .3s ease}}.cool-lightbox .cool-lightbox__progressbar{position:absolute;top:0;left:0;right:0;height:2px;z-index:500;transform-origin:0;transform:scaleX(0);transition:transform 3s linear;display:block}.cool-lightbox.cool-lightbox--is-swipping{cursor:-webkit-grabbing;cursor:grabbing}.cool-lightbox.cool-lightbox--is-swipping iframe{pointer-events:none}.cool-lightbox.cool-lightbox--is-swipping .cool-lightbox__slide{transition:none}.cool-lightbox.cool-lightbox--is-swipping .cool-lightbox__slide.cool-lightbox__slide--hide{display:flex;z-index:50}.cool-lightbox.cool-lightbox--zoom-disabled .cool-lightbox__slide .cool-lightbox__slide__img{transform:translate3d(-50%,-50%,0)}.cool-lightbox.cool-lightbox--can-zoom .cool-lightbox__slide img{cursor:zoom-in}.cool-lightbox.cool-lightbox--is-zooming .cool-lightbox__slide img{cursor:move;cursor:grab;cursor:-moz-grab;cursor:-webkit-grab}.cool-lightbox.cool-lightbox--is-zooming .cool-lightbox-caption{opacity:0}.cool-lightbox.cool-lightbox--thumbs-right.cool-lightbox--show-thumbs .cool-lightbox__inner{right:102px}@media (min-width:767px){.cool-lightbox.cool-lightbox--thumbs-right.cool-lightbox--show-thumbs .cool-lightbox__inner{right:212px}}.cool-lightbox.cool-lightbox--thumbs-right.cool-lightbox--show-thumbs .cool-lightbox-thumbs{right:0}.cool-lightbox.cool-lightbox--thumbs-bottom .cool-lightbox-thumbs{width:100%;left:0;right:0;top:auto;height:70px;bottom:-70px;overflow:auto}@media (min-width:767px){.cool-lightbox.cool-lightbox--thumbs-bottom .cool-lightbox-thumbs{bottom:-79px;height:79px}}.cool-lightbox.cool-lightbox--thumbs-bottom .cool-lightbox-thumbs .cool-lightbox-thumbs__list{width:100%;flex-wrap:nowrap;justify-content:center}.cool-lightbox.cool-lightbox--thumbs-bottom .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb{width:100px;flex-shrink:0;margin-bottom:0;height:65px}@media (min-width:767px){.cool-lightbox.cool-lightbox--thumbs-bottom .cool-lightbox-thumbs .cool-lightbox-thumbs__list .cool-lightbox__thumb{height:75px}}.cool-lightbox.cool-lightbox--thumbs-bottom.cool-lightbox--show-thumbs .cool-lightbox__inner{bottom:70px}@media (min-width:767px){.cool-lightbox.cool-lightbox--thumbs-bottom.cool-lightbox--show-thumbs .cool-lightbox__inner{bottom:79px}}.cool-lightbox.cool-lightbox--thumbs-bottom.cool-lightbox--show-thumbs .cool-lightbox-thumbs{bottom:0}.cool-lightbox *{box-sizing:border-box;padding:0;margin:0}.cool-lightbox button{background:0 0;border:none;cursor:pointer;outline:0}.cool-lightbox svg path,.cool-lightbox svg rect{fill:currentColor}.cool-lightbox .cool-lightbox-button{padding:21px 16px 21px 4px;height:100px;opacity:1;z-index:800;color:#ccc;transition:all .3s ease;position:absolute;top:calc(50% - 50px);width:54px;transition:all .3s ease;visibility:visible}@media (min-width:767px){.cool-lightbox .cool-lightbox-button{width:70px;padding:31px 26px 31px 6px}}.cool-lightbox .cool-lightbox-button.hidden{opacity:0;visibility:hidden}.cool-lightbox .cool-lightbox-button:hover{color:#fff}.cool-lightbox .cool-lightbox-button>.cool-lightbox-button__icon{padding:7px;display:flex;align-items:center;justify-content:center;background:rgba(30,30,30,.6)}.cool-lightbox .cool-lightbox-button>.cool-lightbox-button__icon>svg{width:100%;height:100%}.cool-lightbox .cool-lightbox-button.cool-lightbox-button--prev{left:0}.cool-lightbox .cool-lightbox-button.cool-lightbox-button--next{right:0;padding:21px 4px 21px 16px}@media (min-width:767px){.cool-lightbox .cool-lightbox-button.cool-lightbox-button--next{padding:31px 6px 31px 26px}}.cool-lightbox .cool-lightbox-pdf{max-width:100%}.cool-lightbox .cool-lightbox__iframe{width:100%;display:flex;top:50%;left:50%;align-items:center;justify-content:center;position:relative;transform:translate3d(-50%,-50%,0) scale3d(1,1,1)}.cool-lightbox .cool-lightbox__iframe iframe{width:100%;height:100%}@media (min-width:767px){.cool-lightbox .cool-lightbox__iframe iframe{max-width:80vw;max-height:80vh}}.cool-lightbox .cool-lightbox__wrapper{width:100%;height:100%;position:relative}.cool-lightbox .cool-lightbox__wrapper.cool-lightbox__wrapper--swipe{display:flex;align-items:center}.cool-lightbox .cool-lightbox__wrapper.cool-lightbox__wrapper--swipe .cool-lightbox__slide{flex-shrink:0;display:flex;position:relative;height:100%;opacity:.4;transition:opacity .3s linear}.cool-lightbox .cool-lightbox__wrapper.cool-lightbox__wrapper--swipe .cool-lightbox__slide.cool-lightbox__slide--current{opacity:1}.cool-lightbox .cool-lightbox__slide{width:100%;top:0;bottom:0;left:0;right:0;z-index:100;display:none;position:absolute;margin-right:30px;transition:transform .3s ease}.cool-lightbox .cool-lightbox__slide:last-of-type{margin-right:0}.cool-lightbox .cool-lightbox__slide.cool-lightbox__slide--current{display:flex}.cool-lightbox .cool-lightbox__slide .cool-lightbox__slide__img{position:absolute;height:100%;width:100%;left:50%;top:50%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:translate3d(-50%,-50%,0) scale3d(1,1,1);transition:all .3s ease;display:flex}.cool-lightbox .cool-lightbox__slide img{max-width:100%;max-height:100%;margin:auto;z-index:9999;-webkit-backface-visibility:hidden;backface-visibility:hidden;-ms-transform:translateZ(0);-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1.5rem rgba(0,0,0,.45)}.cool-lightbox-toolbar{position:absolute;top:0;right:0;opacity:1;display:flex;transition:all .3s ease;visibility:visible}.cool-lightbox-toolbar.hidden{opacity:0;visibility:hidden}.cool-lightbox-toolbar .cool-lightbox-toolbar__btn{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;justify-content:center;align-items:center;display:inline-flex;margin:0;padding:9px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:40px;height:40px;color:#ccc}@media (min-width:767px){.cool-lightbox-toolbar .cool-lightbox-toolbar__btn{width:44px;height:44px;padding:10px}}.cool-lightbox-toolbar .cool-lightbox-toolbar__btn>svg{width:100%;height:100%}.cool-lightbox-toolbar .cool-lightbox-toolbar__btn:hover{color:#fff}.cool-lightbox-caption{bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;opacity:1;line-height:1.5;padding:18px 28px 16px 24px;right:0;text-align:center;direction:ltr;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;z-index:99997;background:linear-gradient(0deg,rgba(0,0,0,.75) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent)}@media (min-width:767px){.cool-lightbox-caption{padding:22px 30px 23px 30px}}.cool-lightbox-caption a{color:#eee;text-decoration:underline}.cool-lightbox-caption h6{font-size:14px;margin:0 0 6px 0;line-height:130%}@media (min-width:767px){.cool-lightbox-caption h6{font-size:16px;margin:0 0 6px 0}}.cool-lightbox-caption p{font-size:13px;line-height:130%;color:#ccc}@media (min-width:767px){.cool-lightbox-caption p{font-size:15px}}.cool-lightbox-caption p a{color:#ccc}.cool-lightbox-caption p a:hover{color:#eee}.cool-lightbox-modal-enter-active,.cool-lightbox-modal-leave-active{transition:opacity .35s}.cool-lightbox-modal-enter,.cool-lightbox-modal-leave-to{opacity:0}.cool-lightbox-slide-change-enter-active,.cool-lightbox-slide-change-leave-active{transition:opacity .27s}.cool-lightbox-slide-change-enter,.cool-lightbox-slide-change-leave-to{opacity:0}.cool-lightbox-loading-wrapper{top:50%;left:50%;position:absolute;transform:translate(-50%,-50%)}.cool-lightbox-loading-wrapper .cool-lightbox-loading{animation:cool-lightbox-rotate 1s linear infinite;background:0 0;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;opacity:.7;padding:0;width:50px;z-index:500}@keyframes cool-lightbox-rotate{100%{transform:rotate(360deg)}}
  92. @charset "UTF-8";
  93. body {
  94. background: white; }
  95. a {
  96. color: inherit;
  97. text-decoration: none; }
  98. a, a:focus, a:active {
  99. outline: none; }
  100. a:focus {
  101. -moz-outline-style: none; }
  102. ul {
  103. margin: 0;
  104. padding: 0; }
  105. ul li {
  106. margin: 0;
  107. padding: 0;
  108. list-style: none; }
  109. h1, h2, h3, h4, h5, h6 {
  110. margin: 0; }
  111. p a {
  112. position: relative; }
  113. p a:not(.btn):after {
  114. content: '';
  115. position: absolute;
  116. top: 1em;
  117. left: 0;
  118. width: 100%;
  119. border-bottom: 1px dotted #000; }
  120. input[type="text"],
  121. input[type="email"],
  122. input[type="tel"],
  123. input[type="password"] {
  124. border-radius: 5px;
  125. border: 0.5px solid #aaa;
  126. padding: 0.3em 0.4em; }
  127. input[type="text"]:focus,
  128. input[type="email"]:focus,
  129. input[type="tel"]:focus,
  130. input[type="password"]:focus {
  131. outline: none;
  132. box-shadow: 0 0 2px 1px #8bc4ff; }
  133. .col-1, .small-col-1, .med-col-1, .large-col-1, .col-2, .small-col-2, .med-col-2, .large-col-2, .col-3, .small-col-3, .med-col-3, .large-col-3, .col-4, .small-col-4, .med-col-4, .large-col-4, .col-5, .small-col-5, .med-col-5, .large-col-5, .col-6, .small-col-6, .med-col-6, .large-col-6, .col-7, .small-col-7, .med-col-7, .large-col-7, .col-8, .small-col-8, .med-col-8, .large-col-8, .col-9, .small-col-9, .med-col-9, .large-col-9, .col-10, .small-col-10, .med-col-10, .large-col-10, .col-11, .small-col-11, .med-col-11, .large-col-11, .col-12, .small-col-12, .med-col-12, .large-col-12, .col-1-offset-1, .col-1-offset-2, .col-1-offset-3, .col-1-offset-4, .col-1-offset-5, .col-1-offset-6, .col-1-offset-7, .col-1-offset-8, .col-1-offset-9, .col-1-offset-10, .col-1-offset-11, .col-2-offset-1, .col-2-offset-2, .col-2-offset-3, .col-2-offset-4, .col-2-offset-5, .col-2-offset-6, .col-2-offset-7, .col-2-offset-8, .col-2-offset-9, .col-2-offset-10, .col-3-offset-1, .col-3-offset-2, .col-3-offset-3, .col-3-offset-4, .col-3-offset-5, .col-3-offset-6, .col-3-offset-7, .col-3-offset-8, .col-3-offset-9, .col-4-offset-1, .col-4-offset-2, .col-4-offset-3, .col-4-offset-4, .col-4-offset-5, .col-4-offset-6, .col-4-offset-7, .col-4-offset-8, .col-5-offset-1, .col-5-offset-2, .col-5-offset-3, .col-5-offset-4, .col-5-offset-5, .col-5-offset-6, .col-5-offset-7, .col-6-offset-1, .col-6-offset-2, .col-6-offset-3, .col-6-offset-4, .col-6-offset-5, .col-6-offset-6, .col-7-offset-1, .col-7-offset-2, .col-7-offset-3, .col-7-offset-4, .col-7-offset-5, .col-8-offset-1, .col-8-offset-2, .col-8-offset-3, .col-8-offset-4, .col-9-offset-1, .col-9-offset-2, .col-9-offset-3, .col-10-offset-1, .col-10-offset-2, .col-11-offset-1 {
  134. width: 100%;
  135. float: left;
  136. box-sizing: border-box; }
  137. .row {
  138. position: relative; }
  139. .row:after {
  140. content: "";
  141. clear: both;
  142. display: block; }
  143. .col-1 {
  144. padding-left: 0em;
  145. padding-right: 1em;
  146. margin-left: 0%;
  147. width: 8.33333%; }
  148. .col-1:last-child {
  149. padding-right: 0; }
  150. @media only screen and (max-width: 768px) {
  151. .small-col-1 {
  152. padding-left: 0em;
  153. padding-right: 1em;
  154. margin-left: 0%;
  155. width: 8.33333%; }
  156. .small-col-1:last-child {
  157. padding-right: 0; } }
  158. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  159. .med-col-1 {
  160. padding-left: 0em;
  161. padding-right: 1em;
  162. margin-left: 0%;
  163. width: 8.33333%; }
  164. .med-col-1:last-child {
  165. padding-right: 0; } }
  166. @media only screen and (min-width: 1081px) {
  167. .large-col-1 {
  168. padding-left: 0em;
  169. padding-right: 1em;
  170. margin-left: 0%;
  171. width: 8.33333%; }
  172. .large-col-1:last-child {
  173. padding-right: 0; } }
  174. .col-2 {
  175. padding-left: 0em;
  176. padding-right: 1em;
  177. margin-left: 0%;
  178. width: 16.66667%; }
  179. .col-2:last-child {
  180. padding-right: 0; }
  181. @media only screen and (max-width: 768px) {
  182. .small-col-2 {
  183. padding-left: 0em;
  184. padding-right: 1em;
  185. margin-left: 0%;
  186. width: 16.66667%; }
  187. .small-col-2:last-child {
  188. padding-right: 0; } }
  189. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  190. .med-col-2 {
  191. padding-left: 0em;
  192. padding-right: 1em;
  193. margin-left: 0%;
  194. width: 16.66667%; }
  195. .med-col-2:last-child {
  196. padding-right: 0; } }
  197. @media only screen and (min-width: 1081px) {
  198. .large-col-2 {
  199. padding-left: 0em;
  200. padding-right: 1em;
  201. margin-left: 0%;
  202. width: 16.66667%; }
  203. .large-col-2:last-child {
  204. padding-right: 0; } }
  205. .col-3 {
  206. padding-left: 0em;
  207. padding-right: 1em;
  208. margin-left: 0%;
  209. width: 25%; }
  210. .col-3:last-child {
  211. padding-right: 0; }
  212. @media only screen and (max-width: 768px) {
  213. .small-col-3 {
  214. padding-left: 0em;
  215. padding-right: 1em;
  216. margin-left: 0%;
  217. width: 25%; }
  218. .small-col-3:last-child {
  219. padding-right: 0; } }
  220. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  221. .med-col-3 {
  222. padding-left: 0em;
  223. padding-right: 1em;
  224. margin-left: 0%;
  225. width: 25%; }
  226. .med-col-3:last-child {
  227. padding-right: 0; } }
  228. @media only screen and (min-width: 1081px) {
  229. .large-col-3 {
  230. padding-left: 0em;
  231. padding-right: 1em;
  232. margin-left: 0%;
  233. width: 25%; }
  234. .large-col-3:last-child {
  235. padding-right: 0; } }
  236. .col-4 {
  237. padding-left: 0em;
  238. padding-right: 1em;
  239. margin-left: 0%;
  240. width: 33.33333%; }
  241. .col-4:last-child {
  242. padding-right: 0; }
  243. @media only screen and (max-width: 768px) {
  244. .small-col-4 {
  245. padding-left: 0em;
  246. padding-right: 1em;
  247. margin-left: 0%;
  248. width: 33.33333%; }
  249. .small-col-4:last-child {
  250. padding-right: 0; } }
  251. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  252. .med-col-4 {
  253. padding-left: 0em;
  254. padding-right: 1em;
  255. margin-left: 0%;
  256. width: 33.33333%; }
  257. .med-col-4:last-child {
  258. padding-right: 0; } }
  259. @media only screen and (min-width: 1081px) {
  260. .large-col-4 {
  261. padding-left: 0em;
  262. padding-right: 1em;
  263. margin-left: 0%;
  264. width: 33.33333%; }
  265. .large-col-4:last-child {
  266. padding-right: 0; } }
  267. .col-5 {
  268. padding-left: 0em;
  269. padding-right: 1em;
  270. margin-left: 0%;
  271. width: 41.66667%; }
  272. .col-5:last-child {
  273. padding-right: 0; }
  274. @media only screen and (max-width: 768px) {
  275. .small-col-5 {
  276. padding-left: 0em;
  277. padding-right: 1em;
  278. margin-left: 0%;
  279. width: 41.66667%; }
  280. .small-col-5:last-child {
  281. padding-right: 0; } }
  282. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  283. .med-col-5 {
  284. padding-left: 0em;
  285. padding-right: 1em;
  286. margin-left: 0%;
  287. width: 41.66667%; }
  288. .med-col-5:last-child {
  289. padding-right: 0; } }
  290. @media only screen and (min-width: 1081px) {
  291. .large-col-5 {
  292. padding-left: 0em;
  293. padding-right: 1em;
  294. margin-left: 0%;
  295. width: 41.66667%; }
  296. .large-col-5:last-child {
  297. padding-right: 0; } }
  298. .col-6 {
  299. padding-left: 0em;
  300. padding-right: 1em;
  301. margin-left: 0%;
  302. width: 50%; }
  303. .col-6:last-child {
  304. padding-right: 0; }
  305. @media only screen and (max-width: 768px) {
  306. .small-col-6 {
  307. padding-left: 0em;
  308. padding-right: 1em;
  309. margin-left: 0%;
  310. width: 50%; }
  311. .small-col-6:last-child {
  312. padding-right: 0; } }
  313. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  314. .med-col-6 {
  315. padding-left: 0em;
  316. padding-right: 1em;
  317. margin-left: 0%;
  318. width: 50%; }
  319. .med-col-6:last-child {
  320. padding-right: 0; } }
  321. @media only screen and (min-width: 1081px) {
  322. .large-col-6 {
  323. padding-left: 0em;
  324. padding-right: 1em;
  325. margin-left: 0%;
  326. width: 50%; }
  327. .large-col-6:last-child {
  328. padding-right: 0; } }
  329. .col-7 {
  330. padding-left: 0em;
  331. padding-right: 1em;
  332. margin-left: 0%;
  333. width: 58.33333%; }
  334. .col-7:last-child {
  335. padding-right: 0; }
  336. @media only screen and (max-width: 768px) {
  337. .small-col-7 {
  338. padding-left: 0em;
  339. padding-right: 1em;
  340. margin-left: 0%;
  341. width: 58.33333%; }
  342. .small-col-7:last-child {
  343. padding-right: 0; } }
  344. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  345. .med-col-7 {
  346. padding-left: 0em;
  347. padding-right: 1em;
  348. margin-left: 0%;
  349. width: 58.33333%; }
  350. .med-col-7:last-child {
  351. padding-right: 0; } }
  352. @media only screen and (min-width: 1081px) {
  353. .large-col-7 {
  354. padding-left: 0em;
  355. padding-right: 1em;
  356. margin-left: 0%;
  357. width: 58.33333%; }
  358. .large-col-7:last-child {
  359. padding-right: 0; } }
  360. .col-8 {
  361. padding-left: 0em;
  362. padding-right: 1em;
  363. margin-left: 0%;
  364. width: 66.66667%; }
  365. .col-8:last-child {
  366. padding-right: 0; }
  367. @media only screen and (max-width: 768px) {
  368. .small-col-8 {
  369. padding-left: 0em;
  370. padding-right: 1em;
  371. margin-left: 0%;
  372. width: 66.66667%; }
  373. .small-col-8:last-child {
  374. padding-right: 0; } }
  375. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  376. .med-col-8 {
  377. padding-left: 0em;
  378. padding-right: 1em;
  379. margin-left: 0%;
  380. width: 66.66667%; }
  381. .med-col-8:last-child {
  382. padding-right: 0; } }
  383. @media only screen and (min-width: 1081px) {
  384. .large-col-8 {
  385. padding-left: 0em;
  386. padding-right: 1em;
  387. margin-left: 0%;
  388. width: 66.66667%; }
  389. .large-col-8:last-child {
  390. padding-right: 0; } }
  391. .col-9 {
  392. padding-left: 0em;
  393. padding-right: 1em;
  394. margin-left: 0%;
  395. width: 75%; }
  396. .col-9:last-child {
  397. padding-right: 0; }
  398. @media only screen and (max-width: 768px) {
  399. .small-col-9 {
  400. padding-left: 0em;
  401. padding-right: 1em;
  402. margin-left: 0%;
  403. width: 75%; }
  404. .small-col-9:last-child {
  405. padding-right: 0; } }
  406. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  407. .med-col-9 {
  408. padding-left: 0em;
  409. padding-right: 1em;
  410. margin-left: 0%;
  411. width: 75%; }
  412. .med-col-9:last-child {
  413. padding-right: 0; } }
  414. @media only screen and (min-width: 1081px) {
  415. .large-col-9 {
  416. padding-left: 0em;
  417. padding-right: 1em;
  418. margin-left: 0%;
  419. width: 75%; }
  420. .large-col-9:last-child {
  421. padding-right: 0; } }
  422. .col-10 {
  423. padding-left: 0em;
  424. padding-right: 1em;
  425. margin-left: 0%;
  426. width: 83.33333%; }
  427. .col-10:last-child {
  428. padding-right: 0; }
  429. @media only screen and (max-width: 768px) {
  430. .small-col-10 {
  431. padding-left: 0em;
  432. padding-right: 1em;
  433. margin-left: 0%;
  434. width: 83.33333%; }
  435. .small-col-10:last-child {
  436. padding-right: 0; } }
  437. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  438. .med-col-10 {
  439. padding-left: 0em;
  440. padding-right: 1em;
  441. margin-left: 0%;
  442. width: 83.33333%; }
  443. .med-col-10:last-child {
  444. padding-right: 0; } }
  445. @media only screen and (min-width: 1081px) {
  446. .large-col-10 {
  447. padding-left: 0em;
  448. padding-right: 1em;
  449. margin-left: 0%;
  450. width: 83.33333%; }
  451. .large-col-10:last-child {
  452. padding-right: 0; } }
  453. .col-11 {
  454. padding-left: 0em;
  455. padding-right: 1em;
  456. margin-left: 0%;
  457. width: 91.66667%; }
  458. .col-11:last-child {
  459. padding-right: 0; }
  460. @media only screen and (max-width: 768px) {
  461. .small-col-11 {
  462. padding-left: 0em;
  463. padding-right: 1em;
  464. margin-left: 0%;
  465. width: 91.66667%; }
  466. .small-col-11:last-child {
  467. padding-right: 0; } }
  468. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  469. .med-col-11 {
  470. padding-left: 0em;
  471. padding-right: 1em;
  472. margin-left: 0%;
  473. width: 91.66667%; }
  474. .med-col-11:last-child {
  475. padding-right: 0; } }
  476. @media only screen and (min-width: 1081px) {
  477. .large-col-11 {
  478. padding-left: 0em;
  479. padding-right: 1em;
  480. margin-left: 0%;
  481. width: 91.66667%; }
  482. .large-col-11:last-child {
  483. padding-right: 0; } }
  484. .col-12 {
  485. padding-left: 0em;
  486. padding-right: 0;
  487. margin-left: 0%;
  488. width: 100%; }
  489. .col-12:last-child {
  490. padding-right: 0; }
  491. @media only screen and (max-width: 768px) {
  492. .small-col-12 {
  493. padding-left: 0em;
  494. padding-right: 0;
  495. margin-left: 0%;
  496. width: 100%; }
  497. .small-col-12:last-child {
  498. padding-right: 0; } }
  499. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  500. .med-col-12 {
  501. padding-left: 0em;
  502. padding-right: 0;
  503. margin-left: 0%;
  504. width: 100%; }
  505. .med-col-12:last-child {
  506. padding-right: 0; } }
  507. @media only screen and (min-width: 1081px) {
  508. .large-col-12 {
  509. padding-left: 0em;
  510. padding-right: 0;
  511. margin-left: 0%;
  512. width: 100%; }
  513. .large-col-12:last-child {
  514. padding-right: 0; } }
  515. .col-1-offset-1 {
  516. padding-left: 1em;
  517. padding-right: 1em;
  518. margin-left: 8.33333%;
  519. width: 8.33333%; }
  520. .col-1-offset-1:last-child {
  521. padding-right: 0; }
  522. .col-1-offset-2 {
  523. padding-left: 2em;
  524. padding-right: 1em;
  525. margin-left: 16.66667%;
  526. width: 8.33333%; }
  527. .col-1-offset-2:last-child {
  528. padding-right: 0; }
  529. .col-1-offset-3 {
  530. padding-left: 3em;
  531. padding-right: 1em;
  532. margin-left: 25%;
  533. width: 8.33333%; }
  534. .col-1-offset-3:last-child {
  535. padding-right: 0; }
  536. .col-1-offset-4 {
  537. padding-left: 4em;
  538. padding-right: 1em;
  539. margin-left: 33.33333%;
  540. width: 8.33333%; }
  541. .col-1-offset-4:last-child {
  542. padding-right: 0; }
  543. .col-1-offset-5 {
  544. padding-left: 5em;
  545. padding-right: 1em;
  546. margin-left: 41.66667%;
  547. width: 8.33333%; }
  548. .col-1-offset-5:last-child {
  549. padding-right: 0; }
  550. .col-1-offset-6 {
  551. padding-left: 6em;
  552. padding-right: 1em;
  553. margin-left: 50%;
  554. width: 8.33333%; }
  555. .col-1-offset-6:last-child {
  556. padding-right: 0; }
  557. .col-1-offset-7 {
  558. padding-left: 7em;
  559. padding-right: 1em;
  560. margin-left: 58.33333%;
  561. width: 8.33333%; }
  562. .col-1-offset-7:last-child {
  563. padding-right: 0; }
  564. .col-1-offset-8 {
  565. padding-left: 8em;
  566. padding-right: 1em;
  567. margin-left: 66.66667%;
  568. width: 8.33333%; }
  569. .col-1-offset-8:last-child {
  570. padding-right: 0; }
  571. .col-1-offset-9 {
  572. padding-left: 9em;
  573. padding-right: 1em;
  574. margin-left: 75%;
  575. width: 8.33333%; }
  576. .col-1-offset-9:last-child {
  577. padding-right: 0; }
  578. .col-1-offset-10 {
  579. padding-left: 10em;
  580. padding-right: 1em;
  581. margin-left: 83.33333%;
  582. width: 8.33333%; }
  583. .col-1-offset-10:last-child {
  584. padding-right: 0; }
  585. .col-1-offset-11 {
  586. padding-left: 11em;
  587. padding-right: 1em;
  588. margin-left: 91.66667%;
  589. width: 8.33333%; }
  590. .col-1-offset-11:last-child {
  591. padding-right: 0; }
  592. .col-2-offset-1 {
  593. padding-left: 1em;
  594. padding-right: 1em;
  595. margin-left: 16.66667%;
  596. width: 16.66667%; }
  597. .col-2-offset-1:last-child {
  598. padding-right: 0; }
  599. .col-2-offset-2 {
  600. padding-left: 2em;
  601. padding-right: 1em;
  602. margin-left: 33.33333%;
  603. width: 16.66667%; }
  604. .col-2-offset-2:last-child {
  605. padding-right: 0; }
  606. .col-2-offset-3 {
  607. padding-left: 3em;
  608. padding-right: 1em;
  609. margin-left: 50%;
  610. width: 16.66667%; }
  611. .col-2-offset-3:last-child {
  612. padding-right: 0; }
  613. .col-2-offset-4 {
  614. padding-left: 4em;
  615. padding-right: 1em;
  616. margin-left: 66.66667%;
  617. width: 16.66667%; }
  618. .col-2-offset-4:last-child {
  619. padding-right: 0; }
  620. .col-2-offset-5 {
  621. padding-left: 5em;
  622. padding-right: 1em;
  623. margin-left: 83.33333%;
  624. width: 16.66667%; }
  625. .col-2-offset-5:last-child {
  626. padding-right: 0; }
  627. .col-2-offset-6 {
  628. padding-left: 6em;
  629. padding-right: 1em;
  630. margin-left: 100%;
  631. width: 16.66667%; }
  632. .col-2-offset-6:last-child {
  633. padding-right: 0; }
  634. .col-2-offset-7 {
  635. padding-left: 7em;
  636. padding-right: 1em;
  637. margin-left: 116.66667%;
  638. width: 16.66667%; }
  639. .col-2-offset-7:last-child {
  640. padding-right: 0; }
  641. .col-2-offset-8 {
  642. padding-left: 8em;
  643. padding-right: 1em;
  644. margin-left: 133.33333%;
  645. width: 16.66667%; }
  646. .col-2-offset-8:last-child {
  647. padding-right: 0; }
  648. .col-2-offset-9 {
  649. padding-left: 9em;
  650. padding-right: 1em;
  651. margin-left: 150%;
  652. width: 16.66667%; }
  653. .col-2-offset-9:last-child {
  654. padding-right: 0; }
  655. .col-2-offset-10 {
  656. padding-left: 10em;
  657. padding-right: 1em;
  658. margin-left: 166.66667%;
  659. width: 16.66667%; }
  660. .col-2-offset-10:last-child {
  661. padding-right: 0; }
  662. .col-3-offset-1 {
  663. padding-left: 1em;
  664. padding-right: 1em;
  665. margin-left: 25%;
  666. width: 25%; }
  667. .col-3-offset-1:last-child {
  668. padding-right: 0; }
  669. .col-3-offset-2 {
  670. padding-left: 2em;
  671. padding-right: 1em;
  672. margin-left: 50%;
  673. width: 25%; }
  674. .col-3-offset-2:last-child {
  675. padding-right: 0; }
  676. .col-3-offset-3 {
  677. padding-left: 3em;
  678. padding-right: 1em;
  679. margin-left: 75%;
  680. width: 25%; }
  681. .col-3-offset-3:last-child {
  682. padding-right: 0; }
  683. .col-3-offset-4 {
  684. padding-left: 4em;
  685. padding-right: 1em;
  686. margin-left: 100%;
  687. width: 25%; }
  688. .col-3-offset-4:last-child {
  689. padding-right: 0; }
  690. .col-3-offset-5 {
  691. padding-left: 5em;
  692. padding-right: 1em;
  693. margin-left: 125%;
  694. width: 25%; }
  695. .col-3-offset-5:last-child {
  696. padding-right: 0; }
  697. .col-3-offset-6 {
  698. padding-left: 6em;
  699. padding-right: 1em;
  700. margin-left: 150%;
  701. width: 25%; }
  702. .col-3-offset-6:last-child {
  703. padding-right: 0; }
  704. .col-3-offset-7 {
  705. padding-left: 7em;
  706. padding-right: 1em;
  707. margin-left: 175%;
  708. width: 25%; }
  709. .col-3-offset-7:last-child {
  710. padding-right: 0; }
  711. .col-3-offset-8 {
  712. padding-left: 8em;
  713. padding-right: 1em;
  714. margin-left: 200%;
  715. width: 25%; }
  716. .col-3-offset-8:last-child {
  717. padding-right: 0; }
  718. .col-3-offset-9 {
  719. padding-left: 9em;
  720. padding-right: 1em;
  721. margin-left: 225%;
  722. width: 25%; }
  723. .col-3-offset-9:last-child {
  724. padding-right: 0; }
  725. .col-4-offset-1 {
  726. padding-left: 1em;
  727. padding-right: 1em;
  728. margin-left: 33.33333%;
  729. width: 33.33333%; }
  730. .col-4-offset-1:last-child {
  731. padding-right: 0; }
  732. .col-4-offset-2 {
  733. padding-left: 2em;
  734. padding-right: 1em;
  735. margin-left: 66.66667%;
  736. width: 33.33333%; }
  737. .col-4-offset-2:last-child {
  738. padding-right: 0; }
  739. .col-4-offset-3 {
  740. padding-left: 3em;
  741. padding-right: 1em;
  742. margin-left: 100%;
  743. width: 33.33333%; }
  744. .col-4-offset-3:last-child {
  745. padding-right: 0; }
  746. .col-4-offset-4 {
  747. padding-left: 4em;
  748. padding-right: 1em;
  749. margin-left: 133.33333%;
  750. width: 33.33333%; }
  751. .col-4-offset-4:last-child {
  752. padding-right: 0; }
  753. .col-4-offset-5 {
  754. padding-left: 5em;
  755. padding-right: 1em;
  756. margin-left: 166.66667%;
  757. width: 33.33333%; }
  758. .col-4-offset-5:last-child {
  759. padding-right: 0; }
  760. .col-4-offset-6 {
  761. padding-left: 6em;
  762. padding-right: 1em;
  763. margin-left: 200%;
  764. width: 33.33333%; }
  765. .col-4-offset-6:last-child {
  766. padding-right: 0; }
  767. .col-4-offset-7 {
  768. padding-left: 7em;
  769. padding-right: 1em;
  770. margin-left: 233.33333%;
  771. width: 33.33333%; }
  772. .col-4-offset-7:last-child {
  773. padding-right: 0; }
  774. .col-4-offset-8 {
  775. padding-left: 8em;
  776. padding-right: 1em;
  777. margin-left: 266.66667%;
  778. width: 33.33333%; }
  779. .col-4-offset-8:last-child {
  780. padding-right: 0; }
  781. .col-5-offset-1 {
  782. padding-left: 1em;
  783. padding-right: 1em;
  784. margin-left: 41.66667%;
  785. width: 41.66667%; }
  786. .col-5-offset-1:last-child {
  787. padding-right: 0; }
  788. .col-5-offset-2 {
  789. padding-left: 2em;
  790. padding-right: 1em;
  791. margin-left: 83.33333%;
  792. width: 41.66667%; }
  793. .col-5-offset-2:last-child {
  794. padding-right: 0; }
  795. .col-5-offset-3 {
  796. padding-left: 3em;
  797. padding-right: 1em;
  798. margin-left: 125%;
  799. width: 41.66667%; }
  800. .col-5-offset-3:last-child {
  801. padding-right: 0; }
  802. .col-5-offset-4 {
  803. padding-left: 4em;
  804. padding-right: 1em;
  805. margin-left: 166.66667%;
  806. width: 41.66667%; }
  807. .col-5-offset-4:last-child {
  808. padding-right: 0; }
  809. .col-5-offset-5 {
  810. padding-left: 5em;
  811. padding-right: 1em;
  812. margin-left: 208.33333%;
  813. width: 41.66667%; }
  814. .col-5-offset-5:last-child {
  815. padding-right: 0; }
  816. .col-5-offset-6 {
  817. padding-left: 6em;
  818. padding-right: 1em;
  819. margin-left: 250%;
  820. width: 41.66667%; }
  821. .col-5-offset-6:last-child {
  822. padding-right: 0; }
  823. .col-5-offset-7 {
  824. padding-left: 7em;
  825. padding-right: 1em;
  826. margin-left: 291.66667%;
  827. width: 41.66667%; }
  828. .col-5-offset-7:last-child {
  829. padding-right: 0; }
  830. .col-6-offset-1 {
  831. padding-left: 1em;
  832. padding-right: 1em;
  833. margin-left: 50%;
  834. width: 50%; }
  835. .col-6-offset-1:last-child {
  836. padding-right: 0; }
  837. .col-6-offset-2 {
  838. padding-left: 2em;
  839. padding-right: 1em;
  840. margin-left: 100%;
  841. width: 50%; }
  842. .col-6-offset-2:last-child {
  843. padding-right: 0; }
  844. .col-6-offset-3 {
  845. padding-left: 3em;
  846. padding-right: 1em;
  847. margin-left: 150%;
  848. width: 50%; }
  849. .col-6-offset-3:last-child {
  850. padding-right: 0; }
  851. .col-6-offset-4 {
  852. padding-left: 4em;
  853. padding-right: 1em;
  854. margin-left: 200%;
  855. width: 50%; }
  856. .col-6-offset-4:last-child {
  857. padding-right: 0; }
  858. .col-6-offset-5 {
  859. padding-left: 5em;
  860. padding-right: 1em;
  861. margin-left: 250%;
  862. width: 50%; }
  863. .col-6-offset-5:last-child {
  864. padding-right: 0; }
  865. .col-6-offset-6 {
  866. padding-left: 6em;
  867. padding-right: 1em;
  868. margin-left: 300%;
  869. width: 50%; }
  870. .col-6-offset-6:last-child {
  871. padding-right: 0; }
  872. .col-7-offset-1 {
  873. padding-left: 1em;
  874. padding-right: 1em;
  875. margin-left: 58.33333%;
  876. width: 58.33333%; }
  877. .col-7-offset-1:last-child {
  878. padding-right: 0; }
  879. .col-7-offset-2 {
  880. padding-left: 2em;
  881. padding-right: 1em;
  882. margin-left: 116.66667%;
  883. width: 58.33333%; }
  884. .col-7-offset-2:last-child {
  885. padding-right: 0; }
  886. .col-7-offset-3 {
  887. padding-left: 3em;
  888. padding-right: 1em;
  889. margin-left: 175%;
  890. width: 58.33333%; }
  891. .col-7-offset-3:last-child {
  892. padding-right: 0; }
  893. .col-7-offset-4 {
  894. padding-left: 4em;
  895. padding-right: 1em;
  896. margin-left: 233.33333%;
  897. width: 58.33333%; }
  898. .col-7-offset-4:last-child {
  899. padding-right: 0; }
  900. .col-7-offset-5 {
  901. padding-left: 5em;
  902. padding-right: 1em;
  903. margin-left: 291.66667%;
  904. width: 58.33333%; }
  905. .col-7-offset-5:last-child {
  906. padding-right: 0; }
  907. .col-8-offset-1 {
  908. padding-left: 1em;
  909. padding-right: 1em;
  910. margin-left: 66.66667%;
  911. width: 66.66667%; }
  912. .col-8-offset-1:last-child {
  913. padding-right: 0; }
  914. .col-8-offset-2 {
  915. padding-left: 2em;
  916. padding-right: 1em;
  917. margin-left: 133.33333%;
  918. width: 66.66667%; }
  919. .col-8-offset-2:last-child {
  920. padding-right: 0; }
  921. .col-8-offset-3 {
  922. padding-left: 3em;
  923. padding-right: 1em;
  924. margin-left: 200%;
  925. width: 66.66667%; }
  926. .col-8-offset-3:last-child {
  927. padding-right: 0; }
  928. .col-8-offset-4 {
  929. padding-left: 4em;
  930. padding-right: 1em;
  931. margin-left: 266.66667%;
  932. width: 66.66667%; }
  933. .col-8-offset-4:last-child {
  934. padding-right: 0; }
  935. .col-9-offset-1 {
  936. padding-left: 1em;
  937. padding-right: 1em;
  938. margin-left: 75%;
  939. width: 75%; }
  940. .col-9-offset-1:last-child {
  941. padding-right: 0; }
  942. .col-9-offset-2 {
  943. padding-left: 2em;
  944. padding-right: 1em;
  945. margin-left: 150%;
  946. width: 75%; }
  947. .col-9-offset-2:last-child {
  948. padding-right: 0; }
  949. .col-9-offset-3 {
  950. padding-left: 3em;
  951. padding-right: 1em;
  952. margin-left: 225%;
  953. width: 75%; }
  954. .col-9-offset-3:last-child {
  955. padding-right: 0; }
  956. .col-10-offset-1 {
  957. padding-left: 1em;
  958. padding-right: 1em;
  959. margin-left: 83.33333%;
  960. width: 83.33333%; }
  961. .col-10-offset-1:last-child {
  962. padding-right: 0; }
  963. .col-10-offset-2 {
  964. padding-left: 2em;
  965. padding-right: 1em;
  966. margin-left: 166.66667%;
  967. width: 83.33333%; }
  968. .col-10-offset-2:last-child {
  969. padding-right: 0; }
  970. .col-11-offset-1 {
  971. padding-left: 1em;
  972. padding-right: 1em;
  973. margin-left: 91.66667%;
  974. width: 91.66667%; }
  975. .col-11-offset-1:last-child {
  976. padding-right: 0; }
  977. .col.float-right {
  978. float: right;
  979. padding-right: 0;
  980. padding-left: 1em; }
  981. body, html {
  982. position: relative;
  983. width: 100%;
  984. height: 100%;
  985. font-family: sans-serif;
  986. font-style: normal;
  987. margin: 0;
  988. padding: 0; }
  989. body {
  990. overflow-x: hidden; }
  991. div.dialog-off-canvas-main-canvas {
  992. width: 100vw;
  993. height: 100vh;
  994. display: flex;
  995. flex-direction: column; }
  996. body.toolbar-horizontal.toolbar-themes.toolbar-no-tabs {
  997. padding-top: 24px !important; }
  998. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  999. margin: 0 auto; }
  1000. @media only screen and (max-width: 436px) {
  1001. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1002. width: 436px; } }
  1003. @media only screen and (min-width: 655px) and (max-width: 872px) {
  1004. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1005. width: 654px; } }
  1006. @media only screen and (min-width: 873px) and (max-width: 1090px) {
  1007. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1008. width: 872px; } }
  1009. @media only screen and (min-width: 1091px) and (max-width: 1308px) {
  1010. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1011. width: 1090px; } }
  1012. @media only screen and (min-width: 1309px) and (max-width: 1526px) {
  1013. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1014. width: 1308px; } }
  1015. @media only screen and (min-width: 1527px) and (max-width: 1744px) {
  1016. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1017. width: 1526px; } }
  1018. @media only screen and (min-width: 1745px) and (max-width: 1962px) {
  1019. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1020. width: 1744px; } }
  1021. @media only screen and (min-width: 1963px) and (max-width: 2180px) {
  1022. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1023. width: 1962px; } }
  1024. @media only screen and (min-width: 2181px) and (max-width: 2398px) {
  1025. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1026. width: 2180px; } }
  1027. @media only screen and (min-width: 2399px) and (max-width: 2616px) {
  1028. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1029. width: 2398px; } }
  1030. @media only screen and (min-width: 2617px) and (max-width: 2834px) {
  1031. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1032. width: 2616px; } }
  1033. @media only screen and (min-width: 2835px) and (max-width: 3052px) {
  1034. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1035. width: 2834px; } }
  1036. @media only screen and (min-width: 3053px) and (max-width: 3270px) {
  1037. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1038. width: 3052px; } }
  1039. @media only screen and (min-width: 3271px) and (max-width: 3488px) {
  1040. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1041. width: 3270px; } }
  1042. @media only screen and (min-width: 3489px) and (max-width: 3706px) {
  1043. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1044. width: 3488px; } }
  1045. @media only screen and (min-width: 3707px) and (max-width: 3924px) {
  1046. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1047. width: 3706px; } }
  1048. @media only screen and (min-width: 3925px) and (max-width: 4142px) {
  1049. header[role="banner"] .wrapper, main[role="main"] > .scroller > .wrapper, footer[role="contentinfo"] > .wrapper {
  1050. width: 3924px; } }
  1051. header[role="banner"] {
  1052. flex: 0 0 auto;
  1053. background-color: #fff;
  1054. width: 100vw; }
  1055. header[role="banner"] .wrapper {
  1056. background-color: #fff; }
  1057. header[role="banner"] .wrapper:after {
  1058. content: "";
  1059. clear: both;
  1060. display: block; }
  1061. header[role="banner"] .wrapper .header-block {
  1062. min-height: 15px;
  1063. font-size: 0; }
  1064. header[role="banner"] .wrapper .header-block.header-right {
  1065. text-align: right; }
  1066. header[role="banner"] .wrapper .header-block > * {
  1067. display: inline-block;
  1068. vertical-align: top;
  1069. font-size: 16px;
  1070. text-align: left; }
  1071. main[role="main"] {
  1072. flex: 1 1 auto;
  1073. overflow-y: auto;
  1074. overflow-x: hidden; }
  1075. main[role="main"] > .scroller {
  1076. width: 100vw; }
  1077. main[role="main"] > .scroller > .wrapper {
  1078. display: flex;
  1079. flex-direction: row-reverse; }
  1080. main[role="main"] > .scroller > .wrapper #content-left {
  1081. flex-basis: 205px;
  1082. flex-shrink: 0; }
  1083. main[role="main"] > .scroller > .wrapper #content-left > * {
  1084. width: 100%;
  1085. box-sizing: border-box;
  1086. padding: 0.5em 13px; }
  1087. main[role="main"] > .scroller > .wrapper #content-center {
  1088. flex-basis: 110%; }
  1089. @keyframes rotating {
  1090. from {
  1091. transform: rotate(0deg);
  1092. transform-origin: center; }
  1093. to {
  1094. transform: rotate(360deg);
  1095. transform-origin: center; } }
  1096. body {
  1097. font-size: 16px;
  1098. font-family: "Ubuntu",Arial,"MS Trebuchet",sans-serif;
  1099. font-weight: 500;
  1100. font-style: normal;
  1101. line-height: 1.3; }
  1102. aside.messages {
  1103. border: none; }
  1104. header[role="banner"] {
  1105. padding: 0.2em 0 0 0; }
  1106. header[role="banner"] #block-userlogin h2, header[role="banner"] #user-tools h4, header[role="banner"] #user-flags h2, header[role="banner"] #user-flags li h5, header[role="banner"] #block-header ul.menu li a {
  1107. font-size: 0.9em;
  1108. font-weight: 400; }
  1109. header[role="banner"] #block-sitebranding h1 {
  1110. margin: 0;
  1111. line-height: 1; }
  1112. header[role="banner"] #block-userlogin {
  1113. position: relative;
  1114. padding: 0 1em;
  1115. overflow: visible; }
  1116. header[role="banner"] #block-userlogin h2 {
  1117. line-height: 1.38;
  1118. margin: 0; }
  1119. header[role="banner"] #block-userlogin > section {
  1120. background-color: #fff;
  1121. overflow: hidden;
  1122. width: 11em;
  1123. height: 0px;
  1124. padding: 0.01em 1em;
  1125. box-sizing: content-box;
  1126. transition: all 0.4s ease-in-out;
  1127. transition-delay: 2s;
  1128. position: absolute;
  1129. right: 0;
  1130. top: 1.7em;
  1131. box-sizing: content-box; }
  1132. header[role="banner"] #block-userlogin:hover > section {
  1133. transition-delay: 0s;
  1134. height: 12em;
  1135. padding: 1em 1em;
  1136. box-shadow: 0 0 10px #ccc; }
  1137. header[role="banner"] #block-userlogin .form-item {
  1138. margin: 0;
  1139. position: relative;
  1140. width: 100%; }
  1141. header[role="banner"] #block-userlogin .form-item.form-item-name {
  1142. margin: 2px 0 0.5em 0; }
  1143. header[role="banner"] #block-userlogin .form-item.form-item-name input {
  1144. width: 90%;
  1145. padding: 0;
  1146. box-sizing: content-box; }
  1147. header[role="banner"] #block-userlogin .form-item.form-item-pass {
  1148. margin: 0 0 0.5em 0; }
  1149. header[role="banner"] #block-userlogin .form-item.form-item-pass input {
  1150. width: 90%;
  1151. padding: 0;
  1152. box-sizing: content-box; }
  1153. header[role="banner"] #block-userlogin .form-item.form-item-persistent-login {
  1154. font-size: 0.756em; }
  1155. header[role="banner"] #block-userlogin .form-item.form-item-persistent-login label {
  1156. vertical-align: top; }
  1157. header[role="banner"] #block-userlogin #edit-actions {
  1158. margin: 0; }
  1159. header[role="banner"] #block-userlogin .item-list ul {
  1160. margin: 0; }
  1161. header[role="banner"] #block-userlogin .item-list ul li {
  1162. list-style: none;
  1163. margin: 0; }
  1164. header[role="banner"] #block-userlogin .item-list ul li a {
  1165. font-size: 0.756em; }
  1166. header[role="banner"] #block-userblock h2 {
  1167. display: none; }
  1168. header[role="banner"] #block-userblock a {
  1169. margin-right: 1em; }
  1170. header[role="banner"] #user-tools {
  1171. padding-top: 0.06em; }
  1172. header[role="banner"] #user-tools h4 {
  1173. cursor: pointer; }
  1174. header[role="banner"] #user-tools .mdi-logout::before {
  1175. margin: -0.125em 0 0 0;
  1176. vertical-align: top; }
  1177. header[role="banner"] #user-flags {
  1178. border-left: 1px solid #000;
  1179. padding-left: 0.5em;
  1180. margin-left: 0.5em;
  1181. display: inline-block;
  1182. vertical-align: top;
  1183. position: relative; }
  1184. header[role="banner"] #user-flags h2 {
  1185. cursor: pointer; }
  1186. header[role="banner"] #user-flags h2:before {
  1187. padding-right: 0.2em; }
  1188. header[role="banner"] #user-flags ul {
  1189. background-color: #fff;
  1190. overflow: hidden;
  1191. width: 11em;
  1192. max-height: 1px;
  1193. padding: 0.01em 1em;
  1194. box-sizing: content-box;
  1195. transition: all 0.4s ease-in-out;
  1196. transition-delay: 2s;
  1197. position: absolute;
  1198. right: 0;
  1199. top: 1.7em;
  1200. box-sizing: content-box;
  1201. z-index: 30; }
  1202. header[role="banner"] #user-flags:hover ul {
  1203. transition-delay: 0s;
  1204. max-height: 50em;
  1205. padding: 1em 1em;
  1206. box-shadow: 0 0 10px #ccc; }
  1207. header[role="banner"] #user-flags li {
  1208. width: 100%;
  1209. display: flex;
  1210. flex-direction: row;
  1211. align-items: baseline;
  1212. flex-wrap: nowrap; }
  1213. header[role="banner"] #user-flags li h5 {
  1214. cursor: pointer; }
  1215. header[role="banner"] #user-flags li span.mdi {
  1216. font-size: 0.9em; }
  1217. header[role="banner"] #user-flags li div.actions {
  1218. opacity: 0;
  1219. transition: opacity 0.3s ease-in-out;
  1220. padding-left: 0.5em; }
  1221. header[role="banner"] #user-flags li div.actions span.mdi {
  1222. cursor: pointer;
  1223. color: #4e4d4d; }
  1224. header[role="banner"] #user-flags li div.actions span.delete-btn.loading:before {
  1225. animation: rotating 2s linear infinite; }
  1226. header[role="banner"] #user-flags li:hover div.actions {
  1227. opacity: 1; }
  1228. header[role="banner"] #user-flags li.create-flag {
  1229. margin-top: 0.2em; }
  1230. header[role="banner"] #user-flags li.create-flag input {
  1231. align-self: flex-end;
  1232. border: 1px solid #bbb;
  1233. border-radius: 5px;
  1234. width: calc(100% - 2em);
  1235. font-size: 0.8em; }
  1236. header[role="banner"] #user-flags li.create-flag span.add-btn {
  1237. align-self: flex-end;
  1238. color: #bbb;
  1239. font-size: 1em;
  1240. padding: 0 0 0 .5em;
  1241. transition: all 0.2s ease-in-out; }
  1242. header[role="banner"] #user-flags li.create-flag span.add-btn.active {
  1243. cursor: pointer;
  1244. color: #1a1a1a; }
  1245. header[role="banner"] #user-flags li.create-flag span.add-btn.loading:before {
  1246. animation: rotating 2s linear infinite; }
  1247. header[role="banner"] #block-header {
  1248. margin-right: 1em;
  1249. padding-left: 1em;
  1250. border-left: 1px solid #000; }
  1251. header[role="banner"] #block-header ul.menu {
  1252. margin: 0; }
  1253. header[role="banner"] #block-header ul.menu li {
  1254. padding: 0;
  1255. display: inline-block; }
  1256. header[role="banner"] #block-header ul.menu li:not(:first-of-type) {
  1257. margin-left: 0.5em; }
  1258. header[role="banner"] #block-languageswitcher {
  1259. text-align: right; }
  1260. header[role="banner"] #block-languageswitcher h2 {
  1261. margin: 0.1em 0 0 0;
  1262. font-size: 0.756em;
  1263. font-weight: 400;
  1264. padding: 0.1em 0.4em 0.2em;
  1265. border-radius: 3px;
  1266. background-color: #444;
  1267. color: #fff;
  1268. display: inline-block;
  1269. vertical-align: top; }
  1270. header[role="banner"] #block-languageswitcher > ul.links {
  1271. overflow: hidden;
  1272. width: 3.5em;
  1273. height: 1px;
  1274. padding: 0.01em 0;
  1275. margin: 0;
  1276. box-sizing: content-box;
  1277. transition: all 0.4s ease-in-out; }
  1278. header[role="banner"] #block-languageswitcher:hover > ul.links {
  1279. transition-delay: 0s;
  1280. height: 2em;
  1281. padding: 0.3em 0; }
  1282. header[role="banner"] #block-languageswitcher li {
  1283. list-style: none;
  1284. padding: 0;
  1285. display: inline-block; }
  1286. header[role="banner"] #block-languageswitcher li.is-active {
  1287. display: none; }
  1288. header[role="banner"] #block-languageswitcher li a {
  1289. margin: 0;
  1290. font-size: 0.756em;
  1291. font-weight: 400;
  1292. padding: 0.2em 0.4em;
  1293. border-radius: 3px;
  1294. background-color: #444;
  1295. color: #fff; }
  1296. header[role="banner"] #header-bottom {
  1297. display: flex;
  1298. flex-direction: row;
  1299. justify-content: space-between; }
  1300. header[role="banner"] #header-bottom:after {
  1301. content: none; }
  1302. header[role="banner"] #header-bottom #block-materiosapisearchblock {
  1303. align-self: flex-end; }
  1304. @media (max-width: 654px) {
  1305. header[role="banner"] #header-bottom {
  1306. flex-direction: column-reverse; }
  1307. header[role="banner"] #header-bottom #block-pagetitle {
  1308. width: max-content; } }
  1309. header[role="banner"] #block-pagetitle {
  1310. padding: 1em 0; }
  1311. header[role="banner"] #block-pagetitle h2 {
  1312. margin: 0;
  1313. font-size: 1.512em;
  1314. text-transform: capitalize;
  1315. font-weight: 300; }
  1316. body:not(.path-home) header[role="banner"] #block-pagetitle h2 {
  1317. padding: 0.5em 1em; }
  1318. body.path-blabla header[role="banner"] #block-pagetitle h2,
  1319. body.path-checkout header[role="banner"] #block-pagetitle h2 {
  1320. color: #fff;
  1321. background-color: #9458aa; }
  1322. body.path-showrooms header[role="banner"] #block-pagetitle h2 {
  1323. color: #fff;
  1324. background-color: #50aa3c; }
  1325. body.path-base header[role="banner"] #block-pagetitle h2,
  1326. body.path-thematique header[role="banner"] #block-pagetitle h2 {
  1327. color: #fff;
  1328. background-color: #69cdcf; }
  1329. body.path-pricing header[role="banner"] #block-pagetitle h2 {
  1330. color: #fff;
  1331. background-color: #ff9f50; }
  1332. header[role="banner"] #block-materiosapisearchblock {
  1333. padding: 0; }
  1334. header[role="banner"] #block-materiosapisearchblock #materio-sapi-search-form .form-item, header[role="banner"] #block-materiosapisearchblock #materio-sapi-search-form input.button {
  1335. display: inline-block; }
  1336. header[role="banner"] #block-materiosapisearchblock #materio-sapi-search-form #edit-search {
  1337. border: 1px #BBB solid;
  1338. border-radius: 14px;
  1339. padding: 0.3em;
  1340. color: #666; }
  1341. header[role="banner"] #block-materiosapisearchblock #materio-sapi-search-form #edit-submit {
  1342. border: 0;
  1343. text-indent: 50px;
  1344. overflow: hidden;
  1345. width: 20px;
  1346. height: 20px;
  1347. margin: 0;
  1348. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAATFJREFUeNqcU8sNgkAQxc9dEr1rQgEkWoBGPEOid0ygA+6asDagBZCIHUgFrBVABWoF0ME6yZqRz/jBFw7D7ryZnZk3LSGEQiHP8/M5ut9v8rfXU2ezqa7rJSdBwff9fn/Q6XQr33xuXK83dCPIy+UKvSEEEMbjSfEkSRKa7HkeOh2PIZ5DQgwBBkEGD8yA4RFZliFfxi2R9/uDvIP8ZC/iOC4mL5GhvHdpEdhIsNvknHAkjDHDWIThqX6VpmlX+QjGdtJYr+26EL6Qt9sN5xfbtutXqqrSNUNjGtdsmqY0oigiH8I5h9e+Kv9vzjBUQmF4/UFhmqYRCnMcp7IJUtvg/UXbyATjx61qyX12XVcqAeYZBAG5z5ZljUbD6j4Xc4omUFDrTZnPmqGrfzABDwEGACI/YeOOd/wDAAAAAElFTkSuQmCC);
  1349. background-position: center;
  1350. background-repeat: no-repeat;
  1351. background-size: contain; }
  1352. aside.messages {
  1353. padding: 0; }
  1354. #content-left {
  1355. z-index: 5;
  1356. box-sizing: content-box;
  1357. max-width: 1px;
  1358. overflow-x: hidden;
  1359. transition: all 0.3s ease-in-out; }
  1360. #content-left.opened {
  1361. max-width: 500px;
  1362. padding: 0.3em; }
  1363. #content-left > * {
  1364. box-sizing: border-box;
  1365. background-color: #fff;
  1366. box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.2);
  1367. padding: 0.5em; }
  1368. #content-left .flag-collection > header {
  1369. display: flex;
  1370. flex-direction: row;
  1371. justify-content: space-between;
  1372. padding-bottom: 13px; }
  1373. #content-left .flag-collection > header .mdi-close {
  1374. cursor: pointer;
  1375. align-self: flex-end; }
  1376. #content-left .flag-collection > ul > li {
  1377. margin: 0 0 13px 0;
  1378. padding: 0; }
  1379. #content-left .flag-collection > ul > li article.card.minicard {
  1380. width: 170px;
  1381. height: 100px;
  1382. margin: auto; }
  1383. #content-left .flag-collection > ul > li article.card.minicard > header {
  1384. padding: 0.3em 0.3em 0.1em; }
  1385. #content-left .flag-collection > ul > li article.card.minicard > header h1 {
  1386. margin: 0; }
  1387. #content-left .flag-collection > ul > li article.card.minicard > nav.tools {
  1388. top: auto;
  1389. bottom: 0;
  1390. padding: 0 0.2em;
  1391. background: transparent; }
  1392. #content-left .flag-collection > ul > li article.card.minicard > nav.tools .mdi.unflag {
  1393. cursor: pointer; }
  1394. article.node--type-frontpage .node__content > section.home-intro > div:nth-child(1) .field__label, article.node--type-frontpage .node__content > section.home-pricing > div:nth-child(1) .field__label, article.node--type-frontpage .node__content > section.home-database > div:nth-child(1) .field__label, article.node--type-frontpage .node__content > section.home-showrooms > div:nth-child(1) .field__label, article.node--type-frontpage .node__content > section.home-blabla > div:nth-child(1) .field__label, article.node--type-frontpage .node__content > section.home-pricing > h3, article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item .field--name-title {
  1395. font-size: 3.5em;
  1396. line-height: 1; }
  1397. article.node--type-frontpage .node__content > section.home-intro > div:nth-child(1) .field__item, article.node--type-frontpage .node__content > section.home-pricing > div:nth-child(1) .field__item, article.node--type-frontpage .node__content > section.home-database > div:nth-child(1) .field__item, article.node--type-frontpage .node__content > section.home-showrooms > div:nth-child(1) .field__item, article.node--type-frontpage .node__content > section.home-blabla > div:nth-child(1) .field__item, article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item .field--name-body {
  1398. font-size: 0.9em;
  1399. line-height: 1.3; }
  1400. article.node--type-frontpage .node__content > section.home-intro, article.node--type-frontpage .node__content > section.home-pricing {
  1401. padding: 1.5em 0;
  1402. background-color: #fff; }
  1403. article.node--type-frontpage .node__content > section.home-intro > div:nth-child(1), article.node--type-frontpage .node__content > section.home-pricing > div:nth-child(1) {
  1404. width: 80%;
  1405. margin: 0 auto;
  1406. text-align: center; }
  1407. article.node--type-frontpage .node__content > section.home-database, article.node--type-frontpage .node__content > section.home-showrooms, article.node--type-frontpage .node__content > section.home-blabla {
  1408. display: flex;
  1409. flex-direction: row;
  1410. flex-wrap: nowrap; }
  1411. article.node--type-frontpage .node__content > section.home-database > div:nth-child(1), article.node--type-frontpage .node__content > section.home-showrooms > div:nth-child(1), article.node--type-frontpage .node__content > section.home-blabla > div:nth-child(1) {
  1412. flex: 0 0 423px;
  1413. box-sizing: border-box;
  1414. padding: 1em;
  1415. color: #fff; }
  1416. article.node--type-frontpage .node__content > section.home-database > div:nth-child(2), article.node--type-frontpage .node__content > section.home-showrooms > div:nth-child(2), article.node--type-frontpage .node__content > section.home-blabla > div:nth-child(2) {
  1417. flex: 1 1 auto;
  1418. box-sizing: border-box;
  1419. padding: 1em 0.5em; }
  1420. article.node--type-frontpage > h2 {
  1421. display: none; }
  1422. article.node--type-frontpage .node__content > section.home-intro .field__item {
  1423. display: flex;
  1424. flex-flow: row nowrap;
  1425. justify-content: center; }
  1426. article.node--type-frontpage .node__content > section.home-intro .field__item p {
  1427. flex: 0 0 410px;
  1428. padding: 1em; }
  1429. article.node--type-frontpage .node__content > section.home-database {
  1430. background-color: #69cdcf; }
  1431. article.node--type-frontpage .node__content > section.home-database .field--name-field-a-database .field__label {
  1432. cursor: pointer; }
  1433. article.node--type-frontpage .node__content > section.home-database .field--name-field-database-links .field__item {
  1434. display: inline-block; }
  1435. article.node--type-frontpage .node__content > section.home-database .field--name-field-database-links .field__item a {
  1436. display: inline-block;
  1437. font-size: 0.9em;
  1438. font-weight: bold;
  1439. padding: 0.7em 1em;
  1440. margin-bottom: 0.3em;
  1441. background-color: #fff;
  1442. color: #000;
  1443. border-radius: 5px;
  1444. border: none;
  1445. background-color: #fff;
  1446. color: #69cdcf; }
  1447. article.node--type-frontpage .node__content > section.home-database .cards-list-home {
  1448. position: relative;
  1449. max-height: 580px;
  1450. overflow-y: hidden; }
  1451. article.node--type-frontpage .node__content > section.home-database .cards-list-home ul {
  1452. width: 100%;
  1453. margin: 0;
  1454. padding: 0;
  1455. display: flex;
  1456. flex-flow: row wrap;
  1457. justify-content: space-between; }
  1458. article.node--type-frontpage .node__content > section.home-database .cards-list-home ul li {
  1459. padding: 0 0 6.5px 0;
  1460. box-sizing: border-box;
  1461. width: 102.5px;
  1462. height: 147.5px;
  1463. position: relative;
  1464. list-style: none;
  1465. margin: 0; }
  1466. article.node--type-frontpage .node__content > section.home-database .cards-list-home ul li .card {
  1467. width: 100%;
  1468. height: 100%; }
  1469. article.node--type-frontpage .node__content > section.home-database .cards-list-home ul li .card .field--name-field-short-description {
  1470. font-size: 0.656em;
  1471. line-height: 1.2; }
  1472. article.node--type-frontpage .node__content > section.home-showrooms {
  1473. background-color: #50aa3c; }
  1474. article.node--type-frontpage .node__content > section.home-showrooms .field--name-field-showroom-links .field__item {
  1475. display: inline-block; }
  1476. article.node--type-frontpage .node__content > section.home-showrooms .field--name-field-showroom-links .field__item a {
  1477. display: inline-block;
  1478. font-size: 0.9em;
  1479. font-weight: bold;
  1480. padding: 0.7em 1em;
  1481. margin-bottom: 0.3em;
  1482. background-color: #fff;
  1483. color: #000;
  1484. border-radius: 5px;
  1485. border: none;
  1486. background-color: #fff;
  1487. color: #50aa3c; }
  1488. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference {
  1489. overflow: hidden;
  1490. position: relative;
  1491. display: grid;
  1492. grid-template-rows: 1fr; }
  1493. @media only screen and (max-width: 1526px) {
  1494. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference {
  1495. grid-template-columns: 1fr; }
  1496. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item {
  1497. grid-column: 1; } }
  1498. @media only screen and (min-width: 1527px) {
  1499. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference {
  1500. grid-template-columns: 1fr 1fr;
  1501. grid-gap: 1em; }
  1502. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item:nth-child(odd) {
  1503. grid-column: 1; }
  1504. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item:nth-child(even) {
  1505. grid-column: 2; } }
  1506. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item {
  1507. grid-row: 1;
  1508. opacity: 0;
  1509. transition: all 2s ease-out; }
  1510. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item.active {
  1511. opacity: 1; }
  1512. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term {
  1513. position: relative;
  1514. width: 100%;
  1515. height: 100%; }
  1516. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term div.visuel {
  1517. width: 100%;
  1518. padding-bottom: 5em; }
  1519. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term div.visuel img {
  1520. max-width: 100%;
  1521. height: auto; }
  1522. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term section.text {
  1523. position: absolute;
  1524. bottom: 0;
  1525. left: 0;
  1526. width: 100%;
  1527. box-sizing: border-box;
  1528. padding: 1em 0 0;
  1529. background-color: #50aa3c;
  1530. color: #fff; }
  1531. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term section.text h2, article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term section.text p {
  1532. margin: 0; }
  1533. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term section.text h2 {
  1534. font-size: 2em; }
  1535. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term section.text .field--name-field-public-address br {
  1536. display: none; }
  1537. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term section.text .field--name-field-public-address span:not(:nth-last-of-type(1)) {
  1538. margin-right: 0.4em; }
  1539. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term section.text .field--name-field-public-address span:not(:nth-last-of-type(1)):after {
  1540. padding-left: 0.5em;
  1541. content: "⋅"; }
  1542. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term section.text .field--name-field-public-phone {
  1543. display: inline-block;
  1544. margin-right: 0.4em; }
  1545. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term section.text .field--name-field-public-phone:after {
  1546. padding-left: 0.5em;
  1547. content: "⋅"; }
  1548. article.node--type-frontpage .node__content > section.home-showrooms .field--name-computed-showrooms-reference > .field__item .taxonomy-term section.text .field--name-field-public-email {
  1549. display: inline-block; }
  1550. article.node--type-frontpage .node__content > section.home-blabla {
  1551. background-color: #9458aa; }
  1552. article.node--type-frontpage .node__content > section.home-blabla .field--name-field-blabla-links .field__item {
  1553. display: inline-block; }
  1554. article.node--type-frontpage .node__content > section.home-blabla .field--name-field-blabla-links .field__item a {
  1555. display: inline-block;
  1556. font-size: 0.9em;
  1557. font-weight: bold;
  1558. padding: 0.7em 1em;
  1559. margin-bottom: 0.3em;
  1560. background-color: #fff;
  1561. color: #000;
  1562. border-radius: 5px;
  1563. border: none;
  1564. background-color: #fff;
  1565. color: #9458aa; }
  1566. article.node--type-frontpage .node__content > section.home-blabla .cards-list-home {
  1567. position: relative;
  1568. overflow-y: hidden;
  1569. max-height: 315px; }
  1570. article.node--type-frontpage .node__content > section.home-blabla .cards-list-home ul {
  1571. width: 100%;
  1572. margin: 0;
  1573. padding: 0;
  1574. display: flex;
  1575. flex-flow: row wrap;
  1576. justify-content: space-between; }
  1577. article.node--type-frontpage .node__content > section.home-blabla .cards-list-home ul li {
  1578. padding: 0 0 13px 0;
  1579. box-sizing: border-box;
  1580. width: 205px;
  1581. position: relative;
  1582. list-style: none;
  1583. margin: 0;
  1584. overflow: hidden; }
  1585. article.node--type-frontpage .node__content > section.home-blabla .cards-list-home ul li .card {
  1586. width: 100%;
  1587. height: auto; }
  1588. article.node--type-frontpage .node__content > section.home-blabla .cards-list-home ul li .card .field--name-title {
  1589. font-size: 0.756em;
  1590. line-height: 0.9; }
  1591. article.node--type-frontpage .node__content > section.home-pricing > h3 {
  1592. text-align: center;
  1593. text-transform: capitalize;
  1594. padding: 0.7em 0 0.3em 0; }
  1595. article.node--type-frontpage .node__content > section.home-pricing .field--name-field-pricing-pitch {
  1596. text-align: center; }
  1597. article.node--type-frontpage .node__content > section.home-pricing .field--name-field-pricing-pitch p {
  1598. margin: 0; }
  1599. article.node--type-frontpage .node__content > section.home-pricing .field--name-field-pricing {
  1600. display: flex;
  1601. flex-flow: row nowrap;
  1602. justify-content: center;
  1603. padding-bottom: 1em; }
  1604. article.node--type-frontpage .node__content > section.home-pricing .field--name-field-pricing p {
  1605. flex: 0 0 410px;
  1606. padding: 1em;
  1607. margin: 0;
  1608. text-align: center; }
  1609. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference {
  1610. display: flex;
  1611. flex-flow: row nowrap; }
  1612. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item {
  1613. flex: 0 0 50%;
  1614. text-align: center;
  1615. padding: 2em 0;
  1616. color: #fff;
  1617. position: relative;
  1618. height: 18em; }
  1619. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item a.btn {
  1620. display: inline-block;
  1621. font-size: 0.9em;
  1622. font-weight: bold;
  1623. padding: 0.7em 1em;
  1624. margin-bottom: 0.3em;
  1625. background-color: #fff;
  1626. color: #000;
  1627. border-radius: 5px;
  1628. border: none;
  1629. background-color: #fff; }
  1630. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item:nth-child(1) {
  1631. background-color: #69cdcf; }
  1632. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item:nth-child(1) a.btn {
  1633. color: #69cdcf; }
  1634. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item:nth-child(2) {
  1635. background-color: #ff9f50; }
  1636. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item:nth-child(2) a.btn {
  1637. color: #ff9f50; }
  1638. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item > article {
  1639. position: absolute;
  1640. top: 50%;
  1641. left: 50%;
  1642. transform: translate(-50%, -50%); }
  1643. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item .field--name-title {
  1644. font-weight: 600;
  1645. line-height: 0.7;
  1646. padding-bottom: 0.1em;
  1647. text-align: center;
  1648. word-spacing: 30000px; }
  1649. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item .field--name-body {
  1650. padding: 0.5em; }
  1651. article.node--type-frontpage .node__content > section.home-pricing .field--name-computed-products-reference > .field__item .field--name-body p {
  1652. margin: 0; }
  1653. .infinite-loading-container .infinite-status-prompt i[class^="loading-"] {
  1654. width: 15px;
  1655. height: 15px; }
  1656. .cards-list {
  1657. position: relative; }
  1658. .cards-list .search-info {
  1659. font-size: 0.756em;
  1660. font-weight: 500;
  1661. margin: 0;
  1662. padding: 0 0 0.5em 0; }
  1663. .cards-list > ul {
  1664. margin: 0;
  1665. padding: 0;
  1666. width: calc(100% + 13px); }
  1667. .cards-list > ul > li {
  1668. list-style: none;
  1669. margin: 0 13px 13px 0;
  1670. padding: 0;
  1671. display: inline-block;
  1672. vertical-align: top; }
  1673. article.card {
  1674. position: relative;
  1675. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  1676. width: 205px;
  1677. height: 295px; }
  1678. article.card.article {
  1679. width: 423px;
  1680. height: 295px; }
  1681. article.card.minicard {
  1682. height: 100px;
  1683. width: 170px;
  1684. height: 100px;
  1685. margin: auto; }
  1686. article.card.minicard > header {
  1687. padding: 0.3em 0.3em 0.1em; }
  1688. article.card.minicard > header h1 {
  1689. margin: 0; }
  1690. article.card.minicard > nav.tools {
  1691. top: auto;
  1692. bottom: 0;
  1693. padding: 0 0.2em;
  1694. background: transparent; }
  1695. article.card.minicard > nav.tools .mdi.unflag {
  1696. cursor: pointer; }
  1697. article.card.linkedmaterialcard {
  1698. width: 200px;
  1699. height: 110px; }
  1700. article.card.linkedmaterialcard > header {
  1701. padding: 0.3em 0.3em 0.1em;
  1702. cursor: pointer; }
  1703. article.card.linkedmaterialcard > header h1 {
  1704. margin: 0;
  1705. font-size: 1em; }
  1706. article.card.linkedmaterialcard > header h4 {
  1707. margin: 0;
  1708. line-height: 1.1;
  1709. margin-bottom: -0.4em; }
  1710. article.card.linkedmaterialcard > header span.ref {
  1711. line-height: 0.5; }
  1712. article.card.linkedmaterialcard > nav.tools {
  1713. top: auto;
  1714. bottom: 0;
  1715. padding: 0 0.2em;
  1716. background: transparent; }
  1717. article.card.linkedmaterialcard > nav.tools .mdi.unflag {
  1718. cursor: pointer; }
  1719. article.card header {
  1720. position: absolute;
  1721. bottom: 0;
  1722. z-index: 10;
  1723. color: #000;
  1724. background-color: rgba(255, 255, 255, 0.8);
  1725. padding: 0.3em 0.3em;
  1726. box-sizing: border-box;
  1727. width: 100%; }
  1728. article.card header h1, article.card header h4 {
  1729. margin: 0;
  1730. padding: 0; }
  1731. article.card header h1 {
  1732. font-size: 1.3em;
  1733. font-weight: 700;
  1734. line-height: 0.85;
  1735. margin-bottom: 0.2em; }
  1736. article.card header h4 {
  1737. font-size: 0.882em;
  1738. font-weight: 300;
  1739. line-height: 1.1;
  1740. margin-bottom: -0.2em; }
  1741. article.card header span.ref {
  1742. font-size: 0.693em;
  1743. font-weight: 300;
  1744. line-height: 1; }
  1745. article.card.card-thematique header {
  1746. background-color: rgba(105, 205, 207, 0.9); }
  1747. article.card nav.tools {
  1748. position: absolute;
  1749. top: 0;
  1750. right: 0;
  1751. z-index: 21;
  1752. width: 15px;
  1753. background-color: #fff;
  1754. box-sizing: content-box;
  1755. padding: 0.3em 0.1em;
  1756. opacity: 0;
  1757. transition: opacity 0.2s ease-in-out; }
  1758. article.card nav.tools > * {
  1759. overflow: visible;
  1760. position: relative; }
  1761. article.card nav.tools > * span.btn {
  1762. overflow: hidden;
  1763. font-size: 0.882em; }
  1764. article.card nav.tools > * .tool-content {
  1765. position: absolute;
  1766. top: 0px;
  1767. right: 100%;
  1768. width: 180px;
  1769. box-sizing: border-box;
  1770. padding: 0.3em;
  1771. background-color: #fff;
  1772. box-shadow: -2px 3px 4px rgba(0, 0, 0, 0.2);
  1773. opacity: 0;
  1774. max-height: 0;
  1775. max-width: 0;
  1776. overflow: hidden;
  1777. transition: all 0.2s ease-in-out; }
  1778. article.card nav.tools > *:hover .tool-content {
  1779. transition: all 0.3s ease-in-out;
  1780. opacity: 1;
  1781. max-height: 195px;
  1782. max-width: 200px; }
  1783. article.card nav.tools .tool.flags .tool-content ul {
  1784. display: flex;
  1785. flex-flow: row wrap; }
  1786. article.card nav.tools .tool.flags .tool-content ul li {
  1787. padding: 0 0.5em 0 0; }
  1788. article.card nav.tools .tool.flags span.flag {
  1789. cursor: pointer;
  1790. font-size: 0.756em;
  1791. color: #bbb;
  1792. transition: color 0.3s ease-in-out; }
  1793. article.card nav.tools .tool.flags span.flag:hover, article.card nav.tools .tool.flags span.flag.isActive {
  1794. color: #1a1a1a; }
  1795. article.card:hover nav.tools {
  1796. opacity: 1; }
  1797. article.card section.images {
  1798. position: relative; }
  1799. article.card section.images, article.card section.images * {
  1800. width: 100%;
  1801. height: 100%; }
  1802. article.card section.images figure {
  1803. cursor: pointer;
  1804. margin: 0;
  1805. position: absolute;
  1806. top: 0;
  1807. left: 0;
  1808. transition: opacity 0.2s ease-in-out; }
  1809. article.card section.images figure:first-of-type {
  1810. z-index: 5; }
  1811. article.card section.images figure.show {
  1812. opacity: 1;
  1813. z-index: 6; }
  1814. article.card section.images figure.hide {
  1815. opacity: 0; }
  1816. article.card section.images figure img.blank {
  1817. position: absolute;
  1818. top: 0;
  1819. left: 0;
  1820. z-index: 20; }
  1821. article.card.search-card > header {
  1822. cursor: pointer; }
  1823. article.card.modal-card {
  1824. display: flex;
  1825. flex-flow: row-reverse nowrap;
  1826. width: 850px;
  1827. height: 610px; }
  1828. article.card.modal-card > .col {
  1829. flex-basis: 50%; }
  1830. article.card.modal-card section.col-right > *:not(nav.tools) {
  1831. position: relative;
  1832. padding: 0.5em 0.5em 0;
  1833. box-sizing: border-box;
  1834. width: 100%; }
  1835. article.card.modal-card section.col-right > header {
  1836. bottom: auto; }
  1837. article.card.modal-card section.col-right section.body p {
  1838. font-size: 0.882em;
  1839. font-weight: 300;
  1840. line-height: 1.35;
  1841. margin: 0 0 0.5em; }
  1842. article.card.modal-card section.col-right section.linked-materials {
  1843. display: flex;
  1844. flex-flow: row;
  1845. justify-content: space-between; }
  1846. article.card.modal-card section.col-right section.linked-materials > article.linkedmaterialcard {
  1847. flex-basis: 0 0 50%; }
  1848. article.card.modal-card section.col-right nav.tools {
  1849. opacity: 1; }
  1850. article.card.modal-card section.col-right nav.tools section.close span.btn.mdi-close {
  1851. cursor: pointer; }
  1852. #main-content > article.thematique div.cols {
  1853. display: flex;
  1854. flex-direction: row;
  1855. flex-wrap: nowrap; }
  1856. @media (max-width: 654px) {
  1857. #main-content > article.thematique div.cols {
  1858. flex-wrap: wrap; } }
  1859. #main-content > article.thematique div.cols div.col-left {
  1860. padding: 0 13px 13px 0;
  1861. flex: 0 0 423px; }
  1862. #main-content > article.thematique div.col-left section.body {
  1863. background-color: #69cdcf;
  1864. padding: 0.5em 1em 1em; }
  1865. #main-content > article.thematique aside.linked-materials ul {
  1866. width: calc(100% + 13px); }
  1867. #main-content > article.thematique aside.linked-materials ul li {
  1868. display: inline-block;
  1869. vertical-align: top;
  1870. width: 205px;
  1871. margin: 0 13px 13px 0; }
  1872. #main-content > article.thematique aside.linked-materials h3.field__label {
  1873. font-size: 1em;
  1874. font-weight: 500;
  1875. margin: 2em 0 1em 0; }
  1876. #main-content > article.thematique aside.linked-materials h1.title {
  1877. font-size: 1em;
  1878. font-weight: 400; }
  1879. #main-content > article.thematique aside.linked-materials h3.ref {
  1880. font-size: 0.756em;
  1881. font-weight: 600; }
  1882. #main-content > article.thematique aside.linked-materials h2.description {
  1883. font-size: 0.756em;
  1884. font-weight: 400; }
  1885. #main-content > article.article div.cols {
  1886. display: grid;
  1887. grid-template-rows: 1fr;
  1888. grid-template-columns: repeat(6, 1fr);
  1889. grid-gap: 1em; }
  1890. #main-content > article.article div.cols div.col-left {
  1891. grid-column: 1; }
  1892. #main-content > article.article div.cols div.col-right {
  1893. grid-column: 2/6; }
  1894. #main-content > article.article section.accroche figure {
  1895. width: 423px;
  1896. margin: 0 13px 0 0; }
  1897. #main-content > article.article section.accroche figure img {
  1898. width: 100%; }
  1899. #main-content > article.article section.taxonomy {
  1900. margin: 1em 0; }
  1901. #main-content > article.article section.taxonomy ul {
  1902. margin: 0; }
  1903. #main-content > article.article section.taxonomy li {
  1904. display: inline-block;
  1905. padding: 0 0.5em 0 0; }
  1906. #main-content > article.article div.gallery-wrapper .image {
  1907. display: inline-block;
  1908. width: 205px;
  1909. margin: 0 13px 7.8px 0;
  1910. height: 147.5px;
  1911. background-size: cover; }
  1912. #main-content > article.article aside.linked-materials ul {
  1913. width: calc(100% + 13px); }
  1914. #main-content > article.article aside.linked-materials ul li {
  1915. display: inline-block;
  1916. vertical-align: top;
  1917. width: 205px;
  1918. margin: 0 13px 13px 0; }
  1919. #main-content > article.article aside.linked-materials h3.field__label {
  1920. font-size: 1em;
  1921. font-weight: 500;
  1922. margin: 2em 0 1em 0; }
  1923. #main-content > article.article aside.linked-materials h1.title {
  1924. font-size: 1em;
  1925. font-weight: 400; }
  1926. #main-content > article.article aside.linked-materials h3.ref {
  1927. font-size: 0.756em;
  1928. font-weight: 600; }
  1929. #main-content > article.article aside.linked-materials h2.description {
  1930. font-size: 0.756em;
  1931. font-weight: 400; }
  1932. #main-content > article.article nav.prevnext.bottom {
  1933. margin: 2em 0; }
  1934. #main-content > article.article nav.prevnext ul {
  1935. padding: 0;
  1936. margin: 0;
  1937. display: grid;
  1938. grid-template-columns: 1fr 1fr; }
  1939. #main-content > article.article nav.prevnext li {
  1940. padding: 0;
  1941. margin: 0;
  1942. list-style: none; }
  1943. #main-content > article.article nav.prevnext li a {
  1944. font-size: 0.756em;
  1945. font-weight: 700; }
  1946. #main-content > article.article nav.prevnext li:nth-child(1) {
  1947. grid-column: 1; }
  1948. #main-content > article.article nav.prevnext li:nth-child(1) a:before {
  1949. content: '< '; }
  1950. #main-content > article.article nav.prevnext li:nth-child(2) {
  1951. grid-column: 2;
  1952. text-align: right; }
  1953. #main-content > article.article nav.prevnext li:nth-child(2) a:after {
  1954. content: ' >'; }
  1955. #showrooms {
  1956. width: calc(100% + 13px); }
  1957. #showrooms article.showroom {
  1958. width: 423px;
  1959. display: inline-block;
  1960. vertical-align: top;
  1961. margin: 0 13px 13px 0; }
  1962. #showrooms article.showroom h1 {
  1963. margin: 0;
  1964. font-weight: 4; }
  1965. #showrooms article.showroom p {
  1966. margin: 0; }
  1967. #showrooms article.showroom figure {
  1968. margin: 0; }
  1969. #showrooms article.showroom figure img {
  1970. max-width: 100%; }
  1971. #main-content > #pricing,
  1972. #main-content .view-pricing-products .view-content {
  1973. display: flex;
  1974. flex-flow: row nowrap; }
  1975. #main-content > #pricing article.product,
  1976. #main-content > #pricing .views-row,
  1977. #main-content .view-pricing-products .view-content article.product,
  1978. #main-content .view-pricing-products .view-content .views-row {
  1979. flex: 0 0 50%;
  1980. text-align: center;
  1981. padding: 2em 0; }
  1982. #main-content > #pricing article.product > header,
  1983. #main-content > #pricing .views-row > header,
  1984. #main-content .view-pricing-products .view-content article.product > header,
  1985. #main-content .view-pricing-products .view-content .views-row > header {
  1986. padding-bottom: 1.3em; }
  1987. #main-content > #pricing article.product > header h1,
  1988. #main-content > #pricing article.product .views-field-title,
  1989. #main-content > #pricing .views-row > header h1,
  1990. #main-content > #pricing .views-row .views-field-title,
  1991. #main-content .view-pricing-products .view-content article.product > header h1,
  1992. #main-content .view-pricing-products .view-content article.product .views-field-title,
  1993. #main-content .view-pricing-products .view-content .views-row > header h1,
  1994. #main-content .view-pricing-products .view-content .views-row .views-field-title {
  1995. font-size: 4em;
  1996. line-height: 0.6;
  1997. color: #fff;
  1998. text-align: center;
  1999. word-spacing: 30000px; }
  2000. #main-content > #pricing article.product section.content, #main-content > #pricing article.product .views-field-body,
  2001. #main-content > #pricing .views-row section.content,
  2002. #main-content > #pricing .views-row .views-field-body,
  2003. #main-content .view-pricing-products .view-content article.product section.content,
  2004. #main-content .view-pricing-products .view-content article.product .views-field-body,
  2005. #main-content .view-pricing-products .view-content .views-row section.content,
  2006. #main-content .view-pricing-products .view-content .views-row .views-field-body {
  2007. color: #fff; }
  2008. #main-content > #pricing article.product section.content .description, #main-content > #pricing article.product .views-field-body .description,
  2009. #main-content > #pricing .views-row section.content .description,
  2010. #main-content > #pricing .views-row .views-field-body .description,
  2011. #main-content .view-pricing-products .view-content article.product section.content .description,
  2012. #main-content .view-pricing-products .view-content article.product .views-field-body .description,
  2013. #main-content .view-pricing-products .view-content .views-row section.content .description,
  2014. #main-content .view-pricing-products .view-content .views-row .views-field-body .description {
  2015. font-size: 1.134em; }
  2016. #main-content > #pricing article.product section.content .description p, #main-content > #pricing article.product .views-field-body .description p,
  2017. #main-content > #pricing .views-row section.content .description p,
  2018. #main-content > #pricing .views-row .views-field-body .description p,
  2019. #main-content .view-pricing-products .view-content article.product section.content .description p,
  2020. #main-content .view-pricing-products .view-content article.product .views-field-body .description p,
  2021. #main-content .view-pricing-products .view-content .views-row section.content .description p,
  2022. #main-content .view-pricing-products .view-content .views-row .views-field-body .description p {
  2023. margin: 0.3em; }
  2024. #main-content > #pricing article.product aside,
  2025. #main-content > #pricing .views-row aside,
  2026. #main-content .view-pricing-products .view-content article.product aside,
  2027. #main-content .view-pricing-products .view-content .views-row aside {
  2028. padding: 1em 0; }
  2029. #main-content > #pricing article.product aside .variation,
  2030. #main-content > #pricing .views-row aside .variation,
  2031. #main-content .view-pricing-products .view-content article.product aside .variation,
  2032. #main-content .view-pricing-products .view-content .views-row aside .variation {
  2033. display: flex;
  2034. flex-flow: row nowrap;
  2035. justify-content: center;
  2036. align-items: flex-end; }
  2037. #main-content > #pricing article.product aside .variation div.variation-description,
  2038. #main-content > #pricing .views-row aside .variation div.variation-description,
  2039. #main-content .view-pricing-products .view-content article.product aside .variation div.variation-description,
  2040. #main-content .view-pricing-products .view-content .views-row aside .variation div.variation-description {
  2041. flex: 0 0 6.7em;
  2042. font-size: 2.012em;
  2043. font-weight: 800;
  2044. color: #fff; }
  2045. #main-content > #pricing article.product aside .variation div.variation-description p,
  2046. #main-content > #pricing .views-row aside .variation div.variation-description p,
  2047. #main-content .view-pricing-products .view-content article.product aside .variation div.variation-description p,
  2048. #main-content .view-pricing-products .view-content .views-row aside .variation div.variation-description p {
  2049. margin: 0;
  2050. text-align: left; }
  2051. #main-content > #pricing article.product aside .variation button,
  2052. #main-content > #pricing .views-row aside .variation button,
  2053. #main-content .view-pricing-products .view-content article.product aside .variation button,
  2054. #main-content .view-pricing-products .view-content .views-row aside .variation button {
  2055. display: inline-block;
  2056. font-size: 0.9em;
  2057. font-weight: bold;
  2058. padding: 0.7em 1em;
  2059. margin-bottom: 0.3em;
  2060. background-color: #fff;
  2061. color: #000;
  2062. border-radius: 5px;
  2063. border: none;
  2064. background-color: #fff; }
  2065. #main-content > #pricing article.product:nth-child(1),
  2066. #main-content > #pricing .views-row:nth-child(1),
  2067. #main-content .view-pricing-products .view-content article.product:nth-child(1),
  2068. #main-content .view-pricing-products .view-content .views-row:nth-child(1) {
  2069. background-color: #69cdcf; }
  2070. #main-content > #pricing article.product:nth-child(1) aside .variation button,
  2071. #main-content > #pricing .views-row:nth-child(1) aside .variation button,
  2072. #main-content .view-pricing-products .view-content article.product:nth-child(1) aside .variation button,
  2073. #main-content .view-pricing-products .view-content .views-row:nth-child(1) aside .variation button {
  2074. color: #69cdcf; }
  2075. #main-content > #pricing article.product:nth-child(2),
  2076. #main-content > #pricing .views-row:nth-child(2),
  2077. #main-content .view-pricing-products .view-content article.product:nth-child(2),
  2078. #main-content .view-pricing-products .view-content .views-row:nth-child(2) {
  2079. background-color: #ff9f50; }
  2080. #main-content > #pricing article.product:nth-child(2) aside .variation button,
  2081. #main-content > #pricing .views-row:nth-child(2) aside .variation button,
  2082. #main-content .view-pricing-products .view-content article.product:nth-child(2) aside .variation button,
  2083. #main-content .view-pricing-products .view-content .views-row:nth-child(2) aside .variation button {
  2084. color: #ff9f50; }
  2085. .modal {
  2086. position: relative; }
  2087. #pricing-modal-login-register {
  2088. position: relative;
  2089. width: 100%;
  2090. text-align: left; }
  2091. #pricing-modal-login-register h2 {
  2092. margin: 0.4em 0 1.1em;
  2093. padding-right: 4em;
  2094. font-size: 1.2em;
  2095. font-weight: 300; }
  2096. #pricing-modal-login-register #login-register {
  2097. width: 100%;
  2098. display: flex;
  2099. flex-flow: row nowrap; }
  2100. #pricing-modal-login-register #login-register > section {
  2101. flex: 0 0 250px; }
  2102. #pricing-modal-login-register #login-register > section form .form-item, #pricing-modal-login-register #login-register > section form .form-actions {
  2103. margin: 0.5em 0;
  2104. max-width: none; }
  2105. #pricing-modal-login-register #login-register > section form .form-type-email,
  2106. #pricing-modal-login-register #login-register > section form .form-type-password,
  2107. #pricing-modal-login-register #login-register > section form .form-actions {
  2108. display: block; }
  2109. #pricing-modal-login-register #login-register > section form input[type="email"],
  2110. #pricing-modal-login-register #login-register > section form input[type="password"] {
  2111. max-width: 11em; }
  2112. #pricing-modal-login-register #login-register > section form#user-login-form #edit-pass--description,
  2113. #pricing-modal-login-register #login-register > section form #edit-pass-pass1--description {
  2114. display: block;
  2115. max-width: 16em;
  2116. font-size: 0.693em; }
  2117. #main-content form.commerce-checkout-flow {
  2118. max-width: 641px; }
  2119. #main-content form.commerce-checkout-flow .layout-checkout-form {
  2120. display: flex;
  2121. flex-flow: column; }
  2122. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main {
  2123. width: 100%;
  2124. float: none;
  2125. order: 2;
  2126. background-color: #ff9f50;
  2127. padding: 1em; }
  2128. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main label,
  2129. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main legend,
  2130. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main fieldset#edit-review-contact-information,
  2131. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main fieldset#edit-review-payment-information {
  2132. color: #fff; }
  2133. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main fieldset {
  2134. border: none;
  2135. margin: 0;
  2136. padding: 0; }
  2137. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main fieldset legend {
  2138. font-size: 1.5em;
  2139. font-weight: 600;
  2140. margin-bottom: 0.5em; }
  2141. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main .form-item {
  2142. margin: 0 0 0.5em 0; }
  2143. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main label {
  2144. display: inline-block;
  2145. font-weight: bold;
  2146. min-width: 10em; }
  2147. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main input[type="text"] {
  2148. width: 20em; }
  2149. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main .stripe-form {
  2150. display: inline-block;
  2151. background-color: #fff;
  2152. color: #1A1A1A;
  2153. border-radius: 5px;
  2154. padding: 1em;
  2155. margin: 0 0 1em; }
  2156. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main .stripe-form .form-item {
  2157. display: flex;
  2158. align-items: center;
  2159. flex-flow: row nowrap; }
  2160. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main .stripe-form .form-item label {
  2161. color: #777; }
  2162. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main .stripe-form .form-item .form-text {
  2163. background-color: #fff;
  2164. border-radius: 3px; }
  2165. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main .form-item-payment-information-add-payment-method-billing-information-address-0-address-address-line2 {
  2166. padding-left: 10.25em; }
  2167. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-main .form-item-payment-information-add-payment-method-billing-information-copy-to-address-book {
  2168. display: none; }
  2169. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary {
  2170. width: 100%;
  2171. float: none;
  2172. order: 1; }
  2173. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary > h3 {
  2174. display: none; }
  2175. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-order-summary {
  2176. background-color: #69cdcf;
  2177. color: #fff;
  2178. padding: 1em; }
  2179. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-order-summary .view-commerce-checkout-order-summary {
  2180. display: flex;
  2181. flex-flow: row nowrap;
  2182. justify-content: space-between;
  2183. align-items: flex-end; }
  2184. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-order-summary .field--name-product-id .field--name-title {
  2185. font-size: 2.5em;
  2186. font-weight: 800; }
  2187. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-order-summary .field--name-title {
  2188. font-size: 1.5em;
  2189. font-weight: 600; }
  2190. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-order-summary p {
  2191. margin: 0; }
  2192. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-coupon-redemption {
  2193. background-color: #50aa3c;
  2194. padding: 1em; }
  2195. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-coupon-redemption > .form-wrapper {
  2196. display: flex;
  2197. flex-flow: row;
  2198. align-items: center; }
  2199. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-coupon-redemption > .form-wrapper .form-item {
  2200. margin: 0 0.5em 0 0; }
  2201. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-coupon-redemption > .form-wrapper .form-item label {
  2202. color: #fff;
  2203. font-size: 1.5em;
  2204. font-weight: 600;
  2205. margin-right: 0.5em; }
  2206. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-coupon-redemption > .form-wrapper .form-item input[type="text"] {
  2207. width: 7em; }
  2208. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-secondary #edit-coupon-redemption > .form-wrapper input[type="submit"] {
  2209. background-color: #fff;
  2210. color: #50aa3c;
  2211. border: none;
  2212. margin: 0;
  2213. padding: 0.1em 0.7em;
  2214. box-sizing: content-box;
  2215. height: 2em;
  2216. font-weight: 800;
  2217. border-radius: 5px; }
  2218. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-footer {
  2219. float: none;
  2220. width: 100%;
  2221. padding: 0;
  2222. order: 3; }
  2223. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-footer #edit-actions {
  2224. text-align: right; }
  2225. #main-content form.commerce-checkout-flow .layout-checkout-form .layout-region-checkout-footer input#edit-actions-next {
  2226. background-color: #9458aa;
  2227. color: #fff;
  2228. border: none;
  2229. border-radius: 5px;
  2230. padding: 0.2em 0.4em 0.3em;
  2231. font-weight: 600;
  2232. font-size: 1.323em; }
  2233. body:not(.path-home) footer[role="contentinfo"] {
  2234. display: none; }
  2235. footer[role="contentinfo"] #block-materiosimplenewssubscription form {
  2236. display: flex;
  2237. flex-flow: row nowrap;
  2238. align-items: center;
  2239. font-size: 0.756em; }
  2240. footer[role="contentinfo"] #block-materiosimplenewssubscription form > * {
  2241. margin-right: 0.5em; }
  2242. footer[role="contentinfo"] #block-materiosimplenewssubscription form #edit-subscriptions {
  2243. display: flex;
  2244. flex-flow: row nowrap; }
  2245. footer[role="contentinfo"] #block-materiosimplenewssubscription form #edit-subscriptions > * {
  2246. margin-right: 0.5em;
  2247. display: flex;
  2248. flex-flow: row nowrap;
  2249. align-items: center; }
  2250. footer[role="contentinfo"] #block-materiosimplenewssubscription form #edit-subscriptions input {
  2251. margin-right: 0.3em; }
  2252. footer[role="contentinfo"] #block-materiosimplenewssubscription form #edit-mail-wrapper input[type="email"] {
  2253. width: 10em; }
  2254. footer[role="contentinfo"] #block-materiosimplenewssubscription form #edit-actions--2 input[type="submit"] {
  2255. border: none;
  2256. background: none;
  2257. background-color: #69cdcf;
  2258. border-radius: 5px;
  2259. color: #fff;
  2260. padding: 0.7em 1em;
  2261. font-weight: 700; }