@font-face {
  font-family: Poppins;
  src: url("/fonts/Poppins/Poppins-Regular.ttf");
  /*src: url("../fonts/pangeabasic-regular-webfont.ttf");*/
}


body {
  background-color: #FFFFFF;
  font-family: Poppins, sans-serif;
}

h1 {
  color: var(--color-second);
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 23px;
}

h2 {
  color: var(--color-second);
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 18px;
}

h3 {
  color: var(--color-second);
  font-family: Poppins, sans-serif;
  font-weight: bold;
}

a,
b,
.bold {
  font-family: Poppins, sans-serif;
  font-weight: bold;
}

#back-button {
  margin: 0px;
}

#back-button a,
#back-button i {
  color: var(--color-second);
  font-family: Poppins, sans-serif;
  font-weight: bold;
  padding-left: 0;
}

#back-button i {
  -webkit-text-stroke: 2px;
}

#content {
  background-color: transparent;
}


.reservation-element {
  width: 60vw;
}

.menu-lang-button .bi-chevron-down {
  -webkit-text-stroke: 2px;
}

.menu-lang-button .bi-globe {
  margin-right: 2px;
}

#current-lang {
  color: #000000;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-right: 2px;
}

.menu-lang-button {
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #fefefe;
  margin-top: 0px;
}

.menu-lang-content {
  border: 0;
  background-color: #fefefe;

}

.lang-card {
  align-items: var(--align-lang-back-button);
}

.lang-card-element {
  min-width: 0;
  width: fit-content;
  height: fit-content;
  min-height: 13px;
  align-self: flex-start;
}

.header_separator {
  display: none;
}

#header-logo {
  margin: auto;
  height: 165px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  background-image: url("/images/neuchatel/logo.png"),
    url("/images/neuchatel/background_pattern.png");
  background-repeat: no-repeat, repeat;
  background-size: contain, contain;
  background-position-y: center, center;
}


#header-logo-mobile {
  display: none;
}


.header-title {
  margin: 0;
  color: #000000;
  font-weight: bold;
  font-size: 40px;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  min-width: 0;
}

.header-title-mobile {
  display: none;
}

.header-title-desktop {
  font-size: 30px;
  color: #000000;
  line-height: 43px;
  width: 100%;
}

.header-body {
  width: 60vw;
  min-width: 0px;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.header-body-element {
  margin: 0px;
}

#breadcrump-lang-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;

}


/**  BREADCRUMB  **/
#breadcrumb {
  --bubble: 60px;
  --line-thickness: 3px;
  --line-color: #d9d9d9;
  --line-active: #E13737;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 24px 6px;
  width: 50vw;
  min-width: 300px;
  margin-bottom: 40px;
}

/* ------------------------------
   STEP
--------------------------------*/
#breadcrumb .breadcrumb_step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--bubble);
}

#breadcrumb .breadcrumb_step p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Text */
#breadcrumb .breadcrumb_text_desktop {
  margin-top: 8px;
  font-size: 13px;
  color: #bdbdbd;
  text-align: center;
  line-height: 1.1;
  width: 90px;
}

#breadcrumb .breadcrumb_text_mobile {
  display: none;
}

#breadcrumb .breadcrumb_dot {
  display: none !important;
}

/* Number bubble */
#breadcrumb .breadcrumb_number {
  width: var(--bubble);
  height: var(--bubble);
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 20px;
  color: #bdbdbd;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  position: relative;
  z-index: 3;
  /* important: above lines */
}

/* Background images (adapt if theme changes) */
#breadcrumb>.breadcrumb_step:first-child .breadcrumb_number {
  background-image: url("/images/neuchatel/breadcrump_start.png");
}

#breadcrumb>.breadcrumb_step:last-child .breadcrumb_number {
  background-image: url("/images/neuchatel/breadcrump_end.png");
}

#breadcrumb>.breadcrumb_step:not(:first-child):not(:last-child) .breadcrumb_number {
  background-image: url("/images/neuchatel/breadcrump_middle.png");
}

/* Active + previous */
#breadcrumb .breadcrumb_active .breadcrumb_number,
#breadcrumb .breadcrumb_prev_active .breadcrumb_number {
  color: #fff;
}

#breadcrumb .breadcrumb_active .breadcrumb_number::after,
#breadcrumb .breadcrumb_prev_active .breadcrumb_number::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--line-active);
  z-index: -1;
}

