.page-id-40>*{
	background: black;
	color:white;
}

.container{
	padding: 0;
}

table {
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	overflow: hidden;
    display: flex;
    flex-flow: column;
    width: 100%;
}

#carouselSprites .carousel-indicators {
  bottom: -50px;
}

#carouselSprites .carousel-control-prev{
	height:35px;
	width:35px;
	border-radius: 5px;
	border: 2px solid #FFF;
}

#carouselSprites .carousel-control-next{
	height:35px;
	width:35px;
	border-radius: 5px;
	border: 2px solid #FFF;
}

thead {
    flex: 0 0 auto;
}

tbody {
    flex: 1 1 auto;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}

tr {
    width: 100%;
    display: table;
    table-layout: fixed;
}

.pkmnbutton[type=submit]{
	width: 100%;
	border-radius: 25px;
	background-color: green;
	margin-bottom: 10%;
	text-transform: capitalize;
}

.typebox{
	padding: 0px;
	padding-right: 2px
}

.typebox > div{
	border: 1px solid;
	border-color: rgba(0, 0, 0, 1);
	border-radius: 5px;
	text-transform: capitalize;
}

.statbar{
	border-radius: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
	margin-right: -10px;
}

.pokemon-ball {
	display: none;
	position: absolute;
	top: 100px;
	left: 120px;
	transform: translate(-50%, -50%);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 6px solid #0f2634;
	overflow: hidden;
	animation-name: ball;
	animation-duration: 3s;
	animation-iteration-count: infinite; 
}
	@keyframes ball{
		0%, 75%, 100%{
			transform: translate(-50%, -50%) rotateZ(0deg);
		}
		15%, 45%{
			transform: translate(-50%, -50%) rotateZ(15deg);
		}
		30%, 60%{
			transform: translate(-50%, -50%) rotateZ(-15deg);
		}
	}
.pokemon-ball::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: #fff;
	border: 15px solid #0f2634;
	border-radius: 50%;
}
.pokemon-ball::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%, -50%);
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
	z-index: 9;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	animation-name: flash;
	animation-duration: 3s;
	animation-iteration-count: infinite; 
}
	@keyframes flash{
		0%, 20%, 40%, 60%, 80%, 100%{
			background: #fff;
			box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
		}
		10%, 30%, 50%, 70%{
			background: #f11a3a;
			box-shadow: 0 0 20px 0 rgba(235, 1, 18, 1);
		}
	}
.red-ball{
	top: 0;
	left: 0;
	display: block;
	position: absolute;
	width: 100%;
	height: 46%;
	background: #f11a3a;

}
.effects{
	position: absolute;
}
.red-effect1{
    top: 40px;
    left: 12px;
    margin: auto 0;
    width: 2px;
    height: 12px;
    background: #feeeee;
    border-radius: 5px 0 0 5px;
    transform: rotate(25deg);
}
.red-effect2{
    top: -15px;
    right: -12px;
    margin: auto 0;
    width: 70px;
    height: 35px;
    background: #feeeee;
    border-radius: 50%;
}
.red-effect3{
    top: 25px;
    right: 25px;
    margin: auto 0;
    width: 3px;
    height: 3px;
    background: #feeeee;
    border-radius: 50%;
}
.ball-line{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 0;
	width: 100%;
	height: 8%;
	background: #0f2634;
	border-left: 5px solid #0f2634;
    border-right: 5px solid #0f2634;
}
.white-ball{
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 46%;
	background: #fff;
}