* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
}

.riga {
    width:100%;
    display:flex;
}

.left {
    width: 35%;
}

InListaAttesa {
    color: gray;
}

.InPreparazione {
    color: red;
}

.Terminato {
    color: lightgreen;
}

.Spedito {
    color: blue;
}

/*****************
 *** Custom CSS ***
 *****************/

ons-input[type=text] {
    width: 90%;
}

ons-button[modifier=large] {
    width: initial;
    margin: 10px;
}

ons-splitter-side[side="left"][animation="overlay"] {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.highlight {
    background-color: lightyellow;
    color: rgba(255, 0, 0, 0.7);
}

.left-label {
    width: 30%;
    font-size: 16px;
    color: #666;
}

#wifi{
    margin-right:5px;
}

/********************
 *** Menu CSS ***
 ********************/
#headerMenu {
    background-color: blue;
}



.profile-image {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: white;
    border: 1px solid white;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px;
}



.profile-name {
    color: white;
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 17px;
    opacity: 1;
}



/********************
 *** Animation CSS ***
 ********************/

#tabbarPage .list {
    background-color: grey;
    overflow-x: hidden;
    margin-top: -1px;
    border-bottom: 1px solid #ccc;
}

#tabbarPage .list-item {
    min-height: 0;
    height: 44px;
    background-color: white;
    margin: 1px 0 -1px 0;
}

#tabbarPage .list-item--material {
    height: 56px;
}

.list-title {
    margin-top: 12px;
}

.hide-children * {
    overflow: hidden;
}

.animation-flip-right {
    pointer-events: none;
    -webkit-animation: ease-in .9s ease-in-out forwards;
    animation: ease-in .9s ease-in-out forwards;
}

.animation-swipe-right {
    pointer-events: none;
    -webkit-animation: swipe-right .9s ease-in-out forwards;
    animation: swipe-right .9s ease-in-out forwards;
}

.animation-swipe-left {
    pointer-events: none;
    -webkit-animation: swipe-left .9s ease-in-out forwards;
    animation: swipe-left .9s ease-in-out forwards;
}

.animation-remove {
    pointer-events: none;
    -webkit-animation: remove .7s ease-in-out forwards;
    animation: remove .7s ease-in-out forwards;
}

@-webkit-keyframes swipe-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10% {
        -webkit-transform: translateX(-3%);
        transform: translateX(-3%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        height: 0;
        opacity: 0.3;
    }
}

@keyframes swipe-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10% {
        -webkit-transform: translateX(-3%);
        transform: translateX(-3%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        height: 0;
        opacity: 0.3;
    }
}

@-webkit-keyframes swipe-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10% {
        -webkit-transform: translateX(3%);
        transform: translateX(3%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        height: 0;
        opacity: 0.3;
    }
}

@keyframes swipe-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10% {
        -webkit-transform: translateX(3%);
        transform: translateX(3%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        height: 0;
        opacity: 0.3;
    }
}

@-webkit-keyframes remove {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
        height: 0;
    }
}

@keyframes remove {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
        height: 0;
    }
}
