/* Reset */
/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/

/* Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
    all: unset;
    display: revert;
  }
  
  /* Preferred box-sizing value */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  /*
    Remove list styles (bullets/numbers)
    in case you use it with normalize.css
  */
  ol, ul {
    list-style: none;
  }
  
  /* For images to not be able to exceed their container */
  img {
    max-width: 100%;
  }
  
  /* Removes spacing between cells in tables */
  table {
    border-collapse: collapse;
  }
  
  /* Revert the 'white-space' property for textarea elements on Safari */
  textarea {
    white-space: revert;
  }
  button,
  input,
  optgroup,
  select,
  textarea,html input[type="button"],
  input[type="reset"],
  input[type="submit"],button[disabled],
  html input[disabled],button::-moz-focus-inner,
  input::-moz-focus-inner, input[type="checkbox"],
  input[type="radio"], input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button, input[type="search"], input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration {
    background-image:none;
    background-color:transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }


body { margin: 0; }

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

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

.content {
    width: 1120px;
    display: flex;
    flex-direction: column;
}

.home-top {
    margin: 10px 0 10px 0;
    background-color: lightgrey;
    padding: 50px;
}

.home-contests {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-contests-list {
    display: flex;
}



.form-create {
    display: flex;
    width: 100%;
    flex-direction: column;
}


.btn-launch {
    color: black;
    background-color: chartreuse;
    padding: 10px 40px 10px 40px;
    border-radius: 10px;
    font-size: 2rem;
}

/*#blah { display: none; }
*/


a { text-decoration: none; }
.aic { align-items: center; }
.aifs { align-items: flex-start; }
.aife { align-items: flex-end; }
.jcc { justify-content: center; }
.jcse { justify-content: space-evenly; }
.jcsb { justify-content: space-between; }
.jcfe { justify-content: flex-end; }
.d-flex { display: flex; }
.fdr { flex-direction: row; }
.fdc { flex-direction: column; }
.fl-r { float: right; }
.w-100 { width : 100%; }
.w-90 { width : 90%; }
.w-80 { width : 80%; }
.w-70 { width : 70%; }
.w-60 { width : 60%; }
.w-50 { width : 50%; }
.w-30 { width : 30%; }
.w-33 { width : 33%; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.mr-8 { margin-right: 8px; }
.pb-0 { padding-bottom: 0; }
.mb-0 { margin-bottom: 0; }
.pd-16 { padding: 16px; }
.pd-32-8 { padding: 32px 8px; }
.gap16 { gap: 16px; }

/* Base */
/* Variables */
:root {
    --primary: #1659d4;
    --primary-shade: #051367;
    --secondary: #B40026;
    --dark: #071533;
    --primary-light: #f0f3ff;
    --primary-mid: rgba(22, 89, 212,.4);
    --fbColor: #4267B2;
    --danger: #B40026;
    --danger-light: #fcedef;
    --warning: #F1BB30;
    --warning-light: #fff6e0;
    --success: #00b70b;
    --success-light: #f0fef1;
    --pad32: 32px;
    --padCard: 24px;
    --pad16: 16px;
    --containerWidth: 1120px;
    --mrgSection: 48px 0;
    --mrgSectionBig: 96px 0;
    --borderRadiusSmall: 8px;
    --borderRadiusLarge: 16px;
    --lightGrey: #5b6180;
    --shadowD: 0 16px 30px 0 rgb(21 29 52 / 10%);
    --shadowL: 0 16px 30px 0 rgb(21 29 52 / 5%);
    --shadowTop: 0 -16px 30px 0 rgb(21 29 52 / 5%);
    --borderColor:  rgb(0 126 168 / 13%);
}

h1,h2,h3,h4,p,span,a,li {
    font-family: 'Rubik', sans-serif;
}

body {
    display: block;
    margin: 0;
    scroll-behavior: smooth;
    padding: 0;
    background: white;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    font-family: 'Rubik', sans-serif;
}

section, article, aside, footer, header, nav, hgroup {
    display: block;
}
.wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.wrapper.fade-out {
    animation: .3s fadeOut ease-in-out both;
}

section {
    float: left;
    width: 100%;
    margin: var(--mrgSection);
}
section.--big-mrg {
    margin: var(--mrgSectionBig);
}
section.--mrg-32 {
    margin: 32px 0;
}

section.--mrg-16 {
    margin: 16px 0;
}
section.bg--light {
    background: var(--primary-light);
    margin-bottom: 0;
    margin-top: 0;
    padding: 64px 0;
    display: flex;
    justify-content: center;
}


h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 64px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 32px;
}

h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 54px;
    color: var(--dark);
    margin-bottom: 16px;
}

h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 40px;
    color: var(--dark);
    margin-bottom: 16px;
}

h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark);
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.52   ;
    color: var(--lightGrey);
}
ul {
    margin-top: 32px;
    padding-left: 2rem;
}
ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: var(--dark);
}

ul li::marker {
    color: var(--primary);
}
.button.--icon-left {
    display: flex;
    align-items: center;
}
.button.--icon-left svg,
.button.--icon-left img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    margin-right: 8px;
}
.button.--icon-right svg,
.button.--icon-right img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    margin-left: 8px;
}
.button-primary {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    padding: 16px;
    color: white;
    text-decoration: none;
    background: var(--primary);
    border-radius: var(--borderRadiusSmall);
    display: inline-block;
    transition: 0.15s all ease;
    width: fit-content;
    width: -moz-fit-content;
    cursor: pointer;
}
.button-primary.w-100 {
    width: 100%;
    text-align: center;
}
.button-primary:hover {
    transform: scale(1.02);
}
.button-secondary {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    padding: 16px;
    color: var(--primary);
    text-decoration: none;
    background: white;
    border-radius: var(--borderRadiusSmall);
    display: inline-block;
    transition: 0.15s all ease;
    cursor: pointer;
}

.button-secondary:hover {
    background: var(--primary-light);
}

.button-secondary.--icon-left svg {
    fill: var(--primary);
}
.button-secondary.--danger {
    color: var(--danger);
}
.button-secondary.--danger:hover {
    background: var(--danger-light);
}
.button-secondary.--danger.--icon-left svg {
    fill: var(--primary);
}
.button-secondary.--success {
    color: var(--success);
}
.button-secondary.--success:hover {
    background: var(--success-light);
}
.button-secondary.--success.--icon-left svg {
    fill: var(--success);
}
.button-secondary.--warning {
    color: var(--warning);
}
.button-secondary.--warning:hover {
    background: var(--warning-light);
}
.button-secondary.--warning.--icon-left svg {
    fill: var(--warning);
}

.button-secondary.--grey {
    color: var(--lightGrey);
}
.button-secondary.--grey:hover {
    background: var(--primary-light);
}
.button-secondary.--grey.--icon-left svg {
    fill: var(--lightGrey);
}

.button-tertiary {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    padding: 16px;
    color: var(--primary);
    text-decoration: none;
    background: var(--primary-light);
    border-radius: var(--borderRadiusSmall);
    display: inline-block;
    transition: 0.15s all ease;
    cursor: pointer;
}

.button-tertiary:hover {
    transform: scale(1.01);
}
.button-small {
    font-size: 14px;
    padding: 8px;
}

.tag {
    display: inline-block;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    width: fit-content;
}
.tag.--primary {
    background: var(--primary);
    color: white;
}
.tag.--primary-light {
    background: var(--primary-light);
    color: var(--primary);
}
.tag.--secondary {
    background: var(--secondary);
    color: var(--dark);
}
.tag.--danger {
    background: var(--danger-light);
    color: var(--danger);
}
.tag.--success {
    background: var(--success-light);
    color: var(--success);
}
.tag.--warning {
    background: var(--warning-light);
    color: var(--warning);
}
.tag.--dark {
    background: var(--primary-light);
    color: var(--dark)
}
.container {
    width: 100%;
    max-width: var(--containerWidth) !important;
    padding: 0;
}

.text-center {
    text-align: center;
}
.menu-sticky-bottom {
    width: 100%;
    position: sticky;
    bottom: 0;
    background: white;
    padding: var(--pad16);
    box-shadow: var(--shadowTop);
}

.menu-colbottom {
    width: 100%;
    position: sticky;
    bottom: 0;
    background: white;
    padding: var(--pad16);
    box-shadow: var(--shadowTop);
}


#dashboardLink {
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--borderColor);
}
#dashboardLinkMob {
    display: none;
}

/* Base form */
input,
textarea,
select,
.stripe-input {
    font-size: 16px;
    border: 1px solid var(--borderColor);
    border-radius: var(--borderRadiusSmall);
    padding: 16px;
    width: 100%;
    color: var(--dark);
    transition: 0.2s all ease;
}

.select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select svg {
    position: absolute;
    right: 16px;
    width: auto;
    height: 8px;
    margin-top: 2px;
    fill: var(--lightGrey);
    transition: 0.15s all ease;
    pointer-events: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--lightGrey);
}

input:focus,
textarea:focus  {
    box-shadow: 0 0 16px var(--primary-light);
    border-color: var(--primary);
}

input.full:checked  {
    background-color: var(--primary);
}

input.error,
textarea.error {  
    box-shadow: 0 0 16px var(--danger-light);
    border-color: var(--danger);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--borderRadiusLarge);
    background-color: var(--danger);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.toggle:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    border-radius: var(--borderRadiusLarge);
    background-color: var(--danger-light);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .toggle {
    background-color: var(--success);
}

input:checked + .toggle:before,
input:focus + .toggle:before {
    background-color: var(--success-light);
}

input:checked + .toggle:before {
    -webkit-transform: translateX(28px);
    -ms-transform: translateX(28px);
    transform: translateX(28px);
}


/* checkbox field */



.checkbox-field {
    display: flex;
    align-items: center;
    align-content: flex-start;
    border-radius: 4px;
}
/* Base for label styling */
.checkbox-field [type="checkbox"]:not(:checked),
.checkbox-field [type="checkbox"]:checked {
    position: absolute;
    left: 0;
    opacity: 0.01;
}
.checkbox-field [type="checkbox"]:not(:checked) + label,
.checkbox-field [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 36px;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    width: 100%;
    color: var(--dark);
}

.checkbox-field [type="checkbox"]:not(:checked) + label:before,
.checkbox-field [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--borderColor);
    background: #FFF;
    border-radius: .2em;
    box-shadow: inset 0 1px 3px rgb(0 0 0 / 5%), 0 0 0 var(--primary-mid);
    -webkit-transition: all .275s;
    transition: all .275s;
}

