@charset "UTF-8";
/*
Theme Name: grot
Description: Private theme for Last Gasp
Author: Logan Knight
Text Domain: grot
*/

html, body, div, span, p, h1, h2, h3, h4, h5,h6,
a, dl, dt, dd, ol, ul, li, form, label,
table, tbody, tfoot, thead, tr, th, td,
article, footer, header, nav, section{
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
*{
  box-sizing: border-box;
}
main, article, footer, header, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
pre {
  white-space: normal;
}
textarea {
  max-width: 100%;
}

ol.bullets li {
  list-style: inside;
}

/* WordPress Origin Class */

.wp-caption{
  max-width: 100%;
}
.wp-caption-text{
  text-align: left;
}
.screen-reader-text{
}
.gallery-caption{
}
.bypostauthor{
}
.sticky{
}
.alignright{
  float: right;
}
.alignleft{
  float: left;
}
.aligncenter{
  clear: both;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.nodisplay {
  display: none;
}

.twocolumns {
  column-count: 2;
  -webkit-column-count: 2;
  -webkit-column-gap: 0px;
  -moz-column-count: 2;
}

@media screen and (max-width:768px) {
  .alignright,
  .alignleft,
  .aligncenter{
    float: none;
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}

.large {
  display: block;
}
@media screen and (max-width:590px) {
  .large {
    display: none;
  }
}

.small {
  display: block;
}
@media screen and (min-width:591px) {
  .small {
    display: none;
  }
}

/* Fonts */

@font-face {
  font-family: 'icons';
  src:  url('fonts/icons.eot?dybrsv');
  src:  url('fonts/icons.eot?dybrsv#iefix') format('embedded-opentype'),
    url('fonts/icons.ttf?dybrsv') format('truetype'),
    url('fonts/icons.woff?dybrsv') format('woff'),
    url('fonts/icons.svg?dybrsv#icons') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-d20lines:before {
  content: "\e901";
}
.icon-d4:before {
  content: "\e904";
}
.icon-d6:before {
  content: "\e905";
}
.icon-d8:before {
  content: "\e906";
}
.icon-d10:before {
  content: "\e907";
}
.icon-d12:before {
  content: "\e908";
}
.icon-d20:before {
  content: "\e909";
}
.icon-d100:before {
  content: "\e90a";
}
.icon-discord:before {
  content: "\e900";
  color: #7289da;
}
.icon-close:before {
  content: "\e902";
}
.icon-menu:before {
  content: "\e903";
}
.icon-theme:before {
  content: "\e90b";
}
.icon-comments:before {
  content: "\e96b";
}
.icon-search:before {
  content: "\e986";
}
.icon-plus:before {
  content: "\ea0a";
}
.icon-google:before {
  content: "\ea88";
}
.icon-google-plus:before {
  content: "\ea8b";
}
.icon-instagram:before {
  content: "\ea92";
}
.icon-tumblr:before {
  content: "\eab9";
}

/* Animations */
@keyframes loading_animation {
	50% { transform: scale(1.08) translateY(-50%); }
}
.pulse {
	animation-name: loading_animation;
	animation-duration: 2000ms;
	transform-origin:70% 70%;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes spin_counterclockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(-359.999deg); }
}
@keyframes spin_clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(359.999deg); }
}

@-webkit-keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Common Style */
body {
  line-height: 1.7; /*Set the base line height of the site.*/
  font-size: 18px; /*Set the base font size of the site.*/
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 700;
  background: #FFF;
  color: black; /*Set the base color of the site.*/
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (max-width:590px) {
  body {
    font-size: 12px !important;
  }
}

#backgroundImage {
  position: absolute;
  top: 0;
  padding: 20px 0 0 0;
  width: 100%;
  text-align: center;
  z-index: 0;
}
#backgroundImage img {
  width: 40%;
}
@media screen and (min-width:1025px) {
  #backgroundImage img {
    display: none;
  }
}
@media screen and (max-width:1024px) {
  #backgroundImage img {
    width: 100%;
  }
}

