/* ------------------- */
/* --- OVERALL CSS --- */
/* ------------------- */
body {
  background-image: url("assets/GMEbg.png");
  font-family: "Quicksand", sans-serif;
  overflow-x: hidden;
}
/* ------------------ */
/* --- NAVBAR CSS --- */
/* ------------------ */
.navbar {
  background-color: #60e2d6;
  width: 100%;
  border-bottom: 1px solid rgb(189, 189, 189);
  position: fixed;
  top: 0;
  z-index: 20;
}
.navbar-logo {
  width: 90px;
  padding-top: 0;
  padding-bottom: 0;
}
.nav-link {
  color: rgb(36, 47, 49);
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
}
#savedJobLink:hover {
  color: white;
  text-decoration: none;
  cursor: pointer;
}
/* --------------------- */
/* -- SEARCH AREA CSS -- */
/* --------------------- */
.push-center {
  margin-top: 35vh;
}
.form-check-label {
    color: rgb(226, 226, 226);
}
#searchCont {
  transition: 0.3s;
}
#searchBtn {
  background-color: #60e2d6;
  border-radius: 15px;
  color: rgb(36, 47, 49);
  border: #60e2d6;
}
#searchBtn:hover {
  background-color: #83fff3;
  transform: scale(1.2);
}
.form-check-input:active, .form-check-input:checked {
  background-color: #60e2d6;
}
.previousSearched{
  position: absolute;
  z-index: 5;
}
.keyword-saved-list {
  min-height: 1rem;
}
.keyword-saved-list:hover {
  cursor:pointer;
  background-color: rgb(221, 221, 221);
}
/* -------------------- */
/* -- CSS ANIMATIONS -- */
/* -------------------- */
.searchBar {
  text-decoration: none;
  background: linear-gradient(
    -45deg, white, white, white,
     rgb(163, 248, 244), #60e2d6, rgb(198, 252, 249),
    white, white, white);
  background-size: 500% 500%;
  position: relative;
  animation: change 4s ease-in-out infinite;
}
.searchButton {
  background: linear-gradient(
    -45deg, white, white, white,
    white, white, white,
    #8ae2d9, #75e2d7, #60e2d6);
  background-size: 500% 500%;
  position: relative;
  animation: change 4s ease-in-out infinite;
}
@keyframes change {
  0% {background-position: 0 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
/* --------------------------- */
/* -- MAIN CARD DISPLAY CSS -- */
/* --------------------------- */
.card {
  height: 250px;
  background: white;
  border-radius: 15px;
  transition: background-color 0.2s ease-out;
}
.card:hover {
  background-color: #60e2d6;
  transform: scale(1.05);
}
.titleLink {
  margin-bottom: 5px;
  color: black;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}
.titleLink:hover {
  text-decoration: underline;
  color: black;
}
.job-link {
  font-weight: bold;
}
.reqList {
  list-style: none;
  padding-left: 0;
}
#jobSearch {
  color: rgb(36, 47, 49);
  font-family: "Quicksand", sans-serif;
}
.saveBtn {
  color:#d5e2e2;
  font-size: 30px;
  line-height:60%;
  width:10%
}

.saveBtn:hover{
  cursor:pointer
}
/* ---------------------- */
/* -- SIDEBAR MENU CSS -- */
/* ---------------------- */
.sidenav {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  background-color: rgba(193, 218, 213, 0.8);
  overflow: hidden;
  padding-top: 80px;
  transition: 1s;
  border: 1px solid rgb(189, 189, 189);
  user-select: none;
}
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
}
.sidenav-inner {
  white-space: nowrap;
  transform: translateX(0px);
}
.sidenav-col {
  display:inline-block;
  vertical-align: top;
}
.sn-dot-container {
  overflow-x: hidden;
  width: 250px;
  margin-top: 6px;
}
.sn-dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: rgb(240, 240, 240);
  border-radius: 50%;
  display: inline-block;
  z-index: 20;
}
.sn-dot-container .active {
  background-color: rgb(86, 202, 183);
}
.savedJobBody {
  border: 1px solid rgb(189, 189, 189);
  border-radius: 5px;
  background: rgb(179, 233, 230);
  width: 250px;
  height: 140px;
  white-space: normal;
  margin: 0.5rem 0;
  padding: 0.5rem 0.5rem;
  position: relative;
  transition: background-color 0.2s ease-out;
  border-radius: 10px;
  }
.savedJobBody:hover {
    background-color: white;
}
.remove-favorite {
    font-size: 2rem;
    text-decoration: none;
    color: #57d3c7;
    position: absolute;
    top: 1px;
    right: 10px;
    transition: color 1s ease-out 100ms;
}
.fav{
color: orange;
}
.nofav{
color:#57d3c7;
}
.remove-favorite:hover {
  color: #83fff3;
  cursor: pointer;
}
/* ----------------------- */
/* -- POPUP MESSAGE CSS -- */
/* ----------------------- */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 20; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
  background-color: rgb(163, 248, 244);
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
}
/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}