* {
  box-sizing: border-box;
}

body,
html,
.btn {
  margin: 0;
  /* height: 100%; */
  font-family: "Raleway", sans-serif;
}

body {
  padding: 0;
}

.container {
  /* display: flex; */
  height: 100vh;
  background-color: #faeade;
}

h4 {
  font-size: 21px;
  margin-top: 16px;
}

.left-side {
  width: 45%;
  background-size: cover;
  background-position: center;
  position: fixed;
  height: 100%;
  top: 0;
  padding: 2%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

.logo {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.flavie {
  background-color: #faf49b;
  border-radius: 50px;
  color: #252625;
  padding: 4px 10px;
  font-size: 14px !important;
  display: inline-block;
}

.left-side h1 {
    font-size: 4vw;
    font-weight: 900;
    line-height: 4.25vw;
    font-family: "Montserrat";
}

/* Left side overlay stuff */
.left-side::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Ensure elements inside .left-side are positioned above the overlay */
.left-side * {
  /* position: relative; */
  z-index: 2;
}

/* End of overlay stuff */

.left-side p {
  font-size: 1.5rem;
  font-weight: 400;
}

.right-side {
  width: 48%;
  margin-left: 50%;
  overflow-y: auto;
  background-color: #faeade;
  height: 100vh;
  padding-top: 2%;
  margin-right: 2%;
}

.md_light_body {
  background-color: #faf6f0;
  padding: 3%;
  min-height: 79vh;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.right-side::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.right-side {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.padded-content {
  padding: 7% 7% 0 7%;
  border-radius: 0 30px 0 0;
  background-color: #faf6f0;
  min-height: 97vh;
}

.tabs {
  display: flex;
  background-color: #faeade;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}

.tab {
  padding: 30px;
  height: 80px;
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #f5d8bf;
  border: 1px solid #00000000;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1.2rem;
  font-weight: 700;
  border-radius: 20px 20px 0 0;
}

.tab.active {
  background-color: #f5f5f5;
  border-bottom: none;
}

.tab:not(.active) {
  border: none;
  margin-left: 6px;
}

.tab_before_active {
  background-image: url(https://assets-can.mkt.dynamics.com/c7fbd890-d8fd-4b56-8a02-eaeabdbd601a/digitalassets/images/d5340a2e-1e7f-ee11-8179-0022483d07d3?ts=638351446194794579);
  background-repeat: no-repeat;
  background-position: bottom right;
}

.tab a {
  color: #f25129;
  text-decoration: none;
}

.active + .tab {
  background-repeat: no-repeat;
  background-position: bottom left;
  margin-left: 10px;
}

.donation-option {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #252625 !important;
  background-color: #faf6f0;
  margin: 10px 0;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1.2em;
  color: #252625;
  font-weight: 600;
}

.other-donation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 0px;
  font-weight: 600;
  font-size: 1.2em;
}

.other-donation input {
  flex: 1;
  font-size: 1em;
  height: 50px;
  padding: 10px 10px 10px 80px;
  color: #252625;
  font-weight: 400;
  border: 2px solid #252625;
  border-radius: 50px;
  background-color: #faf6f0;
}

.md_dollar__sign {
  font-size: 1em;
  color: #252625;
  font-weight: 600;
  margin-right: 10px !important;
  right: 0;
  background-color: #faf6f0;
  margin-left: -25px;
}

.md_blue__block {
  background-color: #252625;
  height: 50px;
  padding: 0 30px;
  margin-right: -60px;
  z-index: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1em;
  color: white;
  font-weight: 400;
  border-radius: 50px;
}

.next-button {
  width: 100%;
  padding: 12px;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
}

.toggle-button {
  display: flex;
  border: 1px solid #ccc;
  overflow: hidden;
}

.toggle-button button {
  flex: 1;
  padding: 10px 15px;
  background: #f2f2f2;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-button button.active {
  background: white;
  color: #fff;
}

/* Dropdown styling */
select {
  width: 100%;
  padding: 10px;
  height: 50px;
  margin-bottom: 10px;
  border: 2px solid #252625;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1em;
  background-color: #faf6f0;
}

/* Consent styling */
.consent {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.consent input[type="checkbox"] {
  margin-right: 10px;
}

/* Tabs */
/* .tab {
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px solid #ccc;
} */

.tab.active {
  background: #faf6f0;
}
.tab.active a {
  background: #faf6f0;
  color: #252625;
}

.step-number {
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
}

.step-indicators {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dedde2;
  font-size: 1.1em;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.step-circle.active {
  background-color: #252625;
  color: #fff;
}

.recap-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.recap-section h3 {
  margin-top: 0;
  color: #333;
  font-size: 20px;
}

.recap-section #recap_appellation {
  text-transform: capitalize;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

td:first-child {
  font-weight: bold;
  color: #555;
  width: 50%;
}

td:last-child {
  text-align: right;
  color: #333;
}

.question-icon-container {
  text-align: right;
  font-size: 24px;
  cursor: pointer;
  background-color: white;
}

.question-icon-container img {
  height: 50px;
  width: 50px;
}

.modal {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #252625;
  z-index: 10;
}

.modal-content {
  position: relative;
  margin: 5% auto;
  padding: 20px;
  width: 100%;
  color: white;
}

.close {
  /* position: absolute; */
  float: right;
  font-size: 35px;
  font-weight: 400;
  cursor: pointer;
  color: white;
  background-color: #f25129;
  padding: 4px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 12px;
}

.button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

/* If we have only one button, suivant, it's placed to the right */
.button-container :only-child {
  margin-left: auto;
  margin-right: 10px;
}

.prev-button,
.next-button {
  background-color: #f25129;
  letter-spacing: 1.5px;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  width: 200px;
  height: 60px;
}

.prev-button::before,
.next-button::after {
  font-size: 28px;
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50px;
  height: 60px;
  background-color: #a1081a;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.next-button::after {
  border-radius: 0 10px 10px 0;
}
.prev-button::before {
  border-radius: 10px 0 0 10px;
}

.next-button::after {
  content: "\2192";
}

.prev-button::before {
  content: "\2190";
}

.prev-button::before {
  left: -10px;
}

.next-button::after {
  right: -10px;
}

.prev-button:hover,
.next-button:hover {
  background-color: #a1081a;
}

.prev-button:hover::before {
  background-color: #a1081a;
}

.next-button:hover::after {
  background-color: #a1081a;
}

.step_title h3 {
  text-align: center;
  color: #252625;
  font-weight: 700;
  font-size: 2.5em;
}

.step_title p {
  text-align: center;
  color: #252625;
}

.donation-options-container .active {
  border: none !important;
  color: white;
}

.donation-options-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 1px;
  padding: 0px !important;
}

.donation-options-container button {
  min-height: 50px;
}

.donation-option {
  flex: 0 0 calc(50% - 15px);
  margin-bottom: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-side {
    min-width: 100%;
    max-height: 50vh;
    position: relative;
  }

  .left-side h1 {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }

  .right-side {
    margin-left: 0;
    min-width: 100%;
    height: auto;
  }

  .left-side::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  .tab {
    font-size: 1rem;
  }

  .modal {
    position: fixed;
    min-height: 100vh;
    min-width: 90%;
    margin: 0 5%;
  }

  .donation-option {
    max-width: 100%;
  }

  .other-donation {
    /* flex-direction: column; */
  }

  .md_blue__block {
    width: fit-content;
    border-radius: 50px;
    left: 0px;
  }
  .bb {
  }
  #mdf_montant {
  }

  /* .md_dollar__sign {
    width: 100%;
    text-align: right;
    margin-top: -40px;
    max-width: 30px;
    margin-right: -90% !important;
  } */

  .padded-content {
    padding: 7% 0 0 0;
  }

  .prev-button {
    margin: 10px;
    padding-left: 50px;
  }
  .next-button {
    margin: 10px;
    padding-right: 50px;
  }
}

/* Step 2 */

.toggle-button {
  border: none;
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1px;
}

.toggle-button button {
  width: 100%;
  padding: 20px;
  background-color: #252625;
  color: white;
  margin: 10px 0;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  flex: 0 0 calc(50% - 10px);
}

.toggle-button button.active {
  width: 100%;
  padding: 20px;
  background-color: #f25129;
  color: white;
  margin: 10px 0;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  font-size: 1.2em;
}

button {
  font-size: 1.2em;
}

.md_fields input {
  border: 2px solid #252625;
  border-radius: 10px;
  font-size: 1.2em;
  height: 50px;
  padding-left: 20px;
  margin-bottom: 1em;
}

.md_field__box {
  display: flex;
  flex-direction: column;
}

label {
  color: #252625;
  font-weight: 600;
  font-size: 1.15em;
  margin-bottom: 8px;
}

/* Step 3 - Recap */

.md_recap h3 {
  font-size: 1.5em;
  color: #252625;
  font-weight: 600;
}

.md_recap td {
  border: none;
  border-top: 1px solid #252625;
  border-bottom: 1px solid #252625;
  color: #252625;
  padding: 20px;
}

.md_recap td:last-child() {
  border-bottom: 1px solid #252625;
}

.td_head {
  font-weight: 600;
  border-right: 1px solid #252625 !important;
}

/* Checkbox stuff */

/* Hide the default checkbox visually but allow it to be focused by screen readers */
.custom-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Style the label to look like a checkbox */
.checkbox-label {
  display: inline-block;
  width: 25px; /* Width of the fake checkbox */
  height: 25px; /* Height of the fake checkbox */
  background: #fff;
  margin-right: 8px;
  border: 2px solid #252625;
  border-radius: 4px;
  cursor: pointer;
  vertical-align: middle;
}

/* When the hidden checkbox is checked, change the background of the label and add a tick */
.custom-checkbox:checked + .checkbox-label {
  background-color: #f25129;
  border-color: #f25129;
  position: relative;
}

/* Create the white tick using a pseudo-element */
.custom-checkbox:checked + .checkbox-label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 12px;
  width: 6px;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
}

/* Fields and columns */

.md_col__2 {
  display: flex;
  gap: 1em;
  justify-content: space-between;
}

.md_col__2 .md_col {
  display: flex;
  flex-direction: column;
  width: 48%;
}

.md_col__3 {
  display: flex;
  gap: 1em;
  justify-content: space-between;
}

.md_col__3 .md_col {
  display: flex;
  flex-direction: column;
  width: 31%;
}

@media screen and (max-width: 1024px) {
  .md_col__2 {
    flex-direction: column;
    gap: 1px;
  }

  .md_col__2 .md_col {
    flex-direction: column;
    width: 100%;
  }

  .md_col__3 {
    flex-direction: column;
    gap: 1px;
  }

  .md_col__3 .md_col {
    flex-direction: column;
    width: 100%;
  }
}

/* Progress line styling */

.step-indicators {
  position: relative;
}

.prog-line-1::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background-image: linear-gradient(to right, #252625 20%, #dedde2 20%);
  z-index: 1;
}

.prog-line-2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background-image: linear-gradient(to right, #252625 50%, #dedde2 50%);
  z-index: 1;
}

.prog-line-3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background-image: linear-gradient(to right, #252625 80%, #dedde2 80%);
  z-index: 1;
}

.step-circle {
  z-index: 2;
}

/* End progress line styling */
.md_lang_bar {
  text-align: right;
  margin-bottom: 24px;
  background-color: #faeade;
  padding: 2%;
}

.md_lang_btn {
  color: white;
  background-color: #f25129;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
}

.md_lang_btn:hover {
  color: #252625;
}


.circle-border {
  font-size: 1.25em;
  font-weight: 900;
  border-radius: 50%;
  padding: 5px;
  color: white;
  display: inline-block;
}

#md_corporatif,
#md_personnel {
  white-space: nowrap;
  padding: 14px;
}

/* Liviu style */
#custom-address-list {
  list-style-type: none;
  padding: 0;
  max-height: 100px; /* Adjust the height based on your requirement */
  overflow-y: auto; /* Enables vertical scrollbar */
}
#custom-address-list li {
  cursor: pointer;
  margin-bottom: 5px;
  padding: 5px;
}
#custom-address-list li span {
  float: right;
  margin-left: 10px;
}