header {
  position: relative;
  width: 50%;
  margin: auto;
}
@media screen and (max-width:1024px) {
  header {
    width: 100%;
  }
}
#headerLogo {
  position: relative;
  width: 225px;
  margin: 30px auto 0;
  z-index: 1;
}
@media screen and (min-width:1025px) {
  #headerLogo {
    display: none;
  }
}
@media screen and (max-width:590px) {
  #headerLogo {
    width: 150px;
  }
}

.pageNav {
  position: relative;
  width: 100%;
  top: 0;
  margin: 0 0 60px 0;
  padding: 0 20px;
  text-align: center;
}
@media screen and (max-width:1024px) {
  .pageNav {
    margin: 0;
  }
}
@media screen and (max-width:590px) {
  .pageNav img {
    width: 70%;
  }
}

/*Headings*/
h1, h2, h3, h5, h6 {
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
}
/* Single Post Heading */
h1 {
  font-size: 3.66em;
  line-height: 1;
  text-align: center;
}
/* Multiple Post Headings */
h2 {
  font-size: 2.66em;
  line-height: 1;
  text-align: center;
}
/* style first h2 on page as h1 */
#content .postWrapper:first-child h2:first-of-type {
  font-size: 3.66em;
}
h1 a, h2 a {
  color: black;
}
h3 {
  font-size: 2.66em;
}
/*Reviews*/
h4 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.66em;
  font-style: italic;
  margin: 20px 0;
}
/*post subheadings*/
h5 {
  font-size: 2em;
  color: #666;
}
/*read more*/
h6 {
  font-size: 2em;
  text-align: right;
}

.light {
  font-weight: 400;
}

strong {
  color: #d45ad3;
}

/*Reduce the width of the image to fit the width of the parent element.*/
img{
  max-width: 100%;
  height: auto;
}

.wp-block-image.is-resized {
  width: 100%;
  margin: 0px;
}

/*Set the base color of the link.*/
a{
  color: #a5e212;
  text-decoration: none;
}

a:hover{
  text-decoration: none;
  color: #d45ad3;
}

a.anchor {
  color: black;
}

/*Transpare image when mouseover the img element surrounded by a tag.*/
a:hover img{
  opacity: 1;
}

/*Attach this class to the parent element when you want to cancel float.*/
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

/*Attach this class to the element you want to display as a button.*/
.button {
  padding: 20px 40px;
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  font-size: 1em;
  border: none;
  background: black;
  color: white;
  margin: 40px 0;
}
  .button:hover {
    background: #a5e212;
  }

/*Set the style when mouseover the button.*/
.button:hover{
  cursor: pointer;
  opacity: 0.8;
}

/*Selects*/
select {
  border: 1px solid black;
  text-align: center;
  padding: 20px;
  font-family: fjalla one;
  text-transform: uppercase;
  font-size: 1em;
}

/*text area*/
textarea {
  font-family: inherit;
  padding: 20px;
}

/*Determine the width of the entire content.*/
.container{
  width: 1020px; /*Set the width of the entire content.*/
  max-width: 100%;
  margin: 0 auto 0 auto;
}

@media screen and (max-width:768px) {
  .container{
    width: 100%;
  }
}

/*================ Modules | Collapse Toggle ================*/

.generatorcreditswrap {
	padding: 0 0 0 5px;
	height:100%;
	position: relative;
	float: left;
	z-index: 2;
	opacity: .95;
	text-indent: 0;
	text-align: center;
}

label.collapse {
font-weight: normal;
margin: 0;
text-align: left;
word-wrap: break-word;
text-indent: 0;
text-align: center;
cursor: pointer;
}

.collapse-input {
  display: none;
}

.collapsible {
  overflow: hidden;
  transition: .7s ease;
}

.collapse-input ~ .collapsible {
    max-height: 0;
    margin: 0;
}

.collapse-input:checked ~ .collapsible {
  max-height: inherit;
}

/* Sidebar */
#menucontainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 25%;
  transition: 1s cubic-bezier(.45,.05,.55,.95);
  z-index: 1;
}
@media screen and (max-width:1024px) {
  #menucontainer {
    top: calc(-100vh + -70vw);
    width: 100%;
    z-index: 1000;
  }
}

