.switch-box{
    margin: 40px 0 50px;
}
  .switch.name{
    margin: 7px 0 0;  
    display: inline-block;  
    vertical-align: top;  
  }
  #monthly.switch.name{
    color: #2eaef3;
  }
.lcs_wrap {
    display: inline-block;
    direction: ltr;
    height: 28px;
    vertical-align: middle;
}

.lcs_wrap input {
    display: none;
}

.lcs_switch {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 40px;
    border-radius: 30px;
    overflow: unset;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    z-index: 1;
    margin: 0 15px
}

.lcs_cursor {
    display: inline-block;
    position: absolute;
    top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #2eaef3;
    z-index: 10;
    -webkit-transition: all .2s linear;
    -ms-transition: all .2s linear;
    transition: all .2s linear;
}

.lcs_label {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 18px;
    color: #fff;
    font-weight: 700;
    position: absolute;
    width: 33px;
    top: 5px;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    -webkit-transition: all .2s ease-in-out .1s;
    -ms-transition: all .2s ease-in-out .1s;
    transition: all .2s ease-in-out .1s;
}

.lcs_label.lcs_label_on {
    left: -70px;
    z-index: 6;
}

.lcs_label.lcs_label_off {
    right: -70px;
    z-index: 5;
}

.lcs_switch.lcs_on {
    background: #e5f2fb;
    box-shadow: 0 0 0 1px #d9e5ee inset;
}

.lcs_switch.lcs_on .lcs_cursor {
    left: 45px;
    background: #2eaef3;
}

.lcs_switch.lcs_on .lcs_label_on {
    left: 10px;
    opacity: 1;
}

.lcs_switch.lcs_off {
    background: #e5f2fb;
    box-shadow: 0 0 0 1px #d9e5ee inset;
}

.lcs_switch.lcs_off .lcs_cursor {
    left: 5px;
}

.lcs_switch.lcs_off .lcs_label_off {
    right: 10px;
    opacity: 1;
}

.lcs_switch.lcs_disabled {
    opacity: .65;
    filter: alpha(opacity=65);
    cursor: default;
}
@media screen and (max-width: 767px) {
.switch-box {
    margin: 25px 0 35px;
}
}