@charset "utf-8";
/* CSS Document */

@-webkit-keyframes setbackgroundcolor {
    to {
        background: transparent;
        color: whitesmoke;
    }
}
input:-webkit-autofill {
    -webkit-animation-name: setbackgroundcolor;
    -webkit-animation-fill-mode: forwards;
}

.errorinfo, #successinfo {
    font-size: .8em;
    text-align: center;
    padding: 10px;
    margin-bottom: 3px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
}
#successinfo {
    color: #2cff23;
    background: rgba(0, 255, 0, 0.2);
}
#messageclose {
    float: right;
    cursor: pointer;
}

#table {
    color: whitesmoke;
    width: 100%;
    height: 100%;
    position: fixed;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow: auto;
    padding-top: 75px;
    padding-bottom: 100px;
}

.retour {
    display: block;
    text-align: right;
    color: #C4A886;
    transition: .2s;
}
.retour:hover {
    color: whitesmoke;
    text-decoration: underline;
}
#loginbox {
    width: 520px;
    margin: auto;
    padding-top: 15px;
}
.logobox {
    width: 100px;
    margin: auto auto 10px;
}
.logobox img {width: 100px;}

#tablebox {
    width: 520px;
    margin: auto;
    padding-top: 15px;
}
h1 {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    color: #C4A886;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.input-group {padding-bottom: 15px}
.input-group-addon, .form-control {
    background: transparent;
    border-color: #4e4e4e;
    transition: .2s;
}
.glyphicon {
    color: #4e4e4e;
    transition: .3s;
}
.form-control {
    height: 56px;
    color: whitesmoke;
    border-left: 1px dotted rgba(78, 78, 78, 0.5);
}
.form-control:focus {
    border-color: #C4A886;
    border-left: 1px dotted rgba(78, 78, 78, 0.5);
    box-shadow: none;
}

.datetimebox {
    width: 520px;
    height: 56px;
    margin-bottom: 15px;
}
.datetimebox select option {background-color: #1a1a1a;}
.reserve, .reservesp {
    width: calc(98%/3);
    float: left;
    border-left: 1px solid #4e4e4e;
}
.reserve {margin-right: 1%;}
.reserve:focus, .reservesp:focus {border-left: 1px solid #C4A886;}

.reservertable {
    width: 520px;
    height: 56px;
    background-color: #C4A886;
    border: 0;
    border-radius: 3px;
    color: black;
    font-size: 1.2em;
    font-weight: 600;
    transition: .2s;
}
.reservertable:hover {
    color: whitesmoke;
    background-color: #87714f;
}


@media (max-width: 1280px) {
    .errorinfo, #successinfo {
        padding: 7px;
        margin-bottom: 2px;
        border-radius: 3px;
    }
    #table {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    #loginbox {
        width: 365px;
        padding-top: 10px;
    }
    .logobox {
        width: 70px;
        margin: auto auto 7px;
    }
    .logobox img {width: 70px;}
    #tablebox {
        width: 365px;
        padding-top: 10px;
    }
    h1 {padding: 14px;}
    .input-group {padding-bottom: 10px}
    .form-control {
        height: 40px;
        font-size: .8em;
    }
    .datetimebox {
        width: 365px;
        height: 40px;
        margin-bottom: 10px;
    }
    .reservertable {
        width: 365px;
        height: 40px;
        border-radius: 2px;
    }
}

@media (max-width: 580px) {
    #loginbox, #tablebox,.datetimebox,.reservertable {width: 320px;}
}