/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: black;
}

/* White text for navbar */
.navbar-dark .nav-link,
.navbar-dark .navbar-brand {
    color: white !important;
}

.navbar-dark .nav-link:hover {
    color: #ccc !important;
}

/* hero background image */
.bgimage {
  height:26vh;
    background: url('../../dna2.jpg');
    background-size:cover;
    position:relative;
}
/* text css above hero image*/
.hero_title {
    font-size:2.5rem;
        color: rgb(225, 222, 222);

}
.hero_desc {
    font-size: 1rem;
}
.hero-text {
    text-align: left;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(150, 145, 145);
}

/* PRS section step headers */
.prs-step-header {
    color: #0d6efd;
    font-weight: 600;
}

/* spacing on all sections */
#notices, #calculator, #portfolio, #contact {
    margin-top: 1rem;
    padding-top: 1rem;
}
#calculator {
    padding-bottom: 73rem;
}
/* about section image css 
.imageAboutPage {
    width: 100%;
}
*/


/* social media icons styling */
.social-icons {
    font-size: 2px;
    cursor: pointer;
}
.fa-facebook:hover,.fa-instagram:hover,.fa-twitter:hover,.fa-linkedin:hover, .fa-twitch:hover {
    color: #008000;
}
.fab {
    color: #000000;
}
/* footer styling */
#footer {
    background-color: #808080;
    text-align: center;
}

/* side panel  */

.sidepanel  {
    width: 0;
    position: fixed;
    z-index: 1;
    height: 250px;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .sidepanel a:hover {
    color: #f1f1f1;
  }
  
  .sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 25px;
  }
  
  .openbtn {
    font-size: 25px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
  }
  
  .openbtn:hover {
    background-color:#444;
  }

  /* nav bar*/
  /* @media (min-width: 768px) {
    .navbar-nav.navbar-center {
      position: absolute;
      left: 50%;
      transform: translatex(-50%);
    }
  } */
  nav {
    background: black;
    color: rgb(25, 20, 20);
    font-size: 0.7em !important;
  }

  nav.navbar {
    min-height: 40px;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
  }

  nav.navbar .nav-link {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  

body {
  position: relative;
  height: auto;
  min-height: 100% !important;
}

/*input*/
* {
  box-sizing: border-box;
}

body {
  font: 16px Arial;  
}

/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
}

input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}

input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}

input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

/*DROPDOWN*/

.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}

.graph-container {
  display: flex;
}
.wrap {
  display: flex;
  background: #ccc;
  justify-content: space-between;
}

/* #topBarCategories {
  flex: 1;
  width: 50px;
  height: 50px;
  background-color: #FF0000;
}

#topBarTraits {
  flex: 1;
  width: 50px;
  height: 50px;
  background-color: #0000FF;
} */

.glow-on-hover {
  width: 170px;
  height: 32px;
  border: none;
  outline: none;
  color: #fff;
  background: #fcfbfb;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #d40f0f;
  left: 0;
  top: 0;
  border-radius: 10px;

}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

.link-unstyled, .link-unstyled:link, .link-unstyled:hover {
  color: inherit;
  text-decoration: inherit;
}
.bg-menu:hover {
  background-color: #0079C1;
  color: #FFFFFF;
}
.clickable {
  cursor: pointer;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  color: #333;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

/* ===== Dual-handle Variant Slider Styles ===== */

/* Price input container */
.variant-filter .price-input {
  width: 100%;
  font-size: 19px;
  color: #555;
}

.variant-filter .price-input .price-field {
  display: flex;
  margin-bottom: 22px;
}

.variant-filter .price-field span {
  margin-right: 10px;
  margin-top: 6px;
  font-size: 17px;
}

.variant-filter .price-field input {
  flex: 1;
  height: 35px;
  font-size: 15px;
  border-radius: 9px;
  text-align: center;
  border: 0px;
  background: #e4e4e4;
}

/* Remove Arrows/Spinners from number inputs */
.variant-filter input::-webkit-outer-spin-button,
.variant-filter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Slider track */
.variant-filter .slider {
  height: 6px;
  position: relative;
  background: #e4e4e4;
  border-radius: 5px;
}

/* Progress bar between handles */
.variant-filter .slider .price-slider {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background: #0d6efd;
}

/* Range input container */
.variant-filter .range-input {
  position: relative;
}

.variant-filter .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  background: none;
  top: -5px;
  pointer-events: none;
  cursor: pointer;
  -webkit-appearance: none;
}

/* Range thumb - WebKit */
.variant-filter .range-input input[type="range"]::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #0d6efd;
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Range thumb - Firefox */
.variant-filter .range-input input[type="range"]::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #0d6efd;
  pointer-events: auto;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