.checkbox-field [type="checkbox"]:not(:checked) + label:after,
.checkbox-field [type="checkbox"]:checked + label:after {
    content: '✔';
    position: absolute;
    top: 14px;
    left: 4px;
    font-size: 16px;
    color: var(--primary);
    line-height: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.checkbox-field [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
}

.checkbox-field [type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
}

/* Accessibility */
.checkbox-field [type="checkbox"]:checked:focus + label:before,
.checkbox-field [type="checkbox"]:checked + label:before {
    box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 4px var(--primary-light);
}




/* Login page */
.login {
    height: calc(100vh - 93px);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.login .left {
    grid-column: span 2;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadowD);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: var(--pad32);
    gap: 16px;
}

.login-titles h1 {
    margin-bottom: 0;
    line-height: 1;
}
.login-titles p {
    text-align: center;
    margin-bottom: 16px;
}
.login .button {
    cursor: pointer;
    width: 100%;
    text-align: center;
    max-width: 376px;
}

.login .grid-2 {
    gap: 16px;
    max-width: 376px;
}

.login-required {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 376px;
}
.login-required p {
    color: var(--danger);
    font-size: 14px;
}
#login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 376px;
    gap: 16px;
}

.login .right {
    grid-column: span 3;
    background: var(--primary-light);
    background-image: url('../static/fay/login_pic.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
}
/* Dashboard header */
.dashboard__header {
    width: 100%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
    border-bottom: 1px solid var(--borderColor);
}

.dashboard__header .admin-header-upper {
    width: 100%;
    margin-bottom: 48px;
}
.dashboard__header-nav {
    display: flex;
    list-style-type: none;
    margin-bottom: -1px;
}
.dashboard__header-nav a,
.dashboard__header-nav span {
    display: inline-block;
    padding: 16px 0 13px 0;
    font-weight: 500;
    color: var(--lightGrey);
    margin-right: 32px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
}
.dashboard__header-nav a.active,
.dashboard__header-nav span.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}
.dashboard__header-nav a:hover,
.dashboard__header-nav span:hover {
    color: var(--dark);
    border-bottom: 3px solid var(--primary-mid);
}
.dashboard__header-nav a.active:hover,
.dashboard__header-nav span.active:hover {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}
.dashboard__header ul {
    padding: 0;
    display: flex;
    list-style-type: none;
}

.dashboard__header h2 {
    font-weight: 400;
    margin-bottom: 0;
}
.dashboard__header h2 span {
    display: block;
    color: var(--lightGrey);
    font-size: 16px;
    line-height: 1;
}
/* dashboard content */
.dashboard__content {
    padding: var(--pad32) 0;
}

/* Thumbnail */
.thumbnail {
    height: 72px;
    width: 72px;
    border-radius: var(--borderRadiusSmall);
    object-fit: cover;
}
.thumbnail.--small {
    height: 40px;
    width: 40px;
}
.thumbnail.--big {
    height: 144px;
    width: 144px;
    border-radius: var(--borderRadiusLarge);
}

/* concours list item */
.concours__item {
    position: relative;
    width: 100%;
    padding: 16px;
    box-shadow: var(--shadowL);
    border-radius: var(--borderRadiusLarge);
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    margin: 0 0 16px 0;
    gap: 16px;
    border: 1px solid var(--borderColor);
    transition: .15s all ease;
}
.concours__item:hover {
    box-shadow: var(--shadowD);
}
.concours__item h3 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.concours__item span {
    font-size: 14px;
    grid-column: span 2;
}

.concours__item h3 span {
    display: block;
    font-size: 14px;
    color: var(--lightGrey);
    overflow: hidden;
    font-weight: 400;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.concours__item .state span.dot {
    display: block;
    border-radius: 8px;
    width: 8px;
    height: 8px;
}

.concours__item .state span.state--open {
    background: var(--success);
}
.concours__item .state span.state--soon {
    background: var(--warning);
}
.concours__item .state span.state--end {
    background: var(--danger);
}
.concours__item-title {
    grid-column: span 3;
}
.concours__item-title .thumbnail {
    margin-right: 16px;
}
.concours__item-lastcol .button-secondary {
    font-weight: 400;
}


.state--end + .tooltip .tooltip--end {
    visibility: visible;
}
.state--end + .tooltip .tooltip--soon {
    visibility: hidden;
    display: none;
}
.state--end + .tooltip .tooltip--open {
    visibility: hidden;
    display: none;
}

.state--open + .tooltip .tooltip--open {
    visibility: visible;
}
.state--open + .tooltip .tooltip--soon {
    visibility: hidden;
    display: none;
}
.state--open + .tooltip .tooltip--end {
    visibility: hidden;
    display: none;
}

.state--soon + .tooltip .tooltip--soon {
    visibility: visible;
}
.state--soon + .tooltip .tooltip--open {
    visibility: hidden;
    display: none;
}
.state--soon + .tooltip .tooltip--end {
    visibility: hidden;
    display: none;
}
/* card mode */
.concours__list.card-mode {
    width: 100%;
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(275px, 1fr) );
    grid-gap: 16px;
    margin-bottom: 16px;
}
.concours__list.card-mode .concours__item {
    margin-bottom: 0;
}


.concours__list.card-mode .concours__item-title {
    grid-column: span 8;
}
.concours__list.card-mode .concours__item-title .thumbnail {
    margin-right: 8px;
}
.concours__list.card-mode .concours__item span {
    grid-column: span 4;
    font-size: 12px;
}
.concours__list.card-mode .concours__item-lastcol {
    grid-column: span 8;
}
.concours__list.card-mode .concours__item h3 {
    font-size: 14px;
}
.concours__list.card-mode .concours__item-lastcol .button-secondary {
    width: 100%;
    background: var(--primary-light);
    margin-top: 16px;
}
.concours__list.card-mode .concours__item-lastcol .button-secondary:hover {
    transform: scale(1.04);
}
.concours__list.card-mode .state {
    position: absolute;
    right: 8px;
    top: 8px;
}
.concours__list.card-mode .tooltip {
    transform: translate(-55%, 0);
}
.concours__list.card-mode .tooltip:after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    left: auto;
    height: 0;
    width: 0;
    border: solid transparent;
    border-top-color: var(--dark);
    border-width: 5px;
    margin-top: -5px;
    margin-left: 0;
    transform: rotate(-90deg);
}
/* grids */

.grid-10 {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(10,1fr);
}
.grid-5 {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5,1fr);
    grid-row-gap: 16px;
}
.grid-4 {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}
.grid-3 {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
}
.grid-2 {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
}

/* flex utils */
.gap-16 {
    gap: 16px;
}
.flex-centeredH {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.flex-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.flex-col {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
} 

/* navbar */
.nav-container {
    position: sticky;
    top: 0;
    z-index: 4;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-bottom: 1px solid var(--borderColor);
    min-height: 60px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
}
.navbar .logo img {
    height: 60px;
    width: 120px;
    object-fit: contain;
}
.navbar ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    margin-top: 0;
    margin-bottom: 0;
}
.navbar ul li  {
    display: flex;
    align-items: center;
}

.navbar ul li a {
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    color: var(--dark);
    font-weight: 500;
    margin: 0 16px;
    cursor: pointer;
    line-height: 1;
}
.navbar ul li span.button-primary {
    transition: 0.6s all ease;
    margin: 0 16px;
}
.navbar .link-transition {
    cursor: pointer;
}
.navbar ul li a.link-transition:hover {
    color: var(--primary);
}
.navbar ul li a.selected-lang:hover {
    color: var(--primary);
}
.navbar ul li a.link-transition.--last {
    margin-right: 0;
}

.navbar ul li span.button-primary {
    color: white;
}
  .loading-bar {
      width: 100%;
      height: 4px;
      position: absolute;
      top: 0%;
      left: 0;
  }
  .loading-fill {
      background: var(--primary);
      width: 0%;
      height: 4px;
      will-change: width;
  }

  
.nav-container.loading .loading-fill {
    animation: .5s loading ease-in-out both;
}
  @keyframes loading {
      0% {
          width: 0%;
      }
      100% {
          width: 100%;
      }
  }


/* Account link */
#accountLink {
    position: relative;
    margin-left: 8px;
    cursor: pointer;
    padding: 8px 16px 8px 8px;
    border-radius: var(--borderRadiusLarge);
    transition: 0.15s all ease;
}
#accountLink .account__image {
    position: relative;
    pointer-events: none;
}
#accountLink .account__image .thumbnail {
    transition: 0.15s all ease;
    position: relative;
    z-index: 2;
    pointer-events: none;
}
#accountLink svg {
    width: auto;
    height: 8px;
    margin-left: 16px;
    margin-top: 2px;
    fill: var(--lightGrey);
    transition: 0.15s all ease;
    pointer-events: none;
}

#langLink {
    position: relative;
    margin-left: 8px;
    cursor: pointer;
    padding: 8px 16px 8px 8px;
    border-radius: var(--borderRadiusLarge);
    transition: 0.15s all ease;
}

.langLink-w {
    width: 100% !important;
    min-width: 0px !important;
}

#langLink:hover svg {
    fill: var(--primary);
}

#langLink.active svg {
    fill: var(--primary);
    transform: rotate(-180deg);
}

.langLink-context {
    min-width: 0px !important;
}

#langLink svg {
    width: auto;
    height: 8px;
    margin-left: -2px;
    margin-top: 2px;
    fill: var(--lightGrey);
    transition: 0.15s all ease;
    pointer-events: none;
}

.thumbnail.pfp {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lightGrey);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    color: white;
    transition: .15s all ease;
    border: 1px solid var(--borderColor);
    text-transform: uppercase;
}

#accountLink:hover {
    background: var(--primary-light)
}
#accountLink:hover svg {
    fill: var(--primary);
}

#accountLink:hover .thumbnail {
    transform: scale(0.98);
}

.navbar ul.account__popup {
    display: none;
    position: absolute;
    z-index: 2;
    width: fit-content;
    background: white;
    border-radius: var(--borderRadiusLarge);
    right: 0;
    top: calc(100% + 8px);
    border: 1px solid var(--borderColor);
    padding: 0;
    box-shadow: var(--shadowD);
    flex-direction: column;
    overflow: hidden;
}
.navbar ul.account__popup li a {
    width: 100%;
    min-width: 190px;
    padding: var(--pad16);
    margin-left: 0;
    margin-right: 0;
    border-bottom: 1px solid var(--borderColor);
    text-align: left;
    white-space: nowrap;
    max-width: 220px;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: 0.15s all ease;
}
.navbar ul.account__popup li a:hover {
    background: var(--primary-light);
}
.navbar ul.account__popup li:last-child a {
    border-bottom: none;
}

#accountLink.active {
    background: var(--primary-light);
}
#accountLink.active .thumbnail {
    transform: scale(0.98);
}
#accountLink.active svg {
    fill: var(--primary);
    transform: rotate(-180deg);
}
.navbar #accountLink.active ul.account__popup {
    display: flex;
}

.navbar #langLink.active ul.account__popup {
    display: flex;
}
/* Suivi des inscriptions */
.report__card {
    padding: var(--pad32);
    border: 1px solid var(--borderColor);
    border-radius: var(--borderRadiusLarge);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    box-shadow: var(--shadowL);
}
.report__card span {
    color: var(--lightGrey);
    margin-bottom: 8px;
    font-size: 16px;;
}
.report__card h2 {
    margin-bottom: 0;
}

