@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;600;700;800;900&display=swap");
@import url("./font-util.css");

body {
  background-color: #eee !important;
  font-family: "Inter";
}
.sl-1 {
  color: #00425a;
  cursor: pointer;
}
.sl-1:hover {
  color: #31c6d4;
}
a {
  text-decoration: none !important;
}
.rounded {
  border-radius: 5px !important;
}
.shadow {
  box-shadow: 0px 0px 10px #ddd !important;
}
.bordered {
  border: 1px solid #ddd !important;
}
.hover {
  transition: 0.2s ease-in-out;
}
.hover:hover {
  box-shadow: 0px 0px 15px #ddd;
}
.fixed {
  z-index: 1000;
  width: 100%;
  box-shadow: none !important;
  position: fixed;
  top: 0;
}
.navbar {
  background-color: #0093ab !important;
  margin: 0px !important;
  padding: 0px !important;
}
.navbar-nav .nav-item {
  transition: all 0.3s ease-in;
  color: white !important;
  font-weight: 600;
  padding: 0px 20px;
}
.navbar-nav .nav-item:hover {
  background-color: white;
  color: red !important;
}
.navbar-nav .nav-item .nav-link {
  color: #f6f6f6 !important;
}
.navbar-nav .nav-item .nav-link:hover {
  color: #25316d !important;
}

.nav-item .dropdown-toggle:focus,
.nav-item .dropdown-toggle:active.focus,
.nav-item .dropdown-toggle.active.focus,
.nav-item .dropdown-toggle:active:focus {
  color: #25316d !important;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus,
.dropdown-toggle {
  outline: none !important;
  box-shadow: none !important;
}

.btn-grad {
  background-image: linear-gradient(
    to right,
    #77a1d3 0%,
    #79cbca 51%,
    #77a1d3 100%
  );
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  display: inline-block;
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.home-stats-box {
  background: linear-gradient(146deg, #f07171, #7cbf5d, #33bbb6);
  background-size: 600% 600%;

  -webkit-animation: gradient 22s ease infinite;
  -moz-animation: gradient 22s ease infinite;
  animation: gradient 22s ease infinite;
}
.hero-info-panel {
  display: block;
  position: absolute;
  left: 12%;
  top: 20px;
  height: 100%;
  padding: 20px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
@-webkit-keyframes gradient {
  0% {
    background-position: 0% 18%;
  }
  50% {
    background-position: 100% 83%;
  }
  100% {
    background-position: 0% 18%;
  }
}
@-moz-keyframes gradient {
  0% {
    background-position: 0% 18%;
  }
  50% {
    background-position: 100% 83%;
  }
  100% {
    background-position: 0% 18%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 18%;
  }
  50% {
    background-position: 100% 83%;
  }
  100% {
    background-position: 0% 18%;
  }
}

.sidebar-btn {
  background-color: #fff;
  border-radius: 7px;
  border: 1px solid #ddd;
  padding: 7px 16px;
  transition: 0.2s ease-in;
  cursor: pointer;
  font-weight: 600 !important;
}
.sidebar-btn:hover {
  background-color: #25316d !important;
  color: #f6f6f6;
}

.panel-header {
  background-color: #25316d;
  color: #f6f6f6;
  padding: 10px 20px;
  border-radius: 7px;
}

.journal-nav {
  background-color: #0093ab;
  color: #f6f6f6;
}
.journal-nav-item {
  border-top: 2px solid #ddd;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.journal-nav-item:hover {
  background-color: #fff;
  color: #2a0944;
}
.journal-nav-item .active {
  background-color: #fff;
  color: #2a0944;
}

.sidebar-panel {
  background-color: white;
  border: 1px solid #ddd;
}
.sidebar-panel .header {
  border-left: 10px solid #1cd6ce;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1.2rem;
}

.issue-box {
  text-align: center;
  background-color: #f6f6f6;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.issue-box:hover {
  box-shadow: 0px 0px 10px #ddd;
  border: 1px solid #0093ab;
  background-color: #0093ab;
  color: #fff;
}
.search-field:focus {
  outline:0px !important; 
  box-shadow: none !important;
}


