.kbm-form-container {
    display: flex;
    flex-direction: row;
    gap:5px;
    min-height: 450px;
    justify-content: center;
}

.kbm-steps-menu {
    flex: 1;
    max-width: 200px;
    padding: 5px;
    border-right: 2px solid #ddd;
}

#kbm-booking-menu label {
    display: block;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px; /* Ajuste l'espace en dessous du label */
}

.kbm-form-content {
    flex: 2;
    max-width: 700px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Assure que les éléments sont alignés en haut */
}

.kbm-step {
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    text-align: center;
}

.kbm-step.active {
    background-color: var(--wp--preset--color--base);
    color: white;
}

.kbm-step.completed {
    background-color: var(--wp--preset--color--base-2);
    color: white;
}

.kbm-step.future {
    background-color: #ddd;
    color: #666;
}

.kbm-form-step h2 {
    margin-top: 0; /* Réinitialise la marge supérieure du titre à l'intérieur du bloc */
    margin-bottom: 20px; /* Ajoute un espace en dessous du titre */
    text-align: center;
}

.kbm-form-step h3 {
    text-align: center;
}

.kbm-form-step {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.kbm-form-step.show {
    display: block;
    opacity: 1;
}

.kbm-form-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.kbm-form-group label {
    flex: 1;
    margin-right: 10px;
    font-weight: bold;
    text-align: right;
}

.kbm-form-group input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.kbm-form-group .iti {
    flex: 1;
    font-size: 16px;
}


.kbm-form-buttons {
    display: flex;
    justify-content: space-between; /* Espace entre les boutons */
    padding: 10px 0; /* Espace autour des boutons */
}

/* Style spécifique pour les boutons de navigation suivants */
.kbm-form-buttons .kbm-next-btn {
    margin-left: auto; /* Pousse les boutons suivants à droite */
}

/* Style spécifique pour les boutons de navigation précédents */
.kbm-form-buttons .kbm-prev-btn {
    margin-right: auto; /* Pousse les boutons précédents à gauche */
}

.kbm-btn {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: var(--wp--preset--color--base-2);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    align-self: center; 
}

.kbm-prev-btn {
    background-color: grey;
}

.kbm-mobile-show{
    display: none;
}

.kbm-btn:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

.kbm-hidden {
    display: block;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out;
}

.kbm-visible {
    display: block;
    opacity: 1;
    height: auto;
    transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out;
}

.kbm-hidden-menu {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.kbm-visible-menu {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.kbm-important-note {
    background-color: #f8f9fa;
    border-left: 4px solid var(--wp--preset--color--base);
    padding: 10px;
    margin: 15px 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.kbm-important-note p {
    margin: 0 0 10px;
}

.kbm-important-note ul {
    padding-left: 20px;
    margin: 0;
    list-style-type: disc;
}

.kbm-important-note ul li {
    margin-bottom: 5px;
}

/* Style pour la partie Parcours du formulaire */ 

.kbm-routes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.kbm-route-button {
    border: 2px solid transparent; /* Couleur de bordure par défaut */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 1rem;
    width: 100%;
    max-width: 300px;
    text-align: left;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.kbm-route-button[disabled]{
    background-color: rgb(186, 186, 186);
    cursor: not-allowed;
}

.kbm-min-persons-message {
    font-size: 2 rem;
    font-weight: bold;
    color: #d9534f; /* Couleur rouge pour indiquer une alerte */
    margin-top: 0.5rem; /* Espacement par rapport au contenu du bouton */
    text-align: center; /* Centrer le message sous le contenu */
}


.kbm-route-button:hover {
    background-color:  #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.kbm-route-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kbm-route-name {
    font-size: 1.2rem;
    font-weight: bold;
    flex: 1;
}

.kbm-route-details {
    font-size: 0.9rem;
    text-align: right;
    flex: 1;
}

.kbm-route-details span {
    display: block;
    margin-bottom: 0.2rem;
}

.kbm-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.kbm-filter-button {
    background-color: #e0e0e0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.kbm-filter-button.active {
    background-color: #2771d8;
    color: white;
}

.kbm-route-button.selected {
    border: 4px solid ; /* Bordure plus épaisse pour la route sélectionnée */
    background-color: #2771d8; /* Couleur de fond différente pour la route sélectionnée */
    color: white;
}

.kbm-menu-icon{
    display:none;
}

/* Style pour les écrans de taille moyenne */
@media (max-width: 768px) {

    .kbm-form-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 10px auto;
        width: 90%;
    }

    .kbm-form-group label {
        display: block;
        margin-bottom: 0.5rem;
        text-align: center; /* Centre le texte du label */
    }

    .kbm-form-group input {
        width: 100%;
        max-width: 400px; /* Limite la largeur de l'input */
    }

    .kbm-mobile-show{
        display: block;
    }

    .kbm-mobile-hide{
        display: none;
    }

    .kbm-form-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .kbm-form-buttons .kbm-btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    /** gestion des boutons du menu **/
    .kbm-steps-menu {
        max-width: 55px; /* Réduit la largeur du menu sur mobile */
    }

    .kbm-step {
        font-size: 0; /* Cache le texte */
        border-radius: 25px;
    }
    
    /*
    .kbm-step::before {
        content: attr(data-step);
        font-size: 16px;
        font-weight: bold;
    }
    */

    .kbm-menu-icon {
        fill: #f6f6f6; /* Couleur de l'icône */
        /*background-color: #f1c40f; /* Couleur de fond */
        display: inline;
    }

}

@media (max-width: 450px){
    .kbm-form-container{
        flex-direction: column;
    }
    
    .kbm-steps-menu {
        max-width: 100%;
        display: flex;
        flex-direction: row;
        flex: 1;
        border-right: 0;
        width: 95%;
        justify-content: space-between;
        align-items: center;
    }

    .kbm-step {
        padding: 10px;
        width: 6%;
        margin: 2px;
    }

    #kbm-booking-menu label {
        margin-bottom: 0px;
        margin-right: 3px;
    }
}


/* Step 3 */

.kbm-form-date-picker {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flatpickr-input:focus {
    border-color: #4889e0;
}

.flatpickr-input {
    border: 1px solid #c3c3c3;
    border-top-color: rgb(195, 195, 195);
    border-right-color: rgb(195, 195, 195);
    border-bottom-color: rgb(195, 195, 195);
    border-left-color: rgb(195, 195, 195);
    height: 36px;
    line-height: 36px;
    width: 90%;
    border-radius: 3px;
    background: #fff;
    text-align: center;
    font-size: 24px;
}

.kbm-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto; /* Centrer le spinner */
}
  
@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}

  /* Slot */
#slots-container {
    display: grid;
    gap: 10px; /* Espacement entre les boutons */
    padding: 10px; /* Ajouter un peu de padding autour des boutons */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Crée des colonnes responsives */
}
  
.slot-button {
    display: flex;
    justify-content: space-between; /* Espacement entre l'heure et les autres infos */
    align-items: center;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-align: left;
    position: relative;
}
  
.slot-button.available {
    border-color: #4caf50; /* Green background for available slots */
    background-color: white;
}
  
.slot-button:hover.available {
    border-color: #45a049; /* Slightly darker green on hover */
    background-color: var(--wp--preset--color--base-2);
}
  
.slot-button:active.available {
    border-color: var(--wp--preset--color--base); /* Darker border on click */
}
  
.slot-button:disabled {
    background-color: #d3d3d3; /* Gray background for disabled slots */
    color: #a0a0a0; /* Gray text color */
    cursor: not-allowed; /* Indicate that the button is not clickable */
}

.slot-button.available_offline {
    background-color: #F1F3C2;
    color: black;
}


.slot-button.selected {
    border: 4px solid ; /* Bordure plus épaisse pour la route sélectionnée */
    background-color: #2771d8; /* Couleur de fond différente pour la route sélectionnée */
    color: white;
}
  
.slot-button .slot-time {
    font-size: 24px; /* Larger font size for the time */
    font-weight: bold;
    flex: 1; /* Take as much space as possible on the left */
    text-align: left; /* Align text to the left */
}
  
.slot-button .slot-info {
    font-size: 16px; /* Smaller font size for additional info */
    flex: 2; /* Take more space on the right */
    text-align: right; /* Align text to the right */
}
  
.slot-button .slot-info span {
    display: block;
}


  
/* Responsive Design */
@media (max-width: 768px) {
    #slots-container {
      grid-template-columns: 1fr; /* 1 column on mobile devices */
    }
}
  
 /********************************/