.report__card.report__chart {
    grid-column: span 3;
}

.report__card.report__feed,
.report__card.report__chart {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
}
.report__card.report__feed {
    min-width: 263px;
}
.card__title {
    width: 100%;
    padding: var(--pad16);
    border-bottom: 1px solid var(--borderColor);
}
.card__title h2 {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0;
}
.report__title {
    width: 100%;
    padding: var(--pad16);
    border-bottom: 1px solid var(--borderColor);
}
.report__title h2 {
    font-size: 16px;
    line-height: 1;
}

.report__feed--content {
    width: 100%;
    height: 370px;
    overflow-y: scroll;
    padding: 0 2px 0 8px;
}

.report__feed--content::-webkit-scrollbar-track {
	background-color: transparent
}

.report__feed--content::-webkit-scrollbar {
	width: 6px;
	background-color: transparent;
    z-index: 10;
}

.report__feed--content::-webkit-scrollbar-thumb {
	background-color: transparent
}

.report__feed--content:hover::-webkit-scrollbar-track {
	background-color: var(--primary-light);
}

.report__feed--content:hover::-webkit-scrollbar {
	background-color: var(--primary-light);
}

.report__feed--content:hover::-webkit-scrollbar-thumb {
	background-color: var(--lightGrey);
}


.report__feed--item {
    width: 100%;
    border-bottom: 1px solid var(--borderColor);
    padding: var(--pad16) 8px;
}
.report__feed--item h3 {
    font-size: 14px;
    margin: 0;
    line-height: 1.2;
}
.report__feed--item span {
    font-size: 14px;
}
.report__feed--item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.report__item--left {
    grid-column: span 3;
}

.report__item--left h3,
.report__item--left span {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.report__item--right {
    grid-column: span 1;
}

.report__item--right h3 {
    color: var(--success);
    text-align: right;
}
.report__item--right span {
    display: inline-block;
    width: 100%;
    text-align: right;
    margin: 0;
}
/* tooltip */
.tooltip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-24px);
    pointer-events: none;
}
.state {
    position: relative;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tooltip span {
    padding: 10px 20px; 
    white-space: nowrap;
    display: table;
    font-size: 12px;
    padding: 7px 10px 6px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    transition: opacity .3s ease, visibility .3s ease;
    color: white;
    background-color: var(--dark);
  }
  
  .state:hover .tooltip {
    opacity: 1;
    visibility: visible;
  }
  
  .tooltip:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    height: 0;
    width: 0;
    border: solid transparent;
    border-top-color: var(--dark);
    border-width: 5px;
    margin-left: -5px;
  }
/* toolbar */

.list__toolbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-shadow: var(--shadowL);
    border-radius: var(--borderRadiusLarge);
    margin: 0 0 32px 0;
    gap: 16px;
    border: 1px solid var(--borderColor);
    height: 70px;
    position: sticky;
    top: 16px;
    background: white;
    z-index: 3;
}


.list__toolbar .search {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.list__toolbar .search svg {
    position: absolute;
    left: 16px;
    fill: var(--primary-mid);
    transition: .15s all ease;
}
.list__toolbar .search input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: none;
}

.list__toolbar .search input:focus {
    box-shadow: none;
}
.list__toolbar .search input:focus + svg {
    fill: var(--primary);
}
.tools {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 16px;
}

.mode {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toolbar__button {
    border-radius: var(--borderRadiusSmall);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.15s all ease;
    cursor: pointer;
    transition: .15s all ease;
}
.toolbar__button.--square {
    width: 36px;
    height: 36px;
}
.toolbar__button svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-mid);
    transition: 0.15s all ease;
}

.toolbar__button.active {
    background: var(--primary-light);
}
.toolbar__button.active svg {
    fill: var(--primary);
    width: 20px;
    height: 20px;
}
.toolbar__button:hover {
    background: var(--primary-light);
}

.filters {
    display: flex;
    align-items: center;
    gap: 32px;
}
.filter {
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter span {
    color: var(--lightGrey);
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}
.filter span.clickable {
    color: var(--primary);
    position: relative;
    cursor: pointer;
}
.filter span.status {
    color: var(--primary);
    position: relative;
}

.filter span.status.--warning {
    color: var(--warning);
}
.filter span.status.--success {
    color: var(--success);
}
.filter__popup {
    display: none;
    position: absolute;
    z-index: 2;
    width: fit-content;
    background: white;
    border-radius: var(--borderRadiusSmall);
    right: 0;
    top: calc(100% + 16px);
    border: 1px solid var(--borderColor);
    padding: 8px;
    box-shadow: var(--shadowD);
    flex-direction: column;
    gap: 8px;
}
.filter__popup .button-secondary {
    display: block;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter span.clickable svg {
    transition: 0.15s all ease;
    pointer-events: none;
    width: auto;
    margin-left: 4px;
    fill: var(--primary);
    height: 6px;
    margin-bottom: 1px;
}
.filter__popup .button-secondary.active {
    background: var(--primary-light);
    color: var(--primary);
}

.filter span.clickable.active svg {
    transform: rotate(-180deg);
}
.filter span.clickable.active .filter__popup {
    display: flex;
}



.participation.hidden{
    display: none;
}


/* Report chart */

.report__chart--menu {
    display: flex;
    align-items: center;
    justify-content: flex;
    width: 100%;
    padding: 0 32px;
    gap: 32px;
    border-bottom: 1px solid var(--borderColor);
}
.report__chart--button {
    padding: 16px 0 13px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}

.report__chart--button span {
    font-size: 16px;
    color: var(--lightGrey);
    line-height: 1;
    font-weight: 500;
}
.report__chart--button:hover {
    border-bottom: 3px solid var(--primary-mid);
}

.report__chart--button:hover span {
    color: var(--dark);
}

.report__chart--button.active {
    border-bottom: 3px solid var(--primary);
}
.report__chart--button.active span {
    color: var(--primary);
}

/* page forms */

.form-group {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: var(--pad32) 0;
    border-bottom: 1px solid var(--borderColor)
}

.form-group.hidden {
    display: none;
}

.form-group.--nobd {
    border-bottom: none;
}
.--nopdbot {
    padding-bottom: 0;
}
.--nopdtop {
    padding-top: 0;
}
.form-group .full {
    grid-column: span 3;
}
.form-group .field,
.form-group .form-label {
    padding: var(--pad16);
}

.form-group .form-label {
    color: var(--dark);
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    line-height: 1.52;
}

.form-group .form-label span.help {
    display: block;
    padding-top: 8px;
    color: var(--lightGrey);
    font-weight: 400;
    font-size: 16px;
    text-transform: none;
}
.form-group .field {
    grid-column: span 2;
}
.form-group .field.--flex {
    display: flex;
    align-items: center;
    gap: 32px;
}

.form-group .field.--full {
    grid-column: span 3;
}
.form-group .field.--flex.aifs {
    align-items: flex-start;
}
.form-group .field p {
    font-size: 16px;
    line-height: 1.52;
    margin-bottom: 16px;
}
.form-group .field .button-secondary {
    border: 1px solid var(--borderColor);
    height: fit-content;
}

.form-group .field .text-area {
    min-height: 224px;
}

.social-field {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.social-field .social-name {
    position: absolute;
    left: 1px;
    display: flex;
    align-items: center;
    height: calc(100% - 2px);
    background: var(--primary-light);
    border-right: 1px solid var(--borderColor);
    width: 170px;
    border-bottom-left-radius: var(--borderRadiusSmall);
    border-top-left-radius: var(--borderRadiusSmall);
    padding: 0 16px;
    color: var(--lightGrey);
    font-size: 14px;
}

.social-field .social-name img {
    width: 24px;
    height: auto;
    margin-right: 8px;
}
.social-field input {
    padding-left: 186px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ruling-options {
    display: grid;
    padding: var(--pad16);
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 0;
}

.concoursArbitrageOptions, .concoursPoidsTaille {
    width: 100%;
    margin: 0;
    padding: var(--pad16);
    border-radius: var(--borderRadiusLarge);
    border: 2px solid var(--borderColor);
    cursor: pointer;
}
.concoursArbitrageOptions:hover, .concoursPoidsTaille:hover {

    border-color: var(--primary-mid);
}
.concoursArbitrageOptions h3, .concoursPoidsTaille h3 {
    font-size: 16px;
    line-height: 1.52;
    margin-bottom: 8px;
}
.concoursArbitrageOptions p, .concoursPoidsTaille p {
    font-size: 16px;
    color: var(--lightGrey);
    line-height: 1.52;
}
.concoursArbitrageOptions input[type="radio"], .concoursPoidsTaille input[type="radio"]{
    height: 0;
    padding: 0;
    border: none;
}
.concoursArbitrageOptions.active-radio, .concoursPoidsTaille.active-radio {
    border-color: var(--primary);
}

#errorRound {
    color: var(--danger);
    font-size: 14px;
    line-height: 3;
    display: none;
}


/* update contest */
.tab-content {
    display: none;
    min-height: 50vh;
}
.tab-content.active {
    display: initial;
}


/* admin team */
.members {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.members-title {
    border-bottom: 1px solid var(--borderColor);
    padding: var(--pad16);
}
.members-title h2 {
    font-size: 16px;
    line-height: 1;
    margin: 0;
}
.members .resultat {
    float:left;
}
.members .resultat.hidden,
.members .resultat-new-user.hidden {
    display:none;
}

.member {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--borderColor);
    padding: var(--pad16);
}
.member p {
    font-size: 16px;
    line-height: 1;
    color: var(--dark);
}
.member__detail {
    margin-left: var(--pad16);
}
.member__detail span {
    font-size: 16px;
    color: var(--lightGrey);
}
.member .button-secondary.--danger,
.member .button-secondary.--success,
.member .button-secondary.--primary,
.member .button-secondary.--warning  {
    margin-left: 16px;
    font-size: 14px;
    padding: 8px;
    white-space: nowrap;
}
/* Facturation */

.table {
    width: 100%;
}

.table__row,
.table_title {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--borderColor);
    align-items: center;
}
.table_title {
    background: var(--primary-light);
}
.table_title span {
    color: var(--lightGrey);
    font-size: 14px;
}
.table__row span {
    font-size: 14px;
    color: var(--dark);
}
.table__row .date,
.table__row .payment-mode {
    color: var(--lightGrey);
}
.table__row .tag {
    width: fit-content;
}
.table__row .button-secondary {
    width: fit-content;
    justify-self: flex-end;
}

/* create contest */
.cover__image {
    width: 250px;
    height: 109.26px;
    object-fit: contain;
}

.input-with-label {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.input-with-label label {
    white-space: nowrap;
    color: var(--lightGrey);
}
#sponsorsListImg {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 16px;
}
.imgSponsors {
    max-height: 200px;
    max-width: 100%;
}
.tarifs-list,
.referees-list,
.categorieAge-list {
    gap: 16px;
    margin-top: 16px;
}
.tarif-row,
.referee-row,
.categorieAge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    border: 1px solid var(--borderColor);
    border-radius: var(--borderRadiusSmall);
    padding: 8px 8px 8px 16px;
}
.tarif-row span,
.referee-row span,
.categorieAge-row {
    color: var(--dark);
    font-size: 16px;
    width: 50%;
}
.form-group .field .tarif-row .button-secondary.button-small,
.form-group .field .referee-row .button-secondary.button-small,
.form-group .field .categorieAge-row .button-secondary.button-small {
    border: none;
    font-size: 16px;
}
#hiddenFileInput {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}
#file-chosen {
    color: var(--lightGrey);
    font-size: 16px;
}

