/* Copyright Manish Pal, eWhois.org */


/* Setting for sticky bottom */
html, body {
	height: 100%;
}
body {
	display: flex; 
	flex-direction: column; 
	min-height: 100vh;
}
/* Setting for sticky bottom */


body {
	margin: 0; background-color: #ffffff; 
	font-family: "Rubik", Arial, Helvetica, "Helvetica Neue", "Segoe UI", Calibri, Candara, sans-serif;
	font-size: 14px; font-style: normal; font-weight: 500; color: #5a5a5a;
	-webkit-font-smoothing: antialiased; /* Safari, Chrome */
	-moz-osx-font-smoothing: grayscale;  /* Firefox on macOS */
}




img {
	font-size: 1pt; font-weight: normal; 
	border: none; outline: none; 
	text-decoration: none; vertical-align: middle; 
}

a { transition: .5s ease; text-decoration: none; }
a i { transition: .5s ease; }


/* Reset default margins and padding for HTML elements with these selectors */
p, h1, h2, h3, h4, h5, h6 { 
	padding: 0px; margin: 0px;
	text-rendering: optimizeLegibility; 
}

/* Common styles for all heading selectors */
h1, h2, h3, h4, h5, h6 { 
	color: #4a4a4a; line-height: 1.1; 
}



/* Define the variable for CSS customer properties via :root */
:root {
	--main-font: "Rubik", Arial, Helvetica, "Helvetica Neue", "Segoe UI", Calibri, Candara, sans-serif;
	--color-purple: #486da5;
	--color-green: #71AC95;
	--color-white: #ffffff;
}


/* Define styles for form inputs, button, textarea, etc */
input, button, select, textarea, option, optgroup {
	font-family: "Rubik", Arial, Helvetica, "Helvetica Neue", "Segoe UI", Calibri, Candara, sans-serif;
	font-weight: 500; 
	-webkit-font-smoothing: antialiased;
}

optgroup { font-weight: 600; }

/* Styles for FontAwesome */
i { font-family: 'Font Awesome 6 Free'; }
.fa-regular { font-weight: 400; }
.fa-solid { font-weight: 900; }



