.card-toggle-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.toggle-wrapper {
    margin: 0 10px;
    position: relative;
}

.toggle-checkbox {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 25px;
    background-color: #E88639;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
}
.get-started-btn {
	 background-color: #032D47; color: #ffffff !important; 
}
.preferred .get-started-btn {
	background-color: #032D47 !important; color: #ffffff !important; 
}
.toggle-slider:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    transition: transform 0.2s;
}

.toggle-checkbox:checked + .toggle-slider {
    background-color: #E88639;
}

.toggle-checkbox:checked + .toggle-slider:before {
    transform: translateY(-50%) translateX(25px);
}

.label {
    font-size: 18px;
    color: #0A1E2D;
}

.card {
    border: unset;
    background: #f7f7f7;
   /* box-shadow: 5px 5px 32px 0px rgba(0, 0, 0, 0.1); */

}
.card-body {
    padding: 50px 45px 30px 45px;
}

   .card-title {
	font-family: "EB Garamond", serif !important;
    font-size: 20px;
   

}
.price-switch {
    border-bottom: 1px solid #DADADA;
}
.monthly-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;

}


.get-started-btn {
    background-color: #ffffff;
    color: #032D47 !important;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 700;
}
.amount {
    font-size: 45px;
}
span.m-y {
	font-family: "EB Garamond", serif !important;
    font-size: 20px;
	display: block;
	margin-top: 8px;
	margin-bottom: 8px;
}

.btn-white-associato {
    color: var(--blue) !important;
    background: #fff;
}
.btn-blue-associato {
    color: #fff !important;
    background: var(--blue);
}
.btn-white-associato, .btn-blue-associato {
	width: 100%;
    display: flex;
    justify-content: space-between;
	    align-items: center;
    padding: 16px 28px;
    border-radius: 6px;
	font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.5px;
	border: unset;
}


ul.features-list {
    padding: 0;
	margin: 0;
    list-style: none;
}
.feature-item span {
	font-size: 18px;
	padding-left: 6px
}
.blue-card {
	 background: #0C4376 !important;

}

.black-card {
    background: #0A1E2D;
}
.blue-card .card-body, .black-card .card-body {
    color: #fff;
}

.popular-plan {
    position: relative;
}

.popular-plan .popular-label {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F2F4F8;
    color: #3333CC;
    padding: 3px 12px;
    /* font-weight: bold; */
    border-radius: 12px;
    font-size: 14px;
    z-index: 1;
}


@media only screen and (max-width: 767px) {
	.label {
    font-size: 15px;
}
}