* input[type=text] {
    transition: 0.3s all;
    box-shadow: none !important;
}
* input[type=text]:focus {
    box-shadow: none !important;
}
.wm_select {
    color: black !important;
    background-color: white;
    border: solid #007db8 1px;
    border-radius: 0px;
    margin-bottom: 15px;
    display: block;
}
.wm_select_disabled {
    color: black;
    background-color: lightgrey;
    border: solid #007db8 1px;
    margin-bottom: 15px;
    display: block;
    cursor: not-allowed;
}
.wm_select:focus {
    border: solid #007db8 1px;
    box-shadow: none !important;
}


@keyframes spinner {
    to {transform: rotate(360deg);}
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #007db8;
    border-bottom-color: #007db8;
    animation: spinner .8s ease infinite;
    z-index: 1000;
}

.text-justify {
    text-align: justify;
}
/*
.btn-wysam-primary {

    --bs-btn-color: #fff;
    --bs-btn-bg: #007db8;
    --bs-btn-border-color: #007db8;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0066a8;
    --bs-btn-hover-border-color: #0066a8;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0066a8;
    --bs-btn-active-border-color: #0066a8;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #007db8;
    --bs-btn-disabled-border-color: #007db8;
    font-family: "Inter", sans-serif;
    letter-spacing: 2px;
    font-size: 14px;
}
*/
.btn.btn-wysam-primary {
    color: #fff !important;
    background-color: #007db8 !important;
    border-color: #007db8 !important;
    font-family: "Inter", sans-serif;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

/* Hover */
.btn.btn-wysam-primary:hover {
    color: #fff !important;
    background-color: #0066a8 !important;
    border-color: #0066a8 !important;
}

/* Active */
.btn.btn-wysam-primary:active,
.btn.btn-wysam-primary.active {
    color: #fff !important;
    background-color: #0066a8 !important;
    border-color: #0066a8 !important;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* Focus */
.btn.btn-wysam-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
    outline: none;
}


.btn-wysam-bt-selector-primary {
    --bs-btn-color: #007db8;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #007db8;
    --bs-btn-hover-color: #007db8;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: #006c9f;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #C95018;
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: #C95018;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #C95018;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #C95018;
}

.btn-wysam-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #C95018;
    --bs-btn-border-color: #C95018;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #c04a14;
    --bs-btn-hover-border-color: #c04a14;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #C95018;
    --bs-btn-active-border-color: #C95018;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #b3b3b3;
    --bs-btn-disabled-border-color: #b3b3b3;
}
#newUserPasswdBar {
    height: 4px;
    background-color: lightgray;
}
.newUserPasswdBar0{
    background-color: lightgray;
}
.newUserPasswdBar1{
    background: linear-gradient(90deg, #a90000 10%, lightgray 0%);
}
.newUserPasswdBar2{
    background: linear-gradient(90deg, #FF3333 20%, lightgray 0%);
}
.newUserPasswdBar3{
    background: linear-gradient(90deg, #FF9933 40%, lightgray 0%);
}
.newUserPasswdBar4{
    background: linear-gradient(90deg, #b7ef47 70%, lightgray 0%);
}
.newUserPasswdBar5{
    background: linear-gradient(90deg, #00cb00 1000%, lightgray 0%);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FF4500; /* Orange lorsque désactivé (Mensuel) */
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #007BFF; /* Bleu lorsque activé (Annuel) */
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.label-text {
    font-size: 20px;
    vertical-align: middle;
    font-weight: bold;
    padding: 0 10px;
}
.wmTextPrice {
    color: #007db8;

}
#wmAccordionToggle {
    cursor: pointer;
}

.wmInfoDeactivation {
    color:red;
    font-weight: bold;
}
.custom-tooltip {
    --bs-tooltip-bg: #007db8;
    --bs-tooltip-color: #FFF;
}

.progress-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#e0e0e0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: Arial, sans-serif;
}

.progress-circle::before {
    content: '';
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
}

.progress-circle-text {
    font-size: 40px; /* Taille de l'icône */
    z-index: 1;
}


.introjs-tooltip {
    max-width: 500px !important; /* Ajuste la largeur maximale à la valeur souhaitée */
    width: 500px !important; /* Fixe la largeur si nécessaire */
}

.introjs-tooltiptext {
    white-space: normal !important; /* Permet au texte de s'ajuster à la largeur de la bulle */
}
.wm-valid {
    border: 2px solid #28a745 !important;
    background-color: #d4edda !important;
}

.wm-error {
    border: 2px solid #dc3545 !important;
    background-color: #f8d7da !important;
}