* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: arial, sans-serif;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
	background: #23242b;
	color: #fff;
}

.u-name {
	font-size: 20px;
	padding-left: 17px;
}

.u-name b {
	color: #127b8e;
}

.header i {
	font-size: 30px;
	cursor: pointer;
	color: #fff;
}

/*.header i:hover {
	color: #127b8e;
}*/
.header .notification {
	position: relative;
	cursor: pointer;
}

.header .notification span {
	position: absolute;
	top: 5px;
	left: 5px;
	background: #C80000;
	padding: 1px;
	border-radius: 50%;
}

.header .notification:hover i {
	color: #127b8e;
}

.notification-bar {
	display: none;
	width: 90%;
	max-width: 300px;
	position: absolute;
	right: 0;
	background: #eee;
	padding: 5px;
	border: 1px solid #262931;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.notification-bar ul li {
	list-style: none;
	margin-top: 10px;
}

.notification-bar ul li a {
	text-decoration: none;
	color: #000;
}

.notification-bar ul li:nth-child(even) {
	background: #fff;
}

.open-notification {
	display: block;
}


.user-p {
	text-align: center;
	padding-left: 10px;
	padding-top: 25px;
}

.user-p img {
	width: 100px;
	border-radius: 50%;
}

.user-p h4 {
	color: #ccc;
	padding: 5px 0;

}

.side-bar {
	width: 250px;
	background: #262931;
	min-height: 100vh;
	transition: 500ms width;
}

.body {
	display: flex;
}


.side-bar ul {
	margin-top: 20px;
	list-style: none;
}

.side-bar ul li {
	font-size: 16px;
	padding: 15px 0px;
	padding-left: 20px;
	transition: 500ms background;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.side-bar ul li:hover {
	background: #127b8e;
}

.side-bar ul li a {
	text-decoration: none;
	color: #eee;
	cursor: pointer;
	letter-spacing: 1px;
}

.side-bar .active a {
	color: #127b8e !important;
}

.side-bar .active a i {
	color: #127b8e !important;
}

.side-bar ul .active:hover {
	background: transparent;
}

.side-bar ul li a i {
	display: inline-block;
	padding-right: 10px;
	font-size: 23px;
}

#navbtn {
	display: inline-block;
	margin-left: 70px;
	font-size: 20px;
	transition: 500ms color;
}

#checkbox {
	display: none;
}

#checkbox:checked~.body .side-bar {
	width: 60px;
}

#checkbox:checked~.body .side-bar .user-p {
	visibility: hidden;
}

#checkbox:checked~.body .side-bar a span {
	display: none;
}

.login-body {
	background-image: url(../img/bg.jpg);
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.login-body form {
	max-width: 420px;
	width: 90%;
}

.loginform {
	border-radius: 20px;
	background: #833AB4;
background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);}


.loginform h3{
	color: white !important;
}

.loginform label{
	color: white !important;
}

.section-1 {
	padding: 30px;
}

.section-1 .title {
	margin-bottom: 10px;
}

