summary-page{
  margin: 0;
  pading: 0;
  box-sizing: border-box;
  background-color: rgb(63,72,83);
  font-family: sans-serif;
  color: rgb(220,220,220);
  padding: 50px;
/*  width: 100vw;*/
  overflow-x: hidden;
}
summary-page h1{
  font-weight: 400;
}
summary-page a{
  color: inherit;
}
summary-page p{
  margin-top: .7em;
}
summary-page .warning{
  color: rgb(62,148,236);
}
summary-page .st_viewport{
  max-height: 500px;
  overflow: auto;
}

[data-table_id="1"]{
  background-color: rgb(255,115,0);
}
[data-table_id="2"]{
  background-color: rgb(61,53,39);
  color: rgb(220,220,220);
}
[data-table_id="3"]{
  background-color: rgba(168,189,4, .8);
}

._rank{
  min-width: 80px;
}
._id{
  min-width: 60px;
}
._name{
  min-width: 130px;
}
._surname{
  min-width: 130px;
}
._year{
  min-width: 80px;
}
._section{
  min-width: 130px;
}

summary-page pre{
  overflow: auto;
}

/** Sticky table styles **/
.st_viewport{
  background-color: rgb(62,148,236);
  color: rgb(27,30,36);
  margin: 20px 0;
}
/* ###  Table wrap */
.st_wrap_table{
  
}
/* ##   header */
.st_table_header{
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
  background-color: rgb(27,30,36);
  color: rgb(220,220,220);
}
.st_table_header h2{
  font-weight: 400;
  margin: 0 20px;
  padding: 20px 0 0;
}
.st_table_header .st_row{
  color: rgba(220,220,220, .7);
}
.st_table_header .st_column{
  
}
/* ##  table */
.st_table{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
/* #   row */
.st_row{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.st_table .st_row:nth-child(even){
  background-color: rgba(0,0,0, .1)
}
/* #   column */
.st_column{
  padding: 10px 20px;
}

.table100.ver5 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    margin-right: -30px;
    font-family: sans-serif;
}

.table100.ver5 .table100-head {
    width: 100%;
    padding-right: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

.table100 {
	position: relative;
	padding-top: 60px;
}

.m-b-110 {
	margin-bottom: 110px;
}

.table100.ver5 .table100-head th {
	padding-top: 25px;
	padding-bottom: 25px;
        font-family: Lato-Bold;
	font-size: 14px;
	color: #555555;
	line-height: 1.4;
	text-transform: uppercase;
	background-color: transparent;
}

.column1 {
	width: 20%;
	padding-left: 40px;
}
.column2 {
	width: 13%;
}
.column3 {
	width: 22%;
}
.column4 {
	width: 19%;
}
.column5 {
	width: 13%;
}
.column6{
        width: 13%;
}

.sample-loader
 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100px;
  font-family: "Roboto", sans-serif;
}
.sample-loader .loader {
  display: flex;
  font-size: 2em;
}
.sample-loader .loader .dots {
  display: flex;
  position: relative;
  top: 20px;
  left: -10px;
  width: 100px;
  -webkit-animation: dots 4s ease infinite 1s;
          animation: dots 4s ease infinite 1s;
}
.sample-loader .loader .dots div {
  position: relative;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 100%;
  background-color: black;
}
.sample-loader .loader .dots div:nth-child(1) {
  width: 0px;
  height: 0px;
  margin: 5px;
  margin-right: 15px;
  -webkit-animation: show-dot 4s ease-out infinite 1s;
          animation: show-dot 4s ease-out infinite 1s;
}
.sample-loader .loader .dots div:nth-child(4) {
  background-color: transparent;
  -webkit-animation: dot-fall-left 4s linear infinite 1s;
          animation: dot-fall-left 4s linear infinite 1s;
}
.sample-loader .loader .dots div:nth-child(4):before {
  position: absolute;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 100%;
  background-color: black;
  content: "";
  -webkit-animation: dot-fall-top 4s cubic-bezier(0.46, 0.02, 0.94, 0.54) infinite 1s;
          animation: dot-fall-top 4s cubic-bezier(0.46, 0.02, 0.94, 0.54) infinite 1s;
}

@-webkit-keyframes dots {
  0% {
    left: -10px;
  }
  20%,
   100% {
    left: 10px;
  }
}

@keyframes dots {
  0% {
    left: -10px;
  }
  20%,
   100% {
    left: 10px;
  }
}
@-webkit-keyframes show-dot {
  0%,
   20% {
    width: 0px;
    height: 0px;
    margin: 5px;
    margin-right: 15px;
  }
  30%,
   100% {
    width: 10px;
    height: 10px;
    margin: 0px;
    margin-right: 10px;
  }
}
@keyframes show-dot {
  0%,
   20% {
    width: 0px;
    height: 0px;
    margin: 5px;
    margin-right: 15px;
  }
  30%,
   100% {
    width: 10px;
    height: 10px;
    margin: 0px;
    margin-right: 10px;
  }
}
@-webkit-keyframes dot-fall-left {
  0%,
   5% {
    left: 0px;
  }
  100% {
    left: 200px;
  }
}
@keyframes dot-fall-left {
  0%,
   5% {
    left: 0px;
  }
  100% {
    left: 200px;
  }
}
@-webkit-keyframes dot-fall-top {
  0%,
   5% {
    top: 0px;
  }
  30%,
   100% {
    top: 50vh;
  }
}
@keyframes dot-fall-top {
  0%,
   5% {
    top: 0px;
  }
  30%,
   100% {
    top: 50vh;
  }
}

th, td {
	font-weight: unset;
	padding-right: 10px;
}

.box {
	position: relative;
	border-radius: 3px;
	background: #ffffff;
	border-top: 3px solid #d2d6de;
	margin-bottom: 20px;
	width: 100%;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
        box-sizing: border-box;
}

.box-body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	padding: 10px;
}
.box-header.with-border {
	border-bottom: 1px solid #f4f4f4;
}
.box-header {
	color: #444;
	display: block;
	padding: 10px;
	position: relative;
}
.content-center {
	margin: 0 auto;
	max-width: 1300px;
}
.content {
        box-sizing: border-box;
	min-height: 250px;
	padding: 15px;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.box.box-success {
	border-top-color: #6da252;
}
.summaryReportPagination .row{
    margin: auto;
}
.material-switch > input[type="checkbox"] {
    display: none;   
}

.material-switch > label {
    cursor: pointer;
    height: 0px;
    position: relative; 
    width: 40px;  
}

.material-switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}
.material-switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
}
.clickable{
    cursor: pointer;   
}

.container{
    margin-top:30px;
}

.filter-col{
    padding-left:10px;
    padding-right:10px;
}

/*.panel-heading span {
	margin-top: -20px;
	font-size: 15px;
}*/

