/**
 * CSS pour l'intégration STRIPE
 * Vous pouvez ajouter ce code dans votre thème ou créer un fichier CSS séparé
 */

.stripe-subscription-container {
    max-width: 600px;
    margin: 5px auto;
    padding: 10px;
    background-color: #fff;
}

.loading-spinner {
    text-align: center;
    padding: 20px;
    color: #666;
}

.email_user {
	padding: 5px 10px;
    background-color: #ececec;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    color: #747171;
	line-height: 50px;
}
.loading-spinner:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 3px solid #ddd;
    border-top: 3px solid #2271b1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

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

#subscription-result {
    margin: 0px;
    padding: 15px;
    border-radius: 4px;
}

#subscription-result.success {
    background-color: #fff;
}

#subscription-result.error {
    background-color: #fef0f0;
}


.subscription-found {
	font-size:14px;
	color:#000;
	line-height:1.5em;
}


.subscription-found .type {
	font-size:20px;
	color:#000;
	line-height:3em;
}

.subscription-list {
    list-style: none;
    padding: 0;
}

.subscription-list li {
    padding: 12px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #2271b1;
}

.status-active {
    color: #24C789;
    font-weight: bold;
}

#email-search-form {
	margin:auto;
    margin-top: 0px;
    padding-top: 20px;
	padding-bottom: 20px;
    border-top: 0px solid #eee;
	max-width:80%;
}

.no-subscription-message {
    color: #FC554F;
	font-size:18px;
	margin-bottom:10px;
    font-weight: bold;
}

#invoice-number {
	border: 1px solid #000;
    padding: 10px 25px;
    border-radius: 5px;
	margin-bottom:15px;
}

#alternative-email-form label, #invoice-number-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
	font-size:14px;
}

#alternative-email {
    width: 90%;
    padding: 10px;
    border: 1px solid #ddd;
	margin:auto;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.check-button {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.check-button:hover {
    background-color: #ececec;
}

.cancellation-planned {
    color: #FC554F;
    font-weight: bold;
    font-style: italic;
	line-height:2.5em;
	
}


