.rt-switch-radio {
    overflow: hidden;
    display: inline;
}

.rt-switch-radio:after {
    content: '';
    display: table;
    clear: both;
}

.rt-switch-radio input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.rt-switch-radio label {
    float: left;
}

.rt-switch-radio label {
    display: inline-block;
    min-width: 60px;
    background-color: #EDF2F7;
    color: rgba(0, 0, 0, 0.9);
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    padding: 10px 12px;
    /* border: 1px solid rgba(0, 0, 0, 0.2); 
  -webkit-box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5), 0 0px rgba(255, 255, 255, 0.1); */
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.rt-switch-radio label:hover {
    cursor: pointer;
}

.rt-switch-radio input:checked+label {
    background-color: #ce4444;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
}

.rt-switch-radio input:checked+label:first-of-type {
    background-color: #6BBD6E;
}

.rt-switch-radio input:checked+label:last-of-type {
    background-color: #cbd5e0;
}

.rt-switch-radio label:first-of-type {
    border-radius: 50px 0 0 50px;
    border-right: 1px solid #e0e7ee;
}

.rt-switch-radio label:last-of-type {
    border-radius: 0 50px 50px 0;
    border-left: 1px solid #edf2f7;
}

.rt-switch-radio.dual-btns label:last-of-type {
    border-left: 0px solid #e2e8f0;
}
