.bn_search_page {display: none;}

body{margin: 0;padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",sans-serif;
}
.bn_nav{border-bottom: 5px solid lime; padding: 5px 0;

  font-size: small;}
.bn_user_avatar img {
  width: 40px;
  border-radius: 50%;

}

.bn_nav_logo svg .bn_svg_logo_heart {
  fill: #00ff00;
}

.bn_nav_logo:hover svg .bn_svg_logo_heart {
  animation: pulse 10s infinite;
}

.bn_nav_logo svg{
  width:120px;
}

@keyframes pulse {

  0% {
    fill: #00ff00; /* end color */
  }
  25% {
    fill: #00ff00; /* end color */
  }

  50% {
    fill: #FF00FF; /* start color */
  }
  75% {
    fill: #00ff00; /* end color */
  }

  100% {
    fill: #00ff00; /* end color */
  }
}

.bn_nav_inner {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;

  justify-content: space-between;
}



.bn_nav_logo,.bn_nav_links,.bn_nav_user, .bn_search{
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.bn_nav_user{

  margin-left: auto;

}

.bn_nav_user ul {
  position: relative;
  z-index: 4;
  display: flex;
  flex: 1 1 auto;
  margin: 0;
  list-style-type: none;
  li:not(:last-child) {

  }
}

.bn_nav_user ul li {
  position: relative; /* Add this line */

  border: 2px solid transparent;
  border-radius: 5px;
  transition: background .2s;
  padding:1px
}


.bn_nav_user ul li:hover {
  background: #76ee4a;
  border:2px solid rgba(118, 238, 74, .825)
}

.bn_nav_user ul li:hover a {
  color:#f9f8fd
}

.bn_nav_user ul li:hover ul {
  visibility: visible;
  opacity: 1;
  box-shadow:0 3px 5px 2px rgba(4, 4, 5, .225)
}

.bn_nav_user ul li:hover ul li a {
  color: #000;
  font-weight:400
}

.bn_nav_user ul li a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
  padding:10px
}


@media screen and (min-width: 1080px) {
  #bn_nav_mobile {
    display: none;

  }


  .bn_close_menu {

    display: none;
  }
}
@media screen and (max-width: 1079px) {
  .bn_nav_links {
    display: none;
  }

  #bn_nav_mobile {
    align-items: center;
    padding: 0 10px;

    display: flex;
  }



  .bn_nav_inner {

    justify-content: start;

  }


}
.bn_nav_user ul li ul  {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  min-width: 200px;

  display: block;
  margin: 12px -12px;
  padding: 0;
  background: rgba(255, 255, 255, .95);
  border: 2px solid #fff;
  border-radius: 5px;
  transition: opacity .2s, visibility .2s;
  li {
    margin: 0 -2px 0 0px;
    width: calc(100%);
    line-height: 1.7;
    a {
      font-weight: normal;
      color: #000000 !important;
    }
  }
}


.bn_nav_links ul {
  position: relative;
  z-index: 4;
  display: flex;
  flex: 1 1 auto;
  min-width: 200px;
  margin: 0;
  padding: 0 30px;
  list-style-type: none;
  li:not(:last-child) {
    margin-right: 20px;
  }
}

.bn_nav_links ul li {
  border: 2px solid transparent;
  border-radius: 5px;
  transition: background .2s;
  padding:10px
}


.bn_nav_links ul li:hover {
  background: #76ee4a;
  border:2px solid rgba(118, 238, 74, .825)
}

.bn_nav_links ul li:hover a {
  color:#f9f8fd
}

.bn_nav_links ul li:hover ul {
  visibility: visible;
  opacity: 1;
  box-shadow:0 3px 5px 2px rgba(4, 4, 5, .225)
}

.bn_nav_links ul li:hover ul li a {
  color: #000;
  font-weight:400
}

.bn_nav_links ul li a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
  padding:10px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {

  .bn_nav_logo svg{
    width:80px;
  }

  .bn_nav_links {
    font-size:x-small;
    padding:8px;
  }

  .bn_nav_links ul li {
    border: 2px solid transparent;
    border-radius: 5px;
    transition: background .2s;
    padding: 10px 2px
  }
}

