:root {
    --primary-bg: #f5f5f5;
    --secondary-bg: #fff;
}
body {
    background-color: var(--primary-bg);
}
a {
 color: #3169bb !important;   
}
.badge a {
    color: #fff !important;
}
.hide-overflow {
    overflow: hidden;
}

/* START TYPEWRITER TEXT LOADER */
.loading-type {
  font-size: 24px;
}

.loading-type:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4,end) 900ms infinite;      
  animation: ellipsis steps(4,end) 900ms infinite;
  content: "\2026"; /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}
/* END TYPEWRITER */
/* START LOADER/SPINNER */
.loader-sm {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #fff;
  top: 50%;
  animation: loader 2s infinite ease;
}
.loader {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: relative;
  border: 4px solid #fff;
  top: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #3169bb;
    z-index: 2000;
    text-align: center;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}
/* END LOADER STYLES */

.header {
  position:relative;
  text-align:center;
  background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
  color:white;
}
.logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}

.wave-container {
  /*height:65vh;*/
  /*width:100%;*/
  /*margin: 0;*/
  /*padding: 0;*/
    /*position: absolute;*/
    /*bottom: 142px;*/
    /*left: 0;*/
    /*width: 100%;*/
  position: relative;
}

.wave-container svg {
    fill: white;
    height: 10%;
    stroke: #fff;
    stroke-width: 3px;
    stroke-opacity: 0.4;
    position: absolute;
    bottom: 0%;
    left: 0%;
}


@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.0);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.0);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.0);
		transform: translatey(0px);
	}
}



.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
}           

.dropdown-item.active, .dropdown-item:active {
    background-color: #3169bb;
    color: #fff !important;
}


#introbg.jumbotron-bg {
/*background: url(/img/hero_bg2.jpg) fixed center no-repeat;*/
/*background-size: cover;*/
  position:relative;
  text-align:center;
  background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
  color:white;
  background-size: 400% 400%;
  animation: gradient 45s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

[data-a-record-ip], [data-nameservers] {
    background-color: #dae0e5;   
}

#whois h5 {
    margin-bottom: 17px;
}
#feed {
    font-size: 80%;
}
.scroll-container {
    position: relative;
}

.scroll {
  max-width: 100%; /* Was 34%*/
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px;
}

.vertical-scrollable> .row { 
  position: absolute; 
  top: 420px; 
  bottom: 100px; 
  left: 180px; 
  width: 50%; 
  overflow-y: scroll;  
}

.modal-subtitle {
    margin: 3px 0 0 12px;
    font-style: italic;
}

#output {
    word-break: break-word;
}

td {
    word-break: break-word;
}

.card-header {
    background-color: rgba(0,0,0,0.01) !important;
}

#headersDetail {
    font-size: 0.75rem;
}

#headerResults .badge {
    text-transform: uppercase;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #27c; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}
#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

footer a {
    font-weight: bold;
}

.close-dismiss {
  position: absolute;
  right: 8px;
  top: 27%;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
.close-dismiss:hover {
  opacity: 1;
}
.close-dismiss:before, .close-dismiss:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 25px;
  width: 2px;
  background-color: #fff;
}
.close-dismiss:before {
  transform: rotate(45deg);
}
.close-dismiss:after {
  transform: rotate(-45deg);
}

#domain-search input[type="text"] {
    width: 300px;
    height: 40px;
}
#domain-search input[type="submit"] {
    width: 120px;
    height: 40px;
}
#whois .results {
    font-size:80%;
}
/*#footer {
    margin-top: 6%;
}*/
#footer blockquote {
    margin: 50px auto;
    width: 80%;
    font-style: italic;
    font-size: 90%;
}
#credit {
    position: fixed;
    bottom: 0;
    height: 20px;
    font-size: 60%;
    font-style: italic;
    text-align: right;
    width: 78%;
}
.title, .title_main, .results {
    margin: 30px 0;
    padding: 20px;
}
        
.title_main {
    font-size: 100%;
    border: dashed 2px #999;
}
.title {
    background-color: #f5f5f5;
    /*margin: 30px 0;
    padding: 20px;*/
}
.info {
    /* Future Use */
}
.results {
    background-color: #f5f5f5;
    margin: 30px 0;
    padding: 20px;
}
#nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 0 20px;
    padding: 20px;
    color: #fff;
    background-color: #000;
}
#nav h3 {
    display: inline;
    /*margin-right: 32px;*/
}
#nav a {
    text-decoration: none;
    display: inline-block;
    padding: 8px;
    margin-left: 32px;
    padding-right: 70px;
    color: #fff;
    font-weight: bold;
    font-size: 150%;
    border-right: 4px;
    border-right-color: #fff;
    border-right-style: solid;
    font-weight: bold;
}
#nav a::after {
	border-style: solid;
	border-width: 0.25em 0.25em 0 0;
	content: '';
	display: inline-block;
	height: 0.45em;
	left: 0.85em;
	position: relative;
	top: 0.15em;
	transform: rotate(45deg);
	vertical-align: top;
	width: 0.45em;
}

.chevron.right:before {
	left: 0;
	transform: rotate(45deg);
}
#nav #logo {
    position: absolute;
    top: 22px;
    right: 100px;
}
#sites {
    display: block;
}
#emails {
    display: none;
}
#databases {
    display: none;
}
#ips {
    display: none;
}
#top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 0 20px;
    padding: 20px;
    color: #fff;
    background-color: #27c;
    /*-moz-box-shadow: inset 0 0 10px #000;
    -webkit-box-shadow: inset 0 0 10px #000;
    box-shadow: inset 0 0 10px #000;*/
    /* inset 0 -5px 0px 0 #000 */
    border-bottom: solid 5px #000;
}
#top #wrap {
    width: 82%;
    margin: 0 auto;
}
/*h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}*/
h1 {
    letter-spacing: .10em;
}
@media only screen and (max-width: 560px) {   /*   548    */
  h1, h2, h3, h4, h5, h6 {
    font-size: 140%;
  }
}
/*#myBtn {
  display: none; // Hidden by default
  position: fixed; // Fixed/sticky position
  bottom: 20px; // Place the button at the bottom of the page
  right: 30px; // Place the button 30px from the right
  z-index: 99; // Make sure it does not overlap
  border: none; // Remove borders
  outline: none; // Remove outline
  background-color: #27c; // Set a background color
  color: white; // Text color
  cursor: pointer; // Add a mouse pointer on hover
  padding: 15px; // Some padding 
  border-radius: 10px; // Rounded corners
  font-size: 18px; // Increase font size
}
#myBtn:hover {
  background-color: #555; // Add a dark-grey background on hover
}*/
#fdCopyLabel, #fdCopyIpLabel {
  font-size: 70%;
}
#fdCopyLabel:hover, #fdCopyIpLabel:hover {
  text-decoration: underline;   
  cursor: pointer;
}
#fdCopyIpLabel {
  text-indent: 30px;    
}
.copy::before {
  content: "📋";
}