.inputset {
    padding: 10px;
    float: right;
    margin: 0 80% 0 0;
    width: 12%;
    height: 2%;
    border-radius: 5px;
}

.activbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 15px 0 0 10px;
}
.activbox .activboxtext {
  visibility: hidden;
  width: 400px;
  background-color: #555;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 8px 8px;
  position: absolute;
  z-index: 1;
  bottom: 10%;
  left: 100px;
  margin-left: -80px;
}
.activbox .activboxtext::after {
  content: "";
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.activbox .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

input, button {
    cursor: pointer;
}
li {
    list-style-type: none;
}
.login_pos {
    text-align: center;
    margin-top: 5%;
}
.login_input {
    width: 30%;
    padding: 8px;
    border: 1px solid;
    border-radius: 4px;
}
p {
    font-size: 16px
}
.login_button {
    width: 20%;
    background-color: #ffdcac;
    border-radius: 5px;
    margin-top: 20px;
    height: 30px;
}
.ref_table {
	width: 30%;
	border: none;
	margin: 2% 0 0 3%;
	border-collapse: separate;
}
.ref_table thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background: #ffdcac;
	font-size: 14px;
	border-top: 1px solid #ddd;
}
.ref_table tr th:first-child, .ref_table tr td:first-child {
	border-left: 1px solid #ddd;
}
.ref_table tr th:last-child, .ref_table tr td:last-child {
	border-right: 1px solid #ddd;
}
.ref_table thead tr th:first-child {
	border-radius: 20px 0 0 0;
}
.ref_table thead tr th:last-child {
	border-radius: 0 20px 0 0;
}
.ref_table tbody td {
	text-align: left;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}
.ref_table tbody tr:nth-child(even) {
	background: #F8F8F8;
}
.ref_table tbody tr:last-child td{
	border-bottom: 1px solid #ddd;
}
.ref_table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 20px;
}
.ref_table tbody tr:last-child td:last-child {
	border-radius: 0 0 20px 0;
}

/*Monitoring Table Style for 7 days*/
.dataframe.montable7 table {
	width:100%;
	table-layout: fixed;
	border: none;
	margin: 0 0 0 35px;
}
.dataframe.montable7 thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background: #ffdcac;
	font-size: 14px;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
.dataframe.montable7 tbody td, th {
	text-align: left;
    border: none;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}
.dataframe.montable7 tbody tr:nth-child(even){
	background: #f3f3f3;
}

.dataframe.montable7 tbody tr:nth-child(2){
	background: #ffdcac;
    font-weight: bold;
}

.token {
	width: 15%;
	height: 3%;
	border: 1px solid;
	border-radius: 5px;
}

/*Monitoring Table Style for 30 days*/
.dataframe.montable30 table {
	width:100%;
	table-layout: fixed;
	border: none;
}
.dataframe.montable30 thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background: #ffdcac;
	font-size: 14px;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
.dataframe.montable30 tbody td, th {
	text-align: left;
    border: none;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}
.dataframe.montable30 tbody tr:nth-child(even){
	background: #f3f3f3;
}


.testing {
	background-color: #ffdcac;
	font-weight: bold;
	text-align-last: end;
}


/* Контейнер подсказок */
.tooltip {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black; !* Если вы хотите, чтобы точки под перемещаемым текстом *!*/
}

/* Текст подсказки */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Расположите текст подсказки */
  position: absolute;
  z-index: 1;
  bottom: 90%;
  left: 31%;
  margin-left: -60px;

  /* Исчезают в подсказке */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Подсказка стрелка */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Отображение текста подсказки при наведении курсора мыши на контейнер подсказки */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/*Выделение при наведении*/
.settings_link:hover {
    border: 3px solid #ffdcac;
    border-radius: 5px;
    padding: 2px;
	color: black;
}

/*General*/
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}


/*.track-req-table table {*/
/*	width:100%;*/
/*	table-layout: fixed;*/
/*	border: none;*/
/*	margin: 0 0 0 35px;*/
/*}*/
/*.track-req-table thead th {*/
/*	font-weight: bold;*/
/*	text-align: left;*/
/*	border: none;*/
/*	padding: 10px 15px;*/
/*	background: #ffdcac;*/
/*	font-size: 14px;*/
/*	border-left: 1px solid #ddd;*/
/*	border-right: 1px solid #ddd;*/
/*}*/
/*.track-req-table tbody td, th {*/
/*	text-align: left;*/
/*    border: none;*/
/*	border-left: 1px solid #ddd;*/
/*	border-right: 1px solid #ddd;*/
/*	padding: 10px 15px;*/
/*	font-size: 14px;*/
/*	vertical-align: top;*/
/*}*/
.track-req-table tbody tr:nth-child(even){
	background: #f3f3f3;
}

/*Pagination*/
.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.pagination a.active_pagin {
    background-color: #ffdcac;
    color: white;
}
.pagination a:hover:not(.active_pagin) {background-color: #ddd;}