.rsx-selectable-item {
    background: #fff;
    transition: box-shadow .15s cubic-bezier(.17,.67,.83,.67);
    position: relative;
}

@media (min-width: 520px) {
    .rsx-selectable-item {
        background: #fff;
        position: relative;
        cursor: pointer;
    }

        .rsx-selectable-item.rsx-active {
            box-shadow: inset 0 0 0 4px #0066a4,0 0 10px 2px rgba(0,0,0,.2);
        }

        .rsx-selectable-item .rsx-caret-triangle {
            display: none;
        }

        .rsx-selectable-item.rsx-active .rsx-caret-triangle {
            display: block;
            position: absolute;
            width: 50px;
            height: 20px;
            overflow: hidden;
            left: 50%;
            margin-left: -20px;
        }
}
