/* custom stylesheet */
@charset "utf-8";

/*--------------- General ---------------*/
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Biryani", sans-serif;
  background: #f9fafe;
  overflow-x: hidden;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Biryani", sans-serif;
  color: #1f2e57;
  position: relative;
  z-index: 10;
}

section {
  position: relative;
  /*z-index: 10;*/
  z-index: 9;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  padding: 0 20px 0 0;
  background-size: 7.5px;
  margin-right: 10px;
  cursor: pointer;
}

select {
  background: url("../../img/chevron-down.svg") no-repeat;
  background-position: center right;
  border: none;
  color: #fff;
}

input[type="text"],
input[type="email"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

:focus {
  outline: 0;
  border: none;
}

a:hover,
a:visited,
a:focus,
a:active {
  text-decoration: none;
}

.container.huge {
  max-width: 1540px;
}

h1.title {
  font-weight: 700;
  font-size: 40px;
}

h2.title {
  font-weight: 700;
  font-size: 35px;
  color: #000;
  line-height: 1.35;
}

h2.title span {
  color: #4a69bd;
}

h3.title {
  font-weight: 700;
  font-size: 30px;
  color: #000;
  line-height: 1.35;
}

h3.title span {
  color: #4a69bd;
}

p.content,
ul.content,
ol.content,
table.content {
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
}

a.button,
input[type="submit"],
input[type="button"] {
  background: #f6b93b;
  color: #fff;
  border: none;
  padding: 10px 25px 5px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  border-radius: 4px;
  transition: 0.2s all;
}

a.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: #d35400;
}

.form-group {
  margin-bottom: 0.5rem;
}

.yellow-button {
  background: #f6b93b;
  color: #fff;
  border-radius: 0;
  border: none;
  padding: 13px 20px 10px 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  transition: 0.2s all;
}
.yellow-button:hover {
  background: #d35400;
  color: white;
}

@media screen and (max-width: 992px) {
  div.cs-select {
    width: 140px;
  }
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  /* Cache la checkbox sans
       la désactiver pour les
       lecteurs d'écran */
  position: absolute;
  left: 0;
  opacity: 0.01;
}

/* on prépare le label */
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative; /* permet de positionner les pseudo-éléments */
  padding-left: 2em; /* fait un peu d'espace pour notre case à venir */
  font-size: 12px; /* Label un peu plus gros */
  line-height: 1.9;
  cursor: pointer; /* affiche un curseur adapté */
}

/* Aspect de la case */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: "";
  position: absolute;
  margin-top: 1px;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #4a69bd;
  background: #fff;
  transition: all 0.275s;
}

/* Aspect de la coche */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  background: #4a69bd;
  height: 11px;
  width: 11px;
  top: 3px;
  left: 2px;
  font-size: 1.6em;
  color: #cb22ed;
  line-height: 0;
  transition: all 0.2s;
}

/* Aspect non cochée */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0) rotate(45deg);
}

/* Aspect cochée */
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* Disabled checked */
[type="checkbox"]:disabled:checked + label:after {
  color: #777;
}

[type="checkbox"]:disabled + label {
  color: #aaa;
}

/* Accessibility focus */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(74, 105, 189, 0.2);
}

.input-phone-number {
  margin-top: 50px;
  width: 100%;
  max-width: 580px;
  height: 100px;
  position: relative;
  display: block;
}

.input-phone-number ::placeholder {
  opacity: 1; /* Firefox */
}

.section-phone-number,
.section-email-address {
  display: inline-flex;
  padding: 0.5rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}

.input-phone-number input[type="text"],
.input-phone-number input[type="email"],
.input-phone-number input[type="tel"] {
  -webkit-appearance: none;
  /* color: #FFF; */
  font-size: 16px!important;
  padding-left: 20px;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 999px;
}

.input-phone-number input[type="tel"] {
  padding-top: 6px;
  color: #212529;
}

@media screen and (max-width: 992px) {
  .input-phone-number input[type="email"] {
    padding: 0.75rem 0.75rem 0.75em 0.75em;
  }
}

.input-phone-number input[type="submit"],
.input-phone-number input[type="button"] {
  border-radius: 999px;
  margin-left: 0px;
  position: relative;
  border: 2px #f6b93c solid;
  transition: 0.2s all;
}

.input-phone-number input[type="submit"]:hover,
.input-phone-number input[type="button"]:hover {
  border: 2px #d35400 solid;
}

.bg-white {
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 0.3rem;
}

.hero-offer-card {
  border: 0;
  padding: 20px;
  border-radius: 0.3rem;
  box-shadow: none;
  background: #f7f8fc !important;
}

.input-phone-number .step {
  /* position: absolute; */
  position: relative;
  letter-spacing: 1px;
  /* padding: 20px;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,.18); */
}

.input-phone-number .step.step-01 label {
  margin-top: 0px;
  letter-spacing: normal;
}
.input-phone-number .step.step-02 label {
  margin-top: 0px;
  letter-spacing: normal;
}

.hidden {
  display: none;
}
.input-phone-number h3.title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.input-phone-number .step.step-02 {
  display: none;
}

.bg-blue {
  background: #4a69bd;
  color: #fff;
}

.bg-blue h1,
.bg-blue h2 {
  color: #fff;
}

.hero.bg-blue a {
  color: #ffc44a;
}

.hero.bg-blue a:hover {
  color: #f6b93c;
}