/* Define styles for placeholder */
::-webkit-input-placeholder { font-weight: 400; color: #c5c5c5 !important; font-size: 14px; text-transform: none; }
:-moz-placeholder { font-weight: 400; color: #c5c5c5 !important; font-size: 14px; text-transform: none; }
::-moz-placeholder { font-weight: 400; color: #c5c5c5 !important; font-size: 14px; text-transform: none; }
::-ms-placeholder { font-weight: 400; color: #c5c5c5 !important; font-size: 14px; text-transform: none; }
::-ms-input-placeholder { font-weight: 400; color: #c5c5c5 !important; font-size: 14px; text-transform: none; }
::placeholder { font-weight: 400; color: #c5c5c5 !important; font-size: 14px; text-transform: none; }


/* On-click focus text remove placeholder for form field */
input:focus::-webkit-input-placeholder { color:transparent; opacity: 0; }  /* Chrome <=56, Safari < 10 */
input:focus:-moz-placeholder { color:transparent; opacity: 0; } /* FF 4-18 */
input:focus::-moz-placeholder { color:transparent; opacity: 0; } /* FF 19-51 */
input:focus:-ms-input-placeholder { color:transparent; opacity: 0; } /* IE 10+ */
input:focus::placeholder { color:transparent; opacity: 0; } /* Modern Browsers */


/* On-click focus text remove placeholder for textarea */
textarea:focus::-webkit-input-placeholder { color:transparent; opacity: 0; }  /* Chrome <=56, Safari < 10 */
textarea:focus:-moz-placeholder { color:transparent; opacity: 0; } /* FF 4-18 */
textarea:focus::-moz-placeholder { color:transparent; opacity: 0; } /* FF 19-51 */
textarea:focus:-ms-input-placeholder { color:transparent; opacity: 0; } /* IE 10+ */
textarea:focus::placeholder { color:transparent; opacity: 0; } /* Modern Browsers */

button i { margin-right: 4px !important; }

label { cursor: pointer; }



/* End of inputs, buttons css styles */



/* Start of Spacing */
.spacing-5 { padding-top: 5px; }
.spacing-10 { padding-top: 10px; }
.spacing-15 { padding-top: 15px; }
.spacing-20 { padding-top: 20px; }
.spacing-25 { padding-top: 25px; }
.spacing-30 { padding-top: 30px; }
.spacing-40 { padding-top: 40px; }
.spacing-50 { padding-top: 50px; }
.spacing-60 { padding-top: 60px; }
.spacing-70 { padding-top: 70px; }
.spacing-75 { padding-top: 75px; }
.spacing-80 { padding-top: 80px; }
.spacing-90 { padding-top: 90px; }
.spacing-100 { padding-top: 100px; }
.spacing-200 { padding-top: 200px; }

.spacing-separator { padding: 60px 0px 75px 0px; text-align: center; }
.spacing-hostingimages { padding: 30px 0px 50px 0px; }
/* End of Spacing */



/* Start of 'noscript' */
noscript #body { display:none; }

noscript #noscript_warning { 
	position: fixed; top: 0; left: 0;
	width: 100%; height: 100%; z-index: 9999;
	color: #ffffff; font-weight: normal; font-size: 15px; font-weight: 500;
	line-height: 35px; text-align: center;
	background-color: #454545; padding: 50px 25px;
}

noscript #noscript_warning b { font-weight: 700; font-size: 28px; line-height: 65px; }
/* End of 'noscript' */




/* Start of Text selection colour */
::-moz-selection {
	background-color: #00b0ff; color: #ffffff; text-shadow: none;
}

::selection {
	background-color: #00b0ff; color: #ffffff; text-shadow: none;
}
/* End of Text selection colour */










/* Start of Bootstrap 5.3 CSS declarations or CSS properties */
.form-control { 
	font-size: 15px; 
	font-weight: 500; 
	color: #5a5a5a;
	padding: 4px 20px;
	text-indent: 5px;
	vertical-align: middle;
	border-radius: 3px;
	border: 1px solid #d5d5d5;
	outline: none;

	transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;

	box-shadow: inset 0 3px 4px rgba(0,0,0,.075);

	/* show the default arrow in dropdown
	appearance: auto;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	*/
}

.carousel-control-next-icon, .carousel-control-prev-icon {
	filter: invert(1) grayscale(100);
}
/* End of Bootstrap 5.3 CSS declarations or CSS properties */






/* ####################### */
/* ## Start of Navbar */

/* Navbar background color and height of white area in navbar */
.bg-light { background-color: #ffffff !important; }

.bg-dark { background-color: #353535 !important; }



/* Navbar css style */
.navbar {
	margin: 0;
	padding: 20px 5px 0px 10px;/* setting height of white space in navbar */
	margin-bottom: 15px !important;
}

.navbar-brand {
	padding-top: 0px;
	padding-bottom: 0px;
}

.navbar-brand img {
	height: auto; width: 225px;
	border: none; outline: none;
	-webkit-transition: -webkit-transform 1.4s;
	transition: transform 1.4s;
}



.navbar .nav-link {
    font-size: 14px;
    font-weight: 500;
	color: #858585;
	margin-left: 20px;
	letter-spacing: 0px;
	padding-left: 16px !important;
    padding-right: 20px !important;
	padding-top: 15px;
	padding-bottom: 15px;
}

.navbar .nav-link.active {
    background-color: #f1f2f3;
	border-radius: 4px;
	font-weight: 500;
}






/* Custom hamburger icon */
.navbar-toggler {
	width: 45px;
	height: 45px;
	border: none;
	padding: 0px;
}
.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}
.navbar-toggler-icon-new {
	position: relative;
	width: 30px;
	height: 22px;
	display: inline-block;
	cursor: pointer;
}
.navbar-toggler-icon-new span {
	position: absolute;
	height: 4px;
	width: 100%;
	border-radius: 2px;
	left: 0;
	transition: all 0.3s ease;
}

#icon-white.navbar-toggler-icon-new span {
	background-color: #ffffff;
}
.navbar.scrolled #icon-white.navbar-toggler-icon-new span {
	background-color: #151515;
}

#icon-black.navbar-toggler-icon-new span {
	background-color: #151515;
}


/* position of 3 bars */
.navbar-toggler-icon-new span:nth-child(1) { top: 0; }
.navbar-toggler-icon-new span:nth-child(2) { top: 9px; }
.navbar-toggler-icon-new span:nth-child(3) { top: 18px; }

/* Hamburger animation */
.navbar-toggler.collapsed .navbar-toggler-icon-new span:nth-child(1) { top: 0; transform: rotate(0); }
.navbar-toggler.collapsed .navbar-toggler-icon-new span:nth-child(2) { opacity: 1; }
.navbar-toggler.collapsed .navbar-toggler-icon-new span:nth-child(3) { top: 18px; transform: rotate(0); }

.navbar-toggler:not(.collapsed) .navbar-toggler-icon-new span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.navbar-toggler:not(.collapsed) .navbar-toggler-icon-new span:nth-child(2) { opacity: 0; }
.navbar-toggler:not(.collapsed) .navbar-toggler-icon-new span:nth-child(3) { top: 9px; transform: rotate(-45deg); }





/* add grey line and shadow below navbar */
.navbarshadow {
	width: 100%;
	height: 1px;
	margin-top: 0px;
	display: block;
	z-index: -1;
	border-bottom: 1px solid #e5e5e5;
	box-shadow: 0px 2px 5px #c5c5c5;
	-webkit-box-shadow: 0px 2px 5px #c5c5c5;
	-moz-box-shadow: 0px 2px 5px #c5c5c5;
	-webkit-box-shadow: 0px 2px 5px #c5c5c5;
}



/* ## End of Navbar */
/* ####################### */







/* ####################### */
/* ## Start of Search Form section */
.searchform {
	margin: 0 auto;
	padding: 45px 15px 30px 15px;
	text-align: center;
}


.searchform .homesearchtext h1 {
	font-size: 35px;
	font-weight: 600;
	color: #454545;
	line-height: 40px;
	letter-spacing: 0px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 5px;
}

.searchform .homesearchtext p {
	font-size: 14px;
	font-weight: 400;
	color: #a5a5a5;
	line-height: 25px;
	text-align: center;
	letter-spacing: 0px;
	margin: 0px;
	margin-bottom: 25px;
}


.searchform .foreg {
	font-size: 14px;
	font-weight: 400;
	color: #959595;
	text-align: justify;
	letter-spacing: 0.25px;
	padding: 20px 4px 5px 4px;
	line-height: 16px;
	margin-bottom: 5px
}
.searchform .foreg a {
	color: #3E78CF;
	text-decoration: none;
	transition: .5s ease;
	border-bottom: 1px solid #e5e5e5;
}
.searchform .foreg a:hover {
	color: #3064B1;
	text-decoration: none;
	border-bottom: 1px solid #b5b5b5;
}
.searchform .foreg a:active {
	color: #1A73E8;
	text-decoration: none;
	border-bottom: 1px solid #ffffff;
}





.searchform .disclaimer {
	padding: 20px 4px 0px 4px;
}

.searchform .disclaimer p {
	font-size: 11px;
	font-weight: 400;
	color: #a5a5a5;
	text-align: justify;
	letter-spacing: 0px;
	line-height: 18px;
}
.searchform .disclaimer p a {
	color: #a5a5a5;
	transition: .5s ease;
}
.searchform .disclaimer p a:hover {
	color: #656565;
	text-decoration: none;
}
.searchform .disclaimer p a:active {
	color: #959595;
	text-decoration: underline;
}



/* For icon input field */
.searchform .input-with-icon {
	position: relative;
	display: inline-block;
	width: 100%;
}

.searchform .input-with-icon input {
	padding-left: 55px;
	width: 100%;
}

.searchform .input-icon {
	fill: #e5e5e5;
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 2;
}

.searchform .input-icon.whois {
	width: 35px;
	height: 35px;
}

.searchform .input-icon.dns {
	width: 32px;
	height: 32px;
}



/* For icon input field */





.searchform input {
	font-size: 16px;
	color: #252525;
	font-weight: 400;
	text-transform: lowercase;

	height: 60px;
	width: 100%;
	padding: 5px 25px;
	vertical-align: middle;
	
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-right: none;
	outline: none;
	border-radius: 4px 0px 0px 4px;
	
	box-shadow: inset 0 2px 4px rgba(0,0,0,.075);
	transition: border-color 0.2s linear, box-shadow 0.2s linear;

	position: relative;
	z-index: 1;
}

.searchform input:focus {
	outline: none !important;
	border-color: #74B9EF;
	box-shadow: 0 0 6px #74B9EF;
}


.searchform .whoisbtn {
	font-size: 14px;
	color: #ffffff !important;
	font-weight: 400;

	background-color: #486da5;
	height: 60px;
	line-height: 1;
	
	min-width: 190px; 
	max-width: 100%;
	
	border-radius: 0px 4px 4px 0px;

	border: 1px solid #375A90;
	border-color: #375A90;
	outline: none;

	text-shadow: 0px 0px 4px rgba(0,0,0,.25);
	box-shadow: inset 0px 3px 0 0 #5B7EB2;

	position: relative;
	z-index: 10 !important;
}
	
.searchform .whoisbtn:hover {
	background-color: #3C6096;
	box-shadow: inset 0px 3px 0 0 #5576A6;
}

.searchform .whoisbtn:active {
	background-color: #314E7A !important;
	box-shadow: inset 0px 5px 0 0 #416192;
	border: 1px solid #314E7A !important;
	outline: none;
	position: relative;
	top: 1px;
}





/* replace text after button click */
.btnchangetext { 
	text-indent: -9999px; 
	line-height: 0;

	display: flex;
	align-items: center;     /* vertical center */
	justify-content: center; /* horizontal center */
}

/* hide icon during loading */
.btnchangetext svg {
	display: none;
}

.btnchangetext::after { 
	content: "Loading...";
	text-indent: 0;
	line-height: 1;
}

/* ## End of Search Form */
/* ####################### */







/* ####################### */
/* ## Start of Our Lookup Cards */
.our-lookup-cards {
	padding: 60px 15px 65px 15px;
	background-color: #f2f3f4;
}


.our-lookup-cards svg {
    display: block;
    margin: 0 auto; /* horizontally center */
}


.our-lookup-cards h1 {
	font-family: var(--main-font);
	font-size: 35px;
	font-weight: 600;
	color: #454545;
	line-height: 40px;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
}

.our-lookup-cards h2 {
	font-family: var(--main-font);
	font-size: 32px;
	font-weight: 600;
	color: #454545;
	line-height: 40px;
	margin-top: 0px;
	margin-bottom: 5px;
	text-align: center;
}


.our-lookup-cards p {
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 400;
	color: #a5a5a5;
	line-height: 25px;
	padding: 0px 10px;
	text-align: center;
}





.our-lookup-cards .content {
	margin-top: 25px;
	margin-bottom: 5px;
	text-align: center;
	width: 100%;
	background-color: #ffffff;
	border-radius: 5px;
	padding: 30px 8px 30px 8px;
}


.our-lookup-cards .content h4 {
	font-family: var(--main-font);
	font-size: 22px;
	font-weight: 500;
	color: #454545;
	line-height: 25px;
	margin-top: 1px;
	margin-bottom: 1px;
	text-align: center;
}

.our-lookup-cards .content p {
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 400;
	color: #a5a5a5;
	line-height: 22px;
	padding: 0px 30px 1px 30px;
	text-align: center;
}



.our-lookup-cards .content.hero {
	padding: 30px 20px 30px 20px;
}

.our-lookup-cards .content.hero h4 {
	font-family: var(--main-font);
	font-size: 18px;
	font-weight: 500;
	color: #454545;
	line-height: 25px;
	margin-top: 1px;
	margin-bottom: 1px;
	text-align: center;
	word-break: break-all;
}

/* ## End of Our Lookup Cards */






/* ####################### */
/* ## Start of Accordion section */

.accordion-div {
	padding: 75px 0px 125px 0px;
	background-color: #ffffff;
	font-family: var(--main-font);
}



.accordion-div h2 {
	font-family: var(--main-font);
	font-size: 32px;
	font-weight: 600;
	color: #454545;
	line-height: 40px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 5px;
}


.accordion-div h3 {/* to be deleted in few days */
	font-family: var(--main-font);
	font-size: 30px;
	font-weight: 800;
	color: #5a5a5a;
	line-height: 40px;
	margin-top: 0px;
	margin-bottom: 10px;
	text-align: center;
}

.accordion-div p {
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 400;
	color: #a5a5a5;
	line-height: 25px;
	padding: 0px 10px;
	margin-bottom: 5px;
	text-align: center;
}

.accordion-div .accordion-item {
	margin-top: 0px;
	padding: 25px 35px 15px 35px;
	background-color: var(--color-white);
}

.accordion-div .accordion-item h2 {
	font-family: var(--main-font);
	color: #5a5a5a;
	margin-top: 0px;
	margin-bottom: 10px;
	text-align: justify;
}

.accordion-div .accordion-button {
	font-size: 18px;
	font-weight: 500;
	color: #a5a5a5;
	background-color: var(--color-white);
	padding: 0px 0px;
	line-height: 30px;
}

.accordion-div .accordion-button:not(.collapsed) {
	font-family: var(--main-font);
	font-size: 18px;
	font-weight: 500;
	color: #1a1a1a;
	background-color: var(--color-white);
	padding: 0px 0px;
	line-height: 30px;
	box-shadow: none;
}


.accordion-div .accordion-body {
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 400;
	color: #a5a5a5;
	padding: 0px 20px 11px 0px;
	line-height: 25px;
	text-align: justify;

	/* css to break word */
	overflow-wrap: break-word;
	word-wrap: break-word;
}


.accordion-div .accordion-button:focus {
	z-index: 3;
	border-color: none;
	outline: 0;
	box-shadow: none;
}


.accordion-button::after { 
	-webkit-transition: -webkit-transform 450ms;
	-webkit-transition: transform 450ms;
	transition: transform 450ms;
}


.accordion .accordion-body a {
	color: var(--color-link-blue);
	text-decoration: underline;
	transition: .5s ease;
}
.accordion .accordion-body a:hover {
	text-decoration: underline;
}
.accordion .accordion-body a:active {
	color: #3064B1;
	text-decoration: none;
}

/* ## End of Accordion section */






/* ####################### */
/* ## Start of WHOIS Data Area section */
.whoisdata {
	padding: 5px 15px 50px 15px;
	margin:0 auto;
}


.whoisdata .heading {
	text-align: left;
	padding: 10px 4px 20px 4px;
	word-wrap: break-word;
}

.whoisdata .heading h1 {
	font-size: 14px;
	font-weight: 400;
	color: #454545;
	text-align: left;
}
.whoisdata .heading h1 b {
	font-weight: 600;
}



.whoisdata .whois-greybg {
	padding: 0px 0px;
	width: 100%;
}

/*
.whoisdata .whois-greybg {
	background-color: #f5f5f5;
	border: 1px solid #d5d5d5;
	padding: 15px 15px 25px 15px;
	border-radius:5px;
	width: 100%;
	font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, 'Courier New', monospace, sans-serif, serif;
	font-size: 14px;
	color: #333333;
}
*/

.whoisdata .whois-greybg h5 {
	font-size: 14px;
	color: #353535;
	font-weight: 600;
	padding: 10px 6px;
}



.whoisdata .whois-greybg pre {
	font-size: 14px;
	color: #252525;
    line-height: 1.5;
    display: block;
    white-space: pre;
    white-space: pre-wrap;
	white-space: -moz-pre-wrap;
    white-space: -o-pre-wrap;
	margin-bottom: 0px;
}

.whoisdata hr {
	border-top: 1px solid #a5a5a5;
	border-bottom: 1px solid transparent;
	margin-top: 6px;
	margin-bottom: 20px;
}



/* WHOIS Sidebar */
.whoisdata .sidebar {
	overflow: auto;
	position: sticky;
	position: -webkit-sticky;
	top: 5%;
	margin-bottom: 25px;
}

.whoisdata .sidebar img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	border: 1px solid #DDDDDE;
	padding: 0px;
	margin: 0px;
}
/* WHOIS Sidebar */



/* WHOIS Data Block */
.whoisdata .whoisblock { 
	font-family: monospace, Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, 'Courier New', sans-serif, serif !important;
	font-size: 14px; font-weight: normal;
	color: #252525;
	background-color: #f5f5f5;
	margin-bottom: 25px; 
	padding: 25px; padding-left: 28px;
	border: 1px solid #d5d5d5; 
	border-radius: 4px; 
}

.whoisdata .whoisblock .whoisrow:first-child { border-top: none; padding: 0px 0px 8px 0px; }
.whoisdata .whoisblock .whoisrow:last-child { border-bottom: none; padding: 8px 0px 0px 0px; }

.whoisdata .whoisblock .whoisrow {
	font-weight: bold;
	line-height: 20px; 
	border-bottom: 1px solid #e2e2e2; 
	margin: 0px 0px; 
	padding: 8px 0px;
	display: flex;
}

.whoisdata .whoisblock .whoislabel { font-weight: normal; color: #757575; width: 130px; }
.whoisdata .whoisblock .whoisvalue { font-weight: normal; flex: 1; word-break: break-all; }

/* WHOIS Data Block */





/* loader effect in WHOIS page */
#loadericon {
	z-index: 1;
	width: 25px;
	height: 25px;
	border: 5px solid #e5e5e5;
	border-radius: 50%;
	border-top: 5px solid #656565;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
	display: inline-block;
	margin: 15px 8px;
}

@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


#loadertext {
	padding: 0px;
	margin: 0px;
	margin-left: 50px;
	margin-top: -45px;
	top: 0;
	font-size: 13px;
	font-weight: 400;
	color: #454545;
}

#loaderdatashow {
	display: none;
	text-align: left;
}

