*
{
	font-family: Arial;
}
h4,h3,h5,h6
{
	margin: 5px 0;
}
.v4, .v6
{
	float:left;
	width: 45%;
	border: 3px solid black;
	border-radius:10px;
	margin: 5px;
	padding: 0;
	overflow:hidden;
}
.v4 p, .v4 h3, .v6 p, .v6 h3
{
	margin: 0 5px;
}
.images
{
	display:none;
}
.testimg
{
	height: 400px;
}

html,body
{
	margin: 0;
	padding: 0;
	background-color: #1e1e1e;
}

/*Hauptcontainer*/
.cont
{
	position: absolute;
	left: 0;
	right:0;
	width: 100%;
	max-width: 1000px;
	min-height: 100%;
	margin: -10px auto -10px auto;
	background: #f0f0f0;
	border: 1px solid #999;
	border-width: 0 1px;
	overflow-x: hidden;
	overflow-y: visible;
	padding: 10px 10px 0;

}
.cont h1
{
	background: #4B87E7;
	width: 200%;
	margin-left: -10px;
	padding: 10px;
	color: #e7e7e7;
}
.headCont
{
	padding: unset;
}
.headCont a
{
	margin:3px;
	padding: 5px;
}
hr
{
	width: 200%;
	margin: 10px 0 10px -30px;
	height: 3px;
	background: rgba(0,0,0,0.4);
	border: none;
	box-shadow: none;
}
span.info
{
	display:inline-block;
	font-weight:bold;
	width:105px;
}
a
{
	text-decoration: none;
	color: #4B87E7;
	border-radius: 3px;
	padding: 0 2px;
	transition: all 0.2s;
}
a.title
{
	color: #eaeaea;
}
a:hover
{
	background: #4B87E7;
	color: #f5f5f5;
}
a.title:hover
{
	color: #111;
}
.secondary_link
{
	font-size:70%;
	vertical-align:top;
}

.ipAddr {
	font-weight:normal;
	cursor:pointer;
}
.ipTest{
	margin: -10px;
}
.ipTest > div{
	padding: 10px;
	transition: all 0.4s;
	background-color: rgba(0, 0, 0, 0);
}
.ipTest .success {
	background-color: rgb(220, 255, 160);
}
.ipTest .failure {
	background-color: rgba(255, 100, 136, 0.46);
}
.info_geo{
	transition: all 0.3s;
	padding: 7px;
	margin: -7px;
	border-radius: 10px;
	display: inline-block;
}
.info_geo:hover{
	background: rgba(255,255,255,0.8);
	box-shadow: inset 0 0 10px black;
}


/* loading icon */
.lds-ellipsis {
  margin-left: 20px;
  display: inline-block;
  position: relative;
  width: 40px;
  height: 11px;
}
.lds-ellipsis div {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  box-shadow: 0 0 5px black;
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/*chart*/

/*v4*/
.ct-series-a .ct-line,
.ct-legend .ct-series-0:before {
	stroke: #363880 !important;
	background-color: #363880 !important;
	border-color: #363880 !important;
}
.ct-series-a .ct-point
{
	fill: #363880 !important;
	stroke: #363880 !important;
}
/*v6*/
.ct-series-b .ct-line,
.ct-legend .ct-series-1:before {
	stroke: #FA9100 !important;
	background-color: #FA9100 !important;
	border-color: #FA9100 !important;
}
.ct-series-b .ct-point
{
	fill: #FA9100 !important;
	stroke: #FA9100 !important;
}


/*Legende*/
.ct-legend {
	background: rgba(255,255,255,0.7);
	padding: 3px;
	border-radius: 5px;
	position: absolute;
	right:10px;
	top: 10px;
	z-index: 10;
	list-style: none;
}
.ct-legend li {
	position: relative;
	padding-left: 23px;
	margin-bottom: 3px;
}
.ct-legend li:before {
	width: 12px;
	height: 12px;
	position: absolute;
	left: 0;
	content: '';
	border: 3px solid transparent;
	border-radius: 2px;
}
.ct-legend li.inactive:before {
	background: transparent;
}
.ct-legend.ct-legend-inside {
	position: absolute;
	top: 0;
	right: 0;
}