.hero {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero h1.title {
  font-size: 40px;
  /*max-width: 450px;*/
  margin: auto;
  margin-top: 50px;
}

.hero p.content {
  font-size: 16px;
  max-width: 650px;
  margin: auto;
  margin-top: 20px;
}

.section-why-us h2.title {
  max-width: 500px;
  margin: auto;
  padding-top: 70px;
  padding-bottom: 45px;
  text-align: center;
  z-index: -1;
}

.section-why-us .card {
  border: none;
  box-shadow: 0 7px 99px #e3e3e3;
  padding: 20px;
  z-index: 99;
}

.section-why-us .card .card-title {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}

.section-why-us .card .card-title {
  margin-bottom: 0;
  padding-top: 10px;
}

.section-why-us .card .card-img {
  max-width: 75px;
  margin: auto;
}

.section-why-us .card .card-content {
  max-width: 280px;
  margin: auto;
  text-align: center;
}

.section-try-us {
  background-image: image-set(
    url("/img/Marker-Banner.webp") 1x,
    url("/img/Marker-Banner.png") 1x
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  margin-top: 70px;
}

.section-try-us::before {
  content: "";
  background: #000000;
  opacity: 0.6;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.section-try-us h2.title {
  color: #fff;
}

.section-try-us p.content {
  color: #fff;
  padding-top: 30px;
}

.section-try-us .input-phone-number {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
  a.button {
    width: 100%;
    display: block;
    text-align: center;
  }

  h1.title {
    font-size: 30px;
  }

  h2.title {
    font-size: 21px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero h1.title {
    font-size: 30px;
  }

  main {
    padding-top: 25px;
  }
  main.is-payment {
    padding-top: 0px;
  }

  .input-phone-number {
    position: relative;
    height: 165px;
    margin-top: 25px;
  }

  .section-why-us .card {
    margin-top: 30px;
  }

  #open-dev {
    transform: scale(1) !important;
  }

  .input-phone-number .select {
    width: 33.33333%;
    float: left;
  }

  .input-phone-number input[type="text"] {
    border: 2px #fff solid;
    width: 66.66666%;
    float: left;
    height: 49px;
  }

  .cs-select > span {
    padding: 15px 10px 10px 15px;
    padding-right: inherit;
    background-position: center right 2em;
    background-size: 2.5em;
  }

  .cs-select > span::after {
    right: 4px;
  }

  .section-try-us {
    margin-top: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-try-us::before {
    opacity: 0.75;
  }
}

@media screen and (max-width: 767.98px) {
  .section-why-us .card {
    width: 100%;
  }
}

/*------------------ Header ------------------*/
.header {
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 10;
  position: relative;
}

.header .logo {
  max-width: 175px;
}

.header .nav-item {
  margin: 0 7.5px;
}

.header .nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.header select {
  border: none;
  color: #fff;
}

logo {
  max-width: 140px;
}

.nav {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-link {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1f2e57;
  display: block;
  padding: 0;
  border-bottom: 3px transparent solid;
  margin-top: 20px;
  margin-right: 40px;
  padding-bottom: 10px;
  font-size: 15px;
}

.nav-link.active {
  border-bottom: 3px #f6b93c solid;
}

@media screen and (max-width: 992px) {
  .header {
    background: #4a69bd;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 0;
  }

  .header .menu-mobile .nav-link {
    color: #fff;
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .header .menu-mobile .nav-link span {
    display: none;
  }

  .header .menu-mobile {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header .logo {
    max-width: 150px;
  }

  .breadcrumb {
    margin-top: 0;
  }

  .navbar-toggler {
    position: absolute;
    right: 15px;
    top: -40px;
  }

  .animated-icon2 {
    width: 22px;
    height: 14px;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }

  .animated-icon2 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  .animated-icon2 span {
    background: #fff;
  }

  .animated-icon2 span:nth-child(1) {
    top: 0px;
  }

  .animated-icon2 span:nth-child(2),
  .animated-icon2 span:nth-child(3) {
    top: 7px;
  }

  .animated-icon2 span:nth-child(4) {
    top: 14px;
  }

  .animated-icon2.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
  }

  .animated-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .animated-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .animated-icon2.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
  }
}

/*------------------ Home ------------------*/
.home-section-01 {
  padding-top: 15px;
  background-color: #f9fafe;
  background-image: none;
}

.home-section-01 .hero-container {
  padding-left: 50px;
  position: relative;
  height: 100%;
}

.home-section-01 .headband {
  color: #fff;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 50px;
  padding-right: 15px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: absolute;
  margin: auto;
  /* bottom: 100px; */
  left: 0;
  right: 0;
  width: 500px;
}

.home-section-01 .headband span {
  background: url("../../img/Icon-Badge.svg") center left no-repeat;
  background-size: contain;
  padding: 2.5px 60px;
}

.home-section-01 img {
  position: relative;
  z-index: -1;
}

.home-section-02 {
  padding-top: 50px;
}

.home-section-03 {
  padding-top: 75px;
}

.expand-img {
  object-fit: cover;
  object-position: 10%;
  width: 100%;
  max-width: initial;
  max-height: 100%;
  height: 100%;
}

.home-section-04 {
  margin-top: 50px;
  padding-bottom: 80px;
}

.home-section-04 .lSSlideOuter .lSPager.lSpg {
  display: none;
}

.home-section-05 h3.title {
  font-size: 18px;
  font-weight: 700;
}

.home-section-05 h2.title {
  margin-bottom: 70px;
  margin-top: 25px;
}

.home-section-05 .step-item {
  display: flex;
  padding-bottom: 100px;
}

.home-section-05 .step-item .step-number::before {
  content: "";
  border-right: 3px #ccc dashed;
  position: absolute;
  height: 150px;
  left: 0;
  right: 0;
  top: 75px;
  margin: auto;
  width: 2px;
  z-index: -1;
}

.home-section-05 .step-item .step-number::after {
  content: "";
  border-top: 4px #ccc dashed;
  position: absolute;
  left: 75px;
  right: 0;
  top: 50%;
  margin: auto;
  width: 50px;
  z-index: -1;
}

.home-section-05 .step-item .step-number {
  background: #72c6ff;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
  width: 75px;
  height: 75px;
  position: relative;
  z-index: 10;
}

.home-section-05 .step-item .step-number span {
  position: relative;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding: 15px;
  font-size: 35px;
  z-index: 10;
}

.home-section-05 .step-item:last-of-type .step-number::before {
  display: none;
}

.home-section-05 .step-item .step-img {
  max-width: 60px;
  margin-left: 50px;
  align-self: flex-start;
  position: relative;
  z-index: 10;
}

.home-section-05 .step-item .step-content {
  color: #414141;
  font-size: 22px;
  font-weight: 700;
  max-width: 600px;
  padding-left: 50px;
}

.home-section-06 {
  padding-top: 100px;
}

@media screen and (max-width: 1400px) {
  .home-section-01 .hero-container {
    top: 40px;
    margin: auto;
    margin-top: 65px;
    padding-left: 0;
  }

  .home-section-01 .headband {
    position: relative;
    bottom: 0px;
  }
}

@media screen and (max-width: 992px) {
  .home-section-01 .hero-container {
    top: 40px;
    margin: auto;
    margin-top: 65px;
    padding-left: 0;
  }

  .home-section-01 .headband {
    bottom: 0;
    width: auto;
    padding: 15px;
    background: none;
    color: #fff;
    margin-top: 20px;
  }

  .home-section-01 .headband span {
    background: url(../../img/Icon-Badge.svg) top center no-repeat;
    background-size: 60px;
    padding: 0;
    display: block;
    padding-top: 60px;
  }
  .home-section-05 .step-item {
    display: table;
    padding-bottom: 20px;
  }

  .home-section-05 .step-item .step-number {
    margin: auto;
  }

  .home-section-05 .step-item .step-number::before {
    height: 500px;
  }

  .home-section-05 .step-item .step-number::after {
    display: none;
  }

  .home-section-05 .step-item .step-img {
    margin: auto;
    display: block;
    padding-top: 50px;
  }

  .home-section-05 .step-item .step-content {
    text-align: center;
    margin-top: 20px;
    padding-left: 0;
    z-index: 10;
    position: relative;
  }

  .home-section-05 .step-item:last-of-type .step-content {
    padding-bottom: 20px;
  }

  .home-section-06 {
    padding-top: 100px;
  }
}

img.op-identity {
  width: 55px;
}
.operator-payment img {
  width: 55px;
}
/*------------------ Paiement ------------------*/
.payment-section-01 {
  padding-top: 35px;
  background: #f9fafe;
}

.payment-section-01 h1.title {
  font-size: 32px;
}

.payment-section-01 h2.title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-container {
  margin-top: 0px;
}

.payment-card-container {
  background: #fff;
  color: #4a69bd;
  /* margin: 0 50px 0 30px; */
  border: 1px #c2ceec solid;
}

.payment-container h2.title {
  color: #1f2e56;
  background: #f9fafe;
  font-size: 24px;
  padding: 22.5px 0px 0 0;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 992px) {
  .payment-container h2.title {
    padding: 12.5px 0px 0 0;
  }
}

.payment-card h3.title {
  font-size: 20px;
  color: #1f2e56;
  background: #edf3ff;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 600;
  position: relative;
  z-index: 10;
  border-bottom: 0;
  text-align: center;
}

.payment-card h3.title p {
  margin-bottom: 0;
  padding: 1rem;
}

.payment-card h3.title::after {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;
  transform: rotate(45deg);
  background: #edf3ff;
  z-index: -10;
}

.payment-card h3.title .price {
  font-size: 18px;
  font-weight: 700;
  color: #1f2e56;
}

.payment-card .payment-form {
  background: #fff;
  padding: 15px;
}

.payment-card .payment-form h4.title {
  font-size: 18px;
  padding: 5px 0px 0px 0;
  font-weight: 700;
  background: #fff;
  color: #1f2e56;
}

.payment-card .payment-form ul {
  display: inline-flex;
  float: right;
}

.payment-card .payment-form ul li i {
  font-size: 24px;
  margin-right: 10px;
  margin-left: auto;
  /* margin-top: 20px; */
}

.payment-card .payment-form label {
  color: #999;
  margin-top: 10px;
  font-size: 12px !important;
}

.payment-card .payment-form input[type="text"] {
  top: -5px;
  font-size: 16px;
  border: 1px #aaa solid;
  border-radius: 2px;
  /* color: #4a69bd; */
  padding: 14px 16px 12px;
}

@media (max-width: 576px) {

  .payment-card .payment-form input[type="text"] {
    top: 0;
    font-size: 16px!important;
    border: 1px #aaa solid;
    border-radius: 2px;
    /* padding: 14px 16px 12px; */
    padding: 14px 16px 8px;
  }
}

.payment-card .payment-form input[type="text"]::placeholder,
.payment-card .payment-form input[type="email"]::placeholder,
.payment-card .payment-form input[type="password"]::placeholder {
  color: #888;
  font-size: 16px;
}

.payment-card .payment-form .card-number input {
  font-size: 16px;
  letter-spacing: 1px;
  background-size: 24px;
}

#card-number {
  background: transparent;
  background-position: center right 10px !important;
  transition: 1s all;
}

#card-number.mastercard {
  background: url("../../img/mastercard.svg");
  background-repeat: no-repeat;
}

#card-number.visa {
  background: url("../../img/visa.svg");
  background-repeat: no-repeat;
}

.payment-card .payment-form .card-number input::placeholder {
  font-size: 16px;
}

.payment-card .payment-form .card-exp select {
  background-color: transparent;
  color: #888;
  border: 1px #aaa solid;
  border-radius: 0;
  padding: 4px;
  padding-right: 35px;
  background-position: center right 5px;
}

.payment-card .payment-form .card-ccv input {
  font-size: 14px;
}

.payment-card .payment-form .card-ccv input::placeholder {
  font-size: 16px;
}

.payment-description {
  font-size: 10px;
  color: #1f2e56;
}

.payment-card .conditions label {
  margin-left: 5px;
  cursor: pointer;
}

.payment-card input[type="submit"] {
  background: #28a745;
  display: block;
  margin: auto;
  margin-top: 10px;
  min-width: 250px;
  transition: 0.2s all;
}

.payment-card input[type="submit"]:hover {
  background: #218838;
}

.payment-label {
  font-size: 9px;
  color: #1f2e56;
  background: #edf3ff;
  border-top: 1px #c2ceec solid;
  padding: 18px 10px 18px 10px;
  text-align: center;
  bottom: 0;
  position: absolute;
  width: 100%;
}

.payment-details {
  border: 1px #c2ceec solid;
  background: #fff;
  position: relative;
}

/* .payment-details:first-child {
    min-height: 550px;
} */

.payment-details h3.title {
  font-size: 14px;
  padding: 15px 8px;
  font-weight: 700;
  background: #fff;
  color: #1f2e56;
  border-bottom: 1px solid #c2ceec;
  text-align: center;
}

.payment-details .block {
  /* display: flex;
    flex-direction: row; */
  padding: 12px 8px;
  background: #fff;
}

.payment-details .block img {
  height: 25px;
  width: auto;
  margin: auto 0;
}

.payment-details h5.title {
  font-size: 10px;
  color: #1f2e56;
  text-align: left;
  margin: auto 0;
}

.payment-details .form-details-list-item {
  font-size: 14px;
  margin: 8px 0;
}

.payment-details .form-details-list-item img {
  transform: scale(0.85);
}

.payment-details .form-total {
  font-size: 16px;
  color: #1f2e56;
  background: #edf3ff;
  border-top: 1px #c2ceec solid;
  padding: 12.5px 0px 10px 10px;
  font-weight: 600;
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 38px;
}

.payment-infos {
  font-weight: 700;
  /* text-transform: uppercase; */
  color: #1f2e56;
  display: table;
  margin: auto;
  margin-top: 10px;
  font-size: 14px;
}

.payment-infos .price {
  font-size: 18px;
  color: #4a69bd;
}

.payment-infos i {
  color: #ffc112;
}

.payment-section-02 {
  padding-bottom: 100px;
  background: #f9fafe;
}

@media screen and (max-width: 1200px) {
  /* .payment-details:first-child {
        min-height: 600px;
    } */
  .payment-details .form-details-list-item {
    margin: 15px 0;
  }

  .payment-details .form-details-list.fr .form-details-list-item {
    margin: 0;
  }

  .payment-details .form-total {
    margin-top: -4px;
  }
}

@media screen and (max-width: 992px) {
  .payment-details {
    margin: 0 50px 50px 30px;
  }

  .payment-resume {
    padding: 50px 30px 50px 30px;
  }
  .payment-label {
    /* position: relative; */
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .payment-card-container {
    margin-left: 0;
    margin-right: 0;
  }

  .payment-details {
    margin-left: 0;
    margin-right: 0;
  }

  .payment-container h2.title {
    font-size: 15px;
    display: none;
  }

  .payment-card h3.title {
    font-size: 16px;
  }

  .payment-card-container img.op-identity {
    width: 40px;
  }

  .payment-card .payment-form h4.title {
    padding: 10px 0px 5px 0;
  }

  .payment-card h3.title p {
    padding: 0.5rem 1rem;
  }

  .payment-card .payment-form .form-group {
    margin-bottom: 0;
  }

  .payment-card input[type="submit"] {
    width: 100%;
  }
}

.confirmation-details {
  border: 1px #c2ceec solid;
  background: #ffffff;
  position: relative;
  padding: 30px 10px;
}

.confirmation-details h3 {
  margin-bottom: 20px;
}

/*------------------ Paiement Old ------------------*/
/*
.payment-section-01 {
    padding-top: 70px;
}

.payment-section-01 h2.title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-container {
    box-shadow: 0 0 99px rgba(0, 0, 0, .05);
}

.payment-details {
    background: #4A69BD;
    color: #FFF;
    padding: 85px 70px 50px 70px;
}

.payment-details h2.title {
    color: #FFF;
}

.payment-details h3.title {
    font-size: 16px;
    color: #bcc9ea;
    margin-top: 20px;
    font-weight: 600;
}

.payment-details h3.title .price {
    font-size: 20px;
    color: #FFF;
    margin-left: 10px;
    font-weight: 700;
}

.payment-details .payment-form {
    margin-top: 20px;
}

.payment-details .payment-form label {
    opacity: .8;
}

.payment-details .payment-form input[type="text"],
.payment-details .payment-form input[type="email"],
.payment-details .payment-form input[type="password"] {
    top: -10px;
    color: #FFF;
    font-size: 15px;
}


.payment-details .payment-form input[type="text"]::placeholder,
.payment-details .payment-form input[type="email"]::placeholder,
.payment-details .payment-form input[type="password"]::placeholder {
    color: #bcc9ea;
    opacity: .7;
}


.payment-details .payment-form .card-number input {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    background-size: 24px;
}

#card-number {
    background: transparent;
    background-position: center right 10px !important;
    transition: 1s all;
}

#card-number.mastercard {
    background: url('../../mastercard.svg');
    background-repeat: no-repeat;
}


#card-number.visa {
    background: url('../../visa.svg');
    background-repeat: no-repeat;
}


.payment-details .payment-form .card-number input::placeholder {
    font-size: 16px;
}

.payment-details .payment-form .card-exp select {
    background-color: transparent;
    color: #FFF;
    border: none;
}

.payment-details .payment-form .card-ccv input {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.payment-details .payment-form .card-ccv input::placeholder {
    font-size: 16px;
}

.payment-details input[type="submit"] {
    margin-top: 35px;
}


.payment-resume {
    background: #FFF;
    padding: 85px 70px 50px 70px;
    height: 100%;
}

.payment-section-02 {
    padding-bottom: 100px;
}

@media screen and (max-width: 992px) {
    .payment-details {
        padding: 50px 30px 50px 30px;
    }

    .payment-resume {
        padding: 50px 30px 50px 30px;
    }
}
 */

/*------------------ Connexion / S'inscrire ------------------*/
.login-container {
  background: #4a69bd;
  margin: 100px 0;
}

.login-switcher .switcher-container {
  padding-top: 60px;
  margin: auto;
  display: table;
}

.login-switcher .switcher-item {
  display: inline;
}

.login-switcher .switcher-item button {
  text-transform: uppercase;
  color: #fff;
  padding: 10px 35px 7.5px 35px;
  background: none;
  border: 1px #fff solid;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}

.login-switcher .switcher-item button.active {
  background: #fff;
  color: #4b69bd;
}

.login-switcher .switcher-item:first-of-type button {
  border-radius: 40px 0 0 40px;
}

.login-switcher .switcher-item:last-of-type button {
  border-radius: 0 40px 40px 0;
  left: -5px;
  position: relative;
}

.login-form {
  padding-top: 50px;
  padding-bottom: 50px;
  max-width: 300px;
  margin: auto;
}

label {
  font-size: 14px;
  margin-top: 25px;
  font-weight: 600;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px #fff solid;
  margin-bottom: 0;
  position: relative;
  padding: 4px 0 0 0;
  font-size: 13px;
}

.form-content {
  font-size: 12px;
  color: #fff;
  opacity: 0.6;
  position: relative;
  margin-top: -5px;
}

::placeholder {
  font-size: 13px;
  color: #aaa;
}

.login-form {
  position: relative;
}

.login-form .login-card {
  position: absolute;
  top: 0;
  width: 100%;
  margin-top: 50px;
  display: none;
}

.login-form .login-card.active {
  display: block;
}

.login-form label {
  color: #fff;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
  top: -10px;
  color: #fff;
}

.login-form input[type="submit"] {
  margin-top: 40px;
  width: 100%;
  text-transform: initial;
  border-radius: 0;
  padding: 12px;
}

.login-form textarea {
  width: 100%;
  height: 55px;
  border: none;
  background: linear-gradient(to top, #fff 1px, transparent 3%) repeat scroll 0 20px/100% 21px;
  outline: none;
  font-size: 14px;
  color: #fff;
  resize: none;
}

.login-form select {
  background-color: none;
  border: none;
  color: #fff;
  top: -3px;
  position: relative;
  left: -5px;
}

.login-form .form-tel {
  display: inline-flex;
  padding-left: 5px;
}

.login-prev,
.login-next {
  color: #fff;
  background: none;
  text-transform: uppercase;
  border: none;
  margin-top: 20px;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  bottom: -75px;
  position: absolute;
  line-height: 20px;
  padding-top: 6px;
}

.login-next {
  right: 0;
  background-image: url("../../img/chevron-circle-right.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 35px;
}

.login-prev {
  left: 0;
  background-image: url("../../img/chevron-circle-left.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 35px;
}

@media screen and (max-width: 992px) {
  .is-login .open-dev-2 {
    display: none;
  }

  ::placeholder {
    font-size: 16px !important;
  }

  .login-form {
    height: 500px;
  }
}

/*------------------ Single ------------------*/
.hero.bg-gradient::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgb(74, 105, 189);
  background: -moz-linear-gradient(
    180deg,
    rgba(74, 105, 189, 1) 0%,
    rgba(74, 105, 189, 0.6432948179271709) 20%,
    rgba(74, 105, 189, 0.5116421568627452) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(74, 105, 189, 1) 0%,
    rgba(74, 105, 189, 0.6432948179271709) 20%,
    rgba(74, 105, 189, 0.5116421568627452) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(74, 105, 189, 1) 0%,
    rgba(74, 105, 189, 0.6432948179271709) 20%,
    rgba(74, 105, 189, 0.5116421568627452) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4a69bd", endColorstr="#4a69bd", GradientType=1);
}

.hero.bg-gradient {
  text-align: left;
  position: relative;
}

.hero.bg-gradient h1.title {
  color: #fff;
  margin: initial;
  margin-top: 50px;
  z-index: 10;
  position: relative;
}

.hero.bg-gradient p.content {
  margin: initial;
  margin-top: 20px;
  color: #fff;
  z-index: 10;
  position: relative;
  max-width: 450px;
}

.is-single .hero {
  background-repeat: no-repeat;
  background-size: cover;
}

.single-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.single-section-type-2 h2.title {
  text-align: center;
}

.single-section-type-2 p.content {
  text-align: left;
  margin: auto;
  max-width: 800px;
}

.single-section-type-3 h2.title {
  max-width: 480px;
}

.single-section-type-3 p.content {
  max-width: 480px;
  font-size: 15px;
}

/*------------------ FAQ ------------------*/

.section-faq {
  border-bottom: 1px #dcdcdc solid;
  padding-bottom: 50px;
  padding-top: 50px;
}

h2.faq-item-title {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 24px;
}

.faq-item {
  /*max-width: 450px;*/
  max-width: 485px;
}

h3.faq-item-title {
  text-align: left;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  max-width: 450px;
}

p.faq-content {
  padding-top: 15px;
  color: #888;
}

.faq-section-04 {
  padding-bottom: 100px;
}

/*------------------ Contact ------------------*/
.is-contact h1.title {
  margin-top: 40px;
  display: block;
}

.contact-section-01 p.content {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.contact-form {
  background: #fff;
  padding: 35px 70px;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 45px;
  box-shadow: 0 0 99px rgba(0, 0, 0, 0.05);
}

.contact-form label {
  margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px #cccccc solid;
  font-size: 14px;
  padding: 10px 5px 6px 5px;
}

.contact-form textarea {
  height: 150px;
}

.contact-form input[type="submit"] {
  border-radius: 0;
  border: none;
  width: initial;
  text-transform: initial;
  padding: 13px 20px 10px 20px;
  margin-left: auto;
  display: flex;
  margin-top: 20px;
}

@media screen and (max-width: 992px) {
  .contact-form {
    padding: 25px 40px;
  }
}

/*------------------ Profile ------------------*/
.profile-form {
  background: #fff;
  padding: 35px 70px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 0 99px rgba(0, 0, 0, 0.05);
}

.profile-form label {
  margin-bottom: 0;
}

.profile-form input,
.profile-form textarea {
  width: 100%;
  border: 1px #cccccc solid;
  font-size: 14px;
  padding: 10px 5px 6px 5px;
}

.profile-form textarea {
  height: 150px;
}

.profile-form input[type="submit"] {
  border-radius: 0;
  border: none;
  width: initial;
  text-transform: initial;
  padding: 13px 20px 10px 20px;
  margin-left: auto;
  display: flex;
  margin-top: 20px;
}

@media screen and (max-width: 992px) {
  .profile-form {
    padding: 25px 40px;
  }
}

/*------------------ Request ------------------*/
.request-form {
  background: #fff;
  padding: 35px 70px;
  margin: 0 auto;
  box-shadow: 0 0 99px rgba(0, 0, 0, 0.05);
}

.request-form label {
  margin-bottom: 0;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px #cccccc solid;
  font-size: 14px;
  padding: 10px 5px 6px 5px;
}

.request-form textarea {
  height: 150px;
}

.request-form input[type="submit"] {
  border-radius: 0;
  border: none;
  width: initial;
  text-transform: initial;
  padding: 13px 20px 10px 20px;
  margin-left: auto;
  display: flex;
  margin-top: 20px;
}

@media screen and (max-width: 992px) {
  .request-form {
    padding: 25px 40px;
  }
}

/*------------------ New geoloc ------------------*/
.new-geoloc-form {
  background: #fff;
  padding: 35px 70px;
  margin: 0 auto;
  box-shadow: 0 0 99px rgba(0, 0, 0, 0.05);
}

.new-geoloc-form label {
  margin-bottom: 0;
}

.new-geoloc-form input,
.new-geoloc-form textarea {
  width: 100%;
  border: 1px #cccccc solid;
  font-size: 14px;
  padding: 10px 5px 6px 5px;
}

.new-geoloc-form textarea {
  height: 150px;
}

.new-geoloc-form input[type="submit"] {
  border-radius: 0;
  border: none;
  width: initial;
  text-transform: initial;
  padding: 13px 20px 10px 20px;
  margin-left: auto;
  display: flex;
  margin-top: 20px;
}

.new-geoloc-form .iso-input {
  background-color: #f8f9fa;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px;
}

@media screen and (max-width: 992px) {
  .new-geoloc-form {
    padding: 25px 40px;
  }
}

/*------------------ Cancellation ------------------*/
.cancellation-form {
  background: #fff;
  padding: 35px 70px;
  max-width: 450px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 100px;
  box-shadow: 0 0 99px rgba(0, 0, 0, 0.05);
}

.cancellation-form input {
  width: 100%;
  border: 1px #cccccc solid;
  font-size: 14px;
  padding: 10px 5px 6px 5px;
}

.cancellation-form input[type="submit"] {
  border-radius: 0;
  border: none;
  text-align: center;
  text-transform: initial;
  padding: 13px 20px 10px 20px;
  margin-top: 20px;
}

@media screen and (max-width: 992px) {
  .cancellation-form {
    padding: 30px 20px;
  }

  .cancellation-form label {
    margin-top: 0;
  }
}

/*------------------ Privacy Policy ------------------*/
.is-privacy-policy {
  padding-bottom: 100px;
}

.is-privacy-policy .hero h1.title {
  text-align: left;
  margin: initial;
  margin-top: 50px;
}

.privacy-policy-item {
  padding-top: 50px;
}

.privacy-policy-title {
  font-weight: 700;
  font-size: 24px;
}

.privacy-policy-content {
  margin-top: 15px;
  color: #888888;
}

/*------------------ Footer ------------------*/
.footer {
  padding-top: 40px;
  padding-bottom: 20px;
}

.footer img {
  position: relative;
  margin-top: -5px;
  padding-bottom: 25px;
  max-width: 180px;
}

.footer .footer-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 25px;
}

.footer .footer-content {
  font-size: 13px;
}

.footer .footer-link {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.footer i {
  /*font-size: 32px;*/
  margin-right: 10px;
}

.footer-bottom {
  padding-top: 40px;
}

.footer-bottom-links li {
  content: "-";
  display: block;
  color: #fff;
}

.footer-bottom a {
  color: #fff;
  font-size: 13px;
  margin-right: 15px;
}

@media screen and (max-width: 992px) {
  .footer .footer-title {
    padding-top: 30px;
    padding-bottom: 15px;
  }
}

.open-dev {
  color: #ffffff;
  position: absolute;
  opacity: 0.75;
  z-index: 1;
}

.open-dev .wrap-two-up {
  position: relative;
}

.open-dev-radar {
  position: relative;
  width: 100%;
  padding-top: 400px;
}

.open-dev-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(74, 105, 189, 0.15);
  height: 30px;
  width: 30px;
  border-radius: 50px;
}

.open-dev-radar-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.open-dev-radar-pulse::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: scale(0);
  border-radius: 50%;
  border: solid 1px rgba(74, 105, 189, 0.1);
  background-image: radial-gradient(
    circle farthest-corner,
    rgba(74, 105, 189, 0) 50%,
    rgba(74, 105, 189, 0.2) 100%
  );
  animation-duration: 3.2s;
  animation-name: pulse;
  animation-iteration-count: infinite;
  opacity: 0;
}

.open-dev-radar-pulse:nth-child(4) {
  width: calc(120 / 16 * 1rem);
  height: calc(120 / 16 * 1rem);
}

.open-dev-radar-pulse:nth-child(3) {
  width: calc(190 / 16 * 1rem);
  height: calc(190 / 16 * 1rem);
}

.open-dev-radar-pulse:nth-child(3)::after {
  animation-delay: 0.2s;
}

.open-dev-radar-pulse:nth-child(2) {
  width: calc(270 / 16 * 1rem);
  height: calc(270 / 16 * 1rem);
}

.open-dev-radar-pulse:nth-child(2)::after {
  animation-delay: 0.4s;
}

.open-dev-radar-pulse:nth-child(1) {
  width: calc(370 / 16 * 1rem);
  height: calc(370 / 16 * 1rem);
}

.open-dev-radar-pulse:nth-child(1)::after {
  animation-delay: 0.6s;
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  90% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.dropdown-menu {
  min-width: 0px;
}

.privacy-policy-item ul {
  padding-left: 40px;
}

.privacy-policy-item ul li {
  list-style: disc;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  color: #888888;
}

.faq-item ul li {
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  color: #888888;
}

.privacy-policy-content h4 {
  color: #888888;
}

label.error {
  font-size: 12px;
  margin-top: 5px;
  font-weight: normal;
  color: #dc3545;
  display: block;
}
.alert-danger {
  padding: 5px 10px;
}

.alert-success {
  padding: 5px 10px;
}

.form-control.is-valid,
.section-phone-number.is-valid,
.section-email-address.is-valid,
.section-email.is-valid input[type="email"] {
  border: 1px solid #02a94f !important;
}

.form-control.is-invalid,
.section-phone-number.is-invalid,
.section-email-address.is-invalid,
.section-email.is-invalid input[type="email"] {
  border: 1px solid #dc3545 !important;
}

@media (max-width: 576px) {
  .form-control.is-valid,
  .section-phone-number.is-valid,
  .section-email-address.is-valid,
  .section-email.is-valid input[type="email"] {
    /* border: 1px solid transparent!important; */
  }
  .form-control.is-invalid,
  .section-phone-number.is-invalid,
  .section-email-address.is-invalid,
  .section-email.is-invalid input[type="email"] {
    /* border: 1px solid transparent!important; */
  }
}

#PaiementIndexForm input.button {
  padding: 1rem 1.2rem 0.825rem 1.2rem;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 576px) {
  .section-phone-number.is-valid {
    border-color: inherit;
    box-shadow: inherit;
  }

  .section-phone-number.is-valid #list-country button,
  .section-phone-number.is-valid #GeoPhonePhone {
    border-color: #28a745 !important;
  }

  .section-phone-number.is-invalid {
    border-color: inherit;
    box-shadow: inherit;
  }

  .section-phone-number.is-invalid #list-country button,
  .section-phone-number.is-invalid #GeoPhonePhone {
    border-color: #dc3545 !important;
  }
}

.payment-card .payment-form label.error {
  font-size: 12px;
  margin-top: 5px;
  font-weight: normal;
  color: #dc3545;
  display: block;
}

#PaiementIndexForm .form-control, #PaiementIndexForm input {
  font-size: 1rem;
    line-height: 1.5;
    width: 100%;
    padding: 1rem calc(3rem) .825rem .825rem;
}

#CardNumber {
  background-image: url(/img/cards/credit-card.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 24px;
  background-position-x: 97%;
  -webkit-transition: background-image 0.3s ease-in-out;
  transition: background-image 0.3s ease-in-out;
}
#CardCvv {
  background-image: url(/img/cards/cvv.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 24px;
  background-position-x: 94%;
  -webkit-transition: background-image 0.3s ease-in-out;
  transition: background-image 0.3s ease-in-out;
}

/*copied from customer/home.ctp*/

.cs-select span {
  text-overflow: unset;
}
.cs-skin-elastic.cs-active .cs-options {
  height: 250px;
  overflow: auto;
  background: #ffffff;
  display: block;
}
.cs-skin-elastic .cs-options {
  display: none;
}
.home-section-02 {
  position: inherit;
}

/*------------------ New Geoloc ------------------*/
.is-new-geoloc h1 {
  z-index: 0;
}

.is-new-geoloc .list-country .dropdown-menu {
  max-height: 250px;
  overflow: auto;
}

/*------------------ List Geoloc ------------------*/
#map {
  height: 475px;
}

/*------------------ List country ------------------*/
.list-country > button {
  border: 1px solid #ced4da;
  background-color: #fff;
}
.list-country > button:hover,
.list-country > button:hover,
.list-country > button:focus {
  background-color: #eee;
}
.list-country > button.is-valid {
  border-color: #28a745;
}
.list-country > button.is-invalid {
  border-color: #dc3545;
}
.list-country .dropdown-menu {
  max-height: 250px;
  overflow: auto;
}
.list-country .dropdown-item:not(.disabled).active,
.list-country .dropdown-item:not(.disabled):active {
  background-color: #eee;
}
.list-country .dropdown-item.disabled > span {
  display: block;
  border-bottom: 1px solid #999;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.list-country .dropdown-menu li a {
  color: #58565c;
}
.list-country .dropdown-menu li a > span {
  color: #999;
}
.list-country .dropdown-menu li a:hover {
  text-decoration: none;
}
.list-country img {
  border-radius: 50px;
  top: -1px;
}
.list-country-search {
  border: 1px #ccc solid !important;
  padding: 10px 10px 5px 10px !important;
  color: #000 !important;
}
.list-country-search::placeholder {
  color: #666 !important;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.2em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

@media (max-width: 576px) {
  .list-country-search::placeholder {
    font-size: 8px !important;
  }
  input,
  input::-webkit-input-placeholder {
    font-size: 12px !important;
  }
}

.home-section-01 h1.title {
  font-size: 26px;
  /* white-space: nowrap; */
  line-height: 130%;
  color: #333;
  margin-bottom: 25px;
}
.home-section-01 {
  background-color: #f9fafe;
  min-height: 640px;
  padding-bottom: 70px;
}
.home-section-01 .hero-container {
  top: 40px;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home-section-01 .hero-img-container {
  padding: 0;
  margin-top: 45px;
}
.home-section-01 p {
  margin-bottom: 0;
}
.home-section-01 form {
  margin-top: 12px;
}

.home-section-01 .input-phone-number {
  height: auto;
}

.home-section-01::after {
  background: none;
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.hero-container p {
  font-size: 16px;
  line-height: 28px;
  color: #333;
}
.list-country button {
  background: #fff;
  border: 0 !important;
  border-radius: 999px;
  padding: 10px 16px;
}
.list-country button.dropdown-toggle::before {
  display: none !important;
}
.list-country button.dropdown-toggle::after {
  display: inline-block;
  position: relative;
  top: 3px;
  background: url(../../img/chevron-down-dark.svg);
  background-repeat: no-repeat;
  background-position: left;
  border: 0;
  height: 10px;
  width: 10px;
  background-size: contain;
}
#GeoPhoneHomeForm .form-control {
  background: #fff;
  border: 0;
  border-radius: 999px;
  padding: 18px 26px 16px;
  color: #212529;
}
#GeoPhoneHomeForm input[type="tel"].form-control {
  padding-left: 4px;
}
#GeoPhoneHomeForm .form-control::-webkit-input-placeholder {
  font-size: 15px;
  color: #888;
}
#GeoPhoneHomeForm .form-control:-ms-input-placeholder {
  font-size: 15px;
  color: #888;
}
#GeoPhoneHomeForm .form-control::-ms-input-placeholder {
  font-size: 15px;
  color: #888;
}
#GeoPhoneHomeForm .form-control::placeholder {
  font-size: 15px;
  color: #888;
}
#GeoPhoneHomeForm .form-control:active,
#GeoPhoneHomeForm .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* #GeoPhoneHomeForm .form-control::placeholder, */
#GeoPhoneHomeForm_2 .form-control::placeholder,
#GeoPhoneHomeForm_3 .form-control::placeholder {
  color: #888;
}
#GeoPhoneHomeForm_3 .form-control:active,
#GeoPhoneHomeForm_3 .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
#GeoPhoneHomeForm_3 input[type="tel"].form-control {
  color: black;
}
#check-phone-valid {
  margin: 0;
  border: 0 !important;
  color: #fff;
  padding: 18px 26px 16px;
  line-height: normal !important;
  border-radius: 999px;
  text-transform: none;
}
.navbar-toggler {
  padding: 0.75rem;
}
.home-description-mobile {
  display: none;
}
#sm-check-phone-valid {
    display: none;
    text-transform: none;
    font-size: 15px !important;
}
@media (max-width: 991.98px) {
  .home-section-01 {
    height: auto;
    min-height: initial;
  }
  .home-section-01 h1.title {
    white-space: initial;
    overflow: visible;
  }
  .home-section-01 .hero-container {
    padding-top: 15px;
    padding-bottom: 60px;
  }
  .home-section-01 .hero-container svg {
    padding-top: 60px;
  }
  .section-email,
  .section-phone-number {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  #check-phone-valid {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
  }
  .home-section-01::after {
    width: 100%;
    height: 100%;
    background-position: center 10%;
    background-size: 80%;
  }
  .input-phone-number {
    height: auto;
  }
}
@media (max-width: 768px) {
  .home-section-01 h1.title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  #GeoPhoneHomeForm input[type="tel"].form-control {
    padding-left: 8px;
    font-size: 16px !important;
  }
  .home-section-01 {
    padding-bottom: 30px;
    padding-top: 0;
  }
  .home-section-01 h1.title {
    font-size: 20px;
    margin-bottom: 0;
  }
  .home-section-01 .hero-img-container {
    padding: 0 15px 40px;
  }
  .home-description-mobile {
    display: block;
  }
  .home-description {
    display: none;
  }
  .home-section-01 .form-block {
    margin-top: 0;
    padding-bottom: 0;
  }
  .home-section-01 form {
    margin-top: 0;
  }
  .home-section-01 .hero-container svg {
    padding-top: 0;
  }
  .home-section-01 .hero-img-container {
    padding-top: 2rem;
    padding-bottom: 0;
  }
  .home-section-02 {
    padding-top: 30px;
  }
  .hero-container p {
    line-height: 24px;
  }
  #GeoPhoneHomeForm .form-control,
  #GeoPhoneHomeForm_2 .form-control,
  #GeoPhoneHomeForm_3 .form-control {
    padding: 12px 0px 10px 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: calc(100% - 128px);
    border-radius: 0 50px 50px 0;
    position: relative;
    margin: 0;
    top: 0px;
    /* font-size: 17px!important; */
  }
  #GeoPhoneHomeForm_2 .form-control {
    padding-top: 12px;
    padding-bottom: 9px;
  }
  #GeoPhoneHomeForm label,
  #GeoPhoneHomeForm_2 label {
    font-size: 14px;
  }
  #GeoPhoneHomeForm input[type="email"].form-control {
    width: 100%;
  }
  #GeoPhoneHomeForm .form-control::-webkit-input-placeholder {
    font-size: 16px;
  }
  #GeoPhoneHomeForm .form-control:-ms-input-placeholder {
    font-size: 16px;
  }
  #GeoPhoneHomeForm .form-control::-ms-input-placeholder {
    font-size: 16px;
  }
  #GeoPhoneHomeForm .form-control::placeholder {
    font-size: 16px !important;
  }
  #check-phone-valid {
    padding: 10px 20px 5px;
    display: none;
    /* border-radius: 5px; */
  }
  .list-country {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .list-country button {
    padding: 10px 10px;
    /* width: 129px; */
  }
  .input-phone-number .step {
    position: relative;
  }
  .input-phone-number .step.step-02 {
    display: block;
  }
  #MessageCookie {
    font-size: 11px;
  }
  #check-phone-valid_2 {
      display: none;
  }
  #sm-check-phone-valid {
      display: block;
  }
}

