:root {
  --bg-color-primary: #f38800;
  --text-color-primary: #f38800;
}

body {
  font-family: "Montserrat", sans-serif;
}
.bg-section-primary {
  background-color: #ffe7c9;
}
.text-right {
  text-align: right !important;
}
.mr-0 {
  margin-right: 0;
}
.ml-0 {
  margin-left: 0;
}
.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}

.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}

.d-none {
  display: none;
}

.bg-gradient-primary {
  background-color: #fff;
  background-image: linear-gradient(90deg, #078e63 10%, #02cd8c 100%);
  background-size: cover;
}

.bg-gradient-secondary {
  background-color: #858796;
  background-image: linear-gradient(90deg, #858796 10%, #60616f 100%);
  background-size: cover;
}

.bg-gradient-success {
  background-color: #1cc88a;
  background-image: linear-gradient(90deg, #1cc88a 10%, #13855c 100%);
  background-size: cover;
}

.bg-gradient-info {
  background-color: #36b9cc;
  background-image: linear-gradient(90deg, #36b9cc 10%, #258391 100%);
  background-size: cover;
}

.bg-gradient-warning {
  background-color: #f6c23e;
  background-image: linear-gradient(90deg, #f6c23e 10%, #dda20a 100%);
  background-size: cover;
}

.bg-gradient-danger {
  background-color: #e74a3b;
  background-image: linear-gradient(90deg, #e74a3b 10%, #be2617 100%);
  background-size: cover;
}

.bg-gradient-light {
  background-color: #f8f9fc;
  background-image: linear-gradient(90deg, #f8f9fc 10%, #c2cbe5 100%);
  background-size: cover;
}

.bg-gradient-dark {
  background-color: #5a5c69;
  background-image: linear-gradient(90deg, #5a5c69 10%, #373840 100%);
  background-size: cover;
}

.bg-gradient-green {
  background-color: #54e38e;
  background-image: linear-gradient(90deg, #54e38e 10%, #41c7af 100%);
  background-size: cover;
}

.bg-gradient-lightgreen {
  background-color: #c4e759;
  background-image: linear-gradient(90deg, #c4e759 10%, #6de195 100%);
  background-size: cover;
}

.bg-gradient-skyblue {
  background-color: #8debff;
  background-image: linear-gradient(90deg, #8debff 10%, #6cacff 100%);
  background-size: cover;
}

.bg-gradient-purple {
  background-color: #f8c390;
  background-image: linear-gradient(90deg, #f8c390 10%, #d279ee 100%);
  background-size: cover;
}

.bg-gradient-red {
  background-color: #e13680;
  background-image: linear-gradient(90deg, #e13680 10%, #a43ab2 100%);
  background-size: cover;
}

.bg-gradient-orange {
  background-color: #fccf31;
  background-image: linear-gradient(90deg, #fccf31 10%, #f55555 100%);
  background-size: cover;
}
/*-------------- Main Layout ---------------*/
.logo-box img {
  height: 75px;
  width: 75px;
}
.sitename-box {
  text-align: center;
}
.sitename-box .heading {
  font-size: 38px;
  font-weight: 700;
  color: #000000cc;
  margin-bottom: 0;
}
.sitename-box .sub-heading {
  font-size: 20px;
  font-weight: 600;
  color: #000000bf;
  margin-bottom: 0;
}
nav {
  z-index: 100;
  width: 100%;
  background: var(--bg-color-primary);
  padding: 0 15px !important;
}
.bis-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-right: 40px;
}
.bis-logo img {
  height: 40px;
  width: auto;
}
.nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 600 !important;
  position: relative;
  padding: 10px 12px !important;
}
.nav-link:hover {
  color: #fff;
}
.active-nav a {
  /*text-shadow: 0px 3px 2px #305f32;*/
  font-weight: 500;
}
.active-nav a:first-of-type:after {
  position: absolute;
  opacity: 1 !important;
  width: calc(100% - 16px) !important;
  height: 3px;
  content: "";
  background: #fff;
  right: 8px;
}
.borderXwidth a:after {
  position: absolute;
  opacity: 0;
  width: 0%;
  height: 3px;
  content: "";
  background: #fff;
  transition: all 0.3s;
}
.borderXwidth a:after {
  right: 8px;
  bottom: 0px;
}
.borderXwidth a:hover:after {
  opacity: 1;
  width: calc(100% - 16px);
}
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}
.dropdown-submenu:hover > ul {
  display: block;
}

nav .dropdown:hover > ul {
  display: block;
}

nav .dropdown-menu {
  background-color: var(--bg-color-primary);
  border: 0 !important;
  border-radius: 0;
  margin: 0;
  min-width: 194px !important;
  box-shadow: 0px 2px 3px rgba(44, 62, 80, 0.25);
}
nav .dropdown-menu .nav-link {
  font-size: 14px;
}

#user_dropdown a {
  color: #000;
}

#user_dropdown a:hover {
  background: #fff;
  color: #000;
}

#user_dropdown a:hover:after {
  content: none !important;
}

.top-contact-header {
  background-color: var(--bg-color-primary);
  color: #fff;
  padding: 10px 15px;
  font-size: 12px;
}
.top-contact-header .contact-box {
  float: left;
  display: contents;
}
.top-contact-header .ls-box {
  float: right;
}
.top-contact-header .ls-box a {
  color: #fff;
  padding: 0 5px;
  font-weight: 500;
}
.top-header {
  padding: 10px 0px;
  margin-left: 0;
  margin-right: 0;
  background: #fff;
}
.center-logo {
  text-align: center;
  padding: 4px 0;
}
.center-logo a {
  text-decoration: none;
}
.center-logo a h1 {
  color: #000;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}
.center-logo a h4 {
  font-size: 22px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 2px;
}
.center-logo a h6 {
  font-size: 14px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 0;
}
.right-logos {
  text-align: right;
}
.nav-logo {
  text-align: center;
  display: inline-block;
}
.nav-logo img {
  height: 85px;
  width: auto;
}
#right-nav {
  align-items: center;
}
/*-------------- End Main Layout ---------------*/

.mainslider-wrapper .about-wrapper {
  background-color: #026862;
}
.mainslider-wrapper .about-wrapper .about-content {
  font-size: 16px;
  line-height: 22px;
  padding: 15px 30px;
  text-align: justify;
  color: #fff;
  font-weight: 500;
}
.mainslider-wrapper .about-wrapper a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}
.mainslider-wrapper .about-wrapper a > i {
  font-size: 14px;
}
.search-wrapper {
  margin: 20px 0 20px 0;
  text-align: center;
}
.search-section {
  position: relative;
  /*position: absolute;
  top: 26%;
  text-align: center;
  color: #fff;
  width: 100%;*/
}
.search-section #searchby {
  height: 55px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  padding: 8px 5px;
  outline: none;
  font-weight: 500;
  background-color: #f7f7f7;
}
.search-section input {
  /*display: block;*/
  margin: 0 auto;
  height: 55px;
  border: 1px solid #ccc;
  border-radius: 0px;
  padding: 8px 12px;
  max-width: 450px;
  width: 100%;
  outline: none;
  font-weight: 500;
  margin-left: -5px;
}
.search-section .keyword-search-btn {
  font-size: 18px;
  background: var(--bg-color-primary);
  height: 55px;
  margin-left: -4px;
  border-radius: 0 4px 4px 0;
  color: #fff;
  margin-top: -3px;
  outline: 0;
  box-shadow: none;
}
.search-result-list {
  position: absolute;
  top: 100%;
  left: 37%;
  list-style: none;
  /*border: 1px solid #ccc; */
  margin: 0 auto;
  max-width: 450px;
  width: 100%;
  padding: 10px 15px;
  background: #fff;
  color: #000;
  margin-top: 2px;
  text-align: left;
  z-index: 1;
  display: none;
  box-shadow: 0 0 6px #ccc;
}
.search-result-list li {
  color: #000;
  font-size: 15px;
  padding: 8px 0;
  width: 100%;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.search-result-list li:not(:last-child) {
  border-bottom: 1px solid #dedede;
}
.search-wrapper .as-btn {
  background-color: #5c2600;
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  margin-top: 15px;
  outline: 0;
  box-shadow: none;
}
.advancedSearch-section {
  padding: 30px 20px;
  border-radius: 4px;
  box-shadow: 0px 2px 6px #ccc;
  margin-top: 20px;
  text-align: left;
  display: none;
}
.advancedSearch-section label {
  font-weight: 600;
}
.advancedSearch-section select {
  height: 45px;
}
.advancedSearch-section select:focus {
  outline: 0;
  box-shadow: none;
}
.advancedSearch-section .as-footer {
  text-align: right;
}
.advancedSearch-section .as-footer .as-cancel-btn {
  border: 1px solid #5c2600;
  color: #5c2600;
  outline: 0;
  box-shadow: none;
}
.advancedSearch-section .as-footer .as-search-btn {
  background-color: #5c2600;
  color: #fff;
  margin-left: 15px;
  outline: 0;
  box-shadow: none;
}
.total-search-result {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: -30px;
}
.no-search-result {
  padding-top: 30px;
  text-align: center;
}
.no-search-result h4 {
  color: #5c2600;
  font-weight: 700;
}
.no-search-result p {
  font-weight: 600;
  color: #000;
}

.mainslider-text h1 {
  font-size: 45px;
  font-weight: 700;
}
.carousel-item img {
  width: 100%;
  height: 400px;
  filter: brightness(0.9);
}
.carousel-caption {
  top: 42%;
  transform: translateY(-50%);
}
.carousel-caption h1 {
  margin: 0 0 10px 0;
  font-size: 65px;
  font-weight: 700;
  line-height: 75px;
  color: #fff;
}
.mainbody {
  padding: 25px 0 100px 0;
  /* min-height: calc(100vh - 268px); */
}
.search-section h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
}

.publication-category-section a:hover {
  text-decoration: none;
}
.category-section {
  text-align: -webkit-center;
  padding: 80px 0;
}
.category-box {
  border-radius: 4px;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  box-shadow: 0px 3px 8px #ccc;
  margin-bottom: 40px;
}
.category-icon i {
  font-size: 45px;
  color: #fff;
  margin-top: 12px;
}
.category-image img {
  height: 85px;
  width: auto;
  margin-bottom: 20px;
}
.category-box .category-name {
  font-size: 16px;
  font-weight: 600;
  color: #272727;
}
.category-box .category-count {
  font-size: 36px;
  font-weight: 600;
  color: #005251;
  margin-top: 5px;
}

.main-heading h1 {
  font-size: 32px;
  font-weight: 700;
  color: #000000bf;
}
.main-heading h4 {
  font-size: 16px;
  font-weight: 600;
}
.ts-box {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 40px 20px;
  width: 70%;
  margin: 25px auto;
}
.ts-box form {
  width: 75%;
  margin: auto;
}
.ts-box label {
  font-weight: 600;
}
.ts-box select:focus,
.ts-box input:focus {
  outline: none;
  box-shadow: none;
}
#ts-btns {
  text-align: center;
  margin-top: 30px;
}
#ts-btns .search-btn {
  background: #6ca56c;
  color: #fff;
  padding: 5px 30px;
  margin: 0 15px;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0 3px 8px #6ca56c;
  outline: none;
}
#ts-btns .reset-btn {
  background: #ffffff;
  color: #000000bf;
  padding: 5px 30px;
  margin: 0 15px;
  font-weight: 500;
  border: 1px solid #747474;
  border-radius: 4px;
  box-shadow: 0 3px 8px #ccc;
  outline: none;
}

/*---- News and event section ----*/
.team-section .row,
.search-result.row {
  margin-right: 0;
  margin-left: 0;
}
.section-heading {
  font-size: 30px;
  font-weight: 700;
  color: #272727;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.section-subheading {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color-primary);
  margin-bottom: 15px;
  margin-top: 30px;
}

.section-content p {
  font-weight: 500;
  color: #303030;
}
.section-content ol > li {
  color: #303030;
  margin-top: 30px;
  line-height: 26px;
}

#full-detail h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
}
#full-detail p {
  font-size: 18px;
  font-weight: 500;
  color: #303030;
}
#full-detail img {
  height: 400px;
  width: 100%;
  margin: 30px 0;
}

