.selection {
    width: 50%;
    padding: 0 55px 0 85px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.selection .title {
    text-transform: uppercase;
    color: #770897;
    margin: 50px 0 20px 0;
    font-weight: bold;
}

.selection .title:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    /* line-height: 1; remove for menu-mobile*/

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    content: "\e931";
    position: absolute;
    font-size: 32px;
    margin-top: -30px;
    margin-left: -32px;
}

.selection .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.selection .items .item {
    width: 47%;
    height: 85px;
    background-color: #F8EBFC;
    margin-bottom: 25px;
    color: #770897;
    vertical-align: middle;
    display: table;
    font-weight: bold;
    cursor: pointer;
}
.selection .items .item.selected {
    background-color: #770897;
    color: #FFF;
}
.selection .items .item > * {
    display: table-cell;
    height: 85px;
    vertical-align: middle;
    cursor: pointer;
}
.selection .items .item > input[type=radio] {
    position: absolute;
    visibility: hidden;
}
.selection .items .item > span {
    padding-left: 20px;
    width: 55px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.selection .items .item > span > .check {
    display: block;
    border: 1px solid #DDD;
    border-radius: 100%;
    height: 23px;
    width: 23px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
    box-sizing: border-box;
    background-color: #FFF;
}
.selection .items .item.selected > span > .check {
    border: 7px solid #DEC2E8;
    background-color: transparent;
}
.selection .items .item > label {
    text-align: left;
}
.selection .items .item > label > span {
    font-size: 12px;
    font-weight: normal;
}

.selection .icon-info.tooltip,
.selection .icon-warning {
    color: #FFBB14;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
}

.selection .icon-warning {
    cursor: default;
    margin: -15px 0 0 -15px;
    color: #FF0B75;
}
.selection .title .icon-info {
    margin: -8px 0 0 15px;
}
.selection .title .icon-warning {
    margin: -8px 0 0 15px;
}
.selection .items .item > .icon-info.tooltip {
    margin: -15px 0 0 -15px;
    height: auto;
}

.selection .items .group {
    position:relative;
    margin-bottom: 45px;
    width: 100%;
    margin-top: 5px;
}

.selection .items .group input,
.selection .items .group select {
    font-size: 16px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #757575;
    box-sizing: border-box;
}
.selection .items .group input:focus,
.selection .items .group select:focus { outline:none; }

.selection .items .group label {
    color: #770897;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.selection .items .group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0;
}

.selection .items .group input:valid,
.selection .items .group select:valid {
    color: #770897;
    border-bottom: 2px solid #770897;
}

.selection .items .group input:focus ~ label,
.selection .items .group select:focus ~ label,
.selection .items .group input:valid ~ label,
.selection .items .group select:valid ~ label  {
    top: -20px;
    font-size: 14px;
    color: #770897;
}

.selection .items .bar { position:relative; display:block; width: 100%; }
.selection .items .bar:before,
.selection .items .bar:after 	{
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #770897;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    background: #770897;
    -webkit-transition: 0.2s ease all;
}
.selection .items .bar:before {
    left: 50%;
}
.selection .items .bar:after {
    right: 50%;
}

.selection .items input:focus ~ .bar:before,
.selection .items input:focus ~ .bar:after,
.selection .items select:focus ~ .bar:before,
.selection .items select:focus ~ .bar:after {
    width: 50%;
}

.selection .items .highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.selection .items .group.valid,
.selection .items .group.error {
    position: relative;
}

.selection .items .group.valid:before {
    content: "\e92a";
    position: absolute;
    right: 0px;
    top: 14px;
    font-size: 13px;
    font-family: 'icomoon';
    color: #00b67a;
}

.selection .items .group.error:before {
    content: "\e933";
    position: absolute;
    right: 0px;
    top: 8px;
    font-size: 22px;
    font-family: 'icomoon';
    color: #e1412b;
}

.selection .items .group.select:before {
    content: "\e901";
    position: absolute;
    right: 0px;
    top: 14px;
    font-size: 10px;
    font-family: 'icomoon';
    color: #770897;
}

.selection .items .group p {
    font-size: 12px;
    margin: 8px 0;
    color: #999;
}

.selection .items .group.error label,
.selection .items .group.error p,
.selection .items .group.error {
    color: #e1412b;
}

.selection .items .group.error input,
.selection .items .group.error select {
    border-bottom: 2px solid #e1412b;
}

.selection .items .group.valid label {
    color: #00b67a;
}
.selection .items .group.valid input,
.selection .items .group.valid select {
    border-bottom: 2px solid #00b67a;
}

/** Width <= 1300px */
@media (max-width: 1300px) {
    .selection .items .item {
        font-size: 13px;
        height: 75px;
    }
    .selection .items .item > * { height: 75px; }
}
/** Width <= 1200px */
@media (max-width: 1200px) {
    .selection .items .item { width: 100%; }
}
/** Width <= 1024px */
@media (max-width: 1024px) {
    .selection { width: 100%; }
    .selection .items .item {
        width: 47%;
        font-size: 16px;
        height: 85px;
    }
    .selection .items .item > * { height: 85px; }
}
/** Width <= 768px */
@media (max-width: 768px) {
    .selection .items .item {
        font-size: 13px;
        height: 70px;
        margin-bottom: 15px;
    }
    .selection .items .item > * { height: 70px; }
}
/** Width <= 580px */
@media (max-width: 580px) {
    .selection { padding: 0 20px 0 30px; }
    .selection .title { margin: 20px 0 5px 0; }
    .selection .title:before { margin-top: -10px; }
    .selection .items .item { width: 100%; }
    .selection .icon-info.tooltip,
    .selection .icon-warning { font-size: 24px; }
    .selection .icon-warning { margin: -5px 0px 0px -5px; }
}