/*STYLE CSS pour app déménagement*/

@import "minireset.css";
@import "cs-base.css";

/* = TEMPLATE variables */
:root {
  /** COLORS*/
  --jade: #05857d;
  --jade80: #379d97;
  --red: #ea005a;
  --lter-gray: #f4f4f4;
  --black: #000000;
  --white: #ffffff;
  --gray: #707070;

  /** FONT SIZES*/
  --f-med-2: 1.875rem;
  --f-med: 1.5625rem;
  --f-reg-2: 1.125rem;
  --f-reg: 1rem;
  --f-small: 1rem;
  --f-smaller: 0.875rem;
  --f-mini: 1rem;
  --f-micro: 12px;

  /** MAIN SPACING*/
  --space-giant: 5rem;
  --space-bigger: 3.125rem; /*50px*/
  --space-big: 2.1rem; /*40px*/
  --space-large: 1.875rem;
  --space-med: 1.5625rem;
  --space-main: 4.375rem;
  --space-reg-2: 1.125rem;

  /**DEFAULT BORDER-RADIUS*/
  --df-b-radius: 15px;
}

@media screen and (max-width: 1025px) {
  /* = TEMPLATE variables */
  :root {
    /** MAIN SPACING*/
    --space-main: 25px;
  }
}
html {
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.9375rem, 0.8125rem + 0.1563vw, 1rem);
}
@media screen and (max-width: 1025px) {
  html {
    font-size: 16px;
  }
}

a {
  text-decoration: none;
}

/*= FONTS SIZES*/
.f-med2 {
  font-size: var(--f-med2);
}
.f-med {
  font-size: var(--f-med);
}
.f-reg {
  font-size: var(--f-reg);
}
.f-reg {
  font-size: var(--f-reg);
}
.f-small {
  font-size: var(--f-small);
}
.f-smaller {
  font-size: var(--f-smaller);
}
.f-mini {
  font-size: var(--f-mini);
}
.f-micro {
  font-size: var(--f-micro);
}
@media screen and (max-width : 1025px){
  .f-micro-m {
  font-size: var(--f-micro);
}
}
/* = FONT CLASSES*/
/**Classes récurrentes avec font-size, line-height, font-weight etc*/

.df-title {
  font-size: var(--f-med);
  line-height: 1.2em;
  font-weight: 700;
}

.icon-title {
  position: relative;
  padding-left: 3rem;
}
.icon-title:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
}
.icon-title.icon-title_truck::before {
  background-image: url(assets/images/icon-truck-title.svg);
}
.icon-title.icon-title_cal::before {
  background-image: url(assets/images/icon-cal-title.svg);
}

@media screen and (max-width: 1025px) {
  .df-title {
    font-size: 20px;
  }

  .icon-title {
    padding-top: 40px;
    padding-left: 0;
    text-align: center;
  }
  .icon-title:before {
    left: 50%;
    top: 0%;
    transform: translateX(-50%);
  }
}
.med-2-p {
  font-size: var(--f-med-2);
  line-height: 1.222em;
}
.reg-2-p {
  font-size: var(--f-reg-2);
  line-height: 1.222em;
}

.smaller-p {
  font-size: var(--f-smaller);
  line-height: 1.2857em;
}
@media screen and (max-width: 769px) {
  .smaller-p {
    font-size: var(--f-micro);
  }
}
.micro-p {
  font-size: var(--f-micro);
  line-height: 1.166em;
}

/*= =======================*/
/* = CLASSES GENERALISTES */
/*= =====================*/

/** WIDTHS */
.w-main {
  width: 100%;
  max-width: 100%;
}

.left-col {
  width: 40.54%;
}

.left-col-b {
  width: 59.26%;
  padding: var(--space-main);
}

.left-col-c {
  width: 40.4545%;
  
}
.right-col-b {
  width: 40.74%;
  padding: var(--space-main) var(--space-giant);
}