.news-box {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  /* margin-bottom: 40px; */
  height: 100%;
  border-radius: 4px;
}
.news-box img {
  max-width: 100%;
  border-radius: 4px 4px 0 0;
}
.news-box .news-content {
  padding: 18px 15px;
}
.news-box .news-content .news-date {
  font-size: 14px;
  color: #797979;
  font-weight: 500;
}
.news-box .news-content .news-date i {
  margin-right: 5px;
}
.news-box .news-content a {
  text-decoration: none;
}
.news-box .news-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f38800;
  margin: 10px 0;
}
.news-box .news-content p {
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 0;
}
.rm-link a {
  border: 1px solid #0da2945c;
  padding: 5px 8px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  color: #0da294;
}
.view-all-wrapper {
  text-align: center;
  margin-top: 50px;
}
.view-all-wrapper a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #f38800;
  color: #f38800;
  padding: 8px 30px;
}
/*---- End News and event section ----*/

/*---- Apps section ----*/
/* .apps-section {
    margin-bottom: 60px;
    padding: 20px 25px;
    background-color: #fff2e0;
} */

.app-box {
  padding: 20px 30px;
  box-shadow: 0 3px 8px #dedede;
  background-color: #fff;
  margin-bottom: 40px;
  border-radius: 10px;
  height: calc(100% - 32px);
  text-align: center;
}
.app-box img {
  height: 75px;
  width: auto;
  margin-bottom: 25px;
}
.app-box h1 {
  font-size: 16px;
  font-weight: 700;
  color: #353535;
}
.app-box a:hover {
  text-decoration: none;
}
.app-box .app-description {
  font-size: 16px;
  color: #727272;
  margin-bottom: 50px;
}
.app-box .app-footer {
  position: absolute;
  bottom: 65px;
}
.app-box .app-footer a {
  background-color: #f38800;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

/*---- End Apps section ----*/

/*---- Modules section ----*/
.module-box {
  text-align: center;
  box-shadow: 0 5px 12px #dedede;
  background-color: #fff;
  margin-bottom: 40px;
}
.module-box img {
  height: 200px;
  width: 100%;
  border-radius: 4px 4px 0 0;
}
.module-box h1 {
  font-size: 20px;
  font-weight: 600;
  background-color: var(--text-color-primary);
  color: #ffffff;
  padding: 20px 0;
  border-radius: 0 0 4px 4px;
}
.module-box a:hover {
  text-decoration: none;
}
/* .explore-app-box {
  padding: 20px 0 60px 0;
} */
.explore-module-content h1 {
  font-size: 20px;
  font-weight: 700;
}
.module-img img {
  height: auto;
  width: 100%;
}
.explore-btn {
  background-color: transparent;
  color: #f38800;
  border: 1px solid #f38800;
  border-radius: 50px;
  padding: 10px 25px;
  margin-top: 24px;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 2px;
  left: 4px;
  right: 4px;
  bottom: -5px;
  background: #f38800;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 50px;
  border: 1px solid #f38800;
}
.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/*---- End Modules section ----*/

.pub-section {
  background-color: #f7f7f7;
}
.pub-box {
  text-align: center;
}
.pub-box img {
  height: 85px;
  width: auto;
}
.pub-box .pub-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
}
.pub-content p {
  font-size: 48px;
  font-weight: 800;
}