#breadcrumb .breadcrumb_active .breadcrumb_text_desktop {
  color: #111;
  font-weight: 600;
}

/* ------------------------------
   SEPARATOR (always grey + red overlay)
--------------------------------*/

/* neutralize legacy content (img + fill span) */
#breadcrumb .breadcrumb_separator {
  color: transparent !important;
  font-size: 0 !important;
  margin-left: -25px;
  margin-right: -25px;
}

#breadcrumb .breadcrumb_separator img,
#breadcrumb .breadcrumb_separator_fill {
  display: none !important;
}

/* The separator takes the bubble height so the line can be perfectly centered */
#breadcrumb .breadcrumb_separator {
  flex: 1 1 0;
  width: auto;


  height: var(--bubble);
  position: relative;
  z-index: 1;
  /* behind the circles */
  margin-top: 0px;
  align-self: normal;
}


#breadcrumb .breadcrumb_separator_active {
  /* margin-left: -25px;
    margin-right: -25px; */
}

/* Grey line (always present) */
#breadcrumb .breadcrumb_separator::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  height: var(--line-thickness);
  background: transparent;
  margin-left: 25px;
  margin-right: 25px;
  border-top: 1px solid var(--line-color);
}

/* Red overlay line (only when active) */
#breadcrumb .breadcrumb_separator::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  top: 63%;

  height: var(--line-thickness);
  background: transparent;
  margin-left: 25px;
  margin-right: 25px;
  border-top: 1px solid var(--line-color);
}



#breadcrumb .breadcrumb_separator_active .breadcrumb_separator_fill {
  display: block !important;
  height: 10px;
  width: 100%;
  background-color: var(--line-active);
  margin-top: calc((var(--bubble) / 2) - 4px);
  left: -10px;
  position: relative;
}


/**
* NO RESERVATION
**/
#noReservation
{
  background-color: var(--color-second-light);
  padding: 50px;
  border-radius: 8px;
  
}



/**
* ERROR BANNER
**/
.error-banner
{
	background-color: #FFBDB7;
	color: #000000;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid #E10B16;
	margin-bottom: 20px;
}

.success-banner
{
	background-color: #b7ffbb;
	color: #000000;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid #0be140;
	margin-bottom: 20px;
}

/**
* HOME
**/

.home-content
{
  display : none;
}


/* .card-and-discount-en {
  background-image: url("../images/neuchatel/logo_complet_noir.png");
}

.card-and-discount-fr {
  background-image: url("../images/neuchatel/logo_complet_noir.png");
}

.card-and-discount-de {
  background-image: url("../images/neuchatel/logo_complet_noir.png");
} */

/* #card-and-discount {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../images/neuchatel/logo_complet_noir.png");
  margin: auto;
  width: 150%;
  height: 100px;
} */


.left-body-panel {
  margin-right: 60px;
  width: 50%;
}

#available-card-management {
  border-bottom: 0px;
  align-items: center;
}

#available-card-text {
  padding-left: 25px;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 20px;
}

#available-card-quantity {
  font-family: Poppins, sans-serif;
  font-weight: bold;
}

#children-management {
  background-color: #ffffff;
  border-radius: 0 0 25px 25px;
  flex-direction: column;
  box-shadow: 0px 5px 20px #0D447B33;
}

#children-count-management {
  padding: 15px;
  align-items: center;
}

#children-count-management p {
  color: var(--color-main);
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: var(--font-size-16);
  line-height: 24px;
  max-width: 70%;
}

.number-children-text {
  font-size: 16px;
  padding-left: 10px;
  padding-right: 10px;

}

#children-management-info-block {
  width: 90%;
  background-color: #E5F0EC;
  border-radius: 5px;
  padding: 10px;
}

#children-management-info-block p {
  margin: 0;
  margin-left: 15px;
}

#children-management-info-block i {
  font-size: 16px;
}


.info-children-text {
  font-size: 14px;
}

#traveler-segmentation {
  background-color: #FFFFFF;
}

#traveler-type {
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 20px;
}

#translation_traveler_type {
  font: normal normal bold 25px/28px Poppins;

}

#translation_type_leisure,
#translation_type_business {
  font: normal normal bold 25px/28px Poppins;
  letter-spacing: 0px;
  color: #000000;
}

#translation_type_leisure span,
#translation_type_business span {
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  font-family: Poppins;
  letter-spacing: 0px;
  color: #000000;
}