/** Style pour les bateaux **/ 

.kbm-boat-type {
    margin-bottom: 20px;
}

.kbm-boat-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    display: flex; /* Utilisation de flexbox pour aligner le titre et les tarifs */
    align-items: center; /* Centre verticalement les éléments */
    justify-content: space-between; /* Espace entre le titre et les tarifs */
}

.kbm-boat-title .kbm-boat-maximum {
    font-size: 0.7em; /* Taille de police plus petite pour les tarifs */
    color: #555; /* Couleur grisée pour les tarifs pour moins de contraste */
}

.kbm-boat-rates {
    display: flex; /* Affiche les tarifs en ligne */
    gap: 15px; /* Espace entre les tarifs */
    font-size: 0.7em; /* Taille de police plus petite pour les tarifs */
    color: #555; /* Couleur grisée pour les tarifs pour moins de contraste */
}

.kbm-boat-rates span {
    display: inline-block; /* Affiche chaque tarif sur une seule ligne */
}


.kbm-boat-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}


.kbm-boat-btn {
    width: 100%;
    box-sizing: border-box; /* Inclut le padding et la bordure dans la largeur totale */
    background-color: #ffffff; /* Fond blanc par défaut */
    color: #333; /* Texte en couleur sombre */
    border: 2px solid #4caf50; /* Bordure verte */
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 1em;
    display: flex;
    justify-content: space-between; /* Aligne le nom à gauche et les infos à droite */
    align-items: center; /* Centre verticalement les éléments */
    min-height: 60px;
}