.question-icon-container {
  background-color: #f25129;
  color: white;
  border-radius: 50px;
  height: 30px;
  padding-top: 3px;
  padding-right: 9px;
  font-size: 20px;
  width: 30px;
  position: fixed;
  bottom: 4%;
  right: 2%;
}

/* New styling */

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"] {
  padding-left: 20px !important;
}

#mdf_montant {
  padding-left: 65px !important;
}

.mdf_step {
  min-height: 60vh;
}

.mdf_step_progress {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  margin: 20px 0;
}

.mdf_progress_dots {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.mdf_progress_dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #252625;
}

.mdf_step_circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #252625;
  color: white;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.mdf_step_active {
  background-color: #f25129;
}

.mdf_step_completed {
  background-color: #f25129;
}

.donation-option {
  border: 2px solid #252625 !important;
  color: #252625;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  font-size: 16px;
}

.donation-option.active {
  background-color: #f25129;
}

.mdf_custom__amount {
  width: calc(100% - 50px);
  padding: 10px;
  margin-right: 10px;
}

.md_step_nav {
  /* border-top: 2px solid #252625; */
  margin-top: 20px;
  padding-top: 16px;
  padding-right: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  right: 0;
}
.md_step_nav button {
    font-family: 'Raleway';
    font-weight: 600;
}