/* ## End of WHOIS Data Area section */




/* ####################### */
/* ## Start of DNS Data Area section */
.dnsdata {
	padding: 5px 15px 60px 15px;
	margin:0 auto;
}

.dnsdata .heading {
	text-align: left;
	padding: 10px 4px 20px 4px;
	word-wrap: break-word;
}

.dnsdata .heading h1 {
	font-size: 14px;
	font-weight: 400;
	color: #454545;
	text-align: left;
}
.dnsdata .heading h1 b {
	font-weight: 600;
}




.dnsdata .dns-greybg {
	padding: 0px 0px;
	width: 100%;
	background-color: #f5f5f5;
	border: 1px solid #d5d5d5; 
	border-radius: 4px;
	padding: 25px;
	padding-bottom: 35px;
}


.dnsdata .sidebar {
	overflow: auto;
	position: sticky;
	position: -webkit-sticky;
	top: 5%;
}


.dnsdata .sidebar img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	border: 1px solid #DDDDDE;
	padding: 0px;
	margin: 0px;
}


.dnsdata h3 {
	font-size: 20px; 
	font-weight: 600;
	border-bottom: 1px solid #e4e5e6;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.dnsdata .dnsblock { 
	font-size: 14px; 
	font-weight: 500;
	margin-bottom: 40px;
}

