/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
	outline: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	/* border-collapse: collapse;
	border-spacing: 0; */
	width: 100%;
	text-align: center;
}

/* Main */
html {
	box-sizing: border-box;
	height: 100%;
}
body {
	background: #f3f3f3;
	font-size: 16px;
	min-width: 320px;
	position: relative;
	line-height: 1.65;
	font-family: 'Open Sans', sans-serif;
	color: #313131;
	margin: 0;
	padding: 0;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.container {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
	padding: 0 15px;
}

/* Header */

.header {
	background: #fff;
}

.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 10px 0;
	border-bottom: 1px solid #f8f8f8;
}



.header a {
	font-size: 14px;
	color: #313131;
	text-decoration: none;
	transition: all .3s;
	margin-right: 25px;
	white-space: nowrap;
}

.header a:last-child {
	margin-right: 0;
}

.header a:hover {
	color: #ff8a00;
	cursor: pointer;
	transition: all .3s;
}

.logo {
	line-height: 0;
}

#myip {
	position: relative;
	background: #fff;
	height: auto;
	padding: 0 15px;
}
.myip-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;

}
.myip_text {
	font-family: 'Exo 2', sans-serif !important;
	color: #000;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2;
}

/* Select */
.hp_dropdown {
	display: none;
  width: 350px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 22px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 16px;
  color: #000;
  text-align: left;
  outline: 0;
  line-height: 1.2;
}
.hp_dropdown .select {
  cursor: pointer;
  display: block;
  padding: 10px 15px;
}
.hp_dropdown .select i {
  font-size: 13px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  float: right;
  line-height: 20px;
}
.hp_dropdown:active {
  background-color: #f1f3f4;
}
.hp_dropdown.active:hover, .hp_dropdown.active {
  border-radius: 5px 5px 0 0;
  background-color: #f1f3f4;
}
.hp_dropdown.active:hover .select > i, .hp_dropdown.active .select > i {
  transform: rotate(180deg);
}
.hp_dropdown .dropdown-menu {
  position: absolute;
  background-color: #fff;
  width: 100%;
  left: 0;
  margin-top: 1px;
  box-shadow: 0 1px 2px #cccccc;
  border-radius: 0 1px 5px 5px;
  overflow: hidden;
  display: none;
  z-index: 9;
  padding: 0;
  list-style: none;
}
.hp_dropdown .dropdown-menu li {
  padding: 10px 15px;
  transition: all 0.3s;
  cursor: pointer;
}
.hp_dropdown .dropdown-menu li:hover {
  background-color: #f2f2f2;
}
.hp_dropdown .dropdown-menu li:active {
  background-color: #e2e2e2;
}

.hp_dropdown .dropdown-menu a {
	color: #333;
	text-decoration: none;
	display: block;
}

.hp_dropdown .target {
	font-weight: 600;
	color: #000;
}

/* Footer */
.footer {
	position: relative;
  padding: 15px;
  background-color: #fff;
  text-align: center;
}

.footer img {
	height: 25px;
}

.copy {
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 1.2;
}

/* Content */
#content {
	padding: 60px 0;
}

.main-menu {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 999;
}

.main-content {
	text-align: center;
}

/* Menu */

.menu-list li {
	text-align: left;
	background: #fff;
	padding: 5px 25px;
	border-bottom: 1px solid #f1f3f4;
	line-height: 1.5;
}

.menu-list li:last-child {
	border-bottom: none;
}

.menu-list li a {
	font-family: "Open Sans", san-serif;
	font-weight: 400;
	font-size: 14px;
	color: #888;
	transition: all .3s;
	text-decoration: none;
	display: block;
}


.menu-list li a:hover {
	color: #333;
	transition: all .3s;
	
}

.menu-list .active a {
	color: #000;
	font-weight: 600;
}

/* Content */

.item-title {
	color: #333;
	font-family: 'Exo 2', sans-serif !important;
	font-size: 32px;
	font-weight: 300;
	width: 100%;
}

.desc {
	color: #333;
	font-size: 14px;
	font-weight: 400;
	margin: 15px 0 30px;
	line-height: 1.5;
	width: 100%;
}

/* Form */