#imgSponsorInp0,
#imgSponsorInp1,
#imgSponsorInp2,
#imgInp, #imgInpFooter {
    opacity: 0;
    position: absolute;
    z-index: -1;
    width: 0;
}
.round-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    border: 1px solid var(--borderColor);
    border-radius: var(--borderRadiusSmall);
    padding: 0;
    margin-top: 16px;
}
.round-item input {
    border: none;
    border-radius: 0;
}
.round-item input:last-of-type {
    border-left: 1px solid var(--borderColor);
}
.form-group .field .round-item .button-secondary.remove-round {
    border: none;
    font-size: 16px;
    margin: 0 8px;
}

/* species */
.authorizedSpecies {
    width: 100%;
    flex-wrap: wrap;
    border: 1px solid var(--borderColor);
}
.card-species {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    border-bottom: 1px solid var(--borderColor);
    padding: 8px 16px;
    min-width: 800px;
}

.card-species:last-child {
    border-bottom: none;
}
.form-group .field .card-species p {
    width: 100%;
    margin-bottom: 0;
    color: var(--dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form-group .field .card-species label {
    flex-basis: 30%;
}


.delete-species.button-secondary.button-small {
    border: none;
}

/* modal */

.modal-inner {
    background-color: white;
    border-radius: var(--borderRadiusLarge);
    box-shadow: var(--shadowD);
    width: 600px;
    max-width: calc(100% - 16px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(91, 97, 128, .7);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.modal.active {
    display: flex;
}
.modal-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--borderColor);
    padding: var(--pad16);
}
.modal-header h2 {
    font-size: 16px;
    margin: 0;
    line-height: 1;
}
.fay-modal-footer {
    width: 100%;
    border-top: 1px solid var(--borderColor);
    padding: var(--pad16);
}
.modal-content {
    width: 100%;
    padding: var(--pad16);
}

.modal .close-icon {
    fill: var(--dark);
    cursor: pointer;
}
.--nopad {
    padding: 0;
}

/* Create contest popup */
#createContestModal .field-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.org-q {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.org-q span {
    font-size: 14px;
    color: var(--lightGrey);
    margin-right: 8px;
}
.new-org-input.hidden,
.existing-org-input.hidden,
.exist-org.hidden {
    display: none;
}

.claim-org {
    border-bottom: 1px solid var(--borderColor);
    padding: 0 0 16px 0;
}
.claim-org .org-q {
    justify-content: space-between;
}
.claim-org .org-q span {
    color: var(--danger)
}
.claim-org p {
    font-size: 16px;
    line-height: 1.52;
}
.claim-org p.hidden {
    display: none;
}


/* map modal */
.map-how-to {
    position: relative;
    border-bottom: 1px solid var(--borderColor);
}
.map-how-to h2 {
    color: var(--primary);
    margin: 0;
    font-size: 16px;
    line-height: 1;
    padding: var(--pad16);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.how-to-inner {
    z-index: 2;
    width: 100%;
    padding: var(--pad16);
    padding-top: 0;
    position: absolute;
    top: 100%;
    background: white;
    box-shadow: 0 30px 30px 0 rgb(21 29 52 / 10%);
    display: none;
}
.map-how-to.active .how-to-inner {
    display: block;
}
.how-to-inner p {
    font-size: 16px;
    color: var(--dark);
}
.how-to-inner ul {
    margin-top: 0;
    padding-left: 0;
}
.how-to-inner ul li {
    font-size: 16px;
    color: var(--lightGrey);
    line-height: 1.52;
}

.closed .vertical {
    transition: all 0.15s ease-in-out;
    transform: rotate(-90deg);
}
.closed .horizontal {
    transition: all 0.15s ease-in-out;
    transform: rotate(-90deg);
    opacity: 1;
}

.active .vertical {
    transition: all 0.5s ease-in-out;
    transform: rotate(90deg);
}
.active .horizontal {
    transition: all 0.5s ease-in-out;
    transform: rotate(90deg);
    opacity: 0;
}

.circle-plus .circle {
    position: relative;
    width: 18px;
    height: 18px;
}

.circle-plus .circle .horizontal {
    position: absolute;
    background-color: var(--lightGrey);
    width: 16px;
    height: 3px;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -1.5px;
    border-radius: 3px;
}

.circle-plus .circle .vertical {
    position: absolute;
    background-color: var(--lightGrey);
    width: 3px;
    height: 16px;
    left: 50%;
    margin-left: -1.5px;
    top: 50%;
    margin-top: -8px;
    border-radius: 3px;
}
.map-how-to:hover .circle .horizontal,
.map-how-to:hover .circle .vertical,
.map-how-to.active .circle .horizontal,
.map-how-to.active .circle .vertical {
    background-color: var(--primary);
}

.gmnoprint {
    border-radius: var(--borderRadiusLarge);
    overflow: hidden;
    margin-top: 16px !important;
}
.gmnoprint button {
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.map__zone {
    border: 1px solid var(--borderColor);
    border-radius: var(--borderRadiusLarge);
    box-shadow: var(--shadowL);
    margin-bottom: 32px;
}
.grid3col {
    grid-column: span 3;
}

.modal-content #map {
    min-height: 600px; 
    width: 100%;
}

/* payment modal */
#payment-modal .modal-inner {
    width: 450px;
}
/* tarif modal */
#tarif-modal .modal-inner {
    width: 450px;
}
#card-errors {
    color: var(--danger);
    font-size: 14px;
    line-height: 3;
}
#card-success {
    color: var(--success);
    font-size: 14px;
    line-height: 3;
}

.filtre-concours-map {
    height: 100%;
    width: 100%;
    overflow: hidden;
    width: 30%;
    float: left;
}
.filtre-concours-map-inner {
    padding: 8px 10px 8px 16px;
    overflow-y: scroll;
    height: calc(100% - 97.8px);
    width: 100%;
}
.sticky-select {
    display: flex;
    padding: 8px;
    box-shadow: var(--shadowL);
    justify-content: space-around;
}
.filtre-concours-map-inner::-webkit-scrollbar-track {
	background-color: transparent
}

.filtre-concours-map-inner::-webkit-scrollbar {
	width: 6px;
	background-color: transparent;
    z-index: 10;
}

.filtre-concours-map-inner::-webkit-scrollbar-thumb {
	background-color: transparent
}

.filtre-concours-map-inner:hover::-webkit-scrollbar-track {
	background-color: var(--primary-light);
}

.filtre-concours-map-inner:hover::-webkit-scrollbar {
	background-color: var(--primary-light);
}

.filtre-concours-map-inner:hover::-webkit-scrollbar-thumb {
	background-color: var(--lightGrey);
}

.filtre-concours-map-inner .checkbox-field {
    position: relative;
    padding: 8px 0;
    border-radius: 0;
}
.checkbox-field [type="checkbox"]:not(:checked) + label, .checkbox-field [type="checkbox"]:checked + label {
    min-height: 24px;
}
#catchesMap {
    height: 600px;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}
#catchesMap  #map {
    float:left;
    width:70%;
    height:100%;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    box-shadow: var(--shadowD) !important;
}
.leaflet-popup-content {
    margin: 16px 40px 16px 16px !important;
}
.leaflet-popup-content p {
    margin: 16px 0 !important;
    line-height: 1.52 !important;
}
.leaflet-container a.leaflet-popup-close-button {
    padding: 0 !important;
    top: 8px !important;
    right: 8px !important;
    color: var(--danger) !important;
    font-size: 19px !important;
    background: var(--danger-light) !important;
    height: 24px !important;
    width: 24px !important;
    border-radius: var(--borderRadiusLarge);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadowD);
    cursor: pointer;
}
.leaflet-popup-content p b {
    color: var(--dark);
    font-weight: 500 !important;
    font-size: 16px;
}
/* liste concours */
.liste-contest__header {
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 0;
/*
    border-bottom: 1px solid var(--borderColor);
    background-image: url(../static/fay/header-concours.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
*/
}
.liste-contest__header.pb-0 {
    padding-bottom: 0;
}
.liste-contest__header h1 {
    font-weight: 400;
    margin-bottom: 32px;
}
.liste-contest__header .list__toolbar {
    margin-bottom: 0;
}

.contest__section {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 64px 0;
}
.contest__section.--pl {
    background: var(--primary-light);
}
.contest__section.--dl {
    background: var(--danger-light);
}
.contest__section.--wl {
    background: var(--warning-light);
}
.contest__section.--pl,
.contest__section.--dl,
.contest__section.--wl {
    border-top: 1px solid var(--borderColor);
    border-bottom: 1px solid var(--borderColor);
}
.row__title {
    margin-bottom: 16px;
}
.row__title.mb-0 {
    margin-bottom: 0;
}
.row__title h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 0;
}
.row__title h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}
.row__title .link {
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
}
.link {
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
  }
.row__contests {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
}
.contests__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
    grid-gap: 16px;
}
#relai,
#trame {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#relai h2,
#relai p {
    max-width: 900px;
}
#communication {
    position: relative;
    background-image: url('/static/fay/home-full-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#padImage {
    padding: 16%;
}
main.container-bg {
    overflow: hidden;
}
/* contest card */
.card__contest {
    position: relative;
    width: 100%;
    padding: 16px;
    background: white;
    box-shadow: var(--shadowL);
    border-radius: var(--borderRadiusLarge);
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    gap: 16px;
    border: 1px solid var(--borderColor);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: .15s all ease;
    text-decoration: none;
    overflow: hidden;
}
.card__contest--banner {
    width: 100%;
    margin: 0;
    float: left;
    position: relative;
    overflow: hidden;
    /* padding-bottom: 43%; */
    border-radius: 8px;
    aspect-ratio: 800 / 350;
}
.card__contest--banner img {
    position: absolute;
    top: 0;
    left: 0;
    float: left;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.15s all ease;
    transition: 0.15s all ease;
}

