@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Protest+Riot&family=Quicksand:wght@300..700&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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article aside details figcaption figure footer header hgroup main menu nav section summary {
  display: block;
}

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

:root {
  --vlan-font-family: "Quicksand", sans;
  --vlan-heading-family: "Protest Riot", serif;
}

body,
textarea {
  font-family: var(--vlan-font-family);
  color: #120000;
  font-size: 18px;
  line-height: 1.4;
  padding-bottom: 20px;
  margin: 0;
  padding: 0;
  background-color: #fcebd9;
}

.wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.wrapper > .left {
  flex: 1;
  padding: 10px;
  padding-right: 20px;
}
.wrapper > .right {
  position: relative;
  min-width: 400px;
  max-width: 800px;
  width: 100%;
  flex: 3;
  padding: 10px;
  padding-left: 20px;
}
.wrapper > .left, .wrapper > .right {
  position: relative;
  padding-top: 30px;
}

.wide-page .wrapper > .right {
  max-width: unset;
}
.wide-page .content article {
  max-width: unset;
}

a {
  color: #ed254e;
  font-weight: bold;
  text-decoration: none;
  background-image: linear-gradient(to top, rgba(238, 193, 112, 0) 0, #eec170 0, #eec170 4px, rgba(238, 193, 112, 0) 4px);
  padding: 1px 0;
  margin: 0 0;
  cursor: pointer;
}
a.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: none;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
}

h1 {
  font-family: var(--vlan-heading-family);
  font-size: 2em;
  color: #ed254e;
}
h1 a {
  text-decoration: none;
  background: none;
  padding: 0;
  margin: 0;
}

header {
  width: 100%;
  flex-shrink: 0;
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  position: relative;
}
header::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, #C9C1BB 0%, transparent 100%);
  z-index: -1;
}
header img.logo {
  width: 90px;
  position: absolute;
  left: -48px;
  margin-top: -12px;
  z-index: 2;
}
header h1 {
  margin-top: 15px;
  padding-left: 20px;
}

em,
b,
strong {
  font-weight: bold;
}

i {
  font-style: italic;
}

nav,
.leftpart {
  border-bottom: 5px dotted #780000;
  text-align: right;
}

.content p {
  margin-bottom: 0.2em;
}
.content h2 {
  font-family: var(--vlan-heading-family);
  font-weight: bold;
  font-size: 1.3em;
  margin-bottom: 1em;
  margin-top: 0.8em;
}
.content h2:first-child {
  margin-top: 0;
}
.content h3 {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 0.2em;
  margin-top: 0.8em;
}
.content h3:first-child {
  margin-top: 0;
}
.content article {
  max-width: 700px;
  margin-bottom: 2em;
}
.content article ul {
  padding-left: 0.7em;
}
.content article ul li {
  list-style: disc;
}

nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-width: 80vw;
  justify-content: center;
}
nav .menubtn {
  display: none;
}
nav .userbox {
  position: relative;
  display: block;
  max-width: 300px;
  margin: 0 0.5em;
  font-size: 0.9em;
  padding: 10px;
  color: #fff;
  font-weight: 500;
}
nav .userbox a {
  color: #fcebd9;
}
nav ul li > a,
nav .userbox {
  position: relative;
}
nav ul li > a::before,
nav .userbox::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 0;
  left: 0;
  background-color: #ed254e;
  transform: rotate(1.5deg);
  transition: transform 0.2s ease-in-out;
  z-index: -1;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
nav ul li > a:hover::before,
nav .userbox:hover::before {
  transform: rotate(-1.2deg) !important;
}
nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
}
nav ul li > a {
  display: block;
  color: #120000;
  padding: 10px;
  color: #fff;
  background: none;
  position: relative;
}
nav ul li:nth-child(1) > a::before {
  transform: rotate(-2.3deg);
}
nav ul li:nth-child(2) > a::before {
  transform: rotate(0.7deg);
}
nav ul li:nth-child(3) > a::before {
  transform: rotate(3deg);
}
nav ul li:nth-child(4) > a::before {
  transform: rotate(-1.8deg);
}
nav ul li:nth-child(5) > a::before {
  transform: rotate(1.1deg);
}

