body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: url('../images/bg.jpeg') 100%;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    overflow: hidden;

}
.title{
    color: white;
    margin-bottom: 0px;
}
.container {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.container .left{
   float: left;
   width: 400px;
}
.container .right{
   float: right;
   width: 400px;
}

#address{
    display: block;
    color: white!important;
    text-align: right;
    float: right;
    border: none;
    background: none;
}

#primary-container{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 300px;
    height: 200px;
}
#primary{
    background: #fff;
    font-family: Arial,Helvetica,sans-serif;
    margin: 0px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 7%), 0 1px 5px 0 rgb(0 0 0 / 10%);
    border-radius: 2px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: normal;
    position: relative;
    padding: 0px;
    list-style: none;
    overflow: auto;
    height: 266px;
    width: 300px;
    opacity: 0.5;
    display: none;
}

#primary ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
}
#primary .item{
    display: inline-flex;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    border-bottom: 1px solid #e9e9e9;
    overflow: hidden;
    margin-left: 15px;
    width: 100%
}
#primary .item .title{
    color: black;
    width: 200px;
    display: block;
    float: left;
}

#primary .item .action{
    float: right;
}
#primary .item .action .approval,#primary .item .action .reject{
    margin: 1px;
    cursor: pointer;
}

#copyright{
    color: #000;
    position: absolute;
    bottom: 15px;
}

#copyright .auth{
    margin-right: 20px;
    color: #000;
    text-decoration: none;
}
#copyright .mqtt{
    color: rgb(16, 29, 206);
    text-decoration: none;
}



.chat{
    position: absolute;
    bottom: 50px;
    right: 0px;
    height: 300px;
    width: 200px;
}
.chat .chatContent{
    width: 100%;
    height: 280px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: auto;
    background: #ccc;
    opacity: 0.5;
}
.chat .chatContent .chatItem{
    padding: 5px 5px 0px;
    font-size: 12px;
    color: #000;

}
.chat .chatInput{
    height: 20px;
    width: 96%;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 10px 0px 10px 0px;
    padding: 3px;
    opacity: 0.5;
}