.qrcode-link {
    text-decoration: none;
}

.qrcode-text {
    font-family: "Ubuntu";
	font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
    width: 60%;
    height: 50px;
    border-radius: 25px;
    background-color: #0c3846;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    position: relative;
    z-index: 1;
    cursor: pointer;
    margin: 20px auto;
}

.qrcode-text::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    top: 0;
    left: 0;
    background: #08252e;
	/*background: -webkit-linear-gradient(left, #005bea, #00c6fb);
    background: -o-linear-gradient(left, #005bea, #00c6fb);
    background: -moz-linear-gradient(left, #005bea, #00c6fb);
    background: linear-gradient(left, #005bea, #00c6fb);*/
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    opacity: 0
}

.qrcode-text:hover {
    /*background: 0 0;*/
    background: #08252E;
    color: #fff
}

.qrcode-text:hover:before {
    opacity: 1
}

.qrcode-text:active {
    background-color: #1a4f60;
    box-shadow: 0 2px #777;
    transform: translateY(1.5px);
}



.StudentMainContainer {
    /*max-width: 600px!important;*/
    margin: 0 auto;
}

.StudentContainerFirst {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.StudentChild {
    width: 100%;
	margin-bottom: 20px;
}

.StudentLabel {
	background-color: #0C3846;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	height: auto;
	padding: 15px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.StudentName {
	background-color: #fff;
	color: #000;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	display: block;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.StudentLabel:hover {
	background-color: #08252E;
}

.StudentName:hover {
	background-color: #F1ECF8;
}

.StudentContainerSecond {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.ClassChild {
    width: 100%;
	margin-bottom: 20px;
}

.ClassLabel {
	background-color: #0C3846;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.ClassName {
	background-color: #fff;
	color: #000;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	overflow: auto;
	display: block;
}

.ClassLabel:hover {
	background-color: #08252E;
}

.ClassName:hover {
	background-color: #F1ECF8;
}

.myAvg, .myBim {
    
    background-color: #0C3846;
    font-weight: bold;
    color: #fff;
    
}

.myNR {
    font-weight: bold;
}

.accordion {
  max-width: 400px;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
  border-radius: 10px;
  overflow: hidden;
  /*background: #0C3846;*/
  text-align: center;
}

.accordion__label,
.accordion__content {
  padding: 10px;
}


.accordion__label {
  display: block;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: background 0.1s;
    background: #0C3846;
    border-radius: 12px;
}

.accordion__label:hover {
  /*background: rgba(0, 0, 0, 0.1);*/
  background: #08252E;
  
}

.accordion__label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 12px;
  height: 6px;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="50" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 100,0 50,50" style="fill:%23FFFFFF99;" /></svg>');
  background-size: contain;
  transition: transform 0.4s;
}

.accordion__content {
  background: #ffffff;
  line-height: 1.6;
  font-size: 14px;
  display: none;
     border-radius: 12px;
}

.accordion__input {
  display: none;
}

.accordion__input:checked ~ .accordion__content {
  display: block;
     border-radius: 0px 0px 12px 12px;
}

.accordion__input:checked ~ .accordion__label {
     border-radius: 12px 12px 0px 0px;
}

.accordion__input:checked ~ .accordion__label::after {
  transform: translateY(-50%) rotate(0.5turn);
}

.myTableContainer {
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	text-align: center!important;
}

#myTable {
	border-collapse: separate;
	width: 100%;
	font-size: 12px;
	border-spacing: 0;
	/*display: block;*/
    /*white-space: nowrap;*/
	margin-left: auto!important;
	margin-right: auto!important;
	word-wrap: break-all!important;
}

#myTable th {
	padding: 6px;
	border-left: solid 1px #E1D5EF;
}

#myTable td {
  text-align: center;
  padding: 6px;
  height: 50px;
  width: 40px;
}

#myTable tr.header {
	background-color: #0C3846;
	color: #fff;
	height: 50px;
}

.mytablecol1 {
    width: 300px;
}

.mytablecol2 {
    width: 60px;
}

/*#myTable tr.header:hover {
	background-color: #0C3846;
}*/

th:first-child { border-top-left-radius: 10px; }
th:last-child { border-top-right-radius: 10px; }

/*#dataRow:hover {
	background-color: #E1D5EF;
}

.dataRow:hover {
	background-color: #E1D5EF;
}*/

td {
  padding: 4px;
}

tr td {
	border-left: solid 1px #E1D5EF;
	border-left-style: solid;
}

tr:last-child td:first-child { 
	border-bottom-left-radius: 10px;
}

tr:last-child td:last-child { 
	border-bottom-right-radius: 10px; 
}

tr:nth-child(even) {
	background: #F4F4F4;;
}

tr:nth-child(odd) {
	background: #FFF;
}

tr:nth-child(even):hover {
    background-color: #D1EBEA;
}

tr:nth-child(odd):hover {
    background-color: #D1EBEA;
}

#myLastRow {
    background-color: #8150BC;
    color: #fff;
    font-Weight: bold;
    border-left: solid 1px #8150BC;
	border-left-style: solid;
}