.mdf_btn_next {
  background-color: #252625;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
}

.mdf_btn_prev {
  background-color: #f5d8bf;
  color: #f25129;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
}

.md_field_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.md_field_column {
  display: flex;
  flex-direction: column;
}

.md_toggle {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 32px 0;
}

.md_toggle button {
    font-family: 'Raleway';
    font-weight: 600;
}

.md_field_conscent {
  margin-bottom: 16px;
}

.md_field_conscent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 3px!important;
    background-color: #faf7f0!important;
    border: 2px solid black!important;
    accent-color: black;
}



.md_field_conscent label {
    font-weight: 400;
}


.md_field_half {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  width: 48%;
}

.md_field_full {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.md_field_third {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  width: 32%;
}

@media screen and (max-width: 1025px) {
  .md_field_row {
    width: 100%;
    flex-direction: column;
  }

  .md_field_half {
    width: 100%;
  }
}

.md_field_full input,
.md_field_half input,
.md_field_third input,
.md_field_row_canada_post input {
  border: 2px solid #252625;
  border-radius: 50px;
  min-height: 50px;
  background-color: #faf6f0;
  font-size: 1.2em;
}

.md_required_star {
  color: #f25129;
  font-size: 24px;
  padding: 0px;
  display: inline-block;
  line-height: 10px;
  margin-top: 8px;
}

#perso_button,
#corpo_button {
  border: 2px solid #252625;
  height: 50px;
  color: #252625;
  border-radius: 50px;
  width: 50%;
  cursor: pointer;
  background-color: #faf6f0;
}

