/* 'Open Sans' font from Google Fonts */
/*@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);*/

@font-face {
	font-family: 'Open Sans';
	src: url("/fonts/opensans-regular.ttf");
}

html,
body {
	height: 100%;    
	-moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  overflow:hidden;
}

#account-body {

}

/*==============================ALERT==============================*/

.alert-message  {
	width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
	font: inherit;
}

/*=============================LOGIN=============================*/
.login-container,.register-container,.forgot-container {
	width: 500px;
	margin: 16px auto;
	font-size: 16px;
	border-radius: 2px;
}

/* Reset top and bottom margins from certain elements */
.login-header,
.login-container p,.register-container p,.forgot-container p {
  margin-top: 0;
  margin-bottom: 0;
}


.login-header {
padding: 10px 20px;
font-size: 14px;
font-weight: lighter;
text-align: left;
}

.login-logo-div{
	height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Every row inside .login-container is defined with p tags */
.login-container p,.register-container p,.forgot-container p {
  padding: 12px;
}

.login-form-adapt-cont {
	padding: 12px;
}

.login-button-cont {
	margin: 0px !important;
}

.login-container input,.register-container input,.forgot-container input  {
  box-sizing: border-box;
  display: block;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  padding: 14px;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
}

.login-container input[type="email"],.register-container input[type="email"],.forgot-container input[type="email"], 
.login-container input[type="text"],.register-container input[type="text"],.forgot-container input[type="text"], 
.login-container input[type="password"],.register-container input[type="password"],.forgot-container input[type="password"]  {
  border-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
    border-radius: 10px;
}

.login-container input[type="checkbox"]
{
	border-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
    border-radius: 10px;
}

.remember-wrapper {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

.remember-wrapper input {
	width: 20px;
	height: 20px;
	margin-left: 0px;
}

.inputcheck {
	width:0 !important; 
	height:0 !important; 
	margin:0 !important;
}

.checkbox {
	/* margin: auto; */
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
  }
  .checkbox span {
	display: inline-block;
	vertical-align: middle;
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	font-size: 14px;
  }
  .checkbox span:first-child {
	position: relative;
	width: 18px;
	height: 18px;
	border-radius: 3px;
	transform: scale(1);
	vertical-align: middle;
	/* border: 1px solid #9098A9; */
	transition: all 0.2s ease;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
  }
  .checkbox span:first-child svg {
	position: absolute;
	top: 3px;
	left: 2px;
	fill: none;
	stroke: #FFFFFF;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 16px;
	stroke-dashoffset: 16px;
	transition: all 0.3s ease;
	transition-delay: 0.1s;
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
  }
  .checkbox span:first-child:before {
	content: "";
	width: 100%;
	height: 100%;
	background: white;
	display: block;
	transform: scale(0);
	opacity: 1;
	border-radius: 50%;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
  }
  .checkbox span:last-child {
	padding-left: 4px;
  }
  .checkbox:hover span:first-child {
	/* border-color: #506EEC; */
  }
  
  .inputcheck:checked + .checkbox span:first-child {
	/* background: #506EEC; */
	/* border-color: #506EEC; */
	animation: wave 0.4s ease;
  }
  .inputcheck:checked + .checkbox span:first-child svg {
	stroke-dashoffset: 0;
  }
  .inputcheck:checked + .checkbox span:first-child:before {
	transform: scale(3.5);
	opacity: 0;
	transition: all 0.6s ease;
  }
  
  @keyframes wave {
	50% {
	  transform: scale(0.9);
	}
  }

/* Text fields' focus effect */
.login-container input[type="email"]:focus,.register-container input[type="email"]:focus,.forgot-container input[type="email"]:focus,
.login-container input[type="text"]:focus,.register-container input[type="text"]:focus,.forgot-container input[type="text"]:focus, 
.login-container input[type="password"]:focus,.register-container input[type="password"]:focus,.forgot-container input[type="password"]:focus {
  border-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
    border-radius: 10px;
}

.login-container input[type="submit"],.register-container input[type="submit"],.forgot-container input[type="submit"] {
  border-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-out 0s;
	-moz-transition: all 0.1s ease-out 0s;
	-ms-transition: all 0.1s ease-out 0s;
	-o-transition: all 0.1s ease-out 0s;
	transition: all 0.1s ease-out 0s;
    border-radius: 10px;
	    width: 200px;
    margin: 0 auto;
}

.login-container input[type="submit"]:hover,.register-container input[type="submit"]:hover,.forgot-container input[type="submit"]:hover {
	  transform: scale(1.1, 1);
}

/* Buttons' focus effect */
.login-container input[type="submit"]:focus,.register-container input[type="submit"]:focus,.forgot-container input[type="submit"]:focus {

}

.login-container input[type="checkbox"]:focus > span {
	
}

/*=============================LOADER=============================*/
.loader-mini {
  display:none;
  position: relative;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  perspective: 800px;
}

.loader-news {
  display:none;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  perspective: 800px;
}

.loader {
  display:none;
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  perspective: 800px;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;  
}

.inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
}

.inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
}

.inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

/*=============================Header=============================*/
.header-logo {
	display:block;
	float: left;
	height: 40px;
	padding: 12px;
    padding-left: 40px;
	position: absolute;
    left: 4;
}

.mobile-menu {
  display:block;
  width:100%;
line-height: 1.6em;
font-weight: 400;
width:100%;
text-align:center;
	position: relative;
  margin:0 auto;
  min-height: 65px;
}
/*Strip the ul of padding and list styling*/
.mobile-menu ul {
	list-style-type:none;
  margin: 0 auto;
  padding-left:0;
  text-align:center;
  padding: 19px;
  display: flex;
    justify-content: flex-start;
    align-items: center;
	height: 28px;
}

/*Create a horizontal list with spacing*/
.mobile-menu li {
	display:inline-block;
	margin-left: -2px;
	margin-right: -2px;
	/*float: left;
	margin-right: 1px;*/
}

#custom-profile-helper {
	margin-right: 2px;
	margin-left: -18px;
}

/*Style for menu links*/
.mobile-menu li a {
	display:block;
	text-align: center;
	text-decoration: none;
	padding: 20px;  
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

/*Hide checkbox*/
.mobile-menu input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
.mobile-menu input[type=checkbox]:checked ~ #menu{
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    width: auto;
}

#profile-separator {
	width: 1px;
    margin-left: 10px;
    margin-right: 10px;
    height: 40px;
	margin-top: 2px;
}

.search {
	display: inline-flex;
	padding: 5px;
	border-radius: 50px;
	transition: 0.4s;
	margin-left: 8px;
	position: absolute;
    right: 160px;
  }
  
  /* .search:hover {
	/* background: rgba(255, 255, 255, 0.15);
	 */
	 /* cursor: pointer; */
  /* }  */
  
  .search input {
	background: transparent;
	border: 0;
	max-width: 0;
	padding: 0;
	text-indent: 12px;
	color: #f9f9f9;
	font-size: 12px;
	/* font-family: "Poppins"; */
	outline: none;
	transition: 0.4s;
	max-width: 180px;
  }
  
  .search input::placeholder {
	color: rgba(255, 255, 255, 0.375);
  }
  
  .search span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	/* background: #546a85; */
	background-image: url("/img/top-search.png");
	background-position: center;
	background-size: cover; 
	color: #f9f9f9;
	border-radius: inherit;
	font-size: 16px;
	pointer-events: none;
  }

  .help {
	margin-left: 10px;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	display: inline-flex;
	align-items:  center;
	justify-content: center;
	position: absolute;
	right: 120px;
	opacity: 0.5;
  }

  .help:hover {
	cursor: pointer;
  }

  .tooltip-hot {
	z-index: 5;
}