.traveler-text {
  width: 50%;
  min-width: 300px;
}

#children-activation {
  display: flex;
  flex-direction: row;
  width: 90%;
  justify-content: space-between
}

.children-radio-buttons,
.traveler-type-radio-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  margin-right: 20px;
}

.traveler-type-radio-buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

#additional-infos {
  display: flex;
  background-color: #E2E6E9;
  margin-bottom: 20px;
  border-radius: 8px;
}

.body-panel {
  margin: 50px;
}


#cards-container {
  background-color: #E2E6E9;
  border-radius: 8px;
  width: auto;
}

#content-process-card, #content-webapp {
  background-color: #E2E6E9;
  padding: 50px;
  border-radius: 8px;
  margin: auto;
  margin-bottom: 20px;
}

#content-send-card {
  background-color: #E2E6E9;
  padding: 50px;
  border-radius: 8px;
  box-sizing: border-box;
}

.card-guest-header {
  font: normal normal bold 18px/21px Poppins;
  letter-spacing: 0px;
  color: #000000;
}

#content-send-card .card-guest-header {
  display: none;
}


.card-guest {
  box-sizing: border-box;
  box-shadow: 2px 2px 6px #00000040;
  flex: 0 1 300px;
  background-color: #FFFFFF;
  border-radius: 0px;
  min-width: 300px;
  --all: 0px;
  --top-right: 45px;
  padding: 15px;
  color: #fff;
  background:
    linear-gradient(45deg, #ffffff 0 calc(var(--bottom-left, var(--all)) + 8px), transparent 0) bottom left /50% 50%,
    linear-gradient(-45deg, #ffffff 0 calc(var(--bottom-right, var(--all)) + 8px), transparent 0) bottom right/50% 50%,
    linear-gradient(135deg, #ffffff 0 calc(var(--top-left, var(--all)) + 8px), transparent 0) top left /50% 50%,
    linear-gradient(-135deg, #ffffff 0 calc(var(--top-right, var(--all)) + 8px), transparent 0) top right /50% 50%,
    var(--img, #ffffff);
  background-origin: border-box;
  background-repeat: no-repeat;
  -webkit-mask:
    linear-gradient(45deg, transparent 0 var(--bottom-left, var(--all)), #fff 0) bottom left,
    linear-gradient(-45deg, transparent 0 var(--bottom-right, var(--all)), #fff 0) bottom right,
    linear-gradient(135deg, transparent 0 var(--top-left, var(--all)), #fff 0) top left,
    linear-gradient(-135deg, transparent 0 var(--top-right, var(--all)), #fff 0) top right;
  -webkit-mask-size: 50.5% 50.5%;
  -webkit-mask-repeat: no-repeat;

}

.card-guest-header {

  background: #FFFFFF;
  color: #000000;
}

.card-guest-content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: stretch;
}


.create-card-guest-body,
.send-card-guest-body {
  box-shadow: none;
}

.create-card-guest-body input[type=text],
input[type=email],
input[type=date] {
  background: #ECF0F3 0% 0% no-repeat padding-box;
  border-radius: 5px;
}

.input-field:first-child {
  margin-bottom: 15px;
}


.firstname-label,
.name-label {
  display: none;
}


.input-field label {
  margin-left: 10px !important;
  color: #000000;
  font: normal normal medium 14px/21px Poppins;
}

.birthdate-label {
  height: 30px !important;
  font: normal normal medium 14px/21px Poppins;
  letter-spacing: 0px;
  color: #000000;
}

.birthdate-label .label-style {
  position: initial !important;
  background: none !important;
}

#content-create-card
{
  padding: 50px;
}

.content-create-card-buttons {
  margin: auto;
  margin-top: 30px;
}

select {
  appearance: none;
  width: 85%;
  margin: 0px;
  max-width: 100%;
  margin-bottom: 20px;
}


#segmentation-management {
  position: relative;
  width: 95%;
}


#segmentation-management::after {
  content: "<";
  font-size: 1.5rem;
  rotate: -90deg;
  transform: translate(-50%);
  position: absolute;
  bottom: 35%;
  right: 9%;
}


#info_asterix {
  text-align: center;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  font-family: Poppins;
  letter-spacing: 0px;
  color: #6A6E71;
  margin-top: 20px;
}


.children-radio-buttons label,
.traveler-type-radio-buttons label {
  margin-left: 5px;
  margin-bottom: 0px;
  font-size: 16px;
}

.children-buttons {
  height: 40px;
  justify-content: space-around;
  width: auto;
}


.children-quantity {
  border-left: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  margin: 0;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  width: 15px;
  justify-content: center;
}

#removeChildButton i,
#addChildButton i {
  color: var(--color-main);
  padding-left: 10px;
  padding-right: 10px;
}


#removeChildButton,
#addChildButton {
  display: flex;
  justify-content: center;
}

input[type="date"] {
  vertical-align: middle;
}

input[type='radio'] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: small-caption;
  color: currentColor;
  width: 25px;
  height: 25px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  outline: none;
  flex: 1 0 auto;
}

input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--color-button-primary);
  outline: 0px;
}