/*---- Recent sightings section ----*/
.rs-section {
  margin-bottom: 30px;
  padding: 40px 25px;
  /*background-image: url('../../public/images/109097-vector-green-wave-free-clipart-hd.png');*/
  background: #80adaa;
}
.rs-section .section-heading {
  color: #fff;
}
.rs-section .row {
  margin-left: 0;
  margin-right: 0;
}
.rs-section .rs-card img {
  width: 100%;
  height: 250px;
}
.rs-section a {
  display: block;
  position: relative;
  -webkit-box-shadow: 0 5px 20px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 5px 20px 0rgba (0, 0, 0, 0.2);
  color: #fff;
}
.rs-section .rs-card .content-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 8px 15px 0 15px;
  background-color: #00000066;
}
.rs-section .rs-card .content-box h4 {
  font-size: 22px;
  font-weight: 600;
}

/*---- End Recent sightings section ----*/

/*---- About and what's new section ----*/
.about-section {
  padding: 20px 0px 50px 0px;
}
.about-section .row {
  margin-left: 0;
  margin-right: 0;
  margin-top: 30px;
}
/*.about-box,
.news-box {
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.16);
}
.about-box h4,
.news-box h4 {
  padding: 7px 15px;
  margin-bottom: 0;
  background: #064c1b;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.about-box .about-content,
.news-box .news-content {
  border: 1px solid #cecece;
  padding: 10px 15px;
  text-align: justify;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 30px;
  min-height: 320px;
}*/
.about-content {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 5px;
  text-align: justify;
  color: #000;
}

/*---- End About and what's new section ----*/

.m-card {
  position: relative;
  box-shadow: 0px 3px 6px #dedede;
  border-radius: 10px;
  padding: 15px 15px;
  text-align: center;
  margin-bottom: 15px;
}
.m-card .m-img img {
  height: 150px;
  width: 150px;
  border: 2px solid #f38800;
  border-radius: 50%;
  margin-bottom: 20px;
}
.m-name {
  font-size: 16px;
  font-weight: 700;
}
.m-desig {
  font-size: 14px;
  color: #555555;
}
#pm_card img {
  height: 200px;
  width: 200px;
  margin-bottom: 15px;
}
.m-card::before,
.m-card::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0;
  width: 0;
  height: 0;
  z-index: -1;
  border-radius: 10px 0;
}

.m-card::before {
  border-color: transparent transparent transparent #ffe7c9;
  border-width: 0 0 75px 75px;
  top: 0;
  left: 0;
}

.m-card::after {
  border-color: #000 transparent #ffe7c9 transparent;
  border-width: 0 0 75px 75px;
  bottom: 0;
  right: 0;
}

/*---- Our team section ----*/
.member-card {
  min-height: 220px;
  padding: 10px 20px;
  text-align: center;
}
.member-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.member-card .member-name {
  font-weight: 600;
  color: #4e4e4e;
  margin-bottom: 0;
  font-size: 16px;
}
.member-card .member-designation {
  font-weight: 500;
  color: #535353;
  font-size: 15px;
  margin-bottom: 10px;
}
.member-card .member-detail {
  font-size: 14px;
  margin-bottom: 0;
}

/*---- End Our team section ----*/

/*---- Important links section ----*/
.imp-links {
  /*background: #f4f4f4;*/
  padding: 40px 25px;
}
.implinks-carousel {
  margin-top: 25px;
}
.implinks-box {
  padding: 0 25px;
}
.implinks-box .row {
  margin-left: 0;
  margin-right: 0;
  margin-top: 25px;
}
.implinks-box .link-box {
  background: #fff;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 0 6px #d5d5d5;
}
.implinks-box .link-box img {
  height: 55px;
  width: auto;
}
/*---- End important links section ----*/

/*-------------- Experts page ---------------*/
#experts_table {
  border: 0;
  font-size: 14px;
}

#experts_table th {
  border-top: 0;
}
#experts_table th.sorting_asc:before,
#experts_table th.sorting_asc:after {
  content: "";
}
#experts_table th.sorting_asc {
  background-image: none !important;
  width: auto !important;
}
#experts_table th {
  padding: 5px 10px;
  font-size: 16px;
}
.experts-section {
  margin-top: 30px;
}
#experts_table img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.member-btn-box {
  text-align: right;
}
.nomination-btn {
  background: #0da294;
  color: #fff;
  font-weight: 500;
}
/*-------------- Experts page ---------------*/

/*-------------- Plant identification page ---------------*/
.filters-wrapper {
  /* position: fixed;
  width: 350px;
  top: 102px; */
  background: #fff;
  transition: width 0.2s ease;
  padding-right: 15px;
}
/* .identification_filters #accordion {
  height: calc(100vh - 102px);
  overflow-y: auto;
  box-shadow: 2px 1px 2px rgba(0, 0, 0, 0.2);
} */
.filters-wrapper #accordion::-webkit-scrollbar {
  width: 5px;
}
.filters-wrapper #accordion::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #cecece;
}
.filters-wrapper #accordion::-webkit-scrollbar-thumb {
  background: #0da294ce;
}
.filters-wrapper .filter-header {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f38800;
  border-bottom: 1px solid;
}
.filters-wrapper .filter-header i {
  font-size: 14px;
}
.filters-wrapper .button-box {
  padding: 10px 0px;
  /* border-bottom: 2px solid #cecece; */
}
.filter-searchbtn {
  padding: 8px 20px;
  background: var(--bg-color-primary);
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  width: 100%;
  margin-bottom: 15px;
}
.filter-clearbtn {
  /* float: right; */
  padding: 8px 15px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--text-color-primary);
  transition: 0.3s ease;
  color: var(--text-color-primary);
  width: 100%;
}
.filter-searchbtn:hover {
  box-shadow: 1px 3px 4px #cecece;
  color: #fff;
}
.filter-clearbtn:hover {
  box-shadow: 1px 3px 4px #cecece;
}
.filter-searchbtn:focus,
.filter-clearbtn:focus {
  box-shadow: none;
  border: 1px solid #0da294;
}
.filters-wrapper .card {
  border: 0px;
  border-radius: 0;
  margin-bottom: 15px;
}
.filters-wrapper .card-header {
  background: #fff;
  margin-bottom: 0 !important;
  padding: 0;
  border: 0;
}
.filters-wrapper .card-link h5 {
  font-size: 15px;
  font-weight: 600;
  color: #4e4e4e;
  margin-bottom: 0;
  padding: 10px 0px;
}
.filters-wrapper .card-link h5 i {
  float: right;
}
.filters-wrapper .card-body {
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(0, 0, 0, 0.025); */
  padding: 0;
}
.filters-wrapper input,
.filters-wrapper select {
  font-size: 14px;
  height: 45px;
  border-radius: 4px;
}
.filters-wrapper input:focus,
.filters-wrapper select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #000;
}
.filters-wrapper .filter-box {
  display: inline-block;
}
.filters-wrapper .filter-box label {
  padding: 10px 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.filters-wrapper .filter-box input[type="radio"] {
  position: absolute;
  display: block;
  border: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.filters-wrapper .filter-box .altitude-field {
  width: 40%;
  margin: 0 10px;
  font-size: 12px;
  font-weight: 600;
}
.filters-wrapper .filter-box .altitude-field:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #0da294;
}
.filters-wrapper h4 {
  font-size: 14px;
  font-weight: 700;
}
.filters-wrapper .filter-name {
  border: 1px solid #ccc;
  padding: 10px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 10px;
  cursor: pointer;
}
.filter-box-checked {
  background: #0da294;
  color: #fff;
}
.filters-slide {
  z-index: 10;
  width: 350px !important;
  max-width: calc(100% - 45px);
}

.filters-btn {
  position: fixed;
  background: #0da294;
  padding: 3px 12px;
  color: #fff;
  font-size: 14px;
  z-index: 1;
  margin-top: 10px;
  margin-left: 15px;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.2);
}
.identification_output {
  padding-left: 350px;
}
.identification_output .main-heading {
  padding: 15px 15px;
  border-bottom: 2px solid #cecece;
}
.identification_output .main-heading h1 {
  font-size: 26px;
}
.identification_output .sr-box {
  font-size: 14px;
  font-weight: 600;
  color: #535353;
}
.identification_output .content-body {
  padding: 25px 25px 25px 25px;
  background: #f7f7f7;
  margin-right: 0;
  margin-left: 0;
  min-height: calc(100vh - 299px);
}
.identification_output .content-body .img-box,
#publications-section .not-found-box {
  text-align: center;
  width: 100%;
}
.identification_output .content-body .img-box img {
  height: 200px;
  width: auto;
  margin-top: 25px;
  margin-bottom: 15px;
}
#publications-section .not-found-box img {
  height: 150px;
  width: auto;
  margin-top: 25px;
  margin-bottom: 30px;
}
.identification_output .content-body .img-box h1,
#publications-section .not-found-box h1 {
  font-size: 28px;
  font-weight: 600;
  text-shadow: 2px 3px 3px #c3c3c3;
}
.identification_output .result-card,
.user-dashboard .result-card,
.search-result .result-card,
#species_list .result-card {
  border: 1px solid #ccc;
  padding: 0px;
  margin: 25px 10px;
  box-shadow: 0px 2px 4px #cecece;
  border-radius: 5px;
}
.result-card img {
  width: 100%;
  height: 165px;
  border-radius: 5px 5px 0 0;
}
#species_list .result-card img,
#search_result .result-card img {
  height: 200px;
}
.user-dashboard .result-card img {
  height: 220px;
}
.result-card .result-title {
  padding: 15px 6px;
  text-align: center;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
}
.result-card .result-title a {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: block;
}
.result-card .result-title .small-text {
  font-size: 14px;
  font-weight: 600;
}

