@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;300;400;700&display=swap');

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto Slab', serif;
}
.top-menu {
    background-color: #27695B;
    width: 100%;
    height: 48px;
}
.top-menu .col-logo {
    width: 50%;
    float: left;
    height: 50px;
}
.top-menu .col-logo .logo {
    padding: 6px;
    padding-left: 11px;
}
.top-menu .col-logo .logo svg {
    width: 97px;
}
.top-menu .col-logout {
    width: 75px;
    float: right;
    text-align: right;
    height: 50px;
}
.top-menu .col-logout .logout {
    padding: 16px;
    color: #fff;
}
.top-menu .col-logout .logout button#logout {
    background: none;
    border: none;
    cursor: pointer;
}
.top-menu .col-name {
    width: calc(50% - 75px);
    float: right;
    text-align: right;
    height: 50px;
}
.top-menu .col-name .name {
    padding: 10px;
    font-size: 23px;
    color: #fff;
}
.main-content{
    min-height: calc(100vh - 50px);
    float: left;
    width: 90%;
    margin-left: 5%;
}
.main-content .normal_label {
    width: 100%;
    float: left;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 19px;
}
.main-content .bold_label {
    width: 100%;
    float: left;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: bold;
}
.item {
    position: relative;
    float: left;
    width: calc(100% - 24px);
    height: 50px;
    margin-bottom: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
}
.item .col-interaction {
    width: 50px;
    height: 35px;
    float: left;
}
.item .col-name {
    width: calc(45% - 50px);
    float: left;
    height: 35px;
}
.item .col-time {
    width: 15%;
    float: left;
    height: 35px;
}
.item .col-default_product {
    width: 20%;
    float: left;
    height: 35px;
}
.item .col-extra_product {
    float: left;
    width: 20%;
    height: 35px;
}
.default_product {
    padding: 13px;
    background-color: #929292;
    font-size: 18px;
    margin-right: 10px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
}
.extra_product {
    padding: 13px;
    background-color: #27695B;
    font-size: 18px;
    margin: 0px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
}
.time {
    padding: 13px;
    font-size: 19px;
    text-align: right;
    padding-right: 20px;
}
.time img {
    padding-top: 0px;
}
.itemname {
    padding: 13px;
    font-size: 20px;
}
.interaction {
    padding: 9px;
}
.loginform {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px;
    min-height: 120px;
    margin-top: 70px;
}
.loginform label {
    font-size: 20px;
}
.loginform input#token {
    width: calc(100% - 24px);
    padding: 12px;
    margin-top: 10px;
    font-size: 45px;
    letter-spacing: 5px;
    text-align: center;
    border-radius: 5px;
}
.loginform .login {
    width: 100%;
    float: left;
}
.loginform .login input {
    width: calc(100% - 22px);
    padding: 11px;
}
.loginform .loginbutton {
    float: left;
    width: 100%;
    height: 79px;
    margin-top: 10px;
}
.loginform .loginbutton button {
    width: 200px;
    height: 80px;
    float: right;
    font-size: 25px;
    background: #27695B;
    color: #fff;
    box-shadow: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.loginform .loginbutton button:active {
    background: #184239;
}
.loginform #error {
    font-size: 16px;
    margin-top: 20px;
    color: red;
    float: left;
}
.modal-bg {
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    top: 50px;
    bottom: 0;
    background-color: #fff;
}
.delete-modal, .swap-modal {
    position: fixed;
    z-index: 2;
    top: 100px;
    width: 600px;
    left: calc(50vw - 300px);
    background: #ccc;
    height: 300px;
    padding: 20px;
    border-radius: 5px;
}
label {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}
textarea#delete-description-modal, textarea#swap-description-modal {
    width: calc(100% - 40px);
    height: 170px;
    margin-bottom: 10px;
    padding: 20px;
    font-size: 18px;
    border-radius: 5px;
    border: none;
}
button#delete-item {
    float: right;
    padding: 10px;
    width: 150px;
    font-size: 15px;
    border: none;
    background-color: #ff0000;
    color: #fff;
    border-radius: 5px;
}
button#swap-item {
    float: right;
    padding: 10px;
    width: 150px;
    font-size: 15px;
    border: none;
    background-color: #27695B;
    color: #fff;
    border-radius: 5px;
}
button#cancel-modal {
    float: right;
    padding: 10px;
    width: 150px;
    font-size: 15px;
    border: none;
    color: #000;
    margin-right: 10px;
    border-radius: 5px;
}
.message_error {
    width: 250px;
    float: left;
    color: #ff0000;
    padding-top: 6px;
}
button.delete {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #f5f5f5;
    border: none;
    color: red;
    font-size: 21px;
    margin-top: -1px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 13px;
    padding-top: 15px;
}
button.switch {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #f5f5f5;
    border: none;
    color: #27695B;
    font-size: 21px;
    margin-top: -1px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 13px;
}
.time i.fas.fa-clock {
    opacity: 0.4;
}
.restarted {
    float: left;
    color: #27695B;
}