@keyframes grow {
  10% {
    scale: 1.5;
  }
}
.link {
  padding: 0 0.25em 0 0.25em;
}
.link:hover {
  animation: grow 2s;
}
#nav-bar {
  padding: 0.5em;
  position: fixed;
  top: 0;
  display: flex;
  width: 100vw;
  z-index: 999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
#nav-bar .nav-elements {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
#nav-bar .wizard-button {
  border: none;
  background: none;
  text-transform: uppercase;
  color: #000000;
}
#nav-bar .wizard-button:hover {
  background: transparent;
}
@media only screen and (max-width: 500px) {
  #nav-bar .nav-elements {
    flex-direction: column;
    height: auto;
  }
  #nav-bar .dividers {
    display: none;
  }
}
#nav-bar .logo {
  font-weight: bold;
  font-size: 18px;
}
#nav-bar .logo img {
  height: 2em;
}
@font-face {
  font-family: "Knewave-Regular";
  src: url(../Fonts/Knewave-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Metamorphous-Regular";
  src: url(../Fonts/Metamorphous/Metamorphous-Regular.ttf) format("truetype");
}
/* Inter - Regular */
@font-face {
  font-family: 'Inter';
  src: url('../Fonts/Inter/Inter_24pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
/* Inter - Italic */
@font-face {
  font-family: 'Inter';
  src: url('../Fonts/Inter/Inter_24pt-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
/* Inter - Bold */
@font-face {
  font-family: 'Inter';
  src: url('../Fonts/Inter/Inter_24pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
/* Inter - Light */
@font-face {
  font-family: 'Inter';
  src: url('../Fonts/Inter/Inter_24pt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
/* Inter - ExtraBold */
@font-face {
  font-family: 'Inter';
  src: url('../Fonts/Inter/Inter_24pt-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
#custom-article {
  border: 1.3px black solid;
  border-radius: 1em;
  margin: 1em 3em;
  background-position-x: center;
  min-height: 90vh;
  padding: 3em;
  margin-top: 5em;
}
.product-text {
  margin-top: 1.5em;
  font-size: 5em;
  font-weight: bold;
}
.product-text .emphasize {
  margin-left: 2em;
  background-color: #CC7722;
  color: white;
  letter-spacing: 4px;
  padding: 0.1em 0.5em 0.1em 0.5em;
}
#custom-article section {
  overflow-x: auto;
}
@media (width <= 500px) {
  #custom-article section {
    padding: 0;
  }
}
#custom-article section figure {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#custom-article section p,
#custom-article section ul,
#custom-article section li,
#custom-article section table,
#custom-article section figure,
#custom-article section section {
  margin: 1em;
}
#custom-article section h {
  margin: 0 calc(1em / 2);
}
#custom-article section table {
  border-collapse: collapse;
}
#custom-article section tr {
  border-bottom: 1px solid;
}
#custom-article section td {
  padding: 0.5em;
}
@media print {
  /* Hide the header and navigation */
  .hoverable-container,
  .character-sheet-container section {
    border: none !important;
  }
}
.pop-content {
  box-shadow: 0.25em 0.25em 0.25em rgba(0, 0, 0, 0.1);
}
.wizard-container {
  background: linear-gradient(120deg, #ffffff, 60%, #f2f2f2);
  border-radius: 0.4em;
  padding: 1em 3em;
  margin: 1em auto;
  font-size: 1em;
  width: 65%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.23);
}
/* The Container for each step */
.wizard-step-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 1s cubic-bezier(1, 0, 0, 1), opacity 2s ease-in-out;
  opacity: 0;
  overflow-y: hidden;
}
.wizard-step-wrapper .reveal-section.hoverable-container {
  padding: 0;
  margin: 0;
  transition: padding 1s cubic-bezier(1, 0, 0, 1), opacity 2s ease-out, box-shadow 2s, width 2s ease-in-out, height 1s ease-in-out;
}
.wizard-step-wrapper.visible {
  grid-template-rows: 1fr;
  opacity: 1;
}
.wizard-step-wrapper.visible .reveal-section.hoverable-container {
  padding: 1.5em;
}
.wizard-step-wrapper.visible .reveal-section.hoverable-container {
  margin: 1.5em;
}
/* The actual content inside */
.reveal-section {
  min-height: 0;
  transition: opacity 2s ease-out, width 2s ease-in-out, height 1s ease-in-out;
  overflow-y: hidden;
}
.section-padding {
  padding: 1.5em !important;
}
.no-padding {
  padding: 0 !important;
}
.retain-height {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: auto;
}
.grow-height-as-much-as-possible {
  flex-grow: 1;
  flex-shrink: 1;
}
.boolean-button {
  -webkit-appearance: none;
  appearance: none;
  color: #000000;
  overflow-x: scroll;
  border: 1px solid rgba(204, 119, 34, 0.3);
  border-radius: 0.2em;
  padding: 0.5em 0.5em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.18s;
  animation: button-fadein 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
  position: relative;
  opacity: 1;
  outline: none;
  min-width: 12em;
  display: inline-flex;
  white-space: nowrap;
}
.boolean-button .selected {
  background: #CC7722;
}
.boolean-button .unselected {
  background: transparent;
}
.padded-centered-text {
  display: flex;
  align-content: center;
  padding: 0.5em;
  flex-direction: column;
  align-items: center;
}
.AbilityView .header {
  justify-content: center;
}
.AbilityView .ability-pickers {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.AbilityView .hoverable-container {
  flex-grow: 1;
}
.AbilityView .vertical-columns {
  display: flex;
  flex-direction: row;
}
.deity-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.deity-picker .header {
  justify-content: center;
}
.deity-picker .image {
  max-height: 12em;
}
.deity-picker .wizard-select {
  height: 3em;
}
.title {
  display: flex;
  justify-content: center;
}
.title h4 {
  margin-right: 1em;
}
.name-picker {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.name-picker .header {
  justify-content: center;
}
.character-name {
  padding: 2em;
  justify-content: center;
  font-size: large;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
}
.bold-text {
  font-weight: bold;
  font-size: 1.2em;
}
.emphasized-text {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 2em;
}
.hoverable-container {
  border: 1px solid #ccc;
  border-radius: 0.5em;
  padding: 1em;
  text-align: center;
  margin: 1.5em;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  transition: all 1s;
}
.hoverable-container h4 {
  text-transform: uppercase;
  margin-right: 1em;
}
.hoverable-container .title {
  display: flex;
  justify-content: center;
}
.hoverable-container:hover {
  outline: 1px solid #ccc;
  box-shadow: 0 0 1em 0.5em rgba(0, 0, 0, 0.1);
}
.home-cover {
  background-image: url("/Images/CharacterCreator/Human/RR MEN SPELLCASTER Ray Spell Dean Spencer.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
.cover {
  background-image: url("/Images/CharacterCreator/RR Heartbreaker Cover_Final Kennon James.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
}
.bubble-widget {
  background-color: #ffffff;
  padding: 2em;
  border-radius: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bubble-widget .wizard-button {
  margin: 0.5em;
}
.wizard-header {
  font-size: 18px;
  margin-bottom: calc(1em / 2);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(204, 119, 34, 0.2);
  padding-bottom: 0.3em;
}
.wizard-panel {
  background-color: #ffffff;
  border-radius: 0.2em;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px solid rgba(204, 119, 34, 0.1);
}
.wizard-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
}
.wizard-button {
  background: white;
  border-radius: 0.5em;
  color: #CC7722;
  border: 1px solid #CC7722;
  border-radius: 0.2em;
  padding: 0.5em 0.5em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.18s;
  animation: button-fadein 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
  position: relative;
  opacity: 1;
  outline: none;
  min-width: 12em;
  display: inline;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}
.fill-row {
  flex-grow: 1;
}
.random-button:hover {
  animation: shake 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.wizard-button:focus,
.wizard-button:hover {
  transform: scale(1.1);
  cursor: pointer;
  border-radius: 0.25em;
  border: none;
  color: white;
  background-color: #CC7722;
  background: #a05e1b;
}
.button-icon:focus,
.button-icon:hover {
  transform: scale(1.1);
}
.selected-button {
  background: #a05e1b !important;
  -webkit-appearance: none;
  appearance: none;
}
@keyframes button-fadein {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
}
.grid-4 {
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid-8 {
  display: inline-grid;
  grid-template-columns: repeat(8, 1fr);
}
.container-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1em;
}
.character-background-image {
  background-image: url("/Images/CharacterCreator/RR Heartbreaker Cover_Final Kennon James.jpg");
  background-size: cover;
  background-color: black;
  padding: 10em;
  min-height: 75vh;
}
.container-list-item {
  flex-grow: 1;
  flex-basis: 15%;
}
.standard-wizard-styles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.standard-wizard-styles .image {
  display: block;
  margin-bottom: 0.5em;
  border: 1px solid rgba(204, 119, 34, 0.1);
}
.standard-wizard-styles .description {
  border-radius: 0.2em;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px solid rgba(204, 119, 34, 0.08);
}
hr {
  width: 85%;
  opacity: 10%;
  color: #CC7722;
  margin: 1em 0 1em 0;
}
.grayed-out {
  background-color: #f2f2f2;
  color: #9e9e9e;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(100%);
}
.propensity-view .image {
  max-height: 30em;
}
.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  flex-direction: column;
}
.largeText {
  width: 70%;
}
.wizard-select {
  -webkit-appearance: none;
  appearance: none;
  background: #CC7722;
  border: 1px solid rgba(204, 119, 34, 0.3);
  border-radius: 0.2em;
  padding: 0.5em 1em;
  cursor: pointer;
  min-width: 12em;
  text-align: center;
  transition: all 0.2s ease;
}
.wizard-select:hover,
.wizard-select:focus {
  background-color: #a05e1b;
  outline: none;
  transform: scale(1.02);
}
.wizard-select option {
  color: #000000;
  padding: 0.5em;
  cursor: pointer;
  border-radius: 0.2em;
  margin: 0.5em 0;
}
.wizard-select .wizard-button {
  background-color: transparent;
  padding: 0;
}
.wizard-select .button-icon {
  display: inline-flex;
}
.wizard-option {
  color: #000000;
  padding: 0.5em;
  cursor: pointer;
  border-radius: 0.2em;
  margin: 0.5em 0;
}
.wizard-option-container {
  padding: 0.1em 0.5em;
  background: #a05e1b;
  border-radius: 0.2em;
  list-style-type: none;
}
.align-left {
  margin-left: auto;
  display: block;
}
.wizard-option:hover {
  background: white;
}
@media (width <= 500px) {
  .section-buttons {
    flex-direction: column;
  }
}
.small-gap {
  display: flex;
  gap: 1em;
}
.medium-gap {
  display: flex;
  gap: 2.5em;
}
.large-gap {
  gap: 4em !important;
  display: flex;
}
.make-row {
  display: flex;
  flex-direction: row ;
}
.space-between {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.space-around {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
}
.medium-sized-image {
  max-height: 30em;
}
.header {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.2em;
  margin-bottom: calc(1em / 2);
  text-transform: uppercase;
}
@media (width <= 500px) {
  .wizard-container {
    padding: 0.5em;
    font-size: 0.95em;
  }
  .wizard-header {
    font-size: 1.3em;
  }
  .propensity-header {
    font-size: 1em;
  }
  .propensity-image {
    max-width: 7em;
  }
  .bubble-widget {
    padding: 1em;
  }
}
.background-view .dispositions {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
}
.background-view .propensity-dispositions-row {
  display: flex;
  gap: 0.5em;
  margin-top: 0.5em;
}
.background-view .image {
  max-height: 30em;
}
.transform-smoothly {
  transition: all 3s ease-in-out;
}
.character-sheet-container {
  background: white;
  width: 80vw;
  padding: 1em;
  display: flex;
  flex-direction: column;
  transition: all 2s ease-in-out;
  border-radius: 2em;
  /* TYPOGRAPHY */
  /* FORMS & INPUTS */
  /* LAYOUT GRIDS */
  /* SECTION SPECIFIC STYLES */
  /* ABILITY SCORES */
  /* LANGUAGES GRID */
  /* PRINT OPTIMIZATION */
}
.character-sheet-container .header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.character-sheet-container .major {
  background-color: #000000;
  color: #ffffff;
}
.character-sheet-container h1 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  border-bottom: 3px double white;
  padding-bottom: 1em;
  margin-bottom: 2em;
}
.character-sheet-container h2 {
  font-size: 1.1rem;
  background-color: #000000;
  color: white;
  padding: 0.5em 1em;
  text-transform: uppercase;
}
.character-sheet-container h3 {
  font-size: 1.05rem;
  background-color: #333;
  color: white;
  padding: 0.5em 1em;
  margin: 0 0 1em 0;
  text-transform: uppercase;
}
.character-sheet-container .subtext {
  font-size: 0.8rem;
  font-style: italic;
  color: #666;
  margin-bottom: 5px;
  margin-top: -5px;
}
.character-sheet-container section {
  padding: 1em;
  border: 1px solid #000;
  border-radius: 1em;
}
.character-sheet-container .input-group {
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
}
.character-sheet-container label {
  font-weight: bold;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.character-sheet-container textarea {
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  font-family: 'Courier New', monospace;
  resize: none;
}
.character-sheet-container .grid-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.character-sheet-container .grid-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1em;
}
.character-sheet-container .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}
.character-sheet-container .header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.character-sheet-container .main-body-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  /* Left col narrower than Right */
  gap: 20px;
}
.character-sheet-container .box {
  border: 2px solid #ffffff;
  padding: 0.5em;
}
.character-sheet-container .box-highlight input {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}
.character-sheet-container .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 5px;
}
.character-sheet-container .stat-box {
  width: 50px !important;
  border: 2px solid #ffffff !important;
  text-align: center;
  height: 40px;
  font-size: 1.2rem !important;
}
.character-sheet-container .lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 0.9rem;
}
.character-sheet-container .footer-notes {
  text-align: center;
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 20px;
}
@media print {
  .character-sheet-container body {
    background-color: white;
    padding: 0;
  }
  .character-sheet-container .sheet-container {
    box-shadow: none;
    border: none;
    width: 100%;
    max-width: 100%;
  }
  .character-sheet-container textarea {
    border: 1px solid #999;
  }
}
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  flex-direction: row;
  justify-content: space-around;
  padding: 0.5em 0;
  scrollbar-color: transparent transparent;
}
.carousel *::-webkit-scrollbar {
  width: 0;
}
.carousel *::-webkit-scrollbar-track {
  background: transparent;
}
.carousel *::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}
.carousel * {
  -ms-overflow-style: none;
}
.carousel-item {
  scroll-snap-align: start;
  flex: 0 0 100%;
  transform: translateX(0%);
  transition: transform 1s;
  transform-origin: center center;
}
.toolTip {
  position: absolute;
  padding: 0.5em 0.5em;
  background-color: #CC7722;
  z-index: 999;
  max-width: 20em;
  display: inline-block;
}
#footer {
  display: flex;
  text-align: center;
  flex-direction: column;
  background-color: white;
  color: #1a1a1a;
  padding: 0 3em 2em 3em;
}
#footer .centered {
  display: inline-flex;
}
#footer .wizard-button {
  border: none;
  background: none;
  text-transform: uppercase;
  color: #000000;
}
#footer .wizard-button:hover {
  background: transparent;
}
#footer #sections {
  display: flex;
  flex-direction: row;
}
#footer #design-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-grow: 2;
}
#footer #design-section img {
  max-height: 10em;
}
#footer h2 {
  font-size: 18px;
  color: #000000;
}
#footer #contacts-section {
  flex-grow: 1;
}
#footer a {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
}
.modal {
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 2em;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #000000;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  display: flex;
  align-content: center;
  justify-content: center;
}
.modal .modal-contents {
  margin: 10em;
  width: 50vw;
  max-height: 60em;
  background-color: #ffffff;
  padding: 1em;
  overflow: scroll;
  display: flex;
  flex-direction: column;
}
@media (width <= 500px) {
  .modal .modal-contents {
    width: 75vw;
    margin: 7em;
    margin-top: 15em;
  }
}
.modal .modal-done-button {
  margin-top: 1em;
}
.modal .modal-display {
  flex-grow: 1;
}
.modal .header {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  font-weight: bold;
  font-size: 18px;
}
body {
  color: #000000;
  font-size: 12px;
  background-color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 80%;
}
.icon {
  aspect-ratio: 1;
  max-height: 1.5em;
  transition: transform 0.3s ease-in-out;
}
.button-icon {
  aspect-ratio: 1;
  max-height: 1.5em;
  transition: transform 0.3s ease-in-out;
}
.button-link {
  display: flex;
  align-content: center;
  justify-content: center;
}
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
* {
  padding: 0;
  margin: 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: inherit;
}
@media print {
  #footer,
  #nav-bar,
  .remove-when-print {
    display: none !important;
  }
  .print-remove-padding {
    padding: 0em !important;
  }
  .print-reduce-margin {
    margin: 0.3em !important;
  }
}
#main-website-container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
#main-website-container nav {
  flex-grow: 1;
}
#main-website-container main {
  flex-grow: 3;
}
#main-website-container footer {
  flex-grow: 1;
}
#main-view {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.standard-padding {
  padding: 0.5em 0.5em;
}
