/*SLIDER CHECKBOX*/
.slider-checkbox
{
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin: 0;
}
.slider-checkbox input { display:none; }
.slider-checkbox input:checked + .slider
{
    background-color: #2196F3;
}
.slider-checkbox input:focus + .slider
{
    box-shadow: 0 0 1px #2196F3;
}
.slider-checkbox input:checked + .slider:before
{
    box-shadow: -1px 0px 1px 0px rgba(0, 0, 0, 0.3);
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}
.slider-checkbox input:checked + .slider > .label
{
    color: #2196F3;
}

.slider-checkbox .slider
{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d0d2d5;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider-checkbox .slider:before
{
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 1px;
    bottom: 1px;
    background-color: #f4f4f4;
    -webkit-transition: .4s;
    transition: .4s;
    box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.3);
}
.slider-checkbox .slider.round
{
    border-radius: 34px;
}
.slider-checkbox .slider.round:before
{
    border-radius: 50%;
}

.slider-checkbox .label
{
    color: #333;
    padding-left: 46px;
    line-height: 17px;
    position: absolute;
    font-size: 0.9em;
}
/*END SLIDER CHECKBOX*/


.btn.btn-circle
{
    border-radius: 50%;
    padding: 0;
    margin: 0 5px;
}
.btn.btn-lg.btn-circle
{
    height: 50px;
    width: 50px;
}
.btn.btn-xs.btn-circle
{
    height: 30px;
    width: 30px;
}
a.btn.btn-lg.btn-circle
{
    padding: 12px!important;
}

.btn.btn-xs.btn-circle
{
    height: 30px;
    width: 30px;
}







select.input-xs {
    height: auto;
    line-height: 14px;
}

/* this is optional (see below) */
select.btn {
    -webkit-appearance: button;
       -moz-appearance: button;
            appearance: button;
    padding-right: 16px;
}

select.input-xs + .caret {
    margin-left: -20px;
    margin-top: 9px;
}