.dnsdata .dnsblock:last-child { margin-bottom: 0px; }

.dnsblock .dnsrow:has(.dnsvalue):first-of-type { padding-top: 5px; }
.dnsdata .dnsblock .dnsrow:last-child { border-bottom: none; }



.dnsdata .dnsblock .dnsrow { 
	font-family: monospace, Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, 'Courier New', sans-serif, serif !important;
	font-weight: 400;
	color: #353535;
	line-height: 20px; 
	border-bottom: 0px solid #e6e7e8;
	margin: 0px 0px; 
	padding: 1px 0px;
	display: flex;
}

.dnsdata .dnsblock .dnsnumber { font-weight: 600; width: 25px; margin: 0px 0px; }
.dnsdata .dnsblock .dnslabel { font-weight: 600; width: 85px; margin: 0px 0px; }
.dnsdata .dnsblock .dnsvalue { font-weight: 400; margin: 0px 0px; flex: 1; word-break: break-all; }


/* ## End of DNS Data Area section */









/* ####################### */
/* ## Start of DNS Lookup Table section */
.dnstable {
	padding: 5px 15px 60px 15px;
	margin: 0 auto;
}




.dnstable .table-outline {
	border: 1px solid #d5d5d5;
	border-radius: 5px;
	padding: 10px;
	margin: 0px auto;
}


