body {
    height: 100vh;
    color: #333;
    font-family: 'Roboto', sans-serif;
}
#content {
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: auto;
}

.logo {
    border-radius: 60px;
    padding: 35px;
}
.loginInput {
    background: transparent;
    border: none;
    color: black;
}
.submitButton {
    background-color: black;
    border: none;
}
.inputContainer {
    border-bottom: solid 2px #333;
    color: #333;
}
.loginInput:focus {
    border: none;
    background: transparent;
}

#menuBar {
    border-right: solid grey 1px;
    overflow: auto;
    background: linear-gradient(#168794, #a9f7ff);
}
.menuButton {
    background-color: white;
    border-radius: 20px;
    text-align: center;
    color: black;
    font-weight: 700;
    border-color: #707070;
    margin: 10px;
    padding: 10px;
}
.picture-container {
    cursor: pointer;
    position: relative;
    width: 300px;
    height: 300px;
}
.picture {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
.remove-picture-button {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    padding: 1rem 1.5rem;
    border-radius: 0 5px;
}
.picture-container:hover .remove-picture-button {
    display: block;
}
.listing-client tr:hover {
    cursor: pointer;
    background-color: #eeeeee91;
}
.table td {
    vertical-align: middle;
}
form[name='generate_qr_code'] {
    margin: 2rem auto;
    padding: 1rem 2rem;
    background-color: #fff;
    border-radius: 4px;
    width: 60rem;
    margin-top: 15vh;
}
form[name='generate_qr_code'] h3 {
    text-align: center;
    font-size: 20px;
    margin: 1rem 0 0.5rem 0;
}
ul#generate_qr_code_serial_numbers {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
ul#generate_qr_code_serial_numbers li {
    display: flex;
    align-items: center;
    margin: 4px 0;
}
.custom-file {
    display: none !important;
}
.file-input {
    background-color: #94c7f5;
    color: #fff;
    padding: 1rem;
    cursor: pointer;
    border-radius: 4px;
}
.file-input-row {
    display: flex;
    justify-content: center;
}
.add-picture-form input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

#multiselect-div{    
    position: absolute;    
    left: 50%;    
    bottom: 50px;    
}


.material-card{
    background: white;    
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    padding: 10px;   
    border: solid 1px #d8d8d8;
}

.animation-slide-up{
    animation-name: slide-up;
    animation-duration: 1s;
}

@keyframes slide-up {
    0%{        
        bottom: -75px;
    }  
    100% {        
        bottom: 50px;        
    }
}

.listing-row-selected{
    border-left: solid 4px #54B6C1;
    background-color: #54b6c136;
}

.btn-blue-eils{    
    background-color: #54B6C1;
    color: white;
    border-color: #188995;
}