﻿* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

body {
    background: #EAEBEC;
}

.container {
    margin: auto;
}

.coffee-body {
    width: 600px;
    margin: auto;
    background-color: #404D5E;
    min-height: 400px;
    border: solid 1px #3A4655;
    box-shadow: 0 8px 50px -7px black;
}

.coffee-screen {
    background: #3A4655;
    width: 100%;
    height: 150px;
    padding: 20px;
}

.coffee-operation {
    text-align: right;
    color: #727b86;
    font-size: 21px;
    padding-bottom: 10px;
    border-bottom: dotted 1px;
}

.coffee-typed {
    margin-top: 20px;
    font-size: 45px;
    text-align: center;
    color: #fff;
}

.coffee-button-row {
    width: 100%;
    background: #3C4857;
}

.button {
    width: 33%;
    background: #435262;
    color: #fff;
    padding: 20px;
    display: inline-block;
    font-size: 25px;
    text-align: center;
    vertical-align: middle;
    margin-right: -4px;
    border-right: solid 2px #3C4857;
    border-left: solid 2px #3C4857;
    transition: all 0.2s ease-in-out;
}

    .button.s {
        color: #fff;
        background: #404D5E;
        font-size: 10px;
    }

    .button.l {
        color: #AEB3BA;
        background: #404D5E;
        width: 100%;
    }


    .button.s:hover {
        background: #3C4857;
    }

    .button:hover {
        background: #E0B612;
    }

    .button.coming {
        background: gray;
        color: black;
    }

    .button.coming:hover {
        background: gray;
    }

    .button.l:hover {
        background: #E0B612;
        color: #fff;
    }

    .served{
        color: lightgreen;
    }

    .serving{
        color: yellow;
    }

.blink {
    -webkit-animation: blink .75s linear infinite;
    -moz-animation: blink .75s linear infinite;
    -ms-animation: blink .75s linear infinite;
    -o-animation: blink .75s linear infinite;
    animation: blink .75s linear infinite;
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    50.01% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