/* #overlay {
  position: fixed;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 9;
} */
#pub_overlay {
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgb(183 183 183 / 15%);
  z-index: 9;
  text-align: center;
  padding-top: 24%;
}
#pub_overlay .spinner-border {
  width: 4rem;
  height: 4rem;
  border: 0.5em solid #f38800;
  border-right-color: transparent;
}
.pages-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
}
.filter-label {
  background: #d9d9d9;
  padding: 5px 10px;
  line-height: 1em;
  font-size: 12px;
  border-radius: 4px;
  text-transform: capitalize;
  display: inline-block;
  font-weight: 600;
  margin-right: 10px;
}
#filter_error_msg {
  display: none;
  padding: 5px 10px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
}
/*-------------- End Plant identification page ---------------*/

/*-------------- Maxent page ---------------*/
.mainbody .sub-heading {
  font-size: 16px;
  font-weight: 500;
  color: #535353;
  margin-bottom: 16px;
}
.mainbody .maxent-link {
  text-align: center;
  margin-bottom: 20px;
}
.mainbody .maxent-link a {
  background: #f1f1f1;
  color: #0da294;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 2px 2px 4px #0da2943c;
}
.maxent-banner img {
  width: 100%;
  max-height: 300px;
  margin-bottom: 25px;
}
.maxent-content-body {
  line-height: 28px;
}
.maxent-citation h4 {
  font-size: 18px;
  font-weight: 600;
  color: #535353;
}
.maxent-citation {
  border-top: 1px solid #d6d6d6;
  padding-top: 20px;
}
.maxent-citation p {
  font-size: 13px;
}

/*-------------- End Maxent page ---------------*/
#specimen_table {
  border-spacing: 0 40px;
  border-collapse: separate;
  border-bottom: 0 !important;
}
#specimen_table thead {
  display: none;
}
#specimen_table tbody tr {
  box-shadow: 0px 2px 6px #cecece;
  border-radius: 5px;
}
#specimen_table tr td:first-child {
  width: 220px;
}
#specimen_table tr td {
  border-radius: 5px;
  padding: 0;
}
#specimen_table tr td img {
  border-radius: 5px 0 0 5px;
}
.specimen-details .speciesname {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 5px;
}
.specimen-details .iucn-img {
  height: 40px;
  width: auto;
  margin-top: 10px;
}
/*-------------- Species detail page ---------------*/
.specimen-top-header {
  background-color: #03363d1a;
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.specimen-top-header .back-btn,
.specimen-top-header .generatepdf-btn {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}
.specimen-top-header .generatepdf-btn {
  float: right;
}
.species-info {
  text-align: center;
}
.species-info h1 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}
.species-info .commonname {
  font-size: 18px;
  font-weight: 500;
  color: #424242;
}
.species-card-heading {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 14px;
}
.species-classification,
.species-description {
  border: 1px solid #cecece;
  padding: 10px 0px 25px;
  border-radius: 5px;
  box-shadow: 0px 0px 6px #dedede;
  /*height: 100% !important;*/
}
.species-classification .cls-card,
.species-description .des-card {
  padding: 15px 15px 0 15px;
}
/*.species-classification .cls-card:not(:last-child),
.species-description .des-card:not(:last-child) {
  border-bottom: 1px solid #dedede;
}*/
/*.species-classification .attr-name {
  display: inline-block;
  float: left;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  width: 120px;
}*/

.species-classification .attr-name,
.species-description .attr-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
.species-classification .attr-value,
.species-description .attr-value {
  color: #000;
  font-size: 17px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  line-height: 26px;
}
.species-classification .cls-card:last-child .attr-value {
  border: none;
  padding-bottom: 0;
}
.species-description .des-card:last-child .attr-value {
  border: none;
  padding-bottom: 0;
}
.species-description .attr-value .iucn-img {
  height: 40px;
  margin-left: 5px;
}
.species-img img {
  height: 180px;
  width: 100%;
  transition: 0.3s ease;
  margin-bottom: 20px;
}
.species-img img:hover {
  box-shadow: 1px 3px 4px #c2c2c2;
  transform: scale(1.05);
}

/*-------------- End Species detail page ---------------*/

/*-------------- Footer ---------------*/
footer {
  background: var(--bg-color-primary);
  color: #fff;
  padding: 15px 0;
  /*  border-bottom: 5px solid #39b2ac;*/
}
.site-name {
  display: table;
}
.site-name .short-name {
  font-size: 30px;
  font-weight: 700;
  display: table-cell;
  vertical-align: middle;
}
.site-name .short-name:after {
  font-weight: 400;
  margin: 0 5px;
  content: "|";
}
.site-name .full-name {
  font-size: 14px;
  display: table-cell;
  vertical-align: middle;
}
footer h4 {
  font-size: 14px;
  /*  font-weight: 600;*/
}
#copyright-section {
  margin: auto;
}
.copyright-box {
  text-align: right;
  font-size: 14px;
  font-weight: 400;
}
/*-------------- End Footer ---------------*/
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

