/* Add here all your CSS customizations */
.load-wrapp {
  float: left;
  width: 50px;
  height: 100px;
  margin: 0 10px 10px 0;
  padding: 20px 20px 20px;
  border-radius: 5px;
  text-align: center;
  background-color: white;
}

.load-wrapp p {
  padding: 0 0 20px;
}

.load-wrapp:last-child {
  margin-right: 0;
}

.line {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #4b9cdb;
}

.ring-1 {
  width: 10px;
  height: 10px;
  margin: 0 auto;
  padding: 10px;
  border: 7px dashed #4b9cdb;
  border-radius: 100%;
}

.ring-2 {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  border: 4px solid #4b9cdb;
  border-radius: 100%;
}

.ball-holder {
  position: absolute;
  width: 12px;
  height: 45px;
  left: 17px;
  top: 0px;
}

.ball {
  position: absolute;
  top: -11px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #4282b3;
}

.letter-holder {
  padding: 16px;
}

.letter {
  float: left;
  font-size: 14px;
  color: #777;
}

.square {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background-color: #4b9cdb;
}

.spinner {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 auto;
}

.bubble-1,
.bubble-2 {
  position: absolute;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #4b9cdb;
}

.bubble-2 {
  top: auto;
  bottom: 0;
}

.bar {
  float: left;
  width: 15px;
  height: 6px;
  border-radius: 2px;
  background-color: #4b9cdb;
}

/* =Animate the stuff
------------------------ */
.load-1 .line:nth-last-child(1) {
  animation: loadingA 1.5s 1s infinite;
}

.load-1 .line:nth-last-child(2) {
  animation: loadingA 1.5s 0.5s infinite;
}

.load-1 .line:nth-last-child(3) {
  animation: loadingA 1.5s 0s infinite;
}

.load-2 .line:nth-last-child(1) {
  animation: loadingB 1.5s 1s infinite;
}

.load-2 .line:nth-last-child(2) {
  animation: loadingB 1.5s 0.5s infinite;
}

.load-2 .line:nth-last-child(3) {
  animation: loadingB 1.5s 0s infinite;
}

.load-3 .line:nth-last-child(1) {
  animation: loadingC 0.6s 0.1s linear infinite;
}

.load-3 .line:nth-last-child(2) {
  animation: loadingC 0.6s 0.2s linear infinite;
}

.load-3 .line:nth-last-child(3) {
  animation: loadingC 0.6s 0.3s linear infinite;
}

.load-4 .ring-1 {
  animation: loadingD 1.5s 0.3s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}

.load-5 .ball-holder {
  animation: loadingE 1.3s linear infinite;
}

.load-6 .letter {
  animation-name: loadingF;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-direction: linear;
}

.l-1 {
  animation-delay: 0.48s;
}

.l-2 {
  animation-delay: 0.6s;
}

.l-3 {
  animation-delay: 0.72s;
}

.l-4 {
  animation-delay: 0.84s;
}

.l-5 {
  animation-delay: 0.96s;
}

.l-6 {
  animation-delay: 1.08s;
}

.l-7 {
  animation-delay: 1.2s;
}

.l-8 {
  animation-delay: 1.32s;
}

.l-9 {
  animation-delay: 1.44s;
}

.l-10 {
  animation-delay: 1.56s;
}

.load-7 {
  font-size: 2em;
}

.load-7 .square {
  animation: loadingG 1.5s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
  background-color: #e4216a !important;
  margin-left: -30px;
}

.load-8 .line {
  animation: loadingH 1.5s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}

.load-9 .spinner {
  animation: loadingI 2s linear infinite;
}

.load-9 .bubble-1,
.load-9 .bubble-2 {
  animation: bounce 2s ease-in-out infinite;
}

.load-9 .bubble-2 {
  animation-delay: -1s;
}

.load-10 .bar {
  animation: loadingJ 2s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}

@keyframes loadingA {
  0% {
    height: 15px;
  }

  50% {
    height: 35px;
  }

  100% {
    height: 15px;
  }
}

@keyframes loadingB {
  0% {
    width: 15px;
  }

  50% {
    width: 35px;
  }

  100% {
    width: 15px;
  }
}

