@charset "UTF-8";
/*
  Project: Ticket Com
*/
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 */
@import url("https://fonts.googleapis.com/css?family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reset perso */
a, del, ins {
  text-decoration: none;
}

a {
  color: inherit;
}

label, button {
  cursor: pointer;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

input, button {
  outline: 0;
}

/* Masonry */
.masonry {
  margin: -.5rem;
}

.masonry .group {
  display: flex;
}

.masonry .group--vertical {
  flex-direction: column;
}

.masonry .group--horizontal {
  flex-direction: row;
}

.masonry .grid-item {
  float: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 15rem;
  height: 15rem;
  margin: .5rem;
  transition: .2s;
  color: #ffffff;
  text-align: center;
}

.masonry .grid-item img {
  margin: 1rem;
  height: 80%;
  max-height: 8rem;
  max-width: 90%;
}

.masonry .grid-item span {
  text-transform: uppercase;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.1rem;
}

.masonry .grid-item:hover {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}

.masonry .grid-item--width-small {
  width: calc(7.5rem - .5rem);
}

.masonry .grid-item--width-large {
  width: calc(22.5rem + .5rem);
  flex-direction: row;
}

.masonry .grid-item--width-extra-large {
  width: calc(30rem + 1rem);
  flex-direction: row;
}

.masonry .grid-item--height-small {
  height: calc(7.5rem - .5rem);
  flex-direction: row;
}

.masonry .grid-item--height-small img {
  max-width: calc(50% - 1rem);
}

.masonry .grid-item--height-large {
  height: calc(22.5rem + .5rem);
}

.masonry .grid-item--height-large img {
  height: unset;
  width: 90%;
}

.masonry .grid-item--height-extra-large {
  height: calc(30rem + 1rem);
}

.masonry .grid-item.row-reverse {
  flex-direction: row-reverse;
}

/* 1-2-3 (Home) */
.top-block {
  position: relative;
  background: #5dcdbf;
  overflow: hidden;
  min-height: 40rem;
}

.top-block .panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  z-index: 20;
}

@media screen and (max-width: 960px) {
  .top-block .panel {
    display: none;
  }
}

.top-block .panel .tab {
  display: none;
  position: relative;
  width: 97.5%;
  max-width: 100rem;
  margin: 0 auto;
}

.top-block .panel .tab.current-tab {
  display: block;
}

.top-block .panel .tab .top {
  position: relative;
  padding: .5rem 1.5rem 2rem;
  width: calc(33% - 2rem);
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: -1.5rem;
  z-index: 10;
}

.top-block .panel .tab .top.tab-first {
  margin-left: 0;
  margin-right: auto;
}

.top-block .panel .tab .top.tab-mid {
  margin-left: auto;
  margin-right: auto;
}

.top-block .panel .tab .top.tab-last {
  margin-right: 0;
  margin-left: auto;
}

.top-block .panel .tab .top img {
  width: 5rem;
  background: #fff;
  position: absolute;
  bottom: 1.5rem;
  right: .75rem;
  border-radius: 999999px;
}

.top-block .panel .tab .content {
  position: relative;
  z-index: 20;
  background: #ffffff;
  padding: .25rem 2rem;
  font-size: .9rem;
  display: flex;
  flex-direction: column;
}

.top-block .panel .tab .top,
.top-block .panel .tab .content {
  border-radius: .75rem;
  border-width: .375rem;
  border-style: solid;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.top-block .panel .tab strong {
  display: block;
  text-align: right;
  width: 50%;
  min-width: 50%;
  font-weight: 600;
  margin-right: 1rem;
}

.top-block .panel .tab .mention {
  text-align: right;
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  font-size: .6rem;
}

.top-block .panel .tab .line {
  display: flex;
  margin: .5rem auto;
  text-align: left;
  width: 100%;
}

.top-block .panel .tab .line p.right,
.top-block .panel .tab .line p.left {
  width: 50%;
  padding: .5rem;
}

.top-block .panel .tab .line p.left {
  text-align: right;
  display: flex;
  flex-direction: column;
  background: #ececed;
}

.top-block .panel .tab .line p.left strong {
  margin-right: 0;
  width: 100%;
}

.top-block .panel .tab .line p.left em {
  font-size: .8rem;
}

.top-block .panel .tab .line p.right {
  border: 1px solid #ececed;
}

.top-block .panel .tab .line p.right strong {
  text-align: left;
}

.top-block .panel .tab .group {
  display: flex;
}

.top-block .panel .tab .group .left,
.top-block .panel .tab .group .right {
  width: 50%;
}

.top-block h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: .5rem;
  font-size: 3.5rem;
  font-family: "Pacifico", cursive;
  color: #e2001a;
  background: #ffffff;
  z-index: 1;
  max-width: 40rem;
  width: 50%;
  text-align: center;
}

.top-block .bg-img {
  width: 50rem;
  margin: 0 auto;
  left: -23%;
  right: 0;
  bottom: -5rem;
}

.top-block .spacer {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: .7vw;
  transform: scale(2);
}

@media screen and (max-width: 960px) {
  .top-block {
    min-height: 25rem;
    padding-bottom: 4rem;
  }
  .top-block .spacer {
    bottom: 4rem;
    left: 50%;
    width: 120rem;
    max-width: unset;
    transform: translateX(-50%);
  }
  .top-block .bg-img {
    width: auto;
    max-height: calc(100% - 5rem);
    left: 0;
    right: 0;
    bottom: 4rem;
  }
  .top-block h1 {
    width: 100vw;
    text-align: center;
    top: unset;
    bottom: -33.2rem;
    padding: .25rem 0 2rem;
    left: 0;
    bottom: -2rem;
    max-width: unset;
    font-size: 1.75rem;
  }
}

.infos {
  position: relative;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.infos .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 2rem 1rem;
  width: 24rem;
}

.infos .info img {
  width: 5rem;
  height: 5rem;
}

.infos .info strong {
  margin: 1rem 0 .75rem;
  font-size: 1.8rem;
  font-family: "Pacifico", cursive;
}

.infos .info p {
  font-size: .9rem;
  line-height: 1rem;
}

/* Espace franchisé */
.franchise {
  position: relative;
  padding: 0 0.25%;
}

.franchise .franchise-header {
  display: flex;
  align-items: center;
}

.franchise .franchise-header .logo {
  height: 6rem;
  margin-right: 1rem;
}

.franchise .franchise-header .newsletter {
  display: flex;
  align-items: center;
  border: 1px solid #9b9c9f;
  border-radius: .5rem;
  padding: .5rem;
  width: 11rem;
  color: #9b9c9f;
  line-height: 1.1rem;
}

.franchise .franchise-header .newsletter img {
  min-width: 3rem;
  width: 3rem;
  margin-right: .5rem;
}

.franchise .franchise-header .newsletter p {
  width: calc(100% - 3rem);
  display: flex;
  flex-direction: column;
  font-size: .9rem;
}

.franchise .franchise-header .newsletter .title {
  color: #e2001a;
  font-size: 1.375rem;
  line-height: 1.5rem;
}

.franchise .franchise-header .newsletter .date {
  font-size: .8rem;
  display: flex;
  align-items: center;
}

.franchise .franchise-header .options {
  position: absolute;
  top: .25rem;
  right: .25rem;
  font-size: 1.5rem;
  color: #9b9c9f;
  font-weight: 600;
}

.franchise .franchise-header .options .option:last-child {
  border-left: 1px solid #9b9c9f;
  padding-left: .375rem;
}

.franchise main {
  position: relative;
  background: #ffffff;
  margin: 1rem 0;
  border: .5rem solid #00338e;
  border-radius: 1rem;
}

.franchise main .analyse-header {
  display: flex;
  flex-direction: column;
}

.franchise main .analyse-header > strong {
  display: block;
  width: 100%;
  background: #0067b7;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.franchise main .analyse-header .desc-container {
  display: flex;
  justify-content: space-between;
  margin: -1rem;
}

.franchise main .analyse-header .desc-container .block {
  width: calc(33% - 2rem);
  max-width: max-content;
  margin: 1rem;
}

.franchise main .analyse-header .desc-container .action {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20rem;
}

.franchise main .analyse-header .desc-container strong {
  font-weight: 600;
}

.franchise main .analyse-header .desc-container img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
}

.franchise main .analyse-header .desc-container .date {
  display: flex;
  text-align: center;
}

.franchise main .analyse-header .desc-container .date .title {
  margin-bottom: 1rem;
}

.franchise main .analyse-content {
  display: flex;
  justify-content: space-between;
  margin: 1rem -1rem;
}

.franchise main .analyse-item {
  /*width: calc(33% - 2rem);*/
  margin: 1rem;
  border: 1px solid #0067b7;
}

.franchise main .analyse-item-header {
  text-align: center;
  border-bottom: 1px solid #0067b7;
  padding: 1rem;
}

.franchise main .analyse-item-header strong {
  font-weight: 600;
  font-size: 1.2rem;
}

.franchise main .analyse-item-content li {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
  font-size: .9rem;
}

.franchise main .analyse-item-content li .left {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
}

.franchise main .analyse-item-content li .left em {
  font-size: .8rem;
}

.franchise main .analyse-item-content li .left strong {
  font-weight: 600;
}

.franchise main .analyse-item-content li .right {
  min-width: 4rem;
  width: 4rem;
  text-align: left;
}

.franchise main .shop-edit,
.franchise main .annonceurs-edit {
  border: 1px solid #0067b7;
  background: #c6effc;
  margin-top: -1rem;
  padding: 0 1rem 1rem;
}

.franchise main .shop-edit-header,
.franchise main .annonceurs-edit-header {
  color: #0067b7;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.franchise main .shop-edit-header .title,
.franchise main .annonceurs-edit-header .title {
  font-size: 1.8rem;
}

.franchise main .shop-edit-header .steps,
.franchise main .annonceurs-edit-header .steps {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
}

.franchise main .shop-edit-header .steps .step,
.franchise main .annonceurs-edit-header .steps .step {
  position: relative;
  font-size: 2rem;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  padding-bottom: .5rem;
  text-align: center;
  border-radius: 9999999999px;
  background: #ffffff;
  z-index: 20;
  margin-right: 5rem;
}

.franchise main .shop-edit-header .steps .step img,
.franchise main .annonceurs-edit-header .steps .step img {
  width: 80%;
  margin-top: .25rem;
}

.franchise main .shop-edit-header .steps .step.active, .franchise main .shop-edit-header .steps .step.done,
.franchise main .annonceurs-edit-header .steps .step.active,
.franchise main .annonceurs-edit-header .steps .step.done {
  background: #00338e;
  color: #ffffff;
}

.franchise main .shop-edit-header .steps .step.next,
.franchise main .annonceurs-edit-header .steps .step.next {
  background: #c6effc;
  color: #00338e;
}

.franchise main .shop-edit-header .steps .step:last-child,
.franchise main .annonceurs-edit-header .steps .step:last-child {
  margin-right: 0;
}

.franchise main .shop-edit-header .steps .step:not(:last-child)::after,
.franchise main .annonceurs-edit-header .steps .step:not(:last-child)::after {
  content: '';
  width: 5rem;
  position: absolute;
  height: 3px;
  left: 100%;
  background: #0067b7;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.franchise main .shop-edit-container,
.franchise main .annonceurs-edit-container {
  margin: 0 auto;
  width: max-content;
}

.franchise main .shop-edit-content,
.franchise main .annonceurs-edit-content {
  background: #ffffff;
  padding: .5rem 1rem;
}

.franchise main .shop-edit-content iframe,
.franchise main .annonceurs-edit-content iframe {
  width: 100%;
  height: 20rem;
  margin-top: 2rem;
}

.franchise main .shop-edit-content .info,
.franchise main .annonceurs-edit-content .info {
  color: #e2001a;
  font-size: .8rem;
}

.franchise main .shop-edit-content .info-bottom,
.franchise main .annonceurs-edit-content .info-bottom {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.franchise main .shop-edit-content .raw,
.franchise main .annonceurs-edit-content .raw {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100rem;
  margin: .5rem auto;
}

.franchise main .shop-edit-content .raw .group,
.franchise main .annonceurs-edit-content .raw .group {
  display: flex;
  align-items: center;
}

.franchise main .shop-edit-content .raw .group ~ .group,
.franchise main .annonceurs-edit-content .raw .group ~ .group {
  margin-left: 6rem;
}

.franchise main .shop-edit-content .raw strong,
.franchise main .annonceurs-edit-content .raw strong {
  text-align: right;
  font-weight: 600;
  margin-right: 1rem;
  min-width: 12rem;
}

.franchise main .shop-edit-content .raw .right,
.franchise main .annonceurs-edit-content .raw .right {
  position: relative;
  display: flex;
}

.franchise main .shop-edit-content .raw .right.multiline .group,
.franchise main .annonceurs-edit-content .raw .right.multiline .group {
  flex-direction: column;
}

.franchise main .shop-edit-content .raw .right strong,
.franchise main .annonceurs-edit-content .raw .right strong {
  min-width: unset;
}

.franchise main .shop-edit-content .raw .right em,
.franchise main .annonceurs-edit-content .raw .right em {
  font-size: .8rem;
  color: #9b9c9f;
}

.franchise main .shop-edit-content .raw input,
.franchise main .shop-edit-content .raw select,
.franchise main .annonceurs-edit-content .raw input,
.franchise main .annonceurs-edit-content .raw select {
  margin-right: 1rem;
}

.franchise main .shop-edit-content.step2 .raw > strong, .franchise main .shop-edit-content.step3 .raw > strong,
.franchise main .annonceurs-edit-content.step2 .raw > strong,
.franchise main .annonceurs-edit-content.step3 .raw > strong {
  min-width: 16rem;
}

.franchise main .shop-edit-content.step2 input:not([type=checkbox]),
.franchise main .shop-edit-content.step2 select:not([type=checkbox]), .franchise main .shop-edit-content.step3 input:not([type=checkbox]),
.franchise main .shop-edit-content.step3 select:not([type=checkbox]),
.franchise main .annonceurs-edit-content.step2 input:not([type=checkbox]),
.franchise main .annonceurs-edit-content.step2 select:not([type=checkbox]),
.franchise main .annonceurs-edit-content.step3 input:not([type=checkbox]),
.franchise main .annonceurs-edit-content.step3 select:not([type=checkbox]) {
  width: 10rem;
}

.franchise main .shop-edit-content.step2 input[type=checkbox],
.franchise main .shop-edit-content.step2 select[type=checkbox], .franchise main .shop-edit-content.step3 input[type=checkbox],
.franchise main .shop-edit-content.step3 select[type=checkbox],
.franchise main .annonceurs-edit-content.step2 input[type=checkbox],
.franchise main .annonceurs-edit-content.step2 select[type=checkbox],
.franchise main .annonceurs-edit-content.step3 input[type=checkbox],
.franchise main .annonceurs-edit-content.step3 select[type=checkbox] {
  margin-left: 3rem;
}

.franchise main .shop-edit.campagnes-form .raw > strong,
.franchise main .annonceurs-edit.campagnes-form .raw > strong {
  min-width: 20rem;
  width: 20rem;
}

.franchise main .shop-edit.campagnes-form .raw > strong small,
.franchise main .annonceurs-edit.campagnes-form .raw > strong small {
  font-size: .6rem;
}

.franchise main .shop-edit.campagnes-form .raw .group ~ .group,
.franchise main .annonceurs-edit.campagnes-form .raw .group ~ .group {
  margin-left: 0;
}

.franchise main .shop-edit.campagnes-form .raw .group ~ .group strong,
.franchise main .annonceurs-edit.campagnes-form .raw .group ~ .group strong {
  width: max-content;
}

.franchise main .content {
  width: 100%;
  margin: 0 auto;
  padding: 0rem;
}

.franchise main .content .actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.franchise main .content .actions .left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.franchise main .content .actions .left div {
  color: #0067b7;
  font-weight: 600;
  margin-top: .5rem;
}

.franchise main .content .actions .left em {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  color: #9b9c9f;
  font-size: .9rem;
}

.franchise main .content .actions .left em img {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.franchise main .content .actions .left em span {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  background: #d0f7f1;
}

.franchise main .content .actions .search {
  width: 100%;
  max-width: 26rem;
  height: 1.5rem;
}

.franchise main .content .actions .right {
  display: flex;
}

.franchise main .content .actions .right p {
  display: flex;
  flex-direction: column;
  max-width: 14rem;
  justify-content: center;
}

.franchise main .content .actions .right p a {
  display: flex;
  align-items: center;
  margin: .25rem 0;
}

.franchise main .content .actions .right p img {
  height: 1rem;
  margin-right: .25rem;
}

.franchise main .content .actions .right p img.icon--bigger {
  height: 2rem;
  margin-right: .5rem;
}

.franchise main .content .actions .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  margin-right: 0;
}

.franchise main .content.masonry-container {
  max-width: 70rem;
  margin: 0 auto;
}

.franchise main .content.masonry-container .shop-grid {
  margin: 0 auto 1rem;
}

.franchise .navigation .outset {
  position: absolute;
  top: -3rem;
  right: -.5rem;
  padding: 1rem 1.5rem 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  background: #00338e;
  margin-bottom: -1.5rem;
  border-radius: 1rem;
  z-index: -1;
  width: 25rem;
}

.franchise .navigation .outset img {
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 2.5rem;
  right: .75rem;
}

.franchise .navigation .primary,
.franchise .navigation .secondary {
  width: 100%;
  display: flex;
}

.franchise .navigation .primary li,
.franchise .navigation .secondary li {
  width: 20%;
  text-align: center;
}

.franchise .navigation .primary {
  border-radius: .5rem .5rem 0 0;
  color: #ffffff;
  background: #0ea5e4;
  font-weight: 600;
}

.franchise .navigation .primary li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2rem;
  cursor: pointer;
}

.franchise .navigation .primary .active {
  background: #00338e;
  border-radius: .25rem .25rem 0 0;
}

.franchise .navigation .secondary {
  color: #00338e;
  background: #c6effc;
  font-weight: 600;
}

.franchise .navigation .secondary li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  cursor: pointer;
}

.franchise .navigation .secondary .active {
  background-color: #0067b7;
  color: #ffffff;
}

.franchise .shop-header {
  width: 100%;
  background: #00338e;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.franchise .shop--archive .shop-header {
  background: #9d00e0;
}

.franchise .shop--archive tr th, .franchise .shop--archive tr:nth-child(even) {
  background-color: #f2ebf4 !important;
}

.franchise .shop-content table {
  width: 100%;
  margin-top: -1rem;
}

.franchise .shop-content thead {
  text-align: left;
  font-weight: 600;
  color: #0067b7;
}

.franchise .shop-content th {
  padding: 1rem .25rem;
  background: #e2f7fe;
  font-weight: 600;
}

.franchise .shop-content tr {
  border-bottom: 1px solid #0067b7;
}

.franchise .shop-content tr:nth-child(even) {
  background-color: #e8fbf8;
}

.franchise .shop-content thead tr {
  border: none;
}

.franchise .shop-content td {
  padding: 0 1rem 0 .25rem;
  font-size: .9rem;
  vertical-align: middle;
}

.franchise .shop-content td:nth-child(1), .franchise .shop-content th:nth-child(1) {
  max-width: 25%;
}

.franchise .shop-content td:nth-child(2), .franchise .shop-content th:nth-child(2) {
  max-width: 25%;
}

.franchise .shop-content td:nth-child(3), .franchise .shop-content th:nth-child(3) {
  max-width: 25%;
}

.franchise .shop-content td:nth-child(4), .franchise .shop-content th:nth-child(4) {
  max-width: 25%;
}

.franchise .shop-content td:nth-child(5), .franchise .shop-content th:nth-child(5) {
  max-width: 25%;
}

.franchise .shop-content strong {
  font-weight: 600;
  color: #0067b7;
  margin-right: .25rem;
  min-width: max-content;
}

.franchise .shop-content span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: .5rem 0;
}

.franchise .shop-content .picto {
  width: 2rem;
  height: 2rem;
  object-position: center;
  object-fit: contain;
  margin-right: .5rem;
}

.franchise .shop-grouped table {
  margin-top: -1rem;
}

.franchise .shop-grouped table th {
  padding: 1rem .5rem;
}

.franchise .shop-grouped table td {
  padding: 1rem 1rem 1rem 0;
}

.franchise .shop-grouped table td li {
  padding: .375rem 0;
}

.franchise .shop-new-group .shop-edit-content .raw strong {
  min-width: 15rem;
}

.franchise .shop-new-group .shop-edit-content .raw .right {
  width: 100%;
}

.franchise .shop-new-group .shop-edit-content .raw .right .line {
  display: flex;
  margin: .25rem 0;
}

.franchise .shop-new-group .shop-edit-content .raw .right .group {
  width: 100%;
  align-items: flex-start;
}

.franchise .shop-new-group .shop-edit-content .raw .right .group ~ .group {
  margin-left: 0;
}

.franchise .shop-new-group .bordered {
  margin-top: .5rem;
  padding: .25rem;
  border: 1px solid #9b9c9f;
  color: #0ea5e4;
  border-radius: .5rem;
  background-color: #ffffff;
}

.franchise .shop-new-group input:not([type=checkbox]),
.franchise .shop-new-group select {
  width: 100%;
}

.franchise .annonceurs-header {
  width: 100%;
  background: #0067b7;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.franchise .annonceurs-table {
  width: 100%;
}

.franchise .annonceurs-table tr {
  border-bottom: 1px solid #0067b7;
}

.franchise .annonceurs-table th, .franchise .annonceurs-table td {
  padding-bottom: 1rem;
}

.franchise .annonceurs-table img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  object-position: center;
}

.franchise .annonceurs-table strong {
  font-weight: 600;
  color: #0067b7;
}

.franchise .annonceurs-table tbody td {
  padding-top: 1rem;
  vertical-align: middle;
  line-height: 2rem;
}

.franchise .annonceurs-table tbody td span {
  display: block;
}

.franchise .annonceurs-table thead {
  color: #0067b7;
}

.franchise .date img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
}

.franchise .campagnes {
  position: relative;
  background: #d9f9f3;
  margin-top: -1rem;
  padding: 1rem;
}

.franchise .campagnes::before {
  content: '';
  position: absolute;
  background: #ffffff;
  width: calc(100% - 2rem);
  height: calc(100% - 1rem);
  top: 0;
  left: 1rem;
  z-index: 0;
}

.franchise .campagnes > * {
  position: relative;
  z-index: 1;
}

.franchise .campagnes-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0067b7;
}

.franchise .campagnes-header strong {
  text-align: center;
  font-weight: 600;
  width: calc(100% - 18rem);
}

.franchise .campagnes-header strong:first-child {
  width: 18rem;
}

.franchise .campagnes .annonceurs-list-item {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0067b7;
}

.franchise .campagnes .annonceurs-list-item img {
  width: 2rem;
  height: 2rem;
  margin-right: .5rem;
}

.franchise .campagnes .annonceurs-list-item a {
  display: flex;
  align-items: center;
}

.franchise .campagnes .annonceurs-list-item strong {
  color: #0067b7;
  font-weight: 600;
}

.franchise .campagnes .annonceurs-list-item .annonceur {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 18rem;
  padding-right: 1rem;
}

.franchise .campagnes .annonceurs-list-item .annonceur span {
  margin-bottom: .5rem;
}

.franchise .campagnes .annonceurs-list-item .campagnes-list {
  width: calc(100% - 18rem);
}

.franchise .campagnes .annonceurs-list-item .campagnes-list-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 4rem;
}

.franchise .campagnes .annonceurs-list-item .campagnes-list-item:last-child {
  margin-bottom: 0;
}

.franchise .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info, .franchise .campagnes .annonceurs-list-item .campagnes-list-item .campagne-actions {
  display: flex;
  flex-direction: column;
}

.franchise .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info {
  width: calc(100% / 2 - 10rem);
  justify-content: space-between;
}

.franchise .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info span {
  margin-bottom: .5rem;
}

.franchise .campagnes .annonceurs-list-item .campagnes-list-item .campagne-actions {
  width: 10rem;
  justify-content: center;
}

.franchise .campagnes .annonceurs-list-item .campagnes-list-add {
  margin-top: 2rem;
}

.franchise .dates a {
  color: #0ea5e4;
  font-weight: 600;
}

.franchise .dates a:not(:last-child)::after {
  content: '/';
  color: #0ea5e4;
  margin-left: .375rem;
  pointer-events: none;
}

.franchise .dates a.active {
  color: #0067b7;
}

.franchise .shop-header.special-header {
  text-transform: initial;
  font-size: 1.5rem;
}

.franchise .shop-header.special-header ~ .search {
  margin: .5rem 0 2rem;
}

.franchise .shop-header.special-header .tabs {
  display: flex;
  font-size: 1rem;
  margin: 1rem -.25rem -1rem;
}

.franchise .shop-header.special-header .tabs li {
  width: 25%;
  padding: 1rem .5rem .5rem;
  text-transform: initial;
  text-align: center;
  color: #000000;
  background: #0ea5e4;
  border-radius: 1rem 1rem 0 0;
  margin: 0 .25rem;
}

.franchise .shop-header.special-header .tabs li span {
  font-weight: 600;
}

.franchise .shop-header.special-header .tabs li.active {
  background-color: #ffffff;
}

.franchise .bat-visu {
  padding-bottom: 0;
}

.franchise .bat-visu strong {
  padding: .75rem 0 .25rem;
}