#perso_button.active,
#corpo_button.active {
  background-color: #f25129;
  border-color: #f25129;
  color: white;
}

#corpo_fields .md_field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

#corpo_fields input {
  border: 2px solid #252625;
  border-radius: 50px;
  font-size: 1.2em;
  height: 50px;
  background-color: #faf6f0;
}

.md_field_row_canada_post {
  display: flex;
  flex-direction: column;
}

.cp_down {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cp_down input {
  width: 100%;
  padding-left: 50px !important;
  height: 50px;
}

.cp_down img {
  width: 50px;
  position: absolute;
}

.cp_up {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.md_hide {
  display: none;
  border: 5px solid purple!important;
  max-width: 500px!important;
}

.md_italic {
    font-style: italic;
    font-size: 16px;
}

.md_desjardins {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    /*margin-top: 30px;*/
}




/* Style for the trigger span */
    .md_info_popup {
        background-color: #f25129;
        display: inline-block;
        border-radius: 50px;
        width: 40px;
        height: 40px;
        color: #fffbfa;
        font-size: 25px;
        padding-top: 5px;
        padding-left: 14px;
        cursor: pointer;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index:1000!important;
    }


      /* Hidden popup container */
      #md_info_page {
        display: none;
        position: fixed;
        top: 0%;
        right: 0;
        height: 100vh;
        width: 55%;
        background-color: #252625;
        color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        padding: 5%;
        z-index: 2000;
      }


    @media screen and (max-width: 1025px) {
        #md_info_page {

            height: 100vh;
            width: 100%;
            background-color: #1a1a1a;
            
      }
    }


      /* Close button (X) */
      #md_info_page .close-popup {
            position: absolute;
            font-family: ''!important;
            top: 0px;
            right: 10px;
            font-size: 65px;
            font-weight: 300 !important;
            color: #ffffff;
            cursor: pointer;
     }

      /* Section styles */
      #md_info_page h2 {
        margin: 0;
        font-size: 48px;
        text-align: center;
        font-weight: bold;
      }

      #md_info_page p {
        font-size: 14px;
        line-height: 1.6;
        margin: 10px 0;
      }


      #md_info_page .intro-section {
        border-top: 2px solid #fff;
        padding: 20px 0;

      }
      
      
      #md_info_page .contact-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 20px;
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
        padding: 20px 0;
      }
      #md_info_page .horizontal {
        display: flex;
        flex-direction: row;
      }

      #md_info_page .two_col {
        flex: 1;
        margin: 5px;
      }

      /* Social icons */
      .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 40px 0;
      }

      .social-icons a {
        color: #ffffff;
        font-size: 20px;
        text-decoration: none;
      }

      /* Footer links */
      .footer-links {
        text-align: center;
        font-size: 12px;
        margin-top: 10px;
      }

      .footer-links a {
        color: #ffffff;
        margin: 0 10px;
        text-decoration: none;
      }


    #md_info_page ul {
        list-style-type: disc; 
        padding-left: 20px; 
    }

   #md_info_page li {
        margin-bottom: 10px; 
        font-size: 17px;
        line-height: 23px;
    }

    #md_info_page p {
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 23px;
    }


    .fa.fa-twitter{
    	font-family:sans-serif;
    }
    .fa.fa-twitter::before{
    	content:"ð•";
    }
    
    .social-icons i {
        font-size: 30;
        margin:0 4px;
    }




    .md_charges label {
        font-size: 16px;
        font-family: 'Raleway';
        border: 1px;
        margin-top: -8px;
    }


    .md_new_amount {
        background-color: #0B395410;
        padding: 3%;
        border-radius: 5px;
        /* color: white; */
        font-weight: 600;
    }

    /*#mdf_preleve {*/
    /*    font-size: 19px;*/
    /*}*/
    
    
    @media screen and (max-width: 377px) {
     
     .md_new_amount,
     .md_desjardins span {
         font-size: 13px;   
     }
     
     
    }

/* Make the popup scrollable on mobiles */
    @media (max-width: 600px) {
      #md_info_page {
        max-height: 99vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }
    }



#payment-button {
    background-color: #f25129!important;
}