.login-box {
  border: 1px solid #ccc;
  width: 40%;
  margin: 0 auto;
  padding: 35px;
  text-align: center;
}

/*------------- Datatables --------------*/

#specimen_table a {
  display: block;
  color: #000;
  text-decoration: none;
}

.dataTables_wrapper .row {
  margin-right: 0;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  margin-left: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
table.dataTable thead th {
  border-bottom: 0px !important;
}
table.dataTable th,
table.dataTable td {
  vertical-align: middle;
}
table.dataTable.no-footer {
  border-bottom: 1px solid #dee2e6 !important;
}
.dataTables_filter input[type="search"]:focus,
.dataTables_length select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ced4da;
}
.dataTables_paginate .page-link,
.pagination .page-link {
  padding: 8px 16px;
  font-size: 16px;
  color: #252525;
  font-weight: 600;
}
.page-item.active .page-link {
  background-color: var(--text-color-primary);
  border-color: var(--text-color-primary);
}
.pagination-box nav {
  background: none;
  padding: 0 !important;
  margin-top: 25px;
}
/*------------- End Datatables --------------*/

/*------------- Login page --------------*/
.login_card,
.register_card,
.verifyemail_card,
.admin_login_card {
  width: 35%;
  margin: 25px auto;
  box-shadow: 0 3px 8px #c2c2c2;
}
#expert_register_card {
  width: 40%;
}
.verifyemail_card {
  width: 70%;
}
.login_card .card-header,
.register_card .card-header,
.verifyemail_card .card-header,
.admin_login_card .card-header {
  text-transform: uppercase;
  text-align: center;
  background: #f38800;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  border-radius: 4px 4px 0 0;
  padding: 15px 0;
}
.login_card .card-body,
.register_card .card-body,
.verifyemail_card .card-body,
.admin_login_card .card-body {
  padding: 45px 30px;
}
.login_card .form-group,
.register_card .form-group,
.resetpass_card .form-group,
.admin_login_card .form-group {
  position: relative;
}
.login_card .form-group:first-of-type,
.register_card .form-group,
.resetpass_card .form-group,
.admin_login_card .form-group:first-of-type {
  margin-bottom: 2rem;
}
.login_card .form-control-placeholder,
.register_card .form-control-placeholder,
.resetpass_card .form-control-placeholder,
.admin_login_card .form-control-placeholder {
  position: absolute;
  top: 0;
  padding: 7px 0 0 0px;
  transition: all 200ms;
  opacity: 0.5;
}
.login_card .form-control:focus + .form-control-placeholder,
.login_card .form-control:valid + .form-control-placeholder,
.register_card .form-control:focus + .form-control-placeholder,
.register_card .form-control:valid + .form-control-placeholder,
.resetpass_card .form-control:focus + .form-control-placeholder,
.resetpass_card .form-control:valid + .form-control-placeholder,
.admin_login_card .form-control:focus + .form-control-placeholder,
.admin_login_card .form-control:valid + .form-control-placeholder {
  font-size: 85%;
  transform: translate3d(0, -100%, 0);
  opacity: 1;
}
.login_card .form-control:focus,
.register_card .form-control:focus,
.resetpass_card .form-control:focus,
.admin_login_card .form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #ffe7c9;
}
.login_card input,
.login_card select,
.register_card input,
.register_card textarea,
.resetpass_card input,
.admin_login_card input {
  border: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  margin-bottom: 10px;
}
.forgot-link {
  font-size: 14px;
  color: #f38800;
  text-decoration: none;
}
.forgot-link:hover {
  color: #005251;
  text-decoration: none;
}
.btn-login,
.btn-register {
  width: 100%;
  background: #f38800;
  border: 1px solid #f3f3f3;
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  padding: 8px 0;
  margin: 20px 0;
}
.not-member-box,
.member-box {
  text-align: center;
  font-weight: 500;
  color: #707070;
}
.register-link a,
.login-link a {
  font-weight: 600;
  color: #f38800;
  text-decoration: underline;
}
.dropdown-menu {
  border: 1px solid #e3e6f0 !important;
}
.dropdown-item {
  font-size: 14px;
  color: #747474;
}
.shadow {
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #eaecf4;
}
.dropdown-toggle::after {
  border-top: 0 !important;
}

#expert_register_card input[type="file"] {
  height: 0;
  overflow: hidden;
  width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
#expert_register_card #upload_box {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
}
#expert_register_card input[type="file"] + label {
  background: #005251;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  margin: 0;
  outline: none;
  padding: 1rem 50px;
  position: relative;
  transition: all 0.3s;
  vertical-align: middle;
}

.admin_login_card .bth_link_box {
  text-align: center;
}
.admin_login_card .bth_link_box a {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
  color: #005251;
}

/*------------- End login page --------------*/

/*------------- Reset password link page --------------*/
.reset_card,
.resetpass_card {
  width: 45%;
  margin: 25px auto;
  box-shadow: 0 3px 8px #c2c2c2;
}
.reset_card .card-header,
.resetpass_card .card-header {
  text-transform: uppercase;
  text-align: center;
  background: #f38800;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  border-radius: 4px 4px 0 0;
  padding: 15px 0;
}
.reset_card .card-body,
.resetpass_card .card-body {
  padding: 45px 30px;
}
.reset_card input[type="email"] {
  height: 45px;
  border-radius: 2px;
}
.reset_card input[type="email"]:focus {
  box-shadow: 0px 0px 5px #f38800aa;
  border: 1px solid #f38800aa;
}
.reset_card .send-btn,
.resetpass_card .reset-btn {
  background: #f38800;
  border: 1px solid #f38800;
  color: #fff;
  font-weight: 500;
  padding: 8px 15px;
  margin-top: 10px;
}
.reset_card #email {
  font-family: Montserrat, "Font Awesome 5 Free";
}

/*------------- End Reset password link page --------------*/

/*------------- User dashboard page --------------*/
#user-sidebar {
  display: flex;
}
.sidebar {
  width: 10.5rem;
}
.sidebar .nav-item {
  position: relative;
}
.sidebar .nav-item:last-child {
  margin-bottom: 1rem;
}
.sidebar .nav-item .nav-link {
  text-align: center;
  padding: 0.75rem 1rem;
  width: 6.5rem;
  color: #424242;
}
.sidebar .nav-item .nav-link span {
  font-size: 14px;
  display: block;
}
.sidebar .nav-item.active .nav-link {
  font-weight: 700;
}

.welcome-note {
  padding: 30px 0;
}
.welcome-note h2 {
  font-size: 28px;
  font-weight: 600;
  color: #696969;
  margin-bottom: 0;
}
.welcome-note h4 {
  font-size: 18px;
  font-weight: 500;
  color: #696969;
}

.nav-tabs:before,
.nav-tabs:after {
  display: table;
  content: "";
}

.nav-tabs {
  border-bottom: 2px solid #f38800 !important;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -2px;
}
.nav-tabs > li > a {
  position: relative;
  display: block;
  padding: 10px 30px;
  margin-right: 2px;
  line-height: 1.42857143;
  border: 2px solid transparent;
  border-radius: 10px 10px 0 0;
  text-decoration: none;
  color: #555;
  font-size: 18px;
}

.nav-tabs > li > a:hover {
  background: #f38800;
  color: #fff;
}

.nav-tabs > li > a.active,
.nav-tabs > li > a.active:focus,
.nav-tabs > li > a.active:hover {
  color: #f38800;
  font-weight: 600;
  cursor: default;
  background-color: #fff;
  border: 2px solid #f38800;
  border-bottom-color: transparent;
}

.form-section {
  box-shadow: 0 5px 10px #dedede;
  padding: 20px 15px 30px;
  border-radius: 5px;
}

