.grecaptcha-badge {
  right: -500px !important;
}
/* DIMENSIONS ***************************************************************************************************************/
/* COLORS *****************************************************************************************************************/
.ac-color-primary {
  color: #002554;
}
/* FONTS *****************************************************************************************************************/
@font-face {
  font-family: 'Nexa Rust Sans';
  src: url('../font/NexaRustSans-Black.woff2') format('woff2'), url('../font/NexaRustSans-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* @font-face {
    font-family: 'helvetica_neue_lt_promdcn';
    src: url('../font/helveticaneueltpromdcn-webfont.woff2') format('woff2'),
         url('../font/helveticaneueltpromdcn-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'gothambook';
    src: url('../font/gotham_book-webfont.woff2') format('woff2'),
         url('../font/gotham_book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

} */
p {
  color: #002554;
  font-family: 'Jost', sans-serif;
}
a {
  position: relative;
}
a::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: #002554;
  transition: all 0.5s;
}
a:hover {
  text-decoration: none;
}
a:hover::after {
  width: 100%;
}
/* CARD *****************************************************************************************************************/
.ac-card {
  background-color: rgba(255, 255, 255, 0.95);
  /* background: #7AEEFF;
  background: linear-gradient(0deg,rgba(245, 245, 245, 1) 0%, rgba(255, 255, 255, 1) 50%);
  border-radius: 0 0 10px 10px; */
  padding-top: 30px;
  padding-bottom: 25px;
  position: relative;
  border-radius: 30px;
}
.ac-card .ac-inner-card {
  padding: 25px;
  padding-top: 10px;
}
.ac-card .ac-hr {
  border-top: 1px solid #ffffff;
}
/* @media (min-width:@tablet-breakpoint) {
  .ac-card {
    margin-bottom: 30px !important;
  }
}

@media (min-width:@desktop-breakpoint) {
  .ac-card {
    margin-bottom: 40px !important;
    min-height:570px;
  }
} */
/* FORM *****************************************************************************************************************/
.ac-form {
  /* Animation sur le focus des input */
  /* .uk-select, .select2-selection {
    height:30px !important;
    line-height: 30px;
  } */
  /* Upload fichier*/
  /* .input-file {
    display:none;
  } */
  /* États de validation */
}
.ac-form .ac-input-group {
  position: relative;
}
.ac-form .input-bubbles {
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.ac-form .input-bubble {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.8), rgba(255, 0, 110, 0.4));
  border-radius: 50%;
  animation: bubbleUp 1.5s ease-in infinite;
}
@keyframes bubbleUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px) scale(0);
    opacity: 0;
  }
}
.ac-form .bubbles-active {
  opacity: 1;
}
.ac-form .ac-input,
.ac-form .uk-select,
.ac-form .select2 {
  height: 40px;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  color: #002554;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  border-radius: 16px;
  text-align: left;
  transition: all 0.5s;
}
.ac-form .ac-input::placeholder,
.ac-form .uk-select::placeholder,
.ac-form .select2::placeholder {
  color: #002554;
  transition: color 0.5s;
}
.ac-form .ac-input:focus,
.ac-form .uk-select:focus,
.ac-form .select2:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 110, 0.2);
  border-color: #002554;
}
.ac-form .ac-input:focus::placeholder,
.ac-form .uk-select:focus::placeholder,
.ac-form .select2:focus::placeholder {
  color: transparent;
}
.ac-form .select2-selection__rendered {
  line-height: 30px !important;
}
.ac-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #002554;
  padding-left: 15px;
}
.ac-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 30px;
}
.ac-form .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
}
.ac-form .uk-checkbox {
  background-color: #ffffff;
  border: 2px solid #002554;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  transition: all 0.5s;
}
.ac-form .uk-checkbox:checked {
  background: linear-gradient(90deg, #ffb800, #ff7b9c, #e91e8c);
  border-color: #002554;
  transform: rotate(-5deg);
}
.ac-form .uk-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  animation: checkPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes checkPop {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.ac-form .ac-radio:checked {
  background-color: #fbb30a;
  border: 1px solid #fbb30a;
}
.ac-form .ac-input-date {
  height: 30px;
}
.ac-form .ac-text-date-naissance,
.ac-form .ac-text-date-prestation {
  background-color: #ffffff;
  padding-left: 15px;
  border: 2px solid #e5e7eb;
}
.ac-form .ac-text-date-naissance p,
.ac-form .ac-text-date-prestation p {
  color: #002554;
  font-size: 14px;
  line-height: 36px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}
.ac-form .ac-input-date {
  padding-top: 3px;
  padding-bottom: 3px;
  height: 40px !important;
}
.ac-form .ac-text-date-naissance,
.ac-form .ac-text-date-prestation {
  border-radius: 16px 0 0 16px !important;
  border-right-width: 0 !important;
}
.ac-form .ac-form-margin-bottom {
  padding-bottom: 10px;
}
.ac-form .ac-label .uk-checkbox {
  margin-top: 0;
}
.ac-form .ac-label p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #002554;
}
.ac-form .ac-label p a {
  text-decoration: none;
  font-weight: 600;
  color: #002554;
}
.ac-form .ac-label p a::after {
  width: 100%;
}
.ac-form .ac-upload-zone {
  border: 2px dashed #e5e7eb;
  background-color: #ffffff;
  color: #002554;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.5s;
}
.ac-form .ac-upload-zone .ac-upload-text {
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.ac-form .ac-upload-zone .ac-upload-indication {
  margin-top: 5px;
  margin-bottom: 0;
  opacity: 0.5;
}
.ac-form .ac-upload-zone:hover,
.ac-form .ac-upload-zonedragover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 110, 0.2);
  border-color: #002554;
}
.ac-form .ac-upload-zone.hidden {
  display: none !important;
}
.ac-form .ac-upload-zone.ac-input-error {
  border-color: #e74c3c !important;
  border-style: solid;
  background-color: #fdf2f2 !important;
}
.ac-form .ac-file-preview {
  display: none;
  border: 2px solid #002554;
  background-color: #ffffff;
  color: #002554;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  animation: slideIn 0.3s ease;
}
.ac-form .ac-file-preview.show {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ac-form .ac-file-preview .ac-file-name-text {
  font-size: 14px;
}
.ac-form .ac-file-preview .ac-file-size {
  min-width: 90px;
}
.ac-form .ac-file-preview .remove-file {
  background: #002554;
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
  flex-shrink: 0;
}
.ac-form .ac-file-preview .remove-file:hover {
  transform: scale(1.1);
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ac-form .ac-input-error {
  border-color: #e74c3c !important;
  background-color: #fdf2f2 !important;
}
.ac-form .ac-input-valid {
  border-color: #002554 !important;
}
.ac-form .ac-error-form {
  color: #e74c3c !important;
  font-size: 11px !important;
  line-height: 13px;
  text-align: left;
  margin-top: 2px;
  margin-bottom: 2px;
  padding-left: 10px;
}
.ac-form .ac-label .ac-error-form {
  padding-left: 0;
}
.ac-form #ac-error-form-reglement {
  margin-top: 0;
  margin-bottom: 2px;
  padding-left: 0;
}
.ac-form .ac-input-file {
  background-color: #ffffff;
  color: #002554;
  height: 35px;
  line-height: 35px;
  display: block;
  text-transform: inherit;
  text-align: center;
}
.ac-form .ac-input-file-selected {
  background-color: #002554;
  color: #ffffff;
  height: 37px !important;
  line-height: 37px;
  font-size: 11px;
  display: block;
  text-transform: inherit;
}
.ac-form .input-file {
  display: none;
}
.uk-modal-body .ac-error-form {
  text-align: center;
}
.ac-input-date::-webkit-datetime-edit {
  padding-top: 3px;
  padding-bottom: 3px;
}
/* @media (max-width: @tablet-breakpoint) {
  #date-prestation {
    border-top-width: 0 !important;
    border-left-width: 1px !important;
  }
  
  .ac-form {
    .ac-text-date-prestation {
      border-bottom-width: 0 !important;
      border-right-width: 1px !important;
    }
  }  
} */
@media (max-width: 640px) {
  /* .ac-input-date {
    border-radius: 0 0 2px 2px !important;
  } */
  .ac-text-date-naissance,
  .ac-text-date-prestation {
    border-radius: 2px 2px 0 0 !important;
  }
  .ac-form-margin-right-mobile {
    padding-right: 10px;
  }
}
@media (min-width: 640px) AND (max-width: 960px) {
  .ac-form-margin-right-mobile {
    padding-right: 10px;
  }
}
@media (max-width: 960px) {
  .ac-form .ac-file-preview {
    padding: 15px;
  }
  .ac-form .ac-file-preview.show {
    flex-direction: column;
    gap: 5px;
  }
  .ac-form .ac-file-preview.show p {
    margin-top: 5px;
    margin-bottom: 0;
  }
}
@media (min-width: 960px) {
  .ac-form-margin-right {
    padding-right: 10px;
  }
}
/* BOUTONS *****************************************************************************************************************/
.ac-button {
  font-family: 'Nexa Rust Sans', sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 45px 15px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.5s;
}
.ac-button-primary {
  background: linear-gradient(90deg, #ffb800, #ff7b9c, #e91e8c, #00d4e4);
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: gradientShift 3s ease infinite;
  overflow: hidden;
}
.ac-button-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.ac-button-primary:hover:not(:disabled) {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 0, 110, 0.2);
}
.ac-button-primary:hover:not(:disabled)::before {
  width: 300px;
  height: 300px;
}
.ac-button-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  animation: none;
}
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.ac-connection-popin,
.ac-connection-popin a {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 18px;
  color: #002554;
  font-weight: 400;
  animation: all 0.5s;
}
.ac-connection-popin span,
.ac-connection-popin a span {
  font-weight: 600;
  line-height: 17px;
}
.ac-connection-popin a::after {
  width: 100%;
}
.ac-button-secondary {
  background: #ffd100;
  color: #636469;
}
.ac-button-secondary:hover {
  background: #002554;
  color: #ffffff;
}
.ac-button-small {
  font-size: 16px;
  line-height: 18px;
  padding: 7px 25px;
}
.ac-button-banner-cookies {
  font-size: 14px;
  background-color: #f0f0f0;
  color: #002554;
  padding: 3px 15px;
}
.ac-button-banner-cookies:hover {
  background-color: #002554;
  color: #f0f0f0;
}
.ac-button[disabled],
button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.uk-table tr {
  border-bottom: 1px solid #002554;
  font-family: 'Nexa Rust Sans', sans-serif;
  color: #002554;
  font-size: 18px;
  line-height: 20px;
}
.uk-table tr.ac-table-highlight {
  color: #ffd100;
}
.uk-table td {
  padding: 3px;
}
.uk-table .ac-table-place {
  text-align: right;
}
.uk-table .ac-table-joueur {
  text-align: left;
  text-transform: capitalize;
}
.uk-table .ac-table-score {
  text-align: right;
}
@media (max-width: 640px) {
  .ac-button-secondary {
    padding: 15px 20px;
  }
  .ac-button-default {
    font-size: 20px;
    line-height: 22px;
  }
  .ac-button-small {
    padding: 6px 25px 6px;
  }
}
@media (hover: none) {
  .ac-button-primary:active:not(:disabled) {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 0, 110, 0.2);
  }
  .ac-button-primary:active:not(:disabled)::before {
    width: 300px;
    height: 300px;
  }
}
/* BODY *****************************************************************************************************************/
/* @media (min-width:@smartphone-breakpoint) {
  body {
    background: url('../webroot/img/bg.jpg') top center no-repeat #ffffff;
  }
} */
/* HEADER *****************************************************************************************************************/
@media (max-width: 640px) {
  .ac-header,
  .ac-content-section {
    padding: 0;
  }
  .ac-header .uk-container,
  .ac-content-section .uk-container {
    padding: 0;
  }
}
@media (min-width: 640px) {
  .ac-header {
    background: url('../webroot/img/bg-header.jpg') bottom center no-repeat;
    padding-top: 25px;
    padding-bottom: 0;
  }
}
/* CONTENT SECTION *****************************************************************************************************************/
.ac-content-section {
  background: url('../img/bg.jpg') top center no-repeat #00d5e5;
  max-width: 1920px;
  margin: auto;
}
.ac-content-section #ac-dotations-date {
  font-family: 'Nexa Rust Sans', sans-serif;
  font-weight: 900;
  color: #002554;
  font-size: 26px;
  line-height: 28px;
}
.ac-content-section #ac-dotations-text {
  font-family: 'Nexa Rust Sans', sans-serif;
  font-weight: 500;
  color: #002554;
  font-size: 30px;
  line-height: 32px;
}
.ac-content-section #ac-dotations-text span {
  font-weight: 900;
}
.ac-content-section #ac-dotations-slider {
  padding: 0 20px;
}
.ac-content-section h2 {
  font-family: 'Nexa Rust Sans', sans-serif;
  color: #002554;
  font-size: 30px;
  line-height: 32px;
  text-transform: uppercase;
  /* span {
      font-weight: 900;
      font-size: 25px;
      line-height: 27px;
    } */
}
.ac-content-section .ac-titre-baseline {
  font-family: 'Nexa', sans-serif;
  color: #002554;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.ac-content-section hr {
  margin-top: 0;
  margin-bottom: 0;
  border-color: #e5e7eb;
}
.ac-content-section .ac-steps {
  max-width: 160px;
  margin: auto;
  margin-bottom: 30px;
}
.ac-content-section .ac-steps .ac-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #dddddd;
  float: left;
  margin-right: 5px;
  transition: all 0.5s;
}
.ac-content-section .ac-steps .ac-step-dot-active {
  width: 32px;
  background: linear-gradient(90deg, #ffb800, #ff7b9c, #e91e8c);
}
.ac-content-section .ac-steps .ac-step-text {
  font-family: 'Nexa', sans-serif;
  color: #002554;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 10px;
}
.ac-content-section h3 {
  font-family: 'Jost', sans-serif;
  color: #002554;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
}
.ac-content-section .uk-text-small {
  color: #002554;
  font-size: 11px;
  line-height: 13px;
}
.ac-content-section .uk-alert {
  background-color: #fdf2f2;
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 5px;
  padding-right: 20px;
}
.ac-content-section .uk-alert p {
  color: #e74c3c;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
}
.ac-content-section .uk-alert .uk-alert-close {
  top: 2px;
  right: 2px;
}
.ac-content-section .uk-alert .uk-alert-close svg {
  color: #3083bf;
}
.ac-content-section .uk-alert .uk-alert-close:after {
  width: 0;
}
.ac-content-section #ac-bottom p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #002554;
}
.ac-content-section #ac-bottom .uk-icon-button {
  background-color: #000000;
  color: #ffffff;
  border-radius: 15px;
  transition: all 0.5s;
}
.ac-content-section #ac-bottom .uk-icon-button:hover {
  background-color: #ffd100;
}
.ac-content-section #ac-bottom #ac-icon-instagram {
  border-bottom-right-radius: 3px;
}
.ac-content-section #ac-bottom #ac-icon-facebook {
  border-bottom-left-radius: 3px;
}
#end .uk-modal-dialog {
  max-width: 960px !important;
}
#end .uk-modal-dialog h2 {
  font-size: 26px;
  line-height: 28px;
  text-transform: inherit;
  font-weight: 900;
}
#end .uk-modal-dialog p {
  color: #002554;
  font-size: 18px;
  line-height: 20px;
}
#end .uk-modal-dialog p span {
  font-weight: 600;
}
#end .uk-modal-dialog p a {
  text-decoration: underline;
}
#end .uk-modal-dialog .ac-button-primary {
  color: #ffffff;
}
@media (max-width: 960px) {
  .ac-content-section .uk-container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 640px) {
  .ac-content-section {
    padding-bottom: 15px;
  }
  .ac-content-section .ac-titre-baseline {
    margin-bottom: 5px !important;
  }
  .ac-content-section .ac-inner-card {
    padding: 15px;
    padding-top: 10px;
  }
  .ac-content-section #ac-dotations-date {
    font-size: 16px;
    line-height: 18px;
  }
  .ac-content-section #ac-dotations-text {
    font-size: 20px;
    line-height: 22px;
  }
  .ac-content-section #ac-bottom #ac-col-logo-client {
    padding-left: 0;
  }
  .ac-content-section h2 {
    font-size: 23px;
    line-height: 25px;
  }
  .ac-content-section h3 {
    font-size: 16px;
    line-height: 18px;
  }
  #end .uk-modal-dialog h2 {
    font-size: 22px;
    line-height: 24px;
  }
  #end .uk-modal-dialog p {
    font-size: 14px;
    line-height: 16px;
  }
  #end .uk-modal-dialog .ac-button-primary {
    font-size: 20px;
    line-height: 22px;
  }
}
@media (max-width: 960px) {
  .ac-content-section .ac-dotations-column {
    max-width: 600px;
    margin: auto;
  }
}
/* VERIFICATION *****************************************************************************************************************/
#verification {
  width: 100%;
  margin: auto;
}
#verification h2 {
  font-size: 27px;
  line-height: 29px;
}
#verification .ac-inner-card {
  padding-bottom: 0;
}
#verification .ac-input-surface {
  padding: 15px 10px;
  max-width: 45px;
}
#verification .ac-text-intro {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 500;
}
#verification .ac-step-verification {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: #002554;
  font-weight: 700;
  margin-bottom: 5px;
}
#verification .ac-step-verification .step {
  background: linear-gradient(90deg, #ffb800, #ff7b9c, #e91e8c);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  line-height: 24px;
  margin-right: 10px;
}
#verification .ac-indication {
  margin: 5px 0 0 15px;
  color: #002554;
  opacity: 0.5;
}
@media (max-width: 640px) {
  #verification h2 {
    font-size: 18px;
    line-height: 20px;
  }
  #verification h2 span {
    font-size: 19px;
    line-height: 21px;
  }
  #verification .ac-input-surface {
    margin-top: 10px;
  }
}
@media (min-width: 640px) {
  #verification .ac-form-small-width {
    margin: auto;
  }
}
/* GAMEPLAY *****************************************************************************************************************/
#gameplay h2 {
  font-size: 25px;
  line-height: 27px;
}
#gameplay h2 span {
  font-size: 24px;
  line-height: 26px;
}
#gameplay #ac-form-quiz {
  width: 100%;
  max-width: 450px;
  margin: auto;
}
#gameplay #ac-form-quiz #ac-quiz-question {
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  color: #e95126;
  font-family: 'Nexa', sans-serif;
}
#gameplay #ac-form-quiz .ac-quiz-label {
  font-family: 'Nexa', sans-serif;
  color: #002554;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 15px;
}
#gameplay #ac-form-quiz .uk-radio {
  width: 13px;
  height: 13px;
  margin-right: 5px;
}
#gameplay #ac-form-quiz .ac-button {
  max-width: 385px;
}
@media (max-width: 640px) {
  #gameplay h2 {
    font-size: 18px;
    line-height: 20px;
  }
  #gameplay h2 span {
    font-size: 19px;
    line-height: 21px;
  }
  #gameplay #ac-form-quiz #ac-quiz-question {
    font-size: 14px;
    line-height: 16px;
  }
  #gameplay #ac-form-quiz .ac-quiz-label {
    font-size: 12px;
    line-height: 14px;
  }
}
/* FIN *****************************************************************************************************************/
#fin h2,
#terminer h2,
#teaser h2 {
  font-size: 32px;
  line-height: 34px;
}
#fin .ac-inner-card p,
#terminer .ac-inner-card p,
#teaser .ac-inner-card p {
  font-family: 'Jost', sans-serif;
  color: #002554;
}
#fin .ac-inner-card .ac-text-confirm-tas,
#terminer .ac-inner-card .ac-text-confirm-tas,
#teaser .ac-inner-card .ac-text-confirm-tas {
  font-size: 15px;
  line-height: 17px;
  text-transform: uppercase;
  font-weight: 500;
}
#fin .ac-inner-card .ac-box-tas,
#terminer .ac-inner-card .ac-box-tas,
#teaser .ac-inner-card .ac-box-tas {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  max-width: 210px;
  margin: auto;
}
#fin .ac-inner-card .ac-box-tas .ac-tas-text,
#terminer .ac-inner-card .ac-box-tas .ac-tas-text,
#teaser .ac-inner-card .ac-box-tas .ac-tas-text {
  font-size: 14px;
  line-height: 16px;
}
#fin .ac-inner-card .ac-box-tas .ac-tas-date,
#terminer .ac-inner-card .ac-box-tas .ac-tas-date,
#teaser .ac-inner-card .ac-box-tas .ac-tas-date {
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  margin-top: 5px;
}
#fin .ac-inner-card .ac-step-tas-text,
#terminer .ac-inner-card .ac-step-tas-text,
#teaser .ac-inner-card .ac-step-tas-text {
  font-size: 13px;
  line-height: 15px;
  opacity: 0.5;
  margin-top: 8px;
}
#fin .ac-inner-card .ac-conclusion-text,
#terminer .ac-inner-card .ac-conclusion-text,
#teaser .ac-inner-card .ac-conclusion-text {
  font-size: 15px;
  line-height: 17px;
  font-weight: 600;
}
#fin .ac-inner-card .ac-button:hover,
#terminer .ac-inner-card .ac-button:hover,
#teaser .ac-inner-card .ac-button:hover {
  color: #ffffff;
}
#fin .ac-inner-card .ac-button:hover::after,
#terminer .ac-inner-card .ac-button:hover::after,
#teaser .ac-inner-card .ac-button:hover::after {
  width: 0;
}
#teaser .ac-inner-card .ac-box-tas {
  max-width: 300px;
}
#terminer h2 {
  font-size: 22px;
  line-height: 24px;
}
@media (max-width: 640px) {
  #fin h2,
  #terminer h2,
  #teaser h2 {
    font-size: 22px;
    line-height: 24px;
  }
}
/* FOOTER SECTION ****************************************************************************************************************************/
#ac-footer {
  padding: 20px 15px;
}
#ac-footer p {
  font-family: 'Jost', sans-serif;
  color: #002554;
  font-size: 12px;
  line-height: 14px;
  opacity: 0.5;
}
#ac-footer .uk-nav li,
#ac-footer .uk-nav a {
  font-family: 'Jost', sans-serif;
  color: #002554;
  font-size: 12px;
  line-height: 14px;
  position: relative;
}
#ac-footer .uk-nav li a::after {
  bottom: 4px;
}
#ac-footer .uk-nav .ac-footer-link-bullet {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #002554;
  margin: 0 5px;
}
#modal-contact .uk-modal-dialog,
#modal-connection .uk-modal-dialog {
  max-width: 400px !important;
}
#modal-contact .uk-modal-dialog a::after,
#modal-connection .uk-modal-dialog a::after {
  bottom: 0;
}
#modal-mentions-legales .uk-modal-dialog {
  max-width: 780px !important;
}
#modal-mentions-legales .uk-modal-dialog a:hover::after {
  width: 0;
}
#modal-mentions-legales .uk-modal-dialog .logo-mentions {
  max-width: 200px;
}
.uk-modal-body {
  border-radius: 15px;
}
.uk-modal-body h2 {
  font-family: 'Nexa Rust Sans', sans-serif;
  color: #002554;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}
.uk-modal-body h3 {
  font-family: 'Nexa Rust Sans', sans-serif;
  color: #002554;
  font-size: 16px;
  margin-bottom: 0;
}
.uk-modal-body p {
  font-family: 'Jost', sans-serif;
  color: #002554;
  font-size: 14px;
  margin-top: 5px;
}
.uk-modal-body a {
  color: #002554;
}
.ac-footer-separateur {
  margin-left: 5px;
  margin-right: 5px;
  max-width: 4px;
}
@media (max-width: 640px) {
  #ac-footer p {
    font-size: 12px;
  }
  #ac-footer img {
    max-width: 150px;
  }
  .uk-modal-body h2 {
    font-size: 24px;
  }
  .uk-modal-body h3 {
    font-size: 20px;
  }
}
/* COOKIES BANNER ****************************************************************************************************************************/
#ac-cookies-banner {
  background-color: #ffffff;
  color: #002554;
  z-index: 30;
  padding: 5px !important;
}
#ac-cookies-banner p {
  font-size: 14px;
}