.dnstable table {
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
	table-layout: fixed;
}

.dnstable table tr {
	/*background-color: #f8f8f8;
	border: 1px solid #ddd;*/
	padding: 10px;

	font-size: 14px;
	font-weight: 400;
	color: #454545;
	border-bottom: 1px solid #ddd;
}

.dnstable table tr:last-child {
	border-bottom: 1px solid transparent;
}

.dnstable table td {
	padding: 14px 15px;
	text-align: left;

	/*border: 1px solid #ddd;*/
}


.dnstable table th {
	padding: 14px 15px;
	text-align: left;

	font-size: 16px;
	font-weight: 700;
	color: #454545;

	border-bottom: 1px solid #ddd;
}

tbody tr:nth-child(odd) {
	background-color: #f4f5f6;
}

.dnstable table th.hostname { width: 20%; }
.dnstable table th.type { width: 12%; }
.dnstable table th.ttl { width: 12%; }
.dnstable table th.priority { width: 12%; }
.dnstable table th.value { width: 45%; }






@media screen and (max-width: 768px) {

	.dnstable table {
		border: 0;
	}

	.dnstable .table-outline {
		border: 1px solid transparent;
		padding: 1px;
	}

	.dnstable table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	.dnstable table th, .dnstable table td { border: none; }
	
	.dnstable table tr {
		border: 1px solid #ddd;
		border-bottom: 3px solid #ddd;
		border-radius: 4px;
		display: block;
		margin-bottom: 15px;
		padding: 15px;
	}

	.dnstable table tr:last-child {
		border-bottom: 1px solid #ddd;
	}
	
	.dnstable table td {
		border-bottom: 1px solid #ddd;
		display: block;
		font-size: 14px;
		text-align: right;
		padding: 12px 5px;
	}
	
	.dnstable table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
	}
	
	.dnstable table td:last-child {
		border-bottom: 0;
	}

}