input[type="radio"]:focus {
  outline: 0px;
}

input[type="radio"]:checked:focus {
  outline: 0px;
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

.child-radio-button,
.traveler-type-radio-button {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  min-width: 100px;
}


.children-text,
.traveler-text {
  font-family: Poppins, sans-serif;
  font-weight: bold;
  color: #000000;
  font-size: 23px;
  line-height: 24px;
}


.children-text {
  padding-left: 0px;
}

#no-children-managment-block {
  width: 90%;
}

.action-button {
  color: white;
  border: 0;
  width: 100%;
  height: 42px;
  font-size: 16px;

  background: var(--color-button-primary) 0% 0% no-repeat padding-box;
  box-shadow: 2px 2px 4px #00000040;
  border-radius: 22px;
}

.action-button:hover {
  background-color: var(--color-button-hover);
  color: var(--color-button-primary);
  border: 1px solid var(--color-button-primary);
}

.enabled-action-button {
  background-color: var(--color-button-primary);
  color: white;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  border: 0;
  width: 100%;
  height: 42px;
  border-radius: 50px;
  font-size: 16px;
}


.enabled-action-button#subscribe-newsletter-button {
  background-color: white;
  color: var(--color-button-primary);
}

.enabled-action-button:hover {
  background-color: #ffffff !important;
  color: #282828;
  border: 1px solid #282828;
  font-family: Poppins, sans-serif;
  font-weight: bold;
}


#discover-resort-pass-button:hover,
#download_cards:hover,
#webapp-button-with-lang:hover {
  background-color: var(--color-button-hover) !important;
}

#discover-resort-pass-button:active,
#webapp-button-with-lang:active {
  background-color: #282828 !important;
  color: white;
}


#discover-resort-pass-button-2:active {
  background-color: #282828 !important;
  color: white;
}

.disabled-action-button {
  background-color: #A8A8A8;
  color: white;
  height: 42px;
  border-radius: 50px;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 16px;
}

#start-button-section {
  margin-bottom: 20px;
}


.right-body-panel {
  width: 100%;
  max-width: none;
}

.right-body-panel-content {
  background-color: #fefefe;
  border-radius: 25px;
  color: #000000;
  padding: 15px 20px 20px 20px;
  display: flex;
  width: 100%;
  height: fit-content;
  justify-content: space-between;
}

.right-block-side-image p {
  margin: 0;
}

.right-block-side-image img {
  max-width: 80%;
  float: right;
}

.left-body-panel-desc {
  color: #282828;
  padding-right: 20px;
  padding-top: 5px;
  min-width: auto;
  font-size: 16px;
  line-height: 24px;
}

.moreinfo-button,
.lessinfo-button {
  color: var(--color-button-secondary);
  padding-left: 0px;
  border: 0;
  background: none;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-align: left;
}

.moreinfo-button:hover,
.lessinfo-button:hover {
  background: none;
}

.moreinfo-button i,
.lessinfo-button i {
  padding-right: 10px;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  -webkit-text-stroke: 2px;
}


#modal-more-info {
  margin: 0;
  background-color: #fefefe;
  border-radius: 0 0 25px 25px;
  position: relative;
  top: -32px;
  box-shadow: none;
  padding: 0;
  padding: 20px;
  border: 0px;
  width: 100%;
}

#modal-more-info #translation_issued_by {
  font-size: var(--font-size-12);
}

#modal-more-info p,
#modal-more-info h2 {
  font-size: var(--font-size-16);
}

#modal-more-info p {
  line-height: 24px;
}


#right-block-desc {
  width: 70%;
}

.card-guest-header {
  border-radius: 20px 20px 0 0;
  font-size: 18px;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  height: 50px;
  padding-top: 0;
}