.imgbox {
  width: auto;
  margin: 0;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

header.home h1 {
  font-size: 7em;
  padding: 10px;
  padding-left: 80px;
  line-height: 2;
}
header.home h1 span {
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}

form .field,
.form .field {
  margin: 12px 0;
  width: 100%;
}
form .field label,
.form .field label {
  color: #ed254e;
  font-weight: bold;
  font-size: 0.8em;
  margin-bottom: -3px;
  margin-top: 6px;
  display: block;
  padding-left: 8px;
}
form .field label.required::after,
.form .field label.required::after {
  content: " *";
  color: #120000;
}
form .field .input,
.form .field .input {
  flex: 1;
}
form .field .help_text,
.form .field .help_text {
  font-size: 0.8em;
  text-align: right;
  opacity: 0.8;
  font-style: italic;
}
form input,
form textarea,
form select,
.form input,
.form textarea,
.form select {
  width: 100%;
  font-size: 0.9em;
  background: #fff;
  color: #585123;
  border: 1px solid #ed254e;
  border-bottom-width: 3px;
  border-radius: 10px;
  padding: 10px;
}
form input:focus,
form textarea:focus,
form select:focus,
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: #585123;
}
form input[type=checkbox],
.form input[type=checkbox] {
  display: inline-block;
  width: 30px;
  margin-top: 5px;
}
form input[type=checkbox] + label,
.form input[type=checkbox] + label {
  display: inline-block;
  margin-bottom: 0;
}
form textarea,
.form textarea {
  resize: vertical;
}
form p.inline,
.form p.inline {
  display: flex;
  width: 100%;
}
form p.inline > *,
.form p.inline > * {
  flex: 1;
  margin: 0 5px;
}
form .errorlist,
.form .errorlist {
  color: #ed254e;
}
form .formset .extra,
.form .formset .extra {
  display: none;
}
form .formset .forms .block,
.form .formset .forms .block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .formset .forms .block > .field,
.form .formset .forms .block > .field {
  width: 50%;
  min-width: 300px;
  flex: 1;
  padding: 0 10px;
  margin: 0;
}

input[type=submit],
input[type=button],
.button, button {
  background: #ed254e;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1em;
  width: auto;
  padding: 10px;
  line-height: 1;
  display: inline-block;
  padding: 15px;
  cursor: pointer;
}

.button, button {
  background: none;
  position: relative;
}
.button::before, button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 10px;
  left: 0;
  background-color: #ed254e;
  transform: rotate(0.7deg);
  transition: transform 0.2s ease-in-out;
  z-index: -1;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.button:hover::before, button:hover::before {
  transform: rotate(-0.56deg) !important;
}

article .block {
  border: 2px solid white;
  margin: 20px 0;
  padding: 10px;
  border-radius: 10px;
}
article .block p {
  font-weight: bold;
  margin: 6px;
}
article .block p .label {
  font-weight: normal;
}

article.event .info,
article.morceau .info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
article.event .info > div,
article.morceau .info > div {
  margin: 0;
}
article.event .info > div:first-child,
article.morceau .info > div:first-child {
  min-width: 300px;
  margin-right: 10px;
  flex: 2;
}
article.event .info > div:nth-child(2),
article.morceau .info > div:nth-child(2) {
  background-color: white;
  border: none;
  font-size: 0.9em;
  text-align: right;
  flex: 1;
}
article.event .info p.rsvp,
article.morceau .info p.rsvp {
  color: #f00;
}
article.event .info .desc,
article.morceau .info .desc {
  background: white;
  padding: 5px;
  font-size: 0.95em;
  line-height: 1.3;
}
article.event .info .desc img,
article.morceau .info .desc img {
  width: auto;
  height: auto;
  max-width: 100%;
}
article.event .info .desc p,
article.morceau .info .desc p {
  font-weight: normal;
}

article.recap ul.events li.event {
  width: 100%;
  min-width: none;
  align-items: center;
  border: 2px solid transparent;
}
article.recap ul.events li.event.reponse- {
  border: 3px solid #f00;
}
article.recap ul.events li.event.reponse- .reponse {
  color: #f00;
}
article.recap ul.events li.event.reponse-n {
  opacity: 0.4;
}
article.recap ul.events li.event .desc {
  flex: 3;
}
article.recap ul.events li.event .reponse {
  width: 200px;
  padding: 10px;
  flex: 1;
}

article.admin ul.comptes li {
  display: flex;
  border-top: 2px solid #fcebd9;
  padding: 2px 5px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: justify;
}
article.admin ul.comptes li:last-child {
  border-bottom: 2px solid #fcebd9;
}
article.admin ul.comptes li > * {
  padding: 5px;
  flex-shrink: 1;
}
article.admin ul.comptes li .username {
  font: 0.7em monospace;
  width: 80px;
  overflow: hidden;
  overflow-wrap: anywhere;
}
article.admin ul.comptes li .nom {
  font-weight: bold;
  flex-basis: 30%;
  flex-grow: 1;
}
article.admin ul.comptes li .email {
  flex-basis: 50%;
  text-align: right;
  flex-grow: 1;
}
article.admin ul.comptes li .instru {
  min-width: 50%;
  text-align: right;
  flex-grow: 1;
}
article.admin ul.comptes li .statut {
  font-weight: bold;
  width: 80px;
}
article.admin ul.comptes li .admin {
  background-color: #fcebd9;
  font-weight: bold;
}
article.admin ul.comptes li .action {
  text-align: right;
}
article.admin ul.comptes li .action a {
  display: inline-block;
}