@media (max-width: 320px) {
  /* iphone 5 payment screen */
  .small-screen {
    display: none;
  }

  .payment-infos {
    font-size: 10px;
  }

  .payment-card h3.title p {
    font-size: 14px;
  }

  .payment-card .payment-form label {
    margin-top: 4px;
    font-size: 12px;
  }

  .terms label {
    font-size: 10px !important;
  }

  .payment-card .payment-form input[type="text"] {
    padding: 9px 8px 5px;
  }
}
/* MODAL FOR SVG ANIMATION */

/* Safari - fix for modal */
/* _::-webkit-full-page-media, _:future, :root body.modal-open {

    position: relative;
    overflow-y: auto;

  } */

body.modal-open {
  /* overflow: hidden; */
  /* position: fixed; */
  background: #ffffff;
}

.modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
}
@media (max-width: 768px) {
  .modal-dialog {
    min-height: calc(100vh - 20px);
  }
}

.modal {
  justify-content: center;
  align-items: center;
}
.modal-body {
  padding: 0;
}
.modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 10px;
  border: 0;
}
.modal-content .bg {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}
.modal-backdrop.show {
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
}

.btn-edit {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
  outline: none !important;
}

.btn-edit:hover span {
  color: #374e8e;
}

.pulse {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  height: 14px;
  width: 14px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 11px 0px 0px -12px;
  -webkit-transform: rotateX(55deg);
  -moz-transform: rotateX(55deg);
  -o-transform: rotateX(55deg);
  -ms-transform: rotateX(55deg);
  transform: rotateX(55deg);
  /* z-index: -2; */
}
.pulse:after {
  content: "";
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: absolute;
  margin: -15px 0 0 -13.5px;
  -webkit-animation: pulsate 2s ease-out infinite;
  -moz-animation: pulsate 2s ease-out infinite;
  -o-animation: pulsate 2s ease-out infinite;
  -ms-animation: pulsate 2s ease-out infinite;
  animation: pulsate 2s ease-out infinite;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-box-shadow: 0 0 1px 2px #89849b;
  box-shadow: 0 0 1px 2px #89849b;
  -webkit-animation-delay: 2.1s;
  -moz-animation-delay: 2.1s;
  -o-animation-delay: 2.1s;
  -ms-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
@-moz-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-o-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-moz-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@-webkit-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@-o-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-2000px) rotate(-45deg);
    -moz-transform: translateY(-2000px) rotate(-45deg);
    -o-transform: translateY(-2000px) rotate(-45deg);
    -ms-transform: translateY(-2000px) rotate(-45deg);
    transform: translateY(-2000px) rotate(-45deg);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(30px) rotate(-45deg);
    -moz-transform: translateY(30px) rotate(-45deg);
    -o-transform: translateY(30px) rotate(-45deg);
    -ms-transform: translateY(30px) rotate(-45deg);
    transform: translateY(30px) rotate(-45deg);
  }
  80% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
  }
}