.tooltip-hot::after {
	content: attr(data-tooltip); /* Главная часть кода, определяющая содержимое всплывающей подсказки */
	opacity: 0; /* Наш элемент прозрачен... */
	padding: 2px 10px;
	position: absolute;
	visibility: hidden; /* ...и скрыт. */
	font: inherit;
	font-size: 12px;
	/*height: 20px;	*/
	line-height: 14px;
	transition: all 0.4s ease-in-out; /* Добавить плавности по вкусу */
	margin-top: 80px;
	/* margin-left: -15px; */
	font-weight: bold;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 2px;
}
		
.tooltip-hot:hover::after {
	opacity: 1; /* Показываем его */
	visibility: visible;
}

.hotkeys-overlay {
	display:none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.help-close {
	margin-top: 20px;
	opacity: 0.5;
	display: block;
    text-align: center;
    width: 100%;
}

.key-item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row;
	width: 600px;
}

.key-item .key {
	background: linear-gradient(to top left, #f0f0f0, #fafafa);
	width: 100px;
	height: 40px;
	border-radius: 6px;
	border: solid 1px #ccc;
	/* font-family: "Roboto", sans-serif; */
	font-size: 13px;
	color: #666666;
	text-align: left;
	padding: 0px 0px 12px 8px;
	margin: 3px;
	box-shadow: 1px 2px 0px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-out;
  }
  
  .key-item .key:hover {
	background: linear-gradient(to top left, #fafafa, #ffffff);
	cursor: pointer;
  }

  .key-item p {
	color: white;
	margin-left: 10px;
	font-style: italic;
  }

/*========================MAIN CONTAINER==========================*/

.main-container {
	margin: 10px;
	text-align: center;
	height: -moz-calc(100% - 85px); /* Firefox */
	height: -webkit-calc(100% - 85px); /* Chrome, Safari */
	height: calc(100% - 85px); /* IE9+ and future browsers */
    display: block;
}

#profile-button {
	margin-left: 16px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

#profile-button:hover {
	cursor: pointer;
	-webkit-filter: brightness(140%);
}

.profile-img-li {
	padding-right: 5px;
	padding-left: 5px;
	display: inline-flex !important;
    justify-content: center;
    align-items: center;
	height: 46px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.exit-li {
	    background: none;
    border: none;
    display: block;
    /* margin-top: -68px; */
    margin-right: 10px;
    padding: 0px 22px;
    height: 65px;
    float: right;
    right: 0;
    top: 0;
    position: absolute;
    font: inherit;
}

.options-div {
	margin-right: 10px;
	height: 65px;
    float: right;
    right: 100;
    top: 0;
    position: absolute;
    font: inherit;
	display: flex;
    justify-content: center;
    align-items: center;
	padding: 0 20;
	
}

.options-div:hover {
	cursor: pointer;
}

.options-modal {
	position: absolute;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	z-index: 20;
	display:none;
}

.options-container {
	width: 50%;
    height: 50%;
	margin: 10% auto;
}

.options-header {
	font: inherit;
    text-align: left;
    padding: 5 10;
	height: 25px;
}

.options-vertical-container {
	width: 100%;
	height: -moz-calc(100% - 35px); /* Firefox */
	height: -webkit-calc(100% - 35px); /* Chrome, Safari */
	height: calc(100% - 35px); /* IE9+ and future browsers */
	display: flex;
}

.options-vertical-container .left {
	width: 30%;
	height: 100%;
}

.options-list {
	font: inherit;
    font-size: 14px;
	text-align: left;
	text-align: left;
    display: flex;
    flex-direction: column;
}

.options-list div {
	text-align: left;
	width: 100%;
	padding: 5 20;
}

.options-list div:hover, .horizontal-separator:hover {
	cursor: pointer;
}

.options-close {
	    float: right;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 35px;
    margin-top: -35px;
    padding-right: 10px;
}

.options-close:hover {
	cursor: pointer;
}

.options-close img {
	width: 15px;
}

.selected-option-header {
	height: 35px;
	display: flex;
    align-items: center;
    padding-left: 10px;
	font-size: 14px;
}

.option-content-container {
	display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: baseline;
}

.sub-option {
	padding-top: 5px;
	padding-left: 10px;
	text-align: left;
	font-size: 14px;
	width: 90%;
}

.sub-option select {
	height: 26px;
}

.option-content-label, .option-frameformat-label {
	margin: 0;
	    margin-bottom: 5px;
}

.option-content-select {
	width: 100%;
}

.horizontal-separator {
	height: 1px;
    padding: 0px !important;
}

.options-vertical-container .right {
	width: 70%;
	height: 100%;
}

.options-buttons {
	display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.options-ok {
	padding: 2px 30px;
	    margin-right: 10px;
}

.options-cancel {
	padding: 2px 15px;
}

.options-ok:hover, .options-cancel:hover {
	cursor: pointer;
}

.header-link-video {
	display: flex;
	flex-direction: row;
    justify-content: center;
	    align-items: center;
    float: left;
    position: absolute;
	    padding: 19px;
		position: absolute;
    text-decoration: none;
    font: inherit;
	left: 240px;
}

.header-link-video img, .header-link-archive img {
	margin-right: 6px;
}

.header-link-archive img {
    margin-top: -2px;
}

.header-link-archive {
	display: flex;
	flex-direction: row;
    justify-content: center;
	    align-items: center;
    float: left;
    position: absolute;
	    padding: 20px;
		position: absolute;
    text-decoration: none;
    font: inherit;
	left: 410px;
}

.vertical-separator-events-start {
	width: 1px;
	height: 40px;
	display: block;
	position: absolute;
	padding: 0px !important;
	margin: 0;
	left: 540px;
	top: 14px;
	z-index: 1;
}

.vertical-separator-events-end {
	width: 1px;
	height: 40px;
	display: block;
	position: absolute;
	padding: 0px !important;
	margin: 0;
	left: 595px;
	top: 14px;
	z-index: 1;
}

.header-link-events {
	display: block;
    float: left;
    position: absolute;
		position: absolute;
    text-decoration: none;
    font: inherit;
	padding: 16px;
	left: 536px;
}

.header-link-events img {
	padding: 2px;
}

.tooltipevents {
	z-index: 5;
}

.tooltipevents::after {
	content: attr(data-tooltip); /* Главная часть кода, определяющая содержимое всплывающей подсказки */
	opacity: 0; /* Наш элемент прозрачен... */
	padding: 2px 10px;
	position: absolute;
	visibility: hidden; /* ...и скрыт. */
	font: inherit;
	font-size: 12px;
	/*height: 20px;	*/
	line-height: 14px;
	transition: all 0.4s ease-in-out; /* Добавить плавности по вкусу */
	margin-top: 2px;
	margin-left: -15px;
	font-weight: bold;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 2px;
}
		
.tooltipevents:hover::after {
	opacity: 1; /* Показываем его */
	visibility: visible;
}

.exit-li:hover, .header-link-video:hover, .header-link-archive:hover, .header-link-events img:hover {
	cursor:pointer;
}

.header-link-events img:hover {
	-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.context {
  font-size: 1.1em;
  position: absolute;
  width: 200px;
  height: auto;
  top: 10;
  left: 10;
  font: inherit;
}

.context-mini, .context-mini-events {
  position: absolute;
  width: 120px;
    text-align: left;
  top: 10;
  left: 10;
  font: inherit;
  font-size: 11px;
  z-index:5;
}

.context-mini {
	z-index:30;
}

.context-mini-events {
	width: 144px;
}

#security-mode-container {
	display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
	line-height: 25px;
	margin-left: -12px;
}

.context .context_item {
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.context-mini .context-mini_item {
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.context-mini-events .context-mini_item-events {
	height: 24px;
  line-height: 24px;
  font-size: 12px;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.context-mini_item {
	padding-left: 10px;
  padding-right: 8px;
}

.context-mini_item-events {
	padding-left: 10px;
  padding-right: 8px;
}

#security-mode-input {
	display: inline-block;
	margin-right: 0;
}

.context .context_item .inner_item {
  margin: 0px 10px;
}
.context .context_item .inner_item i {
  margin: 0 5px 0 0;
  font-weight: bold;
}
.context .context_hr, .context-mini .context_hr {
  height: 1px;
  margin: 3px 10px;
}

/* context menu */
.context-menu {
  display: none;
  position: absolute;
  z-index: 10;
  padding: 0;
  width: 240px;
}

.context-menu:hover {
	cursor: pointer;
}

.context-menu .context_hr {
	height: 1px;
  margin: 3px 10px;
}

.context-menu__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.context-menu__item {
  display: block;
	font: inherit;
    font-size: 12px;
}

.context-menu__item div {
	padding: 4px;
	padding-left: 10px;
}

.context-menu__item:hover {
	cursor: pointer;
}

.context-menu__item:last-child {
  margin-bottom: 0;
}

/*========================GRID PROFILE==============================*/

.cell-adapt-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow:hidden;
	position: relative;
}

.profile-cell img{
	-webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none !important;
	position: absolute;
	width: 100%;	
	height: auto;
	max-height: 100%;
}

.profile-cell video{
	-webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none !important;
	position: absolute;
	width: 100%;	
	height: auto;
	max-height: 100%;
	object-fit: fill;
}

.profile-cell:hover {
	cursor: pointer;
}

.archive-status {
	width: 8px;
    height: 8px;
	background: #445468;
    z-index: 10;
	position: relative;
    top: calc(-50% + 8px);
    left: calc(50% - 8px);
	display: none;
}

.status-on {
	background: #b71816;
}

.tooltip-quick {
	z-index: 5;
}

.tooltip-quick:after {
	content: attr(data-tooltip); /* Главная часть кода, определяющая содержимое всплывающей подсказки */
	opacity: 0; /* Наш элемент прозрачен... */
	padding: 3px 7px;
	position: absolute;
	visibility: hidden; /* ...и скрыт. */
	font: inherit;
	font-size: 12px;
	/*height: 20px;	*/
	line-height: 14px;
	transition: all 0.4s ease-in-out; /* Добавить плавности по вкусу */
	margin-top: -50px;
	margin-left: -100px;
	font-weight: bold;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:2px;
	border-radius: 2px;
	width: 140px;
	text-align: center;
}

.tooltip-quick:hover::after {
	opacity: 1; /* Показываем его */
	visibility: visible;
}

.tooltip {
	z-index: 5;
}

.tooltip::after {
	content: attr(data-tooltip); /* Главная часть кода, определяющая содержимое всплывающей подсказки */
	opacity: 0; /* Наш элемент прозрачен... */
	padding: 3px 7px;
	position: absolute;
	visibility: hidden; /* ...и скрыт. */
	font: inherit;
	font-size: 12px;
	/*height: 20px;	*/
	line-height: 14px;
	transition: all 0.4s ease-in-out; /* Добавить плавности по вкусу */
	margin-top: 2px;
	margin-left: -10px;
	font-weight: bold;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:2px;
	border-radius: 2px;
}
		
.tooltip:hover::after {
	opacity: 1; /* Показываем его */
	/* visibility: visible; */
}

.profile-table {
    width: 100%;
    height: 100%;
	table-layout: fixed;
}

.profile-table:hover {
	cursor: pointer;
}

.profile-table tr {

}

.profile-cell {
	/*background-image: url("/img/cell_default_img.png");*/
	background-repeat:no-repeat;
	background-position: center center;
	text-align: center;
}

.profile-cell .cell-header {
    height: auto;
    text-align: left;
    width: auto;
    padding: 0 6;
    float: left;
    font: inherit;
    font-size: 13px;
	position:fixed;
	display:none;
}

.profile-cell .loader {
	width: 48px;
	height: 48px;
	display: none;
	position: initial;
	left: 50%;
    top: 50%;
}

.profile-cell .loader .inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;  
}

.profile-cell .loader .inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
}

.profile-cell .loader .inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
}

.profile-cell .loader .inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
}

