.woocommerce-checkout-payment ul{
	
}
.woocommerce-checkout-payment ul input{
	display : inline-block !important;
}

.payment_method_socge img{
max-height : 30px;
max-width : 85px;
}

#cc-form-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000000b8;
    z-index: 9999999;
    top: 0;
    justify-content: center;
    align-items: center;
    display: flex;
}

#cc-form-container iframe{
    width: 500px;
    height: 510px;
    border: none;
}

#checkout-iframe{
	width: 100%;
    height: 600px;
}

#easytransac-icon, .payment_box.payment_method_easytransac p,
#easytransac-icon, .payment_box.payment_method_easytransac span{
	display:none;
}

.payment_box.payment_method_easytransac::before {
    content: "Payez avec votre carte bancaire.";
}

.d-none {
    display: none !important;
}

#cc-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(204, 204, 204);
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px;
    width: 600px;
    max-width: 100%;
}

#closeCCForm {
    display: flex;
    padding: 9px;
    width: 50px;
    height: 50px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 1px solid #000000;
    border-radius: .3rem;
    cursor: pointer;
}

#closeCCForm:hover {
    border: 1px solid #000000;
    border-radius: .3rem;
    background-color: #000000;
    color: #ffffff;
}

#cc-form-container.d-none {
    display: none;
}

/* Base styles
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
} */

/* Form container */
.form-container {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

/* Form title */
.form-container h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #333;
    text-align: center;
}

/* Form group */
.form-group {
    margin-bottom: 20px;
}

/* Label */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

/* Input, textarea, and select */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #007bff;
    outline: none;
}

/* Select element */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="#666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px 10px;
    cursor: pointer;
    padding-right: 30px;
    /* space for the arrow */
}

/* Button */
.form-group button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-group button:hover {
    background-color: #0056b3;
}

/* Grid system */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    /* Negative margins to offset the padding on the columns */
}

.col-6,
.col-4,
.col-9,
.col-12,
.col-3 {
    padding: 0 15px;
    box-sizing: border-box;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .col-6,
    .col-4,
    .col-9,
    .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* .btn {
background-color: transparent !important;
color: #0056b3;
border: 1px solid #0056b3;
cursor: pointer;
width: 100px;
height: 30px;
}

.btn:hover {
background-color: #0056b3 !important;
color: #fff;
border: 1px solid #0056b3;
cursor: pointer;
} */

.loader {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 20px;
    height: 20px;
    background-color: #000000;
    border-radius: 50%;
    animation: dotPulse 1.5s infinite ease-in-out;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.7;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ALERT */
.alert {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
    opacity: 1;
    transition: opacity 0.6s;
}

.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
    border-color: #d6e9c6;
}

.alert-danger {
    background-color: #f2dede;
    color: #a94442;
    border-color: #ebccd1;
}

.closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.closebtn:hover {
    color: black;
}
