main {
    display: flex;

    width: 100%;
    margin: 0px;
    padding: 0px;
}

#main {
    width: 1035px;

    margin-top: 40px;
    margin-left: 60px;
    margin-right: 60px;
}

footer {
    margin-top: 60px;
}

aside#resultsAside input {
    width: 100%;
    height: 50px;

    padding: 0px;
    padding-left: 30px;

    border-radius: 10px 0px 0px 10px;

    font-size: 20px;
}

aside#resultsAside button {
    width: 60px;
    height: 50px;
    background-color: #F3A41E;

    padding: 0px;

    border-radius: 0px 10px 10px 0px;
    border-style: none;
}

aside#resultsAside button img {
    height: 40px;

    margin: 0px;
    padding: 5px;
}

#asideFilter {
    justify-content: space-between;

    margin-top: 30px;
}

#asideFilter p {
    display: flex;
    flex-direction: row;
    align-items: center;

    font-size: 20px;
}

aside ul {
    margin-top: 20px;
    font-size: 20px;
}

aside li {
    margin : 12px 0px;
    position: relative;
    font-size: 18px;
}


.thematic input {
    display: none;
}

.thematic label:hover {
    cursor: pointer;
}

.thematic input[type="radio"]:checked + label::before {
    background-color: #F3A41E;
}

.thematic input[type="radio"]:checked + label {
    font-style: italic;
}

.thematic label::before {
    /*background: transparent url(../../image/icons/checked.png) no-repeat 0 0;*/
    background-color: #C4C4C4;
    content: "";
    display: inline-block;
    height: 18px;
    width: 18px;
    background-size: contain;
    margin-right: 12px;
    border-radius: 100%;
}

#gridListView {
    height: 40px;
    width: 40px;

    border-radius: 0px;

    margin-left: 12px;
    cursor: pointer;
}

#asideFilter > div {
    font-style: italic;
}

#orderResults {
    background-color: rgba(0,0,0,0);

    margin-left: 20px;

    border: none;

    color: #6d6d6d;
    font-size: 20px;
}

aside#mainAside {
    width: 405px;

    margin-top: 40px;
    margin-left: 40px;
    margin-bottom: 60px;

    border-right: 4px solid #F3A41E;

    position: relative;
}

#nbResults {
    text-align:right;
    font-style: italic;
    font-size: 18px;
    font-weight: lighter;
    color: #6d6d6d;
}

#results {
    margin-top: 40px;
}


/***************************************
                GRID VIEW
***************************************/
#results {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0px;

    margin-top: 40px;
}

.gridView {
    width: 250px;

    padding: 10px;

    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(73, 49, 9, 0.5);
}

.gridView .imageResults {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 180px;
}

.gridView .imageResults img {
    width: 120px;
    height: 175px;
}

.gridView .textResults h2 {
    font-weight: bold;
    font-size: 16px;
    color: black;
}

.gridView .textResults > p{
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 15px;

    font-style: italic;
}

.gridView .textResults > div {
    display: flex;
    justify-content: space-between;
}

.gridView .resume {
    display: none;
}

.gridView .typeImpr {
    display: none;
}

/***************************************
                LIST VIEW
***************************************/
.listView {
    display: flex;
    gap: 100px;

    margin-bottom: 50px;
}

.listView .imageResults {
    width: 160px;
    height: 220px;
}

.listView .imageResults img {
    width: 160px;
    height: 220px;
}

.listView h2 {
    color: black;
    font-size: 20px;
}

.listView .editeurs {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.listView .typeImpr {
    font-weight: bold;
    margin-bottom: 10px;
}

.listView .disponibilite {
    display: flex;
    justify-content: space-between;

    margin-top: 20px;
    font-size: 20px;
}

@media (max-width: 375px) {
    footer {
        overflow: hidden;
    }

    #mainAside {
        display: none;
    }

    #main {
        box-sizing: border-box;
        width: 100%;
        margin: auto;
        margin-top: 40px;
        padding: 10px;
    }

    #results {
        justify-content: center;
    }

    .listView {
        gap: 10px;
    }

    .listView .imageResults {
        width: 80px !important;
        height: 110px !important;
    }

    .imageResults img {
        width: 80px !important;
        height: 110px !important;
    }

    .gridView .imageResults{
        height: auto;
    }
}