.content article.repertoire ul.morceaux li {
  list-style: none;
}
.content article.repertoire ul.morceaux li.actions {
  margin-bottom: 0.5em;
}
.content article.repertoire ul.morceaux li.morceau {
  background-color: #fff;
  margin: 4px;
  border-radius: 10px;
}
.content article.repertoire ul.morceaux li.morceau a {
  display: block;
  padding: 10px;
  background: none;
}
.content article.repertoire ul.morceaux li.morceau a .compositeur {
  font-weight: normal;
  color: #120000;
}
.content article.repertoire ul.morceaux li.morceau a .compositeur:before {
  content: " - ";
}

.content article.morceau ul.parties {
  margin-top: 1em;
}
.content article.morceau ul.parties li {
  list-style: none;
  display: flex;
  border-top: 1px solid #fcebd9;
  align-items: center;
}
.content article.morceau ul.parties li:last-child {
  border-bottom: 1px solid #fcebd9;
}
.content article.morceau ul.parties li > *:first-child {
  padding: 10px 0;
}
.content article.morceau ul.parties li.partie a:not(.button) {
  background: none;
}
.content article.morceau ul.parties li.partie a.titre {
  min-width: 200px;
  color: #120000;
}
.content article.morceau ul.parties li.partie a.interne::after {
  content: "*";
  color: #ed254e;
}
.content article.morceau ul.parties li.partie a:not(:first-child) {
  margin: 0 5px;
}
.content article.morceau ul.parties li.partie a.voir {
  background: rgb(244.5365853659, 185.243902439, 122.4634146341);
}

.ui-widget-content a {
  margin: 0;
  background-image: inherit;
}

.embed {
  position: relative;
  padding-bottom: 56.25%;
}
.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.obfusmel::before {
  content: attr(data-email-before);
}

.obfusmel::after {
  content: attr(data-email-after);
}

.wagtail-userbar-reset a,
#djDebug a {
  background: unset;
}

.page-contenu > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.menu .menu-list .menu-list li a::after {
  content: " ┘";
}

.warning {
  background: white;
  padding: 0.7em;
}

ul.events li.event {
  display: flex;
  margin: 2px 0;
}
ul.events li.event .desc {
  position: relative;
  padding: 10px;
  padding-left: 20px;
}
ul.events li.event .desc h4 {
  font-size: 1.3em;
  padding-right: 5px;
  line-height: 1;
}
ul.events li.event .desc h4 a {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 50%);
  color: #120000;
}
ul.events li.event .desc h4::after, ul.events li.event .desc h4::before {
  font-variant: super;
  font-size: 0.7em;
}
ul.events li.event .desc h4::after {
  font-style: italic;
}
ul.events li.event .desc p.misc {
  line-height: 1;
  margin: 0;
  font-size: 0.8em;
}
ul.events li.event .desc p.misc .date {
  font-weight: bold;
}
ul.events li.event .desc p.misc .lieu {
  overflow: hidden;
  max-width: 150px;
  text-overflow: ellipsis;
}
ul.events li.event .desc p.misc .rsvp {
  color: rgb(155, 8, 8);
}
ul.events li.event.statut-annule {
  opacity: 0.5;
}
ul.events li.event.statut-annule .desc::before {
  content: "×";
  color: #fff;
  background-color: #120000;
  position: absolute;
  left: 3px;
  top: 3px;
  height: calc(100% - 6px);
  width: 12px;
  text-align: center;
  padding-top: 7px;
}
ul.events li.event.statut-annule .desc {
  text-decoration: line-through;
}
ul.events li.event.statut-attente .desc::before {
  content: "?";
  background-color: rgba(252, 235, 217, 0.9);
  position: absolute;
  left: 3px;
  top: 3px;
  height: calc(100% - 6px);
  width: 12px;
  text-align: center;
  padding-top: 7px;
}
ul.events li.event.type-repet .desc {
  background-color: #fdc357;
}
ul.events li.event.type-repet .desc h4::after {
  content: " répète";
}
ul.events li.event.type-jeu .desc {
  background-color: #fc748f;
}
ul.events li.event.type-jeu .desc h4::after {
  content: " public";
}
ul.events li.event.type-cool .desc {
  background-color: #B9AB50;
}
ul.events li.event.type-cool .desc h4::after {
  content: " interne";
}
ul.events li.event.type-autre .desc {
  background-color: #9498b8;
}