@keyframes loadingC {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes loadingD {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loadingE {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loadingF {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loadingG {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(70px, 0) rotate(360deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes loadingH {
  0% {
    width: 15px;
  }

  50% {
    width: 35px;
    padding: 4px;
  }

  100% {
    width: 15px;
  }
}

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

@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

@keyframes loadingJ {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(80px, 0);
    background-color: #f5634a;
    width: 25px;
  }
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #02020236;
  z-index: 999;
}

#loader {
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 30%;
  transform: translate(-50%, -50%);
}

.square-holder {
  /* text-align: center; */
  width: 30px;
  margin: auto;
  margin-top: 50px;
}

.load-7 {
  font-size: 20px;
  margin-bottom: 15px;
  margin: auto;
  vertical-align: middle;
  margin-top: 15%;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  animate: 0.2s;
  background: #03a9f4;
  border-radius: 25px;
}

input[type="range"]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 1);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
}

.ec-infoperso {
  border-top-color: #e4216a !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.ec-infoperso-div {
  width: 100% !important;
  margin: 0 !important;
}

.hr-ec-infoperso {
  margin-top: 0px;
  background-image: -webkit-linear-gradient(left, transparent, #e4216a, transparent);
  background-image: linear-gradient(to right, transparent, #e4216a, transparent);
}

.h3-ec-infoperso {
  margin-bottom: 10px;
}

.ul-ec-infoperso {
  list-style: none;
}

.ec-div-info {
  padding: 10px;
}

html .featured-box-primary .box-content {
  border-top-color: #e4216a;
}

.swal2-popup {
  font-size: 1.6rem !important;
}

.card-choose {
  background-color: white;
  min-height: 200px;
  padding: 20px;
  margin: 15px;
  border-radius: 7px;
}

.card-choose-text {
  color: black !important;
  text-align: center;
  font-size: 1.6em !important;
  font-weight: bold;
}

.bloc-search {
  position: relative;
  transition: 0.5s;
}

.bloc-search:hover {
  background-color: #fdc7e2;
  border: solid 1px #e4216a;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  -moz-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  cursor: pointer;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.icon-choose {
  font-size: 3em;
  padding: 5px;
}

.bloc-immat {
  text-align: center;
  background-color: white;
  padding: 15px;
  margin: 20px;
  border-radius: 7px;
}

.input {
  font-size: 2em;
  padding: 25px !important;
}

.inputImmat {
  text-align: center;
  text-transform: uppercase;
}

#sigle-immat {
  background-color: #003399;
  color: white;
  font-size: 1.4em;
  width: 38px;
}

#sigle-immat:after {
  content: url("/img/auto/eu.svg");
  position: absolute;
  width: 26px;
  top: 3px;
  left: 6px;
}

.bloc-immat-center {
  margin: 30px !important;
  min-height: 175px;
}

.pos-center-bottom {
  position: absolute;
  bottom: 5px;
  left: 14px;
}

.center-block {
  float: none !important;
}

.left-block {
  float: left !important;
}

.right-block {
  float: right !important;
}

.logo-marque {
  width: 70px;
}

.bouton-marque {
  cursor: pointer;
  border-radius: 7px;
  border: #ccc solid 1px;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 10px 0 10px 0;
  width: 100%;
  height: 105px;
}

.bouton-marque:hover {
  border: #e4216a solid 1px;
}

.bloc-scroll {
  overflow-y: auto;
  max-height: 395px;
}

.elsassur-scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f5f5f5;
}

.elsassur-scroll::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}

.elsassur-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #e4216a;
}

.bouton-modele {
  font-size: 1.6em;
  text-align: left;
}

.finition {
  font-size: 1.5em;
  text-align: left;
}

.bouton-modele:hover,
.finition:hover {
  cursor: pointer;
  background-color: #eeeeee;
}

.title-logo-marque {
  width: 75px;
}

.marque-title-modele {
  text-transform: capitalize;
}

.icon-choice {
  width: 60px;
}

.bouton-valid-immat {
  cursor: pointer;
  width: 120px;
  padding: 10px;
  border-radius: 7px;
}

.bouton-valid-immat p {
  margin: 0;
}

.bouton-retour-marque {
  cursor: pointer;
  width: 120px;
  padding: 10px;
  border-radius: 7px;
}

.bouton-retour-marque p {
  margin: 0;
}

.bouton-suivant-marque {
  cursor: pointer;
  width: 120px;
  padding: 10px;
  border-radius: 7px;
}

.bouton-suivant-marque p {
  margin: 0;
}

.finition {
  line-height: 1.3;
}

.annee-production {
  font-size: 0.8em;
}

