﻿.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.radio-has-price.radio-btn-content {
    height: 61px;
    padding: 8px 12px;
}
 .RadioButton.radio-btn-content {
      border-radius: 5px;
 }
.radio-btn-content {
    display: flex;
    justify-content: space-between;
}
.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;
}
.radio-btn-content .strikethrough {
    position: relative;
    margin-left: 7px;
    color: rgba(40, 40, 40, 0.5);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
}

.radio-btn-content .strikethrough:before {
    position: absolute;
    content: "";
    left: -2px;
    top: 50%;
    width: calc(100% + 3px);
    border-top: 2px solid;
    transform: translate(0, -90%);
    border-color: inherit;
    color: rgba(40, 40, 40, 0.5) !important;
}