

/* 
Summary
*/


.inputOrganizer {
    position: absolute;
    left: 45%;
    top: 15px;
    display: flex;
    
}


.test-image {
    position: absolute;
    top: 38vh;
    left: 0vw;
}

.test-image ul{
    list-style-type: none;
    background: var(--backgroundImg);
    justify-content: center;
    display: flex;
    width: 25vw;
    height: 100vh;
    overflow: auto;
    align-items: center;
    flex-wrap: wrap;
}


.test-image li {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/recipe.jpg);
    background-size: cover;
    background-position: center;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    text-shadow: 2px 2px 1px black;
    transition: all 1s;
    
}


@media only screen and (max-width: 900px) {
    .test-image li {
    box-shadow: 2px 2px 5px black;
    font-weight: bold;
    }
}

.test-image li:hover {

    background: url('../images/Dragon-Scales.svg'),var(--backgroundImg)!important;
    text-shadow: 1px 1px 5px black!important;
    
}

.summaryRecipe {
    position: absolute;
    top: 45vh;
    left: 30vw;
    height: auto;
    width: 40vw;
    padding: 20px;
    font-size: 0.8rem;
}

li.pickRecipe {
    text-align: center;
}


table {
    width: 100%;
    border-collapse: collapse;
}

table, td, th {
    padding: 15px;
}

th {text-align: left;}

tr.totalTool {
    background-color: var(--main-green-color);
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 1px black;
}



.sumOrganizer ul{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sumOrganizer li{
    width: 15%;
    min-width: 50px;
    margin-left: 5%;
    margin-bottom: 5%;
    border-radius: 5%;
    background: var(--purple-color);
    text-shadow: 1px 1px 1px black;
    color: white;
    list-style-type: none;
    box-shadow: 2px 2px 2px black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.summaryDescription {
    
    margin: 5%;
}


