header {

    background-color: white;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    -webkit-box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px -18px 70px -20px rgba(0, 0, 0, 0.75);
    z-index: 10000;
    height: 70px;

}

.dark-mode {
    background-color: rgb(34, 34, 34);
    fill: white;
    color: white;
    border: white solid 1px;
}

header img {

    width: 170px;
    height: 90%;
}

header button {
    border: none;
    z-index: 100000;
    background-color: transparent;
}

#exercises {

    padding-top: 8%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1000;

}

#exercise img {

    width: 100%;

    border-bottom: rgba(141, 141, 141, 0.479) solid 1px;

}


#exercise {

    width: 40%;
    margin: 1%;
    margin-top: 1%;
    animation-name: fade_in;
    animation-duration: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2%;
    position: relative;

}

#exercise h3 {

    font-size: 15px;
    width: 100%;
    display: block;
    text-align: center;


}

#exercise h6 {
    width: 55%;

    height: 0px;
    text-align: left;
    padding-top: 5%;
    transition: 0.3s ease-in-out;
    font-size: 0px;
    overflow: auto;

}

#SubtitleQuestion {
    font-size: 0px;
    transition: 0.3s;
    padding-top: 1%;
    position: relative;

}

#search_input {

    width: 0%;
    height: 0%;
    transform: translate(-20%, 0%);
    z-index: 100;
    position: absolute;
    border: none;
    outline: none;
    transition: .3s;
    display: none;
}

#change_to_X {

    transition: 1s;

}

#filter {

    border-radius: 5px;

}

#filter_section {

    margin-top: 3%;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}

#filter_section #filter {

    width: 30%;
    height: 10%;
}

#filter_section div {

    width: 100%;

    overflow: auto;
    transition: 200ms;
    z-index: 1000;

    display: flex;
    justify-content: center;
    height: 0px;

}

#first_resultttttt {

    background-color: rgb(221, 221, 221);
    border: rgb(153, 153, 153) solid 1px;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 2%;

}

#first_resultttttt img {


    height: 100px;

}

#first_resultttttt h6 {
    font-size: 10px;
}


ul {

    list-style-type: none;

    height: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: none;

}

li {

    width: 40%;
    height: 30px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1%;
    margin-top: 10px;
    margin-right: 6%;
    border: black solid 1px;
    border-radius: 5px;
    transition: 0.5s;


}

#search_results {

    width: 100%;
    height: 00%;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000000;
    padding: 0%;
    transition: 0.5s;


}

.search_result {
    display: flex;
    align-items: center;

    padding-top: 30px;
    width: 90%;
    padding-bottom: 30px;
    border-bottom: rgba(0, 0, 0, 0.185) solid 1px;

}

.search_result img {
    height: 100%;
    width: 40%;
}

.search_result #text_description {
    width: 60%;
}

#first_result {

    background-color: rgb(221, 221, 221);
    border: rgb(153, 153, 153) solid 1px;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 2%;


}

#text_description {
    padding-left: 3%;

}

#first_result h6 {
    font-size: 10px;
}

#first_result img {


    height: 100px;

}


@keyframes fade_in {
    from {
        scale: 0.5;
    }

    to {
        scale: 1;
    }
}


aside {

    width: 100%;
    position: fixed;
    height: 100vh;
    background-color: white;
    left: 100%;
    transition: 0.3s ease-in-out;
    padding: 5%;
    z-index: 10000;
    padding-top: 5%;
    text-align: center;


}

aside button {
    width: 100%;
    background-color: transparent;
    margin-top: 5%;
    padding: 2%;
    height: 70px;
    border-radius: 5px;
    /* display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column; */
    position: relative;

}

aside button svg {
    height: 20px;
    width: 60%;
}

#settings_set {
    position: relative;
    transition: 0.5s;
    border-radius: 0px 0px 5px 5px;
    display: block;
    margin: -8px;
    margin-top: 1%;

}

@media (min-width:720px) {
    #exercise {
        width: 25%;
    }
    aside {
        width: 30%;
    }
    aside button svg {
    height: 50%;
    width: 60%;
}
}