/* .headerCont form {
    display: flex;
    height: 1.6rem;
} */
#header_searchInput {
    display: flex;
    padding: 0.3rem 0.6rem;
    border: none;
    color: var(--red);
    background-color: var(--white);
    height: 1.5rem;
}
#header_searchInput:focus {
    background-color: var(--white);
    outline: 2px solid var(--blue);
    /* border: none; */
}
.header_searchButton {
    height: 1rem;
    width: 1rem;
    position: absolute;
    right: 0.75rem;
    top: calc(50% - 0.5rem);
    background-color: var(--white);
    border: 2px solid var(--blue);
    border-radius: 50%;
    /* 
    background-color: var(--blue);
    color: var(--white);
    padding: 0.4rem 0.45rem;
    display: flex;
    align-items: center; */
}
/* BAR AND FILTERS ---------------------------- */
.SblocCont {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}
.searchBarCont {
    display: flex;
    position: relative;
    flex-grow: 4;
}
.filters {
    color: white;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 1;
}
/* ---------------------------------------- */

.SblocContBody {
    display: flex;
    margin: 1rem;
    gap: 0.5rem;
}

.SblocFilter {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.filterSelector {
    padding: 0.4rem 0.45rem;
    color: var(--red);
    background-color: var(--white);
    border: none;
}

/* CHECKBOXES ------------------------------------------------- */
.checkbox {
 
    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: absolute;
    top: -3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

.checkbox:hover input ~ .checkbox-custom {
    background-color: var(--white);
}

.checkbox input:checked ~ .checkbox-custom {
    background-color: var(--salmon);
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox input:checked ~ .checkbox-custom::after {
    display: block;
}

.checkbox .checkbox-custom::after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-label{
    color: var(--white);
}
/* RESPONSIVE ====================================================== */

/* // Medium devices (tablets) */
@media (max-width: 768px) {
    .SblocCont {
        margin: 0% 0%;
    }
}

/* // Large devices (desktops) */
@media (min-width: 769px) and (max-width: 1200px) {
    .SblocCont {
        margin: 0% 15%;
    }
}

@media screen and (max-width: 1000px) {
    .SblocCont {
        flex-direction: column;
        /* margin: 0% 15%; */
    }
}
/* // Extra-large desktops */
@media screen and (min-width: 1201px) {
    .SblocCont {
        margin: 0% 15%;
    }
}