.bn_nav_links ul li ul  {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  display: block;
  margin: 12px -12px;
  padding: 0;
  background: rgba(255, 255, 255, .95);
  border: 2px solid #fff;
  border-radius: 5px;
  transition: opacity .2s, visibility .2s;
  li {
    margin: 0 -2px 0 0px;
    width: calc(100%);
    line-height: 1.7;
    a {
      font-weight: normal;
      color: #000000 !important;
    }
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-in {
  0% {
    right:-50px
  }

  50% {
    right:-10px
  }

  100% {
    right:0px
  }
}
}
@media screen and (max-width: 1079px) {
  .bn_nav_links {
    display: none;
  }


}
@media screen and (max-width: 1079px) {

  .bn_close_menu{
    display: flex;
    justify-content: flex-end;

    border-radius: 5px;
  }

  .bn_close_menu .icn svg {
    width:50px; height: 50px;     }

  .bn_nav_links.bnresponsive {
    height: 100vh;
    padding: 10px;
    display: block;
    width: 100%;
    max-width: 400px;
    background: #f9f8fd;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 3px 5px 2px rgba(4, 4, 5, .225);
    animation: slide-in .5s;
  }

  .bnresponsive ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style-type: none;

  }
}

.bn_dropdown hr{

  border-top: 1px dotted gray;

}
/* SEQRCH 8*/








.bn_search_page.showsearchdt input[type="radio"] {
  display: none; /* Hide the default radio button */
}

.bn_under_search {
  display: none;
}

.bn_search_page.showsearchdt input[type="radio"] + label {
  padding: 5px 15px;

  border: 1px solid #ccc; /* Border color */
  background-color: #ccc; /* Background color when selected */
color:#444;
  border-radius: 5px; /* Creates the lozenge shape */
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 5px;
}

.bn_search_page.showsearchdt input[type="radio"]:checked + label {
  background-color: #000; /* Background color when selected */
  color: #fff; /* Text color when selected */
}
.bn_search_page.showsearchdt {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Aligns the form to the top of the page */
  height: 100vh;
  padding-top: 30px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
  position: fixed; /* Make it sit over the content */
  top: 0; /* Align to the top */
  left: 0; /* Align to the left */
  width: 100%; /* Full width */
  z-index: 1000; /* High z-index to make it sit on top of other elements */
  animation: fade-in 0.5s;
  overflow-y:auto;

}
.bn_search_page.showsearchdt form {
  position: relative; /* Add this line */

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent black background */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
  width:100%;
  max-width: 900px;
}

.bn_searchclose_menu {
  position: absolute; /* Add this line */

  top: 5px;
  right: 5px;
  padding: 5px;
  border-radius: 5px;
  background-color: white;
  width:40px;
  height:40px;
}



.bn_under_search{
  width:100%;
  max-width: 900px;

}

.bn_search_page.showsearchdt input[type="text"]{
  width: 100%;
  padding: 10px;
  border: 1px solid grey;
  border-radius: 5px;
}

#bn_search_submit {
  width: 50px;
  cursor: pointer;
  border: 0;
}

#bn_search_submit svg{

  width: 20px;}

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

.bn_search_container_text-button{
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.bn_search_container_text-button div {

}
.bn_search_container_text-button div:first-child {
  flex: 1;
  padding: 10px;
}

.bn_search_container_text-button div:last-child {

/*  padding: 10px;*/
/*  width: 55px;*/
}

#bn_top_results{

  width:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bn_search_result_top {
  padding: 5px;
  font-size: smaller;
  display: flex;
  gap: 10px;
  background: white;
  margin-bottom: 10px;
  text-decoration: none;
  color: black;
  border-radius: 8px;
  width:100%;
}

.bn_search_result_top_100 {
  padding:10px;
  background: white;
  margin-bottom: 10px;
  text-decoration: none;
  color: black;
  border-radius: 8px;
width: 100%;
  display:flex;
  margin-bottom:15px;

}

@media screen and (min-width: 600px) {
  .bn_search_result_top {
    width: calc(50% - 10px); /* Adjust the width to take up a third of the row minus the gap */
  }
}

@media screen and (min-width: 1000px) {
  .bn_search_result_top {
    width: calc(33.33% - 10px); /* Adjust the width to take up a third of the row minus the gap */
  }
}


.bn_search_result_top > div:first-child {
  width: 50px;
  min-width: 50px;

}

.bn_search_result_top > div:first-child img{
  border-radius-top-left: 8px;
  border-radius-bottom-left: 8px;

}


/* ---- */
.bn_notification-badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  background-color: red;
  border-radius: 10px;
  text-align: center;
  position: absolute; /* Change this from relative to absolute */
  top: -10px; /* Adjust as needed */
  right: 0px; /* Adjust as needed */
}
/* FOOTER HERE **/