.card-guest-body {
  border-radius: 0 0 20px 20px;
}



.card-guest-header p {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 16px;
}

#translation_all_infos_correct {
  font-size: 16px;
}

.guest-number {
  padding-left: 5px;
}

input[type=text],
input[type=email],
input[type=date] {
  background: #ECF0F3 0% 0% no-repeat padding-box;
  border-radius: 5px;
  margin-bottom: 5px;
  color: black;
  /* border: 0px; */

}




#mail-to-send-all-cards {
  border-radius: 8px;
  padding: 15px;
  color: black;
  background-color: #FFFFFF;
}

.send-card-to,
.send-card-to-name {
  color: black;
  font-family: Poppins, sans-serif;
  font-weight: bold;

}

.content-card {

  border-radius: 8px;
}


.send-all-guest-card-to-one-mail {
  max-width: 100%;
}


.processing-blue-text {
  color: var(--color-second);
  font-family: Poppins, sans-serif;
  font-weight: bold;
}

.processing-green-text {
  color: var(--color-main);
  font-family: Poppins, sans-serif;
  font-weight: bold;
}


.process-pdf-loading-block,
.process-pdf-fail-block {
  border-radius: 15px;
}

.process-pdf-loading-block {
  --all: 0px;
  --top-right: 45px;
  padding: 25px 25px 5px 25px;
  color: #000;
  border: 8px solid var(--color-main);
  background:
    linear-gradient(45deg, var(--color-main) 0 calc(var(--bottom-left, var(--all)) + 8px), transparent 0) bottom left /50% 50%,
    linear-gradient(-45deg, var(--color-main) 0 calc(var(--bottom-right, var(--all)) + 8px), transparent 0) bottom right/50% 50%,
    linear-gradient(135deg, var(--color-main) 0 calc(var(--top-left, var(--all)) + 8px), transparent 0) top left /50% 50%,
    linear-gradient(-135deg, var(--color-main) 0 calc(var(--top-right, var(--all)) + 8px), transparent 0) top right /50% 50%,
    var(--img, #fff);
  background-origin: border-box;
  background-repeat: no-repeat;
  -webkit-mask:
    linear-gradient(45deg, transparent 0 var(--bottom-left, var(--all)), #fff 0) bottom left,
    linear-gradient(-45deg, transparent 0 var(--bottom-right, var(--all)), #fff 0) bottom right,
    linear-gradient(135deg, transparent 0 var(--top-left, var(--all)), #fff 0) top left,
    linear-gradient(-135deg, transparent 0 var(--top-right, var(--all)), #fff 0) top right;
  -webkit-mask-size: 70% 50.5%;
  -webkit-mask-repeat: no-repeat;
  border-radius: 0px;
}

#translation_fail_processing_cards_info,
#translation_processing_cards_info {
  color: #727272;
}


.content-deliverycards-body
{
  background-color: #E2E6E9;
  border-radius: 8px;
  padding: 50px;
  margin-bottom: 20px;
}

.content-deliverycards-body #right-panel
{
  border-radius: 8px;
  background-color: #ffffff;
  padding: 10px;
}

.newsletter-right-body-panel img {
  width: 20vw !important;

}

.newsletter-right-body-panel {
  /*margin-top: 40px;*/
  justify-content: center;
  /*margin-left: 30px;*/
}

#newsletter-box {
  background-color: var(--color-button-primary);
  ;
  padding: 30px 20px;
  border-radius: 20px;
  left: -20px;
  position: relative;
  width: 100%;
  /* margin-top: 40px;*/
}


#newsletter-right-image {
  margin-top: 100px;
  margin-left: 50px;
}

#newsletter-right-image img {
  max-width: 300px;
}


#translation_wish_you_great_time {
  color: var(--color-second);
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 20px;
}

.newsletter-left-body-panel {
  width: 100%;
  max-width: 90%;
}

.newsletter-left-body-panel .title-checkspam {
  color: var(--color-second);
  font-size: 20px;
  margin-top: 0;
}



.title-newsletter,
.newsletter-right-body-panel {
  margin-bottom: 22px;
  margin-top: 0px;
}

#subscribe-newsletter-button {
  max-width: 250px;
}

#translation_checkbox_newsletter_text,
#translation_checkbox_specialoffer_text {
  font-family: Poppins, sans-serif;
  font-weight: bold;
}

