* {
    margin: 0;
    padding: 0;
}
body, span, p, h1, h2, h3, input, a, textarea, button {
    font-family: 'Poppins', sans-serif;
}
button {
    cursor: pointer;
}
textarea {
    padding: 5px 10px;
    margin-top: 10px;
    width: 400px;
}
a {
    text-decoration: none;
}

.header-logo img {
    width: 85px;
}

.header {
    height: 50px;
    display: flex;
    background: #2f9cc3;
    padding: 0px 20px;
}

.header-logo {
    flex: 1 1;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.header-dash {
    flex: 1 1;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.logout {
    display: flex;
    vertical-align: middle;
    align-items: center;
}

.logout a {
    color: white;
}

.sidebar {
    background: black;
    height: 100vh;
    position: fixed;
}

.menu-body a {
    display: block;
    color: #ffffffba;
    padding: 5px 20px;
}

.menu-title {
    color: white;
    padding: 5px 20px;
}

.body {
    display: flex;
}

.menu-body {
    background: #221d1d;
}

.menu-body a:hover {
    color: red;
}
.clear {
    clear: both;
}
.main-body {
    overflow-y: auto;
    margin-left: 215px;
    margin-top:50px;
}

th {
    background: black;
    color: white;
    border: none;
    padding: 15px 15px;
}

table {
    border-collapse: collapse;
    margin-top: 25px;
}


table > tbody > tr:nth-child(odd) {
    background: #a09f9f;
}

td {
    padding: 15px 15px;
}

table > tbody > tr:nth-child(even) {
    background: #bfbfbf;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    margin: 5% auto;
    border: 1px solid #888;
    width: 600px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-title {
    background: #2f9cc3;
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding:10px 0px;
}

.modal-body {
    background: white;
    text-align: left;
    padding: 10px 20px;
}

button.submit {
    display: block;
    background: #4a6ee0;
    color: white;
    border: 0px;
    padding: 10px 15px;
    outline: none;
}

.center {
    text-align: center;
}

button.close {
    background: #0e101a;
    width: 100%;
    border: none;
    color: white;
    margin-top: 25px;
    padding: 7px 20px;
    font-size: 15px;
}

#detailsModal {
    display: none;
}

.page-form input, .page-form button, .page-form textarea, .page-form select {
    display: block;
    margin: 10px 0px;
    width: 500px;
    box-sizing: border-box;
    padding: 10px 10px;
    outline: none;
    border-radius: 3px;
    border: 1px solid #c6cbde;
}

button.order-submit {
    background: #2e9cc3;
    color: white;
}

.main-body-login {
    display: flex;
    align-items: center;
    vertical-align: middle;
    margin: 0 auto;
    margin-top: 75px;
}

.page-title-login {
    width: 500px;
    margin: 0 auto;
    border: 1px solid #e0e1e2;
    padding: 50px;
    text-align: center;
}

input#login-id, input#login-pass {
    display: inline-block;
    text-align: center;
    margin: 10px;
    padding: 7px 0px;
    width: 250px;
    outline: none;
}

button#login-submit {
    margin: 10px;
    padding: 7px 20px;
    background: #2f9cc3;
    border: none;
    outline: none;
    color: white;
}

.page-title-login h2 {
    margin-bottom: 25px;
}

.success {
    display: none;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 6px 0px;
    border-radius: 3px;
    margin: 20px 0px;
    text-align: center;
}

.error {
    display: none;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 6px 0px;
    border-radius: 3px;
    margin: 20px 0px;
    text-align: center;
}

i.far.fa-check-circle {
    color: green;
}

i.fas.fa-times-circle {
    color: #b21e1e;
}

i.fas.fa-info-circle {
    color: black;
}

.left-tiles {
    border: 1px solid #e0e1e2;
    padding: 10px 25px;
    margin: 0px 10px;
}

.tiles {
    display: flex;
}