body {
  margin: 0;
}

html {
  width: 100%;
  height: 100vh;
  background: #E0F1FF;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  padding-top: 300px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-content: center;
  z-index: 1;
}

::selection {
  background: #fb6868;
  color: #ffffff;
}

table {
  position: relative;
  top: -200px;
}

th {
  font-weight: 700;
  background: #3470A2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
  letter-spacing: -.07em;
  text-align: center;
  padding: 12px 30px;
  transition: 0.33s ease;
}

th:hover {
  cursor: pointer;
  background: #3470A2;
}

td {
  max-width: 150px;
  height: 50px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
  font-weight: 500;
  text-align: center;
  padding: 15px 12px;
  background: #2E3532;
  transition: 0.33s ease;
}

td:not(:last-child) {
  border-right: 1px solid #414744;
}

tr td:first-child {
  text-align: left;
}

td:hover {
  background: #414744;
  cursor: pointer;
}

input {
  font-family: 'Montserrat', sans-serif;
  background: none;
  outline: none;
  border: none;
  color: #fff;
  font-size: 1em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
  margin-left: 5px;
  width: 120px;
}

::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.5;
}

#add {
  width: 100%;
  position: absolute;
  background: #3470A2;
  color: #fff;
  top: 100%;
  left: calc(100% - 150px);
}

#add:hover {
  background: #3F88C5;
}

#remove {
  width: 100%;
  position: absolute;
  background: #E63946;
  color: #fff;
  top: 100%;
  left: calc(100% - 300px);
}

#remove:hover {
  background: #E84B56;
}

.this {
  background: #E63946;
  border-color: #E63946 !important;
}

#scroll {
  font-size: 0.6em;
  position: absolute;
  color: #2E3532;
  z-index: 100;
  top: 450px;
}

#scroll a {
  color: #2E3532;
  font-weight: bold;
  text-decoration: none;
  list-style: none;
}

 .title{
	position:relative;
	z-index:1;
	zoom:1;
	
}
.title em {display:none;}
.title:hover em {
	display:block;
	position:absolute;
	z-index:1;
 	background-color:#000;
	font-weight: bold;
 	-webkit-border-radius:5px; /* красивости в виде скругленных углов */
 	-moz-border-radius:5px;
 	border-radius:5px;
	line-height:normal;
	color:#FFF;
	text-decoration:none;
	padding:3px 5px;
	bottom:22px;
	right:0;
	-webkit-box-shadow:0 0 5px #000; /* красивости в виде тени */
	-moz-box-shadow:0 0 5px #000;
	box-shadow:0 0 5px #000;
}


