: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;
}

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);
}

.code-example {
  /*
  width: 100vw;
  margin-left: calc(-50vw + 21.7rem);
  margin-right: calc(-50vw + 21.7rem);
  font-size: 1rem;
  */
  background: #272822;
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  border-radius: 0.3em;
}