.section-1 .title a {
	text-decoration: none;
	display: inline-block;
	padding-left: 10px;
	border: none;
	background: #00CF22;
	padding: 10px 15px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	transition: background 1s;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.section-1 .title-2 {
	margin-bottom: 10px;
}

.section-1 .title-2 .btn {
	text-decoration: none;
	display: inline-block;
	padding-left: 10px;
	border: none;
	background: #00CF22;
	padding: 10px 15px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	transition: background 1s;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.section-1 .title-2 .btn:hover {
	opacity: .6;
}

.section-1 .title-2 a {
	display: inline-block;
	margin-left: 10px;
}


.section-1 {
	width: 100%;
	background: #ffe;
}

.section-1 .title a:hover {
	opacity: .6;
}

.main-table,
.main-table tr,
.main-table th,
.main-table td {
	border: 1px solid #aaa;
	border-collapse: collapse;
	padding: 7px;
}

.main-table {
	width: 90%;
	margin-top: 30px;
}


.delete-btn {
	text-decoration: none;
	display: inline-block;
	padding-left: 10px;
	border: none;
	background: #E00051;
	padding: 10px 15px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	transition: background 1s;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.delete-btn:hover {
	opacity: .6;
}

.edit-btn {
	text-decoration: none;
	display: inline-block;
	padding-left: 10px;
	border: none;
	background: #006CE0;
	padding: 10px 15px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	transition: background 1s;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.edit-btn:hover {
	opacity: .6;
}

.form-1 {
	width: 90%;
	max-width: 500px;
}

.input-holder lable {
	display: block;
	margin-bottom: 5px;
}

.input-1 {
	border: 2px solid #ccc;
	width: 100%;
	padding: 10px;
	font-size: 15px;
	outline: none;
	border-radius: 5px;
	display: block;
}

.input-1:focus {
	border-color: #555;
}

.danger {
	background: #FF98AA;
	color: #B20008;
	padding: 10px;
	margin-bottom: 10px;
}

.success {
	background: #80CE91;
	color: #009D22;
	padding: 10px;
	margin-bottom: 10px;
}

.dashboard {
	display: flex;
	max-width: 650px;
	width: 95%;
	justify-content: space-between;
	flex-wrap: wrap;
}

.dashboard-item {
	text-align: center;
	background: #262931;
	width: 200px;
	padding: 30px 5px;
	margin-bottom: 40px;
}

.dashboard-item i {
	display: block;
	color: #fff;
	font-size: 30px;
	margin-bottom: 5px;
}

.dashboard-item span {
	display: block;
	color: #fff;
}


.break-btn {
    padding: 8px 15px;
    background: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 5px;
}

.break-btn:disabled {
    background: #888;
    cursor: not-allowed;
}

.break-btn {
    padding: 8px 15px;
    background: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}
.break-btn:hover { background: #217dbb; }
.break-btn:disabled { background: #999; cursor: not-allowed; }


#breakTimer {
	color: white;
	font-size: 16px;
}

.lunch{
	text-align: center;
    margin: 30px;
    background: #262931;
    padding: 30px;
    height: max-content;
    width: 16%;
}

.fa-cutlery:before {
    content: "\f0f5";
    color: white;
    font-size: 24px;
}




.chat-app-container {
    height: fit-content;
    width: 84%;
    background: #f5f5f5;
    border: 1px solid #ddd;
    margin: 18px;
}


.no-gutter { margin:0; padding:0; }

/* Sidebar */
.chat-sidebar {
  background: #fff;
  height: 100%;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  height: 74vh;
  overflow-y: auto;
}

.sidebar-header {
  height: 65px;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.sidebar-header .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.sidebar-search {
  position: relative;
  padding: 10px;
}

.sidebar-search input {
  padding-left: 30px;
}

.sidebar-search i {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #888;
}

.sidebar-users {
  flex: 1;
  /* overflow-y: auto; */
}

.user {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.user:hover {
  background: #f9f9f9;
}

.user .avatar-sm {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  border-radius: 50%;
}

/* Chat Main */
.chat-main {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chat-header {
  height: 65px;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  display: flex;
  align-items: center;
}

.chat-header .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-header .online {
  color: green;
}

/* Messages */
.chat-messages {
  /*flex: 1;*/
  padding: 15px;
  overflow-y: auto;
  background: #e9ecef;
      display: flex;
    flex-direction: column;
    height: 60vh;
    /* justify-content: flex-end; */
	    overflow-y: scroll;
    /*overflow-y: auto;*/
}

.msg {
  max-width: 70%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  position: relative;
}

.msg-left {
  background: #fff;
  align-self: flex-start;
}

.msg-right {
  background: #d1f7c4;
  align-self: flex-end;
}

.time {
  display: block;
  font-size: 11px;
  color: #666;
  margin-top: 5px;
}

/* Input */
.chat-input {
  height: 65px;
  display: flex;
  border-top: 1px solid #ddd;
}

.chat-input textarea {
  flex: 1;
  border: none;
  padding: 15px;
  resize: none;
}

.chat-input button {
  width: 60px;
  border: none;
  background: #00bfa5;
  color: #fff;
}
