@import url("https://fonts.googleapis.com/css?family=Lato:100,300,400");

@import url("https://fonts.googleapis.com/css?family=Roboto:100");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.display-container {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.inner {
    display: none;
    text-align: center;
    color: seashell;
    font-size: 20px;
    /* border:1px solid red; */
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(211, 211, 211, 0.5);
    min-width: 50%;
    max-width: 75%;
}

.header-image {
	text-align: center;
}

#wits-logo {
	width: 100px;
}

.all-button-container {
    display: flex;
    justify-content: center;
}

.button-container-1 {
	position: relative;
	width: 50px;
	height: 50px;
	margin-top: 2vh;
	overflow: hidden;
	/* border: 1px solid; */
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 20px;
	transition: 0.5s;
	letter-spacing: 1px;
	border-radius: 8px;
    background-color: azure;
    float: left;
}

.button-container-1 button {
	width: 100%;
	height: 100%;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 11px;
	letter-spacing: 1px;
	font-weight: bold;
	background: #000;
	-webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.png");
	mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.png");
	-webkit-mask-size: 2300% 100%;
	mask-size: 2300% 100%;
	border: none;
	color: #fff;
	cursor: pointer;
	-webkit-animation: ani2 0.7s steps(22) forwards;
	animation: ani2 0.7s steps(22) forwards;
}

.button-container-1 button:hover {
	-webkit-animation: ani 0.7s steps(22) forwards;
	animation: ani 0.7s steps(22) forwards;
}

.button-container-2 {
	position: relative;
	width: 50px;
	height: 50px;
	margin-top: 2vh;
	overflow: hidden;
	/* border: 1px solid; */
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 20px;
	transition: 0.5s;
	letter-spacing: 1px;
	border-radius: 8px;
    background-color: azure;
    float: left;
}

.button-container-2 button {
	width: 101%;
	height: 100%;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 11px;
	letter-spacing: 1px;
	font-weight: bold;
	background: #000;
	-webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
	mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
	-webkit-mask-size: 3000% 100%;
	mask-size: 3000% 100%;
	border: none;
	color: #fff;
	cursor: pointer;
	-webkit-animation: ani2 0.7s steps(29) forwards;
	animation: ani2 0.7s steps(29) forwards;
}

.button-container-2 button:hover {
	-webkit-animation: ani 0.7s steps(29) forwards;
	animation: ani 0.7s steps(29) forwards;
}

.mas {
	position: absolute;
	color: #000;
    height: 100%;
	width: 100%;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	position: absolute;
	font-size: 11px;
	font-weight: bold;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes ani {
	from {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}

	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
}

@keyframes ani {
	from {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}

	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}
}

@-webkit-keyframes ani2 {
	from {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}

	to {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}
}

@keyframes ani2 {
	from {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
	}

	to {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}
}

a {
	color: #00ff95;
}

.button-container-3 {
	position: relative;
	width: 50px;
	height: 50px;
	margin-top: 2vh;
	overflow: hidden;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 20px;
	transition: 0.5s;
	letter-spacing: 1px;
	border-radius: 8px;
    background-color: azure;
    float: left;
}

.button-container-3 button {
	width: 101%;
	height: 100%;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 11px;
	letter-spacing: 1px;
	font-weight: bold;
	background: #000;
	-webkit-mask: url("https://raw.githubusercontent.com/pizza3/asset/master/natureSmaller.png");
	mask: url("https://raw.githubusercontent.com/pizza3/asset/master/natureSmaller.png");
	-webkit-mask-size: 7100% 100%;
	mask-size: 7100% 100%;
	border: none;
	color: #fff;
	cursor: pointer;
	-webkit-animation: ani2 0.7s steps(70) forwards;
	animation: ani2 0.7s steps(70) forwards;
}

.button-container-3 button:hover {
	-webkit-animation: ani 0.7s steps(70) forwards;
	animation: ani 0.7s steps(70) forwards;
}

.button {
	background-color: #4CAF50; /* Green */
	border: none;
	color: white;
	padding: 16px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor: pointer;
	border-radius: 10px;
  }

.button5 {
	background-color: rgba(255, 255, 255, 0.7);
	color: black;
	border: 2px solid #222222;
  }
  
  .button5:hover {
	background-color: #222222;
	color: white;
  }

  .styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    /* min-width: 400px; */
	width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
	border: 1px solid white;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}