.kbm-boat-btn:disabled {
    background-color: #d3d3d3; /* Gray background for disabled slots */
    color: #a0a0a0; /* Gray text color */
    cursor: not-allowed; /* Indicate that the button is not clickable */
}

.kbm-boat-btn:hover {
    background-color: #f1f1f1; /* Change le fond en survolant */
}


.kbm-boat-btn-name {
    font-weight: bold;
    margin-right: 10px;
    text-align: left; /* Assure que le texte du nom est aligné à gauche */
}

.kbm-boat-btn-info {
    display: flex;
    flex-direction: column; /* Les infos s'affichent sur plusieurs lignes */
    align-items: flex-end; /* Aligne les informations à droite */
    font-size: 0.9em;
    text-align: right; /* Assure que le texte des infos est aligné à droite */
    margin-bottom: 5px; /* Espace entre les lignes d'infos */
}


.kbm-selected-boats-sticky {
    position: sticky;
    top: 82px;
    z-index: 9;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.kbm-selected-boats-sticky h3 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.kbm-selected-boats-sticky .kbm-form-buttons {
    padding: 10px;
}

.kbm-selected-boats-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 20px;
    padding: 10px;
    font-size: 14px;
    color: #333;
    min-height: 59.6px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    border: 1px solid #ddd;
    padding: 8px 12px; /* Augmenter le padding pour plus d'espace autour du contenu */
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px; /* Réduire l'espace entre les éléments pour compacité */
    font-size: 16px; /* Taille de police plus grande pour améliorer la lisibilité */
    position: relative;
}

.summary-item-count {
    font-weight: bold;
    display: inline-block;
}

.summary-item-text {
    display: inline-block;
}

