* {
  margin: 0;
  padding: 0;
  /*font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;*/
  font-family: 'Roboto', sans-serif;
}
.header {
  background-color: #f7f6f5;
  color: #000000;
  text-align: center;
  padding: 10px;
  padding-top: 25px;
}
.header p {
  font-size: 32px;
  font-weight: bold;
  user-select: none;
 /* text-transform: uppercase;*/
}

a.bmc-btn {
  min-width: 210px;
  color: #faf7f7;
  background-color: #07843d !important;
  height: 35px;
  border-radius: 12px;
  font-size: 25px;
  font-weight: Normal;
  border: none;
  padding: 0px 24px;
  line-height: 27px;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center;
  font-family: 'Cookie', cursive !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

span.bmc-btn-text {
  font-family: 'Cookie', cursive !important;
}

/* NAVBAR */
.navbar-container {
  text-align: center;
  padding: 10px;
  font-size: 0;
}
.navbar-container ul {
  margin: 0;
  padding: 0;
  text-align: right;
  display: flex;
  flex-direction: row;
}
.navbar-container ul li {
  flex-basis: 20%;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  border-right: 1px solid #707070;
  cursor: pointer;
}
.navbar-container ul li:nth-child(5) {
  border-right: none;
}
.navbar-container ul li p {
  text-decoration: none;
  color: #707070;
  display: inline-block;
  padding: 10px;
  transition: color 0.5s;
  user-select: none;
}
.navbar-container ul li .underline {
  height: 4px;
  background-color: transparent;
  width: 0%;
  transition: width 0.2s, background-color 0.5s;
  margin: 0 auto;
  border-radius: 10px;
}
.navbar-container ul li.active-link {
  pointer-events: none;
}

.navbar-container ul li.active-link .underline {
  background-color: #8e8c89;
  width: 50%;
}
.navbar-container ul li:hover .underline {
  background-color: #707070;
  width: 50%;
}
/* CONTENT */
.content {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
}
.sidebar {
  background-color: #ffffff;
  flex-basis: 20%;
  display: flex;
  text-align: center;
  flex-direction: column;
  height: 60vh;
  border-radius: 0 15px 15px 0;
  user-select: none;
  box-shadow: 2px 1px 6px 0 #00000035;
}
.time_filter {
  padding: 20px;
}
.time_title {
  width: 100%;
  display: flex;
  text-align: left;
  margin-bottom: 15px;
}
.time_title p {
  padding-left: 10px;
  width: 100%;
  color: #0c0c0c;
  font-size: 20px;
  font-weight: 500;
}
.time_option {
  text-align: left;
  margin-bottom: 10px;
  margin-left: 10px;
  position: relative;
}
.time_option input {
  width: 20%;
  opacity: 0;
  cursor: pointer;
}
.time_option .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background: radial-gradient(
    circle,
    rgb(212 205 197) 55%,
    rgba(255, 255, 255, 1) 58%
  );
  border-radius: 50%;
}
.time_option:hover input ~ .checkmark {
  background: #e7e7e7;
  cursor: default;
  pointer-events: none;
}
.time_option input:checked ~ .checkmark {
  background-color: #e8e8e8;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.time_option input:checked ~ .checkmark:after {
  display: block;
}
.time_option .checkmark:after {
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgb(245 245 245) 17%,
    rgb(0 0 0)100%
  );
}
.time_option label {
  color: #000000;
  font-size: 18px;
  cursor: pointer;
}
.time_option.grayed_out label {
  color: #5c5c5c59;
  cursor: default;
  pointer-events: none;
}
.time_option.grayed_out label input {
  color: #5c5c5c59;
  cursor: default;
}
.time_option.grayed_out .checkmark {
  background: #70707070;
}
.time_option.grayed_out:hover .checkmark {
  background: #707070;
  cursor: default;
}

.main_content {
  flex-basis: 75%;
  margin: 0 auto;
}
.main_content p {
  margin-bottom: 10px;
}
.main_content div {
  overflow: auto;
  max-height: 58vh;
  border-radius: 10px;
}
.main_content table {
  border-collapse: collapse;
  width: 100%;
  background-color: #a19c9c;
  overflow: hidden;
}
.main_content table tr th {
  border-radius: 10px 10px 0 0;
  color: #ffffff;
  font-weight: 500;
}
.main_content table tr td {
  background-color: #ffffff;
  color: #707070;
  font-weight: 500;
  padding: 5px 30px;
}
.main_content table tbody tr th:nth-child(1) {
  text-align: left;
  padding: 12px 30px;
}
.main_content table tbody tr th:nth-child(2) {
  text-align: right;
  padding: 12px 30px;
}
.main_content table tbody tr:nth-child(odd) td {
  background-color: #e8e8e8;
}
.main_content table tr td:nth-child(1) {
  text-align: left;
}
.main_content table tr td:nth-child(2) {
  text-align: right;
}

@media only screen and (max-width: 980px) {
  .main_content table tr td {
    padding: 5px 10px;
  }
  .main_content table tbody tr th:nth-child(1) {
    padding: 12px 10px;
  }
  .main_content table tbody tr th:nth-child(2) {
    padding: 12px 10px;
  }
  .time_filter {
    padding: 20px 10px;
  }
  .time_title p {
    font-size: 16px;
    padding-left: 5px;
  }
  .navbar-container ul li {
    font-size: 14px;
  }
  .navbar-container ul li.active-link .underline {
    width: 70%;
  }
  .navbar-container ul li:hover .underline {
    width: 70%;
  }
}
@media only screen and (max-width: 500px) {
  .main_content {
    flex-basis: 60%;
  }
  .sidebar {
    flex-basis: 27%;
  }
  .content {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1300px) {
  .sidebar {
    flex-basis: 15%;
  }
  .main_content {
    flex-basis: 80%;
  }
}