.bloc-validation-immat {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.bloc-saisie-immat {
  display: flex;
  justify-content: center;
}

.bloc-saisie {
  max-width: 250px;
  margin: auto;
}

.logo-marque[alt] {
  color: white;
  font-size: 0px;
}

.logo-marque:before {
  content: " ";
}

.f-left {
  float: left;
}

.logo-marque:after {
  content: " " attr(alt);
  font-weight: bold;
  font-size: 15px;
  font-style: normal;
  color: #555555;
  display: block;
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  word-break: break-all;
}

.loader-text {
  color: black !important;
}

.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 20px auto 5px auto;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #e4216a;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

.limit-max-alert {
  color: black !important;
  margin-top: 10px;
}

p .limit-max-alert {
  color: black !important;
  margin: 0 !important;
}

.btn-pink {
  background-color: #feddee;
  border: solid 1px #e4216a;
  border-radius: 0;
}

.btn-gray {
  background-color: #f9f9f9;
  border: solid 1px #ccc;
  border-radius: 0;
}

.btn-opacity {
  opacity: 0.6;
}

.bloc-border {
  border: solid 1px #ccc;
  border-radius: 0;
}

.bgc-lightgray {
  background-color: white !important;
}

.bouton-retour-cv {
  margin-left: 15px;
}

.h2-vehiculier {
  margin-bottom: 20px;
}

.selection-marque,
.selection-modele,
.selection-date-immat,
.selection-carburant,
.selection-boite,
.selection-carrosserie,
.selection-cv {
  display: inline-block;
  background-color: #e4216a;
  padding: 2px 7px;
  border-radius: 12px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  margin-right: 5px;
}

.selection-group {
  margin-bottom: 20px;
}

.selection-container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selection-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 4px;
  left: 10px;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius: 3px;
}

.selection-container input:checked ~ .checkmark {
  background-color: #fff;
}

.selection-container input:checked:disabled ~ .checkmark {
  background-color: lightgray;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.selection-container input:checked ~ .checkmark:after {
  display: block;
}

.selection-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 7px;
  height: 11px;
  border: solid #e4216a;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.swal2-styled.swal2-confirm {
  background-color: #e4216a !important;
}

@media (max-width: 480px) {
  .bloc-immat {
    margin: 0;
  }

  .list-group {
    padding-right: 0 !important;
  }

  .bouton-retour-marque {
    margin-top: 15px;
  }

  .bouton-suivant-marque {
    margin-top: 15px;
  }

  .card-choose {
    margin: 15px 0;
  }

  #marque-modele,
  #immat {
    padding-left: 0;
    padding-right: 0;
  }

  .retour-responsive-mobile {
    width: auto;
  }

  .retour-responsive-mobile-2 {
    width: auto;
    margin: 0 15px;
  }

  .bloc-immat-center {
    margin: 0 !important;
  }
}

#map {
  height: 780px;
}

.col {
  flex: 1 0 0%;
}

.border-gray {
  border: 1px solid #dee2e6 !important;
}

.pricing-block .plan-price .price .price-unit {
  font-size: 50%;
  line-height: 1.4;
}

.pricing-block > .row > div:nth-child(1) {
  padding: 27.2px;
  padding: 1.7rem;
}

.pricing-block > .row {
  margin-right: 0;
  margin-left: 0;
}

.pricing-block > .row > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27.2px;
  padding: 1.7rem;
  background: #f7f7f7;
  text-align: center;
  border-left: 1px solid #dee2e6;
  border-radius: 0 4px 4px 0;
}

.flex-bottom {
  display: flex;
  flex-direction: column;
}

.pricing-block .plan-price {
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
  border-top: 0;
  border-bottom: 0;
  text-align: center;
}

.pricing-block .plan-price .price-label {
  text-transform: uppercase;
  color: #777;
  line-height: 1;
  margin-bottom: 0;
}

.pricing-block .plan-price .price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 43.2px;
  font-weight: 700;
  line-height: 1;
  color: #212529;
}

.price {
  display: flex;
  align-items: center;
  min-height: 28px;
}

.btn.btn-xl {
  padding: 12.8px 32px;
  padding: 0.8rem 2rem;
}

.btn-modern {
  text-transform: uppercase;
  font-size: 0.8em;
  padding: 12.8px 24px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row-2 {
  display: flex;
  flex-direction: row;
}

.filtre-auto {
  background-color: #f9f9f966;
  /* border-left: #e4216a 3px solid !important; */
  border-top: #e4216a 3px solid !important;
  display: flex;
}

.filtre-auto-title {
  border-right: 1px solid #dee2e6;
  display: flex;
  align-items: center;
}

#showInfosCodeUsage:hover {
    cursor: pointer;
}