.remove-boat-icon,
.remove-boat-decrement {
    cursor: pointer;
    font-size: 24px; /* Garder la taille de la police des signes "-" et "X" */
    padding: 4px; /* Réduire le padding interne pour réduire la taille globale des boutons */
    border-radius: 50%;
    text-align: center;
    line-height: 32px; /* Aligner verticalement le texte */
}

.remove-boat-icon {
    color: #e74c3c;
}

.remove-boat-icon:hover {
    background-color: #f8d7da;
    color: #c82333;
}

.remove-boat-decrement {
    color: #007bff;
    margin-left: 25px; /* Réduire l'écart entre les boutons */
}

.remove-boat-decrement:hover {
    background-color: #d6e9f5;
    color: #004085;
}



@media (max-width: 768px) {
    .kbm-boat-title {
        flex-direction: column; /* Empile le titre et les tarifs sur les petits écrans */
        align-items: flex-start; /* Aligne le texte à gauche */
    }

    .kbm-boat-rates {
        margin-top: 5px; /* Ajoute un espace entre le titre et les tarifs sur les petits écrans */
        font-size: 0.8em; /* Réduit encore la taille de la police sur les petits écrans */
    }

    .kbm-boat-btn {
        flex: 1 1 100%; /* 1 colonne sur les petits écrans */
    }
}


/* Le summary */
.kbm-summary-group {
  display: flex;
  margin-bottom: 20px; /* Espace entre chaque groupe */
}

.kbm-summary-group-label {
  flex: 0 0 150px; /* Largeur fixe pour le label du groupe */
  background-color: #f0f0f0; /* Couleur de fond pour distinguer le label */
  padding: 10px;
  display: flex;
  align-items: center; /* Centrage vertical */
  justify-content: center; /* Centrage horizontal */
}

.kbm-summary-group-infos {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid #ddd; /* Bordure autour des infos */
}

.kbm-summary-info {
  display: flex;
  margin-bottom: 10px; /* Espace entre chaque paire label/valeur */
}

.kbm-summary-label {
  flex: 0 0 100px; /* Largeur fixe pour le label de chaque info */
  font-weight: bold;
  text-align: right;
}

.kbm-summary-value {
  flex: 1;
  text-align: left;
  padding-left: 10px; /* Espace entre le label et la valeur */
}

#summary_rates {
  display: flex;
  flex-direction: column;
}

.rate-summary-item {
  display: flex;
  justify-content: space-between;
}

.rate-summary-quantity-price {
  flex-basis: 35%; /* Adjusts the width of the first column */
  text-align: left;
}

.rate-summary-description {
  flex-basis: 65%; /* Adjusts the width of the second column */
  text-align: left; /* Aligns the text to the left for better appearance */
  padding-left: 5px;
}
  

/* Partie mobile */
@media (max-width: 768px) {
  .kbm-summary-group {
    flex-direction: column; /* Disposer les éléments en colonne */
  }

  .kbm-summary-group-label {
    width: 100%; /* Prendre toute la largeur disponible */
    flex: none; /* Désactiver le comportement flex */
    margin-bottom: 10px; /* Ajouter un espace en bas du label */
  }

  .kbm-summary-group-infos {
    border: 0;
  }
}


#kbm-booking-form-success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    border-radius: 8px;
    padding: 15px;
    color: #3c763d;
    font-family: Arial, sans-serif;
    margin-top: 20px;
    text-align: center;
}

#kbm-booking-form-error {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    border-radius: 8px;
    padding: 15px;
    color: #763c3c;
    font-family: Arial, sans-serif;
    margin-top: 20px;
    text-align: center;
}

#kbm-booking-form-error button{
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

/* STRIPE */
#kbm-booking-payment-container{
    display: flex;
    justify-content: center;
}


#payment-stripe-form {
    align-self: center;
    box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
      0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    padding: 40px;
    margin-top: auto;
    margin-bottom: auto;
}
  
#payment-stripe-form .hidden {
    display: none;
}
  
#payment-message {
    color: rgb(105, 115, 134);
    font-size: 16px;
    line-height: 20px;
    padding-top: 12px;
    text-align: center;
}
  
