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

.container-switcher .label{
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 110%;
	color: #3B5977;
	cursor: pointer;
}

.last-palermo{
	text-align: start !important;
}

.labels{
	width: 100%;
	height: 64px;
}

.labels.row{
	border: 1px solid #3B5977;
	text-align: center;
	align-items: center;
	height: 64px;
}

.col4{
	height: 62px !important;
	display: flex;
    align-items: center;
    justify-content: center;
}

.border-right{
	border-right: 1px solid #3B5977;
}

.container-switcher h2{
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 110%;
	color: #fff;
}

.container-switcher p {
    font-family: Lexend;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 110%;
    color: #fff;
}	

.container-switcher .p-s{
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.switcher {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-right: 10px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3B5977;
    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: #ccc;
}

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

.cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.card {
    padding: 50px;
    width: 430px;
	height: 500px;
    text-align: center;
	border-radius: 0px 0px 0px 50px;
	box-shadow: 5px 5px 32px 0px rgba(0, 0, 0, 0.10);
}

#card1, #card3, #card5{
	background: #3B5977;
}

#card2, #card4, #card6{
	background: #0A1E2D;
}

.container-switcher .price{
	font-size: 49px;
	font-style: normal;
	font-weight: 700;
	line-height: 110%;
}

.container-switcher .btn-link{
	padding: 11px 28px;
	background: #FBFBFB;
	border: 2px solid #FBFBFB;
	color: #3B5977;
	transition: .5s;
}

.container-switcher .btn-link:hover{
	background: transparent;
	border: 2px solid #FBFBFB;
	color: #fff;
}

.active-label {
    background-color: #3B5977 !important;
    color: #fff !important;  
}

.active-label .label{
	color: #fff !important;
}

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

.popup-content {
	background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 600px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	position: relative;
}

.popup-content input#email-input{
	padding: 10px;
	border-radius: 5px;
	border-color: #0A1E2D;
	width: 60%;
}

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

.btn-verify {
    padding: 10px 20px;
    margin-top: 10px;
	border-radius: 5px;
	background-color: #0A1E2D;
	border-color: #0A1E2D;
	color: #fff;
}

.iscrizione-btn{
	padding: 11px 28px;
    background: #0A1E2D;
    border: 2px solid #0A1E2D;
    color: #FFF;
    transition: .5s;
    border-radius: 5px;
}

.iscrizione-btn:hover {
    color: #0A1E2D;
	background: #fff;
    border: 2px solid #0A1E2D;
}

@media only screen and (max-width: 768px){
	.cards {
		flex-direction: column;
	}
	
	.card {
		padding: 40px;
		width: 370px;
		height: 500px;
	}
	
	.container-switcher .label{
		font-size: 20px;
	}
	
	.container-switcher h2{
		font-size: 30px;
	}
	
	.labels.row{
		border: 0;
		height: 204px;
		margin-right: 20px;
		margin-left: 20px;
		justify-content: center;
	}
	
	.border-right{
		border-right: 0;
	}
	
	.active-label {
		background-color: #3B5977 !important;
		color: #fff !important;  
		border-radius: 10px;
	}
	
	.last-palermo{
		text-align: center !important;
	}
	
	.popup-content {
		width: 370px;
		height: 350px;
	}
}