
  header,
  nav,
  main,
  footer,
  section,
  aside {
	display: block;
	position: relative;
  }

  html {
	scroll-behavior: smooth;
  }

  html,
  body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
  }

  body {
	background: #FFF;
	font-family: 'open sans', sans-serif;
	font-weight: normal;
	color: #3f3f3f;
	font-size: 15px;
	line-height: 1.55em;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
  }

  .circle {
	width: 225px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top;
	aspect-ratio: 1 / 1;
	max-width: 100%;
	margin: 0 auto;
	display: block;
  }

  #top-header {
	background-color: #d2e5e9;
	padding: 5px;
  }
  #top-header p {
	font-size: 13px;
	font-weight: bold;
	margin: 0;
  }

  header {
	background-color: #fff;
	position: relative;
  }

  a#bhi-logo {
	display: inline-block;
	max-width: 161px;
	margin-bottom: -45px;
	z-index: 999;
	position: relative;
	padding: 7px;
  }


  #search-drop {
	padding:10px;
	display:none;
  }
  form#search-form input[type="text"] {
	background-color: #fff;
  }
  form#search-form input[type="submit"] {
	display:block;
	background-color: #1f7e93;
	color:#fff;
	font-size:13px;
	text-transform:uppercase;
	text-align:center;
	width:98%;
	height:38px;
	margin:auto;
	outline:0;
	border:0;
	border-bottom-right-radius:20px;
	border-top-right-radius:20px;
	cursor:pointer;
  }
  form#search-form input[type="submit"]:hover {
	background-color: #166070;
  }




  #searchwrap {
	display: inline-block;
	color: #1f7e93;
	font-size: 21px;
	text-decoration:none;
	margin: 0px 15px;
	cursor:pointer;
  }
  #searchwrap:hover {
	opacity:1;
  }

  #mobile-nav-btn {
	color: #1f7e93;
	font-size: 23px;
	cursor: pointer;
	position: relative;
	z-index: 9999;
  }


  nav ul {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
  }

  nav ul li {
	display: inline-block;
	padding: 0 6px;
	position: relative;
  }

  nav ul li a,
  nav ul li a:visited {
	display: block;
	color: #3f3f3f;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	padding: 10px;
	outline: 0;
	border: 0;
	transition: all 0.5s;
  }

  nav ul li a:hover,
  nav ul li:hover > a {
	color: #223368;
	text-decoration: none;
	outline: 0;
	border: 0;
  }

  nav ul li ul {	  
	height: 0;
	overflow: hidden;
	transition: all 1s;
	background: rgb(255,255,255);
	position:absolute;
	top:100%;
	left:0;
	padding-top:15px;
	z-index:999;
  }
  nav ul li:hover > ul {
	height: 385px;
  }
  nav ul li ul li {
	display:block;
	line-height:1;
	text-align:left;
	width:200px;
	margin:0;
	padding:0;
	border-bottom:solid 1px rgba(0,0,0,.1);
	border-right:none;
	position:relative;
  }
  nav ul li ul li a,
  nav ul li ul li a:visited {
	display:block;
	color: #061c43;
	font-size:13px;
	line-height:16px;
	text-align:left;
	text-decoration:none;
	padding:8px 10px;
	outline:0;
	border:0;
  }
  nav ul li ul li a:hover {
	display:block;
	background-color: #1f7e93;
	color: #fff;
	text-decoration:none;
	outline:0;
	border:0;
  }


  @keyframes slideDown {
	from {

	}
	to {

	}
  }



  ul.social {
	padding: 0;
	list-style: none;
  }

  ul.social li {
	display: inline-block;
  }

  ul.social li a,
  ul.social li a:visited {
	display: inline-block;
	background: #1f7e93;
	color: #fff;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	width: 32px;
	height: 32px;
	padding: 7px 0 0;
	border: 0;
	border-radius: 0;
	vertical-align: middle;
	transition: all 0.5s;
  }
  ul.social li a:hover {
	background-color: #166070;
	color: #fff;
	text-decoration: none;
	border: 0;
  }





  /* MAIN */

  a.link,
  a.link:visited {
	color: #007bff;
	text-decoration: none;
  }
  a.link:hover {
	color: #223368;
	text-decoration: underline;
  }

  a.link-body,
  a.link-body:visited {
	color: #3f3f3f;
	text-decoration: none;
  }
  a.link-body:hover {
	color: #3f3f3f;
	text-decoration: underline;
  }

  a.link-black,
  a.link-black:visited {
	color: #070606;
	text-decoration: none;
  }
  a.link-black:hover {
	color: #070606;
	text-decoration: underline;
  }

  a.link-white,
  a.link-white:visited {
	color: #fff;
	text-decoration: none;
  }
  a.link-white:hover {
	color: #fff;
	text-decoration: underline;
  }

  .white {
	color: #fff;
  }
  .bg-white {
	background-color: #fff;
  }

  .black {
	color: #231f20;
  }
  .bg-black {
	background-color: #231f20;
	color: #fff;
  }

  .gray {
	color: #f7f7f7;
  }
  .bg-gray {
	background-color: #f7f7f7;
  }

  .blue {
	color: #0031bb; 
  }
  .bg-blue {
	color: #fff;
	background-color: #0031bb;
  }

  .md-gray {
	color: #eee;
  }
  .bg-md-gray {
	background-color: #eee;
  }

  .lt-blue {
	color: #d2e5e9;
  }
  .bg-lt-blue {
	background-color: #d2e5e9;
  }

  .teal {
	color: #1e7e93;
  }
  .bg-teal {
	background-color: #1e7e93;
	color: #fff;
  }

  .red {
	color: #b3240a;
  }
  .bg-red {
	background-color: #b3240a;
	color: #fff;
  }


  .lt-green {
	color: #d2e9e4;
  }
  .bg-lt-green {
	background-color: #d2e9e4;
  }

  .green {
	color: #108040;
  }
  .bg-green {
	background-color: #108040;
	color: #fff;
  }



  .flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
  }

  .img-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }


  h1,
  h2,
  h3,
  h4,
  h5 {
	font-family: 'open sans', serif;
	line-height: 1em;
	transition: all 0.5s;
  }

  h1 {
	font-size: 46px;
	font-weight: 500;
	color: #fff;
  }
  @media screen and (max-width: 992px) {
	h1 {
	  font-size: 44px;
	}
  }
  @media screen and (max-width: 767px) {
	h1 {
	  font-size: 40px;
	}
  }
  @media screen and (max-width: 575px) {
	h1 {
	  font-size: 38px;
	}
  }



  h2 {
	display: block;
	color: #2f2f2f;
	font-size: 36px;
	font-weight: 500;
	margin: 5px 0px 20px;
  }
  h2 small {
	display: block;
	color: #2f2f2f;
	font-weight: 300;
  }
  @media screen and (max-width: 992px) {
	h2 {
	  font-size: 30px;
	}
  }
  @media screen and (max-width: 767px) {
	h2 {
	  font-size: 28px;
	}
  }


  h3 {
	font-size: 26px;
	font-weight: 600;
	line-height: 1em;
	margin: 5px 0 15px;
  }
  @media screen and (max-width: 767px) {
	h3 {
	  font-size: 23px;
	}
  }

  h4 {
	font-size: 20px;
  }

  h5 {
	font-size: 18px;
  }





  /*  BANNER */

  #banner,
  .banner {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #333;
	text-align: center;
	padding: 14rem 15px;
	transition: all 0.8s;
	position: relative;
  }
  .overlay::before {
	content: '';
	display: block;
	background: linear-gradient(to bottom,  rgba(25,37,76,0.04) 0%,rgba(1,2,4,0.13) 60%,rgba(0,0,0,0.13) 63%,rgba(0,0,0,0.13) 100%);
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 9;
  }
  .overlay .container,
  .overlay .container-fluid {
	position: relative;
	z-index: 99;
  }

  #banner h1,
  #home-banner-slider h1 {
	display: inline-block;
	color: #fff;
	font-size: 75px;
	font-weight: 500;
	text-shadow: 0 0 10px rgba(0,0,0,1);
	margin: 0;
	transition: all 0.5s;
  }
  #banner p,
  #home-banner-slider p {
	color: #fff;
	font-size: 21px;
	font-weight: 500;
	line-height: 1em;
	letter-spacing: 0.75px;
	text-shadow: 0 0 10px rgba(0,0,0,1);
	margin: 10px 0;
  }
  @media screen and (max-width: 1600px) {
	#banner,
	.banner {
	  padding: 14rem 15px;
	}
  }
  @media screen and (max-width: 1500px) {
	#banner,
	.banner {
	  padding: 13rem 15px;
	}
  }
  @media screen and (max-width: 1400px) {
	#banner,
	.banner {
	  padding: 12rem 15px;
	}
	#banner h1,
	#home-banner-slider h1 {
	  font-size: 48px;
	}
  }
  @media screen and (max-width: 1200px) {
	#banner,
	.banner {
	  padding: 11rem 15px;
	}
	#banner h1,
	#home-banner-slider h1 {
	  font-size: 46px;
	}
  }
  @media screen and (max-width: 992px) {
	#banner,
	.banner {
	  padding: 8rem 15px;
	}
	#banner h1,
	#home-banner-slider h1 {
	  font-size: 42px;
	}
  }
  @media screen and (max-width: 767px) {
	#banner,
	.banner {
	  padding: 7rem 15px;
	}
	#banner h1,
	#home-banner-slider h1 {
	  font-size: 38px;
	}
  }
  @media screen and (max-width: 575px) {
	#banner,
	.banner {
	  padding: 7rem 15px;
	}
	#banner h1,
	#home-banner-slider h1 {
	  font-size: 32px;
	}
  }

  /* default banner on most pages */
  .banner-home {
	background-image: url('/Images/bhinews/site/images/banner-home.jpg');
  }

  /* actual home banners */
  .banner-home-1 {
	background-image: url('/Images/bhinews/site/images/banner-home.jpg');
  }
  .banner-home-2 {
	background-image: url('/Images/bhinews/site/images/home-banner-2.jpg');
  }
  .banner-home-3 {
	background-image: url('/Images/bhinews/site/images/home-banner-3.jpg');
  }
  .banner-home-4 {
	background-image: url('/Images/bhinews/site/images/home-banner-4.jpg');
  }




  .banner-about {
	background-image: url('/Images/bhinews/site/images/bh_about_us_banner.jpg');
  }
  .banner-history {
	background-image: url('/Images/bhinews/site/events/ppl_beach.jpg');
  }
  
  .banner-members {
	background-image: url('/Images/bhinews/site/images/banner-members.jpg');
  }
  .banner-news {
	background-image: url('/Images/bhinews/site/images/banner-news.jpg');
  }
  .banner-events {
	background-image: url('/Images/bhinews/site/images/banner-events.jpg');
  }
  .banner-life,
  .banner-prop-owners {
	/* this image isn't there anymore */
	/* replacing withe home banner for now */
	/*background-image: url('/Images/bhinews/site/images/banner-life.jpg');*/
	background-image: url('/Images/bhinews/site/images/banner-home.jpg');
  }
  .banner-payment {
	background-image: url('/Images/bhinews/site/images/banner-payment.jpg');
  }
  .banner-welcome {
	background-image: url('/Images/bhinews/site/images/banner-welcome.jpg');
	background-position: bottom !important;
  }
  .banner-forest {
	background-image: url('/Images/bhinews/site/images/banner-forest.jpg');
  }


  #assorted article {
	padding: 4rem;
  }


  #news a, 
  #news a:visited {
	display: block;
	margin: 5px auto;
	padding: 1.5rem 2rem;
	text-decoration: none;
	outline: 0;
	border: 0;
	border-radius: 10px;
	box-shadow: 0 0 5px #bbb;
	transition: all 0.5s;
	position: relative;
	z-index: 9;
  }
  #news a:hover {
	text-decoration: none;
	outline: 0;
	border: 0;
	padding: 1.5rem 2rem;
	border-radius: 10px;
	box-shadow: 0 0 5px #bbb;
	transform: scale(1.05);
	z-index: 99;
  }
  #news a h4 {
	line-height: 1.55em;
	margin: 0;
  }

  #filter-nav {
	background-color: #eee;
	border-bottom: solid 1px #ddd;
	margin: 0px auto 25px;
	padding: 15px;
  }
  #filter-nav ul {
	display: block;
	width: 100%;
	margin: 0px;
	padding: 0px;
  }
  #filter-nav ul li {
	display: inline-block;
	color: #000;
	font-size: 17px;
	font-weight: 600;
	padding-right: 12px;
	cursor: pointer;
  }
  #filter-nav ul li:hover,
  #filter-nav ul li.active {
	color: #1f7e93;
  }


  #compass-bulletin article a, 
  #compass-bulletin article  a:visited {
	display: block;
	margin: 5px auto;
	padding: 1.5rem 2rem;
	text-decoration: none;
	outline: 0;
	border: 0;
	border-radius: 10px;
	box-shadow: 0 0 5px #bbb;
	transition: all 0.5s;
	position: relative;
	z-index: 9;
  }
  #compass-bulletin article a:hover {
	text-decoration: none;
	outline: 0;
	border: 0;
	padding: 1.5rem 2rem;
	border-radius: 10px;
	box-shadow: 0 0 5px #bbb;
	transform: scale(1.05);
	z-index: 99;
  }
  #compass-bulletin article a h4 {
	line-height: 1.55em;
	margin: 0;
  }

  #events article:first-child {
	border-top:solid 1px rgba(0,0,0,.1);
  }
  #events article {
	padding:13px 15px 10px;
	border-bottom:solid 1px rgba(0,0,0,.1);
  }
  p.toggle-question {
	color: #000;
	font-size:17px;
	line-height:19px;
	font-weight:bold;
	padding:0px 55px 0px 10px;
	position:relative;
	cursor:pointer;
  }
  p.toggle-question .fa {
	background-color: #bbd8de;
	color: #fff;
	font-weight: 400;
	text-align: center;
	position: absolute;
	top: -5px;
	right: 10px;
	padding: 8px 0;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	-moz-transition: all .75s linear;
	-webkit-transition: all .75s linear;
	transition: all .75s linear;
  }
  p.toggle-question > .fa.down {
	background-color: #1f7e93;
	-ms-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
  }
  .toggle-answer {
	padding:5px 50px 5px 10px;
  }



  #accordion .card {
	background-color: transparent;
	border-bottom: solid 1px #ddd;
	border-top: 0;
	border-left: 0;
	border-right: 0;
  }
  #accordion .card-header {
	background-color: transparent;
	border-bottom:none;
	padding: .75rem 60px .75rem 15px;
  }
  #accordion .card-header h3 {
	color: #223368;
	font-weight: 600;
	margin: 0;
	padding: 10px;
  }
  #accordion .card-block {
	padding:0 1.25rem 10px;
  }
  #accordion .accordion-togg-btn {
	color: #fff;
	font-size:30px;
	font-weight:bold;
	text-align:center;
	line-height:38px;
	width:38px;
	height:38px;
	border-radius:20px;
	margin:0;
	position:absolute;
	top: 11px;
	right: 6px;
	z-index:9999;
	cursor:pointer;
	transition: opacity 1s;
  }
  #accordion p.accordion-togg-btn a {
	display:block;
	background-color:#1f7e93;
	color:#fff;
	text-decoration:none;
	outline:none;
	border:none;
	width:40px;
	height:40px;
	border-radius:20px;
	transition: background-color 1s;
  }
  #accordion p.accordion-togg-btn a:before {
	content: "+";
	position:absolute;
	top:0px;
	left:12px;
  }
  #accordion p.accordion-togg-btn a[aria-expanded="true"]:before {
	content: "-";
	position:absolute;
	top:-2px;
	left:15px;
  }
  #accordion p.accordion-togg-btn a:hover,
  #accordion p.accordion-togg-btn a[aria-expanded="true"] {
	display:block;
	background-color:#1f7e93;
	color:#fff;
	text-decoration:none;
	outline:0;
	border:0;
  }




  .slick-slide {
	text-align:center;
	height: auto !important;
  }
  .slick-slide:before {
	content: '';
	display:inline-block;
	height:100%;
	vertical-align:middle;
  }
  .slick-community-life article {
	width: 100%;
	height: 450px;
	border: solid 3px #fff;
  }
  .slick-prev, 
  .slick-next {
	display: none;
	color: transparent;
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	cursor: pointer;
	border: none;
	outline: none;
	background: transparent;
  }
  .slick-prev {
	left:0px;
  }
  .slick-prev:before {
	content:'';
	background: url('/Images/bhinews/site/images/universal/arrow-left.png') no-repeat center center / 100%;
  }
  .slick-next {
	right:0px;
  }
  .slick-next:before {
	content:'';
	background: url('/Images/bhinews/site/images/universal/arrow-right.png') no-repeat center center / 100%;
  }
  .slick-prev:before, 
  .slick-next:before {
	display:block;
	width:40px;
	height:40px;
	outline:none;
	border:none;
	position:relative;
	z-index:999;
  }
  .slick-prev:focus,
  .slick-next:focus {
	text-outline:none;
	outline:none;
	border:none;
  }
  @media screen and (max-width: 992px) {
	.slick-prev:before, 
	.slick-next:before {
	  width:30px;
	  height:30px;
	}
  }


  /*  BUTTON */

  .bttn,
  .bttn:visited {
	display: inline-block;
	background-color: #1f7e93;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.25px;
	outline: 0;
	border: 0;
	border-radius: 20px;
	padding: 8px 15px;
	cursor: pointer;
	transition: all 0.5s;
  }
  .bttn:hover {
	background-color: #166070;
	color: #fff;
	text-decoration: none;
	outline: 0;
	border: 0;
  }

  .bttn-bg-teal,
  .bttn-bg-teal:visited {
	background-color: #1f7e93;
	color: #fff;
  }
  .bttn-bg-teal:hover {
	background-color: #166070;
  }

  .bttn-bg-white,
  .bttn-bg-white:visited {
	background-color: #fff;
	color: #166070;
  }
  .bttn-bg-white:hover {
	background-color: #166070;
	color: #fff;
  }



  /* FORM */

  #c-form {
	position: relative;
  }

  #c-form label {
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 5px 0 3px 2px;
  }

  #c-form .form-control {
	background-color: #fff;
	color: #333;
	font-size: 15px;
	height: auto;
	padding: 13px 15px;
	border: 0;
	outline: 0;
	border-radius: 15px;
	border: solid 1px #ddd;
  }

  #c-form .form-group {
	margin-bottom: 10px;
	position: relative;
  }

  #c-form textarea.form-control {
	height: 100px;
	position: relative;
  }

  #c-form input[type="submit"] {
	display: inline-block;
	background-color: #223368;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	outline: 0;
	border: 0;
	border-radius: 0px;
	padding: 8px 35px;
	cursor: pointer;
	transition: all 0.5s;
  }

  #c-form input[type="submit"]:hover {
	background-color: #223368;
	color: #fff;
	text-decoration: none;
	outline: 0;
	border: 0;
  }

  #c-form input::-webkit-input-placeholder { /* Edge */
	font-size: 13px;
	text-transform: uppercase;
  }
  #c-form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	font-size: 13px;
	text-transform: uppercase;
  }
  #c-form input::placeholder {
	font-size: 13px;
	text-transform: uppercase;
  }


  /*  FOOTER */

  footer {
	background-color: #d2e5e9;
	color: #2f2f2f;
	font-size: 13px;
	line-height: 1.55em;
	clear: both;
  }
  img#f-logo {
	display: inline-block;
	width: 100%;
	max-width: 160px;
  }
  footer h6 {
	color: #2f2f2f;
	font-size: 15px;
	font-weight: bold;
	margin: 5px 0 10px;
  }
  footer ul {
	margin: 5px 0;
	padding: 0;
	list-style: none;
  }
  footer ul li {
	display: block;
	margin-bottom: 1px;
  }
  footer li a,
  footer li a:visited {
	display: block;
	color: #2f2f2f;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	outline: 0;
	border: 0;
	transition: all 0.5s;
  }
  footer ul li a:hover,
  footer ul li a.active {
	color: #1f7e93;
	text-decoration: none;
	outline: 0;
	border: 0;
  }

  /* ORIGINAL FOOTER SUBSCRIBE */
  #subscribe-form button {
	margin-top: 1rem;
  }

  @media(min-width: 991px) {
	#subscribe-form {
	  position: relative;
	}

	#subscribe-form input {
	  width: 80%;
	}

	#subscribe-form button {
	  margin-top: 0;
	  position: absolute;
	  top: 0;
	  right: 0;
	  padding: 9px 2rem;
	}
  }

  /* NEW FOOTER SUBSCRIBE */
  #subscribe-link {
	position: relative;
  }

  #subscribe-link .bttn.bttn-white-white {
	background-color: white;
	color: white;
	width: 100%;
  }

  #subscribe-link .bttn-teal {
	position: absolute;
	top: 0;
	right: 0;
  }


  /*  DISCLAIMER */

  #disclaimer {
	background-color: #1f7e93;
	padding: 10px;
  }
  #disclaimer p {
	color: #fff;
	font-size: 11px;
	line-height: 15px;
	margin: 0;
  }
  #disclaimer a,
  #disclaimer a:visited {
	color: #fff;
	text-decoration: none;
	outline: 0;
	border: 0;
  }
  #disclaimer a:hover {
	color: #fff;
	text-decoration: underline;
	outline: 0;
	border: 0;
  }



  /*  SIDR */

  .sidr {
	background: #1f7e93;
	display: none;
	position: absolute;
	position: fixed;
	top: 0;
	height: 100%;
	z-index: 999999;
	width: 260px;
	overflow-x: none;
	overflow-y: auto;
	font-weight: 300;
	color: #FFF;
	border-right: solid 1px #d2e5e9;
  }

  .sidr .sidr-inner {
	padding: 0 0 15px
  }

  .sidr .sidr-inner>p {
	margin-left: 15px;
	margin-right: 15px
  }

  .sidr.right {
	left: auto;
	right: -260px
  }

  .sidr.left {
	left: -260px;
	right: auto
  }

  .sidr ul {
	display: block;
	margin: 50px 0 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sidr ul li {
	display: block;
	margin: 0;
	outline: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
  }

  .sidr ul li a {
	display: block;
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	padding: 8px 30px;
  }

  .sidr ul ul {
	margin: 0;
	padding: 0;
	list-style: none;
  }

  .sidr ul li ul li {
	line-height: 30px;
  }

  .sidr ul li ul li a {
	background: rgba(0, 0, 0, .15);
	font-size: 13px;
	font-weight: 500;
	padding: 3px 0 3px 40px;
  }

  .sidr ul li a:hover,
  .sidr ul li a.active {
	background-color: #166070;
	color: #fff;
	text-decoration: none;
	outline: 0;
	border: 0;
  }

  .sidr ul li.dropdown>a::after {
	content: "+";
	color: #e77f5c;
	font-size: 14px;
	position: absolute;
	top: 5px;
	right: 15px;
  }

  .sidr ul li.closed>a::after {
	content: "-";
	color: #e77f5c;
	position: absolute;
	top: 5px;
	right: 15px;
  }

  #close-sidr-btn {
	display: block;
	font-size: 16px;
	color: rgb(255, 255, 255, 1);
	position: absolute;
	top: 12px;
	right: 15px;
	z-index: 999;
	cursor: pointer;
  }