#menuarchivecontainer {
  position: fixed;
  top: calc(-100vh + -70vw);
  left: 0;
  width: 25%;
  transition: 1s cubic-bezier(.45,.05,.55,.95);
  z-index: 2;
}
@media screen and (max-width:1024px) {
  #menuarchivecontainer {
    width: 100%;
    z-index: 1001;
  }
}

#topposts {
  font-size: .6em;
}

.hidescrollbar {
  position: relative;
  overflow: hidden;
  height: 100vh;
  color: #a5e212;
}

.sidebar-wrap {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 17px);
  height: 100vh;
  padding: 20px 40px 80px 40px;
  text-align: center;
  font-family: 'Fjalla One', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 1.66em;
  color: inherit;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width:591px) and (max-width:1024px) {
  .sidebar-wrap {
    padding: 20px 80px;
  }
}
@media screen and (max-width:590px) {
  .sidebar-wrap {
    padding: 20px 50px;
  }
}

.sidebarLogo {
  padding: 10px 0 20px 0;
}
.sidebarLogo img {
  width: 225px;
}
@media screen and (max-width:590px) {
  .sidebarLogo img {
    width: 150px;
  }
}

#menuarchivecontainer ul #archivemonthly {
  padding: 18px 0 80px 0;
}

#sidebarNav, #menuarchivecontainer, .openmenuarchive {
  line-height: 1.2;
}
#sidebarNav ul li, #menuarchivecontainer ul li, .openmenuarchive {
  padding: 18px 0;
}
#sidebarNav ul li a {
  color: inherit;
}
#sidebarNav ul li:hover, .openmenuarchive:hover {
  background-color: #a5e212;
  color: black;
}

#menuarchivecontainer select {
  border-width: 1px;
  border-style: solid;
  border-color: #a5e212;
  color: #a5e212;
  background: black;
  width: 100%;
  margin: 36px 0 0 0;
}

#monthlyarchive {
  text-align: left;
  font-size: .6em;
}
#monthlyarchive ul li {
  padding: 5px;
}

.openmenu, .closemenu, .closemenuarchive {
  position: absolute;
  background: none;
  border: 0px none;
  font-size: 3em;
  color: inherit;
  cursor: pointer;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 0 10px;
}
@media screen and (min-width:1025px) {
  .closemenu {
    display: none;
  }
  .openmenu {
    z-index: 0;
  }
}
.openmenuarchive {
  cursor: pointer;
}

.goredrips {
  margin-top: -10px;
}

/* Sidebar Search */
#searchWrap {
  position: relative;
  width: 100%;
  text-align: center;
  height: 60px;
}

#searchForm {
  position: absolute;
  top: 0;
  margin: auto;
  width: 100%;
}
#searchLabel {
  height: 60px;
  position: absolute;
  top: 0;
  width: 100%;
  padding-top: 7px;
}

.searchField {
  width: 60%;
  height: 60px;
  background-color: transparent;
  border: 0px none;
  text-align: center;
  text-indent: 2.23em;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
  color: transparent;
  transition: .5s;
  padding: 0 20px;
}
.searchField:active, .searchField:focus {
  background-color: black;
  color: #a5e212;
}

#search-expandForm {
  width: 0px;
  margin: auto;
  padding: 0 0 80px 0;
  overflow: hidden;
  transition: .5s;
}

.search-expandField {
  line-height: 2.4;
  background-color: #a5e212;
  border: 0px none;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
  text-align: center;
  color: black;
  padding: 0 20px;
  width: 100%;
}

#searchsubmit, .search-expandTrigger {
  height: 60px;
  width: 60px;
  font-size: 1em;
  color: inherit;
  background: none;
  border: 0px none;
  cursor: pointer;
}

/* Dice Roller */
#diceroller {
  position: fixed;
  right: -25%;
  top: 0;
  width: 25%;
  transition: 1s cubic-bezier(.45,.05,.55,.95);
}
#diceroller-info {
  position: relative;
  width: 70%;
  padding: 30px 0 0 0;
}
  #diceroller-info p {
    font-size: .8em;
    font-weight: 400;
  }
