@font-face {
  font-family: 'Helvetica Neue LT Std';
  src: url('../fonts/helveticaneueltstd.woff2') format('woff2'), url('../fonts/helveticaneueltstd.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-Bold';
  src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-Heavy';
  src: url('../fonts/Gilroy-Heavy.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-Light';
  src: url('../fonts/Gilroy-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-Medium';
  src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-Regular';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-RegularItalic';
  src: url('../fonts/Gilroy-RegularItalic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-SemiBold';
  src: url('../fonts/Gilroy-SemiBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gilroy-SemiBoldItalic';
  src: url('../fonts/Gilroy-SemiBoldItalic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-Bold';
  src: url('../fonts/IntegralCF-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normaGilroy-Regular;
}
@font-face {
  font-family: 'IntegralCF-BoldOblique';
  src: url('../fonts/IntegralCF-BoldOblique.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-DemiBold';
  src: url('../fonts/IntegralCF-DemiBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-DemiBoldOblique';
  src: url('../fonts/IntegralCF-DemiBoldOblique.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-ExtraBold';
  src: url('../fonts/IntegralCF-ExtraBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-ExtraBoldOblique';
  src: url('../fonts/IntegralCF-ExtraBoldOblique.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-Heavy';
  src: url('../fonts/IntegralCF-Heavy.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-HeavyOblique';
  src: url('../fonts/IntegralCF-HeavyOblique.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-Medium';
  src: url('../fonts/IntegralCF-Medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-MediumOblique';
  src: url('../fonts/IntegralCF-MediumOblique.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-Regular';
  src: url('../fonts/IntegralCF-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IntegralCF-RegularOblique';
  src: url('../fonts/IntegralCF-RegularOblique.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IcoFont';
  font-style: 'Regular';
  font-weight: normal;
  src: url('../fonts/icofont.woff2') format("woff2"), url('../fonts/icofont.woff') format("woff");
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
body {
  background-color: #f6f8fa;
}
body * {
  color: #212529;
  font-size: 1em;
  line-height: 1.3;
  outline: none;
}
body.loading {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
body.loading:after,
body.loading:before {
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}
body.loading:after {
  background-color: #212529;
  height: 100%;
  position: fixed;
  min-height: 100vh;
  margin: 0 auto;
  top: 0;
  opacity: .75;
  width: 100%;
  z-index: 1000;
}
body.loading:before {
  animation: spin 2s infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 0;
  border-bottom: 9px solid #FFE917;
  display: block;
  margin: auto;
  width: 100px;
  height: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 999;
}
body p {
  font-family: 'Gilroy-Medium';
}
a.btn,
a.button,
button,
button.btn,
button.button,
.button,
.btn-info {
  font-family: "Gilroy-Bold";
  font-size: 16px;
  color: #212529;
  border: 2px solid transparent;
  display: inline-block;
  line-height: 1.1;
  padding: .6em 1em;
  margin: 0;
  background-color: #FFE917;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  min-width: 200px;
}
a.btn:hover,
a.btn:focus,
a.button:hover,
a.button:focus,
button:hover,
button:focus,
button.btn:hover,
button.btn:focus,
button.button:hover,
button.button:focus,
.button:hover,
.button:focus,
.btn-info:hover,
.btn-info:focus {
  border-color: #FFE917;
  background-color: #ffffff;
  color: #FFE917;
}
a.btn.hollow,
a.button.hollow,
button.hollow,
button.btn.hollow,
button.button.hollow,
.button.hollow,
.btn-info.hollow {
  border: 2px solid #FFE917;
  background-color: #ffffff;
  color: #FFE917;
}
a.btn.hollow:hover,
a.btn.hollow:focus,
a.button.hollow:hover,
a.button.hollow:focus,
button.hollow:hover,
button.hollow:focus,
button.btn.hollow:hover,
button.btn.hollow:focus,
button.button.hollow:hover,
button.button.hollow:focus,
.button.hollow:hover,
.button.hollow:focus,
.btn-info.hollow:hover,
.btn-info.hollow:focus {
  background-color: #FFE917;
  border-color: transparent;
  color: #ffffff;
}
form label {
  font-family: "Gilroy-Medium";
  font-size: 16px;
  color: #212529;
  margin-bottom: 5px;
}
form label span {
  color: #FFE917;
  margin-right: 15px;
}
form [type=email],
form [type=password],
form [type=text] {
  font-family: "Gilroy-Regular";
  font-size: 16px;
  border: 1px solid #EDF1F3;
  box-shadow: none;
  margin: 0 0 1rem;
  background-color: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
form [type=email]:focus,
form [type=password]:focus,
form [type=text]:focus {
  border: 0;
  background-color: #ffffff;
}
form textarea {
  font-family: "Gilroy-Regular";
  font-size: 16px;
  background-color: #ffffff;
  border: 0;
  box-shadow: none;
  margin: 0 0 2rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  min-height: 100px;
}
form textarea:focus {
  border: 0;
}
form select {
  font-family: 'Gilroy-Regular';
  font-size: 16px;
  border: 0;
  box-shadow: none;
  background-color: #ffffff;
  padding: 0.5rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-image: url(../images/arrow.png);
  background-size: 9px 6px;
  background-position: right;
}
form select:focus {
  border: 0;
  background-color: #ffffff;
}
form .checkbox {
  margin-bottom: 1rem;
  position: relative;
  display: inline-flex;
}
form .checkbox label {
  font-family: 'Gilroy-Regular';
}
form .checkbox input + label {
  margin: 0;
  padding-left: 1em;
  position: relative;
}
form .checkbox input + label a {
  text-decoration: underline;
}
form .checkbox ul.errors {
  margin: 0 0 .5rem 0;
  position: static;
  text-align: left;
}
form input.dateBirth,
form input.purchaseDate {
  background-image: url(../images/calendar.png);
  background-size: 20px 20px;
  background-position: 98% 10px;
  background-repeat: no-repeat;
}
form .box_form .legend,
form .box_form a {
  font-family: "Gilroy-Regular";
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}
form .box_form a {
  text-decoration: underline;
}
form .civility {
  margin: 1rem 0;
}
form .civility label {
  font-family: 'Gilroy-Medium';
}
form .password {
  position: relative;
}
form .password i::after {
  font-family: 'IcoFont';
  font-size: 28px;
  color: #ACB5BB;
  position: absolute;
  top: 28px;
  right: 30px;
  cursor: pointer;
}
form .password i.icofont-eye-blocked::after {
  content: "\ef22";
}
form .password i.icofont-eye::after {
  content: "\ef24";
}
form .password_requirements li {
  position: relative;
  list-style-type: none;
  margin-bottom: 12px;
}
form .password_requirements li:before {
  content: "\ec77";
  font-family: 'IcoFont';
  position: absolute;
  color: #E1EFF4;
  margin-left: -1.25rem;
}
form .password_requirements li.error {
  color: #D44239;
}
form .password_requirements li.error:before {
  content: "\eee4";
  color: #D44239;
}
form .password_requirements li.success {
  color: #71d1c1;
}
form .password_requirements li.success:before {
  content: "\eed6";
  color: #71d1c1;
}
.important p,
.warning p,
.mandatory p,
.cnil p {
  font-size: 12px;
}
.mandatory p span {
  color: #FFE917;
}
h2 {
  font-family: 'IntegralCF-Bold';
  font-weight: 700;
  color: #212529;
  text-align: center;
  font-size: 28px;
}
div#main > div {
  max-width: 100%;
}
.action {
  margin: 2rem 0;
  text-align: center;
}
.actions {
  direction: rtl;
  margin: 1rem 0 2rem;
  text-align: center;
}
.actions > * {
  direction: ltr;
  display: inline-block;
  margin: 0 .5em;
}
header {
  padding: 1rem 0;
  background-color: #FFE917;
}
header .notConnected {
  display: inline-flex;
  align-items: flex-end;
}
header .notConnected a.connected {
  float: right;
  border: 2px solid transparent;
  padding: 0.6em 1em;
  margin: 0;
  background-color: #212529;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: #ffffff;
  font-family: 'Gilroy-Medium';
  margin-right: 50px;
}
header .notConnected a.connected img {
  margin-left: 15px;
}
header .notConnected ul.menu li a {
  font-family: 'Gilroy-Bold';
  font-size: 16px;
}
header .notConnected ul.menu li a:hover {
  color: #212529;
}
header .notConnected ul.menu li.active >a {
  background-color: transparent;
  text-decoration: underline;
  color: #212529;
}
header img.user {
  height: 15px;
  margin-right: 6px;
}
header p.hello {
  font-family: 'Gilroy-Regular';
  font-size: 12px;
  color: #212529;
  margin-right: 5rem;
}
header p.hello span {
  font-family: 'Gilroy-Bold';
  color: #FFE917;
}
header p.hello a.log-out {
  margin-left: 6px;
}
header p.hello a.log-out::after {
  content: '';
  background-image: url(../images/PowerBlack.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  top: 7px;
}
header p.hello:before {
  content: '';
  background-image: url(../images/user.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 3px;
}
header .power,
header p.disconnect {
  display: none;
}
header a.title-bar-title {
  font-size: 0;
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
  display: inline-block;
  z-index: 1;
}
header a.title-bar-title:before,
header a.title-bar-title:after {
  content: "";
  display: block;
  margin: auto;
}
header a.title-bar-title:before {
  background-image: url(../images/logoBlack.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 224px;
  height: 63px;
  margin-left: 10px;
}
header .top-bar {
  max-width: 87rem;
  margin: 0 auto;
  background-color: transparent;
}
header .top-bar .top-bar-left ul {
  background-color: transparent;
}
header .top-bar .top-bar-left ul li.active >a {
  background-color: transparent;
  text-decoration: underline;
}
header .top-bar .top-bar-left ul li a {
  font-family: 'Gilroy-Bold';
  font-size: 16px;
  color: #212529;
}
header .top-bar .top-bar-left ul li:not(.has-submenu-toggle) >a::after {
  border-color: #FFE917 transparent transparent !important;
}
header .top-bar .top-bar-left ul li:not(.has-submenu-toggle):hover {
  color: #402120;
}
header .top-bar .top-bar-left ul li:not(.has-submenu-toggle) ul {
  background-color: #ffffff;
}
header .top-bar .top-bar-left ul li:not(.has-submenu-toggle) ul li:after {
  content: none;
}
header .top-bar .top-bar-left ul li.is-active a {
  color: #402120;
}
footer {
  background-color: #212529;
  padding: 0.5rem 0;
}
footer nav .menu-footer ul {
  justify-content: center;
}
footer nav .menu-footer ul li {
  position: relative;
}
footer nav .menu-footer ul li:nth-child(1):after,
footer nav .menu-footer ul li:nth-child(2):after,
footer nav .menu-footer ul li:nth-child(3):after {
  position: absolute;
  content: "";
  background: #ffffff;
  width: 1px;
  height: 10px;
  right: 0;
  top: 12px;
}
footer nav .menu-footer ul li a {
  font-family: 'Gilroy-Medium';
  font-size: 14px;
  color: #ffffff;
}
footer nav .menu-footer ul li.active >a {
  background-color: transparent;
}
footer .css-footer {
  margin-top: 1.5rem;
}
footer .css-footer p {
  color: #ffffff;
  font-size: 12px;
}
footer .css-footer p a {
  color: #ffffff;
}
.content-login h3 {
  color: #ffffff;
  font-family: 'IntegralCF-Bold';
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
}
.content-login h4 {
  color: #ffffff;
  font-family: "Gilroy-Regular";
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}
.content-login h4 span a {
  font-size: 20px;
  color: #ffffff;
  text-decoration: underline;
}
.content-login .login h3 {
  margin-bottom: 1rem;
}
.content-login .login a {
  font-family: 'Gilroy-Regular';
  font-size: 16px;
  color: #212529;
  text-decoration: underline;
  text-align: left;
}
.content-login .login .errors {
  text-align: center;
}
.content-login .login .card {
  border: none;
  border-bottom: 0.5px solid #EDF1F3;
}
.content-login .login .card a.button.social.france-connect {
  padding: auto;
  text-align: center;
  border: 1px solid #212529;
  background-color: transparent;
  color: #212529;
  text-decoration: none;
  font-family: 'Gilroy-Medium';
  font-size: 16px;
}
.content-login .login .card a.button.social.france-connect:before {
  content: "";
  background-image: url(../images/GrandLyonConnectLogo.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-flex;
  align-items: center;
  right: 15px;
}
.content-login .register {
  text-align: center;
}
.content-login .register h3 {
  margin-bottom: 3rem;
}
.content-login .register h4 {
  font-family: 'Gilroy-Bold';
  font-size: 16px;
  color: #212529;
  margin-bottom: 1rem;
}
.content-login .register p {
  margin-bottom: 3.9rem;
}
.content-login .grid-x.grid-padding-x,
.register form.identity_form .grid-x.grid-padding-x,
.userPass #main .grid-container #tms_step_navigator,
.account-already-exists #cms .grid-container,
.userConfirmEmail .grid-container form.identity_form .content,
.userConfirmEmail form.confirmRegister .content,
.userPass form .box_form .content,
.contact .box-content {
  box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
  background-color: #ffffff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 3rem 1rem;
}
.userPass #tms_step_navigator label.required {
  font-family: 'Gilroy-Bold';
  font-size: 24px;
  text-align: center;
}
.userPass #tms_step_navigator .tms_email.group-field label.required {
  font-family: 'Gilroy-Regular';
  font-size: 16px;
  text-align: left;
}
.userPass #tms_step_navigator ul.password_requirements {
  font-family: 'Gilroy-Regular';
}
.userPass .notice p {
  font-family: 'Gilroy-Medium';
  font-size: 20px;
  text-align: center;
}
.participer a.participer,
.demander a.button {
  width: 279px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
.participer a.participer::before,
.demander a.button::before {
  content: "+";
  position: relative;
  text-transform: lowercase;
  color: #212529;
  font-family: 'OPTIVagRound';
  font-size: 16px;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: 1px solid #212529;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-block;
  left: -16px;
}
.participer a.participer:hover,
.demander a.button:hover {
  background-color: #FFE917;
  color: #212529;
}
.register .box_form h2 {
  color: #ffffff;
  font-family: 'IntegralCF-Bold';
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.register .box_form .legend {
  margin-bottom: 3rem;
}
.register .checkbox {
  text-align: center;
}
.register .checkbox input {
  left: 1em;
  position: relative;
}
.register .notice-password p {
  font-size: 13px;
}
.demande-list {
  display: inline-flex;
  flex-direction: column;
}
.demande-list .title-demande {
  margin-bottom: 4rem;
}
.demande-list .mes-demandes .ztl,
.demande-list .mes-demandes .aire-pietonne,
.demande-list .mes-demandes .velostation {
  background-color: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
}
.demande-list .mes-demandes .ztl h4,
.demande-list .mes-demandes .aire-pietonne h4,
.demande-list .mes-demandes .velostation h4 {
  color: #212529;
  font-family: "Gilroy-Bold";
  font-weight: 700;
  border-bottom: 1px dashed #212529;
  padding: 1rem;
}
.demande-list .mes-demandes .ztl p,
.demande-list .mes-demandes .aire-pietonne p,
.demande-list .mes-demandes .velostation p {
  font-family: 'Gilroy-Regular';
  font-size: 16px;
  padding: 1rem;
  margin-bottom: 0;
}
.demande-list .mes-demandes .ztl p span,
.demande-list .mes-demandes .aire-pietonne p span,
.demande-list .mes-demandes .velostation p span {
  font-family: 'Gilroy-Bold';
  font-size: 16px;
  padding: 10px;
}
.demande-list .mes-demandes .ztl p span.Validé,
.demande-list .mes-demandes .ztl p span.Refusé,
.demande-list .mes-demandes .ztl p span.a-completer,
.demande-list .mes-demandes .ztl p span.en-cours,
.demande-list .mes-demandes .aire-pietonne p span.Validé,
.demande-list .mes-demandes .aire-pietonne p span.Refusé,
.demande-list .mes-demandes .aire-pietonne p span.a-completer,
.demande-list .mes-demandes .aire-pietonne p span.en-cours,
.demande-list .mes-demandes .velostation p span.Validé,
.demande-list .mes-demandes .velostation p span.Refusé,
.demande-list .mes-demandes .velostation p span.a-completer,
.demande-list .mes-demandes .velostation p span.en-cours {
  font-family: 'Gilroy-Regular' !important;
  box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-left: 5rem;
}
.demande-list .mes-demandes .ztl p span.Validé,
.demande-list .mes-demandes .ztl p span.en-cours,
.demande-list .mes-demandes .aire-pietonne p span.Validé,
.demande-list .mes-demandes .aire-pietonne p span.en-cours,
.demande-list .mes-demandes .velostation p span.Validé,
.demande-list .mes-demandes .velostation p span.en-cours {
  color: #28A745 !important;
  border: 0.5px solid #28A745;
}
.demande-list .mes-demandes .ztl p span.Refusé,
.demande-list .mes-demandes .aire-pietonne p span.Refusé,
.demande-list .mes-demandes .velostation p span.Refusé {
  color: #D44239 !important;
  border: 0.5px solid #D44239;
}
.demande-list .mes-demandes .ztl p span.a-completer,
.demande-list .mes-demandes .aire-pietonne p span.a-completer,
.demande-list .mes-demandes .velostation p span.a-completer {
  color: #FFC107 !important;
  border: 0.5px solid #FFC107;
}
.demande-list .mes-demandes .ztl .temporaire,
.demande-list .mes-demandes .aire-pietonne .temporaire,
.demande-list .mes-demandes .velostation .temporaire {
  height: 54px;
  background-color: #FFC107;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.demande-list .mes-demandes .ztl .temporaire a.link_update,
.demande-list .mes-demandes .aire-pietonne .temporaire a.link_update,
.demande-list .mes-demandes .velostation .temporaire a.link_update {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.demande-list .mes-demandes .ztl .temporaire a.link_update p.folder,
.demande-list .mes-demandes .aire-pietonne .temporaire a.link_update p.folder,
.demande-list .mes-demandes .velostation .temporaire a.link_update p.folder {
  color: #ffffff;
  font-family: 'Gilroy-Bold';
  font-size: 14px !important;
}
.list-offers .demande-acces .type-demande h4 {
  font-family: 'Gilroy-Medium';
}
.list-offers .demande-acces .type-demande .ztl,
.list-offers .demande-acces .type-demande .aire-pietonne,
.list-offers .demande-acces .type-demande .velostation {
  background-color: #FEF7C3;
}
.list-offers .demande-acces .type-demande .ztl p,
.list-offers .demande-acces .type-demande .aire-pietonne p,
.list-offers .demande-acces .type-demande .velostation p {
  font-family: "Gilroy-Bold";
  font-size: 16px;
  padding-top: 1.5rem;
}
.list-offers .demande-acces .type-demande .ztl p span,
.list-offers .demande-acces .type-demande .aire-pietonne p span,
.list-offers .demande-acces .type-demande .velostation p span {
  font-family: "Gilroy-Regular";
  font-size: 12px;
  line-height: 18px;
}
.list-offers .demande-acces .type-demande .ztl .participer a.demander,
.list-offers .demande-acces .type-demande .aire-pietonne .participer a.demander,
.list-offers .demande-acces .type-demande .velostation .participer a.demander {
  background-color: transparent;
  color: #212529;
}
.list-offers .demande-acces .type-demande .ztl .participer:focus,
.list-offers .demande-acces .type-demande .aire-pietonne .participer:focus,
.list-offers .demande-acces .type-demande .velostation .participer:focus {
  color: #212529;
}
.list-offers .demande-acces .type-demande .note {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #e9f0fb;
}
.list-offers .demande-acces .type-demande .note p {
  font-family: 'Gilroy-Regular';
  font-size: 12px;
  margin-bottom: 1.5rem;
  margin-right: 20px;
  padding: 20px;
}
.faq {
  background-color: #FFE917;
}
.faq .faq-title {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  padding: 3rem;
}
.faq .faq-title h1 {
  font-family: 'IntegralCF-Bold';
  font-size: 31px;
  font-weight: 500;
  color: #212529;
}
.faq .faq-title img {
  margin-right: 20px;
}
.faq h3 {
  font-size: 16px;
  color: #212529;
  text-align: center;
  margin-bottom: 3rem;
}
.faq .accordion {
  background-color: transparent;
}
.faq .accordion li {
  margin-bottom: 1rem;
}
.faq .accordion li .accordion-title {
  font-family: 'Gilroy-Bold';
  font-size: 16px;
  color: #212529;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #f8faf7;
  border: 0;
}
.faq .accordion li .accordion-title span {
  font-weight: 600;
  color: #FFE917;
  text-transform: uppercase;
}
.faq .accordion li .accordion-title:before {
  content: "\eab2";
  font-family: 'IcoFont';
}
.faq .accordion li .accordion-content {
  border: 0;
  position: relative;
  z-index: 1;
}
.faq .accordion li.is-active > .accordion-title:before {
  content: "\eab9";
  font-family: 'IcoFont';
}
.faq .button {
  color: #ffffff;
  background: #212529;
}
.offerParticipate form h2 {
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.offerParticipate form .sub-tltle p {
  text-align: center;
  font-family: 'Gilroy-Medium';
}
.offerParticipate form.qualification {
  margin-top: 2rem;
}
.offerParticipate form.qualification .choice .trafic-choice {
  display: inline-flex;
}
.offerParticipate form.qualification .choice label {
  width: 245px;
  background-color: #ffffff;
  height: 120px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  text-align: center;
  padding: 28px;
  border: 2px solid rgba(217,221,236,0.55);
  box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
}
.offerParticipate form.qualification .choice input[type=radio] {
  position: relative;
  left: 5rem;
}
.offerParticipate form.qualification .choice input[type=radio] + label:before {
  content: "";
  width: 20px;
  height: 20px;
  left: 22px;
  top: 6px;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background-color: #ffffff;
}
.offerParticipate form.identity .block,
.offerParticipate form.identity input[type=text] {
  background-color: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid rgba(217,221,236,0.55);
}
.offerParticipate form.identity .block p.legend,
.offerParticipate form.identity input[type=text] p.legend {
  font-size: 24px;
  font-family: 'Gilroy-Bold';
}
.offerParticipate form.identity .block {
  box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
}
.offerParticipate form.identity .sub-title p,
.offerParticipate form.identity .sub-tltle p {
  text-align: center;
  font-family: 'Gilroy-Medium';
}
.splm-velo-stations header {
  background-color: #13A538;
}
.splm-velo-stations header a.title-bar-title {
  font-size: 0;
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
  display: inline-block;
  z-index: 1;
}
.splm-velo-stations header a.title-bar-title:before {
  content: "";
  background-image: url(../images/PARKVELOblanc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 224px;
  height: 63px;
  margin-left: 10px;
}
.splm-velo-stations header .title-bar {
  position: relative;
  left: -10rem !important;
}
.splm-velo-stations header p.hello {
  color: #ffffff;
}
.splm-velo-stations header p.hello:before {
  content: '';
  background-image: url(../images/userwhite.png);
}
.splm-velo-stations header p.hello a.log-out::after {
  content: '';
  background-image: url(../images/Power.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.splm-velo-stations header .top-bar-left ul li a {
  color: #ffffff;
}
.splm-velo-stations #offerParticipate .sub-title p {
  text-align: center;
  font-family: Gilroy-Medium;
}
.splm-velo-stations #offerParticipate .request {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 10rem;
}
.splm-velo-stations #offerParticipate .request .block p.legend {
  text-align: left;
  font-family: 'Gilroy-Bold';
  font-size: 20px;
  padding-top: 2rem;
  padding-left: 2rem;
  border-bottom: 0.5px solid #EDF1F3;
}
.splm-velo-stations #offerParticipate .request .block .choice input[type=radio] {
  position: relative;
  top: 2.5rem;
  left: 2rem;
}
.splm-velo-stations #offerParticipate .request .block .choice input[type=radio] + label {
  font-family: 'Gilroy-Bold';
  position: relative;
  padding-left: 25px;
}
.splm-velo-stations #offerParticipate .request .block .choice input[type=radio] + label:before {
  content: "";
  width: 16px;
  height: 16px;
  left: -23px;
  top: -3px;
  position: absolute;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background-color: #ffffff;
}
.splm-velo-stations #offerParticipate .request .block .choice .trafic-choice {
  display: inline-flex;
  flex-direction: column;
}
.splm-velo-stations #offerParticipate .request .block .choice .trafic-choice label {
  background-color: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 18px;
  line-height: 2rem;
  border: 1px solid rgba(217,221,236,0.55);
  box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
}
.splm-velo-stations #offerParticipate .request .block .choice .trafic-choice label:before {
  display: none;
}
.splm-velo-stations #offerParticipate .request .block .choice .trafic-choice label span {
  color: #212529;
  font-family: 'Gilroy-SemiBold';
}
.splm-velo-stations #offerParticipate .request .block .actions .button.hollow:hover {
  background-color: #ffffff;
}
.splm-velo-stations #offerParticipate .proof .file .reset {
  color: #13A538;
  border-color: #13A538;
  background-color: #ffffff;
}
.splm-velo-stations #offerParticipate .button.hollow,
.splm-velo-stations #offerParticipate a.button {
  border: 2px solid #13A538;
  background-color: #ffffff;
  color: #13A538;
}
.splm-velo-stations #offerParticipate .button.hollow:hover,
.splm-velo-stations #offerParticipate a.button:hover {
  background-color: #ffffff;
  border-color: #13A538;
  color: #13A538;
}
.splm-velo-stations #offerParticipate .actions button,
.splm-velo-stations #offerParticipate .actions button.next {
  background-color: #13A538;
  margin-bottom: 30px;
  color: #ffffff;
}
.splm-velo-stations #offerParticipate .actions button:hover,
.splm-velo-stations #offerParticipate .actions button:focus,
.splm-velo-stations #offerParticipate .actions button.next:hover,
.splm-velo-stations #offerParticipate .actions button.next:focus {
  background-color: #ffffff;
  border-color: #13A538;
  color: #13A538;
}
.splm-velo-stations #offerParticipate .actions button .block,
.splm-velo-stations #offerParticipate .actions button.next .block {
  border-color: #13A538;
  color: #13A538;
}
.demande-ztl #offerParticipate .request {
  width: auto !important;
}
.demande-ztl #offerParticipate .request .block {
  height: 274px !important;
}
.demande-ztl #offerParticipate .request .block p.legend {
  font-family: 'Gilroy-Bold';
  font-size: 20px;
}
.demande-ztl #offerParticipate .request .block .choice {
  height: 156px !important;
}
.demande-ztl #offerParticipate .request .block .choice [type=radio] {
  z-index: -1;
  position: relative;
}
.demande-ztl #offerParticipate .request .block .choice label {
  z-index: 1;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.demande-ztl #offerParticipate .request .block .actions {
  position: relative;
  top: 7rem;
}
.demande-ztl #offerParticipate .qualification p {
  text-align: center;
}
.demande-ztl #offerParticipate .qualification .choice input[type=radio] {
  top: 2rem;
  z-index: -1;
}
.demande-ztl #offerParticipate .qualification .choice .trafic-choice {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.demande-ztl #offerParticipate .qualification .choice .trafic-choice label {
  height: 172px;
}
.demande-ztl #offerParticipate .qualification .choice .trafic-choice label span.description {
  font-size: 12px;
}
.demande-ztl #offerParticipate .qualification .actions .button.hollow {
  border-color: #212529;
  color: #212529;
}
.demande-ztl #offerParticipate .identity .block .choice input,
.demande-ztl #offerParticipate .identity .block .checkbox input {
  width: 14px;
  height: 14px;
}
.demande-ztl #offerParticipate .identity .block .authorization-period .date:has(.startDate) {
  position: relative;
}
.demande-ztl #offerParticipate .identity .block .authorization-period .date:has(.startDate):after {
  content: '';
  background-image: url(../images/Vector.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 7.88px;
}
.demande-ztl #offerParticipate .identity .block .authorization-period .date input:focus {
  border: 0;
  box-shadow: none;
}
.demande-ztl #offerParticipate .identity .block .authorization-period .date .startDate {
  border-right-style: none !important;
  background: transparent;
}
.demande-ztl #offerParticipate .identity .block .authorization-period .date .endDate {
  border-left-style: none !important;
  background-image: url(../images/calendar-week.png);
  background-size: 20px 20px;
  background-position: 98% 10px;
  background-repeat: no-repeat;
}
.demande-ztl #offerParticipate .identity .block .authorization-period .tms_quantity input {
  border: none;
  -webkit-box-shadow: none;
}
.demande-ztl #offerParticipate .identity .block .authorization-period .tms_quantity .less,
.demande-ztl #offerParticipate .identity .block .authorization-period .tms_quantity .more {
  border: 0.5px solid #EDF1F3;
  width: 32px;
  height: 32px;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 22px;
}
.demande-ztl #offerParticipate .identity .block .authorization-period .tms_quantity .more {
  background-color: #E9F0FB;
}
.demande-ztl #offerParticipate .identity .block .choice label {
  font-family: 'Gilroy-Medium';
  font-size: 16px;
  padding: 10px;
}
.demande-ztl #offerParticipate .identity .block .choice label.choice_label {
  color: #6C7278;
  padding-left: 0;
}
.demande-ztl #offerParticipate .identity .block .choice label.choice_label::before {
  display: none;
}
.demande-ztl #offerParticipate .identity .block .choice input[type="radio"]:checked + label::before {
  background-color: #ffffff;
  border: 5px solid #FFE917;
}
.demande-ztl #offerParticipate .identity .block .choice label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}
.demande-ztl #offerParticipate .identity .block .choice label::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #edf1f3;
  background-color: white;
}
.demande-ztl #offerParticipate .proof .description p {
  font-family: 'Gilroy-RegularItalic';
}
.demande-ztl #offerParticipate .proof input#tms_step_navigator__data_extra_comment {
  height: 108px;
}
.demande-ztl #offerParticipate .proof label {
  color: #6C7278;
}
.demande-ztl #offerParticipate .proof .file .reset {
  color: #FFE917;
  border-color: #FFE917;
  background-color: #ffffff;
}
.demande-ztl #offerParticipate .proof .choice select.proof-choice {
  border: 1px solid #EDF1F3;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('../images/select.png');
  background-repeat: no-repeat;
  background-size: 1em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.demande-ztl #offerParticipate .badge {
  background-color: transparent;
}
.demande-ztl #offerParticipate .badge p {
  font-family: 'Gilroy-Regular';
  font-size: 16px;
}
.demande-ztl #offerParticipate .badge .choice .badge-choice label {
  background-color: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid #EDF1F3;
  position: relative;
  padding: 1rem;
}
.demande-ztl #offerParticipate .badge .choice .badge-choice label span.badge-description {
  height: 52px;
  background-color: #E9F0FB;
  display: block;
  margin: auto;
  margin-top: 15px;
  padding: 5px;
  font-family: 'Gilroy-RegularItalic' !important;
  font-size: 12px !important;
}
.demande-ztl #offerParticipate .badge .choice .badge-choice input[type=radio] {
  position: relative;
  z-index: 0;
  left: 2rem;
}
.demande-ztl #offerParticipate .choice label {
  font-family: 'Gilroy-Bold';
  font-size: 18px;
}
.demande-ztl #offerParticipate .choice label span {
  font-family: 'Gilroy-SemiBold';
  color: #212529;
  font-size: 14px;
}
.demande-ztl #offerParticipate .choice label span.description {
  font-family: 'Gilroy-Regular';
}
.demande-ztl #offerParticipate .actions .button.hollow {
  border: 1px solid #212529;
  background-color: #ffffff;
  color: #212529;
  font-family: 'Gilroy-Medium';
  font-size: 16px;
}
.block {
  background-color: #ffffff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
  padding: 2rem;
  margin-bottom: 10rem;
}
.identity p {
  text-align: center;
}
.identity .description p {
  text-align: left;
  color: #6c7278;
  font-family: "Gilroy-Regular";
  font-size: 12px;
}
.identity .block {
  padding: 2rem;
}
.identity .block label.choice_label,
.identity .block label.input-label,
.identity .block .text label,
.identity .block .date label {
  color: #6C7278;
}
.identity .block .choice label:before {
  border: 1px solid black;
}
.identity .block .choice,
.identity .block .text {
  margin-bottom: 1rem;
}
.identity .block .card [type=radio]+label,
.identity .block .velo [type=radio]+label {
  position: relative;
  left: 2rem;
}
.identity .block .card {
  border: none;
}
.identity .block .velo {
  display: inline-flex;
  flex-direction: column;
}
.identity .block .cnil p {
  color: #6C7278;
  font-size: 10px;
  font-family: 'Gilroy-Regular';
}
.identity .block p.legend {
  text-align: left;
}
.identity .block .actions {
  display: inline-flex;
  flex-direction: column-reverse;
}
.proof p.legend {
  font-family: 'Gilroy-Bold';
  font-size: 24px;
  border-bottom: 0.5px solid #EDF1F3;
}
.proof p.format,
.proof .about p,
.proof .description p {
  color: #6C7278;
  font-family: 'Gilroy-Regular';
}
.proof p.format span,
.proof .about p span,
.proof .description p span {
  font-family: 'Gilroy-Bold';
  color: #6C7278;
}
.proof p.format,
.proof .description p {
  font-size: 12px;
}
.proof .about p {
  font-family: 'Gilroy-Medium';
  font-size: 16px;
}
.proof .success {
  background-color: transparent;
}
.proof .success:hover {
  color: #212529;
  border-color: #ffffff;
}
.proof .file {
  position: relative;
}
.proof .file .reset {
  color: #13A538;
  border-color: #13A538;
  background-color: #ffffff;
}
.proof .file.loading {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.proof .file.loading:after,
.proof .file.loading:before {
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}
.proof .file.loading:after {
  background-color: #212529;
  position: absolute;
  min-height: 110px;
  margin: 0 auto;
  top: 0;
  opacity: .75;
  z-index: 1000;
  width: 766px;
  height: auto;
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
.proof .file.loading:before {
  border: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  top: 0;
  z-index: 999;
  background: url(../images/Loader.gif) no-repeat center center;
  position: absolute;
}
.confirmParticipation {
  text-align: center;
}
.confirmParticipation .block h3 {
  font-family: 'Gilroy-Bold';
  font-size: 24px;
  line-height: 36px;
}
.confirmParticipation .block p {
  font-family: 'Gilroy-Regular';
  font-size: 16px;
}
.confirmParticipation .actions {
  margin: -1rem;
}
.confirmParticipation .actions .button {
  position: relative;
  background-color: transparent;
}
.error .message {
  color: #212529;
  font-size: 24px;
  text-align: center;
  min-height: 75vh;
}
.participation .grid-container,
.offers .grid-container {
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}
.participation .grid-container .faq,
.offers .grid-container .faq {
  width: 100%;
}
.participation .grid-container .grid-margin-x,
.offers .grid-container .grid-margin-x {
  margin-left: 0;
  margin-right: 0;
}
.home p.text-center,
.participation p.text-center {
  font-family: 'Gilroy-Regular';
  font-size: 20px;
  margin-top: 3rem;
  margin: 3rem auto;
}
.userConfirmEmail h2,
.userRegister h2 {
  color: #212529;
  font-size: 32px;
  font-family: 'IntegralCF-Bold';
  font-weight: 700;
  margin-bottom: 3rem;
}
.userRegister #main {
  height: 100%;
}
.userRegister #main .grid-container {
  min-height: 71.8vh;
}
.userRegister form.confirmRegister .box_form h2.form_title {
  color: #212529 !important;
  font-size: 32px;
}
.userRegister form.confirmRegister h1 {
  display: none;
}
.userRegister form.confirmRegister .ConfirmInscription p {
  text-align: center;
  font-family: 'Gilroy-Regular';
  font-size: 16px;
}
.userRegister form.confirmRegister .ConfirmInscription p span {
  font-family: 'Gilroy-Bold';
  font-size: 24px;
}
.userRegister form.confirmRegister button.link {
  border-color: #EDF1F3;
  background-color: #ffffff;
  color: #dd0b2f;
}
.userConfirmEmail #main {
  height: 100%;
}
.userConfirmEmail .grid-container form {
  text-align: center;
}
.userConfirmEmail .grid-container form.identity_form,
.userConfirmEmail .grid-container form.confirmRegister {
  text-align: center;
}
.userConfirmEmail .grid-container form.identity_form .content p,
.userConfirmEmail .grid-container form.confirmRegister .content p {
  font-family: 'Gilroy-Regular';
  font-size: 16px;
}
.userConfirmEmail .grid-container form.identity_form .content p span,
.userConfirmEmail .grid-container form.confirmRegister .content p span {
  font-family: 'Gilroy-Bold';
  font-size: 24px;
  border-bottom: 0.5px solid #EDF1F3;
}
.contact .box-content {
  margin-top: 4rem;
}
.contact .box-content p {
  text-align: center;
}
.contact footer {
  bottom: 0;
  position: absolute;
  width: 100%;
}
.contact .box-content p,
.confirmParticipation .block p {
  text-align: center;
  font-family: 'Gilroy-Medium';
}
.extra_smartcontrol_ajaxUploadDocument .loading::after {
  background: url(/images/loading_icon.gif) no-repeat 91% 55%;
}
.participationUpdate .sub-tltle h2,
.participationUpdate .sub-tltle p {
  padding: 1rem;
}
.participationUpdate h3 {
  font-family: 'Gilroy-Bold';
  font-size: 24px;
  padding: 1rem;
}
.participationUpdate .content-description,
.participationUpdate p {
  text-align: center;
}
.participationUpdate .proof-notice p,
.participationUpdate .about p {
  text-align: left;
}
.participationUpdate .validParticipation .block {
  text-align: center;
}
.participationUpdate .proof .reset {
  border: 2px solid #FFE917;
  background-color: #ffffff;
  color: #FFE917;
}
.reveal {
  padding: 2rem 1rem;
}
.reveal button.close-button {
  background-color: transparent;
  min-width: auto;
  color: #FFE917;
  padding: 0;
  filter: none;
  border: 0;
}
.reveal h2 {
  font-size: 20px;
}
.reveal .content {
  text-align: center;
  font-family: 'Gilroy-Regular';
}
.reveal .popup-content h3 {
  text-align: center;
  font-family: 'Gilroy-Medium';
}
#tarteaucitronRoot div#tarteaucitron button {
  min-width: auto;
}
ul.errors {
  margin-left: 0;
}
ul.errors li {
  list-style-type: none;
  color: red;
  font-size: 12px;
}
.ui-datepicker {
  padding: 1rem .5rem;
  background-color: #ffffff;
}
.ui-datepicker .ui-datepicker-header {
  padding: .5rem 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  position: relative;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
  content: '\ea9d';
  font-family: 'IcoFont';
  position: relative;
  left: 3%;
  z-index: 2;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev span {
  display: none;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  position: relative;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before {
  content: '\eaa0';
  font-family: 'IcoFont';
  position: relative;
  left: 88%;
  z-index: 2;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
  display: none;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  position: absolute;
  text-align: center;
  top: 5px;
  right: 0;
  left: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-year,
.ui-datepicker .ui-datepicker-header .ui-datepicker-month {
  width: 40%;
  height: auto;
  border: 0;
  background-color: transparent;
  margin-bottom: 0;
}
.ui-datepicker a.ui-state-default {
  padding: 1px 4px;
  text-align: center;
}
.ui-datepicker a.ui-state-default.ui-state-highlight {
  color: #ffffff;
  display: block;
  background-color: #FFE917;
  border: 0;
}
.ui-datepicker table thead th {
  color: #ffffff;
}
.ui-datepicker table tbody tr:nth-child(even) {
  background-color: transparent;
}
.ztl-prise-rendez-vous form.slots {
  margin: auto;
}
.ztl-prise-rendez-vous form.slots .block {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.ztl-prise-rendez-vous form.slots .fatherContainer {
  margin: auto;
  padding: 20px;
  justify-content: center;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .tms-calendar-date-picker {
  background-color: #ffffff;
  padding: 10px;
}
.ztl-prise-rendez-vous form.slots .fatherContainer label {
  font-family: 'Gilroy-SemiBold';
  font-size: 14px;
  line-height: 3rem;
  letter-spacing: -1%;
  border-bottom: 1px solid #EDF1F3;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .ui-widget.ui-widget-content,
.ztl-prise-rendez-vous form.slots .fatherContainer .custom-hour-buttons {
  border: none;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .custom-hour-buttons {
  display: inline;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .custom-hour-buttons label {
  border-bottom: none;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .custom-hour-buttons button.btn-time {
  background-color: #EFF0F6;
  margin-right: 5px;
  margin-bottom: 5px;
  width: 85px !important;
  height: 33px !important;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .custom-hour-buttons button.btn-time.selected {
  color: #212529;
  background-color: #FFE917;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .ui-widget-content,
.ztl-prise-rendez-vous form.slots .fatherContainer .custom-hour-buttons {
  background-color: #ffffff;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .ui-widget-header,
.ztl-prise-rendez-vous form.slots .fatherContainer table.ui-datepicker-calendar thead,
.ztl-prise-rendez-vous form.slots .fatherContainer table.ui-datepicker-calendar tbody {
  background: transparent;
  border: none;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  color: #212529;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .ui-datepicker .ui-datepicker-header .ui-datepicker-next::before {
  color: #212529 !important;
}
.ztl-prise-rendez-vous form.slots .fatherContainer .ui-datepicker .ui-datepicker-header .ui-datepicker-title select.ui-datepicker-month,
.ztl-prise-rendez-vous form.slots .fatherContainer .ui-datepicker .ui-datepicker-header .ui-datepicker-title select.ui-datepicker-year {
  font-family: 'Gilroy-Bold';
  font-size: 16px;
}
.ztl-prise-rendez-vous form.slots .fatherContainer table.ui-datepicker-calendar tbody tr td span,
.ztl-prise-rendez-vous form.slots .fatherContainer table.ui-datepicker-calendar tbody tr td a {
  border: none;
  text-align: center;
  background: transparent;
}
.ztl-prise-rendez-vous form.slots .fatherContainer table.ui-datepicker-calendar tbody tr td a.ui-state-active {
  font-family: 'Gilroy-SemiBold';
  font-size: 14px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background-color: #FFE917;
  width: 32px;
  height: 32px;
  position: relative;
  left: 35px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ztl-prise-rendez-vous form.slots .fatherContainer table.ui-datepicker-calendar tbody tr td a.ui-state-active,
.ztl-prise-rendez-vous form.slots .fatherContainer table.ui-datepicker-calendar tbody tr td a.ui-state-highlight {
  color: #212529;
}
.ztl-prise-rendez-vous form.slots .alert {
  background-color: #E9F0FB;
  display: inline-flex;
  align-items: center;
  margin-top: 5rem;
  margin-bottom: 2rem;
}
.ztl-prise-rendez-vous form.slots .alert p {
  font-family: 'Gilroy-SemiBoldItalic';
  font-size: 12px;
  padding: 5px;
  margin-bottom: 0;
}
.ztl-prise-rendez-vous form.slots .actions {
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: stretch;
}
.ztl-prise-rendez-vous form.slots .actions .next {
  margin-bottom: 1rem;
}
.ztl-prise-rendez-vous form.slots .actions a.button.back {
  background-color: transparent;
  border: 1px solid #212529;
}
.ztl-prise-rendez-vous .confirmParticipation h3 {
  font-family: 'Gilroy-Bold';
  font-size: 24px;
  text-align: center;
  border-bottom: 1px solid #EDF1F3;
}
.ztl-prise-rendez-vous .ui-widget.ui-widget-content {
  display: block;
}
@media print,screen and (min-width: 64em) {
  .offerParticipate form.valid.html_conform .large-6 {
    width: 48%;
    margin: 0 1%;
  }
}
@media screen and (min-width: 40em) {
  body:not(.home) {
    background-image: url(../images/DeskShapes.png);
    background-repeat: no-repeat;
    background-position: top right;
  }
  body.splm-velo-stations {
    background-image: url(../images/PatternGreen.png);
    background-repeat: no-repeat;
    background-position: top right;
  }
  header {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 4px 10px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 4px 10px -3px rgba(0,0,0,0.2);
    box-shadow: 0 4px 10px -3px rgba(0,0,0,0.2);
  }
  header a.title-bar-title:before {
    margin-left: 5.7rem;
  }
  header .top-bar p.hello {
    margin-left: 30px;
  }
  header .top-bar .top-bar-left {
    margin-top: -2px;
  }
  header .top-bar .top-bar-left ul li {
    position: relative;
  }
  header .top-bar .top-bar-left ul li a.login {
    position: relative;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: #ffffff;
    color: #FFE917;
    padding-right: 2.7rem;
    left: 41rem;
  }
  header .top-bar .top-bar-left ul li a.login:after {
    content: "";
    background-image: url(../images/user.png);
    width: 14px;
    height: 16px;
    position: absolute;
    left: 92px;
  }
  header a.connected {
    margin-right: 5rem;
    margin-top: -3rem;
  }
  header .notConnected ul.menu {
    margin-right: 5rem;
  }
  footer {
    height: 80px;
  }
  footer .menu-footer ul {
    float: right;
    margin-right: 4rem;
  }
  footer .mention img {
    position: absolute;
    left: 8rem;
  }
  .banner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.5)), url(../images/splmSlide.jpg);
    background-size: cover;
    background-position: center;
  }
  .home header {
    margin-bottom: 0;
  }
  .home .content-login i.icofont-eye-blocked.toggle-password {
    position: relative;
    left: 35.5rem;
    top: -5rem;
  }
  .content-login.grid-container,
  form.identity_form {
    margin: auto;
    padding: 20px;
    position: relative;
    z-index: 2;
  }
  .content-login.grid-container .grid-x.grid-padding-x,
  form.identity_form .grid-x.grid-padding-x {
    margin-top: 4rem;
  }
  .content-login.grid-container .grid-x.grid-padding-x form,
  form.identity_form .grid-x.grid-padding-x form {
    background-color: #ffffff;
  }
  .register form.identity_form,
  .content-login.grid-container {
    top: 0;
    margin-top: -322px;
    margin-bottom: 6rem;
  }
  .confirmParticipation .block {
    padding: 6rem;
  }
  .content-login .grid-x.grid-padding-x,
  .register form.identity_form .grid-x.grid-padding-x {
    width: 690px;
    margin: auto;
    padding: 3rem;
  }
  .content-login .grid-x.grid-padding-x .button,
  .register form.identity_form .grid-x.grid-padding-x .button {
    display: block;
    margin: 2rem auto;
    width: 421px;
  }
  .userRegister form.confirmRegister {
    margin: 5rem auto;
  }
  .userRegister form.confirmRegister .grid-x.grid-padding-x {
    width: 846px;
    height: 333px;
    width: 846;
    height: 333;
    left: 465px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding-top: 24px;
    padding-right: 40px;
    padding-bottom: 64px;
    padding-left: 40px;
    gap: 24px;
    position: relative;
    background-color: #ffffff;
  }
  .userRegister form.confirmRegister .grid-x.grid-padding-x img.valid {
    text-align: center;
    margin: 2rem 21.6rem;
  }
  .userRegister #main {
    height: 100%;
  }
  .userRegister #main .grid-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .userPass #main {
    height: 100%;
  }
  .userPass #main .grid-container {
    min-height: 71.8vh;
  }
  .userPass #main .grid-container form {
    width: 846px;
    margin: 10rem auto;
  }
  .userPass #main .grid-container form h2.form_title {
    margin-bottom: 2rem;
  }
  .userPass #main .grid-container form button {
    margin: 0rem 19rem;
  }
  .account-already-exists #cms .grid-container {
    margin: 10rem auto;
  }
  .userConfirmEmail #main {
    height: 100%;
  }
  .userConfirmEmail .grid-container form .grid-x {
    display: inline;
  }
  .userConfirmEmail .grid-container form.identity_form,
  .userConfirmEmail .grid-container form.confirmRegister {
    margin: 3rem;
  }
  .userConfirmEmail .grid-container form.identity_form .content,
  .userConfirmEmail .grid-container form.confirmRegister .content {
    width: 836px;
    margin: auto;
  }
  .userConfirmEmail .grid-container form.identity_form .actions .button,
  .userConfirmEmail .grid-container form.confirmRegister .actions .button {
    width: 420px;
  }
  .userConfirmEmail .grid-container form.confirmRegister .content {
    margin: 8rem;
  }
  .userConfirmEmail footer,
  .faq footer {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .login #main {
    height: 100%;
  }
  .login #main .grid-container {
    min-height: 71.8vh;
    max-width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .login #main .grid-container .forget-box {
    margin-bottom: 2rem;
  }
  .login #main .grid-container .btn-info {
    width: 421px;
  }
  .contact .actions {
    margin: 3rem 23rem;
  }
  .offerParticipate:not(.splm-velo-stations) #main {
    height: 100%;
  }
  .offerParticipate:not(.splm-velo-stations) #main .grid-container {
    min-height: 71.3vh;
    margin-bottom: 4rem;
  }
  .offerParticipate:not(.splm-velo-stations) form#requestForm {
    margin: auto;
    width: 647px;
    text-align: center;
    margin-top: 2rem;
  }
  .offerParticipate:not(.splm-velo-stations) form#requestForm .block {
    width: 647px;
    background-color: #ffffff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    height: 243px;
    text-align: center;
    padding: 1rem;
    box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
  }
  .offerParticipate:not(.splm-velo-stations) form#requestForm .block p.legend {
    font-size: 20px;
    margin-bottom: 2.5rem;
    text-align: left;
    margin-left: 3rem;
    line-height: 40px;
    border-bottom: 1px solid rgba(217,221,236,0.55);
  }
  .offerParticipate:not(.splm-velo-stations) form#requestForm .block .choice {
    width: 535px;
    height: 94px;
    background-color: white;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid rgba(217,221,236,0.55);
    box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
    margin: auto;
  }
  .offerParticipate:not(.splm-velo-stations) form#requestForm .block .choice .trafic-choice {
    padding-top: 20px;
  }
  .offerParticipate:not(.splm-velo-stations) form#requestForm .block .choice .trafic-choice label {
    font-size: 18px;
  }
  .offerParticipate:not(.splm-velo-stations) form.qualification .trafic-choice label {
    position: relative;
    left: 20px;
    bottom: 18px;
  }
  .offerParticipate:not(.splm-velo-stations) form.identity .block {
    width: 846px;
  }
  .offerParticipate:not(.splm-velo-stations) form.identity .block p.legend {
    font-size: 20px;
  }
  .offerParticipate:not(.splm-velo-stations) form.identity .block label,
  .offerParticipate:not(.splm-velo-stations) form.identity .block input {
    width: 766px;
    margin: auto;
  }
  .offerParticipate .grid-container {
    width: 82rem;
  }
  .stepper {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .splm-velo-stations #offerParticipate .request {
    margin: auto;
    width: 647px;
  }
  .splm-velo-stations #offerParticipate .request .sub-title p {
    text-align: center;
  }
  .splm-velo-stations #offerParticipate .request .block {
    height: 545px;
  }
  .splm-velo-stations #offerParticipate .request .block .choice .trafic-choice label {
    width: 535px;
    height: 94px;
  }
  .splm-velo-stations #offerParticipate .request .block .actions {
    position: relative;
    top: 5rem;
    margin: 2rem 3rem;
  }
  .splm-velo-stations #offerParticipate .request .block .actions a.button.hollow {
    border: 2px solid #13A538;
    color: #13A538;
  }
  .splm-velo-stations #offerParticipate .request .block .actions a.button.hollow:hover {
    background-color: #ffffff;
  }
  .splm-velo-stations #offerParticipate .identity {
    margin-bottom: 10rem;
  }
  .splm-velo-stations #offerParticipate .identity .block {
    margin-bottom: 2rem;
  }
  .splm-velo-stations #offerParticipate .identity .block .card input[type=radio],
  .splm-velo-stations #offerParticipate .identity .block .velo input[type=radio] {
    position: relative;
    top: 2rem;
  }
  .splm-velo-stations #offerParticipate .identity .block .card
                         input[type=radio] {
    left: -23rem;
  }
  .splm-velo-stations #offerParticipate .identity .block .velo input[type=radio] {
    right: 8rem;
  }
  .splm-velo-stations #offerParticipate .proof .file .select {
    background-color: #13A538;
    color: #ffffff;
  }
  .splm-velo-stations #offerParticipate .proof .file .select:hover {
    border-color: #13A538;
  }
  .splm-velo-stations #offerParticipate .confirmParticipation {
    margin-bottom: 2rem;
  }
  .splm-velo-stations #offerParticipate .confirmParticipation .actions .button {
    position: relative;
    top: 13rem;
  }
  .splm-velo-stations #offerParticipate h2 {
    font-size: 32px;
  }
  .demande-ztl .request .block {
    margin: auto;
  }
  .demande-ztl .request .block .actions {
    margin: 2rem 5rem;
  }
  .demande-ztl .qualification .choice {
    width: 1095px;
  }
  .demande-ztl .qualification .choice label {
    margin-bottom: 2rem;
    margin-top: 1rem;
  }
  .demande-ztl .qualification .choice .trafic-choice label {
    width: 327px;
  }
  .demande-ztl .qualification .actions {
    margin: 2rem 21rem;
  }
  .demande-ztl .identity .block {
    width: 327px;
  }
  .demande-ztl .identity .block .authorization-period {
    display: inline-flex;
    align-items: flex-end;
    margin-bottom: 1rem;
    width: 846px;
  }
  .demande-ztl .identity .block .authorization-period .date {
    width: 20%;
  }
  .demande-ztl .identity .block .authorization-period .date:has(.startDate) {
    position: relative;
  }
  .demande-ztl .identity .block .authorization-period .date:has(.startDate):after {
    position: absolute;
    top: 35px;
    right: 0;
  }
  .demande-ztl .identity .block .authorization-period .date input {
    margin: 0;
  }
  .demande-ztl .identity .block .authorization-period .date input:focus {
    border: 0;
    box-shadow: none;
  }
  .demande-ztl .identity .block .authorization-period .date .startDate {
    width: 182px;
  }
  .demande-ztl .identity .block .authorization-period .date .endDate {
    width: 180px;
  }
  .demande-ztl .identity .block .authorization-period .tms_quantity {
    width: 283px;
    margin-left: 5rem;
  }
  .demande-ztl .identity .block .choice label::before {
    left: -14px;
    width: 16px;
  }
  .demande-ztl .badge .choice .badge-choice {
    display: inline-flex;
  }
  .demande-ztl .badge .choice .badge-choice label {
    width: 407px;
  }
  .demande-ztl .badge .choice .badge-choice label span.badge-description {
    width: 359px;
  }
  .demande-ztl .badge .choice .badge-choice input[type=radio] {
    position: relative;
    z-index: 0;
    left: 2rem;
  }
  .demande-ztl .badge .actions {
    margin: 3rem 28rem;
  }
  .demande-ztl .identity .actions,
  .demande-ztl .proof .actions {
    top: 0;
    margin: 2rem 10rem;
  }
  .demande-ztl .identity .actions .button.hollow,
  .demande-ztl .proof .actions .button.hollow {
    width: 421px;
    margin-top: 20px;
  }
  .demande-ztl .proof .choice select.proof-choice {
    width: 50%;
  }
  .demande-ztl .actions .button.hollow {
    width: 279px;
  }
  .identity .block,
  .proof .block,
  .confirmParticipation .block {
    width: 846px;
    margin: auto;
    margin-bottom: 10rem;
  }
  .proof .file {
    width: 766px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border: 1px dashed #212529;
    margin-bottom: 10px;
  }
  .proof .file .select {
    background-color: #FFE917;
    color: #212529;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 30rem;
  }
  .proof .file .select:hover {
    border-color: #FFE917;
  }
  .proof .file .select:before {
    content: "";
    background-image: url(../images/UploadFile.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 258px;
    height: 24px;
    position: absolute;
    margin-left: -25rem;
  }
  .proof .file .reset {
    position: relative;
    margin-left: 30rem;
  }
  .proof .file .preview {
    margin-left: 10rem;
  }
  .proof .success {
    margin-left: 18rem;
  }
  .proof .actions {
    display: inline-flex;
    flex-direction: column-reverse;
  }
  .proof .actions button {
    width: 420px;
    margin: auto;
  }
  .proof .actions button.next {
    margin-bottom: 0 !important;
    margin-bottom: 24px !important;
  }
  .actions {
    width: 421px;
    margin: 2rem 10rem;
  }
  .list-offers {
    margin: auto;
  }
  .list-offers h2 {
    font-size: 32px;
    margin-top: 2rem;
  }
  .list-offers .demande-acces {
    width: 647px;
    margin: 3rem auto;
    background-color: #ffffff;
    margin-bottom: 2rem;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
  }
  .list-offers .demande-acces h4 {
    font-size: 20px;
    padding: 2rem;
    border-bottom: 1px solid #edf1f3;
  }
  .list-offers .demande-acces .ztl,
  .list-offers .demande-acces .aire-pietonne,
  .list-offers .demande-acces .velostation {
    width: 518px;
    height: 264px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-left: 4rem;
    box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
    text-align: center;
    background-color: #ffffff;
    margin-bottom: 1.5rem;
    padding: 1rem;
  }
  .list-offers .demande-acces .ztl p,
  .list-offers .demande-acces .aire-pietonne p,
  .list-offers .demande-acces .velostation p {
    font-size: 16px;
    font-family: "Gilroy-Bold";
  }
  .list-offers .demande-acces .note {
    width: 518px;
    margin-left: 4rem;
  }
  .home .grid-container,
  .participation .grid-container,
  .offers .grid-container {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .home .grid-container .grid-margin-x.demande-list,
  .participation .grid-container .grid-margin-x.demande-list,
  .offers .grid-container .grid-margin-x.demande-list {
    display: inline-flex;
    flex-direction: column;
    margin: 5rem 13rem;
  }
  .home .grid-container .grid-margin-x.demande-list .title-demande,
  .participation .grid-container .grid-margin-x.demande-list .title-demande,
  .offers .grid-container .grid-margin-x.demande-list .title-demande {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .home .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType,
  .participation .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType,
  .offers .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
  }
  .home .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType input[type="radio"],
  .home .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType label,
  .participation .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType input[type="radio"],
  .participation .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType label,
  .offers .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType input[type="radio"],
  .offers .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType label {
    vertical-align: middle;
    display: inline-block;
    margin: 0;
  }
  .home .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType input[type="radio"],
  .participation .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType input[type="radio"],
  .offers .grid-container .grid-margin-x.demande-list .title-demande #tms_step_navigator__data_extra_vehicleType input[type="radio"] {
    margin-right: 0.4rem;
    position: relative;
    top: 29px;
    left: -10px;
  }
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes {
    display: inline-flex;
    flex-wrap: wrap;
  }
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande {
    margin-right: 4rem;
    margin-bottom: 2rem;
  }
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes {
    display: inline-flex;
  }
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl,
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne,
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation {
    width: 400px;
    height: 263px;
    background-color: #ffffff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
  }
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl p,
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne p,
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation p,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl p,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne p,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation p,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl p,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne p,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation p {
    font-size: 16px;
    padding: 1rem;
    margin-bottom: 0;
  }
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl .temporaire,
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne .temporaire,
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation .temporaire,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl .temporaire,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne .temporaire,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation .temporaire,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl .temporaire,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne .temporaire,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation .temporaire {
    width: 400px;
  }
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl .temporaire a.link_update img,
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne .temporaire a.link_update img,
  .home .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation .temporaire a.link_update img,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl .temporaire a.link_update img,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne .temporaire a.link_update img,
  .participation .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation .temporaire a.link_update img,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .ztl .temporaire a.link_update img,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .aire-pietonne .temporaire a.link_update img,
  .offers .grid-container .grid-margin-x.demande-list .liste-des-demandes .demande .mes-demandes .velostation .temporaire a.link_update img {
    position: relative;
    left: 10rem;
  }
  .faq {
    height: 677px;
  }
  .faq .faq-title {
    padding-left: 43rem;
    padding-right: 30rem;
    margin: auto;
  }
  .faq .accordion {
    width: 1440px;
    margin: auto;
  }
  .faq ul.accordion {
    overflow-y: auto;
    max-height: 500px;
  }
  .faq ul.accordion li.accordion-item {
    margin-bottom: 1.5rem;
  }
  .faq ul.accordion li.accordion-item a.accordion-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    height: 92px;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: #FFF;
  }
  .faq ul.accordion li.accordion-item a.accordion-title:before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    color: #212529;
  }
  .faq ul.accordion li.accordion-item .accordion-content {
    color: #484848;
    font-family: 'Gilroy-Regular';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .faq ul.accordion li.accordion-item .accordion-content a {
    text-decoration-line: underline;
  }
  .faq ul.accordion li.accordion-item.is-active a.accordion-title {
    color: #212529;
  }
  .faq ul.accordion li.accordion-item.is-active a.accordion-title:before {
    display: none;
  }
  .faq ul.accordion li.accordion-item.is-active a.accordion-title:after {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
    color: #212529;
    left: 47rem;
  }
  .participationUpdate .block {
    width: 846px;
    margin-left: auto;
    margin-right: auto;
  }
  .participationUpdate .purchase .button.next,
  .participationUpdate .validParticipation .button.next {
    margin-left: 31rem;
    margin-bottom: 9rem;
  }
  .participationUpdate .proof .button.next {
    margin-left: 25rem;
  }
  .participationUpdate .proof .button.next,
  .participationUpdate .confirmParticipation .button.next,
  .participationUpdate .validParticipation .button.next {
    margin-right: 1rem;
  }
  .participationUpdate .proof button.hollow,
  .participationUpdate .proof .button.next,
  .participationUpdate .confirmParticipation button.hollow,
  .participationUpdate .confirmParticipation .button.next,
  .participationUpdate .validParticipation button.hollow,
  .participationUpdate .validParticipation .button.next {
    margin-bottom: 6rem;
  }
  #tms_step_navigator__data_extra_vehicleType,
  #tms_step_navigator__data_extra_professionnelIntervention {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
  }
  #tms_step_navigator__data_extra_vehicleType input[type="radio"],
  #tms_step_navigator__data_extra_vehicleType label,
  #tms_step_navigator__data_extra_professionnelIntervention input[type="radio"],
  #tms_step_navigator__data_extra_professionnelIntervention label {
    vertical-align: middle;
    display: inline-block;
    margin: 0;
  }
  #tms_step_navigator__data_extra_vehicleType input[type="radio"],
  #tms_step_navigator__data_extra_professionnelIntervention input[type="radio"] {
    margin-right: 0.4rem;
    position: relative;
    top: 29px;
    left: -10px;
  }
  .ztl-prise-rendez-vous .grid-container {
    max-width: 88rem;
  }
  .ztl-prise-rendez-vous form.slots {
    margin: auto;
  }
  .ztl-prise-rendez-vous form.slots .alert {
    width: 554px;
    margin-left: 21rem;
  }
  .ztl-prise-rendez-vous form.slots .fatherContainer .ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before {
    color: #212529 !important;
    position: relative;
    left: 28rem;
  }
  .ztl-prise-rendez-vous form.slots .tms-calendar-date-picker {
    width: 560px !important;
  }
  .ztl-prise-rendez-vous form.slots .tms-calendar-date-picker .ui-datepicker-title {
    right: 22rem;
    left: -47px;
    width: 133px;
  }
  .ztl-prise-rendez-vous form.slots .tms-calendar-date-picker .ui-widget-content {
    width: 540px !important;
  }
  .ztl-prise-rendez-vous form.slots .custom-hour-buttons {
    height: auto;
    padding: 10px;
  }
  .ztl-prise-rendez-vous form.slots .custom-hour-buttons button.btn-time {
    border: none;
    flex: none;
  }
  .ztl-prise-rendez-vous form.slots .actions {
    display: inline-flex;
    flex-direction: column-reverse;
    align-items: stretch;
    margin-left: 24rem;
  }
}
@media screen and (max-width: 39.9375em) {
  header {
    width: 100%;
    padding: 0.5rem 0;
    box-shadow: 0 4px 10px -3px rgba(0,0,0,0.2);
    display: inline-flex;
  }
  header .notConnected {
    display: inline-flex;
    align-items: center;
  }
  header .notConnected ul.menu {
    margin-right: 10px;
    margin-left: 10px;
  }
  header .notConnected a.connected {
    margin-right: 7px;
  }
  header .top-bar {
    position: absolute;
    background-color: #ffffff;
    padding: 0;
    z-index: 2;
    width: 100%;
    height: auto;
    text-align: left;
    top: 80px;
  }
  header .top-bar.opened {
    visibility: visible;
    position: relative;
    margin-top: -2rem;
    z-index: 2;
    background-color: #ffffff;
  }
  header .top-bar.opened ul.menu {
    padding: 2rem 0.5rem;
  }
  header .top-bar.opened ul.menu >li >a {
    font-size: 15px;
    line-height: 1.5;
  }
  header .top-bar ul.menu {
    background-color: #ffffff;
    text-align: left;
    padding: 2rem 3rem;
  }
  header .top-bar ul.menu >li {
    display: block;
  }
  header .top-bar ul.menu >li.active >a {
    background-color: transparent;
  }
  header .top-bar ul.menu >li >a {
    line-height: 2;
    color: #212529;
    display: inline-block !important;
  }
  header .title-bar {
    padding: 0 0.5rem;
    background-color: transparent;
    position: relative;
    left: -8rem;
  }
  header .title-bar button.menu-icon {
    min-width: auto;
    background-color: transparent;
    border: 0;
  }
  header .title-bar button.menu-icon:after {
    width: 95%;
    height: 3.5px;
  }
  header a.title-bar-title {
    left: 2.2rem;
  }
  header a.title-bar-title:before {
    width: auto;
    background-size: 75%;
    background-position: center;
    width: 113px;
    height: 74px;
  }
  header img.user {
    margin-top: 2rem;
    margin-left: 1rem;
  }
  header p.hello {
    margin-right: 1rem;
    margin-top: 1.2rem;
  }
  header .user a {
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    border-radius: 34px;
    background-color: #FFE917;
    padding: 15px 17px;
  }
  header .menu-icon:after {
    width: 30px;
    height: 4px;
    background: #212529;
    -webkit-box-shadow: 0 8px 0 #212529, 0 16px 0 #212529;
    box-shadow: 0 8px 0 #212529, 0 16px 0 #212529;
  }
  header .menu-icon:hover:after {
    background: #212529;
    -webkit-box-shadow: 0 8px 0 #212529, 0 16px 0 #212529;
    box-shadow: 0 8px 0 #212529, 0 16px 0 #212529;
  }
  header .menu-icon.close:before {
    content: "";
    transform: rotate(-45deg) translate(7px,-8px);
    background: #212529;
    display: block;
    width: 30px;
    height: 4px;
    top: 23px;
    left: -6px;
    position: absolute;
  }
  header .menu-icon.close:after {
    background: transparent;
    box-shadow: 0 8px 0 #212529, 0 0 0;
    -webkit-box-shadow: 0 8px 0 #212529, 0 0 0;
    transform: rotate(45deg) translate(5px,5px);
  }
  footer {
    padding: 1.5rem 8.5rem;
  }
  footer nav .menu-footer .menu.vertical {
    display: inline-flex;
    flex-direction: row;
    width: 90%;
  }
  footer nav .menu-footer .menu.vertical ul {
    text-align: center;
  }
  footer nav .menu-footer .menu.vertical ul li a {
    padding: 0.4rem;
  }
  footer nav .menu-footer .accordion-menu li {
    width: auto;
  }
  footer nav .mention {
    text-align: center;
  }
  body.splm-velo-stations {
    background-image: url(../images/PatternGreenMobile.png);
    background-repeat: no-repeat;
    background-position: top right;
  }
  h2 {
    font-size: 24px !important;
  }
  .actions > * {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  form .checkbox {
    display: inline-flex;
  }
  button,
  a.button {
    width: 245px;
  }
  .content-login .login,
  .content-login .register {
    width: 98%;
    margin: 1rem auto;
  }
  .content-login .login .card a.button.social.france-connect {
    font-size: 13px;
  }
  .content-login.grid-container,
  form.identity_form {
    margin: auto;
    padding: 20px;
    position: relative;
    z-index: 2;
  }
  .content-login.grid-container .grid-x.grid-padding-x,
  form.identity_form .grid-x.grid-padding-x {
    margin-bottom: 2rem;
  }
  .content-login.grid-container .grid-x.grid-padding-x form,
  form.identity_form .grid-x.grid-padding-x form {
    background-color: #ffffff;
  }
  .content-login.grid-container .grid-x.grid-padding-x form .button,
  form.identity_form .grid-x.grid-padding-x form .button {
    margin: 2rem;
  }
  .register form.identity_form,
  .content-login.grid-container {
    margin-top: -330px;
  }
  .reveal {
    min-height: auto !important;
    height: auto !important;
    margin-top: 1rem;
    width: 98%;
    margin-left: auto;
  }
  .home header {
    margin-bottom: 0;
  }
  .home .content-login i.icofont-eye-blocked.toggle-password {
    position: relative;
    left: 19rem;
    top: -5rem;
  }
  .register .checkbox {
    text-align: left;
  }
  .register .checkbox input {
    position: absolute;
  }
  .userRegister form.confirmRegister {
    margin: 8rem auto;
  }
  .userRegister form.confirmRegister img.valid {
    text-align: center;
    margin: auto 2rem;
  }
  .demande-list {
    margin: 2rem;
  }
  .demande-list .title-demande {
    display: inline-flex;
    flex-direction: column-reverse;
    margin-bottom: 0;
    text-align: center;
  }
  .demande-list .title-demande .participer {
    margin-bottom: 25px;
  }
  .demande-list .liste-des-demandes {
    margin: auto;
  }
  .demande-list .liste-des-demandes .mes-demandes .ztl,
  .demande-list .liste-des-demandes .mes-demandes .aire-pietonne,
  .demande-list .liste-des-demandes .mes-demandes .velostation {
    margin-bottom: 1rem;
  }
  .faq .faq-title h1 {
    font-size: 18px;
  }
  .faq .faq-title img {
    margin-right: 5px;
  }
  .faq ul.accordion {
    margin-left: 3rem;
  }
  .faq ul.accordion li {
    width: 295px;
  }
  .list-offers {
    margin-bottom: 1rem;
  }
  .list-offers .demande-acces {
    width: 327px;
    background-color: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(217,221,236,0.55);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: auto;
    padding: 20px;
  }
  .list-offers .demande-acces .type-demande .ztl,
  .list-offers .demande-acces .type-demande .aire-pietonne,
  .list-offers .demande-acces .type-demande .velostation {
    height: 318px;
    margin-bottom: 20px;
    text-align: center;
    padding: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
  }
  .list-offers .demande-acces .type-demande .ztl .participer a.demander,
  .list-offers .demande-acces .type-demande .aire-pietonne .participer a.demander,
  .list-offers .demande-acces .type-demande .velostation .participer a.demander {
    background-color: transparent;
    color: #212529;
  }
  .list-offers h2 {
    font-size: 20px;
    margin: 20px;
  }
  .splm-velo-stations header .title-bar {
    position: relative;
    left: -8.5rem !important;
  }
  .splm-velo-stations header a.title-bar-title:before {
    width: 110px;
    margin-top: 10px;
    margin-left: 25px;
  }
  .splm-velo-stations header p.hello {
    color: #ffffff;
  }
  .splm-velo-stations header p.hello:before {
    content: '';
    background-image: url(../images/userwhite.png);
  }
  .splm-velo-stations header .menu-icon:after {
    background: #ffffff;
    -webkit-box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
    box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
  }
  .splm-velo-stations header .menu-icon:hover:after {
    background: #ffffff;
    -webkit-box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
    box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
  }
  .splm-velo-stations header .menu-icon.close:before {
    content: "";
    transform: rotate(-45deg) translate(7px,-8px);
    background: #ffffff;
  }
  .splm-velo-stations header .menu-icon.close:after {
    background: transparent;
    box-shadow: 0 8px 0 #212529, 0 0 0;
    -webkit-box-shadow: 0 8px 0 #ffffff, 0 0 0;
    transform: rotate(45deg) translate(5px,5px);
  }
  .splm-velo-stations .request,
  .splm-velo-stations .sub-title,
  .splm-velo-stations .sub-tltle,
  .splm-velo-stations .identity .block,
  .splm-velo-stations .proof .block,
  .splm-velo-stations .confirmParticipation .block {
    width: 330px;
  }
  .splm-velo-stations h2 {
    font-size: 20px;
  }
  .splm-velo-stations .stepper {
    margin-bottom: 1rem;
  }
  .splm-velo-stations .request .block .actions {
    position: relative;
    top: 12rem;
  }
  .splm-velo-stations .identity .card input[type=radio],
  .splm-velo-stations .identity .velo input[type=radio] {
    position: relative;
    top: 2rem;
  }
  .splm-velo-stations .proof .actions {
    display: inline-flex;
    flex-direction: column-reverse;
  }
  .splm-velo-stations .confirmParticipation .actions .button {
    position: relative;
    top: 10rem;
  }
  .splm-velo-stations form .checkbox input + label {
    margin: 0;
    padding-left: 2em;
    position: relative;
    top: -2rem;
  }
  .file .select {
    background-color: transparent;
    color: #212529;
    width: 279px;
    border: 1px solid #212529;
    margin-bottom: 2rem;
  }
  .file .select:hover {
    border-color: #13A538;
  }
  .file .select:before {
    content: "";
    background-image: url(../images/Upload.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    margin-left: -2rem;
  }
  .demande-ztl .request .block {
    padding: 1rem 2rem;
  }
  .demande-ztl .qualification .choice .trafic-choice label {
    width: 320px;
  }
  .demande-ztl .identity .block .authorization-period {
    display: inline-flex;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .demande-ztl .identity .block .authorization-period .date {
    width: 36%;
  }
  .demande-ztl .identity .block .authorization-period .date:has(.startDate) {
    position: relative;
  }
  .demande-ztl .identity .block .authorization-period .date:has(.startDate):after {
    position: absolute;
    top: 60px;
    right: 0;
    left: 96px;
  }
  .demande-ztl .identity .block .authorization-period .date input:focus {
    border: 0;
    box-shadow: none;
  }
  .demande-ztl .identity .block .authorization-period .date .startDate {
    width: 160px;
    border-right-style: none !important;
    background: transparent;
  }
  .demande-ztl .identity .block .authorization-period .date .endDate {
    width: 140px;
    margin-left: 20px;
  }
  .demande-ztl .identity .block .choice input[type="radio"] {
    width: auto;
    display: block;
    position: relative;
    top: 40px;
    left: -4px;
  }
  .demande-ztl .badge .choice .badge-choice label {
    width: 333px;
  }
  .demande-ztl .badge .choice .badge-choice label span.badge-description {
    width: 224px;
  }
  .demande-ztl .badge .choice .badge-choice input[type=radio] {
    position: relative;
    z-index: 0;
    left: 2rem;
    top: 4rem;
  }
  .demande-ztl .confirmParticipation .block {
    padding: 5rem 2rem;
  }
  .demande-ztl .confirmParticipation .block h3 {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .demande-ztl .confirmParticipation .block p {
    font-family: 'Gilroy-Regular' !important;
    font-size: 16px;
  }
  .demande-ztl .actions .button.hollow {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .grid-margin-x {
    margin-left: 0;
    margin-right: 0;
  }
  .participationUpdate .block {
    width: 327px;
  }
  .participationUpdate .next {
    margin-top: -12rem;
    margin-left: 2rem;
  }
  .participationUpdate .hollow {
    margin-left: 2rem;
    margin-top: -7rem;
  }
  .participationUpdate .confirmParticipation .block {
    margin: auto;
    margin-bottom: 10rem;
  }
  .participationUpdate .confirmParticipation .block h3 {
    line-height: 1;
    font-size: 18px;
  }
  .ztl-prise-rendez-vous form.slots .fatherContainer {
    width: 327px;
    flex-direction: column;
  }
  .ztl-prise-rendez-vous form.slots .block {
    padding: 10px;
  }
}
