body {
    background-color: var(--color-3);
}

/*----------------------------------------------------------
PRODUCT DESCRIPTION
----------------------------------------------------------*/
.description {
    display: flex;
    margin: 4rem var(--padding-general-left) 0;
    color: var(--color-1);
    overflow: hidden;
}

.description .content {
    width: 70%;
}

.description .content .text {
    color: var(--color-black);
    margin-right: 1rem;
}

.text a {
    color: var(--color-black);
}

.description img {
    margin: 5rem auto 2rem;
    width: 30%;
}

/*----------------------------------------------------------
PRODUCT FILTER
----------------------------------------------------------*/
.containers-page-wrapper {
    display: flex;
    justify-content: stretch;
    align-items: flex-start;
    margin: 2rem var(--padding-general-left);
    clear: both;
}

/* Filter side */
.containers-page-wrapper form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    border-radius: 15px;
    width: 20%;
    background-color: white;
}

.filter-category h2 {
    /* text-align: center; */
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: underline;
    color: var(--color-1);
    font-size: 20px;
}

label.radio-tile {
    position: relative;
    display: block;
    margin: 0.3rem;
    height: 5rem;
    border: 1px solid var(--color-2);
    border-radius: 15px;
    background-color: transparent;
    cursor: pointer;
}

label.radio-tile input {
    opacity: 0;
}

label.radio-tile .content {
    position: absolute;
    top: 0;
    border: 2px solid white;
    border-radius: 15px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: stretch;
    align-items: center;
}

label.radio-tile input:checked ~ .content {
    background-color: var(--color-2);
}

label.radio-tile input:checked ~ .content span {
    font-weight: 400;
    color: var(--color-3);
}

label.radio-tile .content img {
    width: 30%;
}

label.radio-tile .content span {
    flex: 1;
    text-align: center;
    font-family: var(--main-font);
    font-size: 20px;
    color: var(--color-2);
}

/*----------------------------------------------------------
RESULT SIDE
----------------------------------------------------------*/
section.results {
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/*----------------------------------------------------------
------------------------------------------------------------
------------------------------------------------------------
MEDIA QUERIES
------------------------------------------------------------
------------------------------------------------------------
----------------------------------------------------------*/
@media screen and (max-width: 767px) {
/*----------------------------------------------------------
PRODUCT DESCRIPTION
----------------------------------------------------------*/
    .description {
        margin: 3rem auto 1rem;
        width: 90%;
        flex-direction: column-reverse;
    }

    .description .content {
        width: 100%;
        text-align: justify;
    }

    .description img {
        margin: 3rem 0 0;
        width: 100%;
    }

/*----------------------------------------------------------
PRODUCT FILTER
----------------------------------------------------------*/
    .containers-page-wrapper {
        margin: 1rem auto;
        width: 95%;
        flex-direction: column;
    }

    /* Filter side */
    .containers-page-wrapper form {
        width: 100%;
    }

    label.radio-tile {
        display: inline-block;
        margin: 0.3rem;
        width: 45%;
    }

    label.radio-tile .content img {
        height: auto;
        width: 35%;
    }
}