#diceOptions {
  position: relative;
  padding: 1em 0 0 0;
  text-align: center;
  width: 100%;
}
  #diceOptions label {
    cursor: pointer;
  }
.diceOption {
  font-size: 5vw;
  margin: .1em;
  cursor: pointer;
  display: inline-flex;
  transition: .7s ease-in-out;
}
#diceroller-result {
  position: relative;
  width: 100%;
  text-align: center;
  font-family: 'Fjalla One', sans-serif;
  font-size: 4em;
  padding: 20px 0 0 0;
}

.diceroller-Input {
  display: none;
}
label.diceroller-slide {
position: fixed;
right: 10px;
top: 10px;
font-size: 6em;
cursor: pointer;
z-index: 4;
}
  label.diceroller-slide:hover {
    color: #d45ad3;
  }
#diceroller-slide:checked ~ label.diceroller-slide {
  animation-name: spin_counterclockwise;
	animation-duration: 450ms;
	animation-iteration-count: 2;
	animation-timing-function: linear;
}
#diceroller-slide:checked ~ #diceroller {
  right: 0;
}

#diceroller-plus:checked ~ label.diceroller-plus {
  color: #d45ad3;
}

@media screen and (max-width:1024px) {
  label.diceroller-slide {
    position: absolute;
    font-size: 3em;
  }
  .diceOption {
    font-size: 7em;
  }
  #diceroller-result {
    font-size: 8em;
  }
  #diceroller {
    height: 100vh;
    width: 100%;
    padding: 20px;
    right: -100%;
    background: white;
    z-index: 3;
  }
  #diceroller-info {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  #diceroller-plus:checked ~ label.diceroller-slide {
    position: fixed;
  }
}
@media screen and (min-width:1025px) {
  #diceroller h2 {
    text-align: left;
  }
}
@media screen and (max-width:590px) {
  .diceOption {
    font-size: 4em;
  }
  #diceroller-result {
    font-size: 6em;
  }
}

#dicerollerpage {
  padding: 0 0 60px 0;
}

.forcefixed {
  position: fixed !important;
}

/* Main Content */
#content {
  width: 50%;
  min-height: 92vh;
  margin: auto;
  position: relative;
  z-index: 1;
  padding: 0 40px 20px 40px;
  transition: all .2s linear;
}
@media screen and (max-width:1024px) {
  #content {
    width: 100%;
    min-height: 60vh;
  }
}
@media screen and (max-width:590px) {
  #content {
    padding: 0 20px 0 20px;
  }
}

#posts img {
  width: 100%;
  border: 0px none !important;
}

.postDate {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.33em;
  text-align: center;
}

.postContent ul li {
list-style: disc outside;
margin-left: 2em;
margin-bottom: 5px;
text-indent: 0px;
page-break-inside: avoid;
-webkit-column-break-inside: avoid;
}
.postContent ol li {
list-style: decimal;
margin-left: 2em;
margin-bottom: 5px;
text-indent: 0px;
page-break-inside: avoid;
-webkit-column-break-inside: avoid;
}
.postContent a {
  font-weight: 700;
}

.wp-caption-text {
  text-align: center;
  font-weight: 400;
  font-size: .8em;
  margin-bottom: 15px;
}

#pagination {
  text-align: center;
  padding: 40px 0 40px 0;
}

/*Tags and Collapse Labels*/
.tags {
  font-weight: 400;
  padding: 20px 0 0 0;
}
.tags a, #shop .collapse {
  background: #a5e212;
  padding: 6px 10px;
  position: relative;
  line-height: 1;
  margin: 10px 15px;
  display: inline-block;
  color: white;
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
}
#shop .collapse {
  background: #d45ad3;
}
  .tags a:hover, #shop .collapse:hover {
    background: black;
  }
.tags a::before, #shop .collapse::before {
  content: "";
  display: block;
  border: 15px solid transparent;
  border-left-width: 0;
  border-right-color: #a5e212;
  position: absolute;
  top: 0;
  left: -15px;
}
#shop .collapse::before {
  border-right-color: #d45ad3;
}
  .tags a:hover::before, #shop .collapse:hover::before {
    border-right-color: black;
  }