.dnstable .heading {
	text-align: left;
	padding: 10px 4px 20px 4px;
	word-wrap: break-word;
}

.dnstable .heading h1 {
	font-size: 14px;
	font-weight: 400;
	color: #454545;
	text-align: left;
}
.dnstable .heading h1 b {
	font-weight: 600;
}


.dnstable .sidebar {
	overflow: auto;
	position: sticky;
	position: -webkit-sticky;
	top: 5%;
}

.dnstable .sidebar img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	border: 1px solid #DDDDDE;
	padding: 0px;
	margin: 0px;
}



/* ## End of DNS Lookup Table section */







/* Terms section */
.terms {
	padding: 30px 15px 200px 15px;
	margin: 0 auto;
}

.terms a {
	color: #377ce4;
	text-decoration: underline;
	transition: .5s ease;
	border-bottom: 0px solid #e5e5e5;
}
.terms a:hover {
	text-decoration: none;
	border-bottom: 0px solid #c5c5c5;
}
.terms a:active {
	color: #3064B1;
	text-decoration: none;
	border-bottom: 0px solid #ffffff;
}




.terms h1 {
	font-size: 35px;
	font-weight: 600;
	color: #454545;
	padding: 0px 0px 10px 0px;
	border-bottom: 1px solid #e5e5e5;
	margin: 20px 0px 20px 0px;
	line-height: 40px;
}


