body {
  font-size: 0.875rem;
}

.feather_sidebar {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
  margin-right: 0.8rem !important;
}

/*
 * Sidebar
 */

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100; /* Behind the navbar */
  padding: 48px 0 0; /* Height of navbar */
  /* box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1); */
  transition: all 0.1s ease-in;
}


.toogle-sidebar {
  width: 27px;
  height: 27px;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  left: 7px;
  color: var(--GRAYDARK_COLOR);
  transition: all 0.3s ease;
}

.toogle-sidebar:hover{
  background: rgba(55, 125, 255, 0.2);
  border-radius: 50%;
  color: var(--BID_COLOR);
}

.toogle-sidebar.closed {
  transform: rotate(180deg);
}


@media (min-width: 767.98px) {
  main.closed {
    flex: auto;
    display: block;
    /* margin: 0 0 0 3.5rem !important; */
    margin: 0 0 0 0 !important;
    padding-left: 3.5rem !important;    
    width: 100% !important;
    max-width: 100% !important;
  }

  .sidebar.closed {
    max-width: 45px !important;
  }
  
  h6.closed {
    display: none !important;
  }
  
  ul.nav.closed {
    display: none !important;
  }

}

@media (max-width: 767.98px) {
  .sidebar {
    top: 5rem;
  }
  .toogle-sidebar {
    display: none;
  }
  
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.nav-link{
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  width: 100% !important;
  overflow: hidden !important;
}

.sidebar,
.nav-link {
  font-weight: 500;
  color: #333;
}

.nav-item{
  font-family: sans-serif;  
}

/* #sidebarMenu{
  max-width: 270px;
} */

#sidebarMenu li{
  width: 100%;
}

.sidebar,
.nav-link,
.feather {
  margin-right: 4px;
  /* margin-right: 0.76rem; */
  color: #999;
}

.sidebar,
.nav-link.active {
  color: #007bff;
}

.nav-item.active-stly2{
  background: rgba(47, 92, 151, 0.2) !important;
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  max-width: 95%;
}

.sidebar-sticky > ul > li.nav-item {
  transition: all 0.2s ease-in;
}

.sidebar-sticky > ul > li.nav-item:hover{
  background: rgb(163 163 163 / 20%);
  color: #333333;
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  max-width: 95%;
}

.nav-link.active-stly2 {
  font-weight: bold;
  color: var(--BID_COLOR) !important;
}

.sidebar,
.nav-link:hover,
.feather,
.sidebar,
.nav-link.active,
.feather {
  color: inherit;
}

.sidebar-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
}

/*
 * Content
 */

 
[role="main"] {
  padding: 43px 0 0 0 !important;
}

@media only screen and (max-width: 768px) {
  [role="main"] {
    padding: 78px 0 0 0 !important;
  }
}

/*
 * Navbar
 */

.navbar-brand {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-size: 1rem;
  /* background-color: rgba(0, 0, 0, 0.10); */
}

.navbar {
  font-size: 0.85rem;
  font-weight: 300;
  font-family: sans-serif;
  letter-spacing: 0.01rem;
}

.navbar,
.form-control {
  /* padding: 0.75rem 1rem;
  border-width: 0;
  border-radius: 0; */
}

.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.custom-file-label{
  white-space: nowrap;
  overflow: hidden;
}

.running{
  display: none;
}

#covid19Chart{
  max-width: 1300px;
  margin: auto;
}

.indicators_container{
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
}

.indicators_container>div{
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.indicators_container>div>span.value{
  font-size: 2.3552rem;
  font-weight: 900;
  color: #333;
}

.indicators_container>div>span.title{
  font-weight: bold;
  font-size: 1.09323rem;
  color: #333;
}

.indicators_container>div>span.label{
  font-size: 0.9rem;
  color: var(--BLUE_TAIL_COLOR);
}

.related-content-container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
}

.related-content-container > div {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(45deg, #313647, #5f8597);
  border-radius: 1rem;
  margin-right: 2rem;
  max-width: 300px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  align-self: normal;
  justify-content: center;
}

.related-content-container > div:hover {
  box-shadow: var(--BOX_SHADOW_1) !important;
}

.related-content-container > div > img {
  max-width: 270px;
  max-height: 100%;
  width: 100%;
  transform: translateY(-20px);
  height: 200px;
  transition: all 0.5s ease-in;
}

.related-content-container > div:hover > img{
  transform: translateY(-20px) scale(1.1) !important;
}

.related-content-container > div > h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.related-content-container > div > p {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

.related-content-container > div > div.btn,
.related-content-container > div > a.btn {
  padding: 10px;
  color: #fff;
  max-width: 200px;
  margin: 1rem auto 0rem auto;
  width: 100%;
}

