.hidden {
    display: none !important;
}
.pay-btn,.btn{
	border: none;
	/* background: none; */
	cursor: pointer;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
@media (min-width: 768px){
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.modal-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.15);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-radius:5px;
  
}

.modal-window:target {
  opacity: 1;
  overflow-y: scroll;
  pointer-events: auto;
}

.modal-window>div {
  width: 300px;
  position: relative;
  margin: 10% auto;
  padding: 1rem;
  background: #FFFFFF;
  color: #3D4241;
  border-radius:5px;
}

modal-window-lg{
  width: 75vw !important;
  min-width: 350px;
}

.modal--window header {
  font-weight: bold;
}

.modal-close {
  color: #ffffff;
  line-height: 25px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 50px;
  text-decoration: none;
  background-color: red;
  border-top-right-radius:5px;
  border-bottom-left-radius:5px;
}

.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}

.tabcontent{
padding-bottom: 10px;
}

.blink {
    animation: blinker 1s linear infinite;
}

    @keyframes blinker {
    50% {
        opacity: 0;
    }
}

.desktop-closed-message-avatar {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.item .item-loader {
    width: 100%;
    background: #fff;
    height: 50px;
	margin-top: 5px;
    animation: loader 3s infinite ease-in-out;
    -webkit-animation: loader 3s infinite ease-in-out;
}

@keyframes loader {
    0% {
        background-color: rgba(165, 165, 165, 0.1);
    }
    50% {
        background-color: rgba(165, 165, 165, 0.3);
    }
    100% {
        background-color: rgba(165, 165, 165, 0.1);
    }
}

@-webkit-keyframes loader {
    0% {
        background-color: rgba(165, 165, 165, 0.1);
    }
    50% {
        background-color: rgba(165, 165, 165, 0.3);
    }
    100% {
        background-color: rgba(165, 165, 165, 0.1);
    }
}
.swal2-popup.swal2-modal {
            border-radius: 10px;
        }
        .swal2-icon .swal2-icon-content {
            font-size: 3.75em !important;
        }
        div#intergramRoot>div {
            z-index: 2147483646 !important;
        }
        .nav-tabs.underline .nav-item {
            flex: 1; 
            text-align: center; 
        }

        .nav-tabs.underline .nav-link {
            border: none;
            font-weight: normal;
            color: #6c757d; 
        }

        .nav-tabs.underline .nav-link.active {
            color: #000; 
            font-weight: bold; 
            border-bottom: 3px solid #582b01; 
        }

        .contact-container {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        }

        .contact-header {
        padding: 15px;
        background-color: #fff;
        border-bottom: 1px solid #ddd;
        }

        .contact-header h3 {
        margin: 0;
        color: #ff9900;
        font-size: 18px;
        }

        .contact-icons {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 15px;
        }

        .contact-icons div {
        text-align: center;
        font-size: 14px;
        }

        .contact-icons img {
        width: 32px;
        height: 32px;
        margin-bottom: 5px;
        }

        .contact-footer {
        text-align: center;
        padding: 15px;
        background-color: #f9f9f9;
        border-top: 1px solid #ddd;
        }

        .contact-footer a {
        text-decoration: none;
        color: #000;
        font-weight: bold;
        }

        .contact-footer a:hover {
        color: #ff9900;
        }

        /* Styles pour l'image de chargement */
        /* Animation pour le zoom avant et arrière */
        @keyframes zoomEffect {
            0% {
            transform: scale(1); /* Taille normale */
            }
            50% {
            transform: scale(1.2); /* Zoom avant */
            }
            100% {
            transform: scale(1); /* Retour à la taille normale */
            }
        }

        /* Application de l'animation à l'image */
        #pace .img_l1 {
            animation: zoomEffect 2s ease-in-out infinite; /* 2 secondes par cycle, en boucle */
        }

        /* Styles pour le bouton de chat et l'iframe */
        #chat-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background-color: #582b01;
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 2.5rem !important;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s, transform 0.3s;
        }
        #chat-button:hover {
            background-color: #7a3b02;
            transform: scale(1.1);
        }
        #chat-iframe {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 370px;
            height: 450px;
            border: 1px solid #ccc;
            background-color: #fff;
            z-index: 1000;
            display: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            animation: fadeIn 0.3s;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Styles pour le badge de notification */
        #chat-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: red;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }

        .container h2 {
        font-size: 18px;
        color: #444;
        margin-bottom: 20px;
        }

        .code-inputs {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
        }

        .code-input {
        width: 50px;
        height: 50px;
        font-size: 20px;
        text-align: center;
        border: 2px solid #fff;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        outline: none;
        transition: all 0.3s ease;
        }

        .code-input:focus {
        border-color: #ff9800;
        box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
        }

        .submit-btn {
        padding: 12px 20px;
        font-size: 16px;
        font-weight: bold;
        color: white;
        background-color: #ff9800;
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
        }

        .submit-btn:hover {
        background-color: #e68900;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
        }