.terms h4 {
	font-size: 22px;
	font-weight: 500;
	color: #454545;
	line-height: 35px;
	margin-top: 60px;
	margin-bottom: 5px;
}

.terms p {
	font-size: 14px;
	font-weight: 400;
	color: #a5a5a5;
	text-align: justify;
	line-height: 25px;
	letter-spacing: 0.5px;
	margin-bottom: 5px;
}


.terms ul {
	list-style: square;
	margin: 5px 0px 15px 0px;
	padding: 0px 0px 0px 18px;
}
.terms ul li {
	font-size: 14px;
	font-weight: 400;
	color: #a5a5a5;
	padding: 0px;
	text-align: justify;
	line-height: 25px;
	letter-spacing: 0.5px;
}

.terms ol {
	list-style: decimal;
	margin: 0px 0px;
	padding-left: 20px;
}


.terms hr {
	border-top: 1px solid #959595;
	margin-top: 60px;
	margin-bottom: 25px;
}


.terms .contactimg {
	height: 17px;
	width: auto;
	margin: 0px;
}

/* ## End of Terms section */






/* ####################### */
/* ## Start of Few Other Domains section */

.few-other-domains {
	padding: 50px 15px 48px 15px;
	border: 1px solid #f0f0f0;
	background: #f2f2f2;
}



.few-other-domains p {
	font-size: 14px;
	color: #353535;
	font-weight: 400;
	line-height: 45px;
	text-decoration:none;
}
.few-other-domains p b {
	font-weight: 500;
}