.franchise .bat-visu strong:first-child {
  width: 10rem;
  min-width: 10rem;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande {
  background: #eaeaea;
  padding: 0;
  border: none;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande:first-child {
  margin-top: 0;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande p:not(.historique) {
  font-size: 1.2rem;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .no-img {
  height: 6rem;
  width: 14rem;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .no-img img {
  width: 100%;
  height: 100%;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .historique {
  background: #e0e0e0;
  align-self: auto;
  justify-content: center;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande a {
  display: inline;
  font-weight: 600;
  text-decoration: underline;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item strong {
  font-weight: 600;
  color: inherit;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item p {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: calc(100% - 10rem);
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item p span {
  margin: .5rem 0;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item .bat-preview {
  justify-content: center;
  align-items: center;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item .large {
  width: 100%;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item .minia {
  width: 60%;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item .large img, .franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item .minia img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  object-position: center;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item .links {
  color: #0ea5e4;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: max-content;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item .links a {
  width: calc(33% - 1rem);
  margin: 2rem .5rem;
  text-align: center;
  justify-content: center;
}

.franchise .bat-visu ~ .annonceurs-list .annonceurs-list-item .historique {
  min-width: 10rem;
  width: 10rem;
  margin-right: 1rem;
}

.franchise .back img {
  width: 1.5rem;
  margin-right: .5rem;
}

.franchise .back a {
  display: flex;
  align-items: center;
  color: #9b9c9f;
}

.franchise .maquette-info {
  margin-top: -1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.franchise .maquette-info span {
  margin-bottom: 1rem;
}

.franchise .maquette-info span:last-child {
  margin: 0;
}

.franchise .maquette-info strong {
  font-weight: 600;
}

.franchise .maquette-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.franchise .maquette-form-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: .5rem 0;
}

.franchise .maquette-form-content-left {
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  width: 66%;
  padding-right: 4rem;
}

.franchise .maquette-form-content-left > strong {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.franchise .maquette-form-content-left > em {
  font-size: .8rem;
  color: #9b9c9f;
  text-align: right;
}

.franchise .maquette-form-content-left-content li {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  font-weight: bold;
  min-height: 3rem;
}

.franchise .maquette-form-content-left-content li.spacer {
  margin: 1rem;
}

.franchise .maquette-form-content-left-content li strong {
  width: 14rem;
  text-align: right;
  margin-right: 1rem;
}

.franchise .maquette-form-content-left-content li .group {
  width: calc(100% - 14rem);
}

.franchise .maquette-form-content-left-content input[type=text] {
  width: 5rem;
}

.franchise .maquette-form-content-left-content label {
  margin-right: 1rem;
}

.franchise .maquette-form-content-left-content label.f05, .franchise .maquette-form-content-left-content label.f10, .franchise .maquette-form-content-left-content label.f15, .franchise .maquette-form-content-left-content label.f20 {
  position: relative;
  display: inline-block;
  padding-top: 5rem;
  width: 4rem;
}

.franchise .maquette-form-content-left-content label.f05::after, .franchise .maquette-form-content-left-content label.f10::after, .franchise .maquette-form-content-left-content label.f15::after, .franchise .maquette-form-content-left-content label.f20::after {
  content: '';
  position: absolute;
  background: #d6d6d6;
  width: 4rem;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  left: -1rem;
}

.franchise .maquette-form-content-left-content label.f05::after {
  height: 1rem;
}

.franchise .maquette-form-content-left-content label.f10:after {
  height: 2rem;
}

.franchise .maquette-form-content-left-content label.f15:after {
  height: 3rem;
}

.franchise .maquette-form-content-left-content label.f20:after {
  height: 4rem;
}

.franchise .maquette-form-content-right {
  background: #6de8d4;
  color: #ffffff;
  text-align: center;
  border-radius: 1rem;
  padding: 1rem 0;
  width: calc(33% - 2rem);
  align-self: baseline;
}

.franchise .maquette-form-content-right header {
  font-size: 1.25rem;
  font-weight: 600;
}

.franchise .maquette-form-content-right-content {
  color: #6de8d4;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 1rem .5rem;
}

.franchise .maquette-form-content-right-content textarea {
  color: #6de8d4;
  font-weight: 600;
  margin-top: 1rem;
  border: none;
  font-family: "Raleway", sans-serif;
  resize: none;
}

.franchise .maquette-form-submit {
  border: 0;
  background: #0067b7;
  color: #ffffff;
  font-size: 1.1rem;
  padding: .5rem;
  border-radius: .75rem;
  margin: 1rem 0 .5rem;
}

.franchise .maquette-preview {
  position: relative;
  border: 1px solid #9b9c9f;
  padding: .5rem;
  max-width: 100rem;
  margin: 2rem auto 8rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.franchise .maquette-preview .close {
  position: absolute;
  width: 2rem;
  height: 2rem;
  font-size: 1.8rem;
  padding: .2rem;
  text-align: center;
  top: -1rem;
  right: -1rem;
  background: #ffffff;
  color: #4f4f52;
  border: 1px solid #4f4f52;
  cursor: pointer;
}

.franchise .maquette-preview-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}

.franchise .maquette-preview-top .logo {
  width: 10rem;
}

.franchise .maquette-preview-top p {
  text-align: right;
  display: flex;
  flex-direction: column;
  color: #e2001a;
}

.franchise .maquette-preview-top p strong {
  color: #000000;
}

.franchise .maquette-preview-top p .fax {
  font-size: 2.25rem;
}

.franchise .maquette-preview-top p .tel {
  font-size: 1.8rem;
}

.franchise .maquette-preview-middle {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.franchise .maquette-preview-middle .left {
  display: flex;
  flex-direction: column;
  width: calc(100% - 27rem);
}

.franchise .maquette-preview-middle .left p {
  display: flex;
  flex-direction: column;
}

.franchise .maquette-preview-middle .left p span {
  margin-bottom: 1rem;
}

.franchise .maquette-preview-middle-img {
  margin-top: 4rem;
  width: 80%;
  height: 10rem;
  object-fit: cover;
  object-position: center;
  border: 1px dashed #9b9c9f;
  align-self: center;
}

.franchise .maquette-preview-middle .right {
  width: 27rem;
  padding: 1.25rem;
  border: 1px solid #9b9c9f;
  border-radius: 1.5rem;
  font-family: serif;
  color: #4f4f52;
}

.franchise .maquette-preview-middle .right p {
  margin-bottom: 1rem;
  text-align: justify;
  text-align-last: left;
  line-height: 1.375rem;
}

.franchise .maquette-preview-middle .right p:last-child {
  margin-bottom: 0;
}

.franchise .maquette-preview-middle .right .bat-text {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}

.franchise .maquette-preview-middle .right .bat-text strong {
  font-size: 1.5rem;
}

.franchise .maquette-preview-middle .right .bat-text em {
  margin-right: 2rem;
}

.franchise .maquette-preview-middle .right .cachet {
  margin-bottom: 3.5rem;
}

.franchise .maquette-preview-bottom {
  margin: 5rem 0 10rem;
  text-align: center;
  width: 100%;
}

.franchise .maquette-preview-bottom-img {
  width: 80%;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  border: 2px dashed #9b9c9f;
}

.franchise .maquette-olapromo strong {
  font-weight: 600;
  color: #9d00e0;
}

.franchise .maquette-olapromo .maquette-preview-middle {
  margin: 4rem 0 6rem;
  display: flex;
  flex-direction: column;
  width: 12rem;
}

.franchise .maquette-olapromo .maquette-preview-middle img {
  height: 8rem;
  width: 100%;
  border: 1px dashed #9b9c9f;
  object-position: center;
  object-fit: cover;
}

.franchise .maquette-olapromo .maquette-preview-bottom {
  text-align: left;
}

.franchise .maquette-olapromo .maquette-preview-bottom .top {
  position: relative;
  margin-bottom: .5rem;
}

.franchise .maquette-olapromo .maquette-preview-bottom .top-cachet {
  text-align: right;
  width: 12rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
}

.franchise .maquette-olapromo .maquette-preview-bottom .top-cachet strong {
  color: #000000;
}

.franchise .maquette-olapromo .maquette-preview-bottom .top-cachet span {
  font-size: .6rem;
}

.franchise .maquette-olapromo .maquette-preview-bottom .bottom {
  display: flex;
  width: calc(100% - 12rem);
  padding-right: .5rem;
}

.franchise .maquette-olapromo .maquette-preview-bottom .bottom img {
  width: 18rem;
  min-width: 18rem;
  height: 12rem;
  object-fit: cover;
  object-position: center;
  border: 1px dashed #9b9c9f;
  margin-right: .75rem;
}

.franchise .maquette-olapromo .maquette-preview-bottom .bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: .9rem;
}

.franchise .maquette-olapromo .maquette-preview-bottom .bottom-content p {
  display: flex;
  flex-direction: column;
}

.franchise .maquette-olapromo .maquette-preview-bottom .bottom-content p:last-child {
  align-self: center;
  text-align: center;
}

.franchise .maquette-olapromo .maquette-preview-bottom .bottom-content small, .franchise .maquette-olapromo .maquette-preview-bottom .bottom-content em {
  color: #9b9c9f;
  font-size: .75rem;
}

.franchise .maquette-olapromo .maquette-preview-bottom .bottom-content strong {
  font-size: 1rem;
  margin-bottom: .5rem;
}

.franchise .listing-bat {
  margin: 0 auto 1.5rem;
  text-align: center;
  min-width: 10rem;
  max-width: 30rem;
  border: 1px solid #0ea5e4;
}

.franchise .listing-bat li {
  padding: .375rem;
}

.franchise .listing-bat .list-title {
  text-transform: uppercase;
  font-weight: 600;
  background: #0ea5e4;
  color: #ffffff;
  font-size: 1.2rem;
}

.franchise .listing-bat li:not(:last-child) {
  border-bottom: 1px solid #0ea5e4;
}

.franchise .list-bat-header {
  justify-content: center;
  margin: 0 auto;
  width: max-content;
  text-align: center;
  border: none;
}

.franchise .list-bat-header strong:nth-child(1), .franchise .list-bat-header strong:nth-child(4), .franchise .list-bat-header strong:nth-child(5) {
  min-width: 8rem;
  max-width: 8rem;
}

.franchise .list-bat-header strong:nth-child(2) {
  min-width: 15rem;
  max-width: 15rem;
}

.franchise .list-bat-header strong:nth-child(3) {
  min-width: 30rem;
  max-width: 30rem;
}

.franchise .list-bat-header strong:nth-child(6) {
  min-width: 12rem;
  max-width: 12rem;
}

.franchise .listing-bat-list {
  width: max-content;
  margin: 0 auto;
  font-weight: 600;
}

.franchise .listing-bat-list li {
  border-bottom-color: #000000 !important;
  align-items: center;
}

.franchise .listing-bat-list li > * {
  text-align: center;
}

.franchise .listing-bat-list li > *:nth-child(1) {
  min-width: 8rem;
  max-width: 8rem;
}

.franchise .listing-bat-list li > *:nth-child(2) {
  min-width: 15rem;
  max-width: 15rem;
}

.franchise .listing-bat-list li .bat-list-annonceurs {
  width: max-content;
  display: flex;
  flex-direction: column;
}

.franchise .listing-bat-list li .bat-list-annonceurs-item {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000000;
}

.franchise .listing-bat-list li .bat-list-annonceurs-item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.franchise .listing-bat-list li .bat-list-annonceurs-item .label {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 99999999999999px;
  box-shadow: -14px 4px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 1.5rem;
}

.franchise .listing-bat-list li .bat-list-annonceurs-item figure {
  text-align: center !important;
}

.franchise .listing-bat-list li .bat-list-annonceurs-item figure img {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem !important;
  max-width: 2.5rem !important;
}

.franchise .listing-bat-list li .bat-list-annonceurs-item a svg {
  margin: 0 auto;
  font-size: 2.5rem;
  color: #f5c11d;
}

.franchise .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(2), .franchise .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(3) {
  min-width: 8rem;
  max-width: 8rem;
}

.franchise .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(1) {
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 4rem;
  min-width: 30rem;
  max-width: 30rem;
}

.franchise .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(4) {
  min-width: 12rem;
  max-width: 12rem;
}

.franchise .legende {
  display: flex;
  flex-direction: column;
  width: 1296px;
  margin: 0 auto;
}

.franchise .legende .title {
  margin: 4rem 0 2rem;
  font-size: 3rem;
  font-style: italic;
}

.franchise .legende-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 4rem;
}

.franchise .legende-list-item {
  align-items: center;
  display: flex;
  width: calc(25% - 1rem);
  margin: 0 .5rem .5rem;
}

.franchise .legende .label {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 99999px;
  margin-right: .5rem;
}

.franchise .legende .label:not(.label--text) {
  box-shadow: -3px 1px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.franchise .legende .label--text {
  color: red;
}

.franchise .commandes-rouleaux-header {
  text-align: center;
  padding: 1rem;
}

.franchise .commandes-rouleaux-content {
  padding: 0 1rem 1rem;
  background: #d9f9f3;
}

.franchise .commandes-rouleaux-content-container {
  padding: 1rem 1.5rem .5rem;
  background: #ffffff;
}

.franchise .commandes-rouleaux-content-container-header {
  font-size: 1.1rem;
  font-weight: 600;
}

.franchise .commandes-rouleaux-content-container-header small {
  font-size: 1rem;
}

.franchise .commandes-rouleaux-content-container-header a {
  text-decoration: underline;
  color: #0067b7;
}

.franchise .commandes-rouleaux-content-container-content {
  margin-top: 2.5rem;
}

.franchise .commandes-rouleaux-content-container-content > strong {
  font-size: 1.2rem;
  font-weight: 600;
}

.franchise .commandes-rouleaux-content-container-content .group {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 1rem -.5rem;
}

.franchise .commandes-rouleaux-content-container-content .group .item:nth-child(1) {
  width: 680px;
}

.franchise .commandes-rouleaux-content-container-content .group .item:nth-child(2), .franchise .commandes-rouleaux-content-container-content .group .item:nth-child(3) {
  margin-left: -.5rem;
  width: 277px;
}

.franchise .commandes-rouleaux-content-container-content .group .item:nth-child(4) {
  width: 204px;
}

.franchise .commandes-rouleaux-content-container-content .group .item select {
  width: 80%;
  min-width: 15rem;
  height: 100%;
}

.franchise .commandes-rouleaux-content-container-content-list {
  margin-top: .5rem;
}

.franchise .commandes-rouleaux-content-container-content-list-item {
  display: flex;
  justify-content: space-between;
  margin: 0 -.5rem;
  padding: 0 .5rem;
}

.franchise .commandes-rouleaux-content-container-content-list-item .btn {
  display: block;
  margin: .5rem 0;
  padding: .5rem;
  width: 100%;
  border-radius: 4px;
}

.franchise .commandes-rouleaux-content-container-content-list-item:not(:last-child):not(.list-header):not(.bg-witch-haze) {
  border-bottom: 1px solid #9b9c9f;
}

.franchise .commandes-rouleaux-content-container-content-list-item.bg-witch-haze:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}

.franchise .commandes-rouleaux-content-container-content-list-item ul {
  margin: .5rem -.5rem .5rem 0;
  display: flex;
  flex-direction: column;
}

.franchise .commandes-rouleaux-content-container-content-list-item ul li {
  width: 100%;
}

.franchise .commandes-rouleaux-content-container-content-list-item strong {
  font-weight: 600;
}

.franchise .commandes-rouleaux-content-container-content-list-item > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: .5rem;
  margin: -.5rem;
}

.franchise .commandes-rouleaux-content-container-content-list-item > *:nth-child(1) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.franchise .commandes-rouleaux-content-container-content-list-item > *:nth-child(2) {
  width: 20%;
}

.franchise .commandes-rouleaux-content-container-content-list-item > *:nth-child(3) {
  width: 10%;
}

.franchise .commandes-rouleaux-content-container-content-list-item > *:nth-child(4) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.franchise .commandes-rouleaux-content-container-content-list-item > *:nth-child(5) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.franchise .commandes-rouleaux-content-container-content-list-item > *:nth-child(6) {
  width: 15%;
}

.franchise .add {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 1rem;
  margin-left: auto;
  width: max-content;
  font-weight: 600;
}

.franchise .add img {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.franchise .commerciaux {
  margin: 0 auto;
  width: 70rem;
}

.franchise .commerciaux strong {
  font-weight: 600;
}

.franchise .commerciaux .shop-header {
  margin-bottom: 0;
}

.franchise .commerciaux-popin {
  position: absolute;
  top: 0;
  left: 0;
  background: #d9f9f3;
  padding: 1rem;
  border: 1px solid #0067b7;
  width: 100%;
}

.franchise .commerciaux-popin.closed {
  display: none;
}

.franchise .commerciaux-popin-header {
  padding-top: 1rem;
  padding-bottom: .25rem;
}

.franchise .commerciaux-popin-content {
  background: #ffffff;
  padding: 1rem;
  width: 100%;
}

.franchise .commerciaux-popin-content-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.franchise .commerciaux-popin-content-container span {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  width: 100%;
}

.franchise .commerciaux-popin-content-container span > * {
  width: 50%;
}

.franchise .commerciaux-popin-content-container span strong {
  text-align: right;
  font-weight: 600;
  margin-right: 1rem;
  margin-left: -1rem;
}

.franchise .commerciaux-popin-content-container span input, .franchise .commerciaux-popin-content-container span select {
  width: 16rem;
  height: 2rem;
}

.franchise .commerciaux-content {
  padding: 0 1rem 1rem;
  margin-bottom: 3rem;
  background: #d9f9f3;
  position: relative;
}

.franchise .commerciaux-content-container {
  background: #ffffff;
  padding: 1rem .5rem .5rem;
}

.franchise .commerciaux-header {
  display: flex;
  justify-content: space-between;
}

.franchise .commerciaux-header strong {
  padding: 1rem 0;
  text-align: center;
}

.franchise .commerciaux-header strong:nth-child(2), .franchise .commerciaux-header strong:nth-child(3) {
  text-align: left;
}

.franchise .commerciaux-header strong:nth-child(1), .franchise .commerciaux-header strong:nth-child(3) {
  width: 23.75%;
}

.franchise .commerciaux-header strong:nth-child(2) {
  width: 40%;
}

.franchise .commerciaux-header strong:nth-child(4) {
  width: 12.5%;
}

.franchise .commerciaux-list-item {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.franchise .commerciaux-list-item > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.franchise .commerciaux-list-item > * a {
  display: flex;
  align-items: center;
}

.franchise .commerciaux-list-item > * a:not(:last-child) {
  margin-bottom: .5rem;
}

.franchise .commerciaux-list-item > * a .bordered {
  padding: .375rem .75rem;
  background: #ebedf4;
  border-radius: 10px;
}

.franchise .commerciaux-list-item > * a img {
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
  margin-right: .5rem;
}

.franchise .commerciaux-list-item > *:nth-child(2), .franchise .commerciaux-list-item > *:nth-child(3) {
  text-align: left;
}

.franchise .commerciaux-list-item > *:nth-child(1), .franchise .commerciaux-list-item > *:nth-child(3) {
  width: 23.75%;
}

.franchise .commerciaux-list-item > *:nth-child(2) {
  width: 40%;
  align-items: flex-start;
}

.franchise .commerciaux-list-item > *:nth-child(3) {
  align-items: flex-start;
}

.franchise .commerciaux-list-item > *:nth-child(4) {
  width: 12.5%;
  align-items: flex-start;
}

.franchise .op-list .search {
  width: 40rem;
}

.franchise .op-list header {
  width: 80rem;
  justify-content: space-between;
  align-items: center;
}

.franchise .op-list header > * {
  padding: 0.5rem 0.75rem !important;
}

.franchise .op-list header > *:nth-child(1), .franchise .op-list header > *:nth-child(3) {
  width: 10rem;
  max-width: 10rem;
  min-width: 10rem;
}

.franchise .op-list header > *:nth-child(2) {
  width: 25rem;
  max-width: 25rem;
  min-width: 25rem;
}

.franchise .op-list header > *:nth-child(4) {
  width: 20rem;
  max-width: 20rem;
  min-width: 20rem;
}

.franchise .op-list header > *:nth-child(5) {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
}

.franchise .op-list .listing-bat-list {
  width: 80rem;
}

.franchise .op-list .listing-bat-list .listing-bat-item {
  justify-content: space-between;
  min-height: 15rem;
  font-weight: initial;
}

.franchise .op-list .listing-bat-list .listing-bat-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.franchise .op-list .listing-bat-list .listing-bat-item a span {
  padding: .25rem .5rem;
  background: #ebedf4;
  border-radius: 1rem;
}

.franchise .op-list .listing-bat-list .listing-bat-item strong {
  font-weight: 600;
}

.franchise .op-list .listing-bat-list .listing-bat-item > *:nth-child(1), .franchise .op-list .listing-bat-list .listing-bat-item > *:nth-child(3) {
  max-width: 10rem;
  min-width: 10rem;
  width: 10rem;
}

.franchise .op-list .listing-bat-list .listing-bat-item > *:nth-child(1) {
  text-align: left;
}

.franchise .op-list .listing-bat-list .listing-bat-item > *:nth-child(2) {
  text-align: left;
  width: 25rem;
  max-width: 25rem;
  min-width: 25rem;
}

.franchise .op-list .listing-bat-list .listing-bat-item > *:nth-child(4) {
  width: 20rem;
  max-width: 20rem;
  min-width: 20rem;
}

.franchise .op-list .listing-bat-list .listing-bat-item > *:nth-child(5) {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
}

.franchise .op-list .listing-bat-list li .bat-list-annonceurs-item,
.franchise .op-list .annonceurs-list-item .bat-list-annonceurs .bat-list-annonceurs-item  {
  border: none !important;
  padding-bottom: 0.125rem !important;
}

.franchise .op-list .listing-bat-list li .bat-list-annonceurs-item .label,
.franchise .op-list .annonceurs-list-item .bat-list-annonceurs .bat-list-annonceurs-item  .label {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  box-shadow: -4px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Espace master */
.master {
  position: relative;
  padding: 0 0.25%;
}

.master .master-header {
  display: flex;
  align-items: center;
}

.master .master-header .logo {
  height: 6rem;
  margin-right: 1rem;
}

.master .master-header .newsletter {
  display: flex;
  align-items: center;
  border: 1px solid #9b9c9f;
  border-radius: .5rem;
  padding: .5rem;
  width: 11rem;
  color: #9b9c9f;
  line-height: 1.1rem;
}

.master .master-header .newsletter img {
  min-width: 3rem;
  width: 3rem;
  margin-right: .5rem;
}

.master .master-header .newsletter p {
  width: calc(100% - 3rem);
  display: flex;
  flex-direction: column;
  font-size: .9rem;
}

.master .master-header .newsletter .title {
  color: #e2001a;
  font-size: 1.375rem;
  line-height: 1.5rem;
}

.master .master-header .newsletter .date {
  font-size: .8rem;
  display: flex;
  align-items: center;
}

.master .master-header .options {
  position: absolute;
  top: .25rem;
  right: .25rem;
  font-size: 1.5rem;
  color: #9b9c9f;
  font-weight: 600;
}

.master .master-header .options .option:last-child {
  border-left: 1px solid #9b9c9f;
  padding-left: .375rem;
}

.master main {
  position: relative;
  background: #ffffff;
  margin: 1rem 0;
  border: .5rem solid #E1001A;
  border-radius: 1rem;
}

.master main .analyse-header {
  display: flex;
  flex-direction: column;
}

.master main .analyse-header > strong {
  display: block;
  width: 100%;
  background: #0067b7;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.master main .analyse-header .desc-container {
  display: flex;
  justify-content: space-between;
  margin: -1rem;
}

.master main .analyse-header .desc-container .block {
  width: calc(33% - 2rem);
  max-width: max-content;
  margin: 1rem;
}

.master main .analyse-header .desc-container .action {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20rem;
}

.master main .analyse-header .desc-container strong {
  font-weight: 600;
}

.master main .analyse-header .desc-container img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
}

.master main .analyse-header .desc-container .date {
  display: flex;
  text-align: center;
}

.master main .analyse-header .desc-container .date .title {
  margin-bottom: 1rem;
}

.master main .analyse-content {
  display: flex;
  justify-content: space-between;
  margin: 1rem -1rem;
}

.master main .analyse-item {
  /*width: calc(33% - 2rem);*/
  margin: 1rem;
  border: 1px solid #0067b7;
}

.master main .analyse-item-header {
  text-align: center;
  border-bottom: 1px solid #0067b7;
  padding: 1rem;
}

.master main .analyse-item-header strong {
  font-weight: 600;
  font-size: 1.2rem;
}

.master main .analyse-item-content li {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
  font-size: .9rem;
}

.master main .analyse-item-content li .left {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
}

.master main .analyse-item-content li .left em {
  font-size: .8rem;
}

.master main .analyse-item-content li .left strong {
  font-weight: 600;
}

.master main .analyse-item-content li .right {
  min-width: 4rem;
  width: 4rem;
  text-align: left;
}

.master main .shop-edit,
.master main .annonceurs-edit {
  border: 1px solid #E1001A;
  background: #c6effc;
  margin-top: -1rem;
  padding: 0 1rem 1rem;
}

.master main .shop-edit-header,
.master main .annonceurs-edit-header {
  color: #E1001A;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.master main .shop-edit-header .title,
.master main .annonceurs-edit-header .title {
  font-size: 1.8rem;
}

.master main .shop-edit-header .steps,
.master main .annonceurs-edit-header .steps {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
}

.master main .shop-edit-header .steps .step,
.master main .annonceurs-edit-header .steps .step {
  position: relative;
  font-size: 2rem;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  padding-bottom: .5rem;
  text-align: center;
  border-radius: 9999999999px;
  background: #ffffff;
  z-index: 20;
  margin-right: 5rem;
}

.master main .shop-edit-header .steps .step img,
.master main .annonceurs-edit-header .steps .step img {
  width: 80%;
  margin-top: .25rem;
}

.master main .shop-edit-header .steps .step.active, .master main .shop-edit-header .steps .step.done,
.master main .annonceurs-edit-header .steps .step.active,
.master main .annonceurs-edit-header .steps .step.done {
  background: #E1001A;
  color: #ffffff;
}

.master main .shop-edit-header .steps .step.next,
.master main .annonceurs-edit-header .steps .step.next {
  background: #c6effc;
  color: #E1001A;
}

.master main .shop-edit-header .steps .step:last-child,
.master main .annonceurs-edit-header .steps .step:last-child {
  margin-right: 0;
}

.master main .shop-edit-header .steps .step:not(:last-child)::after,
.master main .annonceurs-edit-header .steps .step:not(:last-child)::after {
  content: '';
  width: 5rem;
  position: absolute;
  height: 3px;
  left: 100%;
  background: #0067b7;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.master main .shop-edit-container,
.master main .annonceurs-edit-container {
  margin: 0 auto;
  width: max-content;
}

.master main .shop-edit-content,
.master main .annonceurs-edit-content {
  background: #ffffff;
  padding: .5rem 1rem;
}

.master main .shop-edit-content iframe,
.master main .annonceurs-edit-content iframe {
  width: 100%;
  height: 20rem;
  margin-top: 2rem;
}

.master main .shop-edit-content .info,
.master main .annonceurs-edit-content .info {
  color: #e2001a;
  font-size: .8rem;
}

.master main .shop-edit-content .info-bottom,
.master main .annonceurs-edit-content .info-bottom {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.master main .shop-edit-content .raw,
.master main .annonceurs-edit-content .raw {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100rem;
  margin: .5rem auto;
}

.master main .shop-edit-content .raw .group,
.master main .annonceurs-edit-content .raw .group {
  display: flex;
  align-items: center;
}

.master main .shop-edit-content .raw .group ~ .group,
.master main .annonceurs-edit-content .raw .group ~ .group {
  margin-left: 6rem;
}

.master main .shop-edit-content .raw strong,
.master main .annonceurs-edit-content .raw strong {
  text-align: right;
  font-weight: 600;
  margin-right: 1rem;
  min-width: 12rem;
}

.master main .shop-edit-content .raw .right,
.master main .annonceurs-edit-content .raw .right {
  position: relative;
  display: flex;
}

.master main .shop-edit-content .raw .right.multiline .group,
.master main .annonceurs-edit-content .raw .right.multiline .group {
  flex-direction: column;
}

.master main .shop-edit-content .raw .right strong,
.master main .annonceurs-edit-content .raw .right strong {
  min-width: unset;
}

.master main .shop-edit-content .raw .right em,
.master main .annonceurs-edit-content .raw .right em {
  font-size: .8rem;
  color: #9b9c9f;
}

.master main .shop-edit-content .raw input,
.master main .shop-edit-content .raw select,
.master main .annonceurs-edit-content .raw input,
.master main .annonceurs-edit-content .raw select {
  margin-right: 1rem;
}

.master main .shop-edit-content.step2 .raw > strong, .master main .shop-edit-content.step3 .raw > strong,
.master main .annonceurs-edit-content.step2 .raw > strong,
.master main .annonceurs-edit-content.step3 .raw > strong {
  min-width: 16rem;
}

.master main .shop-edit-content.step2 input:not([type=checkbox]),
.master main .shop-edit-content.step2 select:not([type=checkbox]), .master main .shop-edit-content.step3 input:not([type=checkbox]),
.master main .shop-edit-content.step3 select:not([type=checkbox]),
.master main .annonceurs-edit-content.step2 input:not([type=checkbox]),
.master main .annonceurs-edit-content.step2 select:not([type=checkbox]),
.master main .annonceurs-edit-content.step3 input:not([type=checkbox]),
.master main .annonceurs-edit-content.step3 select:not([type=checkbox]) {
  width: 10rem;
}

.master main .shop-edit-content.step2 input[type=checkbox],
.master main .shop-edit-content.step2 select[type=checkbox], .master main .shop-edit-content.step3 input[type=checkbox],
.master main .shop-edit-content.step3 select[type=checkbox],
.master main .annonceurs-edit-content.step2 input[type=checkbox],
.master main .annonceurs-edit-content.step2 select[type=checkbox],
.master main .annonceurs-edit-content.step3 input[type=checkbox],
.master main .annonceurs-edit-content.step3 select[type=checkbox] {
  margin-left: 3rem;
}

.master main .shop-edit.campagnes-form .raw > strong,
.master main .annonceurs-edit.campagnes-form .raw > strong {
  min-width: 20rem;
  width: 20rem;
}

.master main .shop-edit.campagnes-form .raw > strong small,
.master main .annonceurs-edit.campagnes-form .raw > strong small {
  font-size: .6rem;
}

.master main .shop-edit.campagnes-form .raw .group ~ .group,
.master main .annonceurs-edit.campagnes-form .raw .group ~ .group {
  margin-left: 0;
}

.master main .shop-edit.campagnes-form .raw .group ~ .group strong,
.master main .annonceurs-edit.campagnes-form .raw .group ~ .group strong {
  width: max-content;
}

.master main .content {
  width: 100%;
  margin: 0 auto;
  padding: 0rem;
}

.master main .content .actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.master main .content .actions .left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.master main .content .actions .left div {
  color: #0067b7;
  font-weight: 600;
  margin-top: .5rem;
}

.master main .content .actions .left em {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  color: #9b9c9f;
  font-size: .9rem;
}

.master main .content .actions .left em img {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.master main .content .actions .left em span {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  background: #d0f7f1;
}

.master main .content .actions .search {
  width: 100%;
  max-width: 26rem;
  height: 1.5rem;
}

.master main .content .actions .right {
  display: flex;
}

.master main .content .actions .right p {
  display: flex;
  flex-direction: column;
  max-width: 14rem;
  justify-content: center;
}

.master main .content .actions .right p a {
  display: flex;
  align-items: center;
  margin: .25rem 0;
}

.master main .content .actions .right p img {
  height: 1rem;
  margin-right: .25rem;
}

.master main .content .actions .right p img.icon--bigger {
  height: 2rem;
  margin-right: .5rem;
}

.master main .content .actions .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  margin-right: 0;
}

.master main .content.masonry-container {
  max-width: 70rem;
  margin: 0 auto;
}

.master main .content.masonry-container .shop-grid {
  margin: 0 auto 1rem;
}

.master .navigation .outset {
  position: absolute;
  top: -3rem;
  right: -.5rem;
  padding: 1rem 1.5rem 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  background: #E1001A;
  margin-bottom: -1.5rem;
  border-radius: 1rem;
  z-index: -1;
  width: 25rem;
}

.master .navigation .outset img {
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 2.5rem;
  right: .75rem;
}

.master .navigation .primary,
.master .navigation .secondary {
  width: 100%;
  display: flex;
}

.master .navigation .primary li,
.master .navigation .secondary li {
  width: 20%;
  text-align: center;
}

.master .navigation .primary {
  border-radius: .5rem .5rem 0 0;
  color: #ffffff;
  background: #E96339;
  font-weight: 600;
}

.master .navigation .primary li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2rem;
  cursor: pointer;
}

.master .navigation .primary .active {
  background: #E1001A;
  border-radius: .25rem .25rem 0 0;
}

.master .navigation .secondary {
  color: #E1001A;
  background: #c6effc;
  font-weight: 600;
}

.master .navigation .secondary li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  cursor: pointer;
}

.master .navigation .secondary .active {
  background-color: #e2001a;
  color: #ffffff;
}

.master .shop-header {
  width: 100%;
  background: #e2001a;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.master .shop--archive .shop-header {
  background: #9d00e0;
}

.master .shop--archive tr th, .master .shop--archive tr:nth-child(even) {
  background-color: #f2ebf4 !important;
}

.master .shop-content table {
  width: 100%;
  margin-top: -1rem;
}

.master .shop-content thead {
  text-align: left;
  font-weight: 600;
  color: #0067b7;
}

.master .shop-content th {
  padding: 1rem .25rem;
  background: #e2f7fe;
  font-weight: 600;
}

.master .shop-content tr {
  border-bottom: 1px solid #0067b7;
}

.master .shop-content tr:nth-child(even) {
  background-color: #e8fbf8;
}

.master .shop-content thead tr {
  border: none;
}

.master .shop-content td {
  padding: 0 1rem 0 .25rem;
  font-size: .9rem;
  vertical-align: middle;
}

.master .shop-content td:nth-child(1), .master .shop-content th:nth-child(1) {
  max-width: 20%;
}

.master .shop-content td:nth-child(2), .master .shop-content th:nth-child(2) {
  max-width: 20%;
}

.master .shop-content td:nth-child(3), .master .shop-content th:nth-child(3) {
  max-width: 20%;
}

.master .shop-content td:nth-child(4), .master .shop-content th:nth-child(4) {
  max-width: 20%;
}

.master .shop-content td:nth-child(5), .master .shop-content th:nth-child(5) {
  max-width: 20%;
}

.master .shop-content strong {
  font-weight: 600;
  color: #0067b7;
  margin-right: .25rem;
  min-width: max-content;
}

.master .shop-content span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: .5rem 0;
}

.master .shop-content .picto {
  width: 2rem;
  height: 2rem;
  object-position: center;
  object-fit: contain;
  margin-right: .5rem;
}

.master .shop-grouped table {
  margin-top: -1rem;
}

.master .shop-grouped table th {
  padding: 1rem .5rem;
}

.master .shop-grouped table td {
  padding: 1rem 1rem 1rem 0;
}

.master .shop-grouped table td li {
  padding: .375rem 0;
}

.master .shop-new-group .shop-edit-content .raw strong {
  min-width: 15rem;
}

.master .shop-new-group .shop-edit-content .raw .right {
  width: 100%;
}

.master .shop-new-group .shop-edit-content .raw .right .line {
  display: flex;
  margin: .25rem 0;
}

.master .shop-new-group .shop-edit-content .raw .right .group {
  width: 100%;
  align-items: flex-start;
}

.master .shop-new-group .shop-edit-content .raw .right .group ~ .group {
  margin-left: 0;
}

.master .shop-new-group .bordered {
  margin-top: .5rem;
  padding: .25rem;
  border: 1px solid #9b9c9f;
  color: #0ea5e4;
  border-radius: .5rem;
  background-color: #ffffff;
}

.master .shop-new-group input:not([type=checkbox]),
.master .shop-new-group select {
  width: 100%;
}

.master .annonceurs-header {
  width: 100%;
  background: #0067b7;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.master .annonceurs-table {
  width: 100%;
}

.master .annonceurs-table tr {
  border-bottom: 1px solid #0067b7;
}

.master .annonceurs-table th, .master .annonceurs-table td {
  padding-bottom: 1rem;
}

.master .annonceurs-table img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  object-position: center;
}

.master .annonceurs-table strong {
  font-weight: 600;
  color: #0067b7;
}

.master .annonceurs-table tbody td {
  padding-top: 1rem;
  vertical-align: middle;
  line-height: 2rem;
}

.master .annonceurs-table tbody td span {
  display: block;
}

.master .annonceurs-table thead {
  color: #0067b7;
}

.master .date img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
}

.master .campagnes {
  position: relative;
  background: #d9f9f3;
  margin-top: -1rem;
  padding: 1rem;
}

.master .campagnes::before {
  content: '';
  position: absolute;
  background: #ffffff;
  width: calc(100% - 2rem);
  height: calc(100% - 1rem);
  top: 0;
  left: 1rem;
  z-index: 0;
}

.master .campagnes > * {
  position: relative;
  z-index: 1;
}

.master .campagnes-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0067b7;
}

.master .campagnes-header strong {
  text-align: center;
  font-weight: 600;
  width: calc(100% - 18rem);
}

.master .campagnes-header strong:first-child {
  width: 18rem;
}

.master .campagnes .annonceurs-list-item {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0067b7;
}

.master .campagnes .annonceurs-list-item img {
  width: 2rem;
  height: 2rem;
  margin-right: .5rem;
}

.master .campagnes .annonceurs-list-item a {
  display: flex;
  align-items: center;
}

.master .campagnes .annonceurs-list-item strong {
  color: #0067b7;
  font-weight: 600;
}

.master .campagnes .annonceurs-list-item .annonceur {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 18rem;
  padding-right: 1rem;
}

.master .campagnes .annonceurs-list-item .annonceur span {
  margin-bottom: .5rem;
}

.master .campagnes .annonceurs-list-item .campagnes-list {
  width: calc(100% - 18rem);
}

.master .campagnes .annonceurs-list-item .campagnes-list-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 4rem;
}

.master .campagnes .annonceurs-list-item .campagnes-list-item:last-child {
  margin-bottom: 0;
}

.master .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info, .master .campagnes .annonceurs-list-item .campagnes-list-item .campagne-actions {
  display: flex;
  flex-direction: column;
}

.master .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info {
  width: calc(100% / 2 - 10rem);
  justify-content: space-between;
}

.master .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info span {
  margin-bottom: .5rem;
}

.master .campagnes .annonceurs-list-item .campagnes-list-item .campagne-actions {
  width: 10rem;
  justify-content: center;
}

.master .campagnes .annonceurs-list-item .campagnes-list-add {
  margin-top: 2rem;
}

.master .dates a {
  color: #0ea5e4;
  font-weight: 600;
}

.master .dates a:not(:last-child)::after {
  content: '/';
  color: #0ea5e4;
  margin-left: .375rem;
  pointer-events: none;
}

.master .dates a.active {
  color: #e2001a;
}

.master .shop-header.special-header {
  text-transform: initial;
  font-size: 1.5rem;
}

.master .shop-header.special-header ~ .search {
  margin: .5rem 0 2rem;
}

.master .shop-header.special-header .tabs {
  display: flex;
  font-size: 1rem;
  margin: 1rem -.25rem -1rem;
}

.master .shop-header.special-header .tabs li {
  width: 25%;
  padding: 1rem .5rem .5rem;
  text-transform: initial;
  text-align: center;
  color: #000000;
  background: #0ea5e4;
  border-radius: 1rem 1rem 0 0;
  margin: 0 .25rem;
}

.master .shop-header.special-header .tabs li span {
  font-weight: 600;
}

.master .shop-header.special-header .tabs li.active {
  background-color: #ffffff;
}

.master .bat-visu {
  padding-bottom: 0;
}

.master .bat-visu strong {
  padding: .75rem 0 .25rem;
}

.master .bat-visu strong:first-child {
  width: 10rem;
  min-width: 10rem;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande {
  background: #eaeaea;
  padding: 0;
  border: none;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande:first-child {
  margin-top: 0;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande p:not(.historique) {
  font-size: 1.2rem;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .no-img {
  height: 6rem;
  width: 14rem;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .no-img img {
  width: 100%;
  height: 100%;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .historique {
  background: #e0e0e0;
  align-self: auto;
  justify-content: center;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande a {
  display: inline;
  font-weight: 600;
  text-decoration: underline;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item strong {
  font-weight: 600;
  color: inherit;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item p {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: calc(100% - 10rem);
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item p span {
  margin: .5rem 0;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item .bat-preview {
  justify-content: center;
  align-items: center;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item .large {
  width: 100%;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item .minia {
  width: 60%;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item .large img, .master .bat-visu ~ .annonceurs-list .annonceurs-list-item .minia img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  object-position: center;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item .links {
  color: #0ea5e4;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: max-content;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item .links a {
  width: calc(33% - 1rem);
  margin: 2rem .5rem;
  text-align: center;
  justify-content: center;
}

.master .bat-visu ~ .annonceurs-list .annonceurs-list-item .historique {
  min-width: 10rem;
  width: 10rem;
  margin-right: 1rem;
}

.master .back img {
  width: 1.5rem;
  margin-right: .5rem;
}

.master .back a {
  display: flex;
  align-items: center;
  color: #9b9c9f;
}

.master .maquette-info {
  margin-top: -1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.master .maquette-info span {
  margin-bottom: 1rem;
}

.master .maquette-info span:last-child {
  margin: 0;
}

.master .maquette-info strong {
  font-weight: 600;
}

.master .maquette-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.master .maquette-form-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: .5rem 0;
}

.master .maquette-form-content-left {
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  width: 66%;
  padding-right: 4rem;
}

.master .maquette-form-content-left > strong {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.master .maquette-form-content-left > em {
  font-size: .8rem;
  color: #9b9c9f;
  text-align: right;
}

.master .maquette-form-content-left-content li {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  font-weight: bold;
  min-height: 3rem;
}

.master .maquette-form-content-left-content li.spacer {
  margin: 1rem;
}

.master .maquette-form-content-left-content li strong {
  width: 14rem;
  text-align: right;
  margin-right: 1rem;
}

.master .maquette-form-content-left-content li .group {
  width: calc(100% - 14rem);
}

.master .maquette-form-content-left-content input[type=text] {
  width: 5rem;
}

.master .maquette-form-content-left-content label {
  margin-right: 1rem;
}

.master .maquette-form-content-left-content label.f05, .master .maquette-form-content-left-content label.f10, .master .maquette-form-content-left-content label.f15, .master .maquette-form-content-left-content label.f20 {
  position: relative;
  display: inline-block;
  padding-top: 5rem;
  width: 4rem;
}

.master .maquette-form-content-left-content label.f05::after, .master .maquette-form-content-left-content label.f10::after, .master .maquette-form-content-left-content label.f15::after, .master .maquette-form-content-left-content label.f20::after {
  content: '';
  position: absolute;
  background: #d6d6d6;
  width: 4rem;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  left: -1rem;
}

.master .maquette-form-content-left-content label.f05::after {
  height: 1rem;
}

.master .maquette-form-content-left-content label.f10:after {
  height: 2rem;
}

.master .maquette-form-content-left-content label.f15:after {
  height: 3rem;
}

.master .maquette-form-content-left-content label.f20:after {
  height: 4rem;
}

.master .maquette-form-content-right {
  background: #6de8d4;
  color: #ffffff;
  text-align: center;
  border-radius: 1rem;
  padding: 1rem 0;
  width: calc(33% - 2rem);
  align-self: baseline;
}

.master .maquette-form-content-right header {
  font-size: 1.25rem;
  font-weight: 600;
}

.master .maquette-form-content-right-content {
  color: #6de8d4;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 1rem .5rem;
}

.master .maquette-form-content-right-content textarea {
  color: #6de8d4;
  font-weight: 600;
  margin-top: 1rem;
  border: none;
  font-family: "Raleway", sans-serif;
  resize: none;
}

.master .maquette-form-submit {
  border: 0;
  background: #0067b7;
  color: #ffffff;
  font-size: 1.1rem;
  padding: .5rem;
  border-radius: .75rem;
  margin: 1rem 0 .5rem;
}

.master .maquette-preview {
  position: relative;
  border: 1px solid #9b9c9f;
  padding: .5rem;
  max-width: 100rem;
  margin: 2rem auto 8rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.master .maquette-preview .close {
  position: absolute;
  width: 2rem;
  height: 2rem;
  font-size: 1.8rem;
  padding: .2rem;
  text-align: center;
  top: -1rem;
  right: -1rem;
  background: #ffffff;
  color: #4f4f52;
  border: 1px solid #4f4f52;
  cursor: pointer;
}

.master .maquette-preview-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}

.master .maquette-preview-top .logo {
  width: 10rem;
}

.master .maquette-preview-top p {
  text-align: right;
  display: flex;
  flex-direction: column;
  color: #e2001a;
}

.master .maquette-preview-top p strong {
  color: #000000;
}

.master .maquette-preview-top p .fax {
  font-size: 2.25rem;
}

.master .maquette-preview-top p .tel {
  font-size: 1.8rem;
}

.master .maquette-preview-middle {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.master .maquette-preview-middle .left {
  display: flex;
  flex-direction: column;
  width: calc(100% - 27rem);
}

.master .maquette-preview-middle .left p {
  display: flex;
  flex-direction: column;
}

.master .maquette-preview-middle .left p span {
  margin-bottom: 1rem;
}

.master .maquette-preview-middle-img {
  margin-top: 4rem;
  width: 80%;
  height: 10rem;
  object-fit: cover;
  object-position: center;
  border: 1px dashed #9b9c9f;
  align-self: center;
}

.master .maquette-preview-middle .right {
  width: 27rem;
  padding: 1.25rem;
  border: 1px solid #9b9c9f;
  border-radius: 1.5rem;
  font-family: serif;
  color: #4f4f52;
}

.master .maquette-preview-middle .right p {
  margin-bottom: 1rem;
  text-align: justify;
  text-align-last: left;
  line-height: 1.375rem;
}

.master .maquette-preview-middle .right p:last-child {
  margin-bottom: 0;
}

.master .maquette-preview-middle .right .bat-text {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}

.master .maquette-preview-middle .right .bat-text strong {
  font-size: 1.5rem;
}

.master .maquette-preview-middle .right .bat-text em {
  margin-right: 2rem;
}

.master .maquette-preview-middle .right .cachet {
  margin-bottom: 3.5rem;
}

.master .maquette-preview-bottom {
  margin: 5rem 0 10rem;
  text-align: center;
  width: 100%;
}

.master .maquette-preview-bottom-img {
  width: 80%;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  border: 2px dashed #9b9c9f;
}

.master .maquette-olapromo strong {
  font-weight: 600;
  color: #9d00e0;
}

.master .maquette-olapromo .maquette-preview-middle {
  margin: 4rem 0 6rem;
  display: flex;
  flex-direction: column;
  width: 12rem;
}

.master .maquette-olapromo .maquette-preview-middle img {
  height: 6rem;
  width: 100%;
  border: 1px dashed #9b9c9f;
  object-position: center;
  object-fit: cover;
}

.master .maquette-olapromo .maquette-preview-bottom {
  text-align: left;
}

.master .maquette-olapromo .maquette-preview-bottom .top {
  position: relative;
  margin-bottom: .5rem;
}

.master .maquette-olapromo .maquette-preview-bottom .top-cachet {
  text-align: right;
  width: 12rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
}

.master .maquette-olapromo .maquette-preview-bottom .top-cachet strong {
  color: #000000;
}

.master .maquette-olapromo .maquette-preview-bottom .top-cachet span {
  font-size: .6rem;
}

.master .maquette-olapromo .maquette-preview-bottom .bottom {
  display: flex;
  width: calc(100% - 12rem);
  padding-right: .5rem;
}

.master .maquette-olapromo .maquette-preview-bottom .bottom img {
  width: 18rem;
  min-width: 18rem;
  height: 12rem;
  object-fit: cover;
  object-position: center;
  border: 1px dashed #9b9c9f;
  margin-right: .75rem;
}

.master .maquette-olapromo .maquette-preview-bottom .bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: .9rem;
}

.master .maquette-olapromo .maquette-preview-bottom .bottom-content p {
  display: flex;
  flex-direction: column;
}

.master .maquette-olapromo .maquette-preview-bottom .bottom-content p:last-child {
  align-self: center;
  text-align: center;
}

.master .maquette-olapromo .maquette-preview-bottom .bottom-content small, .master .maquette-olapromo .maquette-preview-bottom .bottom-content em {
  color: #9b9c9f;
  font-size: .75rem;
}

.master .maquette-olapromo .maquette-preview-bottom .bottom-content strong {
  font-size: 1rem;
  margin-bottom: .5rem;
}

.master .listing-bat {
  margin: 0 auto 1.5rem;
  text-align: center;
  min-width: 10rem;
  max-width: 30rem;
  border: 1px solid #0ea5e4;
}

.master .listing-bat li {
  padding: .375rem;
}

.master .listing-bat .list-title {
  text-transform: uppercase;
  font-weight: 600;
  background: #0ea5e4;
  color: #ffffff;
  font-size: 1.2rem;
}

.master .listing-bat li:not(:last-child) {
  border-bottom: 1px solid #0ea5e4;
}

.master .list-bat-header {
  justify-content: center;
  margin: 0 auto;
  width: max-content;
  text-align: center;
  border: none;
}

.master .list-bat-header strong:nth-child(1), .master .list-bat-header strong:nth-child(4), .master .list-bat-header strong:nth-child(5) {
  min-width: 8rem;
  max-width: 8rem;
}

.master .list-bat-header strong:nth-child(2) {
  min-width: 15rem;
  max-width: 15rem;
}

.master .list-bat-header strong:nth-child(3) {
  min-width: 30rem;
  max-width: 30rem;
}

.master .list-bat-header strong:nth-child(6) {
  min-width: 12rem;
  max-width: 12rem;
}

.master .listing-bat-list {
  width: max-content;
  margin: 0 auto;
  font-weight: 600;
}

.master .listing-bat-list li {
  border-bottom-color: #000000 !important;
  align-items: center;
}

.master .listing-bat-list li > * {
  text-align: center;
}

.master .listing-bat-list li > *:nth-child(1) {
  min-width: 8rem;
  max-width: 8rem;
}

.master .listing-bat-list li > *:nth-child(2) {
  min-width: 15rem;
  max-width: 15rem;
}

.master .listing-bat-list li .bat-list-annonceurs {
  width: max-content;
  display: flex;
  flex-direction: column;
}

.master .listing-bat-list li .bat-list-annonceurs-item {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000000;
}

.master .listing-bat-list li .bat-list-annonceurs-item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.master .listing-bat-list li .bat-list-annonceurs-item .label {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 99999999999999px;
  box-shadow: -14px 4px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 1.5rem;
}

.master .listing-bat-list li .bat-list-annonceurs-item figure {
  text-align: center !important;
}

.master .listing-bat-list li .bat-list-annonceurs-item figure img {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem !important;
  max-width: 2.5rem !important;
}

.master .listing-bat-list li .bat-list-annonceurs-item a svg {
  margin: 0 auto;
  font-size: 2.5rem;
  color: #f5c11d;
}

.master .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(2), .master .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(3) {
  min-width: 8rem;
  max-width: 8rem;
}

.master .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(1) {
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 4rem;
  min-width: 30rem;
  max-width: 30rem;
}

.master .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(4) {
  min-width: 12rem;
  max-width: 12rem;
}

.master .legende {
  display: flex;
  flex-direction: column;
  width: 1296px;
  margin: 0 auto;
}

.master .legende .title {
  margin: 4rem 0 2rem;
  font-size: 3rem;
  font-style: italic;
}

.master .legende-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 4rem;
}

.master .legende-list-item {
  align-items: center;
  display: flex;
  width: calc(25% - 1rem);
  margin: 0 .5rem .5rem;
}

.master .legende .label {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 99999px;
  margin-right: .5rem;
}

.master .legende .label:not(.label--text) {
  box-shadow: -3px 1px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.master .legende .label--text {
  color: red;
}

.master .commandes-rouleaux-header {
  text-align: center;
  padding: 1rem;
}

.master .commandes-rouleaux-content {
  padding: 0 1rem 1rem;
  background: #d9f9f3;
}

.master .commandes-rouleaux-content-container {
  padding: 1rem 1.5rem .5rem;
  background: #ffffff;
}

.master .commandes-rouleaux-content-container-header {
  font-size: 1.1rem;
  font-weight: 600;
}

.master .commandes-rouleaux-content-container-header small {
  font-size: 1rem;
}

.master .commandes-rouleaux-content-container-header a {
  text-decoration: underline;
  color: #0067b7;
}

.master .commandes-rouleaux-content-container-content {
  margin-top: 2.5rem;
}

.master .commandes-rouleaux-content-container-content > strong {
  font-size: 1.2rem;
  font-weight: 600;
}

.master .commandes-rouleaux-content-container-content .group {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 1rem -.5rem;
}

.master .commandes-rouleaux-content-container-content .group .item:nth-child(1) {
  width: 680px;
}

.master .commandes-rouleaux-content-container-content .group .item:nth-child(2), .master .commandes-rouleaux-content-container-content .group .item:nth-child(3) {
  margin-left: -.5rem;
  width: 277px;
}

.master .commandes-rouleaux-content-container-content .group .item:nth-child(4) {
  width: 204px;
}

.master .commandes-rouleaux-content-container-content .group .item select {
  width: 80%;
  min-width: 15rem;
  height: 100%;
}

.master .commandes-rouleaux-content-container-content-list {
  margin-top: .5rem;
}

.master .commandes-rouleaux-content-container-content-list-item {
  display: flex;
  justify-content: space-between;
  margin: 0 -.5rem;
  padding: 0 .5rem;
}

.master .commandes-rouleaux-content-container-content-list-item .btn {
  display: block;
  margin: .5rem 0;
  padding: .5rem;
  width: 100%;
  border-radius: 4px;
}

.master .commandes-rouleaux-content-container-content-list-item:not(:last-child):not(.list-header):not(.bg-witch-haze) {
  border-bottom: 1px solid #9b9c9f;
}

.master .commandes-rouleaux-content-container-content-list-item.bg-witch-haze:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}

.master .commandes-rouleaux-content-container-content-list-item ul {
  margin: .5rem -.5rem .5rem 0;
  display: flex;
  flex-direction: column;
}

.master .commandes-rouleaux-content-container-content-list-item ul li {
  width: 100%;
}

.master .commandes-rouleaux-content-container-content-list-item strong {
  font-weight: 600;
}

.master .commandes-rouleaux-content-container-content-list-item > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: .5rem;
  margin: -.5rem;
}

.master .commandes-rouleaux-content-container-content-list-item > *:nth-child(1) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.master .commandes-rouleaux-content-container-content-list-item > *:nth-child(2) {
  width: 20%;
}

.master .commandes-rouleaux-content-container-content-list-item > *:nth-child(3) {
  width: 10%;
}

.master .commandes-rouleaux-content-container-content-list-item > *:nth-child(4) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.master .commandes-rouleaux-content-container-content-list-item > *:nth-child(5) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.master .commandes-rouleaux-content-container-content-list-item > *:nth-child(6) {
  width: 15%;
}

.master .add {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 1rem;
  margin-left: auto;
  width: max-content;
  font-weight: 600;
}

.master .add img {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.master .commerciaux {
  margin: 0 auto;
  width: 70rem;
}

.master .commerciaux strong {
  font-weight: 600;
}

.master .commerciaux .shop-header {
  margin-bottom: 0;
}

.master .commerciaux-popin {
  position: absolute;
  top: 0;
  left: 0;
  background: #d9f9f3;
  padding: 1rem;
  border: 1px solid #0067b7;
  width: 100%;
}

.master .commerciaux-popin.closed {
  display: none;
}

.master .commerciaux-popin-header {
  padding-top: 1rem;
  padding-bottom: .25rem;
}

.master .commerciaux-popin-content {
  background: #ffffff;
  padding: 1rem;
  width: 100%;
}

.master .commerciaux-popin-content-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.master .commerciaux-popin-content-container span {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  width: 100%;
}

.master .commerciaux-popin-content-container span > * {
  width: 50%;
}

.master .commerciaux-popin-content-container span strong {
  text-align: right;
  font-weight: 600;
  margin-right: 1rem;
  margin-left: -1rem;
}

.master .commerciaux-popin-content-container span input, .master .commerciaux-popin-content-container span select {
  width: 16rem;
  height: 2rem;
}

.master .commerciaux-content {
  padding: 0 1rem 1rem;
  margin-bottom: 3rem;
  background: #d9f9f3;
  position: relative;
}

.master .commerciaux-content-container {
  background: #ffffff;
  padding: 1rem .5rem .5rem;
}

.master .commerciaux-header {
  display: flex;
  justify-content: space-between;
}

.master .commerciaux-header strong {
  padding: 1rem 0;
  text-align: center;
}

.master .commerciaux-header strong:nth-child(2), .master .commerciaux-header strong:nth-child(3) {
  text-align: left;
}

.master .commerciaux-header strong:nth-child(1), .master .commerciaux-header strong:nth-child(3) {
  width: 23.75%;
}

.master .commerciaux-header strong:nth-child(2) {
  width: 40%;
}

.master .commerciaux-header strong:nth-child(4) {
  width: 12.5%;
}

.master .commerciaux-list-item {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.master .commerciaux-list-item > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.master .commerciaux-list-item > * a {
  display: flex;
  align-items: center;
}

.master .commerciaux-list-item > * a:not(:last-child) {
  margin-bottom: .5rem;
}

.master .commerciaux-list-item > * a .bordered {
  padding: .375rem .75rem;
  background: #ebedf4;
  border-radius: 10px;
}

.master .commerciaux-list-item > * a img {
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
  margin-right: .5rem;
}

.master .commerciaux-list-item > *:nth-child(2), .master .commerciaux-list-item > *:nth-child(3) {
  text-align: left;
}

.master .commerciaux-list-item > *:nth-child(1), .master .commerciaux-list-item > *:nth-child(3) {
  width: 23.75%;
}

.master .commerciaux-list-item > *:nth-child(2) {
  width: 40%;
  align-items: flex-start;
}

.master .commerciaux-list-item > *:nth-child(3) {
  align-items: flex-start;
}

.master .commerciaux-list-item > *:nth-child(4) {
  width: 12.5%;
  align-items: flex-start;
}

.master .op-list .search {
  width: 40rem;
}

.master .op-list header {
  width: 80rem;
  justify-content: space-between;
  align-items: center;
}

.master .op-list header > * {
  padding: 0.5rem 0.75rem !important;
}

.master .op-list header > *:nth-child(1), .master .op-list header > *:nth-child(3) {
  width: 10rem;
  max-width: 10rem;
  min-width: 10rem;
}

.master .op-list header > *:nth-child(2) {
  width: 25rem;
  max-width: 25rem;
  min-width: 25rem;
}

.master .op-list header > *:nth-child(4) {
  width: 20rem;
  max-width: 20rem;
  min-width: 20rem;
}

.master .op-list header > *:nth-child(5) {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
}

.master .op-list .listing-bat-list {
  width: 80rem;
}

.master .op-list .listing-bat-list .listing-bat-item {
  justify-content: space-between;
  min-height: 15rem;
  font-weight: initial;
}

.master .op-list .listing-bat-list .listing-bat-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.master .op-list .listing-bat-list .listing-bat-item a span {
  padding: .25rem .5rem;
  background: #ebedf4;
  border-radius: 1rem;
}

.master .op-list .listing-bat-list .listing-bat-item strong {
  font-weight: 600;
}

.master .op-list .listing-bat-list .listing-bat-item > *:nth-child(1), .master .op-list .listing-bat-list .listing-bat-item > *:nth-child(3) {
  max-width: 10rem;
  min-width: 10rem;
  width: 10rem;
}

.master .op-list .listing-bat-list .listing-bat-item > *:nth-child(1) {
  text-align: left;
}

.master .op-list .listing-bat-list .listing-bat-item > *:nth-child(2) {
  text-align: left;
  width: 25rem;
  max-width: 25rem;
  min-width: 25rem;
}

.master .op-list .listing-bat-list .listing-bat-item > *:nth-child(4) {
  width: 20rem;
  max-width: 20rem;
  min-width: 20rem;
}

.master .op-list .listing-bat-list .listing-bat-item > *:nth-child(5) {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
}

.master .op-list .listing-bat-list li .bat-list-annonceurs-item,
.master .op-list .annonceurs-list-item .bat-list-annonceurs .bat-list-annonceurs-item  {
  border: none !important;
  padding-bottom: 0.125rem !important;
}

.master .op-list .listing-bat-list li .bat-list-annonceurs-item .label,
.master .op-list .annonceurs-list-item .bat-list-annonceurs .bat-list-annonceurs-item  .label {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  box-shadow: -4px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Espace studio */
.studio {
  position: relative;
  padding: 0 0.25%;
}

.studio .studio-header {
  display: flex;
  align-items: center;
}

.studio .studio-header .logo {
  height: 6rem;
  margin-right: 1rem;
}

.studio .studio-header .newsletter {
  display: flex;
  align-items: center;
  border: 1px solid #9b9c9f;
  border-radius: .5rem;
  padding: .5rem;
  width: 11rem;
  color: #9b9c9f;
  line-height: 1.1rem;
}

.studio .studio-header .newsletter img {
  min-width: 3rem;
  width: 3rem;
  margin-right: .5rem;
}

.studio .studio-header .newsletter p {
  width: calc(100% - 3rem);
  display: flex;
  flex-direction: column;
  font-size: .9rem;
}

.studio .studio-header .newsletter .title {
  color: #e2001a;
  font-size: 1.375rem;
  line-height: 1.5rem;
}

.studio .studio-header .newsletter .date {
  font-size: .8rem;
  display: flex;
  align-items: center;
}

.studio .studio-header .options {
  position: absolute;
  top: .25rem;
  right: .25rem;
  font-size: 1.5rem;
  color: #9b9c9f;
  font-weight: 600;
}

.studio .studio-header .options .option:last-child {
  border-left: 1px solid #9b9c9f;
  padding-left: .375rem;
}

.studio main {
  position: relative;
  background: #ffffff;
  margin: 1rem 0;
  border: .5rem solid #1ADCBB;
  border-radius: 1rem;
}

.studio main .analyse-header {
  display: flex;
  flex-direction: column;
}

.studio main .analyse-header > strong {
  display: block;
  width: 100%;
  background: #0067b7;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.studio main .analyse-header .desc-container {
  display: flex;
  justify-content: space-between;
  margin: -1rem;
}

.studio main .analyse-header .desc-container .block {
  width: calc(33% - 2rem);
  max-width: max-content;
  margin: 1rem;
}

.studio main .analyse-header .desc-container .action {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20rem;
}

.studio main .analyse-header .desc-container strong {
  font-weight: 600;
}

.studio main .analyse-header .desc-container img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
}

.studio main .analyse-header .desc-container .date {
  display: flex;
  text-align: center;
}

.studio main .analyse-header .desc-container .date .title {
  margin-bottom: 1rem;
}

.studio main .analyse-content {
  display: flex;
  justify-content: space-between;
  margin: 1rem -1rem;
}

.studio main .analyse-item {
  /*width: calc(33% - 2rem);*/
  margin: 1rem;
  border: 1px solid #0067b7;
}

.studio main .analyse-item-header {
  text-align: center;
  border-bottom: 1px solid #0067b7;
  padding: 1rem;
}

.studio main .analyse-item-header strong {
  font-weight: 600;
  font-size: 1.2rem;
}

.studio main .analyse-item-content li {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
  font-size: .9rem;
}

.studio main .analyse-item-content li .left {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
}

.studio main .analyse-item-content li .left em {
  font-size: .8rem;
}

.studio main .analyse-item-content li .left strong {
  font-weight: 600;
}

.studio main .analyse-item-content li .right {
  min-width: 4rem;
  width: 4rem;
  text-align: left;
}

.studio main .shop-edit,
.studio main .annonceurs-edit {
  border: 1px solid #1ADCBB;
  background: #c6effc;
  margin-top: -1rem;
  padding: 0 1rem 1rem;
}

.studio main .shop-edit-header,
.studio main .annonceurs-edit-header {
  color: #1ADCBB;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.studio main .shop-edit-header .title,
.studio main .annonceurs-edit-header .title {
  font-size: 1.8rem;
}

.studio main .shop-edit-header .steps,
.studio main .annonceurs-edit-header .steps {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
}

.studio main .shop-edit-header .steps .step,
.studio main .annonceurs-edit-header .steps .step {
  position: relative;
  font-size: 2rem;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  padding-bottom: .5rem;
  text-align: center;
  border-radius: 9999999999px;
  background: #ffffff;
  z-index: 20;
  margin-right: 5rem;
}

.studio main .shop-edit-header .steps .step img,
.studio main .annonceurs-edit-header .steps .step img {
  width: 80%;
  margin-top: .25rem;
}

.studio main .shop-edit-header .steps .step.active, .studio main .shop-edit-header .steps .step.done,
.studio main .annonceurs-edit-header .steps .step.active,
.studio main .annonceurs-edit-header .steps .step.done {
  background: #1ADCBB;
  color: #ffffff;
}

.studio main .shop-edit-header .steps .step.next,
.studio main .annonceurs-edit-header .steps .step.next {
  background: #c6effc;
  color: #1ADCBB;
}

.studio main .shop-edit-header .steps .step:last-child,
.studio main .annonceurs-edit-header .steps .step:last-child {
  margin-right: 0;
}

.studio main .shop-edit-header .steps .step:not(:last-child)::after,
.studio main .annonceurs-edit-header .steps .step:not(:last-child)::after {
  content: '';
  width: 5rem;
  position: absolute;
  height: 3px;
  left: 100%;
  background: #0067b7;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.studio main .shop-edit-container,
.studio main .annonceurs-edit-container {
  margin: 0 auto;
  width: max-content;
}

.studio main .shop-edit-content,
.studio main .annonceurs-edit-content {
  background: #ffffff;
  padding: .5rem 1rem;
}

.studio main .shop-edit-content iframe,
.studio main .annonceurs-edit-content iframe {
  width: 100%;
  height: 20rem;
  margin-top: 2rem;
}

.studio main .shop-edit-content .info,
.studio main .annonceurs-edit-content .info {
  color: #e2001a;
  font-size: .8rem;
}

.studio main .shop-edit-content .info-bottom,
.studio main .annonceurs-edit-content .info-bottom {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.studio main .shop-edit-content .raw,
.studio main .annonceurs-edit-content .raw {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100rem;
  margin: .5rem auto;
}

.studio main .shop-edit-content .raw .group,
.studio main .annonceurs-edit-content .raw .group {
  display: flex;
  align-items: center;
}

.studio main .shop-edit-content .raw .group ~ .group,
.studio main .annonceurs-edit-content .raw .group ~ .group {
  margin-left: 6rem;
}

.studio main .shop-edit-content .raw strong,
.studio main .annonceurs-edit-content .raw strong {
  text-align: right;
  font-weight: 600;
  margin-right: 1rem;
  min-width: 12rem;
}

.studio main .shop-edit-content .raw .right,
.studio main .annonceurs-edit-content .raw .right {
  position: relative;
  display: flex;
}

.studio main .shop-edit-content .raw .right.multiline .group,
.studio main .annonceurs-edit-content .raw .right.multiline .group {
  flex-direction: column;
}

.studio main .shop-edit-content .raw .right strong,
.studio main .annonceurs-edit-content .raw .right strong {
  min-width: unset;
}

.studio main .shop-edit-content .raw .right em,
.studio main .annonceurs-edit-content .raw .right em {
  font-size: .8rem;
  color: #9b9c9f;
}

.studio main .shop-edit-content .raw input,
.studio main .shop-edit-content .raw select,
.studio main .annonceurs-edit-content .raw input,
.studio main .annonceurs-edit-content .raw select {
  margin-right: 1rem;
}

.studio main .shop-edit-content.step2 .raw > strong, .studio main .shop-edit-content.step3 .raw > strong,
.studio main .annonceurs-edit-content.step2 .raw > strong,
.studio main .annonceurs-edit-content.step3 .raw > strong {
  min-width: 16rem;
}

.studio main .shop-edit-content.step2 input:not([type=checkbox]),
.studio main .shop-edit-content.step2 select:not([type=checkbox]), .studio main .shop-edit-content.step3 input:not([type=checkbox]),
.studio main .shop-edit-content.step3 select:not([type=checkbox]),
.studio main .annonceurs-edit-content.step2 input:not([type=checkbox]),
.studio main .annonceurs-edit-content.step2 select:not([type=checkbox]),
.studio main .annonceurs-edit-content.step3 input:not([type=checkbox]),
.studio main .annonceurs-edit-content.step3 select:not([type=checkbox]) {
  width: 10rem;
}

.studio main .shop-edit-content.step2 input[type=checkbox],
.studio main .shop-edit-content.step2 select[type=checkbox], .studio main .shop-edit-content.step3 input[type=checkbox],
.studio main .shop-edit-content.step3 select[type=checkbox],
.studio main .annonceurs-edit-content.step2 input[type=checkbox],
.studio main .annonceurs-edit-content.step2 select[type=checkbox],
.studio main .annonceurs-edit-content.step3 input[type=checkbox],
.studio main .annonceurs-edit-content.step3 select[type=checkbox] {
  margin-left: 3rem;
}

.studio main .shop-edit.campagnes-form .raw > strong,
.studio main .annonceurs-edit.campagnes-form .raw > strong {
  min-width: 20rem;
  width: 20rem;
}

.studio main .shop-edit.campagnes-form .raw > strong small,
.studio main .annonceurs-edit.campagnes-form .raw > strong small {
  font-size: .6rem;
}

.studio main .shop-edit.campagnes-form .raw .group ~ .group,
.studio main .annonceurs-edit.campagnes-form .raw .group ~ .group {
  margin-left: 0;
}

.studio main .shop-edit.campagnes-form .raw .group ~ .group strong,
.studio main .annonceurs-edit.campagnes-form .raw .group ~ .group strong {
  width: max-content;
}

.studio main .content {
  width: 100%;
  margin: 0 auto;
  padding: 0rem;
}

.studio main .content .actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.studio main .content .actions .left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.studio main .content .actions .left div {
  color: #0067b7;
  font-weight: 600;
  margin-top: .5rem;
}

.studio main .content .actions .left em {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  color: #9b9c9f;
  font-size: .9rem;
}

.studio main .content .actions .left em img {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.studio main .content .actions .left em span {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  background: #d0f7f1;
}

.studio main .content .actions .search {
  width: 100%;
  max-width: 26rem;
  height: 1.5rem;
}

.studio main .content .actions .right {
  display: flex;
}

.studio main .content .actions .right p {
  display: flex;
  flex-direction: column;
  max-width: 14rem;
  justify-content: center;
}

.studio main .content .actions .right p a {
  display: flex;
  align-items: center;
  margin: .25rem 0;
}

.studio main .content .actions .right p img {
  height: 1rem;
  margin-right: .25rem;
}

.studio main .content .actions .right p img.icon--bigger {
  height: 2rem;
  margin-right: .5rem;
}

.studio main .content .actions .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  margin-right: 0;
}

.studio main .content.masonry-container {
  max-width: 70rem;
  margin: 0 auto;
}

.studio main .content.masonry-container .shop-grid {
  margin: 0 auto 1rem;
}

.studio .navigation .outset {
  position: absolute;
  top: -3rem;
  right: -.5rem;
  padding: 1rem 1.5rem 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  background: #1ADCBB;
  margin-bottom: -1.5rem;
  border-radius: 1rem;
  z-index: -1;
  width: 25rem;
}

.studio .navigation .outset img {
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 2.5rem;
  right: .75rem;
}

.studio .navigation .primary,
.studio .navigation .secondary {
  width: 100%;
  display: flex;
}

.studio .navigation .primary li,
.studio .navigation .secondary li {
  width: 20%;
  text-align: center;
}

.studio .navigation .primary {
  border-radius: .5rem .5rem 0 0;
  color: #ffffff;
  background: #BAF5EB;
  font-weight: 600;
}

.studio .navigation .primary li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2rem;
  cursor: pointer;
}

.studio .navigation .primary .active {
  background: #1ADCBB;
  border-radius: .25rem .25rem 0 0;
}

.studio .navigation .secondary {
  color: #1ADCBB;
  background: #c6effc;
  font-weight: 600;
}

.studio .navigation .secondary li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  cursor: pointer;
}

.studio .navigation .secondary .active {
  background-color: #e2001a;
  color: #ffffff;
}

.studio .shop-header {
  width: 100%;
  background: #1ADCBB;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.studio .shop--archive .shop-header {
  background: #9d00e0;
}

.studio .shop--archive tr th, .studio .shop--archive tr:nth-child(even) {
  background-color: #f2ebf4 !important;
}

.studio .shop-content table {
  width: 100%;
  margin-top: -1rem;
}

.studio .shop-content thead {
  text-align: left;
  font-weight: 600;
  color: #0067b7;
}

.studio .shop-content th {
  padding: 1rem .25rem;
  background: #e2f7fe;
  font-weight: 600;
}

.studio .shop-content tr {
  border-bottom: 1px solid #0067b7;
}

.studio .shop-content tr:nth-child(even) {
  background-color: #e8fbf8;
}

.studio .shop-content thead tr {
  border: none;
}

.studio .shop-content td {
  padding: 0 1rem 0 .25rem;
  font-size: .9rem;
  vertical-align: middle;
}

.studio .shop-content td:nth-child(1), .studio .shop-content th:nth-child(1) {
  max-width: 25%;
}

.studio .shop-content td:nth-child(2), .studio .shop-content th:nth-child(2) {
  max-width: 25%;
}

.studio .shop-content td:nth-child(3), .studio .shop-content th:nth-child(3) {
  max-width: 25%;
}

.studio .shop-content td:nth-child(4), .studio .shop-content th:nth-child(4) {
  max-width: 25%;
}

.studio .shop-content td:nth-child(5), .studio .shop-content th:nth-child(5) {
  max-width: 25%;
}

.studio .shop-content strong {
  font-weight: 600;
  color: #0067b7;
  margin-right: .25rem;
  min-width: max-content;
}

.studio .shop-content span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: .5rem 0;
}

.studio .shop-content .picto {
  width: 2rem;
  height: 2rem;
  object-position: center;
  object-fit: contain;
  margin-right: .5rem;
}

.studio .shop-grouped table {
  margin-top: -1rem;
}

.studio .shop-grouped table th {
  padding: 1rem .5rem;
}

.studio .shop-grouped table td {
  padding: 1rem 1rem 1rem 0;
}

.studio .shop-grouped table td li {
  padding: .375rem 0;
}

.studio .shop-new-group .shop-edit-content .raw strong {
  min-width: 15rem;
}

.studio .shop-new-group .shop-edit-content .raw .right {
  width: 100%;
}

.studio .shop-new-group .shop-edit-content .raw .right .line {
  display: flex;
  margin: .25rem 0;
}

.studio .shop-new-group .shop-edit-content .raw .right .group {
  width: 100%;
  align-items: flex-start;
}

.studio .shop-new-group .shop-edit-content .raw .right .group ~ .group {
  margin-left: 0;
}

.studio .shop-new-group .bordered {
  margin-top: .5rem;
  padding: .25rem;
  border: 1px solid #9b9c9f;
  color: #0ea5e4;
  border-radius: .5rem;
  background-color: #ffffff;
}

.studio .shop-new-group input:not([type=checkbox]),
.studio .shop-new-group select {
  width: 100%;
}

.studio .annonceurs-header {
  width: 100%;
  background: #0067b7;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.studio .annonceurs-table {
  width: 100%;
}

.studio .annonceurs-table tr {
  border-bottom: 1px solid #0067b7;
}

.studio .annonceurs-table th, .studio .annonceurs-table td {
  padding-bottom: 1rem;
}

.studio .annonceurs-table img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  object-position: center;
}

.studio .annonceurs-table strong {
  font-weight: 600;
  color: #0067b7;
}

.studio .annonceurs-table tbody td {
  padding-top: 1rem;
  vertical-align: middle;
  line-height: 2rem;
}

.studio .annonceurs-table tbody td span {
  display: block;
}

.studio .annonceurs-table thead {
  color: #0067b7;
}

.studio .date img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
}

.studio .campagnes {
  position: relative;
  background: #d9f9f3;
  margin-top: -1rem;
  padding: 1rem;
}

.studio .campagnes::before {
  content: '';
  position: absolute;
  background: #ffffff;
  width: calc(100% - 2rem);
  height: calc(100% - 1rem);
  top: 0;
  left: 1rem;
  z-index: 0;
}

.studio .campagnes > * {
  position: relative;
  z-index: 1;
}

.studio .campagnes-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0067b7;
}

.studio .campagnes-header strong {
  text-align: center;
  font-weight: 600;
  width: calc(100% - 18rem);
}

.studio .campagnes-header strong:first-child {
  width: 18rem;
}

.studio .campagnes .annonceurs-list-item {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0067b7;
}

.studio .campagnes .annonceurs-list-item img {
  width: 2rem;
  height: 2rem;
  margin-right: .5rem;
}

.studio .campagnes .annonceurs-list-item a {
  display: flex;
  align-items: center;
}

.studio .campagnes .annonceurs-list-item strong {
  color: #0067b7;
  font-weight: 600;
}

.studio .campagnes .annonceurs-list-item .annonceur {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 18rem;
  padding-right: 1rem;
}

.studio .campagnes .annonceurs-list-item .annonceur span {
  margin-bottom: .5rem;
}

.studio .campagnes .annonceurs-list-item .campagnes-list {
  width: calc(100% - 18rem);
}

.studio .campagnes .annonceurs-list-item .campagnes-list-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 4rem;
}

.studio .campagnes .annonceurs-list-item .campagnes-list-item:last-child {
  margin-bottom: 0;
}

.studio .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info, .studio .campagnes .annonceurs-list-item .campagnes-list-item .campagne-actions {
  display: flex;
  flex-direction: column;
}

.studio .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info {
  width: calc(100% / 2 - 10rem);
  justify-content: space-between;
}

.studio .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info span {
  margin-bottom: .5rem;
}

.studio .campagnes .annonceurs-list-item .campagnes-list-item .campagne-actions {
  width: 10rem;
  justify-content: center;
}

.studio .campagnes .annonceurs-list-item .campagnes-list-add {
  margin-top: 2rem;
}

.studio .dates a {
  color: #0ea5e4;
  font-weight: 600;
}

.studio .dates a:not(:last-child)::after {
  content: '/';
  color: #0ea5e4;
  margin-left: .375rem;
  pointer-events: none;
}

.studio .dates a.active {
  color: #e2001a;
}

.studio .shop-header.special-header {
  text-transform: initial;
  font-size: 1.5rem;
}

.studio .shop-header.special-header ~ .search {
  margin: .5rem 0 2rem;
}

.studio .shop-header.special-header .tabs {
  display: flex;
  font-size: 1rem;
  margin: 1rem -.25rem -1rem;
}

.studio .shop-header.special-header .tabs li {
  width: 25%;
  padding: 1rem .5rem .5rem;
  text-transform: initial;
  text-align: center;
  color: #000000;
  background: #0ea5e4;
  border-radius: 1rem 1rem 0 0;
  margin: 0 .25rem;
}

.studio .shop-header.special-header .tabs li span {
  font-weight: 600;
}

.studio .shop-header.special-header .tabs li.active {
  background-color: #ffffff;
}

.studio .bat-visu {
  padding-bottom: 0;
}

.studio .bat-visu strong {
  padding: .75rem 0 .25rem;
}

.studio .bat-visu strong:first-child {
  width: 10rem;
  min-width: 10rem;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande {
  background: #eaeaea;
  padding: 0;
  border: none;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande:first-child {
  margin-top: 0;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande p:not(.historique) {
  font-size: 1.2rem;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .no-img {
  height: 6rem;
  width: 14rem;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .no-img img {
  width: 100%;
  height: 100%;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .historique {
  background: #e0e0e0;
  align-self: auto;
  justify-content: center;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande a {
  display: inline;
  font-weight: 600;
  text-decoration: underline;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item strong {
  font-weight: 600;
  color: inherit;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item p {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: calc(100% - 10rem);
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item p span {
  margin: .5rem 0;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item .bat-preview {
  justify-content: center;
  align-items: center;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item .large {
  width: 100%;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item .minia {
  width: 60%;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item .large img, .studio .bat-visu ~ .annonceurs-list .annonceurs-list-item .minia img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  object-position: center;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item .links {
  color: #0ea5e4;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: max-content;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item .links a {
  width: calc(33% - 1rem);
  margin: 2rem .5rem;
  text-align: center;
  justify-content: center;
}

.studio .bat-visu ~ .annonceurs-list .annonceurs-list-item .historique {
  min-width: 10rem;
  width: 10rem;
  margin-right: 1rem;
}

.studio .back img {
  width: 1.5rem;
  margin-right: .5rem;
}

.studio .back a {
  display: flex;
  align-items: center;
  color: #9b9c9f;
}

.studio .maquette-info {
  margin-top: -1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.studio .maquette-info span {
  margin-bottom: 1rem;
}

.studio .maquette-info span:last-child {
  margin: 0;
}

.studio .maquette-info strong {
  font-weight: 600;
}

.studio .maquette-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.studio .maquette-form-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: .5rem 0;
}

.studio .maquette-form-content-left {
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  width: 66%;
  padding-right: 4rem;
}

.studio .maquette-form-content-left > strong {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.studio .maquette-form-content-left > em {
  font-size: .8rem;
  color: #9b9c9f;
  text-align: right;
}

.studio .maquette-form-content-left-content li {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  font-weight: bold;
  min-height: 3rem;
}

.studio .maquette-form-content-left-content li.spacer {
  margin: 1rem;
}

.studio .maquette-form-content-left-content li strong {
  width: 14rem;
  text-align: right;
  margin-right: 1rem;
}

.studio .maquette-form-content-left-content li .group {
  width: calc(100% - 14rem);
}

.studio .maquette-form-content-left-content input[type=text] {
  width: 5rem;
}

.studio .maquette-form-content-left-content label {
  margin-right: 1rem;
}

.studio .maquette-form-content-left-content label.f05, .studio .maquette-form-content-left-content label.f10, .studio .maquette-form-content-left-content label.f15, .studio .maquette-form-content-left-content label.f20 {
  position: relative;
  display: inline-block;
  padding-top: 5rem;
  width: 4rem;
}

.studio .maquette-form-content-left-content label.f05::after, .studio .maquette-form-content-left-content label.f10::after, .studio .maquette-form-content-left-content label.f15::after, .studio .maquette-form-content-left-content label.f20::after {
  content: '';
  position: absolute;
  background: #d6d6d6;
  width: 4rem;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  left: -1rem;
}

.studio .maquette-form-content-left-content label.f05::after {
  height: 1rem;
}

.studio .maquette-form-content-left-content label.f10:after {
  height: 2rem;
}

.studio .maquette-form-content-left-content label.f15:after {
  height: 3rem;
}

.studio .maquette-form-content-left-content label.f20:after {
  height: 4rem;
}

.studio .maquette-form-content-right {
  background: #6de8d4;
  color: #ffffff;
  text-align: center;
  border-radius: 1rem;
  padding: 1rem 0;
  width: calc(33% - 2rem);
  align-self: baseline;
}

.studio .maquette-form-content-right header {
  font-size: 1.25rem;
  font-weight: 600;
}

.studio .maquette-form-content-right-content {
  color: #6de8d4;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 1rem .5rem;
}

.studio .maquette-form-content-right-content textarea {
  color: #6de8d4;
  font-weight: 600;
  margin-top: 1rem;
  border: none;
  font-family: "Raleway", sans-serif;
  resize: none;
}

.studio .maquette-form-submit {
  border: 0;
  background: #0067b7;
  color: #ffffff;
  font-size: 1.1rem;
  padding: .5rem;
  border-radius: .75rem;
  margin: 1rem 0 .5rem;
}

.studio .maquette-preview {
  position: relative;
  border: 1px solid #9b9c9f;
  padding: .5rem;
  max-width: 100rem;
  margin: 2rem auto 8rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.studio .maquette-preview .close {
  position: absolute;
  width: 2rem;
  height: 2rem;
  font-size: 1.8rem;
  padding: .2rem;
  text-align: center;
  top: -1rem;
  right: -1rem;
  background: #ffffff;
  color: #4f4f52;
  border: 1px solid #4f4f52;
  cursor: pointer;
}

.studio .maquette-preview-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}

.studio .maquette-preview-top .logo {
  width: 10rem;
}

.studio .maquette-preview-top p {
  text-align: right;
  display: flex;
  flex-direction: column;
  color: #e2001a;
}

.studio .maquette-preview-top p strong {
  color: #000000;
}

.studio .maquette-preview-top p .fax {
  font-size: 2.25rem;
}

.studio .maquette-preview-top p .tel {
  font-size: 1.8rem;
}

.studio .maquette-preview-middle {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.studio .maquette-preview-middle .left {
  display: flex;
  flex-direction: column;
  width: calc(100% - 27rem);
}

.studio .maquette-preview-middle .left p {
  display: flex;
  flex-direction: column;
}

.studio .maquette-preview-middle .left p span {
  margin-bottom: 1rem;
}

.studio .maquette-preview-middle-img {
  margin-top: 4rem;
  width: 80%;
  height: 10rem;
  object-fit: cover;
  object-position: center;
  border: 1px dashed #9b9c9f;
  align-self: center;
}

.studio .maquette-preview-middle .right {
  width: 27rem;
  padding: 1.25rem;
  border: 1px solid #9b9c9f;
  border-radius: 1.5rem;
  font-family: serif;
  color: #4f4f52;
}

.studio .maquette-preview-middle .right p {
  margin-bottom: 1rem;
  text-align: justify;
  text-align-last: left;
  line-height: 1.375rem;
}

.studio .maquette-preview-middle .right p:last-child {
  margin-bottom: 0;
}

.studio .maquette-preview-middle .right .bat-text {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}

.studio .maquette-preview-middle .right .bat-text strong {
  font-size: 1.5rem;
}

.studio .maquette-preview-middle .right .bat-text em {
  margin-right: 2rem;
}

.studio .maquette-preview-middle .right .cachet {
  margin-bottom: 3.5rem;
}

.studio .maquette-preview-bottom {
  margin: 5rem 0 10rem;
  text-align: center;
  width: 100%;
}

.studio .maquette-preview-bottom-img {
  width: 80%;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  border: 2px dashed #9b9c9f;
}

.studio .maquette-olapromo strong {
  font-weight: 600;
  color: #9d00e0;
}

.studio .maquette-olapromo .maquette-preview-middle {
  margin: 4rem 0 6rem;
  display: flex;
  flex-direction: column;
  width: 12rem;
}

.studio .maquette-olapromo .maquette-preview-middle img {
  height: 8rem;
  width: 100%;
  border: 1px dashed #9b9c9f;
  object-position: center;
  object-fit: cover;
}

.studio .maquette-olapromo .maquette-preview-bottom {
  text-align: left;
}

.studio .maquette-olapromo .maquette-preview-bottom .top {
  position: relative;
  margin-bottom: .5rem;
}

.studio .maquette-olapromo .maquette-preview-bottom .top-cachet {
  text-align: right;
  width: 12rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
}

.studio .maquette-olapromo .maquette-preview-bottom .top-cachet strong {
  color: #000000;
}

.studio .maquette-olapromo .maquette-preview-bottom .top-cachet span {
  font-size: .6rem;
}

.studio .maquette-olapromo .maquette-preview-bottom .bottom {
  display: flex;
  width: calc(100% - 12rem);
  padding-right: .5rem;
}

.studio .maquette-olapromo .maquette-preview-bottom .bottom img {
  width: 18rem;
  min-width: 18rem;
  height: 12rem;
  object-fit: cover;
  object-position: center;
  border: 1px dashed #9b9c9f;
  margin-right: .75rem;
}

.studio .maquette-olapromo .maquette-preview-bottom .bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: .9rem;
}

.studio .maquette-olapromo .maquette-preview-bottom .bottom-content p {
  display: flex;
  flex-direction: column;
}

.studio .maquette-olapromo .maquette-preview-bottom .bottom-content p:last-child {
  align-self: center;
  text-align: center;
}

.studio .maquette-olapromo .maquette-preview-bottom .bottom-content small, .studio .maquette-olapromo .maquette-preview-bottom .bottom-content em {
  color: #9b9c9f;
  font-size: .75rem;
}

.studio .maquette-olapromo .maquette-preview-bottom .bottom-content strong {
  font-size: 1rem;
  margin-bottom: .5rem;
}

.studio .listing-bat {
  margin: 0 auto 1.5rem;
  text-align: center;
  min-width: 10rem;
  max-width: 30rem;
  border: 1px solid #0ea5e4;
}

.studio .listing-bat li {
  padding: .375rem;
}

.studio .listing-bat .list-title {
  text-transform: uppercase;
  font-weight: 600;
  background: #0ea5e4;
  color: #ffffff;
  font-size: 1.2rem;
}

.studio .listing-bat li:not(:last-child) {
  border-bottom: 1px solid #0ea5e4;
}

.studio .list-bat-header {
  justify-content: center;
  margin: 0 auto;
  width: max-content;
  text-align: center;
  border: none;
}

.studio .list-bat-header strong:nth-child(1), .studio .list-bat-header strong:nth-child(4), .studio .list-bat-header strong:nth-child(5) {
  min-width: 8rem;
  max-width: 8rem;
}

.studio .list-bat-header strong:nth-child(2) {
  min-width: 15rem;
  max-width: 15rem;
}

.studio .list-bat-header strong:nth-child(3) {
  min-width: 30rem;
  max-width: 30rem;
}

.studio .list-bat-header strong:nth-child(6) {
  min-width: 12rem;
  max-width: 12rem;
}

.studio .listing-bat-list {
  width: max-content;
  margin: 0 auto;
  font-weight: 600;
}

.studio .listing-bat-list li {
  border-bottom-color: #000000 !important;
  align-items: center;
}

.studio .listing-bat-list li > * {
  text-align: center;
}

.studio .listing-bat-list li > *:nth-child(1) {
  min-width: 8rem;
  max-width: 8rem;
}

.studio .listing-bat-list li > *:nth-child(2) {
  min-width: 15rem;
  max-width: 15rem;
}

.studio .listing-bat-list li .bat-list-annonceurs {
  width: max-content;
  display: flex;
  flex-direction: column;
}

.studio .listing-bat-list li .bat-list-annonceurs-item {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000000;
}

.studio .listing-bat-list li .bat-list-annonceurs-item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.studio .listing-bat-list li .bat-list-annonceurs-item .label {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 99999999999999px;
  box-shadow: -14px 4px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 1.5rem;
}

.studio .listing-bat-list li .bat-list-annonceurs-item figure {
  text-align: center !important;
}

.studio .listing-bat-list li .bat-list-annonceurs-item figure img {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem !important;
  max-width: 2.5rem !important;
}

.studio .listing-bat-list li .bat-list-annonceurs-item a svg {
  margin: 0 auto;
  font-size: 2.5rem;
  color: #f5c11d;
}

.studio .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(2), .studio .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(3) {
  min-width: 8rem;
  max-width: 8rem;
}

.studio .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(1) {
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 4rem;
  min-width: 30rem;
  max-width: 30rem;
}

.studio .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(4) {
  min-width: 12rem;
  max-width: 12rem;
}

.studio .legende {
  display: flex;
  flex-direction: column;
  width: 1296px;
  margin: 0 auto;
}

.studio .legende .title {
  margin: 4rem 0 2rem;
  font-size: 3rem;
  font-style: italic;
}

.studio .legende-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 4rem;
}

.studio .legende-list-item {
  align-items: center;
  display: flex;
  width: calc(25% - 1rem);
  margin: 0 .5rem .5rem;
}

.studio .legende .label {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 99999px;
  margin-right: .5rem;
}

.studio .legende .label:not(.label--text) {
  box-shadow: -3px 1px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.studio .legende .label--text {
  color: red;
}

.studio .commandes-rouleaux-header {
  text-align: center;
  padding: 1rem;
}

.studio .commandes-rouleaux-content {
  padding: 0 1rem 1rem;
  background: #d9f9f3;
}

.studio .commandes-rouleaux-content-container {
  padding: 1rem 1.5rem .5rem;
  background: #ffffff;
}

.studio .commandes-rouleaux-content-container-header {
  font-size: 1.1rem;
  font-weight: 600;
}

.studio .commandes-rouleaux-content-container-header small {
  font-size: 1rem;
}

.studio .commandes-rouleaux-content-container-header a {
  text-decoration: underline;
  color: #0067b7;
}

.studio .commandes-rouleaux-content-container-content {
  margin-top: 2.5rem;
}

.studio .commandes-rouleaux-content-container-content > strong {
  font-size: 1.2rem;
  font-weight: 600;
}

.studio .commandes-rouleaux-content-container-content .group {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 1rem -.5rem;
}

.studio .commandes-rouleaux-content-container-content .group .item:nth-child(1) {
  width: 680px;
}

.studio .commandes-rouleaux-content-container-content .group .item:nth-child(2), .studio .commandes-rouleaux-content-container-content .group .item:nth-child(3) {
  margin-left: -.5rem;
  width: 277px;
}

.studio .commandes-rouleaux-content-container-content .group .item:nth-child(4) {
  width: 204px;
}

.studio .commandes-rouleaux-content-container-content .group .item select {
  width: 80%;
  min-width: 15rem;
  height: 100%;
}

.studio .commandes-rouleaux-content-container-content-list {
  margin-top: .5rem;
}

.studio .commandes-rouleaux-content-container-content-list-item {
  display: flex;
  justify-content: space-between;
  margin: 0 -.5rem;
  padding: 0 .5rem;
}

.studio .commandes-rouleaux-content-container-content-list-item .btn {
  display: block;
  margin: .5rem 0;
  padding: .5rem;
  width: 100%;
  border-radius: 4px;
}

.studio .commandes-rouleaux-content-container-content-list-item:not(:last-child):not(.list-header):not(.bg-witch-haze) {
  border-bottom: 1px solid #9b9c9f;
}

.studio .commandes-rouleaux-content-container-content-list-item.bg-witch-haze:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}

.studio .commandes-rouleaux-content-container-content-list-item ul {
  margin: .5rem -.5rem .5rem 0;
  display: flex;
  flex-direction: column;
}

.studio .commandes-rouleaux-content-container-content-list-item ul li {
  width: 100%;
}

.studio .commandes-rouleaux-content-container-content-list-item strong {
  font-weight: 600;
}

.studio .commandes-rouleaux-content-container-content-list-item > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: .5rem;
  margin: -.5rem;
}

.studio .commandes-rouleaux-content-container-content-list-item > *:nth-child(1) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.studio .commandes-rouleaux-content-container-content-list-item > *:nth-child(2) {
  width: 20%;
}

.studio .commandes-rouleaux-content-container-content-list-item > *:nth-child(3) {
  width: 10%;
}

.studio .commandes-rouleaux-content-container-content-list-item > *:nth-child(4) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.studio .commandes-rouleaux-content-container-content-list-item > *:nth-child(5) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.studio .commandes-rouleaux-content-container-content-list-item > *:nth-child(6) {
  width: 15%;
}

.studio .add {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 1rem;
  margin-left: auto;
  width: max-content;
  font-weight: 600;
}

.studio .add img {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.studio .commerciaux {
  margin: 0 auto;
  width: 70rem;
}

.studio .commerciaux strong {
  font-weight: 600;
}

.studio .commerciaux .shop-header {
  margin-bottom: 0;
}

.studio .commerciaux-popin {
  position: absolute;
  top: 0;
  left: 0;
  background: #d9f9f3;
  padding: 1rem;
  border: 1px solid #0067b7;
  width: 100%;
}

.studio .commerciaux-popin.closed {
  display: none;
}

.studio .commerciaux-popin-header {
  padding-top: 1rem;
  padding-bottom: .25rem;
}

.studio .commerciaux-popin-content {
  background: #ffffff;
  padding: 1rem;
  width: 100%;
}

.studio .commerciaux-popin-content-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.studio .commerciaux-popin-content-container span {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  width: 100%;
}

.studio .commerciaux-popin-content-container span > * {
  width: 50%;
}

.studio .commerciaux-popin-content-container span strong {
  text-align: right;
  font-weight: 600;
  margin-right: 1rem;
  margin-left: -1rem;
}

.studio .commerciaux-popin-content-container span input, .studio .commerciaux-popin-content-container span select {
  width: 16rem;
  height: 2rem;
}

.studio .commerciaux-content {
  padding: 0 1rem 1rem;
  margin-bottom: 3rem;
  background: #d9f9f3;
  position: relative;
}

.studio .commerciaux-content-container {
  background: #ffffff;
  padding: 1rem .5rem .5rem;
}

.studio .commerciaux-header {
  display: flex;
  justify-content: space-between;
}

.studio .commerciaux-header strong {
  padding: 1rem 0;
  text-align: center;
}

.studio .commerciaux-header strong:nth-child(2), .studio .commerciaux-header strong:nth-child(3) {
  text-align: left;
}

.studio .commerciaux-header strong:nth-child(1), .studio .commerciaux-header strong:nth-child(3) {
  width: 23.75%;
}

.studio .commerciaux-header strong:nth-child(2) {
  width: 40%;
}

.studio .commerciaux-header strong:nth-child(4) {
  width: 12.5%;
}

.studio .commerciaux-list-item {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.studio .commerciaux-list-item > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.studio .commerciaux-list-item > * a {
  display: flex;
  align-items: center;
}

.studio .commerciaux-list-item > * a:not(:last-child) {
  margin-bottom: .5rem;
}

.studio .commerciaux-list-item > * a .bordered {
  padding: .375rem .75rem;
  background: #ebedf4;
  border-radius: 10px;
}

.studio .commerciaux-list-item > * a img {
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
  margin-right: .5rem;
}

.studio .commerciaux-list-item > *:nth-child(2), .studio .commerciaux-list-item > *:nth-child(3) {
  text-align: left;
}

.studio .commerciaux-list-item > *:nth-child(1), .studio .commerciaux-list-item > *:nth-child(3) {
  width: 23.75%;
}

.studio .commerciaux-list-item > *:nth-child(2) {
  width: 40%;
  align-items: flex-start;
}

.studio .commerciaux-list-item > *:nth-child(3) {
  align-items: flex-start;
}

.studio .commerciaux-list-item > *:nth-child(4) {
  width: 12.5%;
  align-items: flex-start;
}

.studio .op-list .search {
  width: 40rem;
}

.studio .op-list header {
  width: 80rem;
  justify-content: space-between;
  align-items: center;
}

.studio .op-list header > * {
  padding: 0.5rem 0.75rem !important;
}

.studio .op-list header > *:nth-child(1), .studio .op-list header > *:nth-child(3) {
  width: 10rem;
  max-width: 10rem;
  min-width: 10rem;
}

.studio .op-list header > *:nth-child(2) {
  width: 25rem;
  max-width: 25rem;
  min-width: 25rem;
}

.studio .op-list header > *:nth-child(4) {
  width: 20rem;
  max-width: 20rem;
  min-width: 20rem;
}

.studio .op-list header > *:nth-child(5) {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
}

.studio .op-list .listing-bat-list {
  width: 80rem;
}

.studio .op-list .listing-bat-list .listing-bat-item {
  justify-content: space-between;
  min-height: 15rem;
  font-weight: initial;
}

.studio .op-list .listing-bat-list .listing-bat-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.studio .op-list .listing-bat-list .listing-bat-item a span {
  padding: .25rem .5rem;
  background: #ebedf4;
  border-radius: 1rem;
}

.studio .op-list .listing-bat-list .listing-bat-item strong {
  font-weight: 600;
}

.studio .op-list .listing-bat-list .listing-bat-item > *:nth-child(1), .studio .op-list .listing-bat-list .listing-bat-item > *:nth-child(3) {
  max-width: 10rem;
  min-width: 10rem;
  width: 10rem;
}

.studio .op-list .listing-bat-list .listing-bat-item > *:nth-child(1) {
  text-align: left;
}

.studio .op-list .listing-bat-list .listing-bat-item > *:nth-child(2) {
  text-align: left;
  width: 25rem;
  max-width: 25rem;
  min-width: 25rem;
}

.studio .op-list .listing-bat-list .listing-bat-item > *:nth-child(4) {
  width: 20rem;
  max-width: 20rem;
  min-width: 20rem;
}

.studio .op-list .listing-bat-list .listing-bat-item > *:nth-child(5) {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
}

.studio .op-list .listing-bat-list li .bat-list-annonceurs-item,
.studio .op-list .annonceurs-list-item .bat-list-annonceurs .bat-list-annonceurs-item  {
  border: none !important;
  padding-bottom: 0.125rem !important;
}

.studio .op-list .listing-bat-list li .bat-list-annonceurs-item .label,
.studio .op-list .annonceurs-list-item .bat-list-annonceurs .bat-list-annonceurs-item  .label {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  box-shadow: -4px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Espace administration */
.administration {
  position: relative;
  padding: 0 0.25%;
}

.administration .administration-header {
  display: flex;
  align-items: center;
}

.administration .administration-header .logo {
  height: 6rem;
  margin-right: 1rem;
}

.administration .administration-header .newsletter {
  display: flex;
  align-items: center;
  border: 1px solid #9b9c9f;
  border-radius: .5rem;
  padding: .5rem;
  width: 11rem;
  color: #9b9c9f;
  line-height: 1.1rem;
}

.administration .administration-header .newsletter img {
  min-width: 3rem;
  width: 3rem;
  margin-right: .5rem;
}

.administration .administration-header .newsletter p {
  width: calc(100% - 3rem);
  display: flex;
  flex-direction: column;
  font-size: .9rem;
}

.administration .administration-header .newsletter .title {
  color: #e2001a;
  font-size: 1.375rem;
  line-height: 1.5rem;
}

.administration .administration-header .newsletter .date {
  font-size: .8rem;
  display: flex;
  align-items: center;
}

.administration .administration-header .options {
  position: absolute;
  top: .25rem;
  right: .25rem;
  font-size: 1.5rem;
  color: #9b9c9f;
  font-weight: 600;
}

.administration .administration-header .options .option:last-child {
  border-left: 1px solid #9b9c9f;
  padding-left: .375rem;
}

.administration main {
  position: relative;
  background: #ffffff;
  margin: 1rem 0;
  border: .5rem solid #F4B400;
  border-radius: 1rem;
}

.administration main .analyse-header {
  display: flex;
  flex-direction: column;
}

.administration main .analyse-header > strong {
  display: block;
  width: 100%;
  background: #0067b7;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.administration main .analyse-header .desc-container {
  display: flex;
  justify-content: space-between;
  margin: -1rem;
}

.administration main .analyse-header .desc-container .block {
  width: calc(33% - 2rem);
  max-width: max-content;
  margin: 1rem;
}

.administration main .analyse-header .desc-container .action {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20rem;
}

.administration main .analyse-header .desc-container strong {
  font-weight: 600;
}

.administration main .analyse-header .desc-container img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
}

.administration main .analyse-header .desc-container .date {
  display: flex;
  text-align: center;
}

.administration main .analyse-header .desc-container .date .title {
  margin-bottom: 1rem;
}

.administration main .analyse-content {
  display: flex;
  justify-content: space-between;
  margin: 1rem -1rem;
}

.administration main .analyse-item {
  /*width: calc(33% - 2rem);*/
  margin: 1rem;
  border: 1px solid #0067b7;
}

.administration main .analyse-item-header {
  text-align: center;
  border-bottom: 1px solid #0067b7;
  padding: 1rem;
}

.administration main .analyse-item-header strong {
  font-weight: 600;
  font-size: 1.2rem;
}

.administration main .analyse-item-content li {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
  font-size: .9rem;
}

.administration main .analyse-item-content li .left {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
}

.administration main .analyse-item-content li .left em {
  font-size: .8rem;
}

.administration main .analyse-item-content li .left strong {
  font-weight: 600;
}

.administration main .analyse-item-content li .right {
  min-width: 4rem;
  width: 4rem;
  text-align: left;
}

.administration main .shop-edit,
.administration main .annonceurs-edit {
  border: 1px solid #F4B400;
  background: #c6effc;
  margin-top: -1rem;
  padding: 0 1rem 1rem;
}

.administration main .shop-edit-header,
.administration main .annonceurs-edit-header {
  color: #F4B400;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.administration main .shop-edit-header .title,
.administration main .annonceurs-edit-header .title {
  font-size: 1.8rem;
}

.administration main .shop-edit-header .steps,
.administration main .annonceurs-edit-header .steps {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
}

.administration main .shop-edit-header .steps .step,
.administration main .annonceurs-edit-header .steps .step {
  position: relative;
  font-size: 2rem;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  padding-bottom: .5rem;
  text-align: center;
  border-radius: 9999999999px;
  background: #ffffff;
  z-index: 20;
  margin-right: 5rem;
}

.administration main .shop-edit-header .steps .step img,
.administration main .annonceurs-edit-header .steps .step img {
  width: 80%;
  margin-top: .25rem;
}

.administration main .shop-edit-header .steps .step.active, .administration main .shop-edit-header .steps .step.done,
.administration main .annonceurs-edit-header .steps .step.active,
.administration main .annonceurs-edit-header .steps .step.done {
  background: #F4B400;
  color: #ffffff;
}

.administration main .shop-edit-header .steps .step.next,
.administration main .annonceurs-edit-header .steps .step.next {
  background: #c6effc;
  color: #F4B400;
}

.administration main .shop-edit-header .steps .step:last-child,
.administration main .annonceurs-edit-header .steps .step:last-child {
  margin-right: 0;
}

.administration main .shop-edit-header .steps .step:not(:last-child)::after,
.administration main .annonceurs-edit-header .steps .step:not(:last-child)::after {
  content: '';
  width: 5rem;
  position: absolute;
  height: 3px;
  left: 100%;
  background: #0067b7;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.administration main .shop-edit-container,
.administration main .annonceurs-edit-container {
  margin: 0 auto;
  width: max-content;
}

.administration main .shop-edit-content,
.administration main .annonceurs-edit-content {
  background: #ffffff;
  padding: .5rem 1rem;
}

.administration main .shop-edit-content iframe,
.administration main .annonceurs-edit-content iframe {
  width: 100%;
  height: 20rem;
  margin-top: 2rem;
}

.administration main .shop-edit-content .info,
.administration main .annonceurs-edit-content .info {
  color: #e2001a;
  font-size: .8rem;
}

.administration main .shop-edit-content .info-bottom,
.administration main .annonceurs-edit-content .info-bottom {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.administration main .shop-edit-content .raw,
.administration main .annonceurs-edit-content .raw {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100rem;
  margin: .5rem auto;
}

.administration main .shop-edit-content .raw .group,
.administration main .annonceurs-edit-content .raw .group {
  display: flex;
  align-items: center;
}

.administration main .shop-edit-content .raw .group ~ .group,
.administration main .annonceurs-edit-content .raw .group ~ .group {
  margin-left: 6rem;
}

.administration main .shop-edit-content .raw strong,
.administration main .annonceurs-edit-content .raw strong {
  text-align: right;
  font-weight: 600;
  margin-right: 1rem;
  min-width: 12rem;
}

.administration main .shop-edit-content .raw .right,
.administration main .annonceurs-edit-content .raw .right {
  position: relative;
  display: flex;
}

.administration main .shop-edit-content .raw .right.multiline .group,
.administration main .annonceurs-edit-content .raw .right.multiline .group {
  flex-direction: column;
}

.administration main .shop-edit-content .raw .right strong,
.administration main .annonceurs-edit-content .raw .right strong {
  min-width: unset;
}

.administration main .shop-edit-content .raw .right em,
.administration main .annonceurs-edit-content .raw .right em {
  font-size: .8rem;
  color: #9b9c9f;
}

.administration main .shop-edit-content .raw input,
.administration main .shop-edit-content .raw select,
.administration main .annonceurs-edit-content .raw input,
.administration main .annonceurs-edit-content .raw select {
  margin-right: 1rem;
}

.administration main .shop-edit-content.step2 .raw > strong, .administration main .shop-edit-content.step3 .raw > strong,
.administration main .annonceurs-edit-content.step2 .raw > strong,
.administration main .annonceurs-edit-content.step3 .raw > strong {
  min-width: 16rem;
}

.administration main .shop-edit-content.step2 input:not([type=checkbox]),
.administration main .shop-edit-content.step2 select:not([type=checkbox]), .administration main .shop-edit-content.step3 input:not([type=checkbox]),
.administration main .shop-edit-content.step3 select:not([type=checkbox]),
.administration main .annonceurs-edit-content.step2 input:not([type=checkbox]),
.administration main .annonceurs-edit-content.step2 select:not([type=checkbox]),
.administration main .annonceurs-edit-content.step3 input:not([type=checkbox]),
.administration main .annonceurs-edit-content.step3 select:not([type=checkbox]) {
  width: 10rem;
}

.administration main .shop-edit-content.step2 input[type=checkbox],
.administration main .shop-edit-content.step2 select[type=checkbox], .administration main .shop-edit-content.step3 input[type=checkbox],
.administration main .shop-edit-content.step3 select[type=checkbox],
.administration main .annonceurs-edit-content.step2 input[type=checkbox],
.administration main .annonceurs-edit-content.step2 select[type=checkbox],
.administration main .annonceurs-edit-content.step3 input[type=checkbox],
.administration main .annonceurs-edit-content.step3 select[type=checkbox] {
  margin-left: 3rem;
}

.administration main .shop-edit.campagnes-form .raw > strong,
.administration main .annonceurs-edit.campagnes-form .raw > strong {
  min-width: 20rem;
  width: 20rem;
}

.administration main .shop-edit.campagnes-form .raw > strong small,
.administration main .annonceurs-edit.campagnes-form .raw > strong small {
  font-size: .6rem;
}

.administration main .shop-edit.campagnes-form .raw .group ~ .group,
.administration main .annonceurs-edit.campagnes-form .raw .group ~ .group {
  margin-left: 0;
}

.administration main .shop-edit.campagnes-form .raw .group ~ .group strong,
.administration main .annonceurs-edit.campagnes-form .raw .group ~ .group strong {
  width: max-content;
}

.administration main .content {
  width: 100%;
  margin: 0 auto;
  padding: 0rem;
}

.administration main .content .actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.administration main .content .actions .left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.administration main .content .actions .left div {
  color: #0067b7;
  font-weight: 600;
  margin-top: .5rem;
}

.administration main .content .actions .left em {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  color: #9b9c9f;
  font-size: .9rem;
}

.administration main .content .actions .left em img {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.administration main .content .actions .left em span {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  background: #d0f7f1;
}

.administration main .content .actions .search {
  width: 100%;
  max-width: 26rem;
  height: 1.5rem;
}

.administration main .content .actions .right {
  display: flex;
}

.administration main .content .actions .right p {
  display: flex;
  flex-direction: column;
  max-width: 14rem;
  justify-content: center;
}

.administration main .content .actions .right p a {
  display: flex;
  align-items: center;
  margin: .25rem 0;
}

.administration main .content .actions .right p img {
  height: 1rem;
  margin-right: .25rem;
}

.administration main .content .actions .right p img.icon--bigger {
  height: 2rem;
  margin-right: .5rem;
}

.administration main .content .actions .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  margin-right: 0;
}

.administration main .content.masonry-container {
  max-width: 70rem;
  margin: 0 auto;
}

.administration main .content.masonry-container .shop-grid {
  margin: 0 auto 1rem;
}

.administration .navigation .outset {
  position: absolute;
  top: -3rem;
  right: -.5rem;
  padding: 1rem 1.5rem 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  background: #F4B400;
  margin-bottom: -1.5rem;
  border-radius: 1rem;
  z-index: -1;
  width: 25rem;
}

.administration .navigation .outset img {
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 2.5rem;
  right: .75rem;
}

.administration .navigation .primary,
.administration .navigation .secondary {
  width: 100%;
  display: flex;
}

.administration .navigation .primary li,
.administration .navigation .secondary li {
  width: 20%;
  text-align: center;
}

.administration .navigation .primary {
  border-radius: .5rem .5rem 0 0;
  color: #ffffff;
  background: #F9DA80;
  font-weight: 600;
}

.administration .navigation .primary li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2rem;
  cursor: pointer;
}

.administration .navigation .primary .active {
  background: #F4B400;
  border-radius: .25rem .25rem 0 0;
}

.administration .navigation .secondary {
  color: #F4B400;
  background: #c6effc;
  font-weight: 600;
}

.administration .navigation .secondary li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  cursor: pointer;
}

.administration .navigation .secondary .active {
  background-color: #e2001a;
  color: #ffffff;
}

.administration .shop-header {
  width: 100%;
  background: #F4B400;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.administration .shop--archive .shop-header {
  background: #9d00e0;
}

.administration .shop--archive tr th, .administration .shop--archive tr:nth-child(even) {
  background-color: #f2ebf4 !important;
}

.administration .shop-content table {
  width: 100%;
  margin-top: -1rem;
}

.administration .shop-content thead {
  text-align: left;
  font-weight: 600;
  color: #0067b7;
}

.administration .shop-content th {
  padding: 1rem .25rem;
  background: #e2f7fe;
  font-weight: 600;
}

.administration .shop-content tr {
  border-bottom: 1px solid #0067b7;
}

.administration .shop-content tr:nth-child(even) {
  background-color: #e8fbf8;
}

.administration .shop-content thead tr {
  border: none;
}

.administration .shop-content td {
  padding: 0 1rem 0 .25rem;
  font-size: .9rem;
  vertical-align: middle;
}

.administration .shop-content td:nth-child(1), .administration .shop-content th:nth-child(1) {
  max-width: 25%;
}

.administration .shop-content td:nth-child(2), .administration .shop-content th:nth-child(2) {
  max-width: 25%;
}

.administration .shop-content td:nth-child(3), .administration .shop-content th:nth-child(3) {
  max-width: 25%;
}

.administration .shop-content td:nth-child(4), .administration .shop-content th:nth-child(4) {
  max-width: 25%;
}

.administration .shop-content td:nth-child(5), .administration .shop-content th:nth-child(5) {
  max-width: 25%;
}

.administration .shop-content strong {
  font-weight: 600;
  color: #0067b7;
  margin-right: .25rem;
  min-width: max-content;
}

.administration .shop-content span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: .5rem 0;
}

.administration .shop-content .picto {
  width: 2rem;
  height: 2rem;
  object-position: center;
  object-fit: contain;
  margin-right: .5rem;
}

.administration .shop-grouped table {
  margin-top: -1rem;
}

.administration .shop-grouped table th {
  padding: 1rem .5rem;
}

.administration .shop-grouped table td {
  padding: 1rem 1rem 1rem 0;
}

.administration .shop-grouped table td li {
  padding: .375rem 0;
}

.administration .shop-new-group .shop-edit-content .raw strong {
  min-width: 15rem;
}

.administration .shop-new-group .shop-edit-content .raw .right {
  width: 100%;
}

.administration .shop-new-group .shop-edit-content .raw .right .line {
  display: flex;
  margin: .25rem 0;
}

.administration .shop-new-group .shop-edit-content .raw .right .group {
  width: 100%;
  align-items: flex-start;
}

.administration .shop-new-group .shop-edit-content .raw .right .group ~ .group {
  margin-left: 0;
}

.administration .shop-new-group .bordered {
  margin-top: .5rem;
  padding: .25rem;
  border: 1px solid #9b9c9f;
  color: #0ea5e4;
  border-radius: .5rem;
  background-color: #ffffff;
}

.administration .shop-new-group input:not([type=checkbox]),
.administration .shop-new-group select {
  width: 100%;
}

.administration .annonceurs-header {
  width: 100%;
  background: #0067b7;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.administration .annonceurs-table {
  width: 100%;
}

.administration .annonceurs-table tr {
  border-bottom: 1px solid #0067b7;
}

.administration .annonceurs-table th, .administration .annonceurs-table td {
  padding-bottom: 1rem;
}

.administration .annonceurs-table img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  object-position: center;
}

.administration .annonceurs-table strong {
  font-weight: 600;
  color: #0067b7;
}

.administration .annonceurs-table tbody td {
  padding-top: 1rem;
  vertical-align: middle;
  line-height: 2rem;
}

.administration .annonceurs-table tbody td span {
  display: block;
}

.administration .annonceurs-table thead {
  color: #0067b7;
}

.administration .date img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
}

.administration .campagnes {
  position: relative;
  background: #d9f9f3;
  margin-top: -1rem;
  padding: 1rem;
}

.administration .campagnes::before {
  content: '';
  position: absolute;
  background: #ffffff;
  width: calc(100% - 2rem);
  height: calc(100% - 1rem);
  top: 0;
  left: 1rem;
  z-index: 0;
}

.administration .campagnes > * {
  position: relative;
  z-index: 1;
}

.administration .campagnes-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0067b7;
}

.administration .campagnes-header strong {
  text-align: center;
  font-weight: 600;
  width: calc(100% - 18rem);
}

.administration .campagnes-header strong:first-child {
  width: 18rem;
}

.administration .campagnes .annonceurs-list-item {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0067b7;
}

.administration .campagnes .annonceurs-list-item img {
  width: 2rem;
  height: 2rem;
  margin-right: .5rem;
}

.administration .campagnes .annonceurs-list-item a {
  display: flex;
  align-items: center;
}

.administration .campagnes .annonceurs-list-item strong {
  color: #0067b7;
  font-weight: 600;
}

.administration .campagnes .annonceurs-list-item .annonceur {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 18rem;
  padding-right: 1rem;
}

.administration .campagnes .annonceurs-list-item .annonceur span {
  margin-bottom: .5rem;
}

.administration .campagnes .annonceurs-list-item .campagnes-list {
  width: calc(100% - 18rem);
}

.administration .campagnes .annonceurs-list-item .campagnes-list-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 4rem;
}

.administration .campagnes .annonceurs-list-item .campagnes-list-item:last-child {
  margin-bottom: 0;
}

.administration .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info, .administration .campagnes .annonceurs-list-item .campagnes-list-item .campagne-actions {
  display: flex;
  flex-direction: column;
}

.administration .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info {
  width: calc(100% / 2 - 10rem);
  justify-content: space-between;
}

.administration .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info span {
  margin-bottom: .5rem;
}

.administration .campagnes .annonceurs-list-item .campagnes-list-item .campagne-actions {
  width: 10rem;
  justify-content: center;
}

.administration .campagnes .annonceurs-list-item .campagnes-list-add {
  margin-top: 2rem;
}

.administration .dates a {
  color: #0ea5e4;
  font-weight: 600;
}

.administration .dates a:not(:last-child)::after {
  content: '/';
  color: #0ea5e4;
  margin-left: .375rem;
  pointer-events: none;
}

.administration .dates a.active {
  color: #e2001a;
}

.administration .shop-header.special-header {
  text-transform: initial;
  font-size: 1.5rem;
}

.administration .shop-header.special-header ~ .search {
  margin: .5rem 0 2rem;
}

.administration .shop-header.special-header .tabs {
  display: flex;
  font-size: 1rem;
  margin: 1rem -.25rem -1rem;
}

.administration .shop-header.special-header .tabs li {
  width: 25%;
  padding: 1rem .5rem .5rem;
  text-transform: initial;
  text-align: center;
  color: #000000;
  background: #0ea5e4;
  border-radius: 1rem 1rem 0 0;
  margin: 0 .25rem;
}

.administration .shop-header.special-header .tabs li span {
  font-weight: 600;
}

.administration .shop-header.special-header .tabs li.active {
  background-color: #ffffff;
}

.administration .bat-visu {
  padding-bottom: 0;
}

.administration .bat-visu strong {
  padding: .75rem 0 .25rem;
}

.administration .bat-visu strong:first-child {
  width: 10rem;
  min-width: 10rem;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande {
  background: #eaeaea;
  padding: 0;
  border: none;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande:first-child {
  margin-top: 0;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande p:not(.historique) {
  font-size: 1.2rem;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .no-img {
  height: 6rem;
  width: 14rem;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .no-img img {
  width: 100%;
  height: 100%;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .historique {
  background: #e0e0e0;
  align-self: auto;
  justify-content: center;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande a {
  display: inline;
  font-weight: 600;
  text-decoration: underline;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item strong {
  font-weight: 600;
  color: inherit;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item p {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: calc(100% - 10rem);
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item p span {
  margin: .5rem 0;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item .bat-preview {
  justify-content: center;
  align-items: center;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item .large {
  width: 100%;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item .minia {
  width: 60%;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item .large img, .administration .bat-visu ~ .annonceurs-list .annonceurs-list-item .minia img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  object-position: center;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item .links {
  color: #0ea5e4;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: max-content;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item .links a {
  width: calc(33% - 1rem);
  margin: 2rem .5rem;
  text-align: center;
  justify-content: center;
}

.administration .bat-visu ~ .annonceurs-list .annonceurs-list-item .historique {
  min-width: 10rem;
  width: 10rem;
  margin-right: 1rem;
}

.administration .back img {
  width: 1.5rem;
  margin-right: .5rem;
}

.administration .back a {
  display: flex;
  align-items: center;
  color: #9b9c9f;
}

.administration .maquette-info {
  margin-top: -1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.administration .maquette-info span {
  margin-bottom: 1rem;
}

.administration .maquette-info span:last-child {
  margin: 0;
}

.administration .maquette-info strong {
  font-weight: 600;
}

.administration .maquette-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.administration .maquette-form-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: .5rem 0;
}

.administration .maquette-form-content-left {
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  width: 66%;
  padding-right: 4rem;
}

.administration .maquette-form-content-left > strong {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.administration .maquette-form-content-left > em {
  font-size: .8rem;
  color: #9b9c9f;
  text-align: right;
}

.administration .maquette-form-content-left-content li {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  font-weight: bold;
  min-height: 3rem;
}

.administration .maquette-form-content-left-content li.spacer {
  margin: 1rem;
}

.administration .maquette-form-content-left-content li strong {
  width: 14rem;
  text-align: right;
  margin-right: 1rem;
}

.administration .maquette-form-content-left-content li .group {
  width: calc(100% - 14rem);
}

.administration .maquette-form-content-left-content input[type=text] {
  width: 5rem;
}

.administration .maquette-form-content-left-content label {
  margin-right: 1rem;
}

.administration .maquette-form-content-left-content label.f05, .administration .maquette-form-content-left-content label.f10, .administration .maquette-form-content-left-content label.f15, .administration .maquette-form-content-left-content label.f20 {
  position: relative;
  display: inline-block;
  padding-top: 5rem;
  width: 4rem;
}

.administration .maquette-form-content-left-content label.f05::after, .administration .maquette-form-content-left-content label.f10::after, .administration .maquette-form-content-left-content label.f15::after, .administration .maquette-form-content-left-content label.f20::after {
  content: '';
  position: absolute;
  background: #d6d6d6;
  width: 4rem;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  left: -1rem;
}

.administration .maquette-form-content-left-content label.f05::after {
  height: 1rem;
}

.administration .maquette-form-content-left-content label.f10:after {
  height: 2rem;
}

.administration .maquette-form-content-left-content label.f15:after {
  height: 3rem;
}

.administration .maquette-form-content-left-content label.f20:after {
  height: 4rem;
}

.administration .maquette-form-content-right {
  background: #6de8d4;
  color: #ffffff;
  text-align: center;
  border-radius: 1rem;
  padding: 1rem 0;
  width: calc(33% - 2rem);
  align-self: baseline;
}

.administration .maquette-form-content-right header {
  font-size: 1.25rem;
  font-weight: 600;
}

.administration .maquette-form-content-right-content {
  color: #6de8d4;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 1rem .5rem;
}

.administration .maquette-form-content-right-content textarea {
  color: #6de8d4;
  font-weight: 600;
  margin-top: 1rem;
  border: none;
  font-family: "Raleway", sans-serif;
  resize: none;
}

.administration .maquette-form-submit {
  border: 0;
  background: #0067b7;
  color: #ffffff;
  font-size: 1.1rem;
  padding: .5rem;
  border-radius: .75rem;
  margin: 1rem 0 .5rem;
}

.administration .maquette-preview {
  position: relative;
  border: 1px solid #9b9c9f;
  padding: .5rem;
  max-width: 100rem;
  margin: 2rem auto 8rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.administration .maquette-preview .close {
  position: absolute;
  width: 2rem;
  height: 2rem;
  font-size: 1.8rem;
  padding: .2rem;
  text-align: center;
  top: -1rem;
  right: -1rem;
  background: #ffffff;
  color: #4f4f52;
  border: 1px solid #4f4f52;
  cursor: pointer;
}

.administration .maquette-preview-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}

.administration .maquette-preview-top .logo {
  width: 10rem;
}

.administration .maquette-preview-top p {
  text-align: right;
  display: flex;
  flex-direction: column;
  color: #e2001a;
}

.administration .maquette-preview-top p strong {
  color: #000000;
}

.administration .maquette-preview-top p .fax {
  font-size: 2.25rem;
}

.administration .maquette-preview-top p .tel {
  font-size: 1.8rem;
}

.administration .maquette-preview-middle {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.administration .maquette-preview-middle .left {
  display: flex;
  flex-direction: column;
  width: calc(100% - 27rem);
}

.administration .maquette-preview-middle .left p {
  display: flex;
  flex-direction: column;
}

.administration .maquette-preview-middle .left p span {
  margin-bottom: 1rem;
}

.administration .maquette-preview-middle-img {
  margin-top: 4rem;
  width: 80%;
  height: 10rem;
  object-fit: cover;
  object-position: center;
  border: 1px dashed #9b9c9f;
  align-self: center;
}

.administration .maquette-preview-middle .right {
  width: 27rem;
  padding: 1.25rem;
  border: 1px solid #9b9c9f;
  border-radius: 1.5rem;
  font-family: serif;
  color: #4f4f52;
}

.administration .maquette-preview-middle .right p {
  margin-bottom: 1rem;
  text-align: justify;
  text-align-last: left;
  line-height: 1.375rem;
}

.administration .maquette-preview-middle .right p:last-child {
  margin-bottom: 0;
}

.administration .maquette-preview-middle .right .bat-text {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}

.administration .maquette-preview-middle .right .bat-text strong {
  font-size: 1.5rem;
}

.administration .maquette-preview-middle .right .bat-text em {
  margin-right: 2rem;
}

.administration .maquette-preview-middle .right .cachet {
  margin-bottom: 3.5rem;
}

.administration .maquette-preview-bottom {
  margin: 5rem 0 10rem;
  text-align: center;
  width: 100%;
}

.administration .maquette-preview-bottom-img {
  width: 80%;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  border: 2px dashed #9b9c9f;
}

.administration .maquette-olapromo strong {
  font-weight: 600;
  color: #9d00e0;
}

.administration .maquette-olapromo .maquette-preview-middle {
  margin: 4rem 0 6rem;
  display: flex;
  flex-direction: column;
  width: 12rem;
}

.administration .maquette-olapromo .maquette-preview-middle img {
  height: 8rem;
  width: 100%;
  border: 1px dashed #9b9c9f;
  object-position: center;
  object-fit: cover;
}

.administration .maquette-olapromo .maquette-preview-bottom {
  text-align: left;
}

.administration .maquette-olapromo .maquette-preview-bottom .top {
  position: relative;
  margin-bottom: .5rem;
}

.administration .maquette-olapromo .maquette-preview-bottom .top-cachet {
  text-align: right;
  width: 12rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
}

.administration .maquette-olapromo .maquette-preview-bottom .top-cachet strong {
  color: #000000;
}

.administration .maquette-olapromo .maquette-preview-bottom .top-cachet span {
  font-size: .6rem;
}

.administration .maquette-olapromo .maquette-preview-bottom .bottom {
  display: flex;
  width: calc(100% - 12rem);
  padding-right: .5rem;
}

.administration .maquette-olapromo .maquette-preview-bottom .bottom img {
  width: 18rem;
  min-width: 18rem;
  height: 12rem;
  object-fit: cover;
  object-position: center;
  border: 1px dashed #9b9c9f;
  margin-right: .75rem;
}

.administration .maquette-olapromo .maquette-preview-bottom .bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: .9rem;
}

.administration .maquette-olapromo .maquette-preview-bottom .bottom-content p {
  display: flex;
  flex-direction: column;
}

.administration .maquette-olapromo .maquette-preview-bottom .bottom-content p:last-child {
  align-self: center;
  text-align: center;
}

.administration .maquette-olapromo .maquette-preview-bottom .bottom-content small, .administration .maquette-olapromo .maquette-preview-bottom .bottom-content em {
  color: #9b9c9f;
  font-size: .75rem;
}

.administration .maquette-olapromo .maquette-preview-bottom .bottom-content strong {
  font-size: 1rem;
  margin-bottom: .5rem;
}

.administration .listing-bat {
  margin: 0 auto 1.5rem;
  text-align: center;
  min-width: 10rem;
  max-width: 30rem;
  border: 1px solid #0ea5e4;
}

.administration .listing-bat li {
  padding: .375rem;
}

.administration .listing-bat .list-title {
  text-transform: uppercase;
  font-weight: 600;
  background: #0ea5e4;
  color: #ffffff;
  font-size: 1.2rem;
}

.administration .listing-bat li:not(:last-child) {
  border-bottom: 1px solid #0ea5e4;
}

.administration .list-bat-header {
  justify-content: center;
  margin: 0 auto;
  width: max-content;
  text-align: center;
  border: none;
}

.administration .list-bat-header strong:nth-child(1), .administration .list-bat-header strong:nth-child(4), .administration .list-bat-header strong:nth-child(5) {
  min-width: 8rem;
  max-width: 8rem;
}

.administration .list-bat-header strong:nth-child(2) {
  min-width: 15rem;
  max-width: 15rem;
}

.administration .list-bat-header strong:nth-child(3) {
  min-width: 30rem;
  max-width: 30rem;
}

.administration .list-bat-header strong:nth-child(6) {
  min-width: 12rem;
  max-width: 12rem;
}

.administration .listing-bat-list {
  width: max-content;
  margin: 0 auto;
  font-weight: 600;
}

.administration .listing-bat-list li {
  border-bottom-color: #000000 !important;
  align-items: center;
}

.administration .listing-bat-list li > * {
  text-align: center;
}

.administration .listing-bat-list li > *:nth-child(1) {
  min-width: 8rem;
  max-width: 8rem;
}

.administration .listing-bat-list li > *:nth-child(2) {
  min-width: 15rem;
  max-width: 15rem;
}

.administration .listing-bat-list li .bat-list-annonceurs {
  width: max-content;
  display: flex;
  flex-direction: column;
}

.administration .listing-bat-list li .bat-list-annonceurs-item {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000000;
}

.administration .listing-bat-list li .bat-list-annonceurs-item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.administration .listing-bat-list li .bat-list-annonceurs-item .label {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 99999999999999px;
  box-shadow: -14px 4px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 1.5rem;
}

.administration .listing-bat-list li .bat-list-annonceurs-item figure {
  text-align: center !important;
}

.administration .listing-bat-list li .bat-list-annonceurs-item figure img {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem !important;
  max-width: 2.5rem !important;
}

.administration .listing-bat-list li .bat-list-annonceurs-item a svg {
  margin: 0 auto;
  font-size: 2.5rem;
  color: #f5c11d;
}

.administration .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(2), .administration .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(3) {
  min-width: 8rem;
  max-width: 8rem;
}

.administration .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(1) {
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 4rem;
  min-width: 30rem;
  max-width: 30rem;
}

.administration .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(4) {
  min-width: 12rem;
  max-width: 12rem;
}

.administration .legende {
  display: flex;
  flex-direction: column;
  width: 1296px;
  margin: 0 auto;
}

.administration .legende .title {
  margin: 4rem 0 2rem;
  font-size: 3rem;
  font-style: italic;
}

.administration .legende-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 4rem;
}

.administration .legende-list-item {
  align-items: center;
  display: flex;
  width: calc(25% - 1rem);
  margin: 0 .5rem .5rem;
}

.administration .legende .label {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 99999px;
  margin-right: .5rem;
}

.administration .legende .label:not(.label--text) {
  box-shadow: -3px 1px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.administration .legende .label--text {
  color: red;
}

.administration .commandes-rouleaux-header {
  text-align: center;
  padding: 1rem;
}

.administration .commandes-rouleaux-content {
  padding: 0 1rem 1rem;
  background: #d9f9f3;
}

.administration .commandes-rouleaux-content-container {
  padding: 1rem 1.5rem .5rem;
  background: #ffffff;
}

.administration .commandes-rouleaux-content-container-header {
  font-size: 1.1rem;
  font-weight: 600;
}

.administration .commandes-rouleaux-content-container-header small {
  font-size: 1rem;
}

.administration .commandes-rouleaux-content-container-header a {
  text-decoration: underline;
  color: #0067b7;
}

.administration .commandes-rouleaux-content-container-content {
  margin-top: 2.5rem;
}

.administration .commandes-rouleaux-content-container-content > strong {
  font-size: 1.2rem;
  font-weight: 600;
}

.administration .commandes-rouleaux-content-container-content .group {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 1rem -.5rem;
}

.administration .commandes-rouleaux-content-container-content .group .item:nth-child(1) {
  width: 680px;
}

.administration .commandes-rouleaux-content-container-content .group .item:nth-child(2), .administration .commandes-rouleaux-content-container-content .group .item:nth-child(3) {
  margin-left: -.5rem;
  width: 277px;
}

.administration .commandes-rouleaux-content-container-content .group .item:nth-child(4) {
  width: 204px;
}

.administration .commandes-rouleaux-content-container-content .group .item select {
  width: 80%;
  min-width: 15rem;
  height: 100%;
}

.administration .commandes-rouleaux-content-container-content-list {
  margin-top: .5rem;
}

.administration .commandes-rouleaux-content-container-content-list-item {
  display: flex;
  justify-content: space-between;
  margin: 0 -.5rem;
  padding: 0 .5rem;
}

.administration .commandes-rouleaux-content-container-content-list-item .btn {
  display: block;
  margin: .5rem 0;
  padding: .5rem;
  width: 100%;
  border-radius: 4px;
}

.administration .commandes-rouleaux-content-container-content-list-item:not(:last-child):not(.list-header):not(.bg-witch-haze) {
  border-bottom: 1px solid #9b9c9f;
}

.administration .commandes-rouleaux-content-container-content-list-item.bg-witch-haze:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}

.administration .commandes-rouleaux-content-container-content-list-item ul {
  margin: .5rem -.5rem .5rem 0;
  display: flex;
  flex-direction: column;
}

.administration .commandes-rouleaux-content-container-content-list-item ul li {
  width: 100%;
}

.administration .commandes-rouleaux-content-container-content-list-item strong {
  font-weight: 600;
}

.administration .commandes-rouleaux-content-container-content-list-item > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: .5rem;
  margin: -.5rem;
}

.administration .commandes-rouleaux-content-container-content-list-item > *:nth-child(1) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.administration .commandes-rouleaux-content-container-content-list-item > *:nth-child(2) {
  width: 20%;
}

.administration .commandes-rouleaux-content-container-content-list-item > *:nth-child(3) {
  width: 10%;
}

.administration .commandes-rouleaux-content-container-content-list-item > *:nth-child(4) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.administration .commandes-rouleaux-content-container-content-list-item > *:nth-child(5) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.administration .commandes-rouleaux-content-container-content-list-item > *:nth-child(6) {
  width: 15%;
}

.administration .add {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 1rem;
  margin-left: auto;
  width: max-content;
  font-weight: 600;
}

.administration .add img {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.administration .commerciaux {
  margin: 0 auto;
  width: 70rem;
}

.administration .commerciaux strong {
  font-weight: 600;
}

.administration .commerciaux .shop-header {
  margin-bottom: 0;
}

.administration .commerciaux-popin {
  position: absolute;
  top: 0;
  left: 0;
  background: #d9f9f3;
  padding: 1rem;
  border: 1px solid #0067b7;
  width: 100%;
}

.administration .commerciaux-popin.closed {
  display: none;
}

.administration .commerciaux-popin-header {
  padding-top: 1rem;
  padding-bottom: .25rem;
}

.administration .commerciaux-popin-content {
  background: #ffffff;
  padding: 1rem;
  width: 100%;
}

.administration .commerciaux-popin-content-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.administration .commerciaux-popin-content-container span {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  width: 100%;
}

.administration .commerciaux-popin-content-container span > * {
  width: 50%;
}

.administration .commerciaux-popin-content-container span strong {
  text-align: right;
  font-weight: 600;
  margin-right: 1rem;
  margin-left: -1rem;
}

.administration .commerciaux-popin-content-container span input, .administration .commerciaux-popin-content-container span select {
  width: 16rem;
  height: 2rem;
}

.administration .commerciaux-content {
  padding: 0 1rem 1rem;
  margin-bottom: 3rem;
  background: #d9f9f3;
  position: relative;
}

.administration .commerciaux-content-container {
  background: #ffffff;
  padding: 1rem .5rem .5rem;
}

.administration .commerciaux-header {
  display: flex;
  justify-content: space-between;
}

.administration .commerciaux-header strong {
  padding: 1rem 0;
  text-align: center;
}

.administration .commerciaux-header strong:nth-child(2), .administration .commerciaux-header strong:nth-child(3) {
  text-align: left;
}

.administration .commerciaux-header strong:nth-child(1), .administration .commerciaux-header strong:nth-child(3) {
  width: 23.75%;
}

.administration .commerciaux-header strong:nth-child(2) {
  width: 40%;
}

.administration .commerciaux-header strong:nth-child(4) {
  width: 12.5%;
}

.administration .commerciaux-list-item {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.administration .commerciaux-list-item > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.administration .commerciaux-list-item > * a {
  display: flex;
  align-items: center;
}

.administration .commerciaux-list-item > * a:not(:last-child) {
  margin-bottom: .5rem;
}

.administration .commerciaux-list-item > * a .bordered {
  padding: .375rem .75rem;
  background: #ebedf4;
  border-radius: 10px;
}

.administration .commerciaux-list-item > * a img {
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
  margin-right: .5rem;
}

.administration .commerciaux-list-item > *:nth-child(2), .administration .commerciaux-list-item > *:nth-child(3) {
  text-align: left;
}

.administration .commerciaux-list-item > *:nth-child(1), .administration .commerciaux-list-item > *:nth-child(3) {
  width: 23.75%;
}

.administration .commerciaux-list-item > *:nth-child(2) {
  width: 40%;
  align-items: flex-start;
}

.administration .commerciaux-list-item > *:nth-child(3) {
  align-items: flex-start;
}

.administration .commerciaux-list-item > *:nth-child(4) {
  width: 12.5%;
  align-items: flex-start;
}

.administration .op-list .search {
  width: 40rem;
}

.administration .op-list header {
  width: 80rem;
  justify-content: space-between;
  align-items: center;
}

.administration .op-list header > * {
  padding: 0.5rem 0.75rem !important;
}

.administration .op-list header > *:nth-child(1), .administration .op-list header > *:nth-child(3) {
  width: 10rem;
  max-width: 10rem;
  min-width: 10rem;
}

.administration .op-list header > *:nth-child(2) {
  width: 25rem;
  max-width: 25rem;
  min-width: 25rem;
}

.administration .op-list header > *:nth-child(4) {
  width: 20rem;
  max-width: 20rem;
  min-width: 20rem;
}

.administration .op-list header > *:nth-child(5) {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
}

.administration .op-list .listing-bat-list {
  width: 80rem;
}

.administration .op-list .listing-bat-list .listing-bat-item {
  justify-content: space-between;
  min-height: 15rem;
  font-weight: initial;
}

.administration .op-list .listing-bat-list .listing-bat-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.administration .op-list .listing-bat-list .listing-bat-item a span {
  padding: .25rem .5rem;
  background: #ebedf4;
  border-radius: 1rem;
}

.administration .op-list .listing-bat-list .listing-bat-item strong {
  font-weight: 600;
}

.administration .op-list .listing-bat-list .listing-bat-item > *:nth-child(1), .administration .op-list .listing-bat-list .listing-bat-item > *:nth-child(3) {
  max-width: 10rem;
  min-width: 10rem;
  width: 10rem;
}

.administration .op-list .listing-bat-list .listing-bat-item > *:nth-child(1) {
  text-align: left;
}

.administration .op-list .listing-bat-list .listing-bat-item > *:nth-child(2) {
  text-align: left;
  width: 25rem;
  max-width: 25rem;
  min-width: 25rem;
}

.administration .op-list .listing-bat-list .listing-bat-item > *:nth-child(4) {
  width: 20rem;
  max-width: 20rem;
  min-width: 20rem;
}

.administration .op-list .listing-bat-list .listing-bat-item > *:nth-child(5) {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
}

.administration .op-list .listing-bat-list li .bat-list-annonceurs-item,
.administration .op-list .annonceurs-list-item .bat-list-annonceurs .bat-list-annonceurs-item  {
  border: none !important;
  padding-bottom: 0.125rem !important;
}

.administration .op-list .listing-bat-list li .bat-list-annonceurs-item .label,
.administration .op-list .annonceurs-list-item .bat-list-annonceurs .bat-list-annonceurs-item  .label {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  box-shadow: -4px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Espace anonyme */
.anonyme {
  position: relative;
  padding: 0 0.25%;
}

.anonyme .anonyme-header {
  display: flex;
  align-items: center;
}

.anonyme .anonyme-header .logo {
  height: 6rem;
  margin-right: 1rem;
}

.anonyme .anonyme-header .newsletter {
  display: flex;
  align-items: center;
  border: 1px solid #9b9c9f;
  border-radius: .5rem;
  padding: .5rem;
  width: 11rem;
  color: #9b9c9f;
  line-height: 1.1rem;
}

.anonyme .anonyme-header .newsletter img {
  min-width: 3rem;
  width: 3rem;
  margin-right: .5rem;
}

.anonyme .anonyme-header .newsletter p {
  width: calc(100% - 3rem);
  display: flex;
  flex-direction: column;
  font-size: .9rem;
}

.anonyme .anonyme-header .newsletter .title {
  color: #e2001a;
  font-size: 1.375rem;
  line-height: 1.5rem;
}

.anonyme .anonyme-header .newsletter .date {
  font-size: .8rem;
  display: flex;
  align-items: center;
}

.anonyme .anonyme-header .options {
  position: absolute;
  top: .25rem;
  right: .25rem;
  font-size: 1.5rem;
  color: #9b9c9f;
  font-weight: 600;
}

.anonyme .anonyme-header .options .option:last-child {
  border-left: 1px solid #9b9c9f;
  padding-left: .375rem;
}

.anonyme main {
  position: relative;
  background: #ffffff;
  margin: 1rem 0;
  border: .5rem solid #7f8c8d;
  border-radius: 1rem;
}

.anonyme main .analyse-header {
  display: flex;
  flex-direction: column;
}

.anonyme main .analyse-header > strong {
  display: block;
  width: 100%;
  background: #0067b7;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.anonyme main .analyse-header .desc-container {
  display: flex;
  justify-content: space-between;
  margin: -1rem;
}

.anonyme main .analyse-header .desc-container .block {
  width: calc(33% - 2rem);
  max-width: max-content;
  margin: 1rem;
}

.anonyme main .analyse-header .desc-container .action {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20rem;
}

.anonyme main .analyse-header .desc-container strong {
  font-weight: 600;
}

.anonyme main .analyse-header .desc-container img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
}

.anonyme main .analyse-header .desc-container .date {
  display: flex;
  text-align: center;
}

.anonyme main .analyse-header .desc-container .date .title {
  margin-bottom: 1rem;
}

.anonyme main .analyse-content {
  display: flex;
  justify-content: space-between;
  margin: 1rem -1rem;
}

.anonyme main .analyse-item {
 /* width: calc(33% - 2rem);*/
  margin: 1rem;
  border: 1px solid #0067b7;
}

.anonyme main .analyse-item-header {
  text-align: center;
  border-bottom: 1px solid #0067b7;
  padding: 1rem;
}

.anonyme main .analyse-item-header strong {
  font-weight: 600;
  font-size: 1.2rem;
}

.anonyme main .analyse-item-content li {
  display: flex;
  justify-content: space-between;
  padding: .5rem;
  font-size: .9rem;
}

.anonyme main .analyse-item-content li .left {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
}

.anonyme main .analyse-item-content li .left em {
  font-size: .8rem;
}

.anonyme main .analyse-item-content li .left strong {
  font-weight: 600;
}

.anonyme main .analyse-item-content li .right {
  min-width: 4rem;
  width: 4rem;
  text-align: left;
}

.anonyme main .shop-edit,
.anonyme main .annonceurs-edit {
  border: 1px solid #7f8c8d;
  background: #c6effc;
  margin-top: -1rem;
  padding: 0 1rem 1rem;
}

.anonyme main .shop-edit-header,
.anonyme main .annonceurs-edit-header {
  color: #7f8c8d;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.anonyme main .shop-edit-header .title,
.anonyme main .annonceurs-edit-header .title {
  font-size: 1.8rem;
}

.anonyme main .shop-edit-header .steps,
.anonyme main .annonceurs-edit-header .steps {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
}

.anonyme main .shop-edit-header .steps .step,
.anonyme main .annonceurs-edit-header .steps .step {
  position: relative;
  font-size: 2rem;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  padding-bottom: .5rem;
  text-align: center;
  border-radius: 9999999999px;
  background: #ffffff;
  z-index: 20;
  margin-right: 5rem;
}

.anonyme main .shop-edit-header .steps .step img,
.anonyme main .annonceurs-edit-header .steps .step img {
  width: 80%;
  margin-top: .25rem;
}

.anonyme main .shop-edit-header .steps .step.active, .anonyme main .shop-edit-header .steps .step.done,
.anonyme main .annonceurs-edit-header .steps .step.active,
.anonyme main .annonceurs-edit-header .steps .step.done {
  background: #7f8c8d;
  color: #ffffff;
}

.anonyme main .shop-edit-header .steps .step.next,
.anonyme main .annonceurs-edit-header .steps .step.next {
  background: #c6effc;
  color: #7f8c8d;
}

.anonyme main .shop-edit-header .steps .step:last-child,
.anonyme main .annonceurs-edit-header .steps .step:last-child {
  margin-right: 0;
}

.anonyme main .shop-edit-header .steps .step:not(:last-child)::after,
.anonyme main .annonceurs-edit-header .steps .step:not(:last-child)::after {
  content: '';
  width: 5rem;
  position: absolute;
  height: 3px;
  left: 100%;
  background: #0067b7;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.anonyme main .shop-edit-container,
.anonyme main .annonceurs-edit-container {
  margin: 0 auto;
  width: max-content;
}

.anonyme main .shop-edit-content,
.anonyme main .annonceurs-edit-content {
  background: #ffffff;
  padding: .5rem 1rem;
}

.anonyme main .shop-edit-content iframe,
.anonyme main .annonceurs-edit-content iframe {
  width: 100%;
  height: 20rem;
  margin-top: 2rem;
}

.anonyme main .shop-edit-content .info,
.anonyme main .annonceurs-edit-content .info {
  color: #e2001a;
  font-size: .8rem;
}

.anonyme main .shop-edit-content .info-bottom,
.anonyme main .annonceurs-edit-content .info-bottom {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.anonyme main .shop-edit-content .raw,
.anonyme main .annonceurs-edit-content .raw {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100rem;
  margin: .5rem auto;
}

.anonyme main .shop-edit-content .raw .group,
.anonyme main .annonceurs-edit-content .raw .group {
  display: flex;
  align-items: center;
}

.anonyme main .shop-edit-content .raw .group ~ .group,
.anonyme main .annonceurs-edit-content .raw .group ~ .group {
  margin-left: 6rem;
}

.anonyme main .shop-edit-content .raw strong,
.anonyme main .annonceurs-edit-content .raw strong {
  text-align: right;
  font-weight: 600;
  margin-right: 1rem;
  min-width: 12rem;
}

.anonyme main .shop-edit-content .raw .right,
.anonyme main .annonceurs-edit-content .raw .right {
  position: relative;
  display: flex;
}

.anonyme main .shop-edit-content .raw .right.multiline .group,
.anonyme main .annonceurs-edit-content .raw .right.multiline .group {
  flex-direction: column;
}

.anonyme main .shop-edit-content .raw .right strong,
.anonyme main .annonceurs-edit-content .raw .right strong {
  min-width: unset;
}

.anonyme main .shop-edit-content .raw .right em,
.anonyme main .annonceurs-edit-content .raw .right em {
  font-size: .8rem;
  color: #9b9c9f;
}

.anonyme main .shop-edit-content .raw input,
.anonyme main .shop-edit-content .raw select,
.anonyme main .annonceurs-edit-content .raw input,
.anonyme main .annonceurs-edit-content .raw select {
  margin-right: 1rem;
}

.anonyme main .shop-edit-content.step2 .raw > strong, .anonyme main .shop-edit-content.step3 .raw > strong,
.anonyme main .annonceurs-edit-content.step2 .raw > strong,
.anonyme main .annonceurs-edit-content.step3 .raw > strong {
  min-width: 16rem;
}

.anonyme main .shop-edit-content.step2 input:not([type=checkbox]),
.anonyme main .shop-edit-content.step2 select:not([type=checkbox]), .anonyme main .shop-edit-content.step3 input:not([type=checkbox]),
.anonyme main .shop-edit-content.step3 select:not([type=checkbox]),
.anonyme main .annonceurs-edit-content.step2 input:not([type=checkbox]),
.anonyme main .annonceurs-edit-content.step2 select:not([type=checkbox]),
.anonyme main .annonceurs-edit-content.step3 input:not([type=checkbox]),
.anonyme main .annonceurs-edit-content.step3 select:not([type=checkbox]) {
  width: 10rem;
}

.anonyme main .shop-edit-content.step2 input[type=checkbox],
.anonyme main .shop-edit-content.step2 select[type=checkbox], .anonyme main .shop-edit-content.step3 input[type=checkbox],
.anonyme main .shop-edit-content.step3 select[type=checkbox],
.anonyme main .annonceurs-edit-content.step2 input[type=checkbox],
.anonyme main .annonceurs-edit-content.step2 select[type=checkbox],
.anonyme main .annonceurs-edit-content.step3 input[type=checkbox],
.anonyme main .annonceurs-edit-content.step3 select[type=checkbox] {
  margin-left: 3rem;
}

.anonyme main .shop-edit.campagnes-form .raw > strong,
.anonyme main .annonceurs-edit.campagnes-form .raw > strong {
  min-width: 20rem;
  width: 20rem;
}

.anonyme main .shop-edit.campagnes-form .raw > strong small,
.anonyme main .annonceurs-edit.campagnes-form .raw > strong small {
  font-size: .6rem;
}

.anonyme main .shop-edit.campagnes-form .raw .group ~ .group,
.anonyme main .annonceurs-edit.campagnes-form .raw .group ~ .group {
  margin-left: 0;
}

.anonyme main .shop-edit.campagnes-form .raw .group ~ .group strong,
.anonyme main .annonceurs-edit.campagnes-form .raw .group ~ .group strong {
  width: max-content;
}

.anonyme main .content {
  width: 100%;
  margin: 0 auto;
  padding: 0rem;
}

.anonyme main .content .actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.anonyme main .content .actions .left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.anonyme main .content .actions .left div {
  color: #0067b7;
  font-weight: 600;
  margin-top: .5rem;
}

.anonyme main .content .actions .left em {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  color: #9b9c9f;
  font-size: .9rem;
}

.anonyme main .content .actions .left em img {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.anonyme main .content .actions .left em span {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  background: #d0f7f1;
}

.anonyme main .content .actions .search {
  width: 100%;
  max-width: 26rem;
  height: 1.5rem;
}

.anonyme main .content .actions .right {
  display: flex;
}

.anonyme main .content .actions .right p {
  display: flex;
  flex-direction: column;
  max-width: 14rem;
  justify-content: center;
}

.anonyme main .content .actions .right p a {
  display: flex;
  align-items: center;
  margin: .25rem 0;
}

.anonyme main .content .actions .right p img {
  height: 1rem;
  margin-right: .25rem;
}

.anonyme main .content .actions .right p img.icon--bigger {
  height: 2rem;
  margin-right: .5rem;
}

.anonyme main .content .actions .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  margin-right: 0;
}

.anonyme main .content.masonry-container {
  max-width: 70rem;
  margin: 0 auto;
}

.anonyme main .content.masonry-container .shop-grid {
  margin: 0 auto 1rem;
}

.anonyme .navigation .outset {
  position: absolute;
  top: -3rem;
  right: -.5rem;
  padding: 1rem 1.5rem 3rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  background: #7f8c8d;
  margin-bottom: -1.5rem;
  border-radius: 1rem;
  z-index: -1;
  width: 25rem;
}

.anonyme .navigation .outset img {
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 2.5rem;
  right: .75rem;
}

.anonyme .navigation .primary,
.anonyme .navigation .secondary {
  width: 100%;
  display: flex;
}

.anonyme .navigation .primary li,
.anonyme .navigation .secondary li {
  width: 20%;
  text-align: center;
}

.anonyme .navigation .primary {
  border-radius: .5rem .5rem 0 0;
  color: #ffffff;
  background: #F9DA80;
  font-weight: 600;
}

.anonyme .navigation .primary li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2rem;
  cursor: pointer;
}

.anonyme .navigation .primary .active {
  background: #7f8c8d;
  border-radius: .25rem .25rem 0 0;
}

.anonyme .navigation .secondary {
  color: #7f8c8d;
  background: #c6effc;
  font-weight: 600;
}

.anonyme .navigation .secondary li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  cursor: pointer;
}

.anonyme .navigation .secondary .active {
  background-color: #e2001a;
  color: #ffffff;
}

.anonyme .shop-header {
  width: 100%;
  background: #7f8c8d;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.anonyme .shop--archive .shop-header {
  background: #9d00e0;
}

.anonyme .shop--archive tr th, .anonyme .shop--archive tr:nth-child(even) {
  background-color: #f2ebf4 !important;
}

.anonyme .shop-content table {
  width: 100%;
  margin-top: -1rem;
}

.anonyme .shop-content thead {
  text-align: left;
  font-weight: 600;
  color: #0067b7;
}

.anonyme .shop-content th {
  padding: 1rem .25rem;
  background: #e2f7fe;
  font-weight: 600;
}

.anonyme .shop-content tr {
  border-bottom: 1px solid #0067b7;
}

.anonyme .shop-content tr:nth-child(even) {
  background-color: #e8fbf8;
}

.anonyme .shop-content thead tr {
  border: none;
}

.anonyme .shop-content td {
  padding: 0 1rem 0 .25rem;
  font-size: .9rem;
  vertical-align: middle;
}

.anonyme .shop-content td:nth-child(1), .anonyme .shop-content th:nth-child(1) {
  max-width: 25%;
}

.anonyme .shop-content td:nth-child(2), .anonyme .shop-content th:nth-child(2) {
  max-width: 25%;
}

.anonyme .shop-content td:nth-child(3), .anonyme .shop-content th:nth-child(3) {
  max-width: 25%;
}

.anonyme .shop-content td:nth-child(4), .anonyme .shop-content th:nth-child(4) {
  max-width: 25%;
}

.anonyme .shop-content td:nth-child(5), .anonyme .shop-content th:nth-child(5) {
  max-width: 25%;
}

.anonyme .shop-content strong {
  font-weight: 600;
  color: #0067b7;
  margin-right: .25rem;
  min-width: max-content;
}

.anonyme .shop-content span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: .5rem 0;
}

.anonyme .shop-content .picto {
  width: 2rem;
  height: 2rem;
  object-position: center;
  object-fit: contain;
  margin-right: .5rem;
}

.anonyme .shop-grouped table {
  margin-top: -1rem;
}

.anonyme .shop-grouped table th {
  padding: 1rem .5rem;
}

.anonyme .shop-grouped table td {
  padding: 1rem 1rem 1rem 0;
}

.anonyme .shop-grouped table td li {
  padding: .375rem 0;
}

.anonyme .shop-new-group .shop-edit-content .raw strong {
  min-width: 15rem;
}

.anonyme .shop-new-group .shop-edit-content .raw .right {
  width: 100%;
}

.anonyme .shop-new-group .shop-edit-content .raw .right .line {
  display: flex;
  margin: .25rem 0;
}

.anonyme .shop-new-group .shop-edit-content .raw .right .group {
  width: 100%;
  align-items: flex-start;
}

.anonyme .shop-new-group .shop-edit-content .raw .right .group ~ .group {
  margin-left: 0;
}

.anonyme .shop-new-group .bordered {
  margin-top: .5rem;
  padding: .25rem;
  border: 1px solid #9b9c9f;
  color: #0ea5e4;
  border-radius: .5rem;
  background-color: #ffffff;
}

.anonyme .shop-new-group input:not([type=checkbox]),
.anonyme .shop-new-group select {
  width: 100%;
}

.anonyme .annonceurs-header {
  width: 100%;
  background: #0067b7;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  margin-bottom: 1rem;
}

.anonyme .annonceurs-table {
  width: 100%;
}

.anonyme .annonceurs-table tr {
  border-bottom: 1px solid #0067b7;
}

.anonyme .annonceurs-table th, .anonyme .annonceurs-table td {
  padding-bottom: 1rem;
}

.anonyme .annonceurs-table img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  object-position: center;
}

.anonyme .annonceurs-table strong {
  font-weight: 600;
  color: #0067b7;
}

.anonyme .annonceurs-table tbody td {
  padding-top: 1rem;
  vertical-align: middle;
  line-height: 2rem;
}

.anonyme .annonceurs-table tbody td span {
  display: block;
}

.anonyme .annonceurs-table thead {
  color: #0067b7;
}

.anonyme .date img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
}

.anonyme .campagnes {
  position: relative;
  background: #d9f9f3;
  margin-top: -1rem;
  padding: 1rem;
}

.anonyme .campagnes::before {
  content: '';
  position: absolute;
  background: #ffffff;
  width: calc(100% - 2rem);
  height: calc(100% - 1rem);
  top: 0;
  left: 1rem;
  z-index: 0;
}

.anonyme .campagnes > * {
  position: relative;
  z-index: 1;
}

.anonyme .campagnes-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0067b7;
}

.anonyme .campagnes-header strong {
  text-align: center;
  font-weight: 600;
  width: calc(100% - 18rem);
}

.anonyme .campagnes-header strong:first-child {
  width: 18rem;
}

.anonyme .campagnes .annonceurs-list-item {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0067b7;
}

.anonyme .campagnes .annonceurs-list-item img {
  width: 2rem;
  height: 2rem;
  margin-right: .5rem;
}

.anonyme .campagnes .annonceurs-list-item a {
  display: flex;
  align-items: center;
}

.anonyme .campagnes .annonceurs-list-item strong {
  color: #0067b7;
  font-weight: 600;
}

.anonyme .campagnes .annonceurs-list-item .annonceur {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 18rem;
  padding-right: 1rem;
}

.anonyme .campagnes .annonceurs-list-item .annonceur span {
  margin-bottom: .5rem;
}

.anonyme .campagnes .annonceurs-list-item .campagnes-list {
  width: calc(100% - 18rem);
}

.anonyme .campagnes .annonceurs-list-item .campagnes-list-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 4rem;
}

.anonyme .campagnes .annonceurs-list-item .campagnes-list-item:last-child {
  margin-bottom: 0;
}

.anonyme .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info, .anonyme .campagnes .annonceurs-list-item .campagnes-list-item .campagne-actions {
  display: flex;
  flex-direction: column;
}

.anonyme .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info {
  width: calc(100% / 2 - 10rem);
  justify-content: space-between;
}

.anonyme .campagnes .annonceurs-list-item .campagnes-list-item .campagne-info span {
  margin-bottom: .5rem;
}

.anonyme .campagnes .annonceurs-list-item .campagnes-list-item .campagne-actions {
  width: 10rem;
  justify-content: center;
}

.anonyme .campagnes .annonceurs-list-item .campagnes-list-add {
  margin-top: 2rem;
}

.anonyme .dates a {
  color: #0ea5e4;
  font-weight: 600;
}

.anonyme .dates a:not(:last-child)::after {
  content: '/';
  color: #0ea5e4;
  margin-left: .375rem;
  pointer-events: none;
}

.anonyme .dates a.active {
  color: #e2001a;
}

.anonyme .shop-header.special-header {
  text-transform: initial;
  font-size: 1.5rem;
}

.anonyme .shop-header.special-header ~ .search {
  margin: .5rem 0 2rem;
}

.anonyme .shop-header.special-header .tabs {
  display: flex;
  font-size: 1rem;
  margin: 1rem -.25rem -1rem;
}

.anonyme .shop-header.special-header .tabs li {
  width: 25%;
  padding: 1rem .5rem .5rem;
  text-transform: initial;
  text-align: center;
  color: #000000;
  background: #0ea5e4;
  border-radius: 1rem 1rem 0 0;
  margin: 0 .25rem;
}

.anonyme .shop-header.special-header .tabs li span {
  font-weight: 600;
}

.anonyme .shop-header.special-header .tabs li.active {
  background-color: #ffffff;
}

.anonyme .bat-visu {
  padding-bottom: 0;
}

.anonyme .bat-visu strong {
  padding: .75rem 0 .25rem;
}

.anonyme .bat-visu strong:first-child {
  width: 10rem;
  min-width: 10rem;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande {
  background: #eaeaea;
  padding: 0;
  border: none;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande:first-child {
  margin-top: 0;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande p:not(.historique) {
  font-size: 1.2rem;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .no-img {
  height: 6rem;
  width: 14rem;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .no-img img {
  width: 100%;
  height: 100%;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande .historique {
  background: #e0e0e0;
  align-self: auto;
  justify-content: center;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item.demande a {
  display: inline;
  font-weight: 600;
  text-decoration: underline;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item strong {
  font-weight: 600;
  color: inherit;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item p {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: calc(100% - 10rem);
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item p span {
  margin: .5rem 0;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item .bat-preview {
  justify-content: center;
  align-items: center;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item .large {
  width: 100%;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item .minia {
  width: 60%;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item .large img, .anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item .minia img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  object-position: center;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item .links {
  color: #0ea5e4;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: max-content;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item .links a {
  width: calc(33% - 1rem);
  margin: 2rem .5rem;
  text-align: center;
  justify-content: center;
}

.anonyme .bat-visu ~ .annonceurs-list .annonceurs-list-item .historique {
  min-width: 10rem;
  width: 10rem;
  margin-right: 1rem;
}

.anonyme .back img {
  width: 1.5rem;
  margin-right: .5rem;
}

.anonyme .back a {
  display: flex;
  align-items: center;
  color: #9b9c9f;
}

.anonyme .maquette-info {
  margin-top: -1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.anonyme .maquette-info span {
  margin-bottom: 1rem;
}

.anonyme .maquette-info span:last-child {
  margin: 0;
}

.anonyme .maquette-info strong {
  font-weight: 600;
}

.anonyme .maquette-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.anonyme .maquette-form-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: .5rem 0;
}

.anonyme .maquette-form-content-left {
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  width: 66%;
  padding-right: 4rem;
}

.anonyme .maquette-form-content-left > strong {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.anonyme .maquette-form-content-left > em {
  font-size: .8rem;
  color: #9b9c9f;
  text-align: right;
}

.anonyme .maquette-form-content-left-content li {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  font-weight: bold;
  min-height: 3rem;
}

.anonyme .maquette-form-content-left-content li.spacer {
  margin: 1rem;
}

.anonyme .maquette-form-content-left-content li strong {
  width: 14rem;
  text-align: right;
  margin-right: 1rem;
}

.anonyme .maquette-form-content-left-content li .group {
  width: calc(100% - 14rem);
}

.anonyme .maquette-form-content-left-content input[type=text] {
  width: 5rem;
}

.anonyme .maquette-form-content-left-content label {
  margin-right: 1rem;
}

.anonyme .maquette-form-content-left-content label.f05, .anonyme .maquette-form-content-left-content label.f10, .anonyme .maquette-form-content-left-content label.f15, .anonyme .maquette-form-content-left-content label.f20 {
  position: relative;
  display: inline-block;
  padding-top: 5rem;
  width: 4rem;
}

.anonyme .maquette-form-content-left-content label.f05::after, .anonyme .maquette-form-content-left-content label.f10::after, .anonyme .maquette-form-content-left-content label.f15::after, .anonyme .maquette-form-content-left-content label.f20::after {
  content: '';
  position: absolute;
  background: #d6d6d6;
  width: 4rem;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  left: -1rem;
}

.anonyme .maquette-form-content-left-content label.f05::after {
  height: 1rem;
}

.anonyme .maquette-form-content-left-content label.f10:after {
  height: 2rem;
}

.anonyme .maquette-form-content-left-content label.f15:after {
  height: 3rem;
}

.anonyme .maquette-form-content-left-content label.f20:after {
  height: 4rem;
}

.anonyme .maquette-form-content-right {
  background: #6de8d4;
  color: #ffffff;
  text-align: center;
  border-radius: 1rem;
  padding: 1rem 0;
  width: calc(33% - 2rem);
  align-self: baseline;
}

.anonyme .maquette-form-content-right header {
  font-size: 1.25rem;
  font-weight: 600;
}

.anonyme .maquette-form-content-right-content {
  color: #6de8d4;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 1rem .5rem;
}

.anonyme .maquette-form-content-right-content textarea {
  color: #6de8d4;
  font-weight: 600;
  margin-top: 1rem;
  border: none;
  font-family: "Raleway", sans-serif;
  resize: none;
}

.anonyme .maquette-form-submit {
  border: 0;
  background: #0067b7;
  color: #ffffff;
  font-size: 1.1rem;
  padding: .5rem;
  border-radius: .75rem;
  margin: 1rem 0 .5rem;
}

.anonyme .maquette-preview {
  position: relative;
  border: 1px solid #9b9c9f;
  padding: .5rem;
  max-width: 100rem;
  margin: 2rem auto 8rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.anonyme .maquette-preview .close {
  position: absolute;
  width: 2rem;
  height: 2rem;
  font-size: 1.8rem;
  padding: .2rem;
  text-align: center;
  top: -1rem;
  right: -1rem;
  background: #ffffff;
  color: #4f4f52;
  border: 1px solid #4f4f52;
  cursor: pointer;
}

.anonyme .maquette-preview-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}

.anonyme .maquette-preview-top .logo {
  width: 10rem;
}

.anonyme .maquette-preview-top p {
  text-align: right;
  display: flex;
  flex-direction: column;
  color: #e2001a;
}

.anonyme .maquette-preview-top p strong {
  color: #000000;
}

.anonyme .maquette-preview-top p .fax {
  font-size: 2.25rem;
}

.anonyme .maquette-preview-top p .tel {
  font-size: 1.8rem;
}

.anonyme .maquette-preview-middle {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.anonyme .maquette-preview-middle .left {
  display: flex;
  flex-direction: column;
  width: calc(100% - 27rem);
}

.anonyme .maquette-preview-middle .left p {
  display: flex;
  flex-direction: column;
}

.anonyme .maquette-preview-middle .left p span {
  margin-bottom: 1rem;
}

.anonyme .maquette-preview-middle-img {
  margin-top: 4rem;
  width: 80%;
  height: 10rem;
  object-fit: cover;
  object-position: center;
  border: 1px dashed #9b9c9f;
  align-self: center;
}

.anonyme .maquette-preview-middle .right {
  width: 27rem;
  padding: 1.25rem;
  border: 1px solid #9b9c9f;
  border-radius: 1.5rem;
  font-family: serif;
  color: #4f4f52;
}

.anonyme .maquette-preview-middle .right p {
  margin-bottom: 1rem;
  text-align: justify;
  text-align-last: left;
  line-height: 1.375rem;
}

.anonyme .maquette-preview-middle .right p:last-child {
  margin-bottom: 0;
}

.anonyme .maquette-preview-middle .right .bat-text {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}

.anonyme .maquette-preview-middle .right .bat-text strong {
  font-size: 1.5rem;
}

.anonyme .maquette-preview-middle .right .bat-text em {
  margin-right: 2rem;
}

.anonyme .maquette-preview-middle .right .cachet {
  margin-bottom: 3.5rem;
}

.anonyme .maquette-preview-bottom {
  margin: 5rem 0 10rem;
  text-align: center;
  width: 100%;
}

.anonyme .maquette-preview-bottom-img {
  width: 80%;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  border: 2px dashed #9b9c9f;
}

.anonyme .maquette-olapromo strong {
  font-weight: 600;
  color: #9d00e0;
}

.anonyme .maquette-olapromo .maquette-preview-middle {
  margin: 4rem 0 6rem;
  display: flex;
  flex-direction: column;
  width: 12rem;
}

.anonyme .maquette-olapromo .maquette-preview-middle img {
  height: 8rem;
  width: 100%;
  border: 1px dashed #9b9c9f;
  object-position: center;
  object-fit: cover;
}

.anonyme .maquette-olapromo .maquette-preview-bottom {
  text-align: left;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .top {
  position: relative;
  margin-bottom: .5rem;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .top-cachet {
  text-align: right;
  width: 12rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .top-cachet strong {
  color: #000000;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .top-cachet span {
  font-size: .6rem;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .bottom {
  display: flex;
  width: calc(100% - 12rem);
  padding-right: .5rem;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .bottom img {
  width: 18rem;
  min-width: 18rem;
  height: 12rem;
  object-fit: cover;
  object-position: center;
  border: 1px dashed #9b9c9f;
  margin-right: .75rem;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: .9rem;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .bottom-content p {
  display: flex;
  flex-direction: column;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .bottom-content p:last-child {
  align-self: center;
  text-align: center;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .bottom-content small, .anonyme .maquette-olapromo .maquette-preview-bottom .bottom-content em {
  color: #9b9c9f;
  font-size: .75rem;
}

.anonyme .maquette-olapromo .maquette-preview-bottom .bottom-content strong {
  font-size: 1rem;
  margin-bottom: .5rem;
}

.anonyme .listing-bat {
  margin: 0 auto 1.5rem;
  text-align: center;
  min-width: 10rem;
  max-width: 30rem;
  border: 1px solid #0ea5e4;
}

.anonyme .listing-bat li {
  padding: .375rem;
}

.anonyme .listing-bat .list-title {
  text-transform: uppercase;
  font-weight: 600;
  background: #0ea5e4;
  color: #ffffff;
  font-size: 1.2rem;
}

.anonyme .listing-bat li:not(:last-child) {
  border-bottom: 1px solid #0ea5e4;
}

.anonyme .list-bat-header {
  justify-content: center;
  margin: 0 auto;
  width: max-content;
  text-align: center;
  border: none;
}

.anonyme .list-bat-header strong:nth-child(1), .anonyme .list-bat-header strong:nth-child(4), .anonyme .list-bat-header strong:nth-child(5) {
  min-width: 8rem;
  max-width: 8rem;
}

.anonyme .list-bat-header strong:nth-child(2) {
  min-width: 15rem;
  max-width: 15rem;
}

.anonyme .list-bat-header strong:nth-child(3) {
  min-width: 30rem;
  max-width: 30rem;
}

.anonyme .list-bat-header strong:nth-child(6) {
  min-width: 12rem;
  max-width: 12rem;
}

.anonyme .listing-bat-list {
  width: max-content;
  margin: 0 auto;
  font-weight: 600;
}

.anonyme .listing-bat-list li {
  border-bottom-color: #000000 !important;
  align-items: center;
}

.anonyme .listing-bat-list li > * {
  text-align: center;
}

.anonyme .listing-bat-list li > *:nth-child(1) {
  min-width: 8rem;
  max-width: 8rem;
}

.anonyme .listing-bat-list li > *:nth-child(2) {
  min-width: 15rem;
  max-width: 15rem;
}

.anonyme .listing-bat-list li .bat-list-annonceurs {
  width: max-content;
  display: flex;
  flex-direction: column;
}

.anonyme .listing-bat-list li .bat-list-annonceurs-item {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000000;
}

.anonyme .listing-bat-list li .bat-list-annonceurs-item:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.anonyme .listing-bat-list li .bat-list-annonceurs-item .label {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 99999999999999px;
  box-shadow: -14px 4px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 1.5rem;
}

.anonyme .listing-bat-list li .bat-list-annonceurs-item figure {
  text-align: center !important;
}

.anonyme .listing-bat-list li .bat-list-annonceurs-item figure img {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem !important;
  max-width: 2.5rem !important;
}

.anonyme .listing-bat-list li .bat-list-annonceurs-item a svg {
  margin: 0 auto;
  font-size: 2.5rem;
  color: #f5c11d;
}

.anonyme .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(2), .anonyme .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(3) {
  min-width: 8rem;
  max-width: 8rem;
}

.anonyme .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(1) {
  display: flex;
  align-items: center;
  text-align: left;
  padding-left: 4rem;
  min-width: 30rem;
  max-width: 30rem;
}

.anonyme .listing-bat-list li .bat-list-annonceurs-item > *:nth-child(4) {
  min-width: 12rem;
  max-width: 12rem;
}

.anonyme .legende {
  display: flex;
  flex-direction: column;
  width: 1296px;
  margin: 0 auto;
}

.anonyme .legende .title {
  margin: 4rem 0 2rem;
  font-size: 3rem;
  font-style: italic;
}

.anonyme .legende-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 4rem;
}

.anonyme .legende-list-item {
  align-items: center;
  display: flex;
  width: calc(25% - 1rem);
  margin: 0 .5rem .5rem;
}

.anonyme .legende .label {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 99999px;
  margin-right: .5rem;
}

.anonyme .legende .label:not(.label--text) {
  box-shadow: -3px 1px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.anonyme .legende .label--text {
  color: red;
}

.anonyme .commandes-rouleaux-header {
  text-align: center;
  padding: 1rem;
}

.anonyme .commandes-rouleaux-content {
  padding: 0 1rem 1rem;
  background: #d9f9f3;
}

.anonyme .commandes-rouleaux-content-container {
  padding: 1rem 1.5rem .5rem;
  background: #ffffff;
}

.anonyme .commandes-rouleaux-content-container-header {
  font-size: 1.1rem;
  font-weight: 600;
}

.anonyme .commandes-rouleaux-content-container-header small {
  font-size: 1rem;
}

.anonyme .commandes-rouleaux-content-container-header a {
  text-decoration: underline;
  color: #0067b7;
}

.anonyme .commandes-rouleaux-content-container-content {
  margin-top: 2.5rem;
}

.anonyme .commandes-rouleaux-content-container-content > strong {
  font-size: 1.2rem;
  font-weight: 600;
}

.anonyme .commandes-rouleaux-content-container-content .group {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 1rem -.5rem;
}

.anonyme .commandes-rouleaux-content-container-content .group .item:nth-child(1) {
  width: 680px;
}

.anonyme .commandes-rouleaux-content-container-content .group .item:nth-child(2), .anonyme .commandes-rouleaux-content-container-content .group .item:nth-child(3) {
  margin-left: -.5rem;
  width: 277px;
}

.anonyme .commandes-rouleaux-content-container-content .group .item:nth-child(4) {
  width: 204px;
}

.anonyme .commandes-rouleaux-content-container-content .group .item select {
  width: 80%;
  min-width: 15rem;
  height: 100%;
}

.anonyme .commandes-rouleaux-content-container-content-list {
  margin-top: .5rem;
}

.anonyme .commandes-rouleaux-content-container-content-list-item {
  display: flex;
  justify-content: space-between;
  margin: 0 -.5rem;
  padding: 0 .5rem;
}

.anonyme .commandes-rouleaux-content-container-content-list-item .btn {
  display: block;
  margin: .5rem 0;
  padding: .5rem;
  width: 100%;
  border-radius: 4px;
}

.anonyme .commandes-rouleaux-content-container-content-list-item:not(:last-child):not(.list-header):not(.bg-witch-haze) {
  border-bottom: 1px solid #9b9c9f;
}

.anonyme .commandes-rouleaux-content-container-content-list-item.bg-witch-haze:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}

.anonyme .commandes-rouleaux-content-container-content-list-item ul {
  margin: .5rem -.5rem .5rem 0;
  display: flex;
  flex-direction: column;
}

.anonyme .commandes-rouleaux-content-container-content-list-item ul li {
  width: 100%;
}

.anonyme .commandes-rouleaux-content-container-content-list-item strong {
  font-weight: 600;
}

.anonyme .commandes-rouleaux-content-container-content-list-item > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: .5rem;
  margin: -.5rem;
}

.anonyme .commandes-rouleaux-content-container-content-list-item > *:nth-child(1) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.anonyme .commandes-rouleaux-content-container-content-list-item > *:nth-child(2) {
  width: 20%;
}

.anonyme .commandes-rouleaux-content-container-content-list-item > *:nth-child(3) {
  width: 10%;
}

.anonyme .commandes-rouleaux-content-container-content-list-item > *:nth-child(4) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.anonyme .commandes-rouleaux-content-container-content-list-item > *:nth-child(5) {
  width: 20%;
  text-align: left;
  align-items: initial;
}

.anonyme .commandes-rouleaux-content-container-content-list-item > *:nth-child(6) {
  width: 15%;
}

.anonyme .add {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 1rem;
  margin-left: auto;
  width: max-content;
  font-weight: 600;
}

.anonyme .add img {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.anonyme .commerciaux {
  margin: 0 auto;
  width: 70rem;
}

.anonyme .commerciaux strong {
  font-weight: 600;
}

.anonyme .commerciaux .shop-header {
  margin-bottom: 0;
}

.anonyme .commerciaux-popin {
  position: absolute;
  top: 0;
  left: 0;
  background: #d9f9f3;
  padding: 1rem;
  border: 1px solid #0067b7;
  width: 100%;
}

.anonyme .commerciaux-popin.closed {
  display: none;
}

.anonyme .commerciaux-popin-header {
  padding-top: 1rem;
  padding-bottom: .25rem;
}

.anonyme .commerciaux-popin-content {
  background: #ffffff;
  padding: 1rem;
  width: 100%;
}

.anonyme .commerciaux-popin-content-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.anonyme .commerciaux-popin-content-container span {
  display: flex;
  align-items: center;
  margin: .5rem 0;
  width: 100%;
}

.anonyme .commerciaux-popin-content-container span > * {
  width: 50%;
}

.anonyme .commerciaux-popin-content-container span strong {
  text-align: right;
  font-weight: 600;
  margin-right: 1rem;
  margin-left: -1rem;
}

.anonyme .commerciaux-popin-content-container span input, .anonyme .commerciaux-popin-content-container span select {
  width: 16rem;
  height: 2rem;
}

.anonyme .commerciaux-content {
  padding: 0 1rem 1rem;
  margin-bottom: 3rem;
  background: #d9f9f3;
  position: relative;
}

.anonyme .commerciaux-content-container {
  background: #ffffff;
  padding: 1rem .5rem .5rem;
}

.anonyme .commerciaux-header {
  display: flex;
  justify-content: space-between;
}

.anonyme .commerciaux-header strong {
  padding: 1rem 0;
  text-align: center;
}

.anonyme .commerciaux-header strong:nth-child(2), .anonyme .commerciaux-header strong:nth-child(3) {
  text-align: left;
}

.anonyme .commerciaux-header strong:nth-child(1), .anonyme .commerciaux-header strong:nth-child(3) {
  width: 23.75%;
}

.anonyme .commerciaux-header strong:nth-child(2) {
  width: 40%;
}

.anonyme .commerciaux-header strong:nth-child(4) {
  width: 12.5%;
}

.anonyme .commerciaux-list-item {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.anonyme .commerciaux-list-item > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.anonyme .commerciaux-list-item > * a {
  display: flex;
  align-items: center;
}

.anonyme .commerciaux-list-item > * a:not(:last-child) {
  margin-bottom: .5rem;
}

.anonyme .commerciaux-list-item > * a .bordered {
  padding: .375rem .75rem;
  background: #ebedf4;
  border-radius: 10px;
}

.anonyme .commerciaux-list-item > * a img {
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
  margin-right: .5rem;
}

.anonyme .commerciaux-list-item > *:nth-child(2), .anonyme .commerciaux-list-item > *:nth-child(3) {
  text-align: left;
}

.anonyme .commerciaux-list-item > *:nth-child(1), .anonyme .commerciaux-list-item > *:nth-child(3) {
  width: 23.75%;
}

.anonyme .commerciaux-list-item > *:nth-child(2) {
  width: 40%;
  align-items: flex-start;
}

.anonyme .commerciaux-list-item > *:nth-child(3) {
  align-items: flex-start;
}

.anonyme .commerciaux-list-item > *:nth-child(4) {
  width: 12.5%;
  align-items: flex-start;
}

.anonyme .op-list .search {
  width: 40rem;
}

.anonyme .op-list header {
  width: 80rem;
  justify-content: space-between;
  align-items: center;
}

.anonyme .op-list header > * {
  padding: 0.5rem 0.75rem !important;
}

.anonyme .op-list header > *:nth-child(1), .anonyme .op-list header > *:nth-child(3) {
  width: 10rem;
  max-width: 10rem;
  min-width: 10rem;
}

.anonyme .op-list header > *:nth-child(2) {
  width: 25rem;
  max-width: 25rem;
  min-width: 25rem;
}

.anonyme .op-list header > *:nth-child(4) {
  width: 20rem;
  max-width: 20rem;
  min-width: 20rem;
}

.anonyme .op-list header > *:nth-child(5) {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
}

.anonyme .op-list .listing-bat-list {
  width: 80rem;
}

.anonyme .op-list .listing-bat-list .listing-bat-item {
  justify-content: space-between;
  min-height: 15rem;
  font-weight: initial;
}

.anonyme .op-list .listing-bat-list .listing-bat-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.anonyme .op-list .listing-bat-list .listing-bat-item a span {
  padding: .25rem .5rem;
  background: #ebedf4;
  border-radius: 1rem;
}

.anonyme .op-list .listing-bat-list .listing-bat-item strong {
  font-weight: 600;
}

.anonyme .op-list .listing-bat-list .listing-bat-item > *:nth-child(1), .anonyme .op-list .listing-bat-list .listing-bat-item > *:nth-child(3) {
  max-width: 10rem;
  min-width: 10rem;
  width: 10rem;
}

.anonyme .op-list .listing-bat-list .listing-bat-item > *:nth-child(1) {
  text-align: left;
}

.anonyme .op-list .listing-bat-list .listing-bat-item > *:nth-child(2) {
  text-align: left;
  width: 25rem;
  max-width: 25rem;
  min-width: 25rem;
}

.anonyme .op-list .listing-bat-list .listing-bat-item > *:nth-child(4) {
  width: 20rem;
  max-width: 20rem;
  min-width: 20rem;
}

.anonyme .op-list .listing-bat-list .listing-bat-item > *:nth-child(5) {
  width: 15rem;
  max-width: 15rem;
  min-width: 15rem;
}

.anonyme .op-list .listing-bat-list li .bat-list-annonceurs-item,
.anonyme .op-list .annonceurs-list-item .bat-list-annonceurs .bat-list-annonceurs-item  {
  border: none !important;
  padding-bottom: 0.125rem !important;
}

.anonyme .op-list .listing-bat-list li .bat-list-annonceurs-item .label,
.anonyme .op-list .annonceurs-list-item .bat-list-annonceurs .bat-list-annonceurs-item  .label {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  box-shadow: -4px 1px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 960px) {
  .mobile {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .desktop {
    display: none !important;
  }
}

/*
  Common
*/
html {
  font-family: "Raleway", sans-serif;
}

a {
  color: inherit;
}

.title {
  font-family: "Pacifico", cursive;
}

img {
  max-width: 100%;
  height: auto;
}

img.bg-img {
  position: absolute;
}

.btn,
button {
  display: inline-block;
  color: #ffffff;
  background: #0067b7;
  border: none;
  border-radius: .75rem;
  padding: .5rem 1.25rem;
  margin: .5rem auto;
}

.btn.flat,
button.flat {
  border-radius: 0;
}

.slick-dots li {
  display: inline-block;
  padding: .5rem;
}

.slick-dots button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: .5rem;
  height: .5rem;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #ececed;
  transition: .2s;
}

.slick-dots button:hover {
  background: #9b9c9f;
}

.slick-active button {
  background: #e2001a;
  cursor: initial;
}

.slick-active button:hover {
  background: #e2001a;
}

.border-yellow {
  border-color: #f5c11d;
}

.border-red {
  border-color: #e2001a;
}

.border-blue {
  border-color: #0067b7;
}

.bg-light-yellow {
  background-color: #fff078;
}

.bg-pale-yellow {
  background-color: #fffad8;
}

.bg-yellow {
  background-color: #f5c11d;
}

.bg-light-purple {
  background-color: #a573b4;
}

.bg-purple {
  background-color: #9d00e0;
}

.bg-red {
  background-color: #e2001a;
}

.bg-blue {
  background-color: #0067b7;
}

.bg-cyan {
  background-color: #0ea5e4;
}

.bg-flash-blue {
  background-color: #0ea5e4;
}

.bg-green-blue {
  background-color: #5dcdbf;
}

.bg-light-blue {
  background-color: #c6effc;
}

.bg-black {
  background-color: #000000;
}

.bg-white {
  background-color: #ffffff;
}

.bg-green {
  background-color: #86db86;
}

.bg-gray {
  background-color: #9b9c9f;
}

.bg-white-ice {
  background-color: #d9f9f3;
}

.bg-mint-tulip {
  background-color: #c1f5ec;
}

.bg-hummingbird {
  background-color: #d4f9f2;
}

.bg-witch-haze {
  background-color: #fef98b;
}

.bg-alizarin-crimson {
  background-color: #e01e29;
}

.bg-nevada {
  background-color: #65707d;
}

.bg-lightning-yellow {
  background-color: #f4ba18;
}

.bg-rio-grande {
  background-color: #c5d429;
}

.bg-flamingo {
  background-color: #ea5d35;
}

.bg-viking {
  background-color: #5dc4dc;
}

.bg-affair {
  background-color: #8a4a9d;
}

.c-black {
  color: #000000;
}

.c-white {
  color: #ffffff;
}

.c-red {
  color: #e2001a;
}

.c-blue {
  color: #0067b7;
}

.c-cyan {
  color: #33cccc;
}

.c-orange {
  color: #ff9933;
}

.c-purple {
  color: #9d00e0;
}

.c-pink {
  color: #ff4382;
}

.c-gray {
  color: #9b9c9f;
}

.c-green {
  color: #86db86;
}

.c-light-blue {
  color: #c6effc;
}

.c-flash-blue {
  color: #0ea5e4;
}

.t-center {
  text-align: center;
}

.t-initial {
  text-transform: initial;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-8 {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.my-16 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-24 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.p-b-16 {
  padding-bottom: 1rem;
}

.p-b-32 {
  padding-bottom: 2rem;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.font-big {
  font-size: 2rem;
}

.main-header {
  position: relative;
  background: #2c2e35;
  z-index: 500;
}

.main-header .logo {
  position: absolute;
  top: 0;
  left: 2rem;
  object-fit: contain;
  object-position: center;
  width: 10rem;
}

@media screen and (max-width: 960px) {
  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
  }
  .main-header .logo {
    position: relative;
    height: 4rem;
    width: unset;
  }
}

.main-header .burger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-end;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  z-index: 10;
  cursor: pointer;
}

.main-header .burger .bar {
  background: #0067b7;
  height: .25rem;
  width: 100%;
  border-radius: 4px;
}

.main-header .burger .bar:first-child {
  width: 85%;
}

.main-header .burger .bar:last-child {
  width: 70%;
}

.main-header .burger.active {
  height: 1.5rem;
  width: 1.5rem;
  border: 1px solid #f5c11d;
  padding: .5rem;
  border-radius: 99999px;
  position: fixed;
}

.main-header .burger.active .bar {
  position: absolute;
  width: 80% !important;
  height: .1rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: #f5c11d;
}

.main-header .burger.active .bar:nth-child(2) {
  display: none;
}

.main-header .burger.active .bar:first-child {
  transform: rotate(45deg);
}

.main-header .burger.active .bar:last-child {
  transform: rotate(-45deg);
}

.main-header .nav-links {
  width: max-content;
  padding: .75rem 0;
  margin: 0 auto;
}

.main-header .nav-links .nav-link {
  display: inline-block;
  color: #ffffff;
}

@media screen and (max-width: 960px) {
  .main-header .nav-links .nav-link {
    display: block;
    margin: 1rem 0;
  }
}

.main-header .nav-links .nav-link::before {
  content: '|';
  margin-right: .25rem;
}

@media screen and (max-width: 960px) {
  .main-header .nav-links .nav-link::before {
    display: none;
  }
}

.main-header .nav-links .nav-link:first-child::before {
  display: none;
}

.main-header .nav-links .nav-link .active {
  color: #e2001a;
}

.main-header .sub-links {
  position: absolute;
  display: flex;
  align-items: center;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
}

.main-header .sub-links .sub-link {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 .25rem;
}

@media screen and (max-width: 960px) {
  .main-header .sub-links {
    position: unset;
    transform: none;
    flex-direction: column;
    align-items: unset;
  }
  .main-header .sub-links .social-links {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
  }
  .main-header .sub-links .sub-link {
    font-size: 1rem;
    margin: .5rem 0;
  }
  .main-header .sub-links .sub-link:not(.social) img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.main-header .sub-links a {
  display: flex;
  align-items: center;
}

.main-header .sub-links .vertical-spacer {
  display: block;
  width: 1px;
  height: 2rem;
  background: #ffffff;
  margin: 0 .25rem;
}

.main-header .sub-links img {
  width: 2rem;
  height: 2rem;
}

@media screen and (max-width: 960px) {
  .main-header .main-nav {
    display: none;
    align-items: flex-start;
    padding: 2rem 2rem 2rem 3rem;
  }
  .main-header .main-nav > * {
    margin-left: 0;
    margin-right: 0;
  }
  .main-header .active ~ .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background: #2c2e35;
  }
}

.small-input {
  width: 5rem;
}

.small-input ~ .small-input {
  margin-left: 1rem;
}

.pagination {
  display: inline-block;
  margin-bottom: .625rem;
  margin-left: 23.125rem;
}

.pagination a {
  color: #000000;
  float: left;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: .3s background-color;
  border: 1px solid #ddd;
  margin: 0 .25rem;
}

.pagination .pagination a.active {
  background-color: #0067b7;
  color: #ffffff;
  border: 1px solid #0067b7;
}
.dates {
  display: flex;
  justify-content: center;
}

.bg-light-green-1 {
  background-color: #d1f8f1;
}

.bg-light-green-2 {
  background-color: #5fe6cf;
}
