.header{
	width: 100%;
	height: 60px;
}

.navbar-text h1 {
    align-text-: middle;
    font-size: 1.4em;
}

.bodyBackground{
  background-color: #f8f8f8;
}

.logo{
	height:50px;
	margin:5px 0px 5px 50px;
}

.splitter{
	height: 5px;
	width: 100%;
	background: linear-gradient(to right, red, #ff8080);
}

.welcomePane{
	width: 100%;
    font-size: 1.2em;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 5px;
}

.welcomePane h1{
	font-size: 1.7em;
    font-weight: normal;
    font-family: 'Source Sans Pro';
}

.mainButton {
  width: 150px;
  height: 150px;
  margin: 10px auto;
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 10px 0 rgba(0,0,0,0.2);
  border: 1px solid lightgrey;
  cursor: pointer;
}

.mainButton h1 {
  text-align: center;
}

.mainButton .iconPane {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 0px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 90px;
  color: red;
  overflow: hidden;
}

.mainButton .generalPane {
  display: flex;
  text-align: center;
  font-size: 1em;
  align-items: center;
  justify-content: center;
  font-family: 'Source Sans Pro';
  font-weight: bold;
  width: 150px;
  height: 75px;
  right: 0;
  box-sizing: border-box;
  padding: 1rem;
  padding-top: 0;
  padding-bottom: 0;
}

.smallBtnsPane{
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.smallBtnsPane ul{
	line-height: 26px;
  padding-left: 0px;
}

.smallBtnsPane li{
	display: inline-block;
  white-space: normal;
  line-height: 21px;
  font-size: 14px;
}

.smallBtnsPane li:not(:last-child):after, .smallBtnsPane li:not(:last-child):after {
  content: ' | ';
  padding: 0 5px;
}

.commentPane{
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.commentPane .commentContent{
	margin-top: 20px;
	margin-left: 20px;
}

.textPane{
  height: 100%;
  padding-right: 1.5rem;
}

.borderRight{
	border-right: 2px solid red;
}

.textPane h5{
	color: red;
}

.hc-red-bg {
	background-color: rgb(45.8, 45.8, 45.8);
    background-image: url("/assets/img/busypdfbanner.png");
    background-size: 100px auto;
}

.red-bg {
    background-color: rgb(225, 0, 5);
    background-size: 100px auto;
}

.socialPane{
  width: 100%;
  text-align: center;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item:not(:last-child) {
  margin-right: 1rem;
}

.list-inline-item {
   display: inline-block;
}

.social-link{
	display: block;
  height: 3rem;
  width: 3rem;
  line-height: 3.3rem;
  font-size: 1.5rem;
  background-color: #1d809f;
  transition: background-color .15s ease-in-out;
  box-shadow: 0 3px 3px 0 rgba(0,0,0,.1);
}

.rounded-circle{
	border-radius: 50%!important;
}

.note-pane{
  width: 100%;
  margin-bottom: 30px;
}

.note-pane h2{
  font-weight: bold;
  font-family: 'Source Sans Pro';
  text-align: center;
}

.note-pane ul {
    list-style: circle;
}

.note-pane div.note-pane-detail {
  background-color: white;
  padding: 1em 2em 1em 2em;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid lightgrey;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.4);
}
.note-pane-detail li {
    padding: 2px;
}
.note-pane.error h2 {
    color: red;
}

.note-pane.error div.note-pane-detail {
    background-color: #ffe6e6 !important;
    color: black;
}

.note-pane.warning div.note-pane-detail {
    background-color: #ffecb3 !important;
    color: black;
}

@keyframes pulse {
  0% {transform: scale(1.1)}
  50% {transform: scale(0.8)}
  100% {transform: scale(1.1)}
}
.faa-pulse.animated,
.faa-pulse.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-pulse {
  animation: pulse 2s linear infinite;
}
.faa-pulse.animated.faa-fast,
.faa-pulse.animated-hover.faa-fast:hover,
.faa-parent.animated-hover:hover > .faa-pulse.faa-fast {
  animation: pulse 1s linear infinite;
}
.faa-pulse.animated.faa-slow,
.faa-pulse.animated-hover.faa-slow:hover,
.faa-parent.animated-hover:hover > .faa-pulse.faa-slow {
  animation: pulse 3s linear infinite;
}

/*collapsible panel*/

.optionsPane{
  margin-bottom: 20px;
}

.label-toggle {
    background-color: rgb(45.8, 45.8, 45.8);
    border-radius: 4px;
    color: white;
    cursor: pointer;
    display: block;
    font-weight: 600;
    font-family: Arial, sans-serif;
    padding: 1rem;
    text-align: center;
    transition: background-color 0.45s ease;
    user-select: none;
    margin-bottom: 0px;
}
.label-toggle:hover {
    background-color: darkgrey;
}
/* A little triangle */
.label-toggle::before {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid currentColor;
    content: '';
    display: inline-block;
    margin: 0 0.4em 0.1em 0;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    transition: transform 0.2s ease;
    vertical-align: middle;
}
.toggle:checked + .label-toggle::before {
    transform: rotate(90deg) translateX(-3px);
    -webkit-transform: rotate(90deg) translateX(-3px);
}
.collapse-inner {
    background-color: white;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    color: rgb(53,73,94);
    font-family: 'Droid Sans Mono', monospace;
    padding: 0.1rem 0.3rem;
    text-align: center;
    border: 1px solid grey;
}
.collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s ease;
}
.toggle:checked + .label-toggle + .collapse-content {
    max-height: 280px;
}
.toggle:checked + .label-toggle {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.optionItem{
  padding: 15px;
  display: flex;
}

.optionsLabelPane{
  width: 50%;
  padding-right: 20px;
}

.optionsLabel{
  padding: 5px;
  float: left;
}

.optionsInputPane{
  width: 50%;
  padding-left: 20px;
}

.optionsInput{
  width: 80px;
  padding: 5px;
  float: left;
  position: relative;

}

.rgbInput{
  width: 55px;
}

/* Remove web-kit numeric spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Remove mozilla numeric spinners */
input[type='number'] {
    -moz-appearance:textfield;
}

.optionsInputLabel{
  width: 25px;
  text-align: center;
  padding: 5px;
  float: left;
  position: relative;
}

.optionsInputLabelWider{
    width: 35px !important;
}

.optionsRGBPane{
  width: 50%;
  padding-left: 0px;
}
/* for debugging */
.pinkbg {
    background-color: lightpink;
}

.busy-menu h2 {
    text-align: center;
    font-size: 2.0em;
    color: red;
}