.safe-modal {
    width: 100%;
    position: fixed;
    z-index: 1000;
    height: 100%;
    top: 0;
	display: none;
}

.cameras-overlay {
	position: absolute;
	width: 100%;
	height: 100vh;
	left: 0;
	top:0;
	display:none;
	z-index:10;
	
}

.cameras-modal-container {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
	min-width: 500px;
    min-height: 500px;
}

.hotkeys-modal-container{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	min-width: 500px;
    min-height: 500px;
}

.camera-list-header {
	margin: 0;
	padding: 0;
	font-size: 20px;
	padding-left: 3px;
	padding-bottom: 4px;
}

.camera-list-container {
    max-height: 480px;
	/*scrollbar-color: white;
	//scrollbar-width: thin;*/
}

.camera-list::-webkit-scrollbar {
	width: 2px;
	background-color: transparent;
}

.camera-list::-webkit-scrollbar-thumb {
	border-radius: 9em;
    box-shadow: inset 1px 1px 10px #f3faf7;
}

.camera-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	min-height: 50;
	overflow-y: auto;
	max-height: 400px;
	height: 370px;	
	max-width:500px;
}

.camera-list:hover {
	cursor: pointer;
}

.cameras-modal-container .context_hr {
	height: 1px;
	padding: 4px;
	margin: 0 4px;
}

.camera-list-container {
	margin-bottom: 10px;
}

.camera-list-buttons {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	font-size: 14px;
}

.camera-list-accept {
    padding: 6px 20px;
	margin: 0 12px;
}

.camera-list-close {
    padding: 6px 20px;
}

.camera-list-accept:hover, .camera-list-close:hover {
	cursor: pointer;
	box-shadow: none;
}

/*========================PROFILE MODAL=============================*/

.profile-modal {
    width: 100%;
    position: fixed;
    z-index: 1000;
    height: 100%;
    top: 0;
	display: none;
}

