@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:400,500,600,800&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;
}

.demo {
  padding: 2rem;
}

.demo h2 {
  font-size: 3rem;
}

.demo ul {
  margin: 2rem 1rem 4rem;
}

.weight-light {
  font-weight: 400;
}

.weight-normal {
  font-weight: 500;
}

.weight-semi {
  font-weight: 600;
}

.weight-bold {
  font-weight: 800;
}

.style-normal {
  font-style: normal;
}

.style-italic {
  font-style: italic;
}

/* 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: 60rem;
  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é */
{
  position: relative;
  padding: 0 1.25%;
}

{
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

main .analyse-item-content li.bg-green-blue {
  background: #5fe7cf;
}

main .analyse-item-content li.bg-light-blue {
  background: #d1f8f1;
}

main .analyse-item-content li.bg-cyan {
  background: #35ccf6;
}

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

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

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

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

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

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

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

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

main .shop-edit-header .steps .step,
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;
}

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

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

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

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

main .shop-edit-header .steps .step:not(:last-child)::after,
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;
}

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

main .shop-edit-container .raw,
main .annonceurs-edit-container .raw {
  margin: .5rem 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

main .content .actions .left div {
  position: relative;
  color: #0067b7;
  font-weight: 600;
  margin: 2rem 0;
}



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

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

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

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

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

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

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

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

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

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

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

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

.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: 15rem;
}

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

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

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

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

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

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

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

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

.navigation .secondary .empty {
  background: white;
}

.navigation .secondary .active {
  background-color: #0155ae;
  color: #ffffff;
}

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

.shop--archive .shop-header {
  background: #7e3794;
}

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

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

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

.shop-content th {
  padding: 1rem .25rem;
  background: #e2f7fe;
  font-weight: 800;
  color: #2e4c85;
  font-size: 1.175rem;
}

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

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

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

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


.shop-content td:last-child span {
      justify-content: left;

}

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

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

/*. img {
  width: 2rem;
  height: 2rem;
  object-position: center;
  object-fit: contain;
  margin-right: .5rem;
}*/


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

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

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

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

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

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

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

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

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

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

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

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

.annonceurs-table {
  width: 100%;
  margin-top: -1rem;
}

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

.annonceurs-table th {
  background: #e2f7fe;
  padding: 1rem .25rem;
  font-weight: 800;
}

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

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

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

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

.annonceurs-table tbody td span {
  display: flex;
  align-items: center;
}

.annonceurs-table tbody td span img {
  margin-right: .5rem;
}

.annonceurs-table tbody td:last-child {
  padding-right: 0;
}

.annonceurs-table tbody td:last-child span {
  justify-content: center;
}

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

.date {
  margin-bottom: 1rem;
}

.date img {
  width: 1rem;
  height: 1rem;
  margin: 0 .5rem;
  align-self: center;
}

.date .campagne-date {
  color: #00b9f2;
  font-size: 1.8rem;
  margin-bottom: 0 !important;
}

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

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

.campagnes-bat {
  margin-top: 0;
}

.campagnes-bat::before {
  top: 1rem;
  height: calc(100% - 2rem);
}

.campagnes > * {
  position: relative;
  z-index: 1;
  margin: 1rem 2rem;
}

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

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

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

