/* Rounded sliders */


.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


.annual_plan__styled {
    background-color: #107BE9;
    border-radius: 20px;
    padding: 8px;
    color: white;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.monthly_plan_styled {
    background-color: #cccccc;
    border-radius: 20px;
    padding: 8px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#annual_plan {
    border-radius: 20px;
    padding: 8px;
}

#monthly_plan {
    border-radius: 20px;
    /* padding: 8px; */
    margin-right: 50px;
}