.form__input.line {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.form__input input {
	font-size: 16px;
	color: #000;
	font-weight: 400;
	font-family: 'Exo 2', sans-serif !important;
	border: none;
	padding: 10px 15px;
	border-radius: 30px;
	margin-top: 10px;
	width: 100%;
	box-sizing: border-box;
}

.form__button input{
	display: inline-block;
	text-decoration: none;
	border-radius: 24px;
	color: #fff;
	background: #71ac34;
	font-weight: 600;
	padding: 8px 35px;
	transition: all .3s;
	cursor: pointer;
	text-align: center;
	border: 3px solid #71ac34;
	margin-top: 15px;
}

.main-content input[type="submit"]:hover {
	transition: all .3s;
	opacity: 0.9;
}

.line-wrap {
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

/* select */
.select-wrap{
	font-family: 'Exo 2', sans-serif !important;
	border: none;
	position: relative;
	outline: none;
	margin: 10px 0 0 30px;
}
.select-wrap:after {
	content: '\f107';
	right: 15px;
	border: none;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
}
.select-wrap > select{       
	outline: none;
	padding: 5px 15px;
	border: 0;
	font-size: 16px;
	color: #000;   
	font-weight: 400;  
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;    
	background: #fff;
	padding: 10px 15px;
	border-radius: 30px;
	box-sizing: border-box;
	min-width: 150px;
}

/* checkbox */
.check-wrap {
	margin-top: 10px;
}

.check-wrap input[type="checkbox"] {
	display: none;
}

.check-wrap label {
	padding: 10px 0 10px 20px;
	position: relative;
	cursor: pointer;
	transition: all .3s;
	font-size: 14px;
	line-height: 1.2;
}

.check-wrap label:hover {
	color: #333;
	transition: all .3s;
}

.check-wrap label::before {
	content: '\f0c8';
	position: absolute;
	color: #71ac34;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	font-size: 16px;

}

.check-wrap input[type="checkbox"]:checked + label::before {
	content: '\f14a';
}

.check-wrap input[type="checkbox"]:disabled + label{
	display: none;
}

.check-wrap.dnslookup {
	display: none;
}

/* result */
#result-dnsreport,
#result-,
#result-dnslookup,
#result-whois,
#result-cached,
#result-spam,
#result-reversedns,
#result-ipwhois,
#result-ipinformation,
#result-decip,
#result-netdiag,
#result-dnstiming,
#result-traceroute,
#result-ping,
#result-cidr {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

#result-dnsreport h2,
#result- h2,
#result-dnslookup h2,
#result-whois h2,
#result-cached h2,
#result-spam h2,
#result-reversedns h2,
#result-ipwhois h2,
#result-ipinformation h2,
#result-decip h2,
#result-netdiag h2,
#result-dnstiming h2,
#result-traceroute h2,
#result-ping h2,
#result-cidr h2 {
	color: #333;
	font-family: 'Exo 2', sans-serif !important;
	font-size: 32px;
	font-weight: 300;
	width: 100%;
	margin: 30px 0;
	text-align: center;
}

#result-dnsreport table th,
#result- table th,
#result-dnslookup table th,
#result-whois table th,
#result-cached table th,
#result-netdiag table th,
#result-dnstiming table th,
#result-traceroute table th
 {
	font-family: 'Exo 2', sans-serif !important;
	font-weight: 600;
}


/* DNS report */
#result-dnsreport #map {
	margin: 60px auto;
	width: 100% !important;
}
#result-dnsreport table td,
#result-spam table:nth-child(2) td {
	padding: 10px;
	border: 1px solid #000;
}

/* Spam Database */
#result-spam table {
	text-align: left;
}

/* IP WHOIS + IP information */
#result-ipwhois table td,
#result-ipinformation table td {
	padding: 10px;
	border: 1px solid #000;
	text-align: left;
}

#result-ipinformation table:first-child td {
	border: none !important;
}

/* Network Diagnostic */
#result-netdiag table td {
	padding: 10px;
	border: 1px solid #000;
}

/* Traceroute */
#result-traceroute #map {
	width: 100% !important;
}

/*MEDIA*/

/* Large Devices, Wide Screens */
@media (max-width:1500px) {
	.logo {
		display: none;
	}
	.main-menu {
		display: none;
	}
	.hp_dropdown {
		display: block;
	}
}

@media (max-width:1200px) {
	.container {
		max-width: 960px;
	}
}

/* Medium Devices, Desktops */
@media (max-width:992px) {
	.container {
		max-width: 720px;
	}
}

/* Small Devices, Tablets */
@media (max-width:768px) {
	.container {
		max-width: 540px;
	}
}

/* Extra Small Devices, Phones */
@media (max-width:576px) {
	.container {
		width: 100%;
	}
	.myip_text {
		font-size: 14px;
	}
	.myip_text span {
		display: none;
	}
}