#mail-subscribe {
  border: 0px;
  color: black;
  height: 42px;
  max-width: unset;
  margin-top: 0px;
}

#translation_checkbox_newsletter_subtext,
#translation_checkbox_newsletter_text {
  font-size: 16px;
}

#webapp-button-with-lang {
  background-color: var(--color-button-primary);
  font-family: Poppins, sans-serif;
  font-weight: bold;
  height: 48px;
  max-width: 360px;
}

#download_cards {
  background-color: transparent;
  color: var(--color-second);
  border: 2px solid var(--color-second);
  font-family: Poppins, sans-serif;
  font-weight: bold;
  height: 48px;
  max-width: 360px;
}

#discover-resort-pass-button {
  color: var(--color-second);
  border: 2px solid var(--color-second);
  font-family: Poppins, sans-serif;
  font-weight: bold;
  height: 48px;
  max-width: 360px;
}

input[type=checkbox] {
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  -ms-appearance: checkbox !important;
  -o-appearance: checkbox !important;
  appearance: checkbox !important;
  width: 20px;
  height: 20px;
}

input[type=checkbox]:before {
  font-family: initial;
  content: normal;
  font-size: 15px;
  color: black;
  display: block;
  margin-right: 0px;
  border: 2px solid var(--color-second);
  border-radius: 3px;
  width: 20px;
  height: 20px;
}


.reservation-element {
  display: flex;
}

.reservation-left {
  width: 100%;
}


#translation_your_reservation {
  font-family: Poppins, sans-serif;
  font-weight: bold;
  color: #000000;
}

.reservation-item {
  color: #000000;
  padding-bottom: 0px;
}

#translation_copyright {
  font: normal normal medium 18px/24px Poppins;
  letter-spacing: 0px;
  color: #000000;
}

#footer {
  width: 60vw;
}

#footer-links a {
  font-family: Poppins, sans-serif;
}


.content-process-card-body {
  width: 100%;
  justify-content: space-around;
}

/* #subscribeNews,
#subscribeSpecialOffer {
  background-color: white;
  border: 0px;
  border-radius: 7px;
} */



#subscribeNews::before,
#subscribeSpecialOffer::before {
  border: 0px;
  width: 25px;
  height: 25px;
  margin: 0;
}


.newsletter-right-body-panel-done {
  margin-top: 40px;
  text-align: center;
}


.newsletter-blue-text {
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 20px;
}

#newsletter-first-block {
  display: flex;
  align-items: center;
}

#newsletter-first-blocks {
  width: 60%;
}

.title-newsletter,
#translation_well_done,
.newsletter-left-body-panel h3 {
  width: 100%;
}

#newsletter-second-block {
}

.image-desktop {
  display: inline;
  height: fit-content;
}

.image-mobile {
  display: none;
}


#discover-resort-pass-button-2 {
  padding: 0 20px;
  max-width: fit-content;
}


#footer img {
  margin-bottom: 47px;
  height: 57px;
  width: fit-content;

}






@media (max-width: 1700px) {
  .header-title-desktop {
    width: 100%;
  }
}


@media (max-width: 1200px) {
  #header-logo {
    height: 90px;
  }

  .header-title-desktop {
    width: 100%;
  }


  #process-right-body-panel {
    display: none;
  }
}