img.card-type-visa {
  max-width: 40px;
}

img.card-type-mastercard {
  max-width: 120px;
  height: 22px;
}

.breadcrumb-item.complete a,
.breadcrumb-item.active a {
  color: #4a69bd;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #4a69bd;
}

.bg-details__map {
  overflow: hidden;
}

.bg-details__map img {
  margin: auto;
  max-width: 120px;
}

.payment_map_blurred {
  border: 2px solid #c2ceec;
  border-radius: 20px;
  height: 120px;
  background: #eee;
}

.bg-details span {
  display: block;
  color: #8894a6;
}

.bg-details span b {
  margin-left: 0 !important;
  font-weight: 600;
  font-size: 14px;
  color: #1f2e56;
}

.bg-details span.details-label {
  display: inline-block;
  font-size: 14px;
  width: 85px;
}

.map-marker {
  width: 50px;
  height: 50px;
  border-radius: 50% 50% 50% 0;
  background: #fff;
  border: 1px solid #4a69bd !important;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 0;
  top: 20px;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  -ms-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
}

.map-marker img {
  width: 50px;
  padding: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(45deg);
}

/*  --------- HOME LANDING OFFER BLOCK --------- */

.panel-row {
  gap: 2rem;
}

.panel-row .white-panel {
  padding: 0;
  box-shadow: none;
  border: 0;
  height: 100%;
  display: flex;
}