#prefooter {
  background: url(https://basenotes.com/assets/newbackdrop3.png);
  background-position-y: 0%;
  background-repeat: repeat;
  background-size: auto;
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 120px;
  padding-top: 120px;
}

@media screen and (max-width: 600px) {
    #prefooter {

        background-size: 480%;
    }

}

.site-footer {
  min-height: 200px;
  padding-top:30px
}

#colophon {

}

.site-info {
  display: flex;
  padding:10px
}

.site-info > div {
  width:100%
}

.site-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.site-info ul li {
}

.site-info ul a {
  padding: 10px;
  text-decoration: none;
  color:#000
}

.site-info ul li:hover {
  background: lime;
  border-radius:8px
}



.bn_footer_inner{
  padding:10px;
  border-bottom: 1px solid #ddd;
  align-items: center;
  display: flex;
  max-width: 1400px;
  margin: 0 auto;

  justify-content: space-between;

}

.bn_footer_inner_2{
  padding:10px;
  border-bottom: 1px solid #ddd;
 /* align-items: center;*/
  display: flex;
  max-width: 1400px;
  margin: 0 auto;

  justify-content: space-between;

}

@media screen and (max-width: 600px) {

.bn_footer_inner {

  display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 0 auto;
}
}

.bn_footer_inner div {
  text-align: center;
}

.bn_footer_inner_2 h3
{font-size: 1em;
margin-bottom: 20px;}
.bn_footer_inner_2 div ul {

  text-align: left;
  padding: 0;
  margin: 0;
  padding-bottom: 30px;
}
.bn_footer_inner_2 div ul li {
  list-style-type: none;
  padding:3px
}

.bn_footer_inner_2 div ul li a {
  padding: 5px;
  display: inline-block;
  text-decoration: none;
  color:gray;}

.bn_footer_inner_2 div ul li a img{
height: 1em;vertical-align: middle;padding-bottom: 2px;}




.bn_footer_inner_2 div ul li a:hover {
  padding: 5px 10px;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  color:gray;
  background: #eee;}


@media screen and (max-width: 768px) {


  .bn_footer_inner {
    flex-wrap: wrap
  }
}
.footer1 {
  flex: 0 0 33%;
  max-width:33%;
  padding: 10px;

}

.footer2 {
  border-left: 1px solid #d3d3d3;
  border-right:1px solid #d3d3d3
}

.footer2, .footer3 {
  flex: 0 0 33%;
  max-width:33%;
  padding: 10px;

}

@media screen and (max-width: 668px) {
  .bn_footer_inner_2{
    flex-wrap: wrap;
    justify-content: center;}
  .footer1, .footer2, .footer3 {
    flex: 0 0 100%;
    max-width:100%
  }


}

@media screen and (max-width: 568px) {
  .footer1, .footer2, .footer3 {
    flex: 0 0 100%;
    max-width:100%;
    padding: 10px;
  }
}


#footer {
  background:#222
}

#footer a {
  color:#d3d3d3
}

.social-links, .sl-second-tier {
  display: flex;
  align-items: center;
  justify-content:center
}

.social-links a {
  height: 40px;
  width: 40px;
  padding: 6px;
  margin: 5px;
  border-radius:10px
}

@media screen and (max-width: 600px){

  .social-links {

    flex-wrap:wrap;
  }

}

.sl-second-tier a {
  height: 40px;
  width: 40px;
  padding: 8px;
  margin: 5px;
  border-radius:10px
}

.sl-second-tier a img, .social-links a img {
  filter:invert(100%)
}

.sl-second-tier a:hover img, .social-links a:hover img {
  filter:none
}

#copyright, #copyright a {
  color: #8a8a8a;
  font-size:smaller
}

.center {
  text-align:center
}

.sl-second-tier a:hover, .social-links a:hover {
  background:#fff
}

.twitter {
  background:#000
}

.twitter_old {
  background:#1d9bf0
}

.mastodon {
  background:#6364ff
}

.facebook {
  background:#1877f2
}

.bluesky {
  background:#1185FE
}


.pixelfed {
  background:#000
}

.whatsapp {
  background:#25D355
}

.flipboard {
  background:#F52828
}


.youtubey {
  background:red
}

.instagram {
  background:#c13584
}

.tiktok {
  background:#fe2c55
}