.form-section label {
  font-weight: 600;
}

.form-section .topfd-list {
  padding-left: 18px;
}
.form-section .topfd-list li {
  margin-bottom: 15px;
}
.tab-pane {
  padding: 20px 0;
}
.user-tab-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #454545;
}
.added-species-section {
  padding: 0 30px;
}
.added-species-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-left: 10px;
  text-decoration: underline;
}
.added-species-section .menu {
  float: right;
}
.added-species-section .menu i {
  margin-right: 5px;
  cursor: pointer;
}
.added-species-section .species-name {
  text-align: left;
  font-size: 14px;
  padding-left: 5px;
}
.added-species-section .species-status {
  text-align: left;
  margin-top: 5px;
  padding-left: 5px;
}
.added-species-section .species-status .approved {
  font-size: 12px;
  font-weight: 500;
  background: #0da294;
  color: #fff;
  padding: 3px 8px;
  border-radius: 10px;
}
.added-species-section .species-status .not-approved {
  font-size: 12px;
  font-weight: 500;
  background: #c50000;
  color: #fff;
  padding: 3px 8px;
  border-radius: 10px;
}

#userprofile_form input,
#add_detail_form input[type="text"],
#add_detail_form select {
  height: 45px;
}

#userprofile_form input:focus,
#add_detail_form input:focus,
#add_detail_form textarea:focus,
#add_detail_form select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #0da294;
}

.user-info {
  margin-top: 20px;
  margin-bottom: 40px;
}
.user-info h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 0;
}

.changepass-link {
  color: #0da294;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  width: fit-content;
}
.change-pass-header {
  font-size: 22px;
  font-weight: 600;
  color: #676767;
  text-decoration: underline;
  margin-bottom: 15px;
}
.password-note {
  color: #0da294;
  font-weight: 500;
  font-size: 14px;
}

.btn-box {
  margin-top: 20px;
  text-align: center;
}

#userprofile_form .btn-save,
.change-pass-section .btn-save,
#expertinfo_form .btn-save,
#expertinfo_form .btn-edit,
#add_detail_form .btn-save {
  background: #f38800;
  padding: 10px 50px;
  color: #fff;
  font-weight: 500;
  border: 1px solid #f38800;
  margin-right: 10px;
}
#userprofile_form .btn-cancel,
.change-pass-section .btn-cancel,
#expertinfo_form .btn-cancel,
#add_detail_form .btn-cancel {
  color: #f38800;
  padding: 10px 50px;
  font-weight: 500;
  border: 1px solid #f38800;
  margin: 0 10px;
}

#add_detail_form input[type="file"] {
  height: 0;
  overflow: hidden;
  width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
#add_detail_form #upload_box {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
}
#add_detail_form input[type="file"] + label {
  background: #f38800;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  margin: 0;
  outline: none;
  padding: 1rem 50px;
  position: relative;
  transition: all 0.3s;
  vertical-align: middle;
}

#expertinfo_form .btn-save,
#expertinfo_form .btn-cancel {
  display: none;
}

#viewModal .row:not(:last-child) {
  padding: 8px 0;
  border-bottom: 1px solid #e2e2e2;
}
#viewModal .img_wrapper {
  position: relative;
  display: inline-block;
}
#viewModal .img_wrapper img {
  height: 200px;
  width: 200px;
  margin: 10px;
}

#editModal #editupload_box input[type="file"] {
  height: 0;
  overflow: hidden;
  width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
#editModal #editupload_box {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
}
#editModal #editupload_box input[type="file"] + label {
  background: #0da294;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  margin: 0;
  outline: none;
  padding: 1rem 50px;
  position: relative;
  transition: all 0.3s;
  vertical-align: middle;
}
#editSpecies_form .img_wrapper img {
  height: auto;
  width: 100%;
  margin: 15px 0;
}
#editSpecies_form .img_wrapper,
#edit_imgPreview_box .thumb-wrap {
  position: relative;
  display: inline-block;
}
#editSpecies_form .img_wrapper .deleteimg-btn {
  position: absolute;
  top: 0px;
  right: -8px;
  border-radius: 10em;
  padding: 3px 7px 3px;
  font-size: 14px;
  background: #bf0606;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
}
#edit_imgPreview_box img {
  height: 200px;
  width: 250px;
  margin: 15px 15px;
}

/*.nav-tabs>li>a::before, .nav-tabs>li>a::after {
  position: absolute;
  top: 1px;
  display: block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 0;
  height: 100%;
  border-top: 43px solid transparent;
  border-left: 15px solid #0da294;
  color: #ccc;
}
.nav-tabs>li>a::before {
  right: -16px;
}
.nav-tabs>li>a::after {
  right: -15px;
  border-left-color: #ccc;
  color: #ccc;
}
.nav-tabs>li>a.active::after {
  border-left-color: #fff;
  color: #fff;
}*/

/*------------- End User dashboard page --------------*/

/* Slider */