.profile-wizard-container {
	width: 90%;
	height: 95%;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.profile-save-container {
	width: 600px;
	height: 200px;
	display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.profile-wizard-close-container {
	margin-left: auto;
	padding-top: 8px;
	padding-right: 8px;
}

.profile-save-close-container {
	margin-left: auto;
	margin-top: -14px;
	padding-top: 8px;
	padding-right: 8px;
}

.cameras-overlay-close-container {
	float: right;
}

.hotkeys-close-container {
	float: right;
	margin-top: -10px;
    margin-right: -10px;
}

.profile-delete-close-container {
	float: right;
	position: relative;
    right: -50;
}

.profile-wizard-save-container {
	margin-left: 2px;
}

.profile-wizard-close, .profile-wizard-save-close, .cameras-overlay-close, .profile-delete-close, .hotkeys-close  {
    height: 14px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.profile-wizard-save {
	height: 28px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.profile-wizard-close:hover, .profile-wizard-save-close:hover, .cameras-overlay-close:hover, .profile-delete-close:hover, .hotkeys-close:hover {
	transform: scale(1.1);
	cursor: pointer;
	-webkit-filter: brightness(140%);
}

.profile-wizard-save:hover {
	transform: scale(1.1);
	cursor: pointer;
	-webkit-filter: brightness(140%);
}

.profile-wizard-tools {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
}

.profile-wizard-tools p {
	font: inherit;
	color: white;
	font-size: 14px;
	margin-right: 2px;
	margin-left: 2px;
	margin-top: 0;
    margin-bottom: 0;
}

.profile-wizard-tools input, .no-spinner {
	margin:4px;
    width: 40;
    text-align: center;
	border: 0;
	color: #1e2936;
	height: 20px;
	border-radius: 2px;
}

#profile-name-input {
	width: 90%;
    text-align: left;
    font: inherit;
    font-size: 13px;
}

input[type=number].no-spinner::-webkit-inner-spin-button, 
    input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
     margin: 0; 
}

.profile-wizard-tools input:focus {
	outline: none;
}

.profile-wizard-title, .profile-save-title {
	font: inherit;
	margin-top: -10;
    margin-bottom: 10px;
	font-size: 20px;
}

.profile-wizard-title:hover {
	cursor: pointer;
}

.profile-wizard-table-container {
	width: 100%;
    height: 100%;
	display: -webkit-inline-flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	text-align: -webkit-center;
}

.profile-wizard-table {
	width: 100%;
	height: 100%;
	padding: 10px;
	display: none;
}

.profile-wizard-cell {
	/*background: #2d3a49;*/
	/*background-image: url("/img/cell_default_img.png");*/
	background-repeat:no-repeat;
	background-position: center center;
	background-size: cover;
}

.profile-wizard-cell:hover {
	-webkit-filter: brightness(140%) !important;
	cursor: pointer !important;
}

.profile-name-container {
	width: 100%;
    text-align: center;
    padding: 2px;
	margin-bottom: 10px;
}

.profile-name-container input {
    text-align: center;
	border: 0;
	width: 80%;
	height: 30px;
	border-radius: 2px;
	font: inherit;
}

.profile-name-container input:focus {
	outline: none;
}

.profile-name-buttons-container {
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font: inherit;
	padding: 2px;
}

.profile-name-buttons-container p {
	padding:4px;
	padding-left: 16px;
	padding-right: 16px;
	margin: 0;
	margin-left: 8px;
	margin-right: 8px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 100px;
    text-align: center;
    padding: 4px 40px;
}

.profile-name-buttons-container p:hover {
	cursor: pointer;
}

.profile-delete-overlay {
	display:none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    left: 0;
    top: 0;
}

.profile-delete-container {
    padding: 10 60px;
}

.warning-header {
    font: inherit;
    font-size: 20px;
}

.warning-delete-actions-container {
	display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.warning-delete-actions-container p {
    padding: 4px 40px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
}

.warning-delete-actions-container p:hover {
	cursor: pointer;
}

/*===============================NEW TABLE==========================*/

.profile-wizard-tools .tool {
    margin-left: 10px;
	background: none;
    font: inherit;
    border: none;
    font-size: 14px;
    padding: 4px 10px;
  -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.profile-wizard-tools button:disabled,button[disabled], .profile-wizard-tools button:disabled:hover,button[disabled]:hover {
	border: 1px solid #999999;
  /*background-color: #cccccc;*/
  color: #666666;
  box-shadow: none;
}

.profile-wizard-tools .tool:hover {
  cursor: pointer;
}

#myContainer {
	font-size: 10pt;
	/*display: flex;
    justify-content: center;
    align-items: center;
    height: 95%;*/
	height: -moz-calc(100% - 40px); /* Firefox */
	height: -webkit-calc(100% - 40px); /* Chrome, Safari */
	height: calc(100% - 40px); /* IE9+ and future browsers */
	width: -moz-calc(100% - 20px); /* Firefox */
	width: -webkit-calc(100% - 20px); /* Chrome, Safari */
	width: calc(100% - 20px); /* IE9+ and future browsers */
	margin: 10px;
}

div#myContainer table {
	/*border-collapse: collapse;*/
	border-collapse: separate;
	border-spacing: 1px;
	height: 100%;
    table-layout: fixed;
	display: flex;
    justify-content: center;
    align-items: center;
}

#toolbox {
	background-color: #ccc;
	margin: 7px 7px 15px 7px;
}

#mainTable {
	margin: 7px;
	height: 100%;
	display: block;	
}

#mainTable tbody {
    display: block;
}

#mainTable tr {
}

#mainTable td {
	/*background-image: url("/img/cell_default_img.png");*/
	background-repeat:no-repeat;
	background-position: center center;
	background-size: cover;
	margin: 1px;
	font: inherit;
    font-size: 12px;
	width: 200px;
    height: 60px;
	text-align: center;
}

div#myContainer td:hover {
	cursor: pointer;
}


.save-container .tool {
	padding: 4px 60px;
  -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.save-container .tool:hover {
	cursor: pointer;
}

#clear-td {
	display: none;
}

/*===============================LPR=====================================*/

