*{
    color: #ffcbaa;
}
#content{
    position: relative;
    width: 95vw;
    margin: auto;
    margin-top: 40px;
    display: flex;
}
#menu{
    background-color: #a66039;
    width: 280px;
    padding: 15px;
    border-radius: 30px;
    height: 300px;
    transition: 0.3s;
}
.category{
    position: relative;
    display: block;
    width: 100px;
    height: 50px;
    font-size: 20pt;
    line-height: 25pt;
    list-style-type: none;
}
.category input{
    position: relative;
    display: block;
    opacity: 0;
    min-height: 50px;
    top: 10px;
    z-index: 10;
    width: 100%;
    align-self: center;
    justify-self: center;
}
.coffee-wrapper{
    position: relative;
    width: 100%;
    min-height: 50px;
    transform:translateY(0);
}
.category label{
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    transform: translateY(-80%);
    background-color: #f8a26b;
    pointer-events: none;
    display: block;
    border: 1px #240f0c solid;
    color: #240f0c;
}
.coffee-box{
    position: absolute;
    margin-left: 100px;
    list-style-type: none;
    display: none;
    width: 150px;
    top: 0;
    margin-top: 5px;
}
.coffee-wrapper .coffee-label{
    position: absolute;
    font-size: 20pt;
    line-height: 18pt;
    height: 100%;
    display: block;
    border: #240f0c solid 1px;
}
.coffee input{
    display: block;
    width: 100%;
    min-height: 50px;
    top: 10px;
}
.category input[type="radio"]:checked + label{
    background-color: #240f0c;
    color: #ffcbaa;
}
.category input:checked ~ .coffee-box{
    display: unset;
}
.transform-50{
    transform: translateY(-50px);
}
.transform-100{
    transform: translateY(-100px);
}






#coffee-box{
    background-color: #a66039;
    border-radius: 30px;
    position: relative;
    margin-left: auto;
    margin-right: 30px;
    z-index: 0;
    width: calc(100% - 350px);
}
.coffee-row1, .coffee-row2{
    position: relative;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
.coffee-diagram-box{
    position: relative;
    width:30%;
    height: 60%;
    margin: auto;
    text-align: center;
    min-width: 350px;
}
#coffee-diagram{
    position: relative;
    width: 100%;
    padding: 2%;
    padding-top: 1%;
    padding-bottom: 1%;
    border-radius: 30px;
    object-fit: cover;
}
.coffee-products-box{
    position: relative;
    width: 30%;
    height: 100%;
    background-color: #6e3c20;
    text-align: left;
    margin: 0 10px;
    padding: 10px;
    border-radius: 30px;
}
#tool{
    font-size: 20pt;
    font-weight: bold;
}
#products-title{
    font-size: 20pt;
}
#coffee-products{
    padding-left: 30px;
    font-size: 20pt;
    font-weight: bold;
}
#addstoproducts{
    font-size: 16pt;
}
.coffee-details-box{
    width: 30%;
    height: 100%;
    position: relative;
    background-color: #6e3c20;
    padding: 10px;
    padding-left: 30px;
    border-radius: 30px;
    margin: 0 10px;
}
#coffee-details{
    font-size: 20pt;
}
.coffee-instruction-box{
    position: relative;
    width: 100%;
    background-color: #6e3c20;
    padding: 10px;
    border-radius: 30px;
}
.coffee-details-box span{
    font-size: 20pt;
    font-weight: bold;
}
#coffee-instruction{
    width: 100%;
    font-size: 20pt;
}

@media screen and (max-width: 1225px){
    .coffee-row1{
        display: unset;
    }
    .coffee-diagram-box{
        width: 80%;
        margin: auto;
        height: unset;
        margin-bottom: 20px;
    }
    .coffee-products-box{
        float: left;
        width: 45%;
        margin-left: 2%;
        height: unset;
    }
    .coffee-details-box{
        float: right;
        width: 45%;
        margin-right: 2%;
        height: unset;
    }
    .coffee-diagram-box{
        width: 80%;
        margin: auto;
        height: unset;
        margin-bottom: 20px;
    }
    .coffee-products-box{
        float: unset;
        width: 90%;
        margin-left: 5%;
        height: unset;
        margin-bottom: 20px;
    }
    .coffee-details-box{
        float: unset;
        width: 90%;
        margin-left: 5%;
        height: unset;
    }
}
@media screen and (max-width: 1125px){
    #content{
        margin-top: 170px;
    }
}
@media screen and (max-width: 768px){
    #content{
        margin-top: 70px;
        display: block;
    }
    #coffee-box{
        width: 90%;
        margin: auto;
        margin-top: 20px;
    }
    #menu{
        margin: auto;
        width: 70vw;
        text-align: center;
        height: 400px;
        padding-left: 5vw
    }
    .category{
        width: 30vw;
    }
    .coffee-box{
        margin-left: 15vw;
        width: 30vw;
    }
    
}