.contest__organizer {
    font-size: 14px;
    font-weight: 400;
    color: var(--lightGrey);
}
.card__contest--title {
    width: 100%;
}
.card__contest--title h2 {
    font-weight: 500;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.2;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card__contest .tags {
    gap: 8px;
}
.card__contest .tag {
    display: inline-block;
    margin-right: 4px;
    font-weight: 400;
    margin-top:5px;
}

.card__contest .tag:last-child {
    margin-right: 0;
}
.card__contest.--catch .contest__detail{
    flex-direction: column;
}

.card__contest--details {
    width: 100%;
    gap: 8px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--borderColor);
    padding-top: 16px;
}
.contest__detail {
    font-size: 14px;
    color: var(--lightGrey);
    display: flex;
    margin: 2px 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contest__detail a {
    font-size: 14px;
    width: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}
.contest__detail svg {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-right: 8px;
}
.contest__detail svg * {
    stroke: var(--primary);
}

.card__contest:hover {
    box-shadow: var(--shadowD);
}


/* contest details */
#contestDetail {
    margin-top: 48px;
    border-radius: var(--borderRadiusLarge);
    margin-bottom: 48px;
}
.contest__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    border: 1px solid var(--borderColor);
    border-bottom: none;
    padding: 16px;
}
.contest__title h1 {
    text-align: left;
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
}
.contest__title .tag {
    white-space: nowrap;
}
.contest__menu {
    border: 1px solid var(--borderColor);
    width: 100%;
    padding: 0 var(--pad16);
    border-bottom-left-radius: var(--borderRadiusLarge);
    border-bottom-right-radius: var(--borderRadiusLarge);
}
.ranking__menu {
    float: left;
    display: block;
    border-bottom: 1px solid var(--borderColor);
    width: 100%;
    padding: 0 var(--pad16);
    margin-bottom: 0;
}
.ranking__menu li {
    white-space: nowrap;
    float: left;
}
.contest__header {
    width: 100%;
    margin: 0;
    float: left;
    position: relative;
    overflow: hidden;
    /* padding-bottom: 43%; */
    border-radius: 8px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    aspect-ratio: 800 / 350;
}
.contest__header img {
    position: absolute;
    top: 0;
    left: 0;
    float: left;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.15s all ease;
    transition: 0.15s all ease;
}

.contest-detail-inner {
    width: 100%;
    padding: 0 16px;
}

.contest-detail-inner b{
    font-weight: bold;
}

.contest-detail-inner i{
    font-style: italic;
}

.contest-detail-inner .grid-4 {
 grid-gap: 32px;
}
.grid-4 .desc {
    grid-column: span 3;
}
.grid-4 .right-col {
    position: sticky;
    top: 32px;
    height: fit-content;
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.right-col .card__contest--details {
    padding: 0;
    border: none;
}

#organizerCard {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}
#organizerCard .card__contest--banner {
    padding-bottom: 0;
    height: 56px;
    width: 56px;
    min-width: 56px;
}

#organizerCard .card__contest--banner .thumbnail {
    height: 56px;
    width: 56px;
}
#organizerCard .card__contest--title {
    width: calc(100% - 56px);
}
.row-pad {
    padding: 64px 0;
}
.row-pad.--last {
    padding-bottom: 0;
}
.card {
    position: relative;
    width: 100%;
    padding: 16px;
    background: white;
    box-shadow: var(--shadowL);
    border-radius: var(--borderRadiusLarge);
    align-items: center;
    border: 1px solid var(--borderColor);
    display: flex;
    flex-direction: column;
    transition: .15s all ease;
}
.card.row__title {
    flex-direction: row;
}
.card.--nopad {
    padding: 0;
}
a.card {
    cursor: pointer;
}
a.card:hover {
    box-shadow: var(--shadowD);
}

.small-card {
    display: flex;
    align-items: center;
    float: left;
    margin: 0 16px 16px 0;
    border: 1px solid var(--borderColor);
    padding: 8px;
    border-radius: var(--borderRadiusLarge);
    font-size: 16px;
    color: var(--dark);
    height: 58px;
    box-shadow: var(--shadowL);
}
.resultat .small-card {
    margin: 0;
}
.species-list .small-card.--all {
    padding: 16px;
}
.species-list .small-card .thumbnail {
    margin-right: 8px;
}
.species-list .species {
    display: flex;
    align-items: center;
    float: left;
    font-size: 16px;
    color: var(--dark);
    height: 58px;
    box-shadow: var(--shadowL);
    margin: 0px 16px 16px 0px;
    border: 1px solid var(--borderColor);
    padding: 8px;
    border-radius: var(--borderRadiusLarge);
    gap: 10px;
}

.small-card .delete {
    padding-left: 8px;
    margin-left: 8px;
    border-left: 1px solid var(--borderColor);
}
.small-card .delete svg {
    fill: var(--danger)
}
#contestDetail .row__title h2,
#contestDetail .desc h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}
#contestDetail .map__zone {
    margin-bottom: 0;
}
.card__contest.--catch {
    cursor: default;
}
.card__contest.--catch:hover {
    box-shadow: var(--shadowL);
}
.card__contest.--catch .card__contest--banner {
    padding-bottom: 0;
    height: 250px;
    cursor: pointer;
}

.card__contest.--catch .card__contest--banner:hover img {
    transform: scale(1.02);
}
.card__contest.--catch .tags {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
}
.card__contest.--catch .member__detail p {
    font-weight: 500;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.2;
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0;
}
.card__contest.--catch .member__detail span {
    font-size: 14px;
    color: var(--lightGrey);
    display: flex;
    align-items: center;
    margin: 2px 0;
    float: left;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card__contest .angler {
    padding-top: 16px;
    border-top: 1px solid var(--borderColor);
}
.card__contest .angler .member__detail {
    margin-left: 8px;
}


/* ranking */
.ranking {
    width: 100%;
    border: 1px solid var(--borderColor);
    border-radius: var(--borderRadiusLarge);
    box-shadow: var(--shadowL);
    overflow: hidden;
}
.rank-item {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    width: 100%;
    padding: 16px;
    align-items: center;
    border-top: 1px solid var(--borderColor);
}
.rank-item:nth-child(odd) {
    background: var(--primary-light);
}
.rank-item.--header {
    border-top: none;
    background: white;
}
.rank-item .angler {
    grid-column: span 10;
}
.rank-item.--header span {
    color: var(--lightGrey);
    font-size: 14px;
}
.rank-item span.rank {
    min-width: 60px;
}
span.rank span {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadiusSmall);
    border: 1px solid var(--borderColor);
    font-weight: 400;
}
.rank-item .angler .member__detail {
    margin-left: 8px;
    padding-right: 8px;
    overflow: hidden;
}
.rank-item .angler .member__detail p {
    font-weight: 500;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin: 0;
}
.rank-item .thumbnail.--small {
    min-width: 40px;
}
.rank-item .score {
    text-align: right;
}

.angler-row:nth-of-type(2) .rank span {
    background: #f4a50b;
    color: white;
}
.angler-row:nth-of-type(3) .rank span {
    background: #b0b1ba;
    color: white;
}
.angler-row:nth-of-type(4) .rank span {
    background: #a16b60;
    color: white;
}
/* stats */
.rank-item.--species .species-name {
    grid-column: span 5;
}
.rank-item.--species .amount {
    grid-column: span 2;
    text-align: center;
}
.rank-item.--species .valid-amount {
    grid-column: span 2;
    text-align: center;
}
.rank-item.--species .biggest {
    grid-column: span 3;
    text-align: right;
}


/* lightbox */
.lightbox {
    z-index: 100000;
    width: 100%;
    height: 100%;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    top: 0;right:0;left:0;bottom:0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(91, 97, 128, .7);
    backdrop-filter: blur(8px);
}
.lightbox.mobile {
    width: 100%;
    height: auto;
}
.lightbox.active {
    visibility: visible;
    opacity: 1;
}
.lightbox img {
    box-shadow: var(--shadowD);
    border-radius: var(--borderRadiusLarge);
    max-width: 80%;
    max-height: 80%;
}
span#closeBtn {
    width: 48px;
    height: 48px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadiusLarge);
    margin-top: 32px;
    cursor: pointer;
}
#closeBtn svg {
    fill: var(--danger);
    width: 16px;
    height: 16px;
}



/* home page */
.carousel {
    position: relative;
}
.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
}
.carousel-item picture, .carousel-item img {
    width: 100%;
}
.carouselArrows {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    justify-content: space-around;
    padding-right: 32px;
}
#c-indicators {
    position: relative;
    margin-bottom: 0;
}
#c-indicators button {
    width: 5px;
    height: 5px;
    background: #fff;
    border: 1px solid #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 50px;
}
#c-indicators button.active {
    background: transparent;
    border: 1px solid #fff;
}
.btn-c {
    background: transparent;
    color: #fff;
    font-size: 20px;
    border:none;
}
.svg-btn {
    width: 40px;
    height: 40px;
}
.btn-pagination {
    height: 100px;
}
.carousel-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    gap: 16px;
}
.btn-arrow {
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadiusLarge);
    border: 1px solid var(--borderColor);
}
.btn-arrow svg {
    height: 14px;
    width: 14px;
}
#header {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    background-image: url('/static/fay/bg-top-pattern.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#fay-deco {
    margin-bottom: 16px;
}
#fay-deco h3 {
    margin: 0;
    color: var(--lightGrey);
    margin: 0 8px;
    font-weight: 500;
    font-size: 24px;
}
.trait {
    height: 2px;
    width: 73px;
    background: var(--lightGrey);
}
.home-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-row {
    align-items: center;
}
.home-row img {
    width: 440px;
    max-width: 100%;
}
.home-row p {
    max-width: 440px;
}
.--img-l .home-image {
    justify-content: flex-start;
}
.--img-r .home-image {
    justify-content: flex-end;
}
#gestion {
    background-image: url('/static/fay/bg-top-pattern.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.slick-track .card__contest {
    box-shadow: none;
}
/* floating images */
#floatingImageFirst {
    position: absolute;
    top: 0;
    left: 0;
}
#hanecon {
    position: absolute;
    width: 210px;
    height: auto;
    right: -65px;
    overflow:hidden; 
}
#hanecon img{
    width: 210px;
    transform: rotate(45deg);
}
#m {
    position: absolute;
    width: 250px;
    right: -45px;
    top: 0;
    overflow-x:hidden;
    margin-top: -80px;
}
#m img{
    width: 250px;
}
.carousel-title {
    display: none;
}
.carousel-title.active {
    display: block;
}

header h1 {
    font-size: calc(1.2rem + 1.5vw);
}

/* Organizer page */

.header-organizer {
    width: 100%;
    display: flex;
    align-items: center;
    padding: var(--pad32);
    border: 1px solid var(--borderColor);
    border-radius: var(--borderRadiusLarge);
}
.header-organizer .organizer-logo {
    margin-right: 16px;
}
.header-organizer h1 {
    text-align: left;
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
}
.organizer .contest__detail {
    align-items: flex-start;
}


