@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap");
body {
  font-family: "Nunito", sans-serif;
  background-color: #f5f5f5;
}

header {
  height: 100px;
}
header .row {
  align-items: center;
  height: 100px;
}
header .sidebar-top {
  box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.1);
}
header .grouped,
header .grouped > div,
header .nav-top {
  display: flex;
}
@media (max-width: 991px) {
  header .nav-top {
    align-items: center;
  }
  header .nav-top .menu-btn {
    width: 40px;
    margin-left: auto;
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  header .grouped {
    flex-direction: column;
  }
}
header .grouped span {
  font-weight: bold;
  text-transform: uppercase;
}
header .user-name {
  margin-left: 1rem;
}
@media (max-width: 991px) {
  header .user-name {
    margin-left: 0rem;
  }
}
header .label {
  margin-right: 0.5rem;
}
.sidebar,
.sidebar-top {
  background-color: white;
}
@media (max-width: 991px) {
  .sidebar,
.sidebar-top {
    position: absolute;
    left: -100%;
    z-index: 100;
    width: 250px;
    transition: 0.3s;
  }
  .sidebar.show,
.sidebar-top.show {
    left: 0%;
  }
}

.sidebar {
  min-height: calc(100vh - 100px);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}
.sidebar ul {
  list-style: none;
  padding-left: 0;
  padding-top: 2rem;
}
.sidebar ul a {
  display: flex;
  align-items: center;
  color: #585858;
  padding: 0.8rem 0rem;
  text-decoration: none;
}
.sidebar ul a,
.sidebar ul a img {
  transition: 0.2s;
}
.sidebar ul a:hover, .sidebar ul a.active {
  color: white;
}
.sidebar ul a:hover img, .sidebar ul a.active img {
  filter: invert(1);
}
.sidebar ul a:hover {
  background-color: rgba(241, 5, 2, 0.7);
}
.sidebar ul a.active {
  background-color: #F10502;
}
.sidebar ul img {
  width: 20px;
  margin-right: 1rem;
}

@media (max-width: 991px) {
  .main-content {
    height: calc(100vh - 100px);
    max-height: 100vh;
    overflow: auto;
  }
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  visibility: hidden;
}
.overlay.show {
  visibility: visible;
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../img/bg.png");
}
.login-page .form-container {
  background: white;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), -2px 3px 30px rgba(119, 89, 89, 0.015), 5px 5px 8px rgba(0, 0, 0, 0.015);
  padding: 0rem 1.5rem 1.5rem 1.5rem;
}
@media (min-width: 992px) {
  .login-page .form-container {
    margin-bottom: 100px !important;
  }
}
.login-page .portal-title {
  font-size: 1.3rem;
}
.login-page input:read-only {
  background: white;
}

.dashboard-page .a-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  box-shadow: -4px 2px 10px rgba(0, 0, 0, 0.03);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  height: 80px;
}
@media (max-width: 991px) {
  .dashboard-page .a-tile {
    margin-bottom: 1rem;
  }
}
.dashboard-page .a-tile span {
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 3px;
  margin-top: -25px;
  box-shadow: -4px 2px 5px rgba(0, 0, 0, 0.05);
}
.dashboard-page .a-tile img {
  width: 35px;
}
.dashboard-page .a-tile .points {
  font-size: 1.4rem;
  font-weight: 800;
}
.dashboard-page .a-tile.points-available span {
  background: #fb9107;
}
.dashboard-page .a-tile.points-redeemed span {
  background: #ed3f40;
}
.dashboard-page .a-tile.card-number span {
  background: #4aa44c;
}
.dashboard-page .tcs-banner {
  max-height: 400px;
  overflow: hidden;
}

.profile-page label {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0rem;
}
.profile-page input {
  background-color: transparent;
  border: none;
  margin-left: -0.75rem;
}
.profile-page input:read-only {
  background: transparent;
}
.profile-page input:focus {
  outline: none;
  box-shadow: none;
}
.profile-page .col-left,
.profile-page .col-right {
  background: white;
  padding: 2rem 1.5rem !important;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.025);
}
.profile-page .col-right {
  border-left: 1px solid #efefef;
}

.profile-banner {
  background-position: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/profile-bg.jpeg");
  height: 300px;
  color: white;
  padding: 2rem;
  display: flex;
}
@media (max-width: 767px) {
  .profile-banner {
    padding: 1rem;
  }
}
.profile-banner h3 {
  font-weight: bold;
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .profile-banner h3 {
    font-size: 1.3rem;
  }
}
.profile-banner h4 {
  font-size: 1.3rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .profile-banner h4 {
    font-size: 1rem;
  }
}
.profile-banner .grouped {
  margin-top: auto;
}