.vertical-container {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.lpr-image-container {
	padding: 10px;
	width: 100%;
	text-align: center;
}

.lpr-table-container {
	padding: 10px;
	width: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
}

.lpr-table {
	color: white;
    font: inherit;
	width: 100%;
}

.lpr-table th {
	font-weight: 100;
	padding: 0;	
	background: #244970;
	height: 40px;
	font-size: 16px;
}

.lpr-table tr:nth-child(2n) {
	background: #2d3a4a;
}

.lpr-table tr:nth-child(2n + 1) {
	background: #263140;
}

.lpr-table:hover {
	/*background: #3f5268*/
	cursor: pointer;
}

.lpr-table td {
	text-align: center;
	height: 30px;
    font-size: 14px;
}

/*===========================ARCHIVE=====================================*/
.archive-horizontal-container {
	display: flex;
	flex-direction: row;
	margin: 4px;
	text-align: center;
	height: -moz-calc(100% - 160px); /* Firefox */
	height: -webkit-calc(100% - 160px); /* Chrome, Safari */
	height: calc(100% - 160px); /* IE9+ and future browsers */
}

.archive-camera-sidebar {
	width: 400px;
	padding-right: 4px;
	display: none;
}

.camera-search-input[type=search] {
	width: 10rem;
    border: 0.125rem solid #e6e6e6;
    box-shadow: 0 0 3.125rem rgba(0, 0, 0, 0.18);
    border-radius: 0;
    background-image: url(/img/search.png);
    background-position: 0.625rem 0.425rem;
    background-repeat: no-repeat;
    padding: 0.35rem 1.25rem 0.3rem 2rem;
    margin-left: 4px;
    transition: width 0.4s ease-in-out;
	border: none;
	outline: none;
	font-family: 'Open Sans';
	width: calc(100% - 8px);
  }
  
  .camera-search-input[type=search]:focus {
	border: none;
	outline: none;
	padding: 0.35rem 0.25rem 0.3rem 2rem;
  }

.archive-cameras-container {
	display: flex;
	flex-direction: column;
	text-align: left;
    font: inherit;
}

.archive-cameras-header {
	padding: 6px 8px;
    font-size: 13px;
    font-weight: bold;
}

.archive-container {
	width: 100%;
}

.archive-video {
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
    align-items: center;
}

.archive-video img, .archive-video video {
	max-width: 100%;
    max-height: 100%;
	width: 100%;
	height: auto;
	display: block;
}

.archive-video img[src=""] {
	display:none;
}

.archive-player-buttons {
	height: 18px;	
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 12px;
	margin: 8px;
}

.archive-player-buttons div {
	padding: 4px 6px;
	margin-right: 4px;
	margin-top: 2px;
}

.archive-player-buttons div:hover {
	cursor: pointer;
}

.choose-camera-icon {
	display: flex;
    justify-content: center;
    align-items: center;
}

.choose-camera-icon:hover {
}

.vertical-separator {
	width: 1px;
	height: 20px;
	display: block;
	padding: 0px !important;
	margin: 0;
}

.vertical-separator:hover {
	cursor: auto !important;
	box-shadow: none !important;
}

.choose-camera-icon img {
	margin-right: 2px;
	width: 17px;
	height: 17px;
}

.archive-player-buttons img {
	height: 18px;
}

.adapt-bar {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	margin-top: -8px;
}

.archive-bar {
	background:white;
	margin: 4px 0;
	height: 30px;
	margin-top: 10px;
	width: calc(100% - 32px);
}

.archive-bar:hover {
	cursor: text;
}

.prev-date {
	background: white;
	margin-left: 4px;
	width: 15px;
	height: 30px;
	margin-top: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	border: none;
}

.next-date {
	background: white;
	margin-right: 4px;
	width: 15px;
	height: 30px;
	margin-top: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	border: none;
}

.prev-date:hover, .next-date:hover {
	cursor: pointer;
	background: #8aa8bd;
	box-shadow: 0 0 0 1px #546a85;
	-webkit-filter: brightness(140%);
}

.tooltip-prev {
  position: relative;
  /*display: inline-block;*/
   -webkit-filter:brightness(100%) !important;
}

/* Tooltip text */
.tooltip-prev .tooltiptext {
  visibility: hidden; 
    width: 120px;
    background-color: white;
    color: #000;
    text-align: center;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    padding: 2px 0;
    border-radius: 2px;
	line-height: 14px;
	transition: all 0.4s ease-in-out;
    font: inherit;
    font-size: 12px;
    left: 20;
    position: absolute;
    z-index: 15;
	 -webkit-filter:brightness(100%) !important;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-prev:hover .tooltiptext {
  /* visibility: visible; */
   -webkit-filter:brightness(100%) !important;
}

/* Tooltip container */
.tooltip-next {
  position: relative;
  /*display: inline-block;*/
   -webkit-filter:brightness(100%) !important;
}

/* Tooltip text */
.tooltip-next .tooltiptext {
  visibility: hidden; 
    width: 120px;
    background-color: white;
    color: #000;
    text-align: center;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    padding: 2px 0;
    border-radius: 2px;
	line-height: 14px;
	transition: all 0.4s ease-in-out;
    font: inherit;
    font-size: 12px;
    right: 20;
    position: absolute;
    z-index: 15;
	-webkit-filter:brightness(100%)!important;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-next:hover .tooltiptext {
  /* visibility: visible; */
  -webkit-filter:brightness(100%) !important;
}

.tooltip-time {
	position: absolute;
	display: none;
	background: white;
    border: 1px solid gray;
    font-size: 11px;
    padding: 2px 4px;
	z-index: 100;
}

.archive-pointer {
	background: #ff0404;
    height: 51px;
    width: 2px;
    top: -51px;
    left: 4px;
    position: relative;
	z-index: 10;
}

.archive-axis {
	position: relative;
    height: 1px;
    background: black;
    width: 100%;
    top: -16px;
    z-index: 10;
    left: 0;
}

.archive-cell-header {
	height: 20px;
    text-align: left;
    width: auto;
    /* max-width: 100; */
    padding: 0 6;
	/*margin-left: 1px;*/
	/*margin-top: 1px;*/
    float: left;
    font: inherit;
    font-size: 13px;
	position:absolute;
	display:none;
}

.archive-cell-header-low {
	height: 20px;
    text-align: left;
    width: auto;
    /* max-width: 100; */
    padding: 0 6;
	/*margin-left: 1px;*/
	/*margin-top: 1px;*/
    float: left;
    font: inherit;
    font-size: 13px;
	position:absolute;
	display:none;
	margin-top: -20px;
}

.archive-cell-header-low:hover {
	cursor: pointer;
}

.lpr-url {
	display: none !important;
}

#bar-chart {
	height: 100% !important;
    width: 100% !important;
	padding-top: 4px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.axis-container {
	width: calc(100% - 8px);
    height: 20px;
    background: white;
	margin-left: 4px;
	margin-top: -4px;
	border-top: 1px solid black;
}

.archive-bar canvas {
	height: 100%;
    width: 100%;
}

.axis-labels {
	font-size: 9px;
    padding: 0px;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    margin: 0px;
}

.axis-labels p {
	padding: 0;
    margin: 4px;
	position: absolute;
}

.update-dialog {
	position: absolute;
	width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 40px;
	font: inherit;
	color: white;
	flex-direction: column;
	background: #1e2936d1;
    z-index: 1;
}

.dialog-content {
	padding: 0;
	margin: 0;
	font-size: 14;
}

.disabledButton {
	pointer-events: none;
	opacity: 0.4;
}

.archive-status-label:hover {
	cursor: default !important;
	box-shadow: none !important;
}

.archive-speed-select {
	margin: 0 4px;
	margin-top: 2px;
    border-radius: 3px;
    font: inherit;
}

.archive-speed-select:focus {
	outline:none;
}

/*================================================DATEPICKER==============================================*/
.ui-datepicker-inline {
	position: absolute !important;
	left: calc(50% - 143px) !important;
	top: calc(50% - 137px) !important;
	left: -moz-calc(50% - 143px) !important;
	top: -moz-calc(50% - 137px) !important;
	left: -webkit-calc(50% - 143px) !important;
	top: -webkit-calc(50% - 137px) !important;
}

.ui-datepicker-inline:hover {
	box-shadow: none !important;
}

.ui-datepicker-header {
	margin: 0 !important;
	display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.ui-datepicker-prev, .ui-datepicker-next {
	position: relative !important;
    left: 0 !important;
    top: 0 !important;
	right: 0 !important;
}

.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
	border: none !important;
}

.ui-datepicker-prev {
	order: 0 !important;
}

.ui-datepicker-title {
	order: 1 !important;
}

.ui-datepicker-next {
	order: 2 !important;
}

.ui-datepicker-title:hover {
	border: none !important;
	box-shadow: none !important;
}

.ui-datepicker-today a {
	/*background: #2d3a4a !important; */
	opacity: 0.5 !important;
}

#ui-datepicker-div {

}

#ui-datepicker-div + input {
	display: none !important;
}

.ui-datepicker thead {
	color: white;
}

.wizard-profile-cell.hidden
{
	display: none;
}

.quick-buttons-container {
	height: 30px;
	position: absolute;
	/*position: -webkit-sticky;*/
    z-index: 7;
	padding: 2px 5px;
}

.audio-icon {
	display: none;
	width: auto;
	height: auto;
	float: right;
    z-index: 6;
	opacity: 0.55;
	margin-left: 4px;
	margin-right: 2px;
}

.audio-icon img {
	height: 22px;
    width: 22px;
    margin-top: 5px;
}

.audio-icon:hover {
	cursor: pointer;
	opacity: 1;
}

.ptz-icon {
	display: none;
	width: auto;
	height: auto;
	float: right;
    z-index: 6;
	opacity: 0.55;
	margin-left: 2px;
	margin-right: 2px;
}

.ptz-icon img {
	height: 22px;
    width: 22px;
    margin-top: 5px;
}

.ptz-icon:hover {
	cursor: pointer;
	opacity: 1;
}

.ptz-arrows-container {
	display: none;
	position: absolute;
    z-index: 6;
}

.ptz-table {
	text-align: center;
}

.ptz-table:hover {
	cursor:pointer;
}

.ptz-td {
	width: 20px;
	height: 20px;
	border-radius: 5px;
}

.ptz-td-empty {
	border-radius: 5px;
}

.screenshot-icon {
	display: none;
	width: auto;
	height: auto;
	float: right;
    z-index: 6;
	opacity: 0.55;
}

.screenshot-icon:hover {
	cursor: pointer;
	opacity: 1;
}

.archive-icon {
	display: none;
	width: auto;
	height: auto;
	float: right;
    z-index: 6;
	opacity: 0.55;
}

.archive-icon:hover {
	cursor: pointer;
	opacity: 1;
}

.resize-icon {
	display: none;
	width: auto;
	height: auto;
	float: right;
    z-index: 6;
	opacity: 0.55;
}

.resize-icon:hover {
	cursor: pointer;
	opacity: 1;
}

.addCamera-icon {
	display: none;
	width: auto;
	height: auto;
	float: right;
    z-index: 6;
	opacity: 0.55;
}

.addCamera-icon:hover {
	cursor: pointer;
	opacity: 1;
}

.zoom-label {
	display: none;
	width: auto;
	height: auto;
	position:absolute;
	float: right;
    z-index: 6;
	padding: 0 6;
	font: inherit;
	font-size: 13px;
}

.zoom-label:hover {
	cursor: pointer;
}

.event-frame-popup {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}

.event-longdesc-overlay {
	position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 7;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.event-longdesc-popup {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 400px;
    height: 200px;
	z-index: 100;
	position: absolute;
    left: calc(50% - 200px);
	top: calc(50% - 100px);
}

.event-frame-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: calc(100% - 120px);
}

.event-frame {
	width: auto;
    height: auto;
}

.event-frame-up-actions {
	display: block;
	width: 100%;
	height: 50px;
	padding: 5px 0px;
	/* background: blue; */
}

.event-frame-close-container {
	float: right;
    margin: 10px;
}

.event-longdesc-close-container {
	float: right;
    margin: 10px;
	position: absolute;
	top: 0;
    right: 0;
}

.event-frame-close {
    height: 14px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	-webkit-filter: brightness(120%);
}

.event-longdesc-close {
    height: 14px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	-webkit-filter: brightness(120%);
}

.event-canvas {
	position:absolute;
}

.event-frame-close:hover {
	transform: scale(1.1);
	cursor: pointer;
	-webkit-filter: brightness(160%);
}

.event-longdesc-close:hover {
	transform: scale(1.1);
	cursor: pointer;
	-webkit-filter: brightness(160%);
}

.event-frame-low-actions {
	display: block;
	width: 100%;
	height: 50px;
	padding: 5px 0px;
	/* background: blue; */
}

.event-frame-title {
	display: inline-block;
	padding: 4px 20px;
	font-size: 14px;
}

.open-frame-icon {
	height: 14px;
	width: auto;
	margin-left: 4px;
	padding: 4px;
	position: relative;
	top: 7px;
}

.archive-link-icon {
	height: 14px;
	width: auto;
	margin-left: 0px;
	padding: 4px;
	position: relative;
	top: 7px;
}

.open-longdesc-icon {
	height: 14px;
	width: auto;
	margin-left: 4px;
	padding: 4px;
	position: relative;
	top: 7px;
}


.with-frame {
	position: relative;
	top: -4px;
}

.multiple-cameras-choice-container {
	display: inline-flex;
	flex-direction: row;
    width: auto;
    margin-bottom: 10px;
}

.multiple-select-all, .multiple-clear-all{
	margin-left: 14px;
	display: none;
}

.event-longdesc-title {
	display: inline-block;
	padding: 4px 20px;
	font-size: 14px;
	white-space: pre-wrap;
}

.multiple-select-all-label, .multiple-clear-all-label {
	display:none;
}

/*===================================================RESPONSIVE STYLES==============================================*/
/*========================================================HEADER====================================================*/

@media screen and (max-width : 1350px){
	
	body {
		overflow: none;
	}
  .mobile-menu .lines {
    border-bottom: 15px double #f8f8f8; 
    border-top: 5px solid #f8f8f8; 
    content:"";
    height: 5px; 
    width:20px;
    padding-right:15px;
	float: right;
}
	/*Make dropdown links appear inline*/
	.mobile-menu ul {
		position: static;
		justify-content: flex-end;
		padding-right: 100px;
	}
	/*Create vertical spacing*/
	.mobile-menu li {
		margin-bottom: 1px;
	}
	
	/*Make all menu links full width*/
	.mobile-menu ul li, .mobile-menu li a {
		width: auto;
	}
	/*Display 'show menu' link*/
	.mobile-menu .show-menu {
		display: none;
		float: right;
		margin-top: 10px;
	}
	
	.vertical-separator-events-start, .vertical-separator-events-end {
		display: none;
	}
	
	.header-logo {
		display: none;
	}
	
	/* .profile-img-li {
		display: inline-block !important;
		margin-left: 10px !important;
		margin-top: 4px;
		width: 20px !important;
	} */
	
	#profile-button {
		margin-left: 0px !important;
	}
	
	#custom-profile-helper {
		margin-right: 0px !important;
	}
	
	.header-link-video, .header-link-archive, .header-link-events {
		/*display: none;*/
		font-size: 12px;
		padding: 10px;
		margin-top: 10px;
		/*display: block;*/
	}
	
	.exit-li {
		font-size: 12px;
		display: block;
		margin-top: 10px;
		height: 48px;
	}
	
	.header-link-video {
		left: 10px;
	}

	.header-link-archive {
		left: 140px;
		padding: 11px;
	}
	
	.header-link-events {
		left: 240px;
		margin-top: 8px;
	}
	
	#profile-separator {
		margin-left: 10px;
		margin-right: 5px;
	}
	
	#custom-profile-helper {
		margin-left: 0px;
	}
}