.right-col {
  width: 59.5455%;
}
.right-col-c {
  width: 63.58%;
}

.left-col-d {
  width: 46.13%;
  padding: var(--space-main);
}
.right-col-d {
  width: 54.87%;
  padding: var(--space-main);
}

.alt-block {
  background-color: white;
  padding: var(--space-large) var(--space-big);
  margin-bottom: 1.25rem;
  border-radius: var(--df-b-radius);
}

@media screen and (max-width: 1025px) {
  .alt-block {
    padding: 15px 10px;
    margin-bottom: 10px;
  }

  .left-col-b,
  .right-col-b {
    width: 100%;
  }
  .right-col-b {
    padding: 40px 25px;
  }
  .left-col-b {
    padding: 40px 25px;
  }

  .left-col-c {
    width: 100%;
    min-height: 55vh;
    max-height: 525px;
  }
  .right-col-c {
    width: 100%;
  }


  .left-col-d{
    width: 100%;
    padding: 40px 25px;
  }
  .right-col-d{
    width: 100%;
    padding: 0 0 90% 0;
border-radius: var(--df-b-radius);
  
  }
  
  .left-col {
    width: 100%;
  }
  .right-col {
    width: 100%;
  }
}
@media screen and (max-width: 410px) {
  .right-col-c.p-main {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media screen and (max-width: 360px) {
  .right-col-c.p-main {
    padding-left: 8px;
    padding-right: 8px;
  }
}
/**BLOCKS*/
.df-content-wrapper {
  background-color: var(--lter-gray);
  border-radius: 3.125rem;
  overflow: hidden;
}

@media screen and (max-width: 1025px) {
  .df-content-wrapper {
    border-radius: 30px;
  }
}
.alert-block {
  position: relative;
  padding-left: 2.5rem;
}
.alert-block::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(assets/images/warning.svg);
  width: 1.875rem;
  height: 1.875rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.bg-1 {
  background-image: url(assets/images/image-1.jpg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}

.bg-3 {
  background-image: url(assets/images/bg-compte.jpg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.bg-gr-jade {
  background: rgb(5, 133, 125);
  background: linear-gradient(
    120deg,
    rgba(5, 133, 125, 1) 0%,
    rgba(125, 191, 187, 1) 75%
  );
}

.bg-5 {
  background-image: url(assets/images/map-place.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}

.df-right-col {
  border-radius: 3.125rem;
}
.df-left-col {
  border-radius: 3.125rem;
}
@media screen and (max-width: 1025px) {
  .df-right-col {
    border-radius: 30px;
  }
  .df-left-col {
    border-radius: 30px;
  }
}

/*? COLORS AND BG-COLORS CLASSES*/

.bg-lter-gray {
  background-color: var(--lter-gray);
}
.lter-gray {
  color: var(--lter-gray);
}
.red {
  color: var(--red);
}
.jade {
  color: var(--jade);
}
.bg-jade {
  background-color: var(--jade);
}
.white {
  color: var(--white);
}
.gray {
  color: var(--gray);
}
.black {
  color: var(--black);
}

.bg-white {
  background-color: var(--white);
}
.bg-black {
  background-color: var(--black);
}
/** BORDERS & Borders radius*/
.df-b-radius {
  border-radius: 3.125rem;
}
@media screen and (max-width: 1025px) {
  .df-b-radius {
    border-radius: 30px;
  }
}

.br-rd-reg {
  border-radius: 15px;
}

/** MARGINS propres au template*/
.mb-big {
  margin-bottom: var(--space-big);
}

/** Paddings propres au templates*/
.p-page {
  padding: 0 5rem;
}
@media screen and (max-width: 1025px) {
  .p-page {
    padding: 0 10px;
  }
}

.p-main {
  padding-left: var(--space-main);
  padding-right: var(--space-main);
}

.plr-giant {
  padding-left: var(--space-giant);
  padding-right: var(--space-giant);
}
.plr-large {
  padding-left: var(--space-large);
  padding-right: var(--space-large);
}
.plr-big {
  padding-left: var(--space-big);
  padding-right: var(--space-big);
}

.pl-main {
  padding-left: var(--space-main);
}
.ptb-main {
  padding-top: var(--space-main);
  padding-bottom: var(--space-main);
}
.ptb-large {
  padding-top: var(--space-large);
  padding-bottom: var(--space-large);
}
.ptb-big {
  padding-top: var(--space-big);
  padding-bottom: var(--space-big);
}
.ptb-reg-2 {
  padding-top: var(--space-reg-2);
  padding-bottom: var(--space-reg-2);
}

.p-large {
  padding: var(--space-large);
}

.pl-large {
  padding-left: var(--space-bigger);
}

/** FLEX CLASSES*/
.gap-big {
  gap: var(--space-big);
}

/**MODULES*/



.alt-infos-block {
  border: 1px solid var(--jade);
  border-radius: var(--df-b-radius);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 1.25rem 2.75rem;
}

@media screen and (max-width : 1025px){
  .alt-infos-block{
    padding: 20px;
  }
}

.main-menu {
}

.main-menu_li__a {
  position: relative;
  padding-bottom: 8px;
  transition: all 0.3s;
  color: #000000;
}

.main-menu_li__a::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  background-color: var(--jade);
  height: 5px;
  border-radius: 5px;
  display: block;
  content: "";
  transform: translateX(-50%);
  transition: all 0.3s;
}
.main-menu_li__a.current::before {
  width: 50%;
}

.main-menu_li__a:hover::before {
  width: 50%;
}

.header-col-left {
  width: 45%;
}
.header-col-right {
  width: 55%;
}

.user-card-wrapper {
  width: 100%;
  max-width: 557px;
}
.user-card {
  padding: 2.5rem;
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.user-card_list {
  font-size: var(--f-reg);
  color: black;
}
.user-card_list__li {
  padding: 8px 2.75rem;
}
.user-card_list__li:nth-child(even) {
}
.user-card_list__li:nth-child(odd) {
  background-color: var(--lter-gray);
}


@media screen and (max-width : 1025px){

.user-card{
  padding: 2rem 10px;
}

  .user-card_list__li {
  font-size: var(--f-smaller)
  
}
}


.resa-infos-wrapper {
}
.resa-infos-card {
  width: 600px;
  max-width: 80%;
  display: flex;
  overflow: hidden;
  border-radius: 15px;
}
.resa-infos-card_img {
  width: 54%;
}
.resa-infos-card_img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.resa-infos-card_text {
  border: 1px solid var(--gray);
  width: 50%;
  background-color: white;
  padding: 2.5rem 2rem;
  gap: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
  border-radius: 15px;
  margin-left: -22%;
  -webkit-box-shadow: -15px 0px 20px 5px rgba(0, 0, 0, 0.21);
  box-shadow: -15px 0px 20px 5px rgba(0, 0, 0, 0.21);
}

.resa-infos-card_list {
  font-size: var(--f-smaller);
  font-weight: 300;
}
.resa-infos-card_list__li {
  margin-bottom: 10px;
}

@media screen and (max-width: 1025px) {
  .resa-infos-card {
    flex-wrap: nowrap;
    max-width: 100%;
  }
  .resa-infos-card_text {
    width: 100%;
    margin-left: -65%;
  }
  .resa-infos-card_img {
    width: 100%;
  }
}

@media screen and (max-width: 1368px) {
  .header-col-left {
    width: 25%;
  }
  .header-col-right {
    width: 75%;
  }
}
.header-logo-1 {
  width: 5.1vw;
}
.header-logo-2 {
  width: 4.7vw;
}

.header-info-block-wrapper {
  gap: 1.5rem;
}
.main-header,
.w-main {
  max-width: 1920px;
  margin: 0 auto;
}

.header-logo-2 { width:10vw; }


@media screen and (max-width: 1025px) {
  .main-header {
    padding-top: 10px;
    padding-bottom: 25px;
  }

  .header-col-left {
    width: 45%;
  }
  .header-col-right {
    width: 55%;
  }

  .header-info-block-wrapper {
    gap: 10px;
  }

  .header-logo-1 {
    width: 58px;
  }
  .header-logo-2 {
    width: 15vw;
  }
}
.header-button {
  background: var(--lter-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  height: padding;
  padding: 10px;
  border-radius: 50%;
  width: 3.7vw;
  min-width: 54px;
  height: 3.7vw;
  min-height: 54px;
}
.header-button.show-t {
  display: none;
}

.header-button_img {
  width: 48%;
  min-width: 20px;
}

.header-info-block {
  display: flex;
  padding: 0 10px 0 10px;
  background-color: var(--lter-gray);
  gap: 10px;
  border-radius: 3.125rem;
  flex-wrap: nowrap;
  align-items: center;
  max-width: 303px;
  width: 21vw;
  height: 3.7vw;
  min-height: 54px;
}

.header-info-block_img {
  width: 18%;
}
.header-info-block_text {
  width: 82%;
}

@media screen and (max-width: 1368px) {
  .header-info-block {
    width: 28vw;
  }
}

@media screen and (max-width: 1025px) {
  .header-info-block {
    display: none;
  }

  .header-button.show-t {
    display: flex;
  }

  .header-button {
    width: 48px;
    padding: 0 0 0 0;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    border: 4px solid var(--lter-gray);
  }
  .header-button_img {
    max-width: 100%;
  }
  .print-m-img {
    width: 20px;
  }
  .help-m-img {
    width: 28px;
  }
  .user-m-img {
    width: 38px;
  }
}

/**BLOCK FORMS*/
.block-forms {
  width: 360px;
  max-width: 80%;
  overflow: hidden;
  border-radius: var(--df-b-radius);
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.block-forms.signup {
  background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 1025px) {
  .block-forms {
    background-color: transparent;
    width: 360px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.form-wrapper {
  width: 100%;
  padding: var(--space-bigger) var(--space-big);
}
.second-form-wrapper {
  border-radius: var(--df-b-radius);
  position: relative;
  z-index: 5;
}
.first-form-wrapper {
}

@media screen and (max-width: 1025px) {
  .form-wrapper {
    padding: 30px 40px;
  }

  .form-wrapper.inactive .df-title {
    color: var(--jade);
    cursor: pointer;
  }
  .form-wrapper.inactive .df-title:hover {
    color: var(--jade80);
  }
  .second-form-wrapper.active {
    margin-top: 15px;
    z-index: 5;
  }
  .form-wrapper.active .df-title {
    color: var(--black);
  }
  .first-form-wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
  }
}

.df-form {
  width: 100%;
}

.df-button-wrapper {
}

.df-button {
  border: 0;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  color: white;
  text-align: center;

  border-radius: 5px;
  padding: 10px 15px;
}

select,
input.df-input,
input {
  width: 100%;
  background-color: transparent;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-left: 10px;
  padding-right: 15px;
  padding-bottom: 5px;
}
input {
  font-weight: 600;
}

.form-el {
  margin-bottom: 10px;
}

select {
  font-style: italic;
  font-weight: 500;
}

input.df-input::placeholder,
input::placeholder,
select option {
  color: var(--gray);
  font-weight: 300;
  font-style: italic;
}

/**SELECT ELEEMNT*/
select {
  /* reset */

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.jade-select {
  position: relative;
  background-image: url(assets/images/b-arrow-jade.svg);
  background-position: right center;
  background-size: 10px;
  background-repeat: no-repeat;
}

.jade-select:focus {
  background-image: url(assets/images/b-arrow-jade.svg);
  background-position: right center;
  background-size: 10px;
  background-repeat: no-repeat;
}

.black-select {
  position: relative;
  background-image: url(assets/images/b-arrow-black.svg);
  background-position: right center;
  background-size: 10px;
  background-repeat: no-repeat;
}

.black-select:focus {
  background-image: url(assets/images/b-arrow-black.svg);
  background-position: right center;
  background-size: 10px;
  background-repeat: no-repeat;
}

.jade-form-el {
  border-bottom-color: var(--jade);
}
.black-form-el {
  border-bottom-color: var(--black);
}

button {
  cursor: pointer;
}

.info-block {
  position: relative;
}
.info-block_button {
  cursor: pointer;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(assets/images/mini-info.svg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.mini-link {
  color: var(--gray);
  text-decoration: underline;
  font-weight: 700;
  font-size: 12px;
}

/**FOOTER*/
.v-line li {
  padding: 0.5rem 1.5rem;
}
.v-line li:not(:first-child) {
  border-left: 1px solid var(--gray);
}
.v-line li:first-child {
  padding-left: 0;
}

/**CALENDAR PAGE*/
.calendar-legend-list {
  display: flex;
  gap: 10px;
  margin-bottom: 1.25rem;
  padding-left: 0;
}
@media screen and (max-width: 1025px) {
  .calendar-legend-list.hide-m {
    display: none;
  }
}
.calendar-legend-list_li {
  font-size: 12px;
  line-height: 1em;
  border-radius: 20px;
  border: 1px solid var(--jade);
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--jade);
}

/*= CALENDAR MODULE*/
.calendar-wrapper {
  width: 540px;
  max-width: 100%;
}
@media screen and (max-width: 1025px) {
  .calendar-wrapper {
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.calendar {
  background-color: white;
  border-radius: 15px;
  padding: 1.875rem;
}
@media screen and (max-width: 1025px) {
  .calendar {
    padding: 20px;
  }
}

@media screen and (max-width: 410px) {
  .calendar {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 360px) {
  .calendar {
    padding: 20px 6px;
  }
}
.calendar td {
  position: relative;
}
.calendar-months {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 1.875rem;
  align-items: center;
}

.months-nav-wrapper {
  width: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  border-radius: 5px;
}
.month-nav_prev {
  mask-repeat: no-repeat;
  mask: url(assets/images/l-arrow-black.svg);
}
.month-nav_next {
  mask-repeat: no-repeat;
  mask: url(assets/images/r-arrow-black.svg);
}
.calendar_months-nav {
  cursor: pointer;
  z-index: 1;
  position: relative;
  height: 16px;
  width: 16px;
  background: black;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
}
@media screen and (max-width: 1025px) {
  .months-nav-wrapper {
    background-color: #000000;
  }
  .calendar_months-nav {
    height: 12px;
    width: 12px;
    background: white;
  }
}
thead.calendar-week-wrapper {
  position: relative;
}
thead.calendar-week-wrapper:after {
  content: "";
  display: block;
  content: "";
  height: 10px;
  width: 100%;
}
.calendar_current-month {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
}
.calendar_week__day {
  font-size: var(--f-med);
  font-weight: 300;
}
@media screen and (max-width: 1025px) {
  .calendar_week__day {
    font-size: var(--f-reg);
  }
}
.calendar td {
  padding: 0;
  text-align: center;
}
.cal-day-wrapper {
  padding: 4px 9px;
  position: relative;
}
@media screen and (max-width: 1025px) {
  .cal-day-wrapper {
    padding: 4px 4px;
  }
}
.cal-day {
  background: white;
  border-radius: 50%;
  position: relative;
  padding-bottom: 96%;
  height: 0;
  overflow: visible;
  border: 1px solid #cecece;
}

.cal-day-wrapper.focus .cal-day {
  background-color: var(--jade);
  border: 1px solid var(--jade);
}

.cal-day_nb {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 1025px) {
  .cal-day_nb {
    font-size: 12px;
  }
}
.cal-day-wrapper.focus .cal-day_nb {
  color: white;
}
.cal-day-schedules {
  position: absolute;
  left: 2.5%;
  width: 95%;
  gap: 0;
  list-style-type: none;
  padding-left: 0;
  bottom: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.cal-day_schedule {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding: 4px 0;
  line-height: 1em;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none !important;
}
@media screen and (max-width: 1025px) {
  .cal-day_schedule {
    font-size: 10px;
    padding: 2px 0;
  }
}
.cal-day-wrapper.focus .cal-day_schedule {
  border: 1px solid white;
}
.cal-day_schedule.free {
  background-color: var(--jade);
}
.cal-day_schedule.free:hover {
  background-color: var(--jade80);
}

.cal-day_schedule.booked {
  background-color: var(--red);
}

.cal-day_schedule.booked:hover {
  background-color: var(--red);
  pointer-events: none;
}

.cal-day_schedule.morning {
  border-radius: 10px 0 0 10px;
  border-right: 1px solid white;
}
.cal-day_schedule.soir {
  border-radius: 0 10px 10px 0;
  border-left: 1px solid white;
}
.calendar .disabled-day {
  pointer-events: none;
}
.calendar .disabled-day .cal-day {
  background-color: var(--lter-gray);
  border: 1px solid var(--lter-gray);
}

.disabled-day .cal-day-schedules {
  display: none;
}
.disabled-day .cal-day_nb {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}


/*= MODAL BOX*/
.modal-wrapper{
  width: 360px;
  max-width: 90%;
}
.modal_content{
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  
}

.modal_content__button{
  width: 196px;
  max-width: 100%;
}

.calendar-legend-list-b{
  display: initial;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;

}
 .calendar-legend-list_li{
  padding: 15px;
  width: auto;
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width : 1025px){
  .calendar-legend-list-b{
    display: initial;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;

  }
   .calendar-legend-list_li{
    padding: 15px;
    width: auto;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
}
}


ul.calendar-days { 
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.calendar_week__day { 
	text-align: center !important;	
	margin-bottom: 10px;
}

.form-group#segment { display:block; margin-bottom:15px; width:540px; max-width:100%; height:40px; display:flex; }
.form-group#segment .control-label { display:block; margin-bottom:10px; flex:0 auto; padding-right:15px; height:40px; line-height:40px; margin:0; }
.form-group#segment .control { display:block; flex:1; }
.form-group#segment select { height:40px; line-height:40px; background:white; border-radius:20px; border:none; text-align:center; font-size:14px; outline:none; }
.form-group#segment select option { text-align:center; height:40px; line-height:40px; }

.bg-5 { background:url('./assets/images/ilotA-parking-not-selected.jpg') no-repeat; background-size:contain !important; background-position:bottom right !important; }

.img-wrapper.header-logo img {
  max-height: 110px;
  width: 7vw;
  height: 100%;
}

@media screen and (max-width: 1025px) {
  .img-wrapper.header-logo img {
    max-height: 80px;
    width: auto;
  }
}
.header-col-left .img-wrapper.header-logo:first-child { margin-left:30px; }

#logos-promoteurs li img { max-height:50px; }

@media screen and (min-width : 1025px){
		
		.calendar-legend-list { justify-content:center; }
		.calendar-legend-list .calendar-legend-list_li { margin-right:10px; }
		.calendar-legend-list .calendar-legend-list_li:last-child { margin-right:0; }
		
		.bg-5 { background-position:center !important; background-size:contain auto !important; }
		#mon-choix { box-shadow:0 0 10px rgba(0,0,0,0.35); }
		#mon-choix .left-col-c { width:50%; background-color:white; }
		#mon-choix .right-col-c { width:50%; padding-top:40px; padding-bottom:40px; }
		
}

@media screen and (max-width : 1024px){
	
		.jquery-modal > .modal { width:100%; }
		
		.bg-5 { background-position:center !important; background-size:100% auto !important; background-position:top center !important; }
	
}