.campagnes .annonceurs-list {
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

.campagnes .annonceurs-list-item .campagnes-list {
  width: calc(100% - 18rem);
  margin: -1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.campagnes .annonceurs-list-item .campagnes-list-item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 3rem .5rem;
  background: #e8fbf8;
}

.campagnes .annonceurs-list-item .campagnes-list-item:nth-child(even) {
  background: #f2ebf4;
}

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

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

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

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

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

.campagnes .annonceurs-list-item .campagnes-list-add {
  background: white;
  padding: .5rem 0;
}

.dates {
  display: flex;
  justify-content: center;
}

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

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

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

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

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

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

.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.maquette-form-content-left-content li {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: bold;
  min-height: 3rem;
  border-bottom: 2px solid white;
}

.maquette-form-content-left-content li.min-height strong,
.maquette-form-content-left-content li.min-height .group {
  min-height: 8rem;
}

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

.maquette-form-content-left-content li strong,
.maquette-form-content-left-content li .group {
  padding: 1rem;
}

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

.maquette-form-content-left-content li .group {
  width: calc(100% - 14rem);
  background: white;
  padding: 1rem .5rem;
  border-bottom: 2px solid #e8fbf8;
  border-right: 2px solid #e8fbf8;
}

.maquette-form-content-left-content li .group .upload {
  position: relative;
  width: calc(100% + 1rem);
  padding: 1rem .5rem;
  margin: 0 -.5rem;
}

.maquette-form-content-left-content li .group .upload:first-child {
  margin-top: -1rem;
}

.maquette-form-content-left-content li .group .upload:last-child {
  margin-bottom: -1rem;
}

.maquette-form-content-left-content li .group .upload:not(:last-child) {
  border-bottom: 2px solid #e8fbf8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}

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

.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;
}

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

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

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

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

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

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

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

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

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

.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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}

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

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

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

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

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

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

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

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

.commerciaux {
  margin: 0 auto;
  width: 70rem;
  max-width: 100%;
}

.commerciaux strong {
  font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.op-list .listing-bat-list li .bat-list-annonceurs-item .label,
.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);
}