@media screen and (max-width:590px) {
  .tags a, #shop .collapse {
    margin: 5px 10px;
  }
  .tags a::before, #shop .collapse::before {
    border: 12px solid transparent;
    border-left-width: 0;
    border-right-color: #a5e212;
    left: -12px;
  }
  #shop .collapse::before {
    border-right-color: #d45ad3;
  }
}

/* Search */
.searchResult {
  padding: 0 20px 20px 20px;
  text-align: center;
}

/* Comments */
#respond {
  font-weight: 400;
}

.comments {
  margin: 0 0 20px 0;
}

.comments .icon-comments {
  color: #a5e212;
  margin: 0 0 0 10px;
}

.comment-body {
  margin: 0 0 80px 0;
}
.comment-body p {
  font-weight: 400;
}

ol.commentlist ul.children .comment-body {
  margin-left: 2em;
}

.fn {
  font-family: 'Fjalla One', sans-serif;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.66em;
  font-weight: normal;
}

.comment-meta.commentmetadata {
  width: 50%;
  position: relative;
  float: left;
  font-size: .8em;
}

.reply {
  width: 50%;
  position: relative;
  text-align: right;
  float: right;
  text-transform: uppercase;
  font-size: .8em;
}

.logout {
  font-size: .8em;
  text-transform: uppercase;
  font-weight: 700;
}

#comment {
  font-family: inherit;
  font-size: inherit;
  padding: 20px;
  height: 250px;
}

.comment-form-author {
  display: block;
  width: 47.5%;
  float: left;
  margin: 0 0 20px 0;
}
.comment-form-email {
  display: block;
  width: 47.5%;
  float: right;
  margin: 0 0 20px 0;
}
.comment-form-url {
  display: block;
  width: 100%;
  float: left;
  margin: 0 0 20px 0;
}
input#author, input#email, input#url {
  height: 80px;
	width: 100%;
  padding: 20px;
  background: #0000001a;
  border: 0px none;
  color: white;
  text-align: left;
  box-sizing: border-box;
  margin: 5px 0;
}
  input#author:focus, input#email:focus, input#url:focus {
    background: white;
    color: black;
  }
.commentformlabel {
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 700;
}

.submitComment {
  background: black;
  color: white;
  padding: 20px 40px;
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 1.66em;
  border: 0px none;
  margin: 40px 0;
  cursor: pointer;
}
  .submitComment:hover {
    background: #a5e212;
  }

.nocomments {
  display: none;
}

/* Social Login */
.wp-social-login-connect-with {
	text-align: left;
	font-size: 16px;
	margin-bottom: 5px;
}
.wp-social-login-provider-list {
	text-align: left;
	margin: 20px 0;
  padding: 0px;
}
.wp-social-login-provider, .wp-social-login-provider:hover {
	display: inline-block;
	height: 22px;
	margin: 5px;
	color: transparent; /* this will hide the providers names */
}
.wp-social-login-provider.wp-social-login-provider-google {
  color: transparent;
  height: 2.66em;
  margin: 0;
}
.wp-social-login-provider-google {
  background-image: url( "/wp-content/themes/grot/img/google.svg" );
  background-size: 2.66em;
  background-repeat: no-repeat;
}

/* Archives */
.collapsing.archives.expand {
  text-indent: 1em;
}
.collapsing.archives.item {
  margin: 0 0 0 2em;
}

/*Shop*/
@media screen and (min-width:591px) {
  #shop iframe, .shop iframe {
    width: 100%;
  }
}

/*Link Page*/
#linkfeed {
  margin: 0 0 60px 0;
}
#linkfeed ul li {
  border-bottom: 1px #666 dashed;
  padding: 20px 0;
}
#linkfeed ul li:last-child {
  border-bottom: 0px none;
}

/* Footer */
footer {
  text-align: center;
  font-weight: 400;
  padding: 0 0 20px 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width:1024px) {
  footer {
    padding: 40px 0 20px 0;
  }
}

#copyright {
  font-size: .8em;
}

