*{
    margin: 0;
    font-family: Montserrat,Arial, Helvetica, sans-serif;
}
input[type="checkbox"] {
    appearance: checkbox !important;
}


body::-webkit-scrollbar {
    width: 8px;
    height: 5px;
    background-color: #aaa;
    border-radius: 10px; /* or add it to the track */
}

body::-webkit-scrollbar-thumb {
    background: rgb(78, 78, 78);
    border-radius: 10px;
}

/* ---------------------------------------- */
.news-line 
    #news {
        width: 100%;
        height: 3em;
        z-index: 3;
        background-color: #ca3232;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        transition: 0.5s;
    }
    
    #news .hide-btn {
        all: unset;
        cursor: pointer;
        position: absolute;
        right: 0;
        margin: 10px;
    }

    #show-btn {
        all: unset;
        cursor: pointer;
        position: absolute;
        left: 0;
        z-index: 3;
        font-size: 0;
        transition: 0.5s;
        width: 100%;
        height: 1.2em;
        display:flex;
        justify-content: center;
        align-items: center;
        /* visibility:hidden; */
        color: transparent;
        }

    #show-btn:hover {
        /* visibility: visible; */
        /* top: -2em; */
        height: 3em;
        color: black;
        background-color: rgb(202, 50, 50);
    }

    /* ------------ ^ news line ^ ---------------*/

.main {
    width: 100%;
    background-color: #e6e6e6;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    position: relative;
}

.card {
    box-shadow: 0 0 6px rgba(0,0,0,0.2); 
    border-radius: 1px;
    background-color: white;
    padding: 1em;
}

.full {
    width: 90%;
}

.half {
    width: calc(45% - 5px - 1em);
}

.fourth {
    width: calc(22.5% - 15.5px - 1em);
}

.three-fourth {
    width: calc(67% - 5px);
}

/* new----------- */

.filters {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: left;
    /* align-items: center; */
    gap: 10px;
}

.filters .filter {
    background-color: white;
    color: #ca3232;
    border: unset;
    /* border: #ca3232 solid 1px; */
    /* border-radius: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding: 1px 15px;
    cursor: pointer;
}
.filters .filter:hover {
    /* background-color: #ca3232; */
    /* color: white; */
    border-bottom: #ca3232 solid 4px;
    font-weight: 600;
}

.filters-container {
    position: absolute;
    left: 1em;
    top: 4em;
    gap: 10px;
    width: 14em;
    z-index: 1;
}

.filter-card .filter-group {
    display: block;
    position: relative;
    padding-left: 35px;
    margin: 10px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    /* background-color: #eee; */
    border: #ca3232 solid 1px;
    border-radius: 2px;
}



.filter-group:hover input ~ .checkmark {
    background-color: #e6e6e6;
  }
  
  /* When the checkbox is checked, add a blue background */
  .filter-group input:checked ~ .checkmark {
    background-color: #ca3232;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .filter-group input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .filter-group .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


#brandBox, #colorBox, #genderBox {
    visibility: hidden;
}

#wideavailable:hover {
    background-color: white;
    color: #ca3232;
}

.submit {
    background-color: #ca3232;
    color: white;
    border: unset;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding: 5px 10px;
    cursor: pointer;
    float: right;
}

/* sdfkjsdfkljsdf */
.boot {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.boot img{
    object-fit: contain;
    width: 60%;
}

.boot i {
    font-size: 150px;
    margin: 20px;
}

.boot .bottom {
    width: 100%;
    height: 12em;
    border-radius: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.boot .brand {
    text-align: center;
    font-weight:600;
}

.boot .color {
    margin-top: 1em;
    width: 95%;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

.boot .title {
    width: 95%;
    font-weight: 700;
    font-size: 23px;
    text-align: center;
}

.boot .btns {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-bottom: 1em;
    text-align: center;

}

.boot .view-btn {
    text-decoration: none;
    color: #ca3232;
    padding: 12px 0px;
    border-radius: 1px;
    display: block;
    border: 1px solid #ca3232;
    width: 90%;
    font-weight: 600;
    transition: 0.25s;
}

.boot .view-btn:hover {
    color: white;
    background-color: #ca3232;
}

.nextpage{
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin: 20px 0;
    color: #ca3232;
}



@media (max-width: 840px) {
    .card{
        width: 45%;
    }
  }

@media (max-width: 600px) {
    .card{
        width: 85%;
    }
  }