.slick-slide {
  margin: 0px 60px;
  /*width: auto !important;*/
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.text-center {
  text-align: center;
}

/*.hex {
    width: 150px;
    min-height: 155px; 
    background-color: #39b2ac;
    border-color: #39b2ac;
    position: relative;
    display: inline-block;
}
.hex:before {
    content: " ";
    width: 0;
    height: 0;
    border-bottom: 30px solid;
    border-color: inherit;
    border-left: 77px solid transparent;
    border-right: 77px solid transparent;
    position: absolute;
    top: 63px;
    transform: rotate(90deg);
    left: 88px;
}
.hex:after {
    content: "";
    width: 0;
    position: absolute;
    border-top: 30px solid;
    border-color: inherit;
    border-left: 77px solid transparent;
    border-right: 77px solid transparent;
    left: -92px;
    transform: rotate(90deg);
    top: 63px;
}*/

/*--------------- Contact page -------------*/

.contact-header,
.about-header,
.page-header {
  position: relative;
  background-image: url("../../images/header-bg2.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
  background-position: bottom;
  margin-bottom: 20px;
}
.contact-header h1,
.about-header h1,
.page-header h1 {
  position: relative;
  top: 35%;
  text-align: center;
  color: #fff;
  font-size: 40px;
  text-shadow: 0 3px 12px rgb(0 0 0 / 90%);
  font-weight: 700;
  text-transform: capitalize;
}
.contact-header .bg-overlay,
.about-header .bg-overlay,
.page-header .bg-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-header#news-header {
  background-image: url("../../public/images/header-bg.png");
}
/* .page-header#sop-header {
    background-image: url("../../public/images/sop-banner.jpg");
}
.page-header#cc-header {
    background-image: url("../../public/images/cc-banner.png");
}
.page-header#tools-header {
    background-image: url("../../public/images/tools-banner.png");
} */
.contact-mainbody {
  padding: 25px 0 40px 0;
}
.contact-details {
  line-height: 30px;
  padding-top: 20px;
  padding-right: 50px;
}
.contact-details div {
  margin-bottom: 25px;
}
.contact-details h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.contact-details .content {
  font-size: 17px;
  font-weight: 500;
  border: 1px solid #ccc;
  border-left: 4px solid #39b2ac;
  padding: 10px 20px;
}
.contact-box {
  box-shadow: 0 5px 6px #ccc;
  border-radius: 4px;
}
.contact-box .contact-box-header {
  background-color: var(--bg-color-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 20px 15px;
  border-radius: 4px 4px 0 0;
}
.contact-box .contact-box-body {
  padding: 20px 20px 40px 20px;
  margin-bottom: 50px;
}

/*--------------- End Contact page -------------*/

/*---- Statistics page ----*/
.statistics-section .row {
  margin-right: 0;
  margin-left: 0;
}
.statistics-box {
  text-align: center;
  padding: 15px 0px;
  box-shadow: 0 5px 12px #dedede;
  background-color: #fff;
  border-radius: 5px;
}
.statistics-box .statistics-img img {
  height: 400px;
  width: 100%;
  margin-bottom: 40px;
}
.statistics-box .statistics-header .item-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
.statistics-box .statistics-header .item-subtitle {
  font-size: 14px;
  color: #0009;
}
.statistics-action {
  margin-bottom: 10px;
}
.statistics-box a:hover {
  text-decoration: none;
}
.statistics-action a {
  border: 1px solid #f38800;
  color: #f38800;
  padding: 10px 30px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.statistics-box p {
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
.states-list-box {
  height: calc(100vh - 265px);
  position: relative;
  overflow: auto;
}
.list-label {
  font-weight: 600;
  color: #000;
  background-color: #dedede;
  padding: 10px 15px;
}
.states-list-box ul {
  padding-left: 0;
}
.states-list-box ul li {
  list-style-type: none;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #494949;
}

/* width */
.states-list-box::-webkit-scrollbar {
  width: 6px;
}
/* Track */
.states-list-box::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.states-list-box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.state-list li:hover {
  cursor: pointer;
  background-color: #ccc;
}

#estimates_chart {
  height: 500px;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #dedede;
  padding: 10px 0;
}

#estimates_chart svg {
  font-family: "Montserrat", sans-serif !important;
}

.estimates-table-box {
  margin-top: 20px;
}

.chart-box {
  height: 500px;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #dedede;
  margin-bottom: 40px;
}
.chart-box svg {
  font-family: "Montserrat", sans-serif !important;
}

/*---- End Statistics page ----*/

.highcharts-credits {
  display: none;
}

.data-module-box {
  box-shadow: 0 5px 8px #dedede;
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  height: 125px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

/*---- Annual fire report page ----*/
.report-box a {
  font-size: 20px;
  font-weight: 600;
  color: #252525;
  text-decoration: none;
}
.report-box .report-item {
  margin-bottom: 20px;
  word-spacing: 4px;
  box-shadow: 0px 4px 8px #dedede;
  padding: 15px 15px;
  border-radius: 4px;
}
.report-box .report-item i {
  margin-right: 5px;
  color: #f38800;
}
/*---- End Annual fire report page ----*/

/*---- Publications page ----*/
.publication-box {
  /* box-shadow: 0px 3px 10px #dedede;
  border-radius: 4px;
  height: 150px; */
  margin-bottom: 40px;
}
.publication-box a {
  text-decoration: none;
}
.publication-box .pub-image {
  /* padding: 10px 15px; */
  margin-bottom: 15px;
}
.publication-box .pub-image img {
  height: 225px;
  width: auto;
  border: 1px solid #d3d3d3;
  /* border-radius: 5px; */
}
.publication-box .pub-year {
  font-size: 14px;
  margin-bottom: 10px;
  color: #4a4a4a;
  font-weight: 500;
}
.publication-box .pub-title {
  /* padding: 20px 15px; */
  font-size: 16px;
  color: #252525;
  font-weight: 700;
  /* background-color: #fdddb4; */
}
.publication-box .pub-authors {
  color: #434343;
  padding: 0px 15px;
  font-style: italic;
}
/*---- End Publications page ----*/

.read-more-link {
  font-size: 16px;
  font-weight: 600;
  color: #f38800;
}
.read-more-link i {
  border: 1px solid;
  border-radius: 50%;
  padding: 4px 5px;
  font-size: 12px;
}

/*---- Events page ----*/
.event-box {
  /* box-shadow: 0px 3px 10px #dedede;
    border-radius: 4px; */
  height: 220px;
  margin-bottom: 40px;
  border-bottom: 2px solid #dedede;
  padding-bottom: 20px;
}
.event-box a {
  text-decoration: none;
}
.event-box .event-image {
  float: left;
}
.event-box .event-image img {
  height: 200px;
  width: auto;
  margin-right: 20px;
  /* border-radius: 5px 0 0 5px; */
}
.event-box .event-date {
  font-size: 14px;
  color: #797979;
  font-weight: 500;
  padding-top: 15px;
}
.event-box .event-date i {
  margin-right: 5px;
}
.event-box .event-title {
  padding: 10px 15px 5px 15px;
  font-size: 20px;
  color: #252525;
  font-weight: 700;
}
.event-box .event-venue {
  color: #797979;
  font-weight: 700;
  padding: 0px 15px;
}
.event-box .event-description {
  margin-top: 10px;
}

.event-img-bg {
  color: #fff;
  position: relative;
  float: left;
}
.event-img-bg img {
  width: auto;
  height: 200px;
  margin-right: 20px;
}
.date-wrap {
  position: absolute;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.59px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.date-wrap span {
  display: block;
  letter-spacing: 0;
}
span.event-day {
  font-size: 60px;
  line-height: 1;
  margin: 10px 0;
}
/*---- End Events page ----*/

.top-header-secondary {
  background-color: #141a22a6;
  backdrop-filter: blur(20px);
}
.top-header-secondary a:hover {
  text-decoration: none;
}
.top-header-secondary h1 {
  color: #f7f7f7;
  font-size: 28px;
  font-weight: 700;
  padding: 5px 30px;
  margin-bottom: 0;
}
.top-header-secondary .breadcrumb-wrapper {
  background-color: #141a22a6;
  backdrop-filter: blur(20px);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 30px;
}
.top-header-secondary .breadcrumb-wrapper a {
  color: #fff;
}

#map {
  position: fixed;
  bottom: 0px;
  top: 75px;
  width: 100%;
}

.grid-container {
  display: grid;
  grid-template-areas: "left right";
}

.left {
  grid-area: left;
  width: 15vw;
  height: calc(100vh - 52px);
}

.mapMenu {
  display: block;
  position: absolute;
  left: 0;
}

.opt-box {
  background-color: rgba(20, 26, 34, 0.65);
  margin: 5px;
  border-radius: 10px;
  /* border: 1px solid var(--bg-color-primary); */
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(3px);
  color: #fff;
}

.opt-box .opt-box-header {
  background-color: #000;
  padding: 7px 10px;
  border-radius: 10px 10px 0 0;
}

.opt-box .opt-box-header h5 {
  font-size: 14px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.opt-box .opt-box-body {
  padding: 8px 15px;
  font-size: 14px;
}

.mapMenu input[type="checkbox"],
.mapMenu input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: inline-grid;
  place-content: center;
}
.mapMenu input[type="radio"] {
  border-radius: 50% !important;
}
.mapMenu input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #000;
  background-color: CanvasText;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.mapMenu input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #000;
  background-color: CanvasText;
  border-radius: 50%;
}
.mapMenu input[type="checkbox"]:checked::before,
.mapMenu input[type="radio"]:checked::before {
  transform: scale(1);
}
/* .mapMenu input[type="checkbox"]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
} */

.right {
  grid-area: right;
  width: 85vw;
  height: calc(100vh - 52px);
}

.ctrlBtns-wrapper {
  position: absolute;
  right: 0;
  top: 6.4em;
  padding: 0 0 10px 10px !important;
  font-size: 16px !important;
}
.ctrlBtns-wrapper div:first-child {
  margin: 0 10px 0 0;
}
.ctrlBtns-wrapper div {
  margin: 10px 10px 0 0;
}
.ctrlBtns-wrapper button {
  background-color: #141a22a6;
  border: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 20px;
}
.ctrlBtns-wrapper button.clicked {
  background-color: #add;
}

.ctrlBtns-wrapper button:focus {
  border: 1px solid #000 !important;
}

/*----- ol popup ---------*/
.ol-popup {
  position: absolute;
  background-color: white;
  box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  border: 1px solid #cccccc;
  bottom: 12px;
  left: -50px;
  min-width: 450px;
  font-size: 14px;
}
.ol-popup:after,
.ol-popup:before {
  top: 100%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.ol-popup:after {
  border-top-color: white;
  border-width: 10px;
  left: 48px;
  margin-left: -10px;
}
.ol-popup:before {
  border-top-color: cccccc;
  border-width: 11px;
  left: 48px;
  margin-left: -11px;
}
.ol-popup #popup-header {
  text-align: right;
  padding: 5px 10px;
  background-color: #141a22;
  border-radius: 5px 5px 0 0;
}
.ol-popup-closer {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}
.ol-popup-closer:hover {
  text-decoration: none;
  color: #fff;
}
.ol-popup-closer:after {
  content: "X";
}
.ol-popup #popup-content {
  padding: 10px;
  background-color: #141a22a6;
  backdrop-filter: blur(20px);
}
.ol-popup .card-header {
  padding: 0px;
  background-color: #141a22;
}
.ol-popup .card-body {
  padding: 10px;
}
.ol-popup .card-body table {
  margin-bottom: 0;
}
.ol-popup .accordion button {
  padding: 3px 10px;
  color: #fff;
  text-decoration: none;
}

.mousePosition {
  position: fixed;
  top: auto;
  right: auto;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid grey;
  border-radius: 5px;
  padding: 5px 30px;
  background-color: rgba(50, 50, 50, 0.8);
  font-size: 12px;
  color: #ddd;
}

fieldset {
  border: 1px solid #f38800 !important;
  margin-bottom: 25px;
  padding: 10px 15px;
  position: relative;
}

legend {
  width: auto;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;
  border: 1px solid #fdddb4;
  border-radius: 4px;
  padding: 5px 10px 5px 10px;
  background-color: #fdddb4;
}
.secondary-label {
  font-weight: 400 !important;
}
.field-box {
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}
.field-box > label:first-of-type {
  background-color: #e1e1e1;
  width: 100%;
  padding: 5px 10px;
  margin-bottom: 0;
  font-weight: 700;
}
.field-box .field-body {
  padding: 15px;
}
.manmade-causes-box,
.natural-causes-box {
  padding-left: 25px;
}
.floatBlock {
  margin: 0 1.81em 0 0;
  padding-left: 15px;
}

.add_fl_row,
.remove_fl_row {
  background-color: #f38800;
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}
.info-icon {
  font-size: 18px;
  margin-left: 5px;
  color: #0dcaf0;
  position: relative;
  display: inline-block;
}
.tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px 5px;
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 130%;
  font-family: "Montserrat", sans-serif;
}
.tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
  transform: rotate(91deg);
}

