
* {
    box-sizing: border-box;
    outline: none;
    font-family: "PT Sans" ,"sans-serif";
}

#blips label {
    margin-left: 10px;
}

.hidden {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
}

.filter-form{
    opacity: 0;
    transform: translateX(-100%);
    transition: all .3s ease-in-out;
}

.filter-form.active{
    opacity: 1;
    transform: translateX(0);
}

.filter-form{
    display: flex;
    margin-top: 12px;
    background: rgb(30, 30, 30);
    max-width: 400px;
    padding: 1em;
    border-radius: 0 14px 14px 0 ;
    max-height: 700px;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100% - 100px);
    width: 100%;
    position: fixed;
    z-index: 20;
    top: 50px;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;

    label{
        color: whitesmoke !important;
    }
    select{
        border: none;
        outline: none;
        border-radius: 9px;
        padding: .5em 1em;
        background-color: whitesmoke;
        color: dimgray;
        width: 100%;
        font-size: 14px;
    }



    .select-user{
        border: none;
        outline: none;
        border-radius: 9px;
        padding: .5em 1em;
        background-color: whitesmoke;
        color: black;
        width: 100%;
        font-size: 14px;
    }

    .select-user::placeholder{
        color: black;
    }

    .select-user:active{
        border: none;
        outline: none;
    }

    input::placeholder{
        color: whitesmoke;
    }

    .select-user-selected {
        overflow-y: auto;
    }

    .select-user-selected option{
        cursor: pointer;
        margin: 12px 0;
        color: whitesmoke;
    }

    .flex {
        display: flex;
    }

    .flex-column {
        flex-direction: column;
    }

    #findUserSelectedValues {
        option{
            cursor: pointer;
            margin: 12px 0;
            color: whitesmoke;
        }
        option::before{
          content: '[+] ';
        }
    }

    button{
        cursor: pointer;
        background: whitesmoke;
        color: dimgray;
        padding: .5em 3em;
        border-radius: 12px;
        border: none;
        outline: none;
        position: sticky;
        bottom: 8px;
        display: block;
    }

    input[type='datetime-local']{
        width: 100%;
        cursor: pointer;
        background: whitesmoke;
        color: dimgray;
        padding: .5em 1em;
        border-radius: 12px;
        border: none;
        outline: none;
    }

    .filter-form-types-map{

    }

    .filter-form-types-map-wrapper{
        display: flex;
        border-radius: 12px;
        overflow: hidden;
    }

    .filter-form-types-map input[type = 'radio']{
        position: relative;
        display: block;
        height: 50px;
        width: 100%;
        margin: 0;
    }
    .filter-form-types-map input[type = 'radio']:nth-child(1):after{
        background-image: url("https://map.hinex-dayz.ru/images/map/chernarusplus/sat_3/6x5.jpg");
    }
    .filter-form-types-map input[type = 'radio']:nth-child(2):after{
        background-image: url("https://map.hinex-dayz.ru/images/map/chernarusplus/top_3/5x5.jpg");
    }

    .filter-form-types-map input[type = 'radio']:after{
        content: '';
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        filter: grayscale(1);
        transition: .2s ease-in-out;
    }

    .filter-form-types-map input[type = 'radio']:checked:after{
        filter: grayscale(0);
    }


}

.mb-12{
    margin-bottom: 12px;
}