.panel-row .white-panel img {
  width: 50px;
  background: #fff;
  padding: 8px;
  margin: auto 0;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 6%);
}

.panel-row .white-panel p {
  margin: auto 0;
  text-align: left;
  font-size: 12px;
  padding-left: 12px;
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (max-width: 1199px) {
  .panel-row {
    margin: 10px 6px 0px 6px;
  }
  .home-section-01 .hero-img-container {
    margin-top: 45px;
  }
}

@media (max-width: 992px) {
  .panel-row {
    width: 100%;
    margin: 20px 6px 0px 6px;
    grid-template-columns: 1fr 1fr;
    gap: 0.5em;
  }
  .panel-row .white-panel p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .panel-row {
    width: 100%;
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .panel-row .white-panel p {
    font-size: 16px;
  }
}

/* Home offer block */

.home-section-03 .card__offer {
  position: relative;
  min-height: 400px;
}

.home-section-03 h3.title {
  font-size: 26px;
}

.home-section-03 .card__offer small {
  margin: auto 0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 10px 0;
  background-color: #4a69bd;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  padding: 3px 12px;
}

.home-section-03 .card__offer ul li {
  padding: 10px 0;
}

.home-section-03 a.button {
  padding: 11px 24px 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  -webkit-appearance: none;
  text-transform: capitalize;
}

.home-section-03 .pricing {
  display: flex;
  justify-content: center;
  text-align: center;
}

.home-section-03 .price {
  color: #4a69bd;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: normal;
}

.duration-arrow > span {
  position: relative;
  background-color: #4a69bd;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  height: 16px;
  margin-left: -10px;
  padding-left: 10px;
  padding-right: 6px;
}

.duration-arrow > span::after {
  border-bottom: 8px solid transparent;
  border-left: 12px solid #4a69bd;
  border-top: 8px solid transparent;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: -12px;
  top: 0;
  width: 0;
}

/*  ----------- UPDATED ANIMATION LOADER / MODAL -----------  */

#animationModal .modal-dialog {
  max-width: 400px;
}

#animationModal .modal-content {
  background-image: url("../../img/map.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  transition: background-size 0.6s ease-in-out;
}

.expanded-background {
  background-size: 300% 300% !important;
}

#animationModal .logo-image {
  width: 110px;
  margin: 0;
  margin-bottom: 1rem;
}

