body {
//    background: url('/img/drinks01.jpeg') no-repeat center center fixed;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.logo {
    float: right;
    position: relative;
    top: -5px;
    display: block;
    max-width:230px;
    height: 50px;
    width: auto;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btn-space {
    margin: 5px;

}

/*
wrapper for sidebar
 */
.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}



#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #ffffff;
    color: #fff;
    transition: all 0.3s;
}


#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #1620d8;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #1620d8;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

/*
    U S E R  T A B L E
 */

.user-table-area {
    border-collapse: collapse;
    max-height: 600px;
    border: 1px solid #ddd;
    font-size: 35px;
    overflow: auto;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    margin-right: 20px;
}


.user-table {
    position: absolute;
    left: 0;
    right: 0;
    border-collapse: collapse;
// margin: 2px;
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    overflow: auto;

}


.admin-table{
    margin: 5px;
}

.thead-theke-admin {
    color: white;
    background-color: #005cbf;
    border-color: #454d55;
}

.user-table tr {
    border-bottom: 1px solid #ddd;
    background: rgba(255, 255, 255, 0.7);
}

.user-table th {
//   width: 100%;
//   text-align: left;
    font-size: 28px;
    padding: 12px;
//    background: rgba(255, 255, 255, 0.2);
}

.user-table td {
    text-align: left;
    font-size: 28px;
    padding: 12px;
}

.content {
    position: absolute;
// text-align: center;
    left: 0;
    top: 100%;
    width: 100%;
}



.keyboard_area {
    margin: 7px;
    width: 70%;
}

.admin-head {
//  position: relative;
    height: 60px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-backdrop-filter: blur(5px) grayscale(100%);
    backdrop-filter: blur(5px) grayscale(100%);
    background-color: rgba(255, 255, 255, 0.5);
}

.action-btn {
    margin: 5px;
}

.form-title{
    color: #005cbf;
    font-weight: bold;
    font-size: 20px;
}

.title {
// position: absolute;
    color: #bd2130;
    vertical-align: center;
    margin-left: 10px;
    top: 0px;
    bottom: 0px;

    font-size: 35px;
    font-family: impact, sans-serif;
    text-decoration: none;
    display: inline-block;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 1);
    font-weight: bold;
    color: #242424;
//background-color: #F9F9F9;
}

.title-user {
    color: whitesmoke;
    text-align: center;
//vertical-align: center;
//position: relative;
//top: 3px;
//bottom: 0px;
    width: 100%;
//height: 30px;
    font-size: 35px;
    font-family: impact, sans-serif;
    text-decoration: none;
    display: inline-block;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 1);
    font-weight: bold;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: rgba(0, 0, 255, 0.5);
//background-color: #F9F9F9;
}


.ctrl-btn {
    float: right;
    height: 80%;
    margin: 5px;
    width: 90px;

    font-size: 14px;
    font-family: impact, sans-serif;
    text-decoration: none;
    display: inline-block;
//  text-shadow: 1px 1px 0 rgba(255, 255, 255, 1);
    font-weight: bold;
    color: #242424;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.ctrl-btn:hover{
    cursor:url('/img/tennisball.png') 16 16, auto;
}

.ctrl-green {
    background: lime;
}

.ctrl-red {
    background: red;
    color: antiquewhite;
}

.ctrl-orange {
    background: orangered;
    color: antiquewhite;
}

dialog {
    width: 500px;
    background:#e8e8e8;
    border: 1px solid #dadada;
    font-family:sans-serif;
    padding: 5px 10px 20px 20px;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

.fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.fadeIn.fourth {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

.underlineHover:hover:after{
    width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
}

#icon {
    width:60%;
}

.fa-disabled {
    opacity: 0.6;
/*    cursor: not-allowed;
 */
}

.invoice-status{
    color: #34ce57;
}

.tablepicker > .btn{
    color: #000000;
    background: #ffffff;
}