.info-icon:hover .tooltiptext {
  visibility: visible;
}

/************** Single publication page ***************/
.sp-type {
  background-color: #fbe0b7;
  color: #000;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 15px;
  display: inline-block;
  margin-top: 25px;
}
.sp-name h1 {
  font-size: 36px;
  font-weight: 700;
  color: #4f4f4f;
  line-height: 1.4em;
  margin-top: 15px;
  margin-bottom: 40px;
}
.sp-image img {
  width: 100%;
  height: auto;
  border: 1px solid #d3dede;
}
.sp-info {
  padding: 0 15px;
}
.sp-info h5 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}
.sp-info p {
  margin-bottom: 40px;
}
.btn-download-sp {
  background-color: #f38800;
  padding: 12px 20px;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.btn-download-sp:hover {
  text-decoration: none;
  color: #fff;
}
.btn-download-sp i {
  margin-right: 5px;
}

.nodata-box {
  text-align: center;
}
.nodata-box img {
  height: 250px;
  margin-bottom: 30px;
}
.nodata-box h1 {
  font-size: 32px;
  font-weight: 700;
  color: #535353;
  margin-bottom: 20px;
}
.nodata-box p {
  margin-bottom: 20px;
}
.nodata-box .btn-goback {
  background-color: #f38800;
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
}

/* start: Measure styling */
.ol-tooltip {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  color: white;
  padding: 4px 8px;
  /* opacity: 0.7; */
  white-space: nowrap;
  font-size: 12px;
}
.ol-tooltip-measure {
  opacity: 1;
  font-weight: bold;
}
.ol-tooltip-static {
  background-color: #414141;
  color: #ffffff;
  border: 1px solid #414141;
}
.ol-tooltip-measure:before,
.ol-tooltip-static:before {
  border-top: 6px solid rgba(0, 0, 0, 0.5);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
  position: absolute;
  bottom: -6px;
  margin-left: -7px;
  left: 50%;
}
.ol-tooltip-static:before {
  border-top-color: #414141;
}
.ol-fullscreen span {
  transform: rotate(45deg);
}
/* end: Measure styling */

.wind-arrow {
  width: 0;
  height: 0;
  border-left: 10px solid red; /* Adjust color and size as needed */
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

#wind-canvas {
  position: absolute;
  left: 0;
  pointer-events: none;
  display: none;
}
#windyMap {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

#map_loader {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  z-index: 1000;
  opacity: 0.75;
}
#map_loader img {
  width: 100px;
  height: 100px;
}

.layer-toggle {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.layer-content {
  flex: 1 1;
  display: flex;
  justify-content: start;
  align-items: center;
}
.layer-content img {
  height: 20px;
  width: auto;
  margin-right: 8px;
  filter: invert(1);
  margin-bottom: 8px;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 16px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: #4caf50;
}

/* input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
} */

input:checked + .slider:before {
  -webkit-transform: translateX(11px);
  -ms-transform: translateX(11px);
  transform: translateX(11px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 50px;
}

.slider.round:before {
  border-radius: 50%;
}

.legend-sidebar {
  position: absolute;
  max-height: calc(100vh - 200px);
  padding: 10px;
  z-index: 2000;
  right: 60px;
  transition: right 0.5s, width 0.5s;
  padding-left: 0;
  width: 250px;
}

#legendsidebar-content {
  /* max-height: calc(100vh - 200px); */
  width: 100%;
  /* overflow: auto; */
  /* -webkit-overflow-scrolling: touch; */
  font-size: 1.1em;
  background: #fff;
}
.legendsidebar-body {
  max-height: calc(100vh - 200px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.legend-item {
  border-bottom: 1px solid #ccc;
  padding: 10px;
}

.legend-item h4,
.legend-item span {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

#lightning_legend img {
  height: 15px;
  width: auto;
  margin-right: 5px;
}
#lightning_legend span {
  font-size: 14px;
  font-weight: 500;
}

.legendsidebar-body::-webkit-scrollbar {
  width: 8px;
}

.legendsidebar-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.legendsidebar-body::-webkit-scrollbar-thumb {
  background: #141a22a6;
  border-radius: 10px;
}

.legendsidebar-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.legendsidebar-body::-webkit-scrollbar-button {
  display: none;
}

.nav-item .ffkn-link {
  /* background-color: #fff; */
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(131, 58, 180, 1),
    rgba(253, 29, 29, 1),
    rgba(69, 226, 252, 1)
  );
  text-decoration: none;
  padding: 5px 20px;
  margin: 5px 0 5px 15px;
  border-radius: 50px;
  position: relative;
  display: block;
  font-weight: 600;
  background-size: 180% 180%;
  animation: gradient-animation 3s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
