:root {
  --main-border-color: #d9dee1;
  --main-color-grey: #889ca7;
  --secondary-color-grey: #e0e4e7;
  --color-red: #f60000;
  --color-green: #199900;
  --color-white: #ffffff;
  --color-black: #000000;
}

* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

html {
  height: 100%;
}

body {
  font-size: 15px;
  font-family: 'Roboto';
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  object-fit: contain;
  min-height: 100%;
  margin: 0;
  padding: 0 0 182px 0;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

p {
  position: relative;
}

.d-flex {
  display: flex;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}


.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.mt-0 {
  margin-top: 0
}

.mt-2 {
  margin-top: .5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-inh {
  margin-top: inherit;
}

.mt-ini {
  margin-top: initial;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: .5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-inh {
  margin-bottom: inherit;
}

.mb-ini {
  margin-bottom: initial;
}

.pt-2 {
  margin-top: .5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-inh {
  padding-top: inherit;
}

.pt-ini {
  padding-top: initial;
}

.pb-2 {
  padding-bottom: .5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-inh {
  padding-bottom: inherit;
}

.pb-ini {
  padding-bottom: initial;
}

.border-bottom {
  border-bottom: 1px solid var(--secondary-color-grey);
}

.no-border {
  border: none;
}

/**
* --------- TEXT ---------
*/

.text-condensed {
  font-family: 'Roboto Condensed', sans-serif;
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.text-underline {
  text-decoration: underline;
}

.page-title {
  font-size: 29px;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: normal;
  text-align: center;
  margin: 21px 0 12px;
  padding: 0.5em;
}

.text-small {
  font-size: 13px;
  line-height: 1.27;
  color: var(--main-color-grey);
}

.text-chapo {
  line-height: 1.46;
  padding-top: 10px;
  margin-top: 0;
}

.text-error {
  font-weight: normal;
  font-size: 13px;
  line-height: 1.2;
  color: #ff0000;
  margin-top: 10px;
}

ul.text-error {
  padding: 0;
  list-style: none
}

/* --- TEXTS'S COLORS --- */
.text-primary,
.text-important {
  color: var(--color-red);
}

.text-secondary {
  color: var(--main-color-grey);
}

.text-success {
  color: var(--color-green);
}

.text-dark {
  color: var(--color-black);
}


/* --- END TEXTS'S COLORS --- */

/* --- SPECIFICS TEXTS --- */

.text-passmedia {
  font-size: 13px;
  line-height: 1.38;
  text-align: center;
  color: #30bed4;
}

.text-securitySafe {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.08;
  color: var(--color-green);
  text-align: center;
  margin-bottom: 27px;
  position: relative;
}

.text-securitySafe-img {
  width: 9px;
  height: 11px;
  margin-right: 10px;
  position: absolute;
  bottom: 3px;
  left: 50px;
}

/*
* --------- END TEXT ---------
**/

/**
* --------- CONTAINERS ---------
*/

/**
* --- CONTAINER HEADER ---
*/

.container-header,
.container-header-center {
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 18px;
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 2;
}

.container-header {
  justify-content: space-between;
}

.container-header-center {
  justify-content: center;
  border-bottom: 1px solid #e0e4e7;
}

.container-header-img {
  display: block;
  width: 121px;
  height: 36px;
}

/*
* --- END CONTAINER HEADER ---
**/

/**
* --- CONTAINER BLOCK TITLE ---
*/

.container-linkTitle {
  display: flex;
  align-items: baseline;
  padding-left: 20px;
  padding-bottom: 22px;
  margin-left: -20px;
  margin-right: -30px;
}

.container-title {
  font-size: 20px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  margin-bottom: 0;
}

.container-title-img {
  width: 22px;
  height: 15px;
  margin-right: 18px;
}

/*
* --- END CONTAINER BLOCK TITLE ---
**/

/**
* --- CONTAINER BODY ---
*/

.container-body {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 60px;
}

.container-body-block {
  border-bottom: 1px solid var(--secondary-color-grey);
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 35px;
  margin-left: -30px;
  margin-right: -30px;
}

.container-body-block:first-child {
  padding-top: 1px;
  padding-bottom: 12px;
}

.container-body-block:last-child {
  /* padding-bottom: 45px; */
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.container-body-title {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
}

.container-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
* --- END CONTAINER BODY ---
**/

/**
* --- CONTAINER FOOTER ---
*/

.container-footer {
  object-fit: contain;
  background-color: #f6f8f9;
  border-top: 1px solid #e0e4e7;
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0
}

.container-footer-copyright {
  font-size: 11px;
  font-weight: normal;
  line-height: 1.82;
  color: var(--main-color-grey);
  margin-top: 15px;
}

/* LINKS FOOTER */
.container-footer-links {
  text-align: justify;
}

.container-footer-link {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.25;
  color: var(--main-color-grey);
  text-decoration: none;
  padding: 0 23px 0 0;
  margin: 0 0 10px;
}

/*
* --- END CONTAINER FOOTER ---
**/

/*
* --------- END CONTAINERS ---------
**/

/**
* --------- NAVIGATION MENU ---------
*/

.navbar {
  padding: 5px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  position: sticky;
  top: 76px;
  z-index: 1;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--secondary-color-grey);
}

.navbar-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  text-decoration: none;
}

.navbar-item {
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 23px;
  text-align: center;
  position: relative;
}

.navbar-item>a {
  padding-top: 15px;
  padding-bottom: 25px;
}

.navbar-item a {
  color: var(--main-color-grey);
  font-size: 15px;
  text-decoration: none;
}

.navbar-item a:active {
  color: var(--color-black);
  font-weight: bold;
  border-bottom: 2px solid var(--color-black);
}

/*.nav-item:has(> a:active) {
  border-bottom: 2px solid #000000;
} */

/*
* --------- END NAVIGATION MENU ---------
**/

/**
* --------- FORM ---------
*/

.form {
  margin-top: 32px;
}

.form .btn-block {
  margin-top: 35px;
}

/* --- FORM TEXTS ---*/

.form-text {
  font-size: 15px;
  line-height: 1.25;
  color: var(--color-black);
}

.form-text-bold {
  font-size: 13px;
  line-height: 1.25;
  color: var(--color-black);
  font-weight: bold;
  display: inline-block;
  margin-bottom: 6px;
}

.form-text-address {
  color: var(--color-black);
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 32px;
  width: 55%;
}

.form-text-address-society {
  display: block;
}

/* SPECIFICS FORM TEXTS */
.form-text-success {
  font-size: 13px;
  line-height: 1.25;
  color: #00a830;
}

.form-text-error {
  display: block;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.25;
  color: #ff0000;
  margin-top: 5px;
}

/* END SPECIFICS FORM TEXTS */

/* --- END FORM TEXTS ---*/


.form-input-field {
  width: 100%;
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid var(--main-border-color);
  padding: 13px 0px 13px 15px;
  background-color: initial;
}

.form-input-field--small {
  width: 85%;
  border-radius: 4px;
  border: 1px solid var(--main-border-color);
  padding: 13px 0px 13px 15px;
  font-size: 15px;
}

.form-input-field:focus,
.form-input-field--small:focus {
  border: 1px solid black;
  outline: none;
}

input.form-input-field::placeholder,
input.form-input-field--small::placeholder,
textarea.form-input-field::placeholder,
textarea.form-input-field--small::placeholder {
  font-family: 'Roboto';
  font-size: 15px;
  font-weight: normal;
  color: var(--main-color-grey);
}

select.form-input-field {
  color: var(--main-color-grey);
  background: url("https://cdn-lejdd.lanmedia.fr/var/ext/+compte/images/down-arrow.png") no-repeat right;
  background-size: 2.5%;
  -webkit-appearance: none;
  background-position-x: 95%;
}

/* INPUT DATE */

input.form-input-field[type="date"] {
  padding: 10px 0px 10px 15px;
}

input.form-input-field::-webkit-datetime-edit-fields-wrapper {
  text-transform: uppercase;
  font-size: 15px;
  font-family: 'Roboto';
}

input.form-input-field::-webkit-datetime-edit-text,
input.form-input-field::-webkit-datetime-edit-month-field,
input.form-input-field::-webkit-datetime-edit-day-field,
input.form-input-field::-webkit-datetime-edit-year-field {
  color: var(--main-color-grey);
}

/* END INPUT DATE */


/* RADIO BUTTON */
.form input[type=radio] {
  display: none;
}

.labelbutton {
  display: inline-block;
  border-radius: 4px;
  border: 1px solid var(--main-border-color);
  color: var(--main-color-grey);
  background-color: var(--color-white);
  margin: 0 10px 0 0;
  padding: 13px 16px 12px;
  cursor: pointer;
  object-fit: fill;
}

.form-group {
  margin: 0 0 19px 0;
}

.form-group label img {
  width: 35px;
}

.form-group input[type=radio]:checked~label {
  background-color: var(--main-color-grey);
  color: var(--color-white);
  border: 1px solid var(--main-color-grey);
}

.form-group>div div {
  margin-bottom: 11px;
}

.form-group>div.d-flex div {
  margin-bottom: 0;
}

/* END RADIO BUTTON */

.form-arrow {
  display: inline-block;
  background: url("https://cdn-lejdd.lanmedia.fr/var/ext/+compte/images/down-arrow.png") no-repeat;
  background-size: 60%;
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  left: 80px;
}

.form-arrow-reverse {
  display: inline-block;
  background: url("https://cdn-lejdd.lanmedia.fr/var/ext/+compte/images/up-arrow.png") no-repeat;
  background-size: 60%;
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  left: 80px;
}

/*
* --------- END FORM ---------
**/

/**
* --------- BLOCK BUTTONS ---------
*/

.btn {
  border-radius: 4px;
  border: none;
  color: var(--main-color-grey);
  font-family: 'Roboto';
  font-size: 15px;
  font-weight: bold;
  line-height: 1.87;
  text-align: center;
  cursor: pointer;
  padding-top: 9px;
  padding-bottom: 8px;
}

.btn:focus {
  outline: none;
}

.btn-primary {
  background-color: #f60000;
  color: var(--color-white);
}

.btn-secondary {
  background-color: rgba(136, 156, 167, 0.15);
  color: var(--main-color-grey);
}

.btn-light,
.btn-disabled {
  border: solid 1px #c8ced1;
  color: var(--main-color-grey);
  background: none;
}

.btn-action {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 8px;
  background-color: rgba(136, 156, 167, 0.15);
}

.btn-link {
  color: var(--main-color-grey);
  background: none;
  font-size: 13px;
}

.btn-edit {
  color: #fd001d;
  text-decoration: none;
  font-weight: normal;
  background: none;
  padding-right: 0;
}

.btn-close {
  color: var(--color-white);
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* BUTTONS'S SIZES */
.btn-block {
  display: block;
  width: 100%;
}

.btn-block:first-of-type {
  margin-top: 35px;
}

#acheter-le-journal-numerique .btn-block:first-of-type {
  margin: 15px 0 6px 0;
}

.btn-block+.btn-block {
  margin-top: .5rem;
}

/* --- SPECIFICS BUTTONS --- */

.btn-help {
  border-radius: 5px;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  font-size: 15px;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.6;
  color: var(--color-white);
  position: fixed;
  bottom: 33px;
  right: 12px;
  z-index: 2;
}

.btn-help--question-mark {
  font-size: 19px;
  line-height: normal;
  text-align: center;
  color: #f9f9f9;
}

.btn-subscribe {
  background-color: #ffc700;
  border: 0;
  padding: 4px 7px;
  font-size: 15px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-facebook {
  background-image: url('https://cdn-lejdd.lanmedia.fr/var/ext/+compte/images/picto-fb.png');
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 13% center;
  padding-left: 56px;
  padding-right: 31px;
  color: #757575;
  background-color: #eeeeee;
}

.btn-google {
  background-image: url('https://cdn-lejdd.lanmedia.fr/var/ext/+compte/images/picto-google.png');
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 13% center;
  padding-left: 56px;
  padding-right: 31px;
  color: #757575;
  background-color: #eeeeee;
}

.btn-passmedia {
  background-image: url('https://cdn-lejdd.lanmedia.fr/var/ext/+compte/images/picto-passmedia.png');
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 8% center;
  padding-left: 56px;
  padding-right: 31px;
  background-color: #30bed4;
  color: var(--color-white);
}

/*
* --------- END BLOCK BUTTONS ---------
**/

/**
* --------- TEXT ---------
*/

.text-condensed {
  font-family: 'Roboto Condensed', sans-serif;
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.text-underline {
  text-decoration: underline;
}

.page-title {
  font-size: 29px;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: normal;
  text-align: center;
  margin: 21px 0 12px;
}

.text-small {
  font-size: 13px;
  line-height: 1.27;
  color: var(--main-color-grey);
}

.text-chapo {
  line-height: 1.46;
  padding-top: 10px;
  margin-top: 0;
}

.text-error {
  font-weight: normal;
  font-size: 13px;
  line-height: 1.2;
  color: #ff0000;
  margin-top: 10px;
}

ul.text-error {
  padding: 0;
  list-style: none
}

/* --- TEXTS'S COLORS --- */
.text-primary,
.text-important {
  color: var(--color-red);
}

.text-secondary {
  color: var(--main-color-grey);
}

.text-success {
  color: var(--color-green);
}

.text-dark {
  color: var(--color-black);
}


/* --- END TEXTS'S COLORS --- */

/* --- SPECIFICS TEXTS --- */

.text-passmedia {
  font-size: 13px;
  line-height: 1.38;
  text-align: center;
  color: #30bed4;
}

.text-securitySafe {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.08;
  color: var(--color-green);
  text-align: center;
  margin-bottom: 27px;
  position: relative;
}

.text-securitySafe-img {
  width: 9px;
  height: 11px;
  margin-right: 10px;
  position: absolute;
  bottom: 3px;
  left: 50px;
}

/*
* --------- END TEXT ---------
**/

/**
* --------- BLOCK INFOS ---------
*/

.blockInfos {
  background-color: #f8fafc;
  border-radius: 8px;
  border: solid 1px #e0e4e7;
  margin-top: 32px;
  padding: 10px 20px 10px;
}

.blockInfos-row {
  display: block;
  border-bottom: solid 1px #e0e4e7;
  margin: 0 0 16px 0;
}

.blockInfos-row:last-child {
  border: none;
  margin-bottom: 0;
}

.blockInfos-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.blockInfos-section .text-important {
  width: 75%;
}

.blockInfos-image {
  display: block;
  margin: 28px auto 30px;
  max-width: 100%;
  height: 200px;
}

/* BLOCK INFOS TEXT */
.blockInfos-text-important {
  color: #f60000;
  display: block;
  margin-top: 6px;
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.2;
  text-align: center;
}

.blockInfos-text-large {
  font-size: 29px;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--color-black);
  margin: 20px 0 25px;
}

.blockInfos-text-medium {
  font-size: 13px;
  font-weight: normal;
  line-height: 1.25;
  color: var(--main-color-grey);
  margin: 0;
}

.blockInfos-text-small {
  display: block;
  font-size: 13px;
  font-weight: normal;
  line-height: 2.55;
  text-align: center;
  color: var(--main-color-grey);
}

.blockInfos-link {
  color: var(--color-black);
  text-decoration: underline;
}

/* --- SPECIFICS BLOCK INFOS TEXTS --- */

.blockInfos-text-detailPrice {
  display: block;
  font-size: 22px;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.27;
  text-align: center;
  color: var(--color-black);
  margin: 0;
}

.blockInfos-text-reduction {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.25;
  color: var(--color-black);
  margin: 0;
}

.blockInfos-smalltitle {
  line-height: 1.47;
  text-align: center;
  color: var(--main-color-grey);
}

.blockInfos-details {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.73;
  text-align: center;
  color: var(--color-black);
}

/* --- END SPECIFICS BLOCK INFOS TEXTS --- */

/* END BLOCK INFOS TEXT */

.blockInfos-arrow {
  display: block;
  background: url("https://cdn-lejdd.lanmedia.fr/var/ext/+compte/images/down-arrow.png") no-repeat;
  background-size: 60%;
  background-position: center;
  width: 16px;
  height: 16px;
  margin: auto;
  cursor: pointer;
}

.blockInfos-arrow-reverse {
  display: block;
  background: url("https://cdn-lejdd.lanmedia.fr/var/ext/+compte/images/up-arrow.png") no-repeat;
  background-size: 60%;
  background-position: center;
  width: 16px;
  height: 16px;
  margin: auto;
  cursor: pointer;
}

/*
* --------- END BLOCK INFOS ---------
**/

/**
* --------- BLOCK IOS BUTTON ---------
*/

.apple-switch-block {
  display: flex;
  align-items: start;
  margin-bottom: 27px;
}

.apple-switch-label {
  padding: 0 40px 0 0;
}

.apple-switch {
  position: relative;
  -webkit-appearance: none;
  outline: none;
  width: 56px;
  height: 24px;
  background-color: #ccc;
  border: 1px solid #ccc;
  border-radius: 50px;
}

.apple-switch:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  background: var(--color-white);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: all 0.3s ease-out;
}

.apple-switch:checked {
  box-shadow: inset 100px 0 0 0 #f60000;
  border-color: #f60000;
}

.apple-switch:checked:after {
  left: calc(100% - 20px);
  box-shadow: -2px 4px 3px rgba(0, 0, 0, 0.05);
}

/*
* --------- END BLOCK RADIO BUTTON IOS ---------
**/

/**
* --------- TOGGLE ---------
*/

.toggle-content {
  display: none;
  height: 0;
  overflow: hidden;
  transition: all 2s;
}

.toggle-content.is-visible {
  display: block;
  height: auto;
  margin-top: 10px;
}

/*
* --------- END TOGGLE ---------
**/

/**
* --------- TABLE ---------
*/


table {
  border-collapse: collapse;
  width: 100%;
}

table td {
  border-bottom: 1px solid #e0e4e7;
  font-size: 15px;
}

table tr td:last-child {
  text-align: right;
}

table tr:last-child td {
  border-bottom: none;
}

table td img {
  width: 25px;
  height: 25px;
  stroke: #ff0000;
}

/*
* --------- END TABLE ---------
**/

/**
* --------- DEFINITIONS ITEMS (<dl>, <dd>, <dt>) ---------
*/

.definitions-list {
  display: block;
  margin-block-start: 1em;
  margin-bottom: 38px;
}

.definitions-list-box {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -10px 0;
}

.definitions-list-box>* {
  flex: 1 1 140px;
  margin: 10px;
}

.definitions-list-box-img {
  width: 100%;
  margin-top: 5px;
}

.definitions-term {
  display: block;
  font-size: 13px;
  margin-bottom: 0;
}

.definitions-list .definitions-term {
  margin-block-start: 1em;
}

.definitions-description {
  margin-left: 0;
  margin-top: 0;
  line-height: 1.87;
}

/*
* --------- END DEFINITIONS ITEMS (<dl>, <dd>, <dt>) ---------
**/

/* SPECIFICS CLASS */

.card-number {
  display: block;
  margin-bottom: 0;
}

.subscriber-number {
  margin-top: 36px;
  font-size: 18px;
}

.ruban-infos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fd001d;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.85;
  color: var(--color-white);
  padding: 0 19px;
  margin-bottom: 19px;
  position: -webkit-sticky;
  position: sticky;
  top: 123px;
  z-index: 1;
}

.check {
  display: block;
  margin: 33px auto 42px;
  width: 65px;
  height: 65px;
}

.text-success.information {
  line-height: 1.6;
  margin-bottom: 29px;
}

.block-item {
  width: 50%;
  display: block;
  margin: 5px auto 0;
}

.block-item+.btn-block {
  margin-top: 25px;
  margin-bottom: 25px;
}

.form-group+#paymentMode {
  display: block;
  margin-top: 15px;
}

.blockInfos+.text-error {
  margin-top: 15px;
}

.blockInfos span .btn-block:first-of-type {
  margin-top: 0;
}

.page-title+.definitions-term {
  padding-top: 31px;
}

.container-linkTitle+.form {
  margin-top: 0;
}

/* SPECIFICS CLASS */

.additional-block {
  padding-top: 33px;
  text-align: center;
}

.container-body-block.additional-block p {
  margin: 0;
}

.center-block {
  display: block;
  margin: 0 auto;
}

/* SPECIFIC PAY PAGE */

#promoInputBlock {
  border-bottom: 1px solid var(--secondary-color-grey);
  margin-bottom: 24px;
  padding-bottom: 29px;
}

#cgvPart {
  display: block;
  border-bottom: 1px solid var(--secondary-color-grey);
  margin-bottom: 15px;
}

form#paymentform span#cgvPart .form-text-error {
  margin-bottom: 25px;
}

#cgvPart #check1 {
  width: 18%;
}
