﻿.ios-ui-select {
    background: #dddddd;
    border: none !important;
    height: 25px;
    border: none !important;
    background: #dddddd;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    width: 49px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.ios-ui-select.checked {
    -webkit-box-shadow: inset 0 0 0 36px #6ddc5f;
    box-shadow: inset 0 0 0 36px #6ddc5f;
}

.ios-ui-select.disabled {
    -webkit-box-shadow: inset 0 0 0 36px #CDCDCD;
    box-shadow: inset 0 0 0 36px #CDCDCD;
}

.ios-ui-select.checked .inner {
    left: 27px;
}

.ios-ui-select .inner {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 2px;
    left: 3px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: white;
    -webkit-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
    -moz-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
    -o-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
    transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}
