.radio-inputs {
    display: flex;
    overflow: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 5px;
    padding-bottom: 5px;
}

.radio-inputs label {
    margin: 5px;
    float: right;
    max-width: 100%;
}

.radio-input:checked+.radio-tile {
    border-color: #FF725E;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #FF725E;
}

.radio-input:checked+.radio-tile:before {

    opacity: 1;
    background-color: #FF725E;
    border-color: #FF725E;
}

.radio-input:checked+.radio-tile .radio-icon i {
    color: #FF725E;
}

.radio-input:checked+.radio-tile .radio-label {
    color: #FF725E;
}

.radio-input:focus+.radio-tile {
    border-color: #FF725E;
}

.radio-input:focus+.radio-tile:before {

    opacity: 0.5;
}

.radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px;
    border-radius: 0.5rem;
    border: 2px solid #fcb4ab;
    background-color: #fff;
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
}

.radio-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.25rem;
    right: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
}

.radio-tile:hover {
    border-color: #FF725E;
}

.radio-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}

.radio-icon i {
    font-size: 20px;
    color: #707070;
}

.radio-label {
    color: #707070;
    transition: 0.375s ease;
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
}

.radio-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    width: 100px;
}