@media screen and (max-device-width: 768px){
	html {
		-webkit-touch-callout: none !important; /* iOS Safari */
		-webkit-user-select: none !important;   /* Chrome/Safari/Opera */
		-khtml-user-select: none !important;    /* Konqueror */
		-moz-user-select: none !important;      /* Firefox */
		-ms-user-select: none !important;       /* Internet Explorer/Edge */
		user-select: none !important;  
	}
	
	#menu {
		height: 100px;
		padding-top: 120px;
		justify-content: space-evenly;
		padding-right: 0px;
	}
	
	.header-link-video, .header-link-archive {
		margin-top: 50px;
	}
	
	.header-link-events {
		margin-top: 40px;
	}
	
	.header-link-video {
		left: 36px;
		width: 200px;
		font-size: 30px;
		padding: 20px;
	}
	
	.header-link-archive {
		left: 300px;
		width: 200px;
		font-size: 30px;
		padding: 20px;
	}
	
	.header-link-events {
		padding: 20px;
		left: 550px;
	}
	
	.header-link-events img {
		height: 50px;
	}
	
	.exit-li {
		margin-top: 60px;
		right: 16px;
		width: 200px;
		font-size: 30px;
		padding: 10px 10px;
	}
	
	.main-container {
		height: -moz-calc(100% - 320px);
		height: -webkit-calc(100% - 320px);
		height: calc(100% - 320px);
	}
	
	.profile-img-li img, #profile-separator, #custom-profile-helper img {
		height: 50px;
	}
	
	#profile-separator {
		margin-left: 30px;
	}
	
	#context-mini, #context-menu {
		transform: scale(2.0);
	}
	
	#cameras-modal-container {
		transform: scale(1.7);
		left: 25%;
		top: 25%;
	}
	
	#profile-save-container {
		transform: scale(1.5);
	}
	
	.archive-horizontal-container {
		height: -moz-calc(100% - 380px);
		height: -webkit-calc(100% - 380px);
		height: calc(100% - 380px);
	}
	
	.archive-player-buttons {
		height: 120px;
		display: flex;
		justify-content: space-evenly;
	}
	
	.vertical-separator, #datepicker, .playback-camera-icon, .pause-camera-icon, .play-camera-icon {
		transform: scale(3.0);
	}
	
	.choose-camera-icon, .archive-status-label {
		transform: scale(1.5);
		font-size: 18px;
	}
	
	.choose-camera-icon {
		text-decoration: underline;
	}
	
	.ui-datepicker-inline {
		display: block;
    width: 200px;
    position: absolute !important;
    left: -50px !important;
    top: -350px !important;
	transform: scale(1) !important;
	}
	
	.ui-datepicker-header {
		width: 258px;
		margin: 0 !important;
		margin-bottom: 10px !important;
		font-size: 10px;
		padding: 6px !important;
		left: 0px;
		transform: scale(1) !important;
	}
	
	.vertical-separator {
		margin-left: 10px;
	}
	
	.archive-speed-select {
		width: 100px;
        height: 65px;
		font-size: 24px;
	}
	
	.archive-status-label {
		font-size: 14px;
	}
	
	.options-div {
		display: none;
	}
}