article.planning {
  overflow-x: auto;
  padding-bottom: 200px;
  cursor: grab;
}
article.planning.scrolling {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: grabbing;
}
article.planning > ul li.event .desc {
  position: sticky;
  left: 1px;
  z-index: 2;
  width: 300px;
  min-width: 300px;
  font-size: 0.9em;
  margin: 0 1px;
}
article.planning > ul li.event:not(.header) ul.reponses li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #ccc;
}
article.planning > ul li.event ul.reponses {
  display: flex;
}
article.planning > ul li.event ul.reponses li {
  position: relative;
  width: 20px;
  height: 100%;
  opacity: 0.6;
  margin: 0 1px;
}
article.planning > ul li.event ul.reponses li.detailed::after {
  content: "";
  border: 4px solid transparent;
  border-top-color: #333;
  border-right-color: #333;
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
  width: 0px;
  height: 0px;
}
article.planning > ul li.event ul.reponses li .reponse-rapide {
  border: 1px solid #000;
}
article.planning > ul li.event ul.reponses li .details {
  z-index: 3;
  font-size: 0.9em;
  display: none;
  position: absolute;
  max-width: 200px;
  width: 150px;
  width: -moz-max-content;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  background: #000;
  color: #fff;
  top: 80%;
  padding: 5px;
}
article.planning > ul li.event ul.reponses li .details::before {
  content: "";
  position: absolute;
  height: 0px;
  top: -12px;
  border: 6px solid transparent;
  border-bottom-color: #000;
  left: 50%;
  margin-left: -6px;
}
article.planning > ul li.event ul.reponses li::before {
  display: block;
}
article.planning > ul li.event ul.reponses li.reponse-n {
  opacity: 0.3;
}
article.planning > ul li.event ul.reponses li.reponse-n::before {
  content: "✗";
}
article.planning > ul li.event ul.reponses li.reponse-o {
  opacity: 0.9;
}
article.planning > ul li.event ul.reponses li.reponse-o::before {
  content: "✓";
}
article.planning > ul li.event ul.reponses li.envoi::before {
  content: "◌" !important;
}
article.planning > ul li.event ul.reponses li:hover {
  opacity: 1 !important;
}
article.planning > ul li.event ul.reponses li:hover .details {
  display: block;
}
article.planning > ul li.event ul.reponses li.compteur {
  font-size: 0.7em;
  background-color: #ede;
  opacity: 1;
}
article.planning > ul li.event ul.reponses li:nth-child(3) {
  margin-right: 10px;
}
article.planning > ul li.event.header {
  height: 100px;
  display: flex;
  align-items: flex-end;
}
article.planning > ul li.event.header > * {
  height: 0;
}
article.planning > ul li.event.header ul.reponses li.musicienne {
  list-style: none;
  opacity: 1;
}
article.planning > ul li.event.header ul.reponses li.musicienne .nom {
  font-variant: small-caps;
  font-size: 14px;
  position: absolute;
  transform: translateY(0px) rotate(-60deg);
  transform-origin: left top;
  padding: -1px;
  padding-left: 12px;
  width: 140px;
  border-top: 1px solid #fff;
}
article.planning > ul li.event.header ul.reponses li.musicienne .details {
  top: -50px;
  margin-left: 5px;
}
article.planning > ul li.event.header ul.reponses li.musicienne .details::before {
  border-bottom-color: transparent;
  border-top-color: #000;
  top: unset;
  bottom: -12px;
}
article.planning > ul li.event.header ul.reponses li.musicienne::after {
  content: "";
  position: absolute;
  background: #fcebd9;
  height: 20px;
  width: 120%;
}

article.event ul.reponses li, article.event ul.reponses li form {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 40px;
  margin: 4px 0;
  flex-wrap: wrap;
}
article.event ul.reponses li.reponse-o, article.event ul.reponses li form.reponse-o {
  opacity: 0.9;
}
article.event ul.reponses li.reponse-, article.event ul.reponses li form.reponse- {
  opacity: 0.6;
}
article.event ul.reponses li.reponse-n, article.event ul.reponses li form.reponse-n {
  opacity: 0.3;
}
article.event ul.reponses li:hover, article.event ul.reponses li form:hover {
  opacity: 1 !important;
}
article.event ul.reponses li > span, article.event ul.reponses li form > span {
  display: block;
  padding: 5px 10px;
}
article.event ul.reponses li .musicienne, article.event ul.reponses li form .musicienne {
  width: 130px;
  text-align: right;
  font-weight: bold;
}
article.event ul.reponses li .reponse, article.event ul.reponses li form .reponse {
  width: 50px;
  text-align: center;
}
article.event ul.reponses li .instrument, article.event ul.reponses li form .instrument {
  width: 80px;
  font-size: 0.7em;
}
article.event ul.reponses li .details, article.event ul.reponses li form .details {
  flex: 1;
  min-width: 200px;
  text-align: left;
  font-size: 0.9em;
  line-height: 1;
}
article.event form .reponse {
  flex: unset;
  margin: 0;
}

.instru-01-percu {
  background-color: #DE97FF !important;
}

.instru-11-souba {
  background-color: #959BFF !important;
}

.instru-12-bar {
  background-color: #8AC7FF !important;
}

.instru-13-tuba {
  background-color: #8CEEFC !important;
}

.instru-21-trombone {
  background-color: #A4FFAD !important;
}

.instru-31-trompette {
  background-color: #DDFC86 !important;
}

.instru-40-saxtenor {
  background-color: #FCFC8F !important;
}

.instru-41-sax {
  background-color: #FCE285 !important;
}

.instru-42-saxsopran {
  background-color: #F5D182 !important;
}

.instru-51-clari {
  background-color: #FCBA81 !important;
}

.instru-52-flute {
  background-color: #FC9681 !important;
}

.instru-53-piccolo {
  background-color: #f78b83 !important;
}

.instru-99-autre {
  background-color: #CDBDCD !important;
}

.instru-blanc {
  background-color: #FFF !important;
}

@media (max-width: 850px) {
  header.home.wrapper {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: flex-end;
  }
  header.home.wrapper > .left, header.home.wrapper > .right {
    min-width: 200px;
    margin: 0 10px;
  }
  header.home.wrapper > .right {
    padding-right: 0;
    margin-right: 0;
    padding-left: 0;
    flex: 2.5;
  }
  header.home.wrapper > .right .imgbox {
    height: 300px;
    margin: 0;
  }
  header.home.wrapper > .right img.logo {
    left: unset;
    right: -119px;
    width: 240px;
    top: 95px;
  }
  header.home.wrapper > .right h1 {
    padding-right: 10px;
    font-size: 3em;
  }
  header.home.wrapper > .left {
    display: block;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    min-width: 100px;
  }
  header.home.wrapper > .left .imgbox {
    margin: 0;
    height: 180px;
  }
  .wrapper {
    display: block;
    max-width: 800px;
    margin-right: 0;
    margin-left: auto;
  }
  nav {
    padding: 0 10px !important;
    padding-bottom: 10px !important;
    text-align: right;
    align-items: flex-end;
    justify-content: flex-end;
  }
  nav .userbox {
    max-width: unset;
    min-width: unset;
    margin-top: 0;
    color: #120000;
    padding: 10px 0;
  }
  nav .userbox a {
    color: #585123;
  }
  nav .userbox::before {
    display: none;
  }
  nav .userbox p {
    display: inline;
    padding: 10px;
  }
  nav ul.menu {
    justify-content: right;
  }
  nav ul.menu li {
    display: inline-block;
    margin: 0 10px;
  }
  article.planning > ul li.event .desc {
    min-width: 200px;
    width: 200px;
  }
  article.planning > ul li.event .desc h4 {
    display: flex;
  }
  article.planning > ul li.event .desc h4 a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
  }
  header.wrapper > .right h1 {
    font-size: 1.2em;
  }
  header.home.wrapper {
    margin-bottom: 10px;
  }
  header.home.wrapper > .right .imgbox {
    height: 200px;
  }
  header.home.wrapper > .right img.logo {
    width: 120px;
    right: -61px;
  }
  header.home.wrapper > .right h1 {
    font-size: 2em;
  }
  header.home.wrapper > .left .imgbox {
    height: 100px;
  }
  nav {
    padding: 0;
  }
  nav .menubtn {
    display: block;
    position: absolute;
    top: -30px;
    right: 20px;
  }
  nav:not(.expanded) > ul, nav:not(.expanded) .userbox {
    display: none;
  }
  nav.expanded .menubtn::before {
    content: "× ";
  }
  article.morceau ul.parties li {
    flex-wrap: wrap;
  }
  article.morceau ul.parties li a.voir {
    display: none;
  }
  article.morceau ul.parties li a:not(:first-child) {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 340px) {
  header.wrapper > .right h1 {
    font-size: 1em;
  }
  header.wrapper.home > .right h1 {
    font-size: 1.8em;
  }
}/*# sourceMappingURL=main.css.map */