﻿
/* Hide inputs */
.sort_vod_input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}


/* Styles */

.sort_vod_label{
    display: flex;
    align-items: center;
    margin-left: 1rem;
    padding: 1rem 1rem 1rem 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.25, 0.5, 1.9);    
}

    .sort_vod_label::before {
        content: "";
        position: absolute;
        left: 0;
        width: 1.5rem;
        height: 1.5rem;
        background: transparent;
        border: 2px solid;
        border-radius: 0.25rem;
        z-index: -1;
        transition: all 0.25s cubic-bezier(0.25, 0.25, 0.5, 1.9);
    }
/* Checked */
.sort_vod_input:checked + .sort_vod_label {
    padding-left: 1em;
    color: white !important;
    
}

    .sort_vod_input:checked + .sort_vod_label::before {
        width: 100%;
        height: 100%;
        background: #3bafda;
        border: 0;
        box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
    }


@media (max-width: 576px) {
    .sort_session_container{
        flex-direction:column;
    }
}