.campagnes-bat {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.campagnes-bat .title {
  align-self: baseline;
}

.campagnes-bat button {
  margin: .5rem 2rem;
}

.bat-design {
  display: table;
  margin: 0 auto;
}

.bat-design tr td {
  border: 1px solid black;
  text-align: center;
  height: 8rem;
}

.bat-design tr td:nth-child(odd) {
  width: 4rem;
  vertical-align: middle;
}

.bat-design tr td:nth-child(even) {
  width: 17rem;
  position: relative;
}

.bat-design tr td img {
  position: absolute;
  width: 15rem;
  left: 0;
  right: 0;
  margin: .5rem auto;
  height: 7rem;
}

.bat-design tr td img.medium {
  height: 11rem;
}

.bat-design tr:last-child td:last-child {
  text-align: left;
  padding: 0 .5rem;
}

.bat-design tr:last-child td:last-child strong {
  font-weight: 600;
}

.op-list-table {
  display: table !important;
  margin: 0 auto !important;
}

.op-list-table .meta {
  width: 25rem;
}

.op-list-table .preview {
  width: 10rem;
}

.op-list-table .empty {
  width: 2rem;
}

.op-list-table th,
.op-list-table td {
  vertical-align: middle;
  padding: .5rem;
}

.op-list-table td.preview {
  height: 14rem;
  position: relative;
}

.op-list-table .loupe {
  position: absolute;
  top: calc(50% - 2rem);
  left: calc(50% - 2rem);
  height: 4rem;
  width: 4rem;
}

.op-list-table img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.op-list-table strong {
  font-weight: 600;
}

.op-list-table th:not(.empty) {
  border-bottom: 2px solid #a5bfdf;
  background: #e2f7fe;
}

.op-list-table td:not(.empty) {
  border-bottom: 1px solid #758cc0;
}

.modal-op {
  position: absolute;
  top: 0;
  left: 0;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

.modal-op > * {
  width: 80rem;
  margin: 0 auto;
}

.modal-op .border {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid #99a1a9;
  padding: 1rem;
  background: white;
}

.modal-op .border .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-op .border .top strong {
  font-size: 2.5rem;
}

.modal-op .border .f-end {
  align-self: flex-end;
  text-transform: uppercase;
}

.modal-op .border .frame {
  border: 1px solid #d8d9da;
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 1rem 0;
}

.modal-op .border .frame p {
  margin-bottom: 2rem;
  color: #6b6d73;
  font-family: serif;
}

.modal-op .border .frame ul {
  display: flex;
  justify-content: space-between;
}

.modal-op .border .frame ul li {
  margin: 1rem 1rem 8rem;
}

.modal-op .border .frame ul li strong {
  color: #595b61;
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-op .border .op-preview-modal {
  display: flex;
  justify-content: space-between;
}

.modal-op .border .op-preview-modal li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(33% - 2rem);;
  margin: 1rem;
}

.modal-op .border .op-preview-modal li img {
  border: 1px solid #c6c7c9;
  padding: .5rem;
}

.modal-op .border .op-preview-modal li strong {
  margin-bottom: 1.5rem;
}

.modal-op .button {
  width: max-content;
  margin: 2rem auto;
}

.modal-op > a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  width: 25rem;
  margin: 1rem auto 0;
}

.modal-op > a em {
  font-size: 1rem;
  margin-left: .5rem;
}

.modal-op > a img {
  width: 2rem;
  height: 2rem;
  margin-right: .5rem;
}

.modal-op > a span {
  font-weight: 600;
}

.modal-op > a:nth-child(3) span {
  margin-left: .5rem;
}

.factures {
  position: relative;
}

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

.factures-modal {
  position: absolute;
  top: 6rem;
  width: 100%;
  z-index: 50;
}

.factures-modal .frame {
  position: relative;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 70rem;
  margin: 8rem auto;
  border: 1px solid #858e98;
  background: white;
}

.factures-modal .frame .close {
  display: flex;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  border: 1px solid rgba(133, 142, 152, 0.5);
  background: rgba(255, 255, 255, 0.5);
  color: rgba(133, 142, 152, 0.5);
  font-size: 2rem;
  font-weight: 600;
  width: 2.5rem;
  height: 2.5rem;
}

.factures-modal .frame .error {
  color: #e75058;
  font-weight: 600;
}

.factures-modal .frame p {
  padding: .5rem;
  display: flex;
  flex-direction: column;
}

.factures-modal .frame .factures-modal-factures {
  background: #eeeff1;
}

.factures-modal .frame .factures-modal-factures a {
  text-decoration: underline;
  color: #2e509f;
  font-weight: 600;
}

.factures-modal .frame table {
  width: 100%;
  margin-top: 1rem;
}

.factures-modal .frame table thead tr {
  background: #ececed;
}

.factures-modal .frame table thead tr th {
  text-align: left;
  padding: .5rem 1rem;
  width: calc(100% / 8);
  vertical-align: middle;
}

.factures-modal .frame table tbody tr td {
  padding: .5rem 1rem;
  border-bottom: 1px solid #858e98;
  width: calc(100% / 8);
  vertical-align: middle;
}

.factures-modal .frame table tbody tr td input:not([type=checkbox]) {
  width: 100%;
  padding: .5rem 1rem;
  border-radius: .5rem;
  border: 1px solid #858e98;
}

.factures-modal .frame .last-p {
  width: 90%;
  margin: 3rem auto .5rem;
  line-height: 1.25rem;
}

.factures-modal .frame .line {
  display: flex;
  max-width: 57.5%;
}

.factures-modal .frame .line textarea {
  margin-top: 2rem;
  height: 12rem;
  margin-left: .5rem;
  padding: 1rem;
  border-radius: .5rem;
  border: 1px solid #858e98;
}

.factures-modal .frame .line-col {
  flex-direction: column;
}

.factures-modal .frame .line .block {
  max-width: 22rem;
  border: 1px solid #858e98;
  padding: .75rem;
  width: max-content;
}

.factures-modal .frame .line .block.last {
  align-self: flex-end;
}

.factures-modal .frame .line .block.divide {
  display: flex;
  flex-direction: column;
}

.factures-modal .frame .line .block.divide .top {
  display: flex;
  flex-direction: column;
  margin-bottom: .25rem;
}

.factures-modal .frame .line .block.divide .bottom {
  display: flex;
  flex-direction: column;
  background: #eeeff1;
  border-top: 2px solid #87919b;
  margin: 0 -.75rem -.75rem;
  padding: .75rem;
}

.factures-modal .frame .line .block.divide .bottom > span {
  display: flex;
}

.factures-modal .frame .line .block.divide .bottom > span span:first-child {
  width: 100%;
  text-align: right;
}

.factures-modal .frame .line .block.divide .bottom > span span:last-child {
  width: 6rem;
  margin-left: 1rem;
  min-width: 6rem;
}

.factures-modal .frame .first-line {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: 2rem 0;
}

.factures-modal .frame .first-line .block {
  max-width: 18.5rem;
  border: 1px solid #858e98;
  padding: .75rem;
  width: max-content;
}

.factures-modal .frame .first-line .block:first-child {
  border-left: none;
}

.factures-modal .frame .first-line .block--filled {
  background: #eeeff1;
}

.factures .dates {
  text-align: center;
}

.factures .dates .active {
  color: #183e96;
}

.factures-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 2rem;
}