/*========================================================EVENTS====================================================*/
.new-event-counter {
	display: none;
	font: inherit;
	font-size: 10px;
    /* font-size: 12px; */
    color: white;
    position: absolute;
    background: #ff0000;
	border-radius: 50%;
    /* border-radius: 12px; */
    /* padding: 1px 8px; */
	padding: 0px 8px;
	left: 30px;
    top: 10px;	
	z-index: 2;
}

@media screen and (max-device-width: 1350px) {
	.new-event-counter {
		left: 20px;
		top: 5px;
	}
}

@media screen and (max-device-width: 768px) {
	.new-event-counter {
		left: 35px;
		top: 10px;
	}
}

.events-container {
	width: 100%;
	min-height: -moz-calc(100% - 66px); /* Firefox */
	min-height: -webkit-calc(100% - 66px); /* Chrome, Safari */
	min-height: calc(100% - 66px); /* IE9+ and future browsers */
}

.events-config-container {
	width: 100%;
	padding: 10px;
	font: inherit;
}

.guard-mode-input {
	margin-left: 0px;
}

.guard-mode-label {
	font: inherit;
	font-size: 14px;
}

.guard-mode-input:hover, .guard-mode-label:hover {
	cursor: pointer;
}	

.events-table-container {
	margin-top: 0px;
	width: 100%;
	/* width: -moz-calc(100% - 12px); Firefox */
	/* width: -webkit-calc(100% - 12px); /* Chrome, Safari */
	/* width: calc(100% - 12px); /* IE9+ and future browsers */
	height: -moz-calc(100% - 105px); 
	max-height: -moz-calc(100% - 105px); 
	max-height: -webkit-calc(100% - 105px); 
	max-height: calc(100% - 105px); 
	height: -webkit-calc(100% - 105px); /* Chrome, Safari */
	height: calc(100% - 105px); /* IE9+ and future browsers */
	overflow-y: scroll;
    display: block;
}

.events-table-container::-webkit-scrollbar {
	width: 4px;
	background-color: transparent;
}

.events-table-container::-webkit-scrollbar-track {

}

.events-table-container::-webkit-scrollbar-thumb {
	border-radius: 1em;
    box-shadow: inset 1px 1px 10px #f3faf7;
}

.event-table {
	border-collapse: collapse;
	width: 100%;
	font-size: 14px;
}

.event-table:hover {
	cursor: pointer;
}

.event-table tbody {
	
}

.event-table td {

}

.event-table th {
	text-align: left;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 8px;
}

.event-table-th {
	font: inherit;
}

.event-table td {
	height: 30px;
}

#event-number-header {
	width: 50px;
}

#event-type-header {
	width: 40px;
}

#event-date-header {
	width: 80px;
}

#event-time-header {
	width: 80px;
}

#event-header {
	width: 300px;
}

#event-camera-header {
	width: 240px;
}

#event-description-header {
	
}

.accept-all-events {
	display: none;
	font: inherit;
	font-size: 14px;
	float: right;
	margin-top: -30px;
	margin-right: 10px;
	 -webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.accept-all-events:hover {
	cursor: pointer;
	transform: scale(1.015);
}

.event-permission-popup {
	display: none;
	justify-content: center;
    align-items: center;
	height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
	z-index: 100;
}

.event-permission-flex-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 10px 20px;
	width: 400px;
	flex-direction: column;
}

.event-permission-show-option {
	margin-top: 10px;
}

.event-permission-show-input {
	margin-left: 0px;
}

.event-permission-label {
	font-size: 13px;
    font-style: italic;
}

.event-permission-popup-accept {
	margin: 0 auto;
	padding: 6 60;
	margin-top: 12px;
	margin-bottom: 6px;
}

.event-permission-popup-accept:hover {
	cursor: pointer;
}

