.coffee-maker{
    display: block;
    height: 400px;
    width: 400px;
    position: relative;
    /* transform: translate(-50%,-50%); */
    margin-left: auto;
    margin-right: auto;
    /* top: 50%; */
}
.upper{
    height: 0;
    width: 300px;
    border-top: 180px solid #adacaa;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    position: relative;
    margin: 55px auto;
    box-sizing: border-box;
}
.upper:after{
    content: "";
    position: absolute;
    background-color: #3b240e;
    height: 15px;
    width: 306px;
    left: -23px;
    top: -180px;
}
.timer{
    content: "";
    position: absolute;
    height: 130px;
    width: 120px;
    background-color: #e06526;
    margin: auto;
    left: 0;
    right: 0;
    top: -150px;
    display: grid;
    place-items: center;
}
.timer:before{
    content: "";
    position: absolute;
    height: 64px;
    width: 64px;
    background-color: #ffffff;
    border-radius: 50%;
}
.timer:after{
    content: "";
    position: absolute;
    background-color: #e06526;
    height: 24px;
    width: 8px;
    border-radius: 4px;
    top: 40px;
}
.upper-btn{
    background-color: #ffffff;
    height: 16px;
    width: 16px;
    position: absolute;
    border-radius: 50%;
    left: 18px;
    bottom: 100px;
}
.upper-btn:before{
    content: "";
    position: absolute;
    background-color: #e06526;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    top: 20px;
    left: -4px;
}
.upper-btn:after{
    content: "";
    position: absolute;
    background-color: #ffffff;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    top: 26px;
    left: 2px;
}
.filter{
    width: 45px;
    height: 16px;
    background: linear-gradient(
        to right,
        #ede9d7 70%,
        #dad1b7 70%
    );
    position: relative;
    margin: auto;
    bottom: 57px;
    z-index: 5;
    cursor: pointer;
}
.filter-base{
    background-color: #ffffff;
    height: 13px;
    border-radius: 0 0 5px 5px;
    position: relative;
    top: 15px;
    width: 45px;
}
.filter-base:before{
    content: "";
    position: absolute;
    background-color: #ffffff;
    height: 6px;
    width: 12px;
    top: 12px;
    left: 16px;
}
.handle{
    height: 7px;
    border-right: 70px solid #e06526;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    position: relative;
    left: 39px;
    bottom: 16px;
}
/* .filter:active .handle{ */
.filter .handle{
        animation: spin 3s;
}
@keyframes spin{
    50%{
        transform: translateX(-102px) rotateY(-180deg);
    }
}
.handle:after{
    content: "";
    position: absolute;
    height: 24.5px;
    width: 24.5px;
    border-radius: 50%;
    background-color: #c9561d;
    left: 58px;
    top: -12px;
    transform: rotateY(70deg);
}
.coffee{
    height: 50px;
    width: 8px;
    background-color: #4a2310;
    border-radius: 0 0 15px 15px;
    position: relative;
    margin: auto;
    bottom: 3px;
    visibility: hidden;
}
/* .filter:hover .coffee{ */
.filter .coffee{
        animation: pour 2s 3.5s;
}
@keyframes pour{
    0%{
        visibility: visible;
    }
    100%{
        transform: translateY(50px);
    }
}
.steam{
    background-color: rgba(204,204,204,0.2);
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: relative;
    margin: auto;
    top: 50px;
}
/* .filter:hover .steam{ */
.filter .steam{
    animation: rise-steam 3s 5s;
}
@keyframes rise-steam{
    100%{
        transform: translateY(-80px);
    }
}
.steam:before{
    content: "";
    position: absolute;
    background-color: rgba(230,230,230,0.3);
    height: 8px;
    width: 8px;
    bottom: 5px;
    border-radius: 50%;
}
.steam-left{
    background-color: rgba(204,204,204,0.2);
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: relative;
    margin: auto;
    left: -8px;
    top: 25px;
}
/* .filter:hover .steam{ */
.filter .steam-left{
    animation: rise-steam 3s 4.9s;
}
@keyframes rise-steam{
    100%{
        transform: translateY(-80px);
    }
}
.steam-left:before{
    content: "";
    position: absolute;
    background-color: rgba(230,230,230,0.3);
    height: 8px;
    width: 8px;
    bottom: 5px;
    border-radius: 50%;
}
.steam-right{
    background-color: rgba(204,204,204,0.2);
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: relative;
    margin: auto;
    left: 8px;
    top: 18px;
}
/* .filter:hover .steam{ */
.filter .steam-right{
    animation: rise-steam 3s 4.8s;
}
@keyframes rise-steam{
    100%{
        transform: translateY(-80px);
    }
}
.steam-right:before{
    content: "";
    position: absolute;
    background-color: rgba(230,230,230,0.3);
    height: 8px;
    width: 8px;
    bottom: 5px;
    border-radius: 50%;
}
.coffee-drop{
    background-color: #4a2310;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    position: relative;
    bottom: 93px;
    left: 18px;
    visibility: hidden;
}
/* .filter:hover .coffee-drop{ */
.filter .coffee-drop{
    animation: drop 2s 4.8s;
}
@keyframes drop{
    100%{
        visibility: visible;
        transform: translateY(45px);
    }
}
.back{
    width: 230px;
    background-color: #8d8d8d;
    height: 160px;
    position: relative;
    margin: auto;
    bottom: 72px;
}
.back:before{
    content: "";
    position: absolute;
    height: 12px;
    width: 226px;
    background-color: #e06526;
    bottom: 0;
    left: 2px;
}
.tray{
    width: 100%;
    height: 15px;
    position: absolute;
    margin: auto;
    bottom: 3px;
    background-image: radial-gradient(
        #8d8d8d 5px,
        transparent 6px
    );
    background-size: 15px 15px;
    background-position: -2.8px 0;
}
.cup{
    height: 0;
    width: 50px;
    border-top: 70px solid #ede9d7;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: relative;
    top: 78px;
    margin: auto;
    z-index: 5;
}
.cup:before{
    content: "";
    position: absolute;
    height: 0;
    width: 6px;
    border-top: 70px solid #dad1b7;
    border-left: 0 solid transparent;
    border-right: 10px solid transparent;
    bottom: 0;
    left: 24px;
}
.cup:after{
    content: "";
    position: absolute;
    height: 4px;
    width: 55px;
    background-color: #ffffff;
    border-radius: 5px;
    bottom: 68px;
    left: -12.5px;
}
.lower{
    height: 40px;
    width: 300px;
    background-color: #adacaa;
    border-radius: 5px 5px 0 0;
    position: relative;
    margin: auto;
    bottom: 75px;
}
.lower:before{
    content: "";
    position: absolute;
    height: 10px;
    width: 306px;
    background-color: #3b240e;
    bottom: -5px;
    left: -3px;
}
.lower-btn{
    height: 20px;
    width: 10px;
    background-color: #3b240e;
    position: relative;
    left: 13px;
    top: 8px;
}
.lower-btn:before{
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #e06526;
    bottom: 5px;
    left: 18px;
}