.brand {
  font-family: 'Oswald', sans-serif;
}

.user-profile {
  font-size: 1.2em;
}

.standard-form {
  max-width: 500px;
}

.searchBar input {
  background-color: rgba(255,255,255,0.9);
}

/* Loading Screen */
.loadingScreen {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
}

.loadingSpinner {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Scrollbar */
body::-webkit-scrollbar {
	background-color: #343a40;
}

body::-webkit-scrollbar-thumb {
	background-color: #1d2124;
	border-radius: 10px;
	border: 1px solid gray;
}

body::-webkit-scrollbar-thumb:hover {
	background-color: #1d2124;
	border: 1px solid white;
}

body::-webkit-scrollbar-thumb:active {
	background-color: #1d2124;
	border: 1px solid white;
}

body::-webkit-scrollbar-track {
	border:1px #1d2124 solid;
  -webkit-box-shadow:0 0 6px #1d2124 inset;
  box-shadow:0 0 6px #1d2124 inset;
}

.nice-scroll::-webkit-scrollbar {
	background-color: #343a40;
}

.nice-scroll::-webkit-scrollbar-thumb {
	background-color: #1d2124;
	border-radius: 10px;
	border: 1px solid gray;
}

.nice-scroll::-webkit-scrollbar-thumb:hover {
	background-color: #1d2124;
	border: 1px solid white;
}

.nice-scroll::-webkit-scrollbar-thumb:active {
	background-color: #1d2124;
	border: 1px solid white;
}

.nice-scroll::-webkit-scrollbar-track {
	border:1px #1d2124 solid;
  -webkit-box-shadow:0 0 6px #1d2124 inset;
  box-shadow:0 0 6px #1d2124 inset;
}

.profilePic {
  display: inline-block;
  background-color: rgba(52, 58, 64, 0.05);
  text-align: center;
  border-radius: 8px;
}

.profilePicSmall {
  width: 35px;
  height: 35px;
  font-size: 16pt;
}

.profilePicLarge {
  width: 100px;
  height: 100px;
  font-size: 48pt;
}

.profilePhoto {
  border-radius: 8px;
}

.thumbnail {
  max-width: 200px;
  max-height: 200px;
}

.edit-mode-controls {
  position: fixed;
  top: 0px;
  left: 40px;
  width: calc(100% - 80px);
  min-height: 70px;
  border: 1px solid #25292d;
  border-radius: 4px;
  background-color: #f8f9fa;
  font-size: 1.4em;
  z-index: 1039; /* 1040 is for modal backdrop */
}

.pnav {
	margin-bottom: 0px;
}

.ptab {
	padding-top: 18px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
}

@media (min-width: 768px) {
    .ptab {
        border-left: 1px solid #DDD;
        border-right: 1px solid #DDD;
        border-bottom: 1px solid #DDD;
    }
}