.export-overlay {
	position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 7;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.datepicker-overlay {
	position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 7;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	z-index: 11;
}

.datepicker-close-container {
	display: inline-block;
	z-index: 13;
}

.datepicker-close-container:hover {
	box-shadow: none !important;
}

.datepicker-overlay-close {
	position: absolute;
	height: 14px !important;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	-webkit-filter: brightness(120%);
	z-index: 13 !important;
	display: none;
}

.datepicker-overlay-close:hover {
	transform: scale(1.1);
	cursor: pointer;
	-webkit-filter: brightness(160%);
}

.ui-widget.ui-widget-content {
	z-index: 12;
	padding-top: 28px;
}

#export-form {
    text-align: center;
    position: relative;
	max-width: 800px;
	width: 780px;
}

#export-form fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
	font: inherit;
	padding: 40px 40px;
}

.form-card {
    text-align: left
}

#export-form fieldset:not(:first-of-type) {
    display: none
}

#export-form input,
#export-form textarea {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 16px;
    letter-spacing: 1px
}

#export-form input:focus,
#export-form textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0
}

#export-form .action-button {
    width: 100px;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 40px 0px 10px 5px;
    float: right;
	-webkit-transition: all 0.1s ease 0s;
	-moz-transition: all 0.1s ease 0s;
	-ms-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	transition: all 0.1s ease 0s;
}

#export-form .action-button:hover,
#export-form .action-button:focus {
    transform: scale(1.03);
}

#export-form .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 40px 5px 10px 0px;
    float: right;
	-webkit-transition: all 0.1s ease 0s;
	-moz-transition: all 0.1s ease 0s;
	-ms-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	transition: all 0.1s ease 0s;
}

#export-form .action-button-previous:hover,
#export-form .action-button-previous:focus {
    transform: scale(1.03);
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: white;
	padding-left: 0;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: normal;
	margin-top: 20px;
}

#progressbar #master:before {
    content: "1"
}

#progressbar #dates-interval:before {
    content: "2"
}

#progressbar #export-format:before {
    content: "3"
}

#progressbar #export-download:before {
    content: "4"
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 20px;
    color: black;
	font-size: 16px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li.active:before {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 20px;
    color: white;
	font-size: 16px;
    background: rgb(30, 41, 54);
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
	box-shadow: 0 0 4px 1px white;
}

#progressbar li.active:after{
	background: rgb(30, 41, 54);
	box-shadow: 0 0 4px 1px white;
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

.progress-bar {
    background-color: #2196f3
}

.fit-image {
    width: 100%;
    object-fit: cover
}

.form-card p {
	/* margin-top: 40px; */
}

.smart-profile-container {
	width: auto;
	max-width: 525px;
	border-radius: 5px;
	overflow-x: hidden;
    overflow-y: hidden;
	margin-right: 10px;
	/* height: auto; */
	height: 44px;
	z-index: 30;
	position: absolute;	
	top: 12;
	display: inline-flex;
	/* justify-content: center; */
	flex-wrap: wrap;
}

.open-smart-profiles {
	width: 16px;
	height: 44px;
	/* background: purple; */
	position: absolute;
	margin-top:2px;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 3px;
}

.open-smart-profiles:hover {
	cursor: pointer;
}

.smart-profile-container .profile-img-li {
	margin: 0;
	/* margin-left: 10px; */
	box-shadow: 0 0 1px 0px #546a85;
}

.profile-name  {
	font-size: 11px;
	width: 70px;
	height: 100%;
	text-align: left;
	margin-left: 4px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap:  wrap;
	overflow-wrap: anywhere;
	line-height: 11px;
}

@media screen and (max-width : 1558px){
	.smart-profile-container {
		max-width: 420px;
	}
}

@media screen and (max-width : 1450px)
{
	.smart-profile-container {
		max-width: 315px;
		left: 606px;
		margin-left: 0px !important;
	}
}

@media screen and (max-width : 1350px)
{
	.smart-profile-container {
		max-width: 525px;
		left: 310px;
		margin-left: 0px !important;
	}

	#profile-separator {
		display: none;
	}

	#custom-profile-helper {
		position: absolute;
		left: 858;
	}

	.open-smart-profiles {
		left: 838;
		margin-left: 0px !important;
	}
}

@media screen and (max-width : 1242px)
{

}

@media screen and (max-width : 1242px)
{
	.search, .help {
		display:none;
	}
}

@media screen and (max-width : 980px)
{
	.smart-profile-container {
		max-width: 420px;
		left: 300px;
		margin-left: 0px !important;
	}

	.open-smart-profiles {
		left: 723;
		margin-left: 0px !important;
	}

	#custom-profile-helper {
		position: absolute;
		left: 743;
	}
}

@media screen and (max-width : 870px)
{
	.smart-profile-container {
		max-width: 315px;
		left: 300px;
		margin-left: 0px !important;
	}

	.open-smart-profiles {
		left: 618;
		margin-left: 0px !important;
	}

	#custom-profile-helper {
		position: absolute;
		left: 638;
	}
}

@media screen and (max-width : 755px)
{
	.smart-profile-container {
		max-width: 210px;
		left: 300px;
		margin-left: 0px !important;
	}

	.open-smart-profiles {
		left: 513;
		margin-left: 0px !important;
	}

	#custom-profile-helper {
		position: absolute;
		left: 533;
	}
}

@media screen and (max-width : 650px)
{
	.smart-profile-container {
		max-width: 105px;
		left: 300px;
		margin-left: 0px !important;
	}

	.open-smart-profiles {
		left: 408;
		margin-left: 0px !important;
	}

	#custom-profile-helper {
		position: absolute;
		left: 428;
	}
}

.export-loader {
	display:none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	perspective: 800px;
	margin: -11px !important;
    margin-left: 10px !important;
  }
  
  .export-loader .inner {
	position: absolute;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50%;  
  }
  
  .export-loader .inner.one {
	left: 0%;
	top: 0%;
	animation: rotate-export-one 1s linear infinite;
  }
  
  .export-loader .inner.two {
	right: 0%;
	top: 0%;
	animation: rotate-export-two 1s linear infinite;
  }
  
  .inner.three {
	right: 0%;
	bottom: 0%;
	animation: rotate-export-three 1s linear infinite;
  }
  
  @keyframes rotate-export-one {
	0% {
	  transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
	  transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
  }
  
  @keyframes rotate-export-two {
	0% {
	  transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
	  transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
  }
  
  @keyframes rotate-export-three {
	0% {
	  transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
	  transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
  }

  .export-form-input {
	margin: 0 !important;
	width: auto !important;
  }

  label[for=exportFormatRadio] {
	margin-left: 4px;
	font-weight: bold;
  }

  #export-download-text {
	  display: inline-block;
	  width: auto;
	  margin: 0;
  }

  .export-cancel-button, .export-exit-button {
	display: block;
	padding: 6px 16px;
    color: black;
	font-size: 14px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	margin-top: 10px;
	width: 100px;
    text-align: center;
  }

  .export-download-button {
	display: block;
	padding: 6px 16px;
    color: white;
	font-size: 14px;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	margin-top: 10px;
	width: 100px;
    text-align: center;
	text-decoration: none;
  }

  .export-download-button:visited {
	  text-decoration: none;
	  color:white;
  }

  .export-cancel-button:hover, .export-download-button:hover, .export-exit-button:hover {
	  transform: scale(1.05);
	  cursor: pointer;
  }

  #detach-button-host {
	display: none;
	visibility: hidden;
  }