@CHARSET "UTF-8";

.editDialog {
	position: absolute;
	width: 100%;
	height: 70%;
	margin-top: 25px;
	text-align: center;
	align-items: center;
	display: none;
	z-index: 1;
}

.editDialog_detail {
	color: #eeeeee;
	width: 70%;
	height: 80%;
	display: inline-block;
	background-color: #555555;
	border: 2px solid #808080;
	border-radius: 16px;
	padding: 10px;
	text-align: center;
}

.menu-contents-header {
	padding: 5px, 3px, 5px, 3px;
}

.radio-inline {
	margin: auto;
	margin-right: 15px;
}

#addModal p {
	margin-bottom: 10px;
}

input {
	color: black;
}

.modal_fade_show {
	padding-right: 0px;
}

.theme--light.v-tabs-items {
	background-color: #eeeeee;
}

#dashboard {
	background: #212529;
	border-radius: 10px;
	padding: 10px;
}

.mapFloorSelect {
	width: 40px;
	background: #eeeeee;
	color: #444444;
	font-size: 0.9em;
	cursor: pointer;
}

.listTable {
	color: #eeeeee;
	width: 100%;
	text-align: center;
	background: #404040;
	border-radius: 10px;
	margin-bottom: 15px;
	font-size: 0.9em;
}

.listTable tr {
	border-bottom: 1px solid rgb(77, 116, 142);
}

.listTable tbody tr:hover {
	background: #c1c1c17a;
	cursor: pointer;
}

.listTable td {
	border-right: 1px solid rgb(77, 116, 142);
}

.popover {
	border-radius: 10px;
	background-color: #464646;
}

.popover .popover-title {
	padding: 6px;
	font-size: 1.2em;
	margin: 0;
	background-color: #555555;
	color: #f8ffbe;
}

.popover .popover-content {
	padding: 4px;
}

.popover .popover-content button {
	border-radius: 15px;
	background-color: #797979;
	cursor: pointer;
	border: 1px solid #555555;
	color: #fbf9f9;
}

.popover .popover-content button:hover {
	border-radius: 15px;
	background-color: #c3c3c3;
	cursor: pointer;
	border: 1px solid #555555;
	color: #2d2d2d;
}

#contents .motionStat, #contents .motionStat p {
	color: aquamarine;
}

.eventList {
	position: absolute;
	z-index: 9999;
	right: 30px;
	padding: 20px;
	opacity: 1;
}

.eventPop {
	background: #464646;
	width: 300px;
	height: 50px;
	border-radius: 10px;
	border: 1px solid #241f20;
	padding: 5px;
	font-size: 1.1em;
	margin-bottom: 10px;
	box-shadow: 10px 7px 12px -5px rgba(0, 0, 0, 0.75);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bodyShadow {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: rgba(197, 36, 0, 0.69);
	text-align: center;
	vertical-align: middle;
	color: #eeeeee;
	font-size: 10em;
	display: none;
}

.eventPopSpan {
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 250px;
	white-space: nowrap;
	height: 30px;
	display: inline-block;
	cursor: pointer;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin: 2px 10px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}