.rss {
  background:#f26522
}

.reddit {
  background:#f26522
}

.linkedin {
  background:#0077b5
}

.fa-twitch {
  background:#6441a5
}

.fa-itch-io {
  background:#ff2449
}

.tumblr {
  background:#35465c
}

.telegram {
  background:#27a7e7
}

.patreon {
  background:#ff424d
}

.pinterest {
  background:#e60023
}

.fa-google {
  background:#4285f4
}

.fa-pixelfed {
  background:#f42c45
}

.fa-peertube {
  background:#f16804
}

.threads {
  background:#000
}

.preprefooter{

  display: flex;
  background: rgba(238, 238, 238, 0.51);
  gap: 50px;
  padding: 20px;
  justify-content: center;
  margin-bottom: -130px;
  padding-bottom: 130px;
  flex-wrap: wrap;
}

.preprefooter>div{
  flex: 1;
  padding: 20px;
  text-align: center;
  max-width: 350px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.patreongubbins{



}
.newslettersignup{



}
.sib-form-message-panel{
  /* display: none; */
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 19px;
  background: #ddd;
  display:none;
}

.newslettersignup #success-message{
  background: palegreen;
}

.newslettersignup #error-message{
  background: pink;
}

.sib-form-message-panel svg{
  /* make it 50% transparent */
    opacity: 0.5;
    width: 30px;
    height: 30px;
display:block;
margin-bottom: 10px;
margin-left: auto;margin-right: auto;}

.sib-form-message-panel--active{display:inline-block}

.input--hidden{display: none;}

.newslettersignup, .membergubbins, .patreongubbins{

  display: flex;
    flex-direction: column;
    align-items: center;
  font-size: 0.8em;line-height: 1.4em;
  text-align: left;
min-width: 330px;

}

.entry__field input{
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border-radius: 5px;
  border: 1px solid #ccc;

}



.newslettersignup div:last-of-type, .membergubbins div:last-of-type, .patreongubbins div:last-of-type{

  width: 100%;
  margin-top: auto;

}


.preprefooter div h3{
  font-size: 1.5em;
  margin-bottom: 20px;
}

.bn_iconlist{margin: 10px 0;}
.bn_iconlist li{margin:5px;}
.bn_iconlist a{font-size:smaller;text-decoration: none; color:var(--bn-text-color);}
.bn_iconlist img{height:1.5em;width:1.5em;vertical-align:middle;margin-bottom: .3em;}


/* HTML: <div class="loader"></div> */

.bn_loading_container{

    display: flex;
    justify-content: center;
    align-items: center;

}
.bn_loader {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: lime #0000;
  animation: l1 1s infinite;
  margin-right:10px;
}
@keyframes l1 {to{transform: rotate(.5turn)}}

.max-height-wad {max-height:calc(100vh - 200px);margin-top:-100px;}



.bn_container_inner_noflex {

  /*background-color: rgba(255, 0, 255, 0.35);*/




  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  gap: 30px;

}

.bn_container_inner {

  /*background-color: rgba(255, 0, 255, 0.35);*/




  display: flex;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  gap: 30px;

}

.bn_main {
  flex-grow: 1;
  padding:30px;
  /*background-color: rgba(255, 0, 255, 0.35);*/




}

.bn_sidebar {
  flex-basis: 350px;
  max-width: 350px;
  min-width: 350px;
  /*background-color: rgba(255, 0, 255, 0.35);*/

  display:flex;
  flex-direction: column;
  /* center items vertically */
  align-items: center;


}

.bn_feed_container {
  display: flex;
  gap: 30px;
  /*background-color: rgba(255, 0, 255, 0.35);*/



  flex-direction: row;

}



.bn_left_feed {
  flex-grow: 1;
  /*background-color: rgba(255, 0, 255, 0.35);*/




}
@media (min-width: 650px) {
  .hideondesktop{display:none;}
  .hideonmobile{display:block;}
  .bn_feed_item_profile{display: block;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100px;
    width: 100px;}

  .bn_feed_item_profile>a>img{
    width: 80px;
    border-radius: 50%;
  }
  .bn_right_feed {
    /*background-color: rgba(255, 0, 255, 0.35);*/




    flex-basis: 650px;
    max-width: 650px;
    min-width: 650px;

  }}

.bn_feed_item{
  min-height: 200px; padding-top: 20px; padding-bottom: 30px; border-bottom: 1px solid lightgrey;

}