.few-other-domains p a {
	color: #377ce4;
	text-decoration:none;
	font-weight: 400;
	transition: .5s ease;
	border-bottom: 1px solid #f2f2f2;
}
.few-other-domains p a:hover {
	border-bottom: 1px solid #c5c5c5;
}
.few-other-domains p a:active {
	color: #2962B6;
	border-bottom: 1px solid #e5e5e5;
}

/* ## End of Few Other Domains section */







/* Back to Top buttton */
#back-to-top { 
	color:#ffffff; display: none; text-align: center; z-index: 1000; 
	position: fixed; bottom: 25px; right: 30px; 
	height: 42px; width: 42px; 
	padding: 10px;
	border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; -o-border-radius: 4px; 
	background-color: #323232; background-repeat: no-repeat; background-position: center;
	transition: background-color 0.1s linear; -moz-transition: background-color 0.1s linear; -webkit-transition: background-color 0.1s linear; -o-transition: background-color 0.1s linear; 
}
	
#back-to-top i { padding-top: 6px; font-size:26px !important; }
	
#back-to-top:hover { background: #454545; }







/* ####################### */
/* ## Start of Footer section */
.footer {
	padding: 40px 0px 60px 0px;
	border-top: 1px solid #181818;
	background: #181818;
	margin: 0 auto;
	width: 100%;
	font-size: 14px;
	font-weight: 400;
}



.footer .logotext {
	color: #858585;
	text-align: left;
	font-size: 14px;
	font-weight: 400;
}
.footer .logotext a {
	color: #858585;
	font-weight: 500;
}
.footer .logotext a:hover {
	color: #959595;
	text-decoration: none;
}


.footer .footerlink {
	font-size: 14px;
	font-weight: 400;
	text-align: right;
	float: right;
}


.footer .list-group {
	text-align: right;
}

.footer .list-group-item {
	text-align: right;
	padding: 0px 0px 0px 35px;
	border: none;
	background-color: transparent;
}

.footer .list-group-item a {
	color: #858585;
	text-align: right;
}
.footer .list-group-item a:hover {
	color: #e5e5e5;
	text-align: right;
	text-decoration: none;
	text-shadow: 1px 0px 1px rgba(0,0,0,.25);
}

/* ## End of Footere section */
/* ####################### */







/* ################### */
/* ## Start of BreakPoint 1 - 992px */
@media screen and (max-width: 992px), only screen and (max-device-width: 992px) {

	.searchform input {
		border: 1px solid #cccccc;
		border-radius: 4px;
	}

	.searchform .whoisbtn {
		border-radius: 4px;
	}

	.footer .logotext { width: 100%; text-align: center; padding-bottom: 30px; }

	.footer .footerlink { width: 100%; text-align: center; padding-bottom: 40px; }
	
	.footer .footerlink .list-group { margin: 0 auto; }
	.footer .footerlink .list-group-item { text-align: center; padding: 10px 10px; }
	.footer .footerlink .list-group-item a { text-align: center; }


}
/* ## End of BreakPoint 1 - 992px */
/* ################### */





/* ################### */
/* ## Start of BreakPoint 2 - 768px */
@media screen and (max-width: 768px), only screen and (max-device-width: 768px) {


	/* Mobile only: add space between logo row and nav links */
	.navbar-nav {
		margin-top: 30px;
	}

	.navbar .nav-link {
		margin-left: 0px;
	}
	



}
/* ## End of BreakPoint 2 - 768px */
/* ################### */






/* ################### */
/* ## Start of BreakPoint 3 - 576px */
@media screen and (max-width: 576px), only screen and (max-device-width: 576px) {

	.whoisdata .diblock .dilabel { width: 95%; }



	.whoisdata .whoisblock .whoisrow {
		flex-direction: column;
		align-items: flex-start;
	}
	.whoisdata .whoisblock .whoislabel { width: 95%; }


	.dnsdata .dnsblock .dnsrow {
		flex-direction: column;
		align-items: flex-start;
	}





}
/* ## End of BreakPoint 3 - 576px */
/* ################### */






/* ################### */
/* ## Start of BreakPoint 4 - below 400px */
@media screen and (max-width: 400px), only screen and (max-device-width: 400px) {




}
/* ## End of BreakPoint 4 - below 400px */
/* ################### */