#animationModal .discovered {
  width: 160px;
  margin: auto;
}

#animationModal .spinner {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top: 3px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lottieplayer {
  width: 160px;
  margin: auto;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 999px;
}

.checkmark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  stroke-width: 3;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #f6b93b;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #f6b93b;
  }
}

#animationModal p {
  font-size: 13px;
  margin-bottom: 0 !important;
}

#animationModal .flag-icon {
  width: 20px;
  height: 16px;
  border-radius: 10px;
}

.modal-text-container {
  display: block;
}

.modal-text {
  display: flex;
  flex-direction: row;
  justify-content: start;
}

.modal-text p {
  font-weight: 600;
}

.modal-text svg {
  margin-right: 6px;
}

.modal-completed {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.modal-completed p {
  font-weight: 600;
  margin: auto 0;
}

@media (max-width: 768px) {
  .modal-text-1,
  .modal-text-2,
  .modal-text-3,
  .modal-text-4 {
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }
  #animationModal .loader-txt p {
    margin-left: 0;
    margin-bottom: 10px;
  }
  #loadingModal .lottieplayer {
    width: 180px;
  }
}

#paymentLoader {
    margin-left: auto;
    margin-right: auto;
    width: 55px;
    height: 55px;
    border: 8px solid #eee;
    border-top: 8px solid #4a69bd;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