@media (max-width: 800px) {

  h2 {
    font-size: 16px;
  }

  /* #header-logo {
    display: none;
  } */


  #header-logo-mobile {
    display: flex;
    margin: auto;
    height: 165px !important;
    margin-bottom: 15px;
    justify-content: center;
    background-image: url("/images/neuchatel/logo.png"),
      url("/images/neuchatel/background_pattern.png");
    background-repeat: no-repeat, repeat;
    background-size: 50%, contain;
    background-position-y: center, center;
    background-position-x: center, center;
  }

  #header-logo-mobile img {
    max-width: 100%;
    width: 100%;
  }

  .header-body {
    width: 90vw;
    margin-bottom: 30px;
    margin-top: 0;
    margin-top: 10px;
  }

  .header-title-mobile {
    font-size: 19px;
    line-height: 26px;
    width: 100%;
    margin-top: 30px;
  }


  .header-title-desktop {
    display: none;
  }

  .header-body-element {
    margin-bottom: 0;
  }

  .lang-card {
    justify-content: space-between;
    flex-direction: var(--mobile-direction-lang-back-button);
    align-self: flex-center;
    margin-top: 5px;
  }

  .lang-card-element {
    width: fit-content;
  }

  .language-selector {
    width: fit-content;
  }

  .menu-lang-button {
    margin-top: 0px;
  }


  .header_separator {
    width: 95vw;
    display: none;
  }


  #available-card-text {
    font-size: 16px;
  }

  #available-card-quantity {
    margin: 0;
    font-size: 20px
  }



  .children-text {
    width: 100%;
  }

  #start-button-section {
    width: 90%;
  }


  .right-body-panel img {
    width: 100px;
  }

  .right-body-panel-content {
    min-width: 0;
    align-items: center;
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }

  #right-block-desc {
    width: 60%;
    padding: 20px 10px 20px 20px;
  }

  .left-body-panel-desc {
    min-width: 0;
    padding: 0;
  }

  .content-card {
    padding: 20px !important;
  }


  .moreinfo-button,
  .lessinfo-button {
    font-size: 16px;
  }



  #button-more-info i #button-more-info {
    font-size: 18px;
  }



  #footer img {
    max-width: 50%;
    width: auto;
  }

  h1 {
    font-size: 20px;
  }

  h3 {
    font-size: 20px;
  }


  .card-guest {
    width: auto;
    max-width: 100%;
  }


  .body-panel {
    width: 90vw;
    margin: 10px;

  }



  .left-body-panel {
    margin-right: 0px;
  }

  .right-block-side-image img {
    margin-right: 20px;
  }


  #additional-infos {
    flex-direction: column;
  }

  #cards-container {
    padding: 10px;
  }



  #validate-card-button,
  #send-card-button {
    width: 100%;
  }



  #translation_traveler_type {
    font: normal normal bold 18px/20px Poppins;

  }

  #translation_type_leisure,
  #translation_type_business {
    font: normal normal bold 18px/20px Poppins;
    letter-spacing: 0px;
    color: #000000;
  }

  .traveler-type-radio-buttons {
    flex-direction: column;
  }


.content-deliverycards-body
{
  padding: 0px !important;
  width: 100vw;
}

  /**
* NEWSLETTER 
**/


  #subscribe-newsletter-button {
    max-width: 90vw;
  }

  .newsletter-right-body-panel {
    height: fit-content;
  }

  .newsletter-right-body-panel img {
    width: 90vw !important;
    max-width: 90vw !important;
    height: auto;

  }

  #newsletter-right-image {
    margin-top: 30px;
    margin-left: 0px;
  }

  #newsletter-first-blocks {
    width: 100%;
  }


  #newsletter-second-block {
    margin-left: 20px;
    width: 95%;
  }

  #discover-resort-pass-button,
  #webapp-button-with-lang {
    min-width: 100px;
  }

  .title-newsletter,
  .newsletter-right-body-panel {
    margin-top: 20px;
    margin-bottom: 20px;
    width: auto;
  }

  #translation_sending_by_mail_prior_arrival_news,
  .title-checkspam {
    display: inline-block;
    font-size: 16px;
  }

  .newsletter-left-body-panel h3 {
    padding: 5px 20px;
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
  }

  .title-checkspam {
    padding: 5px 20px;

  }

  #translation_checkspam {
    font-size: 16px;
    line-height: 20px;
  }

  #newsletter-box {
    width: 100vw;
    position: static;
    left: 0;
    padding: 0;
    border-radius: 0;
    margin-top: 20px;
  }

  #newsletter-box-inner {
    padding: 20px;
  }

  #newsletter-first-block {
    flex-direction: column;
  }


  .newsletter-left-body-panel h3 {
    margin-bottom: 0;
  }

  .newsletter-left-body-panel-done {
    padding-left: 20px;
  }

  .newsletter-blue-text {
    margin-top: 20px;
    margin-right: 20px;
  }

  #translation_sending_by_mail_prior_arrival_news {
    padding-top: 0;
  }

  .title-checkspam {
    padding-top: 0;
  }


  .image-desktop {
    /*display: none;*/
  }

  .newsletter-right-body-panel {
    /*  display: none;*/
    margin-left: auto;
  }

  .image-mobile {
    display: none;
  }

  .reservation-element,
  #footer {
    width: 85vw;
    display: flex;
    flex-direction: column;

  }

  .reservation-element #card-and-discount {
    width: 100%;
  }

  #translation_copyright {
    font-size: 12px;
  }


}