/* Panier */
.wrapper.wrapper-panier {
    padding: 0;
}
.grid-panier {
    grid-gap: 32px;
    max-width: var(--containerWidth);
    margin-bottom: 32px;
}
.panier-section .panier-subtitle h2 {
    color: var(--dark);
    font-family: 'Rubik', sans-serif;
    line-height: 1;
}
.panier-right.--fay .panier-right-item h2 {
    margin-bottom: 0;
    color: var(--dark);
    font-family: 'Rubik', sans-serif;
}
.panier-item-col.--panierItemName h3,.panier-item-col.--panierItemName p {
    margin-bottom: 0;
    line-height: 1.58;
    color: var(--dark);
    font-family: 'Rubik', sans-serif;
}
.panier-item-col.--panierItemPrix span, .panier-item-col.--panieritemTotal span {
    font-family: 'Rubik', sans-serif;
    color: var(--primary);
}
.panier-item-col,
.panier-recap-row,
.panier-recap-row h4,
.panier-recap-row p {
    font-family: 'Rubik', sans-serif;
    color: var(--lightGrey);
    font-size: 14px;
    font-weight: 400;
}
.grid-panier .panier-left,
.grid-panier .panier-right {
    border-radius: var(--borderRadiusLarge);
    box-shadow: var(--shadowL);
    border: 1px solid var(--borderColor);
    padding: var(--padCard);
}
.grid-panier .panier-right {
    top: 124px;
}
.panier-section .panier-subtitle {
    background: var(--primary-light);
    padding: var(--padCard);
}
.panier-right-item {
    border-bottom: 1px solid var(--primary-light);
}
.panier-section {
    margin-bottom: 32px;
}
section.bandeau100.habillage2 {
    margin: 32px 0 0 0;
}
.process__formItem .expirationMois, .process__formItem .expirationAnnee, .process__formItem #cvc {
    width: calc(50% - 16px);
    float: left;
}
.expirationMois {
    margin-right: 16px;
}
#cvcItem {
    width: calc(50% - 16px);
    margin-left: 16px;
    float: left;
}

.panier-section .panier-content p {
    margin-bottom: 16px;
}
.panier-section .panier-content p a {
    font-weight: 600;
    color: var(--primary);
}



.place-check {
    position: relative;
    padding: 16px;
    border: 1px solid var(--borderColor);
    display: flex;
    align-items: center;
    align-content: flex-start;
    border-radius: 4px;
}
/* Base for label styling */
	.place-check [type="checkbox"]:not(:checked),
	.place-check [type="checkbox"]:checked {
		position: absolute;
		left: 0;
		opacity: 0.01;
	}
	.place-check [type="checkbox"]:not(:checked) + label,
	.place-check [type="checkbox"]:checked + label {
        position: relative;
        padding-left: 36px;
        font-size: 16px;
        line-height: 24px;
        cursor: pointer;
        font-family: 'Rubik', sans-serif;
        font-weight: 400;
        width: 100%;
	}

	.place-check [type="checkbox"]:not(:checked) + label:before,
	.place-check [type="checkbox"]:checked + label:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 24px;
        height: 24px;
        border: 1px solid var(--borderColor);
        background: #FFF;
        border-radius: .2em;
        box-shadow: inset 0 1px 3px rgb(0 0 0 / 5%), 0 0 0 rgb(237 244 255);
        -webkit-transition: all .275s;
        transition: all .275s;
	}

	.place-check [type="checkbox"]:not(:checked) + label:after,
	.place-check [type="checkbox"]:checked + label:after {
        content: '✔';
        position: absolute;
        top: 14px;
        left: 4px;
        font-size: 1.375em;
        color: #1f5cb8;
        line-height: 0;
        -webkit-transition: all .2s;
        transition: all .2s;
	}

	.place-check [type="checkbox"]:not(:checked) + label:after {
		opacity: 0;
		-webkit-transform: scale(0) rotate(45deg);
				transform: scale(0) rotate(45deg);
	}

	.place-check [type="checkbox"]:checked + label:after {
		opacity: 1;
		-webkit-transform: scale(1) rotate(0);
				transform: scale(1) rotate(0);
	}

	/* Accessibility */
	.place-check [type="checkbox"]:checked:focus + label:before,
	.place-check [type="checkbox"]:not(:checked):focus + label:before {
		box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 4px rgb(31 92 184 / 48%);
	}
.participant {
    grid-column: span 7;
    padding: 24px;
    border-left: 1px dashed rgb(0 0 0 / 20%);
    justify-items: legacy;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 16px;
}
.participant .participant-input-half {
    grid-column: span 1;
}
.participant .participant-input-full {
    grid-column: span 2;
}
.participant input {
    display: block;
    float: left;
    width: 100%;
}

.participant input:placeholder-shown {
    text-overflow: ellipsis;
  }
.place-left {
    padding: 24px;
    position: relative;
    grid-column: span 3;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.place-left h3 {
    margin-bottom: 0;
    line-height: 1.58;
    color: var(--dark);
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
}
.place-left span {
    margin-bottom: 0;
    line-height: 1;
    margin-bottom: 4px;
    color: #0b4db2;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
}
.panier-section .panier-content .place-left p {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin-bottom: 0;
    color: #767676;
    line-height: 1.4;
    margin-top: 8px;
    margin-bottom: 0;
}

.trou {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: white;
    box-shadow: inset -1px 2px 2px rgb(0 0 0 / 0%);

}
.trou-t-r {
    top: -10px;
    right: -10px;
    box-shadow: inset 0px -7px 2px rgb(0 0 0 / 2%);
}
.trou-t-l {
    top: -10px;
    left: -10px;
    box-shadow: inset -1px -2px 2px rgb(0 0 0 / 2%);
}
.trou-b-r {
    bottom: -10px;
    right: -10px;
    box-shadow: inset 0px 7px 2px rgb(0 0 0 / 2%);
}
.trou-b-l {
    bottom: -10px;
    left: -10px;
    box-shadow: inset -1px 2px 2px rgb(0 0 0 / 2%)
}
.place {
    border: 1px solid var(--borderColor);
    float: left;
    width: 100%;
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    border-radius: 4px;
}

.wrapper.wrapper-panier {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.grid-panier {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 24px;
    max-width: 1140px;
}

.grid-panier .panier-left {
    grid-column: span 9;
}

.grid-panier .pub-tac {
    background: white;
    box-shadow: 10px 10px 16px rgb(55 84 170 / 5%), -10px -10px 18px #f1f1f1;
    border-radius: 8px;
    float: left;
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
}

.grid-panier .pub-tac img {
    width: 100%;
    display: block;
}

.grid-panier .panier-right {
    grid-column: span 3;
    position: sticky;
    top: 70px;
    background: white;
    box-shadow: 10px 10px 16px rgb(55 84 170 / 5%), -10px -10px 18px #f1f1f1;
    border-radius: 4px;
    padding: 24px;
    height: fit-content;
    height: -moz-fit-content;
}

.grid-panier .panier-right.--fay {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}


.panier-right-item {
    float: left;
    width: 100%;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.panier-right-item:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.panier-right-item svg {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.panier-right-item svg * {
    fill: var(--success);
}

.panier-right-item h2 {
    font: 400 14px/1.2 'Rubik', sans-serif;
    color: var(--dark);
    text-align: center;
}

.panier-right.--fay .panier-right-item {
    flex-direction: row;
}

.panier-right.--fay .panier-right-item svg {
    width: 32px;
    min-width: 32px;
    height: auto;
    margin-bottom: 0;
}

.panier-right.--fay .panier-right-item svg * {
    fill: var(--success);
}

.panier-right.--fay .panier-right-item h2 {
    text-align: left;
    margin-left: 8px;
}

.panier-section {
    float: left;
    width: 100%;
    margin-bottom: 16px;
}

.panier-section:last-child {
    margin-bottom: 0;
}

.panier-section .panier-subtitle {
    float: left;
    width: 100%;
    background: var(--primary-light);
    border-radius: var(--borderRadiusSmall);
    padding: 16px;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panier-section .panier-subtitle .fa {
    font-size: 18px;
    color: var(--lightGrey);
}

.panier-section .panier-subtitle h2 {
    font-family: 'Rubik', sans-serif;
    color: var(--dark);
    font-size: 20px;
    margin-bottom: 0;
}

.panier-content {
    float: left;
    width: 100%;
}

.panier-item {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.panier-item-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.panier-item-col.--panierItemImg {
    grid-column: span 2;
}

.panier-item-col.--panierItemName {
    grid-column: span 4;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 8px;
}

.panier-item-col.--panierItemName h3 {
    font-family: 'Rubik', sans-serif;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
}

.panier-item-col.--panierItemName p {
    font-family: 'Lato', sans-serif;
    color: var(--lightGrey);
    font-size: 14px;
    font-weight: 400;
}

.panier-item-col.--panierItemPrix,
.panier-item-col.--panierItemQt,
.panier-item-col.--panieritemTotal {
    grid-column: span 2;
}

.panier-item-col.--panieritemTotal {
    justify-content: flex-end;
}

.panier-item-col.--panierItemImg img {
    display: block;
    width: 100%;
    cursor: pointer;
}

.panier-item-col.--panierItemQt input {
    max-width: 80%;
    margin: 0;
}

.panier-item.--titles {
    padding: 16px;
    font-family: 'Rubik', sans-serif;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    gap: 24px;
}

.panier-item.--titles .panier-item-col.--panierItemName {
    grid-column: span 6;
}

.panier-item-col.--panierItemPrix,
.panier-item-col.--panieritemTotal {
    grid-column: span 2;
}

.panier-item-col.--panierItemPrix span,
.panier-item-col.--panieritemTotal span {
    font-family: 'Rubik', sans-serif;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.--panierItemPrix span.crossedout,
.--panieritemTotal span.crossedTotal,
#totalCrossedOut {
    font: 400 14px/1.5 'Rubik', sans-serif;
    color: var(--lightGrey);
    text-decoration: line-through;
}

#totalCrossedOut {
    line-height: 1.2;
}

.panier-item.--item {
    border: 1px solid var(--borderColor);
    border-radius: var(--borderRadiusSmall);
    overflow: hidden;
    padding: 16px;
    gap: 24px;
}

#recap-produits .panier-item.--item{
    border: 0;
    border-bottom: 1px solid var(--borderColor);
}

.panier-item .item-variant {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
    grid-column: span 12;
}
.panierSimplifie input {
    margin-bottom: 16px;
}


.panierSimplifie .groupe_input {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
}

.panier-recap-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.panier-recap-row h4 {
    font: 400 16px/1.2 'Rubik';
    color: var(--lightGrey);
}

.panier-recap-row p {
    font: 500 16px/1.2 'Rubik';
    color: var(--dark);
}

.panier-recap-row:last-child h4,
.panier-recap-row:last-child p {
    color: var(--success);
}

.panier-recap-row:last-child p {
    font-size: 16px;
}

.panierSimplifie .inscription fieldset {
    margin: 0;
}

.panierSimplifie .inscription fieldset .process__formItem {
    width: 100%;
    float: left;
}

.panierSimplifie .inscription fieldset .process__formItem #cvc {
    width: 100%;
}

.panier-item .tag.stock {
    color: var(--danger);
    font: 500 13px/1.2 'Rubik', sans-serif;
    margin-top: 6px;
}

.secure-payment {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0 0 0;
}

.secure-payment svg {
    margin-right: 6px;
    height: 18px;
    width: auto;
}

.secure-payment span {
    color: var(--dark);
    font: 400 14px/1.2 'Rubik', sans-serif;
}
.alerte {
    color: var(--danger);
    padding: 8px 0;
}

.hide-on-mobile {
    display: block !important;
}

.show-on-mobile {
    display: none !important;
    visibility: hidden !important;
}

.hide-on-pc {
    display: none;
    visibility: hidden;
}
.alerte-multidate{
    float:left; 
    width:100%; 
    padding:10px; 
    background:var(--primary); 
    grid-column: 1/-1; 
    color:white; 
    cursor:pointer; 
    margin:15px 0; 
    border-radius:15px;
}
.alerte-multidate span{
    float:left; 
    width:80%; 
    margin-top:5px
}
.alerte-multidate a{
    float:left; 
    width:20%; 
    margin:5px 0; 
    background:white; 
    color:var(--lightGrey); 
    text-align:center; 
    padding:5px; 
    font-size:14px; 
    border-radius:8px
}
@media screen and (max-width: 768px) {
    .alerte-multidate span{
        width:100%;
    }
    .alerte-multidate a{
        width:100%;
        margin-top:15px;
        padding:15px 0; 
    }
    
}

@media screen and (max-width: 768px) {


    .hide-on-mobile {
        display: none !important;
        visibility: hidden !important;
    }
    .show-on-mobile {
        display: block !important;
        visibility: visible !important;
    }
    .hide-on-pc {
        display: block;
        visibility: visible;
    }

    .grid-panier .panier-left {
        grid-column: span 12;
    }
    .livraison-livreur {
        grid-column: span 11;
    }
    .livraison-date,
    .livraison-prix {
        margin-top: 16px;
    }
    .livraison-date {
        grid-column: span 8;
    }
    .livraison-prix {
        grid-column: span 4;
    }
    .grid-panier .panier-right {
        grid-column: span 12;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 16px;
    }
    .panier-right-item {
        border: none;
        padding: 0;
        margin: 0;
    }
}


@media screen and (max-width: 600px) {
    .wrapper.wrapper-panier,
    .grid-panier .panier-left,
    .grid-panier .panier-right {
        padding: 16px;
    }
    .panier-section .panier-subtitle h2 {
        font-size: 16px;
    }
    .panier-item-col.--panierItemImg {
        grid-column: span 3;
    }
    .panier-item-col.--panierItemName {
        grid-column: span 9;
    }
    .panier-item.--titles .panier-item-col.--panierItemName,
    .panier-item.--titles .panier-item-col.--panierItemImg {
        display: none;
    }
    .panier-item-col.--panierItemPrix,
    .panier-item-col.--panierItemQt,
    .panier-item-col.--panieritemTotal {
        grid-column: span 4;
        justify-content: center;
    }
    .panierSimplifie .livraison-recPoint input {
        width: 100%;
        margin-bottom: 16px;
    }
    .actualiserlivraison {
        width: 100%;
        margin: 0;
        text-align: center;
    }
}

@media screen and (max-width: 550px) {
    .grid-panier .panier-right {
        grid-template-columns: repeat(2, 1fr)
    }
    .panier-right-item {
        border: none;
        padding: 0;
        margin: 0;
    }
    .panier-right-item svg {
        height: 50px;
    }
}
@media screen and (max-width: 600px) {
    .place-left {
        grid-column: span 10;
    }
    .participant {
        grid-column: span 10;
        border-left: none;
        border-top: 1px dashed rgb(0 0 0 / 20%);
    }
    .trou-t-l,
    .trou-t-r  {
        display: none;
    }
    .trou-b-r {
        box-shadow: inset 7px 0px 2px rgb(0 0 0 / 2%);
    }
    .trou-b-l {
        box-shadow: inset -7px 0px 2px rgb(0 0 0 / 2%);
    }
}
/* media queries */

@media screen and (max-height: 850px) {
    .modal-content #map {
        min-height: 400px; 
    }
}
@media screen and (max-height: 600px) {
    .modal-content #map {
        min-height: 300px; 
    }
}


@media screen and (max-width: 1500px) {
    .navbar ul li a {
        font-size: 14px;
    }
    .dashboard__header-nav a,
    .report__chart--button span,
    .dashboard__header-nav span {
        font-size: 14px;
    }
}
@media screen and (max-width: 1300px) {
    .login {
        grid-template-columns: repeat(6,1fr);
    }
    .login .left,
    .login .right {
        grid-column: span 3;
    }
    .login .right {
        background-position: 70% center;
    }
    .login .left {
        min-width: 500px;
    }
    .contest__title h1 {
        font-size: 24px;
    }
    #m {
        width: 150px;
    }
    #m img {
        width: 150px;
    }
}
@media screen and (max-width: 1150px) {
    .container,
    .grid-panier {
        padding: 0 0 !important;
    }
    
    #header .container.row-pad {
        padding: 48px !important;
    }
    header span {
        font-size: 32px;
    }
    h1 {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 32px;
    }
    
    h2 {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 16px;
    }
    
    h3 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    
    p {
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        color: var(--lightGrey);
    }
    #addRounds {
        flex-direction: column;
    }
    #addRounds .input-with-label {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
    #addRounds .input-with-label label {
        width: 58px;
        text-align: right;
    }

    .row__contests {
        grid-template-columns: repeat(3,1fr);
    }
    .row__contests .card__contest:last-child {
        display: none;
        visibility: hidden;
    }
    .sticky-select .button-small {
        font-size: 12px;
    }
    .filtre-concours-map {
        width: 40%;
    }
    #catchesMap #map {
        width: 60%;
    }
}
@media screen and (min-width: 992px) {
    
    .burger-button {
        display: none;
    }
    .navbar ul li.show-mobile {
        display: none;
    }
    .navbar ul li .button-primary.off  {
        background: var(--primary-light);
        color: var(--primary);
        box-shadow: none;
    }
}