#payment-element {
    margin-bottom: 24px;
}
  
/* Buttons and links */
#payment-stripe-form button {
    background: #0055DE;
    font-family: Arial, sans-serif;
    color: #ffffff;
    border-radius: 4px;
    border: 0;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
}
#payment-stripe-form button:hover {
    filter: contrast(115%);
}
#payment-stripe-form button:disabled {
    opacity: 0.5;
    cursor: default;
}
  
/* spinner/processing state, errors */
#payment-stripe-form .spinner,
  .spinner:before,
  .spinner:after {
    border-radius: 50%;
}
#payment-stripe-form .spinner {
    color: #ffffff;
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
#payment-stripe-form .spinner:before,
  .spinner:after {
    position: absolute;
    content: "";
}
#payment-stripe-form .spinner:before {
    width: 10.4px;
    height: 20.4px;
    background: #0055DE;
    border-radius: 20.4px 0 0 20.4px;
    top: -0.2px;
    left: -0.2px;
    -webkit-transform-origin: 10.4px 10.2px;
    transform-origin: 10.4px 10.2px;
    -webkit-animation: loading 2s infinite ease 1.5s;
    animation: loading 2s infinite ease 1.5s;
}
#payment-stripe-form .spinner:after {
    width: 10.4px;
    height: 10.2px;
    background: #0055DE;
    border-radius: 0 10.2px 10.2px 0;
    top: -0.1px;
    left: 10.2px;
    -webkit-transform-origin: 0px 10.2px;
    transform-origin: 0px 10.2px;
    -webkit-animation: loading 2s infinite ease;
    animation: loading 2s infinite ease;
}
  
/* dynamic payment methods annotation */
#dpm-annotation {
    align-self: center;
    color: #353A44;
    width: 30vw;
    min-width: 500px;
    line-height: 20px;
    margin-bottom: 20px;
}
  
#dpm-integration-checker {
    display: inline;
    color: #533AFD;
}
  
/* Payment status page */
#payment-status {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
    width: 30vw;
    min-width: 500px;
    min-height: 380px;
    align-self: center;
    box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
      0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    padding: 40px;
    opacity: 0;
    animation: fadeInAnimation 1s ease forwards;
}
  
#status-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
  
#payment-stripe-form h2 {
    margin: 0;
    color: #30313D;
    text-align: center;
}
  
#payment-stripe-form a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    display: block;
}
#payment-stripe-form a:hover {
    filter: contrast(120%);
}
  
#details-table {
    overflow-x: auto;
    width: 100%;
}
  
#payment-stripe-form table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}
#payment-stripe-form table tbody tr:first-child td {
    border-top: 1px solid #E6E6E6; /* Top border */
    padding-top: 10px;
}
#payment-stripe-form table tbody tr:last-child td {
    border-bottom: 1px solid #E6E6E6; /* Bottom border */
}
#payment-stripe-form td {
    padding-bottom: 10px;
}
  
#payment-stripe-form .TableContent {
    text-align: right;
    color: #6D6E78;
}
  
#payment-stripe-form .TableLabel {
    font-weight: 600;
    color: #30313D;
}
  
#view-details {
    color: #0055DE;
}
  
#retry-button {
    text-align: center;
    background: #0055DE;
    color: #ffffff;
    border-radius: 4px;
    border: 0;
    padding: 12px 16px;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
}
  
@-webkit-keyframes loading {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
}
@keyframes loading {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
}
@keyframes fadeInAnimation {
    to {
        opacity: 1;
    }
}
  
@media only screen and (max-width: 600px) {
    #payment-stripe-form form, #dpm-annotation, #payment-status{
      width: 80vw;
      min-width: initial;
    }
}


/* formulaire dédié paiement */
.kbm-payment-form{
    max-width: 900px !important;
}

.kbm-payment-form h2,h1{
    text-align: center;
}

.kbm-payment-form .kbm-summary-label{
    flex: 0 0 150px;
}