﻿.RadioButton {
    height: 44px;
    border: 2px solid rgba(204,204,204,0.27);
    border-radius: 22px;
    background-color: #FFFFFF;
    box-shadow: 0 5px 10px 0 rgba(204,204,204,0.3);
    padding: 10px;
    width: 100%;
}

.RadioButton .circle {
    height: 28px;
    width: 28px;
    border-radius: 14px;
    background-color: #E4F5F6;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}

.RadioButton .circle.Selected {
    background-color: #E24384;
}

.RadioButton .circle .circle2 {
    display: none;
    height: 15px;
    width: 15px;
    border-radius: 7.5px;
    background: #FFFFFF;
}

.RadioButton .circle .circle2.Selected {
    display: block;
}

.RadioButton .text {
    color: #282828;
    font-size: 15px;
}

.RadioButton .text.Selected {
    font-weight: bold;
}