.factures-content-header > * {
  width: 100%;
}

.factures-content-header .search {
  display: flex;
  flex-direction: column;
}

.factures-content-header .search strong {
  font-family: 'Pacifico', sans-serif;
  color: #0e3692;
  font-style: italic;
  font-size: 1.5rem;
}

.factures-content-header .search .error {
  margin: .75rem 0;
  font-weight: 600;
  color: #ff4d3a;
}

.factures-content-header .search-list {
  width: 30rem;
}

.factures-content-header .search-list li {
  display: inline-flex;
  align-items: center;
}

.factures-content-header .search-list li form {
  width: 100%;
}

.factures-content-header .search-list li form input {
  margin: .5rem 0;
  width: 100%;
}

.factures-content-header .search-list img {
  width: 1.5rem;
  margin-right: .25rem;
}

.factures-content-header .year img {
  width: 1.375rem;
}

.factures-content-header .total-echeances {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 28rem;
}

.factures-content-header .total-echeances-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #bfc4c9;
  width: 100%;
  padding: .5rem;
}

.factures-content-header .total-echeances-item-title {
  color: #00338e;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

.factures-content-header .total-echeances-item img {
  width: 2.5rem;
  margin-right: .5rem;
}

.factures-content-header .total-echeances-item .amount {
  width: 9.5rem;
  text-align: center;
  display: inline-block;
  color: #00338e;
  font-weight: 600;
}

.factures-content-header .links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #00338e;
}

.factures-content-header .links-mid {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 28rem;
}

.factures-content-header .links-mid .links-item {
  width: 50%;
  padding: 0 .5rem;
}

.factures-content-header .links-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  margin: .5rem 0;
  font-weight: 600;
  line-height: 1.25rem;
}

.factures-content-header .links-item img {
  width: 1.5rem;
  min-width: 1.5rem;
  margin-left: .5rem;
}

.factures-content-table {
  width: 100%;
}

.factures-content-table-header {
  background: #d1f8f1;
  color: #00338e;
  font-weight: 600;
  text-align: center;
  font-size: 1.5rem;
}

.factures-content-table-header th {
  padding: 1rem;
  vertical-align: middle;
}

.factures-content-table-body td {
  padding: .5rem;
  padding-right: 1rem;
  border-bottom: 2px solid #d4d7da;
  vertical-align: middle;
}

.factures-content-table-body td strong {
  font-weight: 600;
}

.factures-content-table-body td p {
  display: flex;
  flex-direction: column;
  line-height: 1.5rem;
}

.factures-content-table-body td.to-pay {
  text-align: center;
}

.factures-content-table-body td.to-pay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.factures-content-table-body td.to-pay img {
  width: 3rem;
  margin-right: .25rem;
}

.factures-content-table-body td.relance {
  text-align: center;
}

.factures-content-table-body td.shop-details strong {
  color: black;
}

.factures-content-table-body td.campagne-details strong {
  color: #124196;
}

.factures-content-table-body td.facture-id {
  width: 3rem;
  text-align: center;
}

.factures-content-table-body td.echeances strong {
  color: #124196;
}

