:root {
  --primary-color: #000000;
  --secondary-color: #fff;
  --jumbo-prime: #191919;
  --prime-header: white;
  --prime-text: #f7faff;
  --prime-link: #b2c8ff;
  --redColor: rgba(244,67,54,1);
  --blueColor:rgba(33,150,243,1);
}

/* LUX Redo's */
/* We'll redo this first. */
body {
  background-color: var(--primary-color);
}

body h1, body h2 {
  color: var(--prime-header);
}

body p {
  color: var(--prime-text);
}

a {
  color: var(--prime-link);
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

.nav-breadcrumb {
  background-color: var(--primary-color);
  border: 0;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: var(--jumbo-prime);
  border-radius: 0
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem
  }
}

/* End LUX Redo's */

.dropdown-menu {
  border-bottom-left-radius: 5%;
  border-bottom-right-radius: 5%;
}

.story-item {
  border-style: solid;
  border-width: 3px 10px;
  border-color: #000000;
  margin-top: 20px;
  margin-bottom: 20px;
}

.story-item h1 {
  text-align: center;
}

.story-item h6 {
  text-align: center;
  color: #1a81ef;
}

.story-item p {
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
}

/* Lard Container */

.lard {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #000;
  -webkit-background-clip: padding-box;
  background: none;
  background-image: none;
  background-clip: padding-box;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  border-bottom: 2px solid #7289DA;
  outline: none;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

.lard::-ms-expand {
  background-color: transparent;
  border: 0;
}

.lard:focus {
  color: #444;
  background-color: #fff;
  border-color: #739ac2;
  outline: none;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(55, 90, 127, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(55, 90, 127, 0.25);
}

.lard::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

.lard::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.lard:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

.lard::placeholder {
  color: #999;
  opacity: 1;
}

.lard:disabled, .lard[readonly] {
  background-color: #ebebeb;
  opacity: 1;
}


/* Image Pol */

select.lard:not([size]):not([multiple]) {
  height: calc(2.15625rem + 2px);
}

select.lard:focus::-ms-value {
  color: #444;
  background-color: #fff;
}

div.polaroid {
  display: block;
  margin: auto;
  width: 50%;
  background-color: inherit;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 25px;
}

div.poller {
  text-align: center;
  padding: 10px 20px;
}

.user-image {
  padding: 5px;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 5%;
}

.image-rounded-left {
  float: left;
  padding: 5px;
  width: 45%;
  height: 45%;
  border-radius: 5%;
}

.boxout {
  outline: solid;
  outline-color: #000000;
}

.add-shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.add-curve-left {
  border-top-left-radius: 50px 20px;
  border-bottom-left-radius: 50px 20px;
}

.add-curve-left {
  border-top-right-radius: 50px 20px;
  border-bottom-right-radius: 50px 20px;
}

.add-curve-top {
  border-top-left-radius: 50px 20px;
  border-top-right-radius: 50px 20px;
}

.add-curve-bottom {
  border-bottom-left-radius: 50px 20px;
  border-bottom-right-radius: 50px 20px;
}

.add-curve {
  border-radius: 50px 20px;
}

/* Animations */

@keyframes rain-text {
  0% {
    color: red;
  }
  10% {
    color: green;
  }
  20% {
    color: blue;
  }
  30% {
    color: yellow;
  }
  40% {
    color: purple;
  }
  50% {
    color: orange;
  }
  60% {
    color: lime;
  }
  70% {
    color: navy;
  }
  80% {
    color: black;
  }
  70% {
    color: white;
  }
  80% {
    color: silver;
  }
  90% {
    color: purple;
  }
  100% {
    color: red;
  }
}

@keyframes rain-border {
  0% {
    border-color: red;
  }
  10% {
    border-color: green;
  }
  20% {
    border-color: blue;
  }
  30% {
    border-color: yellow;
  }
  40% {
    border-color: purple;
  }
  50% {
    border-color: orange;
  }
  60% {
    border-color: lime;
  }
  70% {
    border-color: navy;
  }
  80% {
    border-color: black;
  }
  70% {
    border-color: white;
  }
  80% {
    border-color: silver;
  }
  90% {
    border-color: purple;
  }
  100% {
    border-color: red;
  }
}

.rain-text {
  animation-name: rain-text;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.rain-border {
  border: 3px;
  animation-name: rain-border;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

/* Other cutom things. */

.c-modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.c-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.c-modal-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.c-modal-close:hover, .c-modal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Nav Bar */

#navbar {
  overflow: hidden;
  background-color: #333;
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
  padding: 14px 16px;
}

#navbar a {
  transition: all .4s ease-in;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
  color: #f2f2f2;
  font-size: 17px;
}

#navbar a:hover {
  color: #f1f1f1 !important;
  transform: scale(1.1) !important;
}

.container {
  padding: 16px;
}

.sticky {
  position: fixed;
  z-index: 998;
  top: 0;
  width: 100%;
}

.sticky + .container {
  padding-top: 60px;
}

/* Navigation */

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
/* Login Page Extras */

.sheet-container {
  display: table !important;
  width: 100% !important;
}

.sheet-col {
  display: table-cell !important;
  padding: 15px !important;
  transition: all .3s ease-in !important;
}

/* Account CSS */
.userProfile: {
  padding: 2px;
  display: block;
}

.userProfile .userTextHead: {
  text-align: center;
}

.userProfile .userTextMain: {
  text-align: left;
}

table, td, th {
    border: 1px solid #ddd;
    text-align: left;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 15px;
}

.resultMessage {
  background: 0 0;
  background-color: rgb(0, 0, 0);
  border: 3px;
  border-radius: 5px;
  border-color: rgb(255, 255, 255);
  width: 100%;
  padding: 20px;
  height: auto;
}

.resultMessage h2 {
  text-align: center;
  padding: 10px;
  color: rgb(25, 25, 25);
}

.resultMessage p {
  text-align: justify !important;
  padding: 5px;
  color: rgb(255, 255, 255);
}


.navy .topnav {
    background-color: #333;
    overflow: hidden;
}

.navy .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.navy .topnav a:hover {
    background-color: #ddd;
    color: black;
}

.navy .active {
    background-color: #4CAF50;
    color: white;
}

.navy .topnav .icon {
    display: none;
}

.navy ul {
    z-index: 100;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0;
    width: 100%;
}

.navy li {
  z-index: 100;
    float: left;
}

.navy li a {
  z-index: 100;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navy li a:hover:not(.active) {
  z-index: 100;
    background-color: #111;
}

.navy .active {
  z-index: 100;
    background-color: #4CAF50;
}

.primaryHeaders {
  color: var(--prime-header) !important;
}
/* --primary-color: #000000;
--secondary-color: #fff;
--jumbo-prime: #191919;
--prime-header: white;
--prime-text: #f7faff;
--prime-link: #b2c8ff; */

/* collapse */
.admin-collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.admin-collapsible-active, .admin-collapsible:hover {
  background-color: #555;
}

.admin-collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.admin-collapsible-active:after {
  content: "\2212";
}

.admin-collapsible-content {
  padding: 0 18px;
  padding-bottom: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

/* scroller */
::-webkit-scrollbar{
  width:10px;
  background-color:#191919;
}
::-webkit-scrollbar:horizontal{
  height:10px;
}
::-webkit-scrollbar-track{
  border:1px #191919 solid;
  border-radius:0px;
  -webkit-box-shadow:0 0 6px #191919 inset;
}
::-webkit-scrollbar-thumb{
  background-color:#f05837;
  border:1px solid #191919;
  border-radius:0px;
}
::-webkit-scrollbar-thumb:hover{
  background-color:#f05837;
  border:1px solid #191919;
}
::-webkit-scrollbar-thumb:active{
  background-color:#f05837;
  border:1px solid #191919;
}
.iframe-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-logo {
  float: left;
  max-width: 50px;
  height: 1.5rem;
  border-radius: 15%;
}
div.vertical-line{
  width: 0px;
  height: 100%;
  float: left;
  border: 1px inset;
}

/* Login Area */

.login-container{
    margin-top: 5%;
    margin-bottom: 5%;
  }
  .login-form{
    padding: 9%;
    background:#191919;
  }
  .login-form h3{
    text-align: center;
    margin-bottom:12%;
    color:#fff;
  }
  .signup-form {
    padding: 9%;
    background: #800000;
  }
  .signup-form h3{
    text-align: center;
    margin-bottom:12%;
    color: #fff;
  }
  .login-btn {
    font-weight: 600;
    width: 50%;
    color: #191919;
    background-color: #f05837;
    border: none;
    padding:2%;
  }
  .signup-btn {
    font-weight: 600;
    width: 50%;
    color: #f05837;
    background-color: #191919;
    border: none;
    padding:2%;
  }

/* Icons I Totally Didnt get from condepen */
.flex-center {
  width: 100%;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.icon-3d {
  padding: 10px;
  color: #fff;
}
.icon-3d:hover {
  -webkit-animation: icon3d 320ms infinite;
  animation: icon3d 320ms infinite;
}

@keyframes icon3d {
  0% {
    text-shadow: 5px 4px var(--redColor), -5px -6px var(--blueColor);
  }
  25% {
    text-shadow: -5px -6px var(--redColor), 5px 4px var(--blueColor);
  }
  50% {
    text-shadow: 5px -4px var(--redColor), -8px 4px var(--blueColor);
  }
  75% {
    text-shadow: -8px -4px var(--redColor), -5px -4px var(--blueColor);
  }
  100% {
    text-shadow: -5px 0 var(--redColor), 5px -4px var(--blueColor);
  }
}

.collapser {
  background-color: #f05837;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
}
.collapser.active, .collapser:hover {
  background-color: #f05837;
}
.colContent {
  padding: 0px 18px;
  background-color: #191919;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.collapseHeader {
  width: 100%;
  background: #f05837;
  border: solid 2px #f05837;
}
.collapseContent {
  display: none;
}
