您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

2205 行
74KB

  1. @charset "UTF-8";
  2. /**
  3. Copyright Souke (2018)
  4. contact@souke.fr
  5. Ce logiciel est un programme informatique servant à aider les producteurs
  6. à distribuer leur production en circuits courts.
  7. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  8. respectant les principes de diffusion des logiciels libres. Vous pouvez
  9. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  10. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  11. sur le site "http://www.cecill.info".
  12. En contrepartie de l'accessibilité au code source et des droits de copie,
  13. de modification et de redistribution accordés par cette licence, il n'est
  14. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  15. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  16. titulaire des droits patrimoniaux et les concédants successifs.
  17. A cet égard l'attention de l'utilisateur est attirée sur les risques
  18. associés au chargement, à l'utilisation, à la modification et/ou au
  19. développement et à la reproduction du logiciel par l'utilisateur étant
  20. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  21. manipuler et qui le réserve donc à des développeurs et des professionnels
  22. avertis possédant des connaissances informatiques approfondies. Les
  23. utilisateurs sont donc invités à charger et tester l'adéquation du
  24. logiciel à leurs besoins dans des conditions permettant d'assurer la
  25. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  26. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  27. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  28. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  29. termes.
  30. */
  31. /**
  32. Copyright Souke (2018)
  33. contact@souke.fr
  34. Ce logiciel est un programme informatique servant à aider les producteurs
  35. à distribuer leur production en circuits courts.
  36. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  37. respectant les principes de diffusion des logiciels libres. Vous pouvez
  38. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  39. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  40. sur le site "http://www.cecill.info".
  41. En contrepartie de l'accessibilité au code source et des droits de copie,
  42. de modification et de redistribution accordés par cette licence, il n'est
  43. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  44. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  45. titulaire des droits patrimoniaux et les concédants successifs.
  46. A cet égard l'attention de l'utilisateur est attirée sur les risques
  47. associés au chargement, à l'utilisation, à la modification et/ou au
  48. développement et à la reproduction du logiciel par l'utilisateur étant
  49. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  50. manipuler et qui le réserve donc à des développeurs et des professionnels
  51. avertis possédant des connaissances informatiques approfondies. Les
  52. utilisateurs sont donc invités à charger et tester l'adéquation du
  53. logiciel à leurs besoins dans des conditions permettant d'assurer la
  54. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  55. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  56. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  57. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  58. termes.
  59. */
  60. /* line 38, ../sass/_layout.scss */
  61. body {
  62. background-color: #f4efe8 !important;
  63. /*background-image: url('../img/betterave.png');
  64. background-repeat: no-repeat;
  65. background-size: 90% auto;
  66. background-position: center;*/
  67. font-family: 'worksans_regular' !important;
  68. color: #333;
  69. line-height: 20px;
  70. font-size: 1rem;
  71. }
  72. /* line 50, ../sass/_layout.scss */
  73. .clr {
  74. clear: both;
  75. }
  76. /* line 54, ../sass/_layout.scss */
  77. .panel {
  78. margin-bottom: 30px;
  79. }
  80. /* line 56, ../sass/_layout.scss */
  81. .panel strong {
  82. font-weight: bold;
  83. }
  84. /* line 61, ../sass/_layout.scss */
  85. .modal-backdrop.in {
  86. z-index: 10;
  87. }
  88. /* line 66, ../sass/_layout.scss */
  89. #section-user-top .navbar-default {
  90. background-color: white;
  91. }
  92. /* line 71, ../sass/_layout.scss */
  93. #main {
  94. position: relative;
  95. }
  96. /* line 75, ../sass/_layout.scss */
  97. ul.pagination {
  98. text-align: center;
  99. display: block;
  100. margin-top: 50px;
  101. }
  102. /* line 80, ../sass/_layout.scss */
  103. ul.pagination li {
  104. display: inline-block;
  105. margin-left: 4px;
  106. margin-right: 4px;
  107. }
  108. /* line 85, ../sass/_layout.scss */
  109. ul.pagination li a {
  110. font-family: 'worksans_semibold';
  111. font-size: 1.5em;
  112. display: inline-block;
  113. padding: 3px 15px;
  114. text-decoration: none;
  115. -moz-border-radius: 15px;
  116. -webkit-border-radius: 15px;
  117. border-radius: 15px;
  118. background-color: #b7ab9b;
  119. color: white !important;
  120. }
  121. /* line 96, ../sass/_layout.scss */
  122. ul.pagination li.active a,
  123. ul.pagination li a:hover,
  124. ul.pagination li a:focus,
  125. ul.pagination li a:active {
  126. background-color: #ee6f42;
  127. color: white !important;
  128. }
  129. /* line 104, ../sass/_layout.scss */
  130. ul.pagination li.disabled {
  131. display: none;
  132. }
  133. /* line 109, ../sass/_layout.scss */
  134. ul.pagination li.prev a, ul.pagination li.next a {
  135. border: solid 1px #b7ab9b;
  136. color: #b7ab9b !important;
  137. background-color: white !important;
  138. }
  139. /* line 120, ../sass/_layout.scss */
  140. .product-name-description-block .name {
  141. font-family: "worksans_semibold";
  142. color: black;
  143. font-size: 1.1em;
  144. line-height: 1.3em;
  145. }
  146. /* line 127, ../sass/_layout.scss */
  147. .product-name-description-block .other {
  148. font-family: "worksans_regular";
  149. color: black;
  150. font-weight: bold;
  151. font-size: 17px;
  152. }
  153. /* line 134, ../sass/_layout.scss */
  154. .product-name-description-block .description,
  155. .product-name-description-block .description-long {
  156. color: gray;
  157. margin-top: 5px;
  158. }
  159. /* line 141, ../sass/_layout.scss */
  160. .product-name-description-block .description-long .content {
  161. display: none;
  162. }
  163. /* line 147, ../sass/_layout.scss */
  164. #header {
  165. text-align: center;
  166. padding: 0px;
  167. position: relative;
  168. }
  169. /* line 153, ../sass/_layout.scss */
  170. #header #logo {
  171. position: absolute;
  172. top: 90px;
  173. left: 30px;
  174. background-color: white;
  175. width: 180px;
  176. height: 180px;
  177. -moz-border-radius: 180px;
  178. -webkit-border-radius: 180px;
  179. border-radius: 180px;
  180. border: solid 3px #ece4d8;
  181. text-align: center;
  182. overflow: hidden;
  183. }
  184. /* line 165, ../sass/_layout.scss */
  185. #header #logo img {
  186. position: absolute;
  187. top: 50%;
  188. left: 50%;
  189. transform: translate(-50%, -50%);
  190. max-width: 160px;
  191. max-height: 160px;
  192. }
  193. /* line 175, ../sass/_layout.scss */
  194. #header.without-logo #title {
  195. padding-left: 30px;
  196. }
  197. /* line 179, ../sass/_layout.scss */
  198. #header #title {
  199. text-align: left;
  200. padding-left: 246px;
  201. padding-top: 20px;
  202. padding-bottom: 20px;
  203. }
  204. /* line 185, ../sass/_layout.scss */
  205. #header #title h1 {
  206. font-family: 'worksans_extrabold';
  207. font-size: 2.2rem;
  208. margin-bottom: 2px;
  209. }
  210. /* line 190, ../sass/_layout.scss */
  211. #header #title h1 a.producer-name {
  212. text-decoration: none;
  213. color: #ee6f42;
  214. }
  215. /* line 195, ../sass/_layout.scss */
  216. #header #title h1 .bookmark {
  217. color: #b7ab9b;
  218. font-size: 0.7em;
  219. }
  220. /* line 201, ../sass/_layout.scss */
  221. #header #title h2 {
  222. font-family: 'worksans_regular';
  223. text-transform: uppercase;
  224. font-size: 1.1rem;
  225. }
  226. /* line 206, ../sass/_layout.scss */
  227. #header #title h2 .location {
  228. text-transform: none;
  229. font-family: 'worksans_bold';
  230. }
  231. /* line 210, ../sass/_layout.scss */
  232. #header #title h2 .location .bi {
  233. position: relative;
  234. left: 1px;
  235. }
  236. /* line 218, ../sass/_layout.scss */
  237. #header nav#main-nav {
  238. background-color: #ece4d8;
  239. margin-top: 0px;
  240. }
  241. /* line 224, ../sass/_layout.scss */
  242. #header nav#main-nav ul li a {
  243. display: inline-block;
  244. padding: 8px 12px;
  245. text-decoration: none;
  246. background-color: #f4efe8;
  247. color: black;
  248. -moz-box-shadow: -20px 0px 20px 0px #ece4d8 inset;
  249. -webkit-box-shadow: -20px 0px 20px 0px #ece4d8 inset;
  250. box-shadow: -20px 0px 20px 0px #ece4d8 inset;
  251. }
  252. /* line 232, ../sass/_layout.scss */
  253. #header nav#main-nav ul li a .bi {
  254. margin-right: 3px;
  255. }
  256. /* line 236, ../sass/_layout.scss */
  257. #header nav#main-nav ul li a span.label {
  258. display: inline-block;
  259. position: relative;
  260. top: -2px;
  261. background-color: #b7ab9b;
  262. color: white;
  263. font-family: 'worksans_bold';
  264. -moz-border-radius: 15px;
  265. -webkit-border-radius: 15px;
  266. border-radius: 15px;
  267. padding: 5px 10px 2px 10px;
  268. margin-left: 3px;
  269. font-size: 0.8em;
  270. line-height: 0.8em;
  271. text-transform: uppercase;
  272. border: solid 1px transparent;
  273. }
  274. /* line 252, ../sass/_layout.scss */
  275. #header nav#main-nav ul li a .hide-desktop {
  276. display: none;
  277. }
  278. /* line 257, ../sass/_layout.scss */
  279. #header nav#main-nav ul li a.active,
  280. #header nav#main-nav ul li a:hover {
  281. color: white;
  282. -moz-box-shadow: none;
  283. -webkit-box-shadow: none;
  284. box-shadow: none;
  285. }
  286. /* line 262, ../sass/_layout.scss */
  287. #header nav#main-nav ul li a.active span.label-success,
  288. #header nav#main-nav ul li a:hover span.label-success {
  289. border: solid 1px white !important;
  290. }
  291. /* line 268, ../sass/_layout.scss */
  292. #header nav#main-nav ul.submenu {
  293. background-color: white;
  294. }
  295. /* line 272, ../sass/_layout.scss */
  296. #header nav#main-nav ul.submenu li a {
  297. background-color: white;
  298. font-size: 0.9em;
  299. -moz-box-shadow: none;
  300. -webkit-box-shadow: none;
  301. box-shadow: none;
  302. border-bottom: solid 2px #f4efe8;
  303. }
  304. /* line 278, ../sass/_layout.scss */
  305. #header nav#main-nav ul.submenu li a span.label {
  306. background-color: white;
  307. border: solid 1px #b7ab9b;
  308. color: #b7ab9b;
  309. }
  310. /* line 285, ../sass/_layout.scss */
  311. #header nav#main-nav ul.submenu li a.active,
  312. #header nav#main-nav ul.submenu li a:hover {
  313. color: black;
  314. background-color: white;
  315. border-bottom: solid 2px #b7ab9b !important;
  316. }
  317. /* line 295, ../sass/_layout.scss */
  318. #header nav#main-nav #user {
  319. color: #ee6f42;
  320. float: right;
  321. padding: 10px;
  322. }
  323. /* line 303, ../sass/_layout.scss */
  324. #main {
  325. padding: 0px;
  326. padding-top: 38px;
  327. margin-bottom: 30px;
  328. background-color: white;
  329. }
  330. /* line 309, ../sass/_layout.scss */
  331. #main #banner {
  332. height: 180px;
  333. overflow: hidden;
  334. position: relative;
  335. background-size: cover;
  336. background-position: center;
  337. }
  338. /* line 317, ../sass/_layout.scss */
  339. #main #infos-producer {
  340. display: none;
  341. padding: 5px 10px;
  342. margin-bottom: 0px;
  343. font-size: 16px;
  344. background-color: white;
  345. border-bottom: solid 1px #e0e0e0;
  346. color: gray;
  347. }
  348. /* line 326, ../sass/_layout.scss */
  349. #main #infos-producer strong {
  350. font-weight: bold;
  351. }
  352. /* line 330, ../sass/_layout.scss */
  353. #main #infos-producer .favorite {
  354. float: right;
  355. color: gray;
  356. }
  357. /* line 333, ../sass/_layout.scss */
  358. #main #infos-producer .favorite a {
  359. color: black;
  360. }
  361. /* line 339, ../sass/_layout.scss */
  362. #main h2#page-title {
  363. margin-top: 0px;
  364. font-family: "worksans_bold";
  365. font-size: 30px;
  366. line-height: 40px;
  367. }
  368. /* line 350, ../sass/_layout.scss */
  369. #main #content {
  370. padding: 40px;
  371. min-height: 300px;
  372. }
  373. /* line 354, ../sass/_layout.scss */
  374. #main #content h1, #main #content h2, #main #content h3, #main #content h4, #main #content h5, #main #content h6 {
  375. font-family: "worksans_bold";
  376. margin-bottom: 20px;
  377. color: black;
  378. }
  379. /* line 359, ../sass/_layout.scss */
  380. #main #content h1.first, #main #content h2.first, #main #content h3.first, #main #content h4.first, #main #content h5.first, #main #content h6.first {
  381. margin-top: 0px;
  382. }
  383. /* line 364, ../sass/_layout.scss */
  384. #main #content h1 {
  385. font-size: 30px;
  386. }
  387. /* line 368, ../sass/_layout.scss */
  388. #main #content h2 {
  389. font-size: 25px;
  390. }
  391. /* line 372, ../sass/_layout.scss */
  392. #main #content h3 {
  393. font-size: 1.4em;
  394. text-align: left;
  395. margin-bottom: 30px;
  396. }
  397. /* line 377, ../sass/_layout.scss */
  398. #main #content h3 span {
  399. padding-top: 14px;
  400. color: black;
  401. }
  402. /* line 383, ../sass/_layout.scss */
  403. #main #content h4 {
  404. font-size: 20px;
  405. }
  406. /* line 387, ../sass/_layout.scss */
  407. #main #content h5 {
  408. font-size: 18px;
  409. }
  410. /* line 391, ../sass/_layout.scss */
  411. #main #content h6 {
  412. font-size: 16px;
  413. }
  414. /* line 397, ../sass/_layout.scss */
  415. #main #content form .form-group .hint-block {
  416. color: gray;
  417. }
  418. /* line 405, ../sass/_layout.scss */
  419. #footer-producer {
  420. margin-bottom: 30px;
  421. text-align: center;
  422. width: 100%;
  423. }
  424. /* line 410, ../sass/_layout.scss */
  425. #footer-producer a {
  426. color: #ee6f42;
  427. }
  428. /* line 412, ../sass/_layout.scss */
  429. #footer-producer a:active {
  430. text-decoration: underline;
  431. }
  432. /* line 418, ../sass/_layout.scss */
  433. #footer {
  434. display: none;
  435. height: 100px;
  436. float: right;
  437. text-align: center;
  438. }
  439. /* line 424, ../sass/_layout.scss */
  440. #footer .content {
  441. padding-top: 20px;
  442. color: black;
  443. }
  444. /* line 428, ../sass/_layout.scss */
  445. #footer .content a {
  446. color: black;
  447. font-size: 18px;
  448. padding-left: 10px;
  449. padding-right: 10px;
  450. }
  451. /* line 434, ../sass/_layout.scss */
  452. #footer .content a:hover {
  453. text-decoration: underline;
  454. }
  455. /* line 441, ../sass/_layout.scss */
  456. #footer #code-source img {
  457. height: 20px;
  458. }
  459. /**
  460. Copyright Souke (2018)
  461. contact@souke.fr
  462. Ce logiciel est un programme informatique servant à aider les producteurs
  463. à distribuer leur production en circuits courts.
  464. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  465. respectant les principes de diffusion des logiciels libres. Vous pouvez
  466. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  467. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  468. sur le site "http://www.cecill.info".
  469. En contrepartie de l'accessibilité au code source et des droits de copie,
  470. de modification et de redistribution accordés par cette licence, il n'est
  471. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  472. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  473. titulaire des droits patrimoniaux et les concédants successifs.
  474. A cet égard l'attention de l'utilisateur est attirée sur les risques
  475. associés au chargement, à l'utilisation, à la modification et/ou au
  476. développement et à la reproduction du logiciel par l'utilisateur étant
  477. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  478. manipuler et qui le réserve donc à des développeurs et des professionnels
  479. avertis possédant des connaissances informatiques approfondies. Les
  480. utilisateurs sont donc invités à charger et tester l'adéquation du
  481. logiciel à leurs besoins dans des conditions permettant d'assurer la
  482. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  483. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  484. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  485. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  486. termes.
  487. */
  488. /* line 40, ../sass/site/_index.scss */
  489. .site-index #presentation .photo {
  490. text-align: center;
  491. }
  492. /* line 42, ../sass/site/_index.scss */
  493. .site-index #presentation .photo .img-photo {
  494. width: 100%;
  495. max-width: 500px;
  496. }
  497. /* line 49, ../sass/site/_index.scss */
  498. .site-index #presentation .description strong {
  499. font-weight: bold;
  500. }
  501. /* line 53, ../sass/site/_index.scss */
  502. .site-index #presentation .description em {
  503. font-style: italic;
  504. }
  505. /* line 57, ../sass/site/_index.scss */
  506. .site-index #presentation .description a {
  507. color: black;
  508. text-decoration: underline;
  509. }
  510. /* line 62, ../sass/site/_index.scss */
  511. .site-index #presentation .description p:last-child {
  512. margin-bottom: 0px;
  513. }
  514. /* line 4, ../sass/site/_products.scss */
  515. .site-products #products td.photo {
  516. width: 100px;
  517. }
  518. /* line 6, ../sass/site/_products.scss */
  519. .site-products #products td.photo img.photo-product {
  520. width: 120px;
  521. height: auto;
  522. }
  523. /* line 12, ../sass/site/_products.scss */
  524. .site-products #products small {
  525. color: gray;
  526. }
  527. /* line 5, ../sass/site/_points_sale.scss */
  528. .site-points-sale #points-sale .name .the-name {
  529. font-family: 'worksans_semibold';
  530. font-size: 1.2rem;
  531. line-height: 1.4rem;
  532. color: black;
  533. }
  534. /* line 11, ../sass/site/_points_sale.scss */
  535. .site-points-sale #points-sale .name .locality {
  536. color: gray;
  537. }
  538. /* line 17, ../sass/site/_points_sale.scss */
  539. .site-points-sale #points-sale .days .block-day:not(:last-child) {
  540. margin-bottom: 15px;
  541. }
  542. /* line 20, ../sass/site/_points_sale.scss */
  543. .site-points-sale #points-sale .days .block-day strong {
  544. font-family: 'worksans_medium';
  545. }
  546. /* line 23, ../sass/site/_points_sale.scss */
  547. .site-points-sale #points-sale .days .block-day small {
  548. color: gray;
  549. }
  550. /* line 3, ../sass/site/_credit_history.scss */
  551. .credit-history #credit-user {
  552. color: #ee6f42;
  553. font-size: 29px;
  554. font-weight: bold;
  555. }
  556. /* line 3, ../sass/site/_contact.scss */
  557. #contact-form .field-contactform-istest {
  558. display: none;
  559. }
  560. /**
  561. Copyright Souke (2018)
  562. contact@souke.fr
  563. Ce logiciel est un programme informatique servant à aider les producteurs
  564. à distribuer leur production en circuits courts.
  565. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  566. respectant les principes de diffusion des logiciels libres. Vous pouvez
  567. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  568. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  569. sur le site "http://www.cecill.info".
  570. En contrepartie de l'accessibilité au code source et des droits de copie,
  571. de modification et de redistribution accordés par cette licence, il n'est
  572. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  573. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  574. titulaire des droits patrimoniaux et les concédants successifs.
  575. A cet égard l'attention de l'utilisateur est attirée sur les risques
  576. associés au chargement, à l'utilisation, à la modification et/ou au
  577. développement et à la reproduction du logiciel par l'utilisateur étant
  578. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  579. manipuler et qui le réserve donc à des développeurs et des professionnels
  580. avertis possédant des connaissances informatiques approfondies. Les
  581. utilisateurs sont donc invités à charger et tester l'adéquation du
  582. logiciel à leurs besoins dans des conditions permettant d'assurer la
  583. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  584. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  585. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  586. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  587. termes.
  588. */
  589. /* line 40, ../sass/order/_form.scss */
  590. .order-create #main #content .order-form,
  591. .order-update #main #content .order-form {
  592. min-height: 600px;
  593. padding-bottom: 60px;
  594. }
  595. /* line 45, ../sass/order/_form.scss */
  596. .order-create #main #content .order-form h2,
  597. .order-update #main #content .order-form h2 {
  598. font-family: "myriadpro-regular";
  599. }
  600. /* line 49, ../sass/order/_form.scss */
  601. .order-create #main #content .order-form #infos-importantes.alert-warning,
  602. .order-update #main #content .order-form #infos-importantes.alert-warning {
  603. float: right;
  604. }
  605. /* line 55, ../sass/order/_form.scss */
  606. .order-create #main #content .order-form #datepicker-distribution .ui-datepicker,
  607. .order-update #main #content .order-form #datepicker-distribution .ui-datepicker {
  608. float: left;
  609. margin-right: 20px;
  610. font-size: 20px;
  611. }
  612. /* line 61, ../sass/order/_form.scss */
  613. .order-create #main #content .order-form #datepicker-distribution .ui-datepicker-header,
  614. .order-update #main #content .order-form #datepicker-distribution .ui-datepicker-header {
  615. background-color: #ee6f42;
  616. }
  617. /* line 65, ../sass/order/_form.scss */
  618. .order-create #main #content .order-form #datepicker-distribution .ui-datepicker-title,
  619. .order-update #main #content .order-form #datepicker-distribution .ui-datepicker-title {
  620. color: white;
  621. }
  622. /* line 71, ../sass/order/_form.scss */
  623. .order-create #main #content .order-form #datepicker-distribution .ui-datepicker-prev:hover,
  624. .order-create #main #content .order-form #datepicker-distribution .ui-datepicker-next:hover,
  625. .order-update #main #content .order-form #datepicker-distribution .ui-datepicker-prev:hover,
  626. .order-update #main #content .order-form #datepicker-distribution .ui-datepicker-next:hover {
  627. border: 0px none;
  628. background: none;
  629. }
  630. /* line 77, ../sass/order/_form.scss */
  631. .order-create #main #content .order-form #datepicker-distribution .ui-helper-clearfix:after,
  632. .order-update #main #content .order-form #datepicker-distribution .ui-helper-clearfix:after {
  633. clear: none;
  634. }
  635. /* line 82, ../sass/order/_form.scss */
  636. .order-create #main #content .order-form #datepicker-distribution .ui-datepicker-calendar a,
  637. .order-update #main #content .order-form #datepicker-distribution .ui-datepicker-calendar a {
  638. text-decoration: none;
  639. background-color: white;
  640. }
  641. /* line 85, ../sass/order/_form.scss */
  642. .order-create #main #content .order-form #datepicker-distribution .ui-datepicker-calendar a.ui-state-hover, .order-create #main #content .order-form #datepicker-distribution .ui-datepicker-calendar a.ui-state-active,
  643. .order-update #main #content .order-form #datepicker-distribution .ui-datepicker-calendar a.ui-state-hover,
  644. .order-update #main #content .order-form #datepicker-distribution .ui-datepicker-calendar a.ui-state-active {
  645. background-color: #ee6f42;
  646. color: white;
  647. border-color: #cdc3b7;
  648. }
  649. /* line 94, ../sass/order/_form.scss */
  650. .order-create #main #content .order-form .date-order,
  651. .order-update #main #content .order-form .date-order {
  652. margin-bottom: 53px;
  653. }
  654. /* line 96, ../sass/order/_form.scss */
  655. .order-create #main #content .order-form .date-order span,
  656. .order-update #main #content .order-form .date-order span {
  657. background-color: #ee6f42;
  658. color: white;
  659. -moz-border-radius: 10px;
  660. -webkit-border-radius: 10px;
  661. border-radius: 10px;
  662. padding: 10px;
  663. font-family: "myriadpro-regular";
  664. font-size: 20px;
  665. }
  666. /* line 106, ../sass/order/_form.scss */
  667. .order-create #main #content .order-form #has-order-in-progress,
  668. .order-update #main #content .order-form #has-order-in-progress {
  669. margin-top: 15px;
  670. }
  671. /* line 109, ../sass/order/_form.scss */
  672. .order-create #main #content .order-form #has-order-in-progress a,
  673. .order-update #main #content .order-form #has-order-in-progress a {
  674. color: #a94442;
  675. text-decoration: none;
  676. font-weight: bold;
  677. }
  678. /* line 116, ../sass/order/_form.scss */
  679. .order-create #main #content .order-form .field-order-id_distribution,
  680. .order-update #main #content .order-form .field-order-id_distribution {
  681. display: none;
  682. }
  683. /* line 120, ../sass/order/_form.scss */
  684. .order-create #main #content .order-form .field-order-id_point_sale,
  685. .order-update #main #content .order-form .field-order-id_point_sale {
  686. margin-top: 30px;
  687. }
  688. /* line 124, ../sass/order/_form.scss */
  689. .order-create #main #content .order-form .field-order-id_distribution,
  690. .order-update #main #content .order-form .field-order-id_distribution {
  691. margin-bottom: 0px;
  692. }
  693. /* line 126, ../sass/order/_form.scss */
  694. .order-create #main #content .order-form .field-order-id_distribution label,
  695. .order-update #main #content .order-form .field-order-id_distribution label {
  696. margin-bottom: 0px;
  697. }
  698. /* line 130, ../sass/order/_form.scss */
  699. .order-create #main #content .order-form .field-order-id_distribution .help-block,
  700. .order-update #main #content .order-form .field-order-id_distribution .help-block {
  701. margin-bottom: 0px;
  702. }
  703. /* line 135, ../sass/order/_form.scss */
  704. .order-create #main #content .order-form .field-order-id_point_sale,
  705. .order-update #main #content .order-form .field-order-id_point_sale {
  706. display: none;
  707. }
  708. /* line 139, ../sass/order/_form.scss */
  709. .order-create #main #content .order-form .blocks,
  710. .order-update #main #content .order-form .blocks {
  711. list-style-type: none;
  712. margin: 0px;
  713. padding: 0px;
  714. }
  715. /* line 144, ../sass/order/_form.scss */
  716. .order-create #main #content .order-form .blocks .block,
  717. .order-update #main #content .order-form .blocks .block {
  718. text-decoration: none;
  719. width: 268px;
  720. height: 130px;
  721. float: left;
  722. padding: 20px;
  723. margin-right: 20px;
  724. margin-bottom: 8px;
  725. cursor: pointer;
  726. float: left;
  727. background-color: #f9f9f9;
  728. background-color: white;
  729. border: 1px solid #d8d8d8;
  730. }
  731. /* line 159, ../sass/order/_form.scss */
  732. .order-create #main #content .order-form .blocks .block .name,
  733. .order-update #main #content .order-form .blocks .block .name {
  734. font-family: "comfortaalight";
  735. font-size: 20px;
  736. padding-bottom: 10px;
  737. }
  738. /* line 165, ../sass/order/_form.scss */
  739. .order-create #main #content .order-form .blocks .block .address,
  740. .order-update #main #content .order-form .blocks .block .address {
  741. color: gray;
  742. font-size: 15px;
  743. line-height: 20px;
  744. }
  745. /* line 171, ../sass/order/_form.scss */
  746. .order-create #main #content .order-form .blocks .block.selected,
  747. .order-update #main #content .order-form .blocks .block.selected {
  748. border-left: solid 5px #ee6f42;
  749. }
  750. /* line 173, ../sass/order/_form.scss */
  751. .order-create #main #content .order-form .blocks .block.selected .contenu,
  752. .order-update #main #content .order-form .blocks .block.selected .contenu {
  753. position: relative;
  754. left: -4px;
  755. }
  756. /* line 179, ../sass/order/_form.scss */
  757. .order-create #main #content .order-form .blocks .block:hover,
  758. .order-update #main #content .order-form .blocks .block:hover {
  759. -moz-box-shadow: 0px 0px 5px #d8d8d8;
  760. -webkit-box-shadow: 0px 0px 5px #d8d8d8;
  761. box-shadow: 0px 0px 5px #d8d8d8;
  762. }
  763. /* line 183, ../sass/order/_form.scss */
  764. .order-create #main #content .order-form .blocks .block.disabled,
  765. .order-update #main #content .order-form .blocks .block.disabled {
  766. display: none;
  767. }
  768. /* line 187, ../sass/order/_form.scss */
  769. .order-create #main #content .order-form .blocks .block .comment,
  770. .order-update #main #content .order-form .blocks .block .comment {
  771. margin-top: 5px;
  772. }
  773. /* line 189, ../sass/order/_form.scss */
  774. .order-create #main #content .order-form .blocks .block .comment span,
  775. .order-update #main #content .order-form .blocks .block .comment span {
  776. background-color: #ee6f42;
  777. -moz-border-radius: 5px;
  778. -webkit-border-radius: 5px;
  779. border-radius: 5px;
  780. color: white;
  781. font-weight: bold;
  782. padding: 3px 10px;
  783. }
  784. /* line 200, ../sass/order/_form.scss */
  785. .order-create #main #content .order-form .infos-points-sale,
  786. .order-update #main #content .order-form .infos-points-sale {
  787. display: none;
  788. margin-top: 15px;
  789. }
  790. /* line 204, ../sass/order/_form.scss */
  791. .order-create #main #content .order-form .infos-points-sale h4,
  792. .order-update #main #content .order-form .infos-points-sale h4 {
  793. margin-top: 0px;
  794. padding-top: 0px;
  795. text-align: left;
  796. text-transform: uppercase;
  797. font-weight: bold;
  798. font-family: "myriadpro-semibold";
  799. }
  800. /* line 212, ../sass/order/_form.scss */
  801. .order-create #main #content .order-form .infos-points-sale h4 span,
  802. .order-update #main #content .order-form .infos-points-sale h4 span {
  803. font-family: "myriadpro-regular";
  804. text-transform: none;
  805. }
  806. /* line 218, ../sass/order/_form.scss */
  807. .order-create #main #content .order-form .infos-points-sale a,
  808. .order-update #main #content .order-form .infos-points-sale a {
  809. text-decoration: underline;
  810. }
  811. /* line 223, ../sass/order/_form.scss */
  812. .order-create #main #content .order-form #products,
  813. .order-update #main #content .order-form #products {
  814. margin-top: 15px;
  815. }
  816. /* line 226, ../sass/order/_form.scss */
  817. .order-create #main #content .order-form #products .alert.unavailable,
  818. .order-update #main #content .order-form #products .alert.unavailable {
  819. display: none;
  820. }
  821. /* line 230, ../sass/order/_form.scss */
  822. .order-create #main #content .order-form #products #label-products,
  823. .order-update #main #content .order-form #products #label-products {
  824. display: block;
  825. margin-bottom: 5px;
  826. }
  827. /* line 235, ../sass/order/_form.scss */
  828. .order-create #main #content .order-form #products .table,
  829. .order-update #main #content .order-form #products .table {
  830. margin-top: 7px;
  831. }
  832. /* line 238, ../sass/order/_form.scss */
  833. .order-create #main #content .order-form #products .table .photo,
  834. .order-update #main #content .order-form #products .table .photo {
  835. padding: 0px;
  836. width: 120px;
  837. }
  838. /* line 243, ../sass/order/_form.scss */
  839. .order-create #main #content .order-form #products .table .th-photo, .order-create #main #content .order-form #products .table .td-photo,
  840. .order-update #main #content .order-form #products .table .th-photo,
  841. .order-update #main #content .order-form #products .table .td-photo {
  842. width: 120px;
  843. }
  844. /* line 247, ../sass/order/_form.scss */
  845. .order-create #main #content .order-form #products .table .name,
  846. .order-update #main #content .order-form #products .table .name {
  847. font-family: "comfortaalight";
  848. font-weight: bold;
  849. text-transform: uppercase;
  850. font-size: 18px;
  851. }
  852. /* line 254, ../sass/order/_form.scss */
  853. .order-create #main #content .order-form #products .table .description,
  854. .order-update #main #content .order-form #products .table .description {
  855. font-style: italic;
  856. }
  857. /* line 258, ../sass/order/_form.scss */
  858. .order-create #main #content .order-form #products .table .recipe,
  859. .order-update #main #content .order-form #products .table .recipe {
  860. font-size: 12px;
  861. }
  862. /* line 262, ../sass/order/_form.scss */
  863. .order-create #main #content .order-form #products .table .input-group,
  864. .order-update #main #content .order-form #products .table .input-group {
  865. width: 133px;
  866. }
  867. /* line 264, ../sass/order/_form.scss */
  868. .order-create #main #content .order-form #products .table .input-group .quantity,
  869. .order-update #main #content .order-form #products .table .input-group .quantity {
  870. text-align: center;
  871. }
  872. /* line 269, ../sass/order/_form.scss */
  873. .order-create #main #content .order-form #products .table .column-quantity, .order-create #main #content .order-form #products .table .price-unit, .order-create #main #content .order-form #products .table .total,
  874. .order-update #main #content .order-form #products .table .column-quantity,
  875. .order-update #main #content .order-form #products .table .price-unit,
  876. .order-update #main #content .order-form #products .table .total {
  877. width: 150px;
  878. text-align: center;
  879. }
  880. /* line 274, ../sass/order/_form.scss */
  881. .order-create #main #content .order-form #products .table td#total-order, .order-create #main #content .order-form #products .table td#total-order-vrac, .order-create #main #content .order-form #products .table td.total,
  882. .order-update #main #content .order-form #products .table td#total-order,
  883. .order-update #main #content .order-form #products .table td#total-order-vrac,
  884. .order-update #main #content .order-form #products .table td.total {
  885. text-align: center;
  886. }
  887. /* line 278, ../sass/order/_form.scss */
  888. .order-create #main #content .order-form #products .table .unavailable,
  889. .order-update #main #content .order-form #products .table .unavailable {
  890. display: none;
  891. text-transform: uppercase;
  892. color: #B32815;
  893. font-weight: bold;
  894. font-size: 16px;
  895. text-align: center;
  896. }
  897. /* line 287, ../sass/order/_form.scss */
  898. .order-create #main #content .order-form #products .table .quantity-remaining,
  899. .order-update #main #content .order-form #products .table .quantity-remaining {
  900. font-size: 12px;
  901. margin-top: 8px;
  902. }
  903. /* line 291, ../sass/order/_form.scss */
  904. .order-create #main #content .order-form #products .table .quantity-remaining .nb,
  905. .order-update #main #content .order-form #products .table .quantity-remaining .nb {
  906. font-weight: bold;
  907. }
  908. /* line 296, ../sass/order/_form.scss */
  909. .order-create #main #content .order-form #products .table td.product, .order-create #main #content .order-form #products .table th.product,
  910. .order-update #main #content .order-form #products .table td.product,
  911. .order-update #main #content .order-form #products .table th.product {
  912. width: 70%;
  913. }
  914. /* line 300, ../sass/order/_form.scss */
  915. .order-create #main #content .order-form #products .table td.price-unit, .order-create #main #content .order-form #products .table th.price-unit,
  916. .order-update #main #content .order-form #products .table td.price-unit,
  917. .order-update #main #content .order-form #products .table th.price-unit {
  918. width: 10%;
  919. }
  920. /* line 304, ../sass/order/_form.scss */
  921. .order-create #main #content .order-form #products .table td.column-quantity, .order-create #main #content .order-form #products .table th.column-quantity,
  922. .order-update #main #content .order-form #products .table td.column-quantity,
  923. .order-update #main #content .order-form #products .table th.column-quantity {
  924. width: 10%;
  925. }
  926. /* line 308, ../sass/order/_form.scss */
  927. .order-create #main #content .order-form #products .table td.total, .order-create #main #content .order-form #products .table th.total,
  928. .order-update #main #content .order-form #products .table td.total,
  929. .order-update #main #content .order-form #products .table th.total {
  930. width: 10%;
  931. }
  932. /* line 314, ../sass/order/_form.scss */
  933. .order-create #main #content .order-form #bar-fixed,
  934. .order-update #main #content .order-form #bar-fixed {
  935. display: none;
  936. width: 100%;
  937. position: fixed;
  938. bottom: 0px;
  939. left: 0px;
  940. z-index: 100;
  941. background-color: white;
  942. padding: 15px;
  943. margin-bottom: 0px;
  944. -moz-box-shadow: 0 0 5px gray;
  945. -webkit-box-shadow: 0 0 5px gray;
  946. box-shadow: 0 0 5px gray;
  947. border-top: solid 1px #e0e0e0;
  948. background-color: white;
  949. text-align: center;
  950. }
  951. /* line 329, ../sass/order/_form.scss */
  952. .order-create #main #content .order-form #bar-fixed .container,
  953. .order-update #main #content .order-form #bar-fixed .container {
  954. min-height: auto;
  955. background: none;
  956. border: 0px none;
  957. }
  958. /* line 335, ../sass/order/_form.scss */
  959. .order-create #main #content .order-form #bar-fixed.not-fixed,
  960. .order-update #main #content .order-form #bar-fixed.not-fixed {
  961. position: relative;
  962. -moz-box-shadow: none;
  963. -webkit-box-shadow: none;
  964. box-shadow: none;
  965. -moz-border-radius: 0px;
  966. -webkit-border-radius: 0px;
  967. border-radius: 0px;
  968. border: solid 1px #e0e0e0;
  969. padding-right: 20px;
  970. }
  971. /* line 342, ../sass/order/_form.scss */
  972. .order-create #main #content .order-form #bar-fixed.not-fixed .container,
  973. .order-update #main #content .order-form #bar-fixed.not-fixed .container {
  974. width: auto;
  975. }
  976. /* line 348, ../sass/order/_form.scss */
  977. .order-create #main #content .order-form #bar-fixed.no-credit #bloc-valider-commande,
  978. .order-update #main #content .order-form #bar-fixed.no-credit #bloc-valider-commande {
  979. margin-top: 0px;
  980. float: right;
  981. }
  982. /* line 354, ../sass/order/_form.scss */
  983. .order-create #main #content .order-form #bar-fixed #total-order-bottom,
  984. .order-update #main #content .order-form #bar-fixed #total-order-bottom {
  985. background-color: white;
  986. -moz-border-radius: 20px;
  987. -webkit-border-radius: 20px;
  988. border-radius: 20px;
  989. padding: 5px 25px;
  990. border: solid 1px #e0e0e0;
  991. }
  992. /* line 361, ../sass/order/_form.scss */
  993. .order-create #main #content .order-form #bar-fixed .btn-comment,
  994. .order-update #main #content .order-form #bar-fixed .btn-comment {
  995. float: left;
  996. }
  997. /* line 369, ../sass/order/_form.scss */
  998. .order-create #main #content .order-form #bar-fixed .btn-comment,
  999. .order-update #main #content .order-form #bar-fixed .btn-comment {
  1000. margin-right: 10px;
  1001. }
  1002. /* line 373, ../sass/order/_form.scss */
  1003. .order-create #main #content .order-form #bar-fixed #block-confirm-order,
  1004. .order-update #main #content .order-form #bar-fixed #block-confirm-order {
  1005. text-align: right;
  1006. margin-top: 40px;
  1007. }
  1008. /* line 377, ../sass/order/_form.scss */
  1009. .order-create #main #content .order-form #bar-fixed #block-confirm-order button,
  1010. .order-update #main #content .order-form #bar-fixed #block-confirm-order button {
  1011. width: 340px;
  1012. margin-right: 10px;
  1013. }
  1014. /* line 383, ../sass/order/_form.scss */
  1015. .order-create #main #content .order-form #bar-fixed #checkbox-credit,
  1016. .order-update #main #content .order-form #bar-fixed #checkbox-credit {
  1017. float: right;
  1018. width: 340px;
  1019. padding: 3px 11px;
  1020. background-color: white;
  1021. border: solid 1px #ccc;
  1022. -moz-border-radius: 5px;
  1023. -webkit-border-radius: 5px;
  1024. border-radius: 5px;
  1025. margin-right: 10px;
  1026. text-shadow: 0 1px 0 #fff;
  1027. -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 1px rgba(0, 0, 0, 0.075);
  1028. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 1px rgba(0, 0, 0, 0.075);
  1029. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 1px rgba(0, 0, 0, 0.075);
  1030. }
  1031. /* line 394, ../sass/order/_form.scss */
  1032. .order-create #main #content .order-form #bar-fixed #checkbox-credit.payment-impossible,
  1033. .order-update #main #content .order-form #bar-fixed #checkbox-credit.payment-impossible {
  1034. background-color: #e0e0e0;
  1035. }
  1036. /* line 398, ../sass/order/_form.scss */
  1037. .order-create #main #content .order-form #bar-fixed #checkbox-credit .info,
  1038. .order-update #main #content .order-form #bar-fixed #checkbox-credit .info {
  1039. color: gray;
  1040. font-weight: normal;
  1041. }
  1042. /* line 403, ../sass/order/_form.scss */
  1043. .order-create #main #content .order-form #bar-fixed #checkbox-credit .the-credit,
  1044. .order-update #main #content .order-form #bar-fixed #checkbox-credit .the-credit {
  1045. background-color: #ee6f42;
  1046. color: white;
  1047. padding: 2px 8px;
  1048. -moz-border-radius: 5px;
  1049. -webkit-border-radius: 5px;
  1050. border-radius: 5px;
  1051. }
  1052. /* line 410, ../sass/order/_form.scss */
  1053. .order-create #main #content .order-form #bar-fixed #checkbox-credit .amount-paid,
  1054. .order-update #main #content .order-form #bar-fixed #checkbox-credit .amount-paid {
  1055. color: #ee6f42;
  1056. }
  1057. /* line 414, ../sass/order/_form.scss */
  1058. .order-create #main #content .order-form #bar-fixed #checkbox-credit #info-credit-empty,
  1059. .order-update #main #content .order-form #bar-fixed #checkbox-credit #info-credit-empty {
  1060. font-size: 12px;
  1061. }
  1062. /* line 418, ../sass/order/_form.scss */
  1063. .order-create #main #content .order-form #bar-fixed #checkbox-credit #credit-disabled,
  1064. .order-update #main #content .order-form #bar-fixed #checkbox-credit #credit-disabled {
  1065. display: none;
  1066. font-size: 12px;
  1067. }
  1068. /* line 424, ../sass/order/_form.scss */
  1069. .order-create #main #content .order-form #bar-fixed .btn-back, .order-create #main #content .order-form #bar-fixed .cancel-order,
  1070. .order-update #main #content .order-form #bar-fixed .btn-back,
  1071. .order-update #main #content .order-form #bar-fixed .cancel-order {
  1072. float: left;
  1073. margin-right: 5px;
  1074. }
  1075. /* line 429, ../sass/order/_form.scss */
  1076. .order-create #main #content .order-form #bar-fixed .cancel-order,
  1077. .order-update #main #content .order-form #bar-fixed .cancel-order {
  1078. color: #b92c28;
  1079. background-color: white;
  1080. }
  1081. /* line 434, ../sass/order/_form.scss */
  1082. .order-create #main #content .order-form #bar-fixed #total-order-bottom,
  1083. .order-update #main #content .order-form #bar-fixed #total-order-bottom {
  1084. display: none;
  1085. font-weight: bold;
  1086. font-family: "comfortaalight";
  1087. font-size: 24px;
  1088. }
  1089. /* line 441, ../sass/order/_form.scss */
  1090. .order-create #main #content .order-form #bar-fixed .field-order-comment,
  1091. .order-update #main #content .order-form #bar-fixed .field-order-comment {
  1092. display: none;
  1093. }
  1094. /* line 449, ../sass/order/_form.scss */
  1095. .order-create .ui-datepicker .ui-widget-header,
  1096. .order-update .ui-datepicker .ui-widget-header {
  1097. background: none;
  1098. background-color: gray;
  1099. border: 0px none;
  1100. color: black;
  1101. font-weight: normal;
  1102. }
  1103. /* line 457, ../sass/order/_form.scss */
  1104. .order-create .ui-datepicker .ui-datepicker-current-day a,
  1105. .order-create .ui-datepicker a.ui-state-hover,
  1106. .order-update .ui-datepicker .ui-datepicker-current-day a,
  1107. .order-update .ui-datepicker a.ui-state-hover {
  1108. background: none;
  1109. background-color: gray;
  1110. border-color: black;
  1111. color: black;
  1112. }
  1113. /**
  1114. Copyright Souke (2018)
  1115. contact@souke.fr
  1116. Ce logiciel est un programme informatique servant à aider les producteurs
  1117. à distribuer leur production en circuits courts.
  1118. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  1119. respectant les principes de diffusion des logiciels libres. Vous pouvez
  1120. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  1121. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  1122. sur le site "http://www.cecill.info".
  1123. En contrepartie de l'accessibilité au code source et des droits de copie,
  1124. de modification et de redistribution accordés par cette licence, il n'est
  1125. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  1126. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  1127. titulaire des droits patrimoniaux et les concédants successifs.
  1128. A cet égard l'attention de l'utilisateur est attirée sur les risques
  1129. associés au chargement, à l'utilisation, à la modification et/ou au
  1130. développement et à la reproduction du logiciel par l'utilisateur étant
  1131. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  1132. manipuler et qui le réserve donc à des développeurs et des professionnels
  1133. avertis possédant des connaissances informatiques approfondies. Les
  1134. utilisateurs sont donc invités à charger et tester l'adéquation du
  1135. logiciel à leurs besoins dans des conditions permettant d'assurer la
  1136. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  1137. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  1138. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  1139. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  1140. termes.
  1141. */
  1142. /* line 40, ../sass/order/_history.scss */
  1143. .order-history #list-producers {
  1144. display: none;
  1145. }
  1146. /* line 44, ../sass/order/_history.scss */
  1147. .order-history #tabs-orders-history {
  1148. margin-bottom: 20px;
  1149. }
  1150. /* line 48, ../sass/order/_history.scss */
  1151. .order-history #tabs-orders-history li a, .order-history #tabs-orders-history li.active a {
  1152. color: black;
  1153. }
  1154. /* line 55, ../sass/order/_history.scss */
  1155. .order-history table .locality {
  1156. color: gray;
  1157. }
  1158. /* line 3, ../sass/order/_order.scss */
  1159. .order-order #block-infos, .order-confirm #block-infos {
  1160. margin-top: 50px;
  1161. }
  1162. /* line 9, ../sass/order/_order.scss */
  1163. .order-order #main #app-order-order {
  1164. display: block;
  1165. }
  1166. /* line 12, ../sass/order/_order.scss */
  1167. .order-order #main #app-order-order .wrapper {
  1168. display: none;
  1169. }
  1170. /* line 15, ../sass/order/_order.scss */
  1171. .order-order #main #app-order-order.loaded .wrapper {
  1172. display: block;
  1173. }
  1174. /* line 19, ../sass/order/_order.scss */
  1175. .order-order #main #app-order-order h3 {
  1176. font-family: "worksans_bold";
  1177. }
  1178. /* line 23, ../sass/order/_order.scss */
  1179. .order-order #main #app-order-order #distribution-date, .order-order #main #app-order-order #order-distribution-date {
  1180. display: none;
  1181. }
  1182. /* line 33, ../sass/order/_order.scss */
  1183. .order-order #main #app-order-order .slide-enter-active {
  1184. transition: all .2s ease;
  1185. }
  1186. /* line 37, ../sass/order/_order.scss */
  1187. .order-order #main #app-order-order .slide-leave-active {
  1188. transition: all 0s ease;
  1189. }
  1190. /* line 40, ../sass/order/_order.scss */
  1191. .order-order #main #app-order-order .slide-enter, .order-order #main #app-order-order .slide-leave-to {
  1192. transform: translateX(10px);
  1193. opacity: 0;
  1194. }
  1195. /* line 45, ../sass/order/_order.scss */
  1196. .order-order #main #app-order-order #steps {
  1197. margin-bottom: 20px;
  1198. }
  1199. /* line 47, ../sass/order/_order.scss */
  1200. .order-order #main #app-order-order #steps ul {
  1201. height: 70px;
  1202. list-style-type: none;
  1203. padding: 0px;
  1204. margin-bottom: 40px;
  1205. }
  1206. /* line 53, ../sass/order/_order.scss */
  1207. .order-order #main #app-order-order #steps ul li {
  1208. text-align: center;
  1209. padding-right: 8px;
  1210. padding-left: 8px;
  1211. position: relative;
  1212. }
  1213. /* line 59, ../sass/order/_order.scss */
  1214. .order-order #main #app-order-order #steps ul li .info-step {
  1215. position: absolute;
  1216. top: 45px;
  1217. left: 0px;
  1218. width: 100%;
  1219. text-transform: normal;
  1220. color: #ee6f42;
  1221. font-size: 17px;
  1222. font-weight: bold;
  1223. }
  1224. /* line 70, ../sass/order/_order.scss */
  1225. .order-order #main #app-order-order #steps ul li .glyphicon-chevron-right, .order-order #main #app-order-order #steps ul li.active .glyphicon-chevron-right {
  1226. float: right;
  1227. color: gray;
  1228. position: relative;
  1229. top: 10px;
  1230. }
  1231. /* line 78, ../sass/order/_order.scss */
  1232. .order-order #main #app-order-order #steps ul li.first {
  1233. padding-left: 0px;
  1234. }
  1235. /* line 82, ../sass/order/_order.scss */
  1236. .order-order #main #app-order-order #steps ul li#step-payment {
  1237. padding-right: 0px;
  1238. }
  1239. /* line 86, ../sass/order/_order.scss */
  1240. .order-order #main #app-order-order #steps ul li#step-products .btn::after, .order-order #main #app-order-order #steps ul li.first .btn::before {
  1241. display: none;
  1242. }
  1243. /* line 91, ../sass/order/_order.scss */
  1244. .order-order #main #app-order-order #steps ul li .btn {
  1245. color: black;
  1246. background-color: #ece4d8;
  1247. text-transform: uppercase;
  1248. display: block;
  1249. width: 100%;
  1250. position: relative;
  1251. -moz-border-radius: 0px;
  1252. -webkit-border-radius: 0px;
  1253. border-radius: 0px;
  1254. border: 0px none;
  1255. text-transform: uppercase;
  1256. }
  1257. /* line 102, ../sass/order/_order.scss */
  1258. .order-order #main #app-order-order #steps ul li .btn .button-content {
  1259. position: relative;
  1260. left: 8px;
  1261. }
  1262. /* line 107, ../sass/order/_order.scss */
  1263. .order-order #main #app-order-order #steps ul li .btn::after, .order-order #main #app-order-order #steps ul li .btn::before {
  1264. content: "";
  1265. position: absolute;
  1266. top: 1px;
  1267. }
  1268. /* line 113, ../sass/order/_order.scss */
  1269. .order-order #main #app-order-order #steps ul li .btn::after {
  1270. right: -34px;
  1271. border: 17px solid transparent;
  1272. border-left: 17px solid #ece4d8;
  1273. background-color: transparent;
  1274. }
  1275. /* line 120, ../sass/order/_order.scss */
  1276. .order-order #main #app-order-order #steps ul li .btn::before {
  1277. left: 0px;
  1278. border: 17px solid transparent;
  1279. border-left: 17px solid white;
  1280. background-color: transparent;
  1281. }
  1282. /* line 128, ../sass/order/_order.scss */
  1283. .order-order #main #app-order-order #steps ul li .btn-primary {
  1284. color: white;
  1285. }
  1286. /* line 136, ../sass/order/_order.scss */
  1287. .order-order #main #app-order-order #legend #order-date-color,
  1288. .order-order #main #app-order-order #legend #distribution-date-color {
  1289. width: 13px;
  1290. height: 13px;
  1291. display: inline-block;
  1292. }
  1293. /* line 143, ../sass/order/_order.scss */
  1294. .order-order #main #app-order-order #legend #order-date-color {
  1295. background-color: #198754;
  1296. border: solid 2px #198754;
  1297. }
  1298. /* line 147, ../sass/order/_order.scss */
  1299. .order-order #main #app-order-order #legend #distribution-date-color {
  1300. background-color: white;
  1301. border: solid 2px #198754;
  1302. }
  1303. /* line 153, ../sass/order/_order.scss */
  1304. .order-order #main #app-order-order #calendar {
  1305. margin-bottom: 15px;
  1306. }
  1307. /* line 155, ../sass/order/_order.scss */
  1308. .order-order #main #app-order-order #calendar .c-header .c-title-layout .c-title-popover .c-title-anchor .c-title[data-v-2083cb72] {
  1309. font-size: 2rem;
  1310. }
  1311. /* line 158, ../sass/order/_order.scss */
  1312. .order-order #main #app-order-order #calendar .c-day-background {
  1313. padding: 20px;
  1314. }
  1315. /* line 163, ../sass/order/_order.scss */
  1316. .order-order #main #app-order-order #calendar .c-day:hover .c-day-background {
  1317. background-color: #ee6f42 !important;
  1318. color: white !important;
  1319. }
  1320. /* line 169, ../sass/order/_order.scss */
  1321. .order-order #main #app-order-order #calendar .c-day-popover-content {
  1322. font-size: 1.3rem;
  1323. }
  1324. /* line 177, ../sass/order/_order.scss */
  1325. .order-order #main #app-order-order #credit-online-payment .panel .panel-heading .btn-default {
  1326. float: right;
  1327. position: relative;
  1328. top: -5px;
  1329. }
  1330. /* line 188, ../sass/order/_order.scss */
  1331. .order-order #main #app-order-order #content-step-date #distributions-list .card {
  1332. margin-bottom: 20px;
  1333. }
  1334. /* line 191, ../sass/order/_order.scss */
  1335. .order-order #main #app-order-order #content-step-date #distributions-list .card .btn-primary {
  1336. float: right;
  1337. }
  1338. /* line 195, ../sass/order/_order.scss */
  1339. .order-order #main #app-order-order #content-step-date #distributions-list .card .date {
  1340. font-size: 1.2rem;
  1341. line-height: 1.4rem;
  1342. text-transform: uppercase;
  1343. font-family: 'worksans_semibold';
  1344. }
  1345. /* line 202, ../sass/order/_order.scss */
  1346. .order-order #main #app-order-order #content-step-date #distributions-list .card .point-sales {
  1347. color: gray;
  1348. font-size: 14px;
  1349. margin-top: 8px;
  1350. }
  1351. /* line 211, ../sass/order/_order.scss */
  1352. .order-order #main #app-order-order .block-actions {
  1353. text-align: center;
  1354. margin-top: 40px;
  1355. }
  1356. /* line 218, ../sass/order/_order.scss */
  1357. .order-order #main #app-order-order table#points-sale td.name .the-name {
  1358. color: black;
  1359. font-size: 1.2em;
  1360. line-height: 1.4em;
  1361. font-family: 'worksans_semibold';
  1362. }
  1363. /* line 225, ../sass/order/_order.scss */
  1364. .order-order #main #app-order-order table#points-sale td.name .locality {
  1365. display: none;
  1366. }
  1367. /* line 229, ../sass/order/_order.scss */
  1368. .order-order #main #app-order-order table#points-sale td.name .comment,
  1369. .order-order #main #app-order-order table#points-sale td.name .minimum-order-amount {
  1370. color: gray;
  1371. }
  1372. /* line 233, ../sass/order/_order.scss */
  1373. .order-order #main #app-order-order table#points-sale td.name .comment a,
  1374. .order-order #main #app-order-order table#points-sale td.name .minimum-order-amount a {
  1375. color: #ee6f42;
  1376. }
  1377. /* line 239, ../sass/order/_order.scss */
  1378. .order-order #main #app-order-order table#points-sale td.actions {
  1379. width: 150px;
  1380. }
  1381. /* line 241, ../sass/order/_order.scss */
  1382. .order-order #main #app-order-order table#points-sale td.actions button {
  1383. width: 100%;
  1384. }
  1385. /* line 253, ../sass/order/_order.scss */
  1386. .order-order #main #app-order-order table#products {
  1387. margin-bottom: 40px;
  1388. border-top: solid 1px #b7ab9b;
  1389. border-left: solid 1px #b7ab9b;
  1390. border-right: solid 1px #b7ab9b;
  1391. }
  1392. /* line 259, ../sass/order/_order.scss */
  1393. .order-order #main #app-order-order table#products thead {
  1394. display: none;
  1395. }
  1396. /* line 263, ../sass/order/_order.scss */
  1397. .order-order #main #app-order-order table#products td {
  1398. border-bottom: solid 1px #b7ab9b;
  1399. border-left: 0px none;
  1400. border-right: 0px none;
  1401. }
  1402. /* line 271, ../sass/order/_order.scss */
  1403. .order-order #main #app-order-order table#products tr.category-closed:hover td.category-name,
  1404. .order-order #main #app-order-order table#products tr.category-open td.category-name {
  1405. padding-left: 30px;
  1406. background-color: #f4efe8;
  1407. }
  1408. /* line 278, ../sass/order/_order.scss */
  1409. .order-order #main #app-order-order table#products td.category-name {
  1410. transition: all 0.1s linear;
  1411. background-color: #f4efe8;
  1412. border-left: solid 5px #b7ab9b;
  1413. font-family: "worksans_bold";
  1414. font-size: 22px;
  1415. line-height: 30px;
  1416. text-transform: uppercase;
  1417. padding-top: 13px;
  1418. padding-left: 20px;
  1419. }
  1420. /* line 289, ../sass/order/_order.scss */
  1421. .order-order #main #app-order-order table#products td.category-name .bi-caret-down-fill,
  1422. .order-order #main #app-order-order table#products td.category-name .bi-caret-right-fill {
  1423. font-size: 15px;
  1424. }
  1425. /* line 294, ../sass/order/_order.scss */
  1426. .order-order #main #app-order-order table#products td.category-name span.badge {
  1427. font-family: "worksans_bold";
  1428. text-transform: uppercase;
  1429. margin-left: 5px;
  1430. font-size: 0.85rem;
  1431. position: relative;
  1432. top: -3px;
  1433. }
  1434. /* line 302, ../sass/order/_order.scss */
  1435. .order-order #main #app-order-order table#products td.category-name span.badge.bg-primary {
  1436. float: right;
  1437. top: 2px;
  1438. }
  1439. /* line 308, ../sass/order/_order.scss */
  1440. .order-order #main #app-order-order table#products td.category-name:hover {
  1441. cursor: pointer;
  1442. background-color: white;
  1443. }
  1444. /* line 315, ../sass/order/_order.scss */
  1445. .order-order #main #app-order-order table#products td.photo img {
  1446. width: 75px;
  1447. }
  1448. /* line 325, ../sass/order/_order.scss */
  1449. .order-order #main #app-order-order table#products .price-unit .decreasing-prices {
  1450. margin-top: 10px;
  1451. font-size: 10px;
  1452. padding-top: 6px;
  1453. padding-bottom: 2px;
  1454. margin-bottom: 0px;
  1455. }
  1456. /* line 333, ../sass/order/_order.scss */
  1457. .order-order #main #app-order-order table#products .price-unit .decreasing-prices ul li {
  1458. margin-bottom: 5px;
  1459. }
  1460. /* line 335, ../sass/order/_order.scss */
  1461. .order-order #main #app-order-order table#products .price-unit .decreasing-prices ul li strong {
  1462. font-weight: bold;
  1463. }
  1464. /* line 343, ../sass/order/_order.scss */
  1465. .order-order #main #app-order-order table#products .price-unit, .order-order #main #app-order-order table#products .price-total {
  1466. width: 135px;
  1467. text-align: center;
  1468. }
  1469. /* line 347, ../sass/order/_order.scss */
  1470. .order-order #main #app-order-order table#products .price-unit .price-infos, .order-order #main #app-order-order table#products .price-total .price-infos {
  1471. color: gray;
  1472. font-size: 13px;
  1473. line-height: 15px;
  1474. }
  1475. /* line 354, ../sass/order/_order.scss */
  1476. .order-order #main #app-order-order table#products tr.product-open td.price-total {
  1477. font-size: 1.1rem;
  1478. font-family: 'worksans_bold';
  1479. padding-top: 19px;
  1480. }
  1481. /* line 360, ../sass/order/_order.scss */
  1482. .order-order #main #app-order-order table#products .td-quantity {
  1483. width: 175px;
  1484. }
  1485. /* line 363, ../sass/order/_order.scss */
  1486. .order-order #main #app-order-order table#products .td-quantity input.quantity,
  1487. .order-order #main #app-order-order table#products .td-quantity .input-group-text {
  1488. background-color: white;
  1489. }
  1490. /* line 368, ../sass/order/_order.scss */
  1491. .order-order #main #app-order-order table#products .td-quantity input.quantity {
  1492. text-align: center;
  1493. border: 0px none;
  1494. }
  1495. /* line 372, ../sass/order/_order.scss */
  1496. .order-order #main #app-order-order table#products .td-quantity .input-group-text {
  1497. border: 0px none;
  1498. padding-right: 10px;
  1499. padding-left: 0px;
  1500. margin: 0px;
  1501. }
  1502. /* line 380, ../sass/order/_order.scss */
  1503. .order-order #main #app-order-order table#products .td-quantity .input-group-btn button {
  1504. padding: 4px 5px 0px 5px;
  1505. }
  1506. /* line 382, ../sass/order/_order.scss */
  1507. .order-order #main #app-order-order table#products .td-quantity .input-group-btn button .bi {
  1508. font-size: 1.5em;
  1509. font-weight: bold;
  1510. margin: 0px;
  1511. }
  1512. /* line 393, ../sass/order/_order.scss */
  1513. .order-order #main #app-order-order table#products tr.total .summary {
  1514. padding: 25px;
  1515. }
  1516. /* line 396, ../sass/order/_order.scss */
  1517. .order-order #main #app-order-order table#products tr.total .summary h3 {
  1518. font-family: 'worksans_bold';
  1519. margin-top: 0px;
  1520. text-transform: uppercase;
  1521. margin-bottom: 5px;
  1522. }
  1523. /* line 403, ../sass/order/_order.scss */
  1524. .order-order #main #app-order-order table#products tr.total .summary ul {
  1525. margin-bottom: 15px;
  1526. padding-left: 20px;
  1527. font-size: 1.1rem;
  1528. line-height: 1.4rem;
  1529. list-style-type: disc;
  1530. }
  1531. /* line 411, ../sass/order/_order.scss */
  1532. .order-order #main #app-order-order table#products tr.total .summary ul li .quantity {
  1533. font-weight: bold;
  1534. }
  1535. /* line 418, ../sass/order/_order.scss */
  1536. .order-order #main #app-order-order table#products tr.total .price-total {
  1537. padding-top: 25px;
  1538. font-size: 1.5rem;
  1539. font-family: 'worksans_bold';
  1540. }
  1541. /* line 423, ../sass/order/_order.scss */
  1542. .order-order #main #app-order-order table#products tr.total .price-total span {
  1543. display: inline-block;
  1544. padding: 7px 15px;
  1545. -moz-border-radius: 15px;
  1546. -webkit-border-radius: 15px;
  1547. border-radius: 15px;
  1548. color: white;
  1549. font-size: 1.2rem;
  1550. }
  1551. /* line 435, ../sass/order/_order.scss */
  1552. .order-order #main #app-order-order #payment-methods .infos {
  1553. margin-top: 10px;
  1554. color: gray;
  1555. }
  1556. /* line 442, ../sass/order/_order.scss */
  1557. .order-order #main #app-order-order #content-step-payment .delivery {
  1558. margin-bottom: 20px;
  1559. }
  1560. /* line 446, ../sass/order/_order.scss */
  1561. .order-order #main #app-order-order #content-step-payment .comment {
  1562. margin-bottom: 20px;
  1563. }
  1564. /* line 451, ../sass/order/_order.scss */
  1565. .order-order #main #app-order-order #content-step-payment .credit .info {
  1566. margin-left: 20px;
  1567. color: gray;
  1568. }
  1569. /* line 464, ../sass/order/_order.scss */
  1570. #main #content .panel h3 {
  1571. font-family: "worksans_bold";
  1572. margin: 0px;
  1573. padding-top: 10px;
  1574. padding-bottom: 4px;
  1575. font-size: 20px;
  1576. }
  1577. /* line 5, ../sass/order/_confirm.scss */
  1578. .order-confirm #main #order-success .alert-order-summary ul {
  1579. padding: 0px;
  1580. margin: 0px;
  1581. list-style-type: none;
  1582. }
  1583. /* line 9, ../sass/order/_confirm.scss */
  1584. .order-confirm #main #order-success .alert-order-summary ul li {
  1585. margin-bottom: 10px;
  1586. }
  1587. /* line 13, ../sass/order/_confirm.scss */
  1588. .order-confirm #main #order-success .alert-order-summary p {
  1589. margin-bottom: 0px;
  1590. }
  1591. /* line 16, ../sass/order/_confirm.scss */
  1592. .order-confirm #main #order-success .alert-order-summary div.summary {
  1593. margin-top: 10px;
  1594. margin-bottom: 10px;
  1595. }
  1596. /* line 23, ../sass/order/_confirm.scss */
  1597. .order-confirm #main .card-payment-infos {
  1598. margin-top: 30px;
  1599. }
  1600. /* line 27, ../sass/order/_confirm.scss */
  1601. .order-confirm #main .card-infos {
  1602. margin-top: 30px;
  1603. }
  1604. /* line 3, ../sass/credit/_add.scss */
  1605. .credit-add .form {
  1606. width: 300px;
  1607. margin-top: 30px;
  1608. text-align: center;
  1609. }
  1610. /* line 8, ../sass/credit/_add.scss */
  1611. .credit-add .form .form-group.field-creditform-amount {
  1612. margin-bottom: 30px;
  1613. }
  1614. /* line 12, ../sass/credit/_add.scss */
  1615. .credit-add .form .form-group.field-creditform-amount label {
  1616. margin-bottom: 25px;
  1617. color: black;
  1618. font-size: 20px;
  1619. }
  1620. /* line 18, ../sass/credit/_add.scss */
  1621. .credit-add .form .form-group.field-creditform-amount .input-group {
  1622. width: 150px;
  1623. margin: 0px auto;
  1624. }
  1625. /* line 22, ../sass/credit/_add.scss */
  1626. .credit-add .form .form-group.field-creditform-amount .input-group input#creditform-amount {
  1627. text-align: center;
  1628. }
  1629. /* line 27, ../sass/credit/_add.scss */
  1630. .credit-add .form .form-group.field-creditform-amount .hint-block {
  1631. margin-top: 8px;
  1632. }
  1633. /* line 5, ../sass/credit/_history.scss */
  1634. .credit-history #content #credit-user {
  1635. float: right;
  1636. /*display: block;
  1637. padding: 10px 30px;
  1638. background-color: $color-gray-light;
  1639. @include border-radius(30px);*/
  1640. }
  1641. /* line 12, ../sass/credit/_history.scss */
  1642. .credit-history #content #credit-user .bi {
  1643. display: none;
  1644. }
  1645. /* line 18, ../sass/credit/_history.scss */
  1646. .credit-history #content .table span.payment-positive {
  1647. display: inline-block;
  1648. font-family: 'worksans_bold';
  1649. padding: 3px 12px;
  1650. background-color: #f4efe8;
  1651. -moz-border-radius: 15px;
  1652. -webkit-border-radius: 15px;
  1653. border-radius: 15px;
  1654. }
  1655. /* line 25, ../sass/credit/_history.scss */
  1656. .credit-history #content .table small {
  1657. color: gray;
  1658. }
  1659. /* line 4, ../sass/subscription/_index.scss */
  1660. .subscription-index table .locality {
  1661. color: gray;
  1662. }
  1663. /* line 4, ../sass/subscription/_form.scss */
  1664. .subscription-create .subscription-form,
  1665. .subscription-update .subscription-form {
  1666. display: none;
  1667. }
  1668. /* line 8, ../sass/subscription/_form.scss */
  1669. .subscription-create .subscription-form.loaded,
  1670. .subscription-update .subscription-form.loaded {
  1671. display: block;
  1672. }
  1673. /* line 12, ../sass/subscription/_form.scss */
  1674. .subscription-create .subscription-form .block,
  1675. .subscription-update .subscription-form .block {
  1676. margin-bottom: 40px;
  1677. }
  1678. /* line 15, ../sass/subscription/_form.scss */
  1679. .subscription-create .subscription-form .block h3,
  1680. .subscription-update .subscription-form .block h3 {
  1681. margin-bottom: 20px;
  1682. }
  1683. /* line 22, ../sass/subscription/_form.scss */
  1684. .subscription-create .subscription-form .points-sale .name .the-name,
  1685. .subscription-update .subscription-form .points-sale .name .the-name {
  1686. font-family: 'worksans_semibold';
  1687. font-size: 1.2rem;
  1688. line-height: 1.4rem;
  1689. color: black;
  1690. margin-bottom: 5px;
  1691. }
  1692. /* line 31, ../sass/subscription/_form.scss */
  1693. .subscription-create .subscription-form .points-sale .locality,
  1694. .subscription-update .subscription-form .points-sale .locality {
  1695. color: gray;
  1696. }
  1697. /* line 34, ../sass/subscription/_form.scss */
  1698. .subscription-create .subscription-form .points-sale label,
  1699. .subscription-update .subscription-form .points-sale label {
  1700. cursor: pointer;
  1701. }
  1702. /* line 40, ../sass/subscription/_form.scss */
  1703. .subscription-create .subscription-form .days .form-group,
  1704. .subscription-update .subscription-form .days .form-group {
  1705. float: left;
  1706. margin-right: 15px;
  1707. }
  1708. /* line 49, ../sass/subscription/_form.scss */
  1709. .subscription-create .subscription-form .points-sale table tr.selected td,
  1710. .subscription-update .subscription-form .points-sale table tr.selected td {
  1711. background-color: white;
  1712. }
  1713. /* line 54, ../sass/subscription/_form.scss */
  1714. .subscription-create .subscription-form .points-sale table .the-name,
  1715. .subscription-update .subscription-form .points-sale table .the-name {
  1716. font-size: 20px;
  1717. color: black;
  1718. }
  1719. /* line 59, ../sass/subscription/_form.scss */
  1720. .subscription-create .subscription-form .points-sale table .block-code,
  1721. .subscription-update .subscription-form .points-sale table .block-code {
  1722. width: 150px;
  1723. }
  1724. /* line 63, ../sass/subscription/_form.scss */
  1725. .subscription-create .subscription-form .points-sale table .actions,
  1726. .subscription-update .subscription-form .points-sale table .actions {
  1727. width: 150px;
  1728. }
  1729. /* line 66, ../sass/subscription/_form.scss */
  1730. .subscription-create .subscription-form .points-sale table .actions button,
  1731. .subscription-update .subscription-form .points-sale table .actions button {
  1732. width: 100%;
  1733. display: block;
  1734. }
  1735. /* line 75, ../sass/subscription/_form.scss */
  1736. .subscription-create .subscription-form .dates label,
  1737. .subscription-update .subscription-form .dates label {
  1738. display: block;
  1739. }
  1740. /* line 80, ../sass/subscription/_form.scss */
  1741. .subscription-create .subscription-form .comment-textarea,
  1742. .subscription-update .subscription-form .comment-textarea {
  1743. width: 100%;
  1744. height: 100px;
  1745. }
  1746. /* line 86, ../sass/subscription/_form.scss */
  1747. .subscription-create .subscription-form .products .monday, .subscription-create .subscription-form .products .tuesday, .subscription-create .subscription-form .products .wednesday, .subscription-create .subscription-form .products .thursday,
  1748. .subscription-create .subscription-form .products .friday, .subscription-create .subscription-form .products .saturday, .subscription-create .subscription-form .products .sunday, .subscription-create .subscription-form .products .no-day,
  1749. .subscription-update .subscription-form .products .monday,
  1750. .subscription-update .subscription-form .products .tuesday,
  1751. .subscription-update .subscription-form .products .wednesday,
  1752. .subscription-update .subscription-form .products .thursday,
  1753. .subscription-update .subscription-form .products .friday,
  1754. .subscription-update .subscription-form .products .saturday,
  1755. .subscription-update .subscription-form .products .sunday,
  1756. .subscription-update .subscription-form .products .no-day {
  1757. display: none;
  1758. }
  1759. /* line 91, ../sass/subscription/_form.scss */
  1760. .subscription-create .subscription-form .products .monday-active .monday,
  1761. .subscription-create .subscription-form .products .tuesday-active .tuesday,
  1762. .subscription-create .subscription-form .products .wednesday-active .wednesday,
  1763. .subscription-create .subscription-form .products .thursday-active .thursday,
  1764. .subscription-create .subscription-form .products .friday-active .friday,
  1765. .subscription-create .subscription-form .products .saturday-active .saturday,
  1766. .subscription-create .subscription-form .products .sunday-active .sunday,
  1767. .subscription-update .subscription-form .products .monday-active .monday,
  1768. .subscription-update .subscription-form .products .tuesday-active .tuesday,
  1769. .subscription-update .subscription-form .products .wednesday-active .wednesday,
  1770. .subscription-update .subscription-form .products .thursday-active .thursday,
  1771. .subscription-update .subscription-form .products .friday-active .friday,
  1772. .subscription-update .subscription-form .products .saturday-active .saturday,
  1773. .subscription-update .subscription-form .products .sunday-active .sunday {
  1774. display: block;
  1775. }
  1776. /* line 101, ../sass/subscription/_form.scss */
  1777. .subscription-create .subscription-form .products td.quantity,
  1778. .subscription-update .subscription-form .products td.quantity {
  1779. width: 200px;
  1780. }
  1781. /* line 104, ../sass/subscription/_form.scss */
  1782. .subscription-create .subscription-form .products td.quantity input,
  1783. .subscription-update .subscription-form .products td.quantity input {
  1784. text-align: center;
  1785. border: 0px none !important;
  1786. }
  1787. /* line 107, ../sass/subscription/_form.scss */
  1788. .subscription-create .subscription-form .products td.quantity input.has-quantity,
  1789. .subscription-update .subscription-form .products td.quantity input.has-quantity {
  1790. font-weight: bold;
  1791. }
  1792. /* line 112, ../sass/subscription/_form.scss */
  1793. .subscription-create .subscription-form .products td.quantity .input-group-text,
  1794. .subscription-update .subscription-form .products td.quantity .input-group-text {
  1795. background-color: white;
  1796. padding-left: 0px;
  1797. border: 0px none;
  1798. }
  1799. /* line 119, ../sass/subscription/_form.scss */
  1800. .subscription-create .subscription-form .products .name,
  1801. .subscription-update .subscription-form .products .name {
  1802. font-family: 'worksans_semibold';
  1803. font-size: 1.2rem;
  1804. line-height: 1.4rem;
  1805. color: black;
  1806. margin-bottom: 5px;
  1807. color: black;
  1808. }
  1809. /* line 127, ../sass/subscription/_form.scss */
  1810. .subscription-create .subscription-form .products .name span,
  1811. .subscription-update .subscription-form .products .name span {
  1812. font-family: 'worksans_regular';
  1813. }
  1814. /* line 132, ../sass/subscription/_form.scss */
  1815. .subscription-create .subscription-form .products .description,
  1816. .subscription-update .subscription-form .products .description {
  1817. margin-bottom: 5px;
  1818. }
  1819. /* line 136, ../sass/subscription/_form.scss */
  1820. .subscription-create .subscription-form .products .description,
  1821. .subscription-create .subscription-form .products .recipe,
  1822. .subscription-update .subscription-form .products .description,
  1823. .subscription-update .subscription-form .products .recipe {
  1824. font-size: 1rem;
  1825. color: gray;
  1826. }
  1827. /* line 142, ../sass/subscription/_form.scss */
  1828. .subscription-create .subscription-form .products .price-unit, .subscription-create .subscription-form .products .price-total,
  1829. .subscription-update .subscription-form .products .price-unit,
  1830. .subscription-update .subscription-form .products .price-total {
  1831. text-align: center;
  1832. width: 150px;
  1833. }
  1834. /* line 147, ../sass/subscription/_form.scss */
  1835. .subscription-create .subscription-form .products .price-total,
  1836. .subscription-update .subscription-form .products .price-total {
  1837. font-family: 'worksans_bold';
  1838. }
  1839. /* line 151, ../sass/subscription/_form.scss */
  1840. .subscription-create .subscription-form .products .unit,
  1841. .subscription-update .subscription-form .products .unit {
  1842. color: gray;
  1843. font-size: 13px;
  1844. }
  1845. /* line 156, ../sass/subscription/_form.scss */
  1846. .subscription-create .subscription-form .products tr.total .price-total,
  1847. .subscription-update .subscription-form .products tr.total .price-total {
  1848. text-align: center;
  1849. font-size: 20px;
  1850. }
  1851. /* line 160, ../sass/subscription/_form.scss */
  1852. .subscription-create .subscription-form .products tr.total .price-total span,
  1853. .subscription-update .subscription-form .products tr.total .price-total span {
  1854. font-family: 'worksans_bold';
  1855. display: inline-block;
  1856. padding: 7px 15px;
  1857. -moz-border-radius: 15px;
  1858. -webkit-border-radius: 15px;
  1859. border-radius: 15px;
  1860. color: white;
  1861. font-size: 1.2rem;
  1862. }
  1863. /* line 171, ../sass/subscription/_form.scss */
  1864. .subscription-create .subscription-form .form-buttons,
  1865. .subscription-update .subscription-form .form-buttons {
  1866. text-align: center !important;
  1867. }
  1868. /* line 174, ../sass/subscription/_form.scss */
  1869. .subscription-create .subscription-form .form-buttons button,
  1870. .subscription-update .subscription-form .form-buttons button {
  1871. display: inline-block;
  1872. }
  1873. /**
  1874. Copyright Souke (2018)
  1875. contact@souke.fr
  1876. Ce logiciel est un programme informatique servant à aider les producteurs
  1877. à distribuer leur production en circuits courts.
  1878. Ce logiciel est régi par la licence CeCILL soumise au droit français et
  1879. respectant les principes de diffusion des logiciels libres. Vous pouvez
  1880. utiliser, modifier et/ou redistribuer ce programme sous les conditions
  1881. de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  1882. sur le site "http://www.cecill.info".
  1883. En contrepartie de l'accessibilité au code source et des droits de copie,
  1884. de modification et de redistribution accordés par cette licence, il n'est
  1885. offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  1886. seule une responsabilité restreinte pèse sur l'auteur du programme, le
  1887. titulaire des droits patrimoniaux et les concédants successifs.
  1888. A cet égard l'attention de l'utilisateur est attirée sur les risques
  1889. associés au chargement, à l'utilisation, à la modification et/ou au
  1890. développement et à la reproduction du logiciel par l'utilisateur étant
  1891. donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  1892. manipuler et qui le réserve donc à des développeurs et des professionnels
  1893. avertis possédant des connaissances informatiques approfondies. Les
  1894. utilisateurs sont donc invités à charger et tester l'adéquation du
  1895. logiciel à leurs besoins dans des conditions permettant d'assurer la
  1896. sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  1897. à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  1898. Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  1899. pris connaissance de la licence CeCILL, et que vous en avez accepté les
  1900. termes.
  1901. */
  1902. @media screen and (min-width: 768px) and (max-width: 992px) {
  1903. /* line 39, ../sass/_responsive.scss */
  1904. #left .fixed {
  1905. position: relative;
  1906. }
  1907. }
  1908. @media screen and (max-width: 768px) {
  1909. /* line 47, ../sass/_responsive.scss */
  1910. #main {
  1911. padding-top: 0px;
  1912. }
  1913. /* line 51, ../sass/_responsive.scss */
  1914. #main #header #banner {
  1915. height: 120px;
  1916. }
  1917. /* line 59, ../sass/_responsive.scss */
  1918. #main #header #logo {
  1919. top: 37px;
  1920. left: 50%;
  1921. margin-left: -93px;
  1922. }
  1923. /* line 65, ../sass/_responsive.scss */
  1924. #main #header #title {
  1925. padding: 120px 20px 30px 20px;
  1926. }
  1927. /* line 68, ../sass/_responsive.scss */
  1928. #main #header #title h2 {
  1929. margin-left: 5px;
  1930. }
  1931. /* line 70, ../sass/_responsive.scss */
  1932. #main #header #title h2 span.location {
  1933. display: block;
  1934. margin-top: 10px;
  1935. }
  1936. /* line 77, ../sass/_responsive.scss */
  1937. #main #header.without-logo #title {
  1938. padding-top: 30px;
  1939. }
  1940. /* line 81, ../sass/_responsive.scss */
  1941. #main #header nav#main-nav {
  1942. border-top-width: 2px;
  1943. }
  1944. /* line 85, ../sass/_responsive.scss */
  1945. #main #header nav#main-nav ul li {
  1946. display: block;
  1947. width: 100%;
  1948. }
  1949. /* line 88, ../sass/_responsive.scss */
  1950. #main #header nav#main-nav ul li a {
  1951. text-align: left;
  1952. display: block;
  1953. border-bottom: solid 1px #ece4d8;
  1954. padding: 6px 10px;
  1955. }
  1956. /* line 94, ../sass/_responsive.scss */
  1957. #main #header nav#main-nav ul li a .label {
  1958. float: right;
  1959. }
  1960. /* line 98, ../sass/_responsive.scss */
  1961. #main #header nav#main-nav ul li a .hide-desktop {
  1962. display: inline-block;
  1963. }
  1964. /* line 107, ../sass/_responsive.scss */
  1965. #main #content {
  1966. padding: 20px;
  1967. }
  1968. /* line 111, ../sass/_responsive.scss */
  1969. #main #content .table td {
  1970. padding: 10px;
  1971. }
  1972. /* line 117, ../sass/_responsive.scss */
  1973. #main #content #block-infos .card {
  1974. margin-bottom: 20px;
  1975. }
  1976. /* line 123, ../sass/_responsive.scss */
  1977. #main #bar-fixed {
  1978. position: relative;
  1979. }
  1980. /* line 125, ../sass/_responsive.scss */
  1981. #main #bar-fixed .btn-comment {
  1982. float: none;
  1983. display: block;
  1984. width: 100%;
  1985. margin-bottom: 10px;
  1986. margin-top: 15px;
  1987. }
  1988. /* line 135, ../sass/_responsive.scss */
  1989. .order-create #main #content .order-form #products .table .input-group,
  1990. .order-update #main #content .order-form #products .table .input-group {
  1991. width: 60px;
  1992. }
  1993. /* line 139, ../sass/_responsive.scss */
  1994. .order-create #main #content .order-form #products .table .input-group .form-control,
  1995. .order-update #main #content .order-form #products .table .input-group .form-control {
  1996. width: 20px;
  1997. padding: 3px;
  1998. }
  1999. /* line 145, ../sass/_responsive.scss */
  2000. .order-create #main #content .order-form #bar-fixed #checkbox-credit,
  2001. .order-update #main #content .order-form #bar-fixed #checkbox-credit {
  2002. width: 100%;
  2003. margin: 0px;
  2004. padding: 5px 0px;
  2005. }
  2006. /* line 151, ../sass/_responsive.scss */
  2007. .order-create #main #content .order-form #bar-fixed #checkbox-credit .the-credit,
  2008. .order-update #main #content .order-form #bar-fixed #checkbox-credit .the-credit {
  2009. word-break: break-all;
  2010. }
  2011. /* line 156, ../sass/_responsive.scss */
  2012. .order-create #main #content .order-form #bar-fixed #block-confirm-order button,
  2013. .order-update #main #content .order-form #bar-fixed #block-confirm-order button {
  2014. width: 100%;
  2015. }
  2016. /* line 164, ../sass/_responsive.scss */
  2017. .order-order #app-order-order h3 {
  2018. line-height: 28px;
  2019. }
  2020. /* line 170, ../sass/_responsive.scss */
  2021. .order-order #app-order-order #distributions-list .card .btn-primary {
  2022. display: block;
  2023. float: none !important;
  2024. margin-bottom: 10px;
  2025. }
  2026. /* line 179, ../sass/_responsive.scss */
  2027. .order-order #app-order-order #steps ul {
  2028. height: auto !important;
  2029. }
  2030. /* line 181, ../sass/_responsive.scss */
  2031. .order-order #app-order-order #steps ul li {
  2032. padding-left: 0px !important;
  2033. padding-right: 0px !important;
  2034. }
  2035. /* line 185, ../sass/_responsive.scss */
  2036. .order-order #app-order-order #steps ul li .info-step {
  2037. display: none;
  2038. }
  2039. /* line 189, ../sass/_responsive.scss */
  2040. .order-order #app-order-order #steps ul li .btn::after,
  2041. .order-order #app-order-order #steps ul li .btn::before {
  2042. display: none;
  2043. }
  2044. /* line 198, ../sass/_responsive.scss */
  2045. .order-order #app-order-order table#points-sale td.name .locality {
  2046. display: block !important;
  2047. color: gray;
  2048. margin-bottom: 5px;
  2049. }
  2050. /* line 204, ../sass/_responsive.scss */
  2051. .order-order #app-order-order table#points-sale .column-locality {
  2052. display: none;
  2053. }
  2054. /* line 209, ../sass/_responsive.scss */
  2055. .order-order #app-order-order table#products {
  2056. width: 100%;
  2057. }
  2058. /* line 211, ../sass/_responsive.scss */
  2059. .order-order #app-order-order table#products tr {
  2060. width: 100%;
  2061. border-color: #b7ab9b !important;
  2062. }
  2063. /* line 216, ../sass/_responsive.scss */
  2064. .order-order #app-order-order table#products .badge-count-selected-products span {
  2065. display: none;
  2066. }
  2067. /* line 220, ../sass/_responsive.scss */
  2068. .order-order #app-order-order table#products td.photo,
  2069. .order-order #app-order-order table#products th.photo {
  2070. display: none;
  2071. }
  2072. /* line 225, ../sass/_responsive.scss */
  2073. .order-order #app-order-order table#products td.name,
  2074. .order-order #app-order-order table#products td.summary,
  2075. .order-order #app-order-order table#products td.price-unit,
  2076. .order-order #app-order-order table#products tr.total td.price-total {
  2077. display: block;
  2078. width: 100% !important;
  2079. }
  2080. /* line 234, ../sass/_responsive.scss */
  2081. .order-order #app-order-order table#products td.td-quantity,
  2082. .order-order #app-order-order table#products tr.product-open td.price-total {
  2083. display: inline-block;
  2084. width: 49% !important;
  2085. border: 0px none !important;
  2086. }
  2087. /* line 241, ../sass/_responsive.scss */
  2088. .order-order #app-order-order table#products tr.product-open td.price-total {
  2089. padding-top: 22px;
  2090. font-size: 1.2rem;
  2091. font-family: "worksans_bold";
  2092. }
  2093. /* line 248, ../sass/_responsive.scss */
  2094. .order-order #app-order-order table#products td.name,
  2095. .order-order #app-order-order table#products td.price-unit,
  2096. .order-order #app-order-order table#products td.td-quantity {
  2097. border-color: #e0e0e0 !important;
  2098. }
  2099. /* line 255, ../sass/_responsive.scss */
  2100. .order-order #app-order-order table#products td.name .recipe {
  2101. display: none;
  2102. }
  2103. /* line 260, ../sass/_responsive.scss */
  2104. .order-order #app-order-order table#products td.price-unit {
  2105. text-align: left !important;
  2106. }
  2107. /* line 264, ../sass/_responsive.scss */
  2108. .order-order #app-order-order table#products tr.total td.price-total {
  2109. padding-top: 0.5rem !important;
  2110. }
  2111. /* line 271, ../sass/_responsive.scss */
  2112. .order-order #app-order-order #order-success .alert .glyphicon-big {
  2113. font-size: 90px;
  2114. color: white;
  2115. padding: 30px;
  2116. display: block;
  2117. width: 100%;
  2118. text-align: center;
  2119. margin-bottom: 20px;
  2120. }
  2121. /* line 280, ../sass/_responsive.scss */
  2122. .order-order #app-order-order #order-success .alert div.content {
  2123. margin-left: 0px;
  2124. text-align: center;
  2125. }
  2126. /* line 291, ../sass/_responsive.scss */
  2127. #footer .content {
  2128. text-align: center;
  2129. }
  2130. }
  2131. @media screen and (max-width: 991px) {
  2132. /* line 303, ../sass/_responsive.scss */
  2133. #main {
  2134. padding-top: 0px;
  2135. }
  2136. }