.factures-content-table-body td.actions {
  display: table-cell !important;
  background: #e8fbf8;
  margin-bottom: 0 !important;
  line-height: 1.75rem;
}

.factures-content-table-body td.actions li {
  margin: .5rem 0;
}

.factures-content-table-body tr.has-mention td {
  border-bottom: none;
}

.factures-content-table-body tr.mention {
  background: #fce6e7;
  position: relative;
  z-index: 1;
}

.factures-content-table-body tr.mention td {
  border-bottom: 2px solid #d4d7da;
}

.factures-content-table-body tr.mention td .divide {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.factures-content-table-body tr.mention td img {
  margin-right: .5rem;
  width: 2.5rem;
}

.factures-content-table-body tr.mention td p,
.factures-content-table-body tr.mention td span,
.factures-content-table-body tr.mention td li {
  display: inline-flex;
  justify-content: center;
}

.factures-content-table-body tr.mention td.shop-details {
  text-align: center;
}

.factures-content-table-body tr.mention td.actions {
  background: #fce6e7;
}

.factures-content-table-body tr.mention td.echeances strong {
  color: black;
}

.factures-content-table-body tr.mention + tr.mention {
  position: relative;
  border-top: 2px solid white;
  top: 2px;
}

.factures-content-table-body tr.mention + tr.mention td.shop-details strong {
  display: none;
}

.factures-content-table-body tr.mention + tr.mention td p span:first-child {
  display: none;
}

.factures .facture-2 .btn.button {
  margin: -6rem auto 4rem;
  display: block;
  width: max-content;
}

.factures .facture-2 .frame {
  padding: 3rem 5rem;
}

.factures .facture-2 .frame .logo {
  width: 14rem;
}

.factures .facture-2 .frame .popup-echeances-list {
  border: 2px solid #c9cacc;
  margin-bottom: 4rem;
}

.factures .facture-2 .frame .popup-echeances-list tr {
  border: none;
}

.factures .facture-2 .frame .popup-echeances-list tr td {
  border: none;
}

.factures .facture-2 .frame .popup-echeances-list tr:nth-child(even) {
  background: #ececed;
}

.factures .facture-2 .frame .popup-echeances-list tfoot td {
  padding: .5rem 1rem;
  font-weight: 600;
  font-size: 1.25rem;
}

.factures .facture-2 .frame p span {
  line-height: 1.2rem;
  margin-bottom: .25rem;
}

.factures .facture-2 .frame p strong {
  font-weight: 600;
}

.factures .facture-2 .frame .popup-general-mentions {
  margin-top: 1rem;
  font-size: .8rem;
}

.factures .facture-2 .frame hr {
  border: 1px solid #c9cacc;
  width: 100%;
}

.factures .facture-2 .frame .popup-last-p {
  font-size: .8rem;
}

.factures .facture-2 .frame .line {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: unset;
}

.factures .facture-2 .frame .line.bottom {
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.factures .facture-2 .frame .line.bottom p {
  font-weight: 600;
  padding-bottom: 2rem;
}

.factures .facture-2 .frame .line:nth-child(4) {
  margin: 0 auto;
  margin-top: 3rem;
  width: 90%;
}

.factures .facture-2 .frame .line:nth-child(4) p:first-child span:first-child {
  margin-bottom: 1.25rem;
}

.factures .facture-2 .frame .line:nth-child(4) p strong {
  font-weight: 600;
}

*[data-popin] {
  cursor: pointer;
}

.popin {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 50%;
  min-width: 26rem;
  text-align: center;
  transform: translate(-50%, -50%);
  border: 6px solid #e52c1a;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: white;
  z-index: 50;
}

.popin strong {
  display: inline-block;
  line-height: 2rem;
  font-weight: 600;
  max-width: 22rem;
  text-align: center;
}

.popin table {
  width: 50rem;
  margin: 1rem -1.5rem;
}

.popin table thead {
  background: #ececed;
}

.popin table thead th {
  padding: 1rem;
  font-weight: 600;
}

.popin table thead th:nth-child(1) {
  width: 50%;
}

.popin table thead th:nth-child(2), .popin table thead th:nth-child(3) {
  width: 25%;
}

.popin table tbody td {
  padding: 1rem;
  vertical-align: middle;
  text-align: center;
  border-bottom: 1px solid #babfc6;
}

.popin table tbody td:nth-child(1) {
  text-align: left;
}

.popin table input {
  width: calc(100% + .5rem);
  height: 2rem;
  border: 1px solid #e1e1e1;
  padding: .5rem 0 .5rem .5rem;
  margin: 0 -5rem 0 auto;
  display: block;
  border-radius: 8px;
  -moz-appearance: textfield;
}

.popin table input::-webkit-outer-spin-button, .popin table input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.popin .btn.button {
  margin: 1rem auto 0;
}

.popin.closed {
  display: none;
}

.facture-3 .btn {
  display: block;
  width: max-content;
  margin-top: -6rem;
  margin-bottom: 6rem;
}

.facture-3 .frame {
  min-height: 90rem;
  padding: 4rem 5rem;
  justify-content: space-between;
}

.facture-3 .frame hr {
  border: 1px solid #dcdfe2;
}

.facture-3 .frame .popup-echeances-list {
  border: 1px solid #cacacc;
  margin-top: 3rem;
}

.facture-3 .frame .popup-echeances-list th {
  font-weight: 600;
}

.facture-3 .frame .popup-echeances-list th,
.facture-3 .frame .popup-echeances-list td {
  width: calc(100% - 20rem);
  border: none;
  padding: .5rem 1rem;
}

.facture-3 .frame .popup-echeances-list th:nth-child(2), .facture-3 .frame .popup-echeances-list th:nth-child(3),
.facture-3 .frame .popup-echeances-list td:nth-child(2),
.facture-3 .frame .popup-echeances-list td:nth-child(3) {
  width: 10rem;
  text-align: center;
}

.facture-3 .frame .popup-echeances-list tfoot {
  font-weight: 600;
  font-size: 1.1rem;
}

.facture-3 .frame > .bottom {
  font-size: .9rem;
}

.facture-3 .frame .line.bottom {
  margin-bottom: 2rem;
}

.facture-3 .frame .line.bottom .logo {
  width: 12rem;
}

.facture-3 .frame .line p {
  line-height: 1.35rem;
}

.facture-3 .frame .line strong {
  font-weight: 600;
}

.facture-3 .frame .line:nth-child(2) {
  max-width: 90%;
  justify-content: space-between;
  width: 100%;
}

.facture-3 .frame .line:nth-child(3) {
  margin-top: 4rem;
  max-width: unset;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding-left: 3rem;
}

.facture-3 .frame .line:nth-child(3) p {
  max-width: 20rem;
}

@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;
}

.upper {
  text-transform: uppercase;
}

.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;
}

.mt-8 {
  margin-top: .5rem;
}

.mt-16 {
  margin-top: 1rem;
}

.mt-24 {
  margin-top: 1.5rem;
}

.mt-32 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: .5rem;
}

.mb-16 {
  margin-bottom: 1rem;
}

.mb-24 {
  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;
}

/* add style search popup */
.openBtn {
  background: #f1f1f1;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
}

.openBtn:hover {
  background: #bbb;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9);
}

.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

.overlay input[type=text] {
  padding: 15px;
  font-size: 16px;
  border: none;
  float: left;
  width: 80%;
  background: white;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

.overlay button.button_2 {
  float: left;
  width: 20%;
  padding: 16px;
  background: #ddd;
  font-size: 14px;
  border: none;
  border-radius: 0;
  margin: 0;
  cursor: pointer;
}

.overlay button.button_2:hover {
  background: #bbb;
}

.bat-label{
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 99999px;
  margin-right: .5rem;
}
@media only screen and (min-width : 1200px) {
  .container { max-width: 1800px!important; }
}