@media (max-width: 992px) {
  .flex-row {
    flex-direction: column;
  }

  .flex-top {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
  }

  .filtre-auto {
    flex-direction: column;
    border-left: 1px solid #dee2e6 !important;
  }

  .filtre-auto-title {
    border-bottom: #e4216a 3px solid !important;
    justify-content: center;
    padding-top: 10px;
  }

  .filtre-auto-content {
    display: flex;
  }
}

.ul-sante-tarif {
  display: grid;
  padding: 10px !important;
  grid-template-columns: repeat(2, 0.8fr);
  list-style: none;
}

.sante-list-action {
  flex-direction: column;
  display: unset !important;
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.ul-sante-tarif li .progress {
  min-width: 200px !important;
  background-color: rgba(0, 0, 0, 0.11);
  margin: 10px 30px 10px 0;
}

.btn-custom-sante {
  width: 80% !important;
  white-space: normal;
}

.custom-img-apreva {
  height: 80px !important;
  padding: 10px;
}

.custom-img-apivia {
  height: 100px !important;
}

.custom-img-2mamip {
  height: 90px !important;
  padding: 10px;
}

.custom-img-malj {
  height: 140px !important;
}

.custom-img-neoliane {
  height: 90px !important;
  padding: 10px;
}

.sante-price {
  font-size: 2em;
}

.carte:hover {
  transform: scale(1.02);
}

.infouser {
  font-size: 17px;
}

.h3-affaire {
  color: #e4216a;
  text-align: center;
}

.affaire {
  border-top-color: #e4216a !important;
  border-bottom: 1px solid grey !important;
}

.bloc-affaire {
  width: 100% !important;
  margin: 0 !important;
  padding-top: 10px !important;
}

.text-bloc-affaire {
  font-size: 15px !important;
  color: grey;
}

.immatriculation {
  font-size: 20px !important;
}

.btn-primary:hover {
  color: #f4f4f4 !important;
  background-color: #e73879 !important;
}

.btn-primary:focus {
  color: #f4f4f4 !important;
  background-color: #e4216a !important;
}

.dropdown-menu > li > a:hover {
  color: #f4f4f4 !important;
  background-color: #e4216a !important;
}

@media (max-width: 800px) {
  .ul-sante-tarif {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.call-to-action-btn a {
  background-color: #e4216a;
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
}

.toggle > label + p {
  color: #555;
}

.owl-next {
  margin-bottom: 0px;
}

section.section {
  padding-top: 20px !important;
  padding-bottom: 0 !important;
}

.img-contenu-small {
  width: 300px;
  margin-left: 50px;
  border-radius: 5%;
}

.img-contenu-big {
  display: flex;
  width: 500px;
  margin-left: 0px;
  border-radius: 5%;
  padding: 20px;
}

.grille-tarifaire {
  display: grid;
  grid-template-columns: 50% 50%;
  margin: auto;
}

.grille-tarifaire ul {
  list-style: none;
  padding-left: 0px;
  width: 375px;
  margin: 55px auto;
  text-align: left;
}

.grille-tarifaire li {
  padding: 0px !important;
  margin: 0px;
  line-height: 25px;
}

.grille-tarifaire .bloc-tarif {
  grid-column-start: 1;
  grid-column-end: 3;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 2%;
  padding-top: 25px;
  margin: auto;
  margin-top: 50px;
  width: 100%;
}

.grille-tarifaire .bloc-detail {
  background-color: #e7e7e7;
}
.grille-tarifaire img {
  width: 100%;
  margin: 0px;
  padding: 0px;
}

@media (max-width: 1198px) {
  .img-contenu-big{
    justify-content: center;
  }
  .grille-tarifaire {
    display: block;
  }

  .grille-tarifaire ul {
    margin: 0px auto;
    text-align: center;
    width: 100%;
  }

  .grille-tarifaire .bloc-tarif {
    margin-top: 0px;
  }
}

.categorie-megamenu {
  color : #e4216a !important;
  margin-bottom: 5px !important;
}

.title-megamenu {
  color : #ffff!important;
  background-color: #e4216a !important;
  padding : 0px 5px !important;
}


@media (max-width: 1198px) {
  
}