body {
  background: #fafafa;
  color: #333333;
}

h1, h2, h3, h4, h6 {
  color: #444444;
}

h5 {
  color: #444444;
  border-bottom: 1px solid #e3e3e3;
}

ul {
  margin: 0;
}

.bg-apollo {
  background-color: #00305c;
}

.site-header .navbar-nav .nav-link {
  color: #cbd5db;
  font-size: 20;
  padding: 10px 15px;
}

.navbar-brand{
    font-size: 30;
    text-align: center;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.content-section {
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.article-title {
  color: #444444;
}
a.article-title:link {
  text-decoration: none;
}


.article-content {
  white-space: pre-line;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e3e3e3
}

.article-metadata a:hover {
  color: #333;
  text-decoration: none;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}

th.align_top_right{
  text-align: right;
  vertical-align: top;
}

th.sortOption{
  cursor:pointer;
  text-align: center;
}

td.center-aligned {
  text-align: center;
}

tr.clickableRow {
  cursor: pointer;
}

tr.clickableRow:hover {
  background: #5BCFFB
}

td.no-click {

}

.profile-img-size {
  height: 300px;
  width: 300px;
}

.btn-green{
  color: limegreen;
  background-color: limegreen;
  border-color: limegreen;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.btn-green:hover{
  color: green;
  background-color: green;
  border-color: green;
}

.btn-red{
  color: red;
  background-color: red;
  border-color: red;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.btn-red:hover{
  color: #ce1515;
  background-color: #ce1515;
  border-color: #ce1515;
}

.collapse-inline{
  display: inline-block;
}

.collapsing {
  /* Disable collapse shake animation */
  -webkit-transition: none;
  transition: none;
  display: none;
}

/* Popup container */
.popup {
  position: relative;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  cursor: default;
  visibility: hidden;
  width: 50vw;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 0 0;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 100%;
}


/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

.btn-purple{
  background-color: #9600b1;
  color: white;
  border-color: #9600b1;
}
.btn-purple:hover{
   background-color: #7b0091;
   color: white;
   border-color: #7b0091;
 }

.hidden-bg{
  background: repeating-linear-gradient(
          -45deg,
          #d63cff,
          #d63cff 10px,
          #ababab 10px,
          #ababab 50px
  );
}

.hidden-scrollbar {
  overflow-x: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.hidden-scrollbar::-webkit-scrollbar { /* WebKit */
  width: 0;
  height: 0;
}