@media screen and (max-width: 991px) {
    .navbar ul li a {
        font-size: 14px;
    }
    .burger-button {
        border: none;
        background: var(--primary);
        padding: 8px 12px;
        align-items: center;
        justify-content: center;
        border-radius: var(--borderRadiusSmall);
        transition: 0.15s all ease;
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 16px;
    }
    
    .burger-button svg {
        width: 20px;
        height: 20px;
    }
    .burger-button .cross{
        display: none;
    }
    .burger-button.active {
        background: var(--primary-light);
    }
    .burger-button.active .burger {
        display: none;
    }
    .burger-button.active .cross {
        display: flex;
        width: 16px;
        height: 18px;
    }
    .burger-button .cross .svg {
        fill: var(--dark);
    }
    
    .burger-button svg {
        display: flex;
    }
    .navbar ul.main-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 24px;
        display: none;
    }
    .navbar.active ul.main-menu {
        display: block;
    }
    
    .navbar.active ul.main-menu:after {
        background: var(--dark);
        content: '';
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: -100%;
        opacity: .6;
    }
    .navbar ul.main-menu li a,
    .navbar ul.main-menu li .button-primary {
        font-size: 16px;
        width: 100%;
        text-align: center;
        margin-bottom: 16px;
        padding: 16px;
        margin-left: 0;
    }
    .navbar ul.main-menu li:last-child {
        margin-left: 0;
    }
    
    .navbar ul.main-menu li:last-child a {
        margin-bottom: 0;
        margin-left: 0;
    }
    .navbar ul.main-menu li .button-primary {
        margin: 0;
    }
    #dashboardLink {
        border: none;
        padding: 0;
    }
    .login {
        height: calc(100vh - 60px)
    }
    .navbar .logo img {
        height: 44px;
    }

    .tools,
    .filters {
        gap: 16px;
    }
    #mainStats .report__card {
        padding: var(--pad16);
    }
    .report__chart--menu {
        padding: 0 16px;
        gap: 16px;
    }
    .report__feed--content {
        height: 290px;
    }
    .report__card.report__feed {
        min-width: 220px;
    }
    .report__feed--item span {
        font-size: 12px;
    }
    
    .form-group .field p,
    .form-group .form-label span.help {
        font-size: 14px;
    }
    .table {
        overflow-x: scroll;
        border-right: 1px solid var(--borderColor);
        border-left: 1px solid var(--borderColor);
    }

    .table__row, .table_title {
        min-width: 800px;
    }
    .table__row .button-secondary {
        font-size: 14px;
    }
    .concours__item h3 {
        font-size: 14px;
    }
    .authorizedSpecies {
        overflow-x: scroll;
    }
    #dateRow {
        flex-direction: column;
    }
    #dateRow .input-with-label {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
    
    #dateRow .input-with-label label {
        width: 58px;
        text-align: right;
    }
   /* .cover__image {
        width: 201px;
        height: 88px;
    }*/
    .round-item input {
        font-size: 14px;
    }
    .fay-modal-footer .btn {
        font-size: 14px;
    }
    .menu-sticky-bottom .button-primary {
        font-size: 14px;
    }
    .menu-colbottom .button-primary {
        font-size: 14px;
    }
    .ranking__menu {
        display: flex;
        overflow-y: scroll;
    }
    .row-pad {
        padding: 48px 0;
    }
}

@media screen and (max-width: 900px){
    .row__contests {
        grid-template-columns: repeat(4,1fr);
        overflow-x: scroll;
    }
    .row__contests .card__contest:last-child {
        display: flex;
        visibility: visible;
    }
    #pageContests .container {
        padding: 0 !important;
    }
    .row__title,
    .row__contests {
        padding: 0 48px;
    }
    #contestDetail .row__title,
    #contestDetail .row__contests {
        padding: 0;
    }
    .row__contests {
        padding-bottom: 48px;
    }
    .row__title h2 {
        font-size: 24px;
    }
    .contest__section {
        padding: 64px 0 16px 0;
    }
    #contestDetail .row__title.card {
        padding: 16px;
    }

}
@media screen and (max-width: 767px) {
    .container {
        padding: 0 var(--pad32) !important;
    }
    #header .container.row-pad {
        padding: 32px var(--pad32) !important;
    }
    #dashboardLink {
        display: none;
    }
    #dashboardLinkMob {
        display: flex;
    }
    .concours__item-title {
        grid-column: span 8;
    }
    .concours__item-title .thumbnail {
        margin-right: 8px;
    }
    .concours__item span {
        grid-column: span 4;
        font-size: 12px;
    }
    .concours__item-lastcol {
        grid-column: span 8;
    }
    .concours__item h3 {
        font-size: 14px;
    }
    .concours__item-lastcol .button-secondary {
        width: 100%;
        background: var(--primary-light);
        margin-top: 16px;
        font-weight: 500;
    }
    .state {
        position: absolute;
        right: 8px;
        top: 8px;
    }

    .concours__list .tooltip {
        transform: translate(-55%, 0);
    }
    .concours__list.tooltip:after {
        content: '';
        position: absolute;
        right: -10px;
        top: 50%;
        left: auto;
        height: 0;
        width: 0;
        border: solid transparent;
        border-top-color: var(--dark);
        border-width: 5px;
        margin-top: -5px;
        margin-left: 0;
        transform: rotate(-90deg);
    }

    .login .left,
    .login .right {
        grid-column: span 6;
    }
    
    .login .left {
        min-width: 0;
    }
    .login .right {
        grid-row: 1;
    }

    .list__toolbar {
        flex-direction: column;
        height: auto;
        gap: 0;
        align-items: flex-end;
    }
    .list__toolbar .search input {
        border-bottom: 1px solid var(--borderColor);
        border-radius: 0;
    }
    
    .list__toolbar .search input:focus {
        border-bottom-color: var(--primary);
    }
    .tools {
        padding: 8px 16px;
    }
    #mainStats {
        grid-template-columns: repeat(2, 1fr);
    }
    #chartRow .report__card.report__feed, 
    #chartRow  .report__card.report__chart {
        grid-column: span 4;
    }
    .report__chart--content {
        min-height: 270px;
    }
    .dashboard__header-nav a,
    .dashboard__header-nav span {
        margin-right: 16px;
        white-space: nowrap;
    }

    .form-group .form-label {
        padding: 0;
        grid-column: span 3;
    }
    .form-group .field {
        padding: var(--pad16) 0 0 0;
        grid-column: span 3;
    }

    .members-title,
    .member {
        padding: var(--pad16) 0;
    }
    .member p,
    .member__detail span {
        font-size: 14px;
        max-width: 250px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .member__detail {
        margin-left: 8px;
    }
    input, textarea, select {
        font-size: 14px;
    }
    .dashboard__header-left {
        width: calc(100% + 32px);
        overflow-x: scroll;
        margin-left: -16px;
        padding-left: 16px;
    }
    .dashboard__header-nav {
        margin-bottom: 0;
    }
    .social-field .social-name {
        width: 100px;
        font-size: 12px;
        padding: 0 8px;
    }
    .social-field .social-name img {
        width: 16px;
        margin-right: 4px;
    }
    .social-field input {
        padding-left: 108px;
    }
    .ruling-options {
        padding: 16px 0;
    }
    .concoursArbitrageOptions h3,
    .concoursArbitrageOptions p {
        font-size: 14px;
    }

    .list__toolbar .search input {
        height: 56px;
    }
    .tools .button-primary.button-small {
        position: absolute;
        top: 8px;
        right: 8px;
    }

    #contestDetail {
        margin-top: 32px;
    }
    .contest__menu {
        overflow-x: scroll;
    }
    .row-pad {
        padding: 32px 0;
    }
    .contest__title h1 {
        font-size: 18px;
    }
    .tab-content .row-pad {
        padding: 16px 0;
    }
    .rank-item {
        padding: 8px 16px;
    }
    .desc .row__title {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    #contestDetail .row__title h2, #contestDetail .desc h2,
    .row__title h3 {
        font-size: 16px;
        line-height: 1.2;
    }
    .right-col .contest__detail {
        white-space: initial;
        align-items: flex-start;
    }
    .grid-3 {
        grid-gap: 16px;
    }
    #catchesMap {
        margin-top: 16px;
        height: 800px
    }
    .filtre-concours-map {
        width: 100%;
        height: 300px;
    }
    #catchesMap #map {
        width: 100%;
    }
    .filtre-concours-map-inner {
        height: calc(100% - 95px);
    }
    .grid-2.home-row {
        display: flex;
        grid-template-columns: repeat(1,1fr);
        flex-direction: column;
        gap: 0;
    }
    .home-content,
    .home-image {
        width: 100%;
    }
    .grid-2.home-row.--img-r {
        flex-direction: column-reverse;
    }
    .--img-r .home-image,
    .--img-l .home-image {
        justify-content: center;
    }
    
    #m,
    #m img {
        width: 100px;
    }
    #hanecon {
        width: 100px;
        top: 100px;
    }
}


@media screen and (max-width: 630px) {
    .mode {
        display: none;
    }
    .ruling-options {
        grid-template-columns: repeat(1,1fr);
    }
    #coverRow {
        flex-direction: column;
    }
    #mapFooter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    #mapFooter .button-primary {
        grid-column: span 2;
        width: 100%;
        text-align: center;
    }
    #contestDetail {
        margin-top: 0px;
        padding: 0;
    }
    .contest__header {
        border-radius: 0;
    }
    .rank-item span {
        font-size: 14px;
    }
    .rank-item .angler .member__detail p {
        font-size: 14px;
    }
    .contest-detail-inner .grid-4 {
        grid-gap: 16px;
    }
    .grid-4 .desc,
    .grid-4 .right-col {
        grid-column: span 4;
    }
    .grid-4 .right-col {
        z-index: 3;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        position: relative;
        top: 0;
    }
    #registerButton {
        position: fixed;
        bottom: 16px;
        right: 16px;
        left: 16px;
        z-index: 10;
        width: calc(100% - 32px);
    }
    #contestDetail {
        margin-bottom: 72px;
    }
    .rank-item.--species {
        min-width: 500px;
    }
    .ranking-species {
        overflow-x: scroll
    }

}

@media screen and (max-width: 550px) {
    
    header span {
        font-size: 24px;
    }
    h1 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 32px;
    }
    
    h2 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 16px;
    }
    
    h3 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    
    p {
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        color: var(--dark);
    }
    .thumbnail {
        width: 48px;
        height: 48px;
    }
    .container {
        padding: 0 var(--pad16) !important;
    }
    #header .container.row-pad {
        padding: 32px var(--pad16) !important;
    }
    .dashboard__content {
        padding: var(--pad16) 0;
    }
    .login .left {
        padding: var(--pad16);
    }
    .login .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .login .grid-2 .button.button.button-primary {
        grid-row: 1;
    }
    .login.flex-centered {
        padding: var(--pad16);
    }
    .filter span {
        font-size: 12px;
    }
    .tools, .filters {
        gap: 12px;
    }
    .tools {
        width: 100%;
        justify-content: center;
    }
    .filter {
        gap: 4px;
    }
    .list__toolbar {
        justify-content: center;
    }

    .member {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 16px;
    }
    .member .d-flex.w-100.aic {
        grid-column: span 3;
    }
    .member .filter {
        grid-column: span 1;
    }
    .member .button-secondary.--danger,
    .member .button-secondary.--success,
    .member .button-secondary.--primary,
    .member .button-secondary.--warning {
        margin-left: 0;
        grid-column: span 4;
    }
    .row__title {
        padding: 0 16px;
    }
    .row__contests {
        padding: 0 16px 32px 16px;
    }
    .contest__section {
        padding: 32px 0 0 0;
    }
    .liste-contest__header {
        padding-bottom: 0;
    }
    .grid-4 .right-col {
        display: flex;
    }
}
@media screen and (max-width: 400px) {
    :root {
        --mrgSection: 16px 0;
    }
    header {
        padding: 10% 0 24% 0;
    }
    header span {
        font-size: 18px;
    }
    h1 {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 24px;
    }
    
    h2 {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    
    h3 {
        font-size: 18px;
        line-height: 32px;
        margin-bottom: 16px;
    }
   
    .button-primary,
    .button-secondary {
        font-size: 14px;
    }
    .sponsors .grid-5 {
        grid-template-columns: repeat(2,1fr);
    }
    
}
.selectorRs {
	padding:6px 0;
	cursor:pointer;
}

.selectorRs:hover {
	background-color: #f0f4fc;
}
.search-pick2 {
	cursor:pointer;
}

.search-pick2:hover {
	background-color: #f0f4fc;
}

.erreur-formulaire{
    color: var(--danger);
    font-size: 14px;
    line-height: 3;
    display: block;
    font-weight: bold;
}

.option-menu{
    display: flex;
    justify-content: space-between;
}

.menu-item{
    padding: 3px;
}

.three-dots:after{
    cursor: pointer;
    content: '\2807';
    padding: 0 5px;
}

.dropdown{
    position: absolute;
    right: 10px;
    outline: none;
    opacity: 0;
    z-index: -1;
    max-height: 0;
    transition: opacity 0.1s, z-index 0.1s, max-height 5s;
    border: 1px solid var(--borderColor);
    border-radius: var(--borderRadiusSmall);
    padding: 8px 8px 8px 16px;
    background: white;
}

.dropdown-container:focus{
    outline: none;
}

.dropdown-container:focus .dropdown{
    opacity: 1;
    z-index: 8;
    max-height: 100vh;
    transition: opacity 0.2s, z-index 0.2s, max-height 0.2s;
}



#comment-enquete {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  #comment-enquete td, #comment-enquete th {
    border: 1px solid #ddd;
    padding: 8px;
  }
  
  #comment-enquete tr:nth-child(even){background-color: #f2f2f2;}
  
  #comment-enquete tr:hover {background-color: #ddd;}
  
  #comment-enquete th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #04AA6D;
    color: white;
  }

  .contact-error, .contact-success {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 376px;
  }

  .contact-error p {
    color: var(--danger);
    font-size: 14px;
  }

  .contact-success p {
    color: var(--success);
    font-size: 14px;
  }

  .inline-error {
    color: var(--danger);
  }

  .input-error {
      border-color: var(--danger);      
  }

  .swiper-container {
    width: 100%;
  
  }
  
  .swiper-container swiper-container-horizontal{
  
    width: 100%;
  }
  
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #eaeafd;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height:250px;
  }
  .swiper-slide img{
    width: 100%;
    display: block;
  }
  .swiper-slide swiper-slide-next {
    width: 100%;
  }
  .swiper-slide swiper-slide-active {
    width: 100%;
  }
  .swiper-slide swiper-slide-prev {
    width: 100%;
  }
  .swiper-slide swiper-slide-prev {
    width: 100%;
  }
  .swiper-button-next, .swiper-container-rtl, .swiper-button-prev{
    height: 25px;
  }

.button__text {
    transition: all 0.2s;
}

.button--loading {
    position: relative;
}

.button[disabled],
.button[disabled]:hover {
    background: gray !important;
    cursor: not-allowed;
}

.button--loading .button__text {
    visibility: hidden;
    opacity: 0;
}

.button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

input[type=submit].disabled{
    background: var(--lightGrey);
    border: 1px solid var(--lightGrey);
}

.sponsorsItem{
    text-align: center;
    position: relative;
}

.sponsorsItem .close{
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.sponsorsItem .close img{
    height: 32px;
    border-radius: 32px;
    border: 3px solid red;
}

#container-message-inscription {
    padding-top: 50px !important;
}
#container-message-inscription h3 {
    text-align: center;
    padding: 2px 15px;
    margin-bottom: 60px;
}
#get-appli p {
    text-align: center;
}

.disableBlocCB{
    background-color: grey;
}