/* Container principale */
.container-switcher {
    text-align: center;
    max-width: 1340px;
    margin: 0 auto;
}

/* Switcher */
.switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--blue);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--blue);
    transition: 0.4s;
    border-radius: 25px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--grey);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.annual-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discount {
    font-size: 16px;
    color: var(--blue);
	background-color: var(--lightblue);
	border-radius: 6px;
	padding: 2px 8px;
    margin-top: 0; 
}

.label-annual{
	margin-top: 28px;
    padding-left: 5px;
	font-weight: 400;
}

/* Cards Container */
.cards {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Card */
.card {
    border: 2px solid var(--blue);
    width: 32%;
    box-shadow: none;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    /*padding: 30px;*/
    border-radius: 45px;
}

.options-pack{
	padding: 30px;
}

.bg-white-border-blue{
	border-bottom: 2px solid var(--blue);
	padding: 30px 30px 0 30px;
    border-radius: 42px 42px 0 0;
	transition: background-color 0.3s ease;
}

.bg-white-border-blue h2{
	color: var(--blue);
}

.bg-blue-border h2{
	color: var(--white);
}

.bg-blue-border{
	padding: 30px 30px 0 30px;
    background-color: var(--blue);
    border-radius: 42px 42px 0 0;
	transition: background-color 0.3s ease;
	border-bottom: 2px solid var(--blue);
}

.card p {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}

.card .bg-white-border-blue .price {
    font-size: 58px;
    font-weight: bold;
	color: var(--blue);
}

.card h2 .euro{
	font-size: 18px;
    font-weight: 400;
    opacity: 0.5;
    position: relative;
    bottom: 35px;
    right: 5px;
}

.card .bg-white-border-blue .text-pack{
	color: var(--blue);
}

.card .bg-blue-border .text-pack{
	color: var(--white);
}

.card .bg-white-border-blue .desc-card{
	line-height: 22px;
	color: var(--grey);
	font-size: 14px;
}

.card .bg-blue-border .price {
    font-size: 58px;
    font-weight: bold;
	color: var(--white);
}

.card .bg-blue-border .desc-card{
	line-height: 22px;
	color: var(--white);
	font-size: 14px;
}

.bg-blue-border .text-utentemese{
	color: var(--white);
	opacity: 0.5;
}

.bg-white-border-blue .text-utentemese{
	color: var(--blue);
	opacity: 0.5;
}

.card .btn-white-border {
    display: inline-block;
    text-decoration: none;
    background-color: var(--white);
    color: var(--blue);
    padding: 20px 60px;
    border: 2px solid var(--blue);
    border-radius: 14px;
    font-size: 20px;
    transition: background-color 0.3s;
}

.card .btn-blue-border {
    display: inline-block;
    text-decoration: none;
    background-color: var(--blue);
    color: var(--white);
    padding: 20px 60px;
    border: 2px solid var(--blue);
    border-radius: 14px;
    font-size: 20px;
    transition: background-color 0.3s;
}

.card .list-pack p{
	text-align: start;
	color: var(--grey);
	line-height: 2;
}


.card .list-pack p::before{
	content: ''; 
    display: inline-block; 
	background-image: url('/wp-content/uploads/2024/11/Check-Icon.png');
	width: 15px;
    height: 7px;
    background-size: contain;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center;
}


.card .bg-blue-border .btn-link {
    display: inline-block;
    text-decoration: none;
    background-color: var(--blue);
    color: var(--white);
    padding: 20px 33px;
    border: 2px solid var(--blue);
    border-radius: 14px;
    font-size: 20px;
    transition: background-color 0.3s;
}

/*.bg-blue-border:hover {
    background-color: var(--white);
	border-bottom: 2px solid var(--blue);
}*/

/*.bg-blue-border:hover h2{
    color: var(--blue);
}

.bg-white-border-blue:hover h2{
    color: var(--white);
}

.bg-blue-border:hover .price {
	color: var(--blue);
}

.bg-white-border-blue:hover .price {
	color: var(--white);
}

.bg-white-border-blue:hover {
    background-color: var(--blue);
}

.bg-white-border-blue:hover .text-pack{
	color: var(--white);
}

.bg-blue-border:hover .text-pack{
	color: var(--blue);
}

.bg-blue-border:hover .text-utentemese{
	color: var(--blue);
	opacity: 0.5;
}

.bg-white-border-blue:hover .text-utentemese{
	color: var(--white);
	opacity: 0.5;
}

.bg-blue-border:hover .desc-card{
	line-height: 22px;
	color: var(--grey);
	font-size: 14px;
}

.bg-white-border-blue:hover .desc-card{
	line-height: 22px;
	color: var(--white);
	font-size: 14px;
}*/

.btn-white-border:hover {
    background-color: var(--blue);
    color: var(--white);
    border: 2px solid var(--blue);
}

.btn-blue-border:hover {
    background-color: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
}

.popup.hidden {
	display: none;
}

.popup-content {
	background: var(--blue);
    padding: 100px;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: var(--white);
	position: relative;
}

.popup-content input{
	padding: 22px 35px;
	border-radius: 14px
}


.popup-content input::placeholder{
	color: var(--blue);
}

.popup-close {
	position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
}

.popup .submit-btn{
	width: 100%;
	border: 2px solid var(--white);
	color: var(--white);
	background-color: transparent;
	transition: 0.5s;
	padding: 22px 35px;
	border-radius: 14px
}

.popup .submit-btn:hover{
	color: var(--blue);
	background-color: var(--white);
}

/* Responsiveness */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        gap: 15px;
    }

    .card {
        width: 100%;
    }
	
	.popup-content {
		padding: 30px;
	}
}
