/* colors */
:root{
    --errorColor:rgb(221, 7, 7);
    --errorColorLight:rgb(202, 127, 127);
    --okColor: green;
    --okColorLight:rgb(173, 204, 173);
    --alertColor: rgb(104, 104, 104);
    --alertColorLight:rgba(255, 255, 0, 0.785);
}

/* body */
body{
    font-family:'Poppins', Arial, "sans-serif";
    margin: 0;    
    font-size: 14px;
}

/* inputs */
input, select, textarea{
    outline:none
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}/*Hide arrows from input type number*/

input[type="checkbox"]:checked {
    accent-color: black
}

input[type="radio"]:checked {
accent-color: black
}

a{
    text-decoration: none;
    color:black
}

/* pointer */
.pointer{
    cursor:pointer
}

/* unfilters */
.unfilter{
    position: relative;
    cursor: pointer;
}

.unfilter-info{
    font-size: 12px;
    position: absolute;
    top: 0px;
    left: 20px;
    display: none;
    width: 100px;
}

.unfilter:hover .unfilter-info{
    display: block;
}