.bn_feed_item_profile{


}


.bn_feed_item_inner {display: flex;}

.bn_feed_item_main {padding: 10px;
  flex-grow: 1;
}

.bn-bold-lnk {text-decoration: none;font-weight: bold;color: black;}

.feed_fragrance_image img{
  width: 100px;
  filter: brightness(95%); /* Adjust brightness, 100% is normal, and 0% is completely dark */
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;


}

.feed_fragrance_details{
  padding: 10px;
}
.feed_fragrance_container{
  display: flex;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid lightgrey;
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color:black;
}
.feed_fragrance_container:hover{
  border: 1px solid grey;
}

.feed_comment{margin:20px 0;}


.feed_media img{border-radius: 15px;}

.bn_main_feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 50px;
}

.sotd_menu_button img{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.sotd_menu_button img:hover{
  background: lightgrey;
}

.rank_no{

  font-size: 1em;
  display: flex;
  font-weight: bold;
}

.bn_ajax_results{
  margin-top:10px;
  padding: 10px;
  border: 1px solid whitesmoke;
  border-radius: 10px;
  background: white;
}

.bn_ajax_results div span img{
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.bn_ajax_results button {
}
.bn_options_tools a {margin-top:20px;display: block;padding: 10px;text-decoration: none;color:black;}
.bn_options_tools a:hover {background: #eee;border-radius: 10px;}
.bn_options_tools a img{ width:30px;vertical-align: middle;margin-right: 20px;}





/* media query for < 1200 */

@media (max-width: 1300px) {

  .bn_feed_container {
    display:flex;
    flex-direction: column;
    align-items: center;

  }

  .bn_left_feed{width:100%;}

}


@media (max-width: 1100px) {
  .bn_left_feed {




    width: 100%;


  }
  .bn_right_feed {




    width: 100%;

    /*   flex-basis: 100%;*/
    max-width: 650px;

  }

  .bn_container_inner {
    flex-direction: column;
  }
  .bn_sidebar {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .bn_main {
    padding: 20px;
  }
}

@media (max-width: 649px) {


  .hideondesktop{display:inline-block;}
  .hideonmobile{display:none;}
  .bn_feed_item_profile {}
  .bn_feed_item_profile>a>img{}

  .bn_right_feed {




    width: 100%;


  }}


.bn_flipflop_card{display:flex;flex-direction: column;}

@media (min-width: 0px) {

  .bn_left_feed>div:nth-child(2){display: none;}

}
@media (max-width: 1300px) {

  .bn_left_feed{display:flex;}

  /* second bn_left_feed div - max width 200px, first div - rest of space */
  .bn_left_feed>div:nth-child(1){flex-grow:1;}

  .bn_left_feed>div:nth-child(2){max-width:200px;}


  .bn_flipflop_card {

    display: flex;
    flex-direction: row;
  }
}





.search-container {
  display: flex;
  flex-direction: column;
  width: 300px;
}

#search-input-ajax {
  margin-bottom: 10px;
  padding: 5px;
  font-size: 16px;
}

#search-results {
  height: 150px;
  overflow-y: auto;
}

.radio-group-vertical {
  display: flex;
}

.radio-input {
  display: none;
}

.radio-label {
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 150px; /* Adjust the width as needed */
  font-size:x-small;
}

.radio-label .icon {
  width: 20px; /* Adjust the size as needed */
  height: 20px; /* Adjust the size as needed */
  margin-bottom: 3px;
//  margin-right: 10px;
}

.dirchecked, .radio-input:checked + .radio-label {
  background-color: #e0e0e0;
}


.radio-label:hover {
  background-color: #575454;color:white;
}

.radio-label:hover img{
  filter: invert(100%);    }


#advanced-options > div {
  display: none;
}

#advanced-options > advanced-all {
  display: block;
}

.results-list li {
  display: flex;
  /* align-items: center;*/
  /* justify-content: center; /* Center horizontally */
  height: 60px; /* Adjust height as needed */
}

.results-list li img {
  margin-right: 10px;
  margin-left: 10px;
  vertical-align: middle; /* Ensure image is vertically aligned */
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

.results-list li label {
  display: flex;
  align-items: center;
  /*  justify-content: center; /* Center text horizontally */
  height: 100%; /* Ensure label takes full height of the list item */
  width: 100%;
}

.results-list li label:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

.results-list {
  /*list appears under the input*/
  list-style-type: none;
  max-height: 300px; /* Set the desired height */
  overflow-y: auto; /* Enable vertical scrolling */
    border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
    background: white;
    z-index: 1000;
  min-width: 300px;



}

.results-list input[type="checkbox"] {
  display: none; /* Hide the default radio button */
}


.bn_formsection
{
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid gray;
}


.abc-alphabet-radio-group {
  display: flex;
  flex-wrap: wrap;
}

.abc-radio-input {
  display: none;
}

.abc-radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 30px; /* Adjust the width as needed */
  margin: 5px;
  font-size: small;
}

.abc-radio-input:checked + .abc-radio-label {
  background-color: #e0e0e0;
}


:root {
  --btns-button-radius: var(--radius-md);
  --btns-button-padding-x: var(--space-sm);
  --btns-button-padding-y: var(--space-xxs);
}

.btns {
  /* button group */
}
.btns > *:first-child, .btns *:first-child .btns__btn {
  border-radius: var(--btns-button-radius) 0 0 var(--btns-button-radius);
}
.btns > *:last-child, .btns *:last-child .btns__btn {
  border-radius: 0 var(--btns-button-radius) var(--btns-button-radius) 0;
}

.btns[class*=gap-xxxxs] .btns__btn, .btns[class*=gap-xxxs] .btns__btn, .btns[class*=gap-xxs] .btns__btn, .btns[class*=gap-xs] .btns__btn, .btns[class*=gap-sm] .btns__btn, .btns[class*=gap-md] .btns__btn, .btns[class*=gap-lg] .btns__btn, .btns[class*=gap-xl] .btns__btn, .btns[class*=gap-xxl] .btns__btn, .btns[class*=gap-xxxl] .btns__btn, .btns[class*=gap-xxxxl] .btns__btn {
  border-radius: var(--btns-button-radius) !important;
}

/* single button */
.btns__btn {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: var(--btns-button-padding-y) var(--btns-button-padding-x);
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  transition: 0.2s;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btns__btn:hover:not(.btns__btn--selected) {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}
.btns__btn:focus {
  z-index: 1;
  outline: none;
  box-shadow: 0 0 0 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
}

.btns__btn--selected, .btns--radio input[type=radio]:checked + label,
.btns--radio input[type=checkbox]:checked + label, .btns--checkbox input[type=radio]:checked + label,
.btns--checkbox input[type=checkbox]:checked + label {
  /* selected style */
  background-color: var(--color-contrast-higher);
  color: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.btns__btn--disabled {
  opacity: 0.7;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* --radio, --checkbox */
.btns--radio > *, .btns--checkbox > * {
  position: relative;
}
.btns--radio input[type=radio],
.btns--radio input[type=checkbox], .btns--checkbox input[type=radio],
.btns--checkbox input[type=checkbox] {
  /* hide native buttons */
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}
.btns--radio input[type=radio] + label,
.btns--radio input[type=checkbox] + label, .btns--checkbox input[type=radio] + label,
.btns--checkbox input[type=checkbox] + label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btns--radio input[type=radio]:focus + label,
.btns--radio input[type=checkbox]:focus + label, .btns--checkbox input[type=radio]:focus + label,
.btns--checkbox input[type=checkbox]:focus + label {
  z-index: 1;
  box-shadow: 0 0 0 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
}
.btns--radio input[type=radio]:checked + label,
.btns--radio input[type=checkbox]:checked + label, .btns--checkbox input[type=radio]:checked + label,
.btns--checkbox input[type=checkbox]:checked + label {
  /* checked state */
}

.btns__btn--icon {
  padding: var(--btns-button-padding-y);
}
.btns__btn--icon .icon {
  display: block;
}

.housenamestyle{

  /* make text uppercase;*/
  text-transform: uppercase;
  font-size: 0.7em;

}



header.bn_nav {
  position: sticky;
  top: 0;
  z-index: var(--z-index-overlay, 14); /* Ensure it stays above other content */
  background-color: #fff; /* Optional: Set a background color to avoid transparency issues */
}

.nm_spinner {
  width: 28px;
  height: 28px;
  border: 5px solid #eee;
  border-bottom-color: #00FF00;
  border-radius: 50%;
  display: none;
  box-sizing: border-box;
  animation: bnrotation 1s linear infinite;  /*display: none; /* Initially hidden */
  position: absolute;
  right: 20px;
  top: 15px;
}


@keyframes bnrotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.invert-colors {
  filter: invert(100%);
}