.social {
  position: fixed;
  right: 0;
  bottom: 20px;
  text-align: center;
  width: 28%;
}
.social-kofi {
  position: fixed;
  right: 0;
  bottom: 120px;
  text-align: center;
  width: 28%;
}
@media screen and (max-width:1024px) {
  .social {
    position: relative;
    width: 100%;
    bottom: 0;
    padding: 0 0 10px 0;
  }
  .social-kofi {
    position: relative;
    width: 100%;
    bottom: 20px;
    padding: 0 0 10px 0;
  }
}

.social ul li {
  display: inline-block;
  font-size: 2.66em;
  margin: 0 10px;
}
.social ul li a {
  color: black;
}
.social ul li a:hover {
  color: #d45ad3;
}

/*CHOOSE YOUR OWN GENERATOR*/
#generatorlab {
  text-align: center;
  margin: 0 0 60px 0;
}

#generatorlab textarea {
  width: 95%;
}
#generatorlab select {
  margin: 40px 0;
}

.generatortables {
  position: relative;
  display: none;
}

#generator1 .chooseyourowntablewrapper {
width: 100%;
float: left;
margin: 5px 0;
}
#generator2 .chooseyourowntablewrapper, #generator4 .chooseyourowntablewrapper {
width: 50%;
float: left;
margin: 5px 0;
}
#generator3 .chooseyourowntablewrapper, #generator5 .chooseyourowntablewrapper, #generator6 .chooseyourowntablewrapper, #generator7 .chooseyourowntablewrapper, #generator8 .chooseyourowntablewrapper, #generator9 .chooseyourowntablewrapper {
width: 33.333%;
float: left;
margin: 5px 0;
}

.chooseyourowntableheading {
  height: 70px;
}
.chooseyourowntablecontent {
  height: 200px;
}

#numberofresults {
  text-align: center;
}

.chooseyourowngeneratorresults {
  height: 130px;
}

#generatorlinkinfo {
  font-weight: 400;
  font-size: .8em;
}

#jointheseventhorderoftherandomgenerator select, #jointheseventhorderoftherandomgenerator input {
  margin: 20px 0;
}

#churchgeneratortitlewrap, #churchgeneratordescriptionwrap {
  width: 100%;
}
#churchgeneratortitlewrap input, #churchgeneratordescriptionwrap input {
  border: 1px solid black;
  background: white;
  color: black;
  font-family: inherit;
  text-transform: none;
}

#jointheseventhorderoftherandomgenerator {
  margin: 40px 0 0 0;
}
#jointheseventhorderoftherandomgenerator input {
  padding: 20px 40px;
}

#initiationinput {
  text-align: center;
  margin: 20px 0 0 0;
}
#linkcode {
  width: 80%;
  height: 200px;
}
#reanimatelinktitle {
  padding: 20px 40px;
  text-align: center;
}

#churchofthegenerator {
  text-align: center;
}
#churchofthegenerator h2 {
  margin: 0 0 20px 0;
}
#churchofthegenerator p {
  font-weight: 400;
  word-wrap: break-word;
}

.sectsoftherandomgenerator {
  page-break-inside: avoid;
}
.sectsoftherandomgenerator li {
  margin: 0 0 10px 0;
}
.sectsoftherandomgenerator li:last-child {
  margin: 0 0 20px 0;
}

#sectselect {
  margin: 60px 0;
}
#refreshinfo {
  font-weight: 400;
  font-size: .8em;
  margin: 20px 0 0 0;
}

/* NPC BIRTHING SACS */
.npccategories, .npcresults {
	margin-bottom: 25px;
	padding-right:10px;
	width: 50%;
	float:left;
	position: relative;
	font-variant: small-caps;
}
.npccategory {
	display: block;
	color: #525252;
}
.npccategories {
  text-align: right;
}
.npcresults {
	text-align: left;
}
#nameresult, #elaboratetitleresult, #npcoccupationresult {
	text-align: center;
	text-indent: 0px;
	float:left;
	position: relative;
	margin-bottom: 25px;
	width: 100%;
	font-variant: small-caps;
}
