.card-frame{
    background-color: #0F1314 !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
}



.packagePrice {
    font-size: 2.2em;
}


.switch-label {
    text-align: center;
    opacity: 0.4;
    cursor: pointer;
    padding: 0 1rem;
}

.switch-label .save-money {
    color: #3498db;
    font-style: italic;
    padding-left: 0.5rem;
}

.save-money--mobile {
    color: #3498db;
    font-style: italic;
    display: none;
}

.switch-label.active {
    opacity: 1;
}

.switch {
    position: relative;
    display: inline-block;
    width: 3.75rem;
    height: 2.15rem;
    vertical-align: -50%;
    margin: 0;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #db7734; /* Default color */
    border-radius: 34px;
    -webkit-transition: background-color 0.1s; /* Transition for color change */
    transition: background-color 0.1s; /* Transition for color change */
}

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

#js-pricing-switch input:focus + .slider {
    box-shadow: 0 0 1px #f38021;
}

#js-pricing-switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

#js-pricing-switch input:checked + .slider {
    background-color: blue; /* Color change after toggle */
}

/* Pricing Switch */
@media (max-width: 980px) {
    .switch-label {
        display: inline-block;
        width: auto;
    }
    .save-money {
        display: none;
    }
    .save-money--mobile {
        display: block;
        font-weight: bold;
    }
}


