html, body {
  margin: 0;
  height: 100%;
  /* background-color: ivory;
  background-color: #947360; */
  background-image: linear-gradient(135deg, #BAB3A3, #6A6353);
  font-family: 'EB Garamond', cursive;
  user-select: none;
  /* Google Fonts to try:
    'Germania One', cursive;
    'EB Garamond', serif;
    'Metamorphous', cursive;
  */
}

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    /* background: #FF0000; */
}
::-webkit-scrollbar:hover {
  cursor: pointer;
}
::-webkit-scrollbar-track:hover {
  cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}

.screen-mask {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-mask-input {

}

.screen-mask-input-text {
  height: 40px;
  width: 360px;
}

#app {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  /* background-color: ivory; */
}

.application {
  height: 100%;
}

#nav {
  position: fixed;
  display: block;
  z-index: 1;
  width: 100%;
  /* height: 40px; */
  height: 7vh;
  background-color: #333;
  /* background-color: #878070;
  box-shadow: black 0px 0px 4px; */
}

#container {
  position: absolute;
  /* background-color: #947360; */
  display: block;
  /* margin-top: 40px; */
  margin-top: 7vh;
  width: 100%;
  /* height: calc(100% - 40px); */
  height: calc(100% - 7vh);
}

.left {
  float: left;
}

.right {
  float: right;
}

.w15 {
  width: 15%;
}

.w85 {
  width: 85%;
}

.navMeasurement {
  /* height: 40px; */
  height: 100%;
  display: flex;
  /* min-width: 200px; */
  /* display: block;
  text-align: center; */
  /* font-size: 20px; */
}


.navItems1 {
  width: 100px;
}

.navText {
  text-decoration: none;
  color: #eee;
  height: 100%;
  min-width: calc(50px + 9.5vh);
  font-size: calc(5px + 2vh);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navText2 {
  text-decoration: none;
  color: #eee;
  height: 100%;
  min-width: calc(50px + 9.5vh);
  font-size: calc(5px + 2vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.navLogo {
  display: flex;
  align-items: center;
  /* padding-top: 10px; */
  padding-left: 10px;
}

.navLogoText {
  color: #CCDD55;
  font-size: 28px;
  /* font-family: fantasy; */
  font-family: "Ysabeau Office", sans-serif;
}

.navText:hover {
  background-color: gray;
}

.navText2:hover {
  background-color: gray;
  cursor: pointer;
}

.navPiece {
  margin:0px 5px;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

.user-dropdown {
  position: absolute;
  top: 7vh;
}

.user-dropdown-item {
  display: block;
  width: 100px;
  text-align: left;
  background-color: #333;
  text-decoration: none;
  color: #eee;
  padding: 5px 10px;
}

.user-dropdown-item:hover {
  background-color: gray;
}

.user-drop-down-notification {
  position: relative;
}

.unread-notifications-icon {
  position: absolute;
  height: 14px;
  width: 14px;
  font-size: 14px;
}

/* SPINNER */
.center {
  /* margin: auto;
  width: 50%;
  max-width: 400px;
  min-width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}
div.loader {
  font-size: 10vh;
}

.loaded {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Popup styles */

.modal {
  position: fixed;
  z-index: 10;
  height: 20vh;
  width: 25vw;
  top: 76vh;
  left: 2vw;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;

  /* position: relative;
  z-index: 1;
  height: 40px; */
  -webkit-animation: fadeinout 5s linear forwards;
  animation: fadeinout 5s linear forwards;
}
.green {background-color: rgb(50,120,60);}
.red {background-color: rgb(180,40,30);}

@-webkit-keyframes fadeinout {
  0% { opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes fadeinout {
  0% { opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; }
}


.modalObj {
  display: inline-block;
}

.modalText {
  padding: 10px;
}

.modalClose {
  font-family: Arial;
  font-weight: bold;
  height: 40px;
  width: 40px;
}

.modalClose:hover {
  background-color: tan;
  color: ivory;
}

.parentCentering {
  border-top-right-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0,0,0, 0.5);
}

.pop-up-inner-confirmation {
  padding: 15px;
  position: absolute;
  float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  max-height: 95vh;
  border-radius: 6px;
  margin: auto;
  background-color: #A7A090;
  box-shadow: inset #3A3323 0px 0px 1px 1px, #3A3323 0px 0px 6px 1px;
  overflow-y: auto;
}

.pop-up-inner {
  padding: 15px;
  position: absolute;
  float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  margin: auto;
  box-shadow: inset #3A3323 0px 0px 1px 1px, #3A3323 0px 0px 6px 1px;
  background-color: #A7A090;
  overflow-y: auto;
}

.pop-up-heading {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.pop-up-form {
  height: calc(100% - 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.pop-up-message {
  display: flex;
  justify-content: center;
  margin: 10px;
  align-items: center;
}
.pop-up-message-text {
  text-align: center;
  font-size: calc(15px + .4vh);
  margin-bottom: 10px;
}

.pop-up-field {
  width: 100%;
}

.pop-up-clickable-results {
  width: 100%;
  max-height: 300px;
  background-color: #BAB3A3;
  box-shadow: inset #6a6353 0px 1px 3px 1px;
  overflow-y: auto;
  max-height: 200px;
}

.pop-up-clickable-result {
  cursor: pointer;
  width: calc(100% - 10px);
  display: flex;
  height: 30px;
  border-bottom: 1px solid #6A6353;
  align-items: center;
  padding-left: 10px;
}

.pop-up-buttons-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pop-up-buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}

.pop-up-button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.pop-up-button-generic {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 6px;
  margin: 10px 0 0;
}

.pop-up-button {
  width: 80px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align:center;
  border-radius: 6px;
  margin: 0 5px;
}

.pop-up-yes {
  background-color: #36c !important;
  color: #ccc !important;
  cursor: pointer;
  text-align: center;
}
.pop-up-no {
  background-color: #111 !important;
  color: #999 !important;
  cursor: pointer;
  text-align: center;
}

.pop-up-discard {
  background-color: #711;
  color: #DAD3C3;
  cursor: pointer;
  text-align: center;
}

.pop-up-equip {
  background-color: #666;
  color: #000;
  cursor: pointer;
  text-align: center;
}

.pop-up-button:hover {
  cursor: pointer;
}

.pop-up-yes:hover {
  background-color: #14a !important;
  color: #aaa !important;
}
.pop-up-no:hover {
  background-color: #000 !important;
  color: #777 !important;
}

.pop-up-discard:hover {
  background-color: #500;
  color: #BAB3A3;
}

.pop-up-equip:hover {
  background-color: #444;
  color: #000;
}

/* ###################################### */
/* ########### Authentication ########### */
/* ###################################### */

.signup-form-container {
  margin: 5% auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 320px;
  padding: 20px 50px;
  border-radius: 6px;
  background-color: #DAD3C3;
  box-shadow: #7a7363 0px 0px 6px 0px, inset #7a7363 0 0 2px;
  outline: #7a7363 solid 1px;

}

.signup-form-header {
  font-size: 24px;
  margin-bottom: 5px;
}

.signup-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* background-color: #DAD3C3;
  width: 320px;
  padding: 20px 50px;
  border-radius: 6px;
  box-shadow: #7a7363 0px 0px 6px 0px, inset #7a7363 0 0 2px;
  outline: #7a7363 solid 1px; */
}

.signup-form-inner-wrapper {
  width: 100%;
}

.signup-form-fields-cluster {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.signup-form-field {
  width: 100% !important;
  margin-top: 5px;
}

.signup-form-field-inner {
  height: 30px;
}

.signup-form-button {
  height: 40px;
  background-color: #36c;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  cursor: pointer;
}

.forgot-password-link {
  text-align: center;
}

.check-email-page-container {
  display: flex;
  width: 100%;
  margin-top: 10%;
  justify-content: center;
}

.check-email-page-heading {
  width: 500px;
  height: 100px;
  background-color: #DAD3C3;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  border-radius: 6px;
  box-shadow: #7a7363 0px 0px 6px 0px, inset #7a7363 0 0 2px;
  outline: #7a7363 solid 1px;
}

/* ############################ */
/* ########### HOME ########### */
/* ############################ */

.home-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}


.home-sections-wrapper {
  display: flex;
  height: -webkit-fill-available;
  max-height: calc(100% - 150px);
  width: 100%;
  padding-bottom: 150px;
}

.home-welcome-user-header {
  font-size: 38px;
  width: calc(100% - 50px);
  height: 30px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7A5353;
  color: #DAF303;
  margin-bottom: 40px;
  box-shadow: #5a3333 0px 1px 4px 3px;
}

.home-campaigns-container {
  margin-left: 30px;
  padding: 0 30px 30px;
  min-width: 325px;
  /* max-width: calc(55% - 90px); */
  border-radius: 6px;
  background-color: #DAD3C3;
  box-shadow: #333 0px 0px 10px -1px;
  overflow-y: scroll;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.home-campaigns-container::-webkit-scrollbar {
  width: 10px;
}
.home-campaigns-container::-webkit-scrollbar-thumb {
  background: #C9C2B2;
  border-radius: 10px;
  box-shadow: inset 0 0px 4px black;
}
.home-campaigns-container::-webkit-scrollbar-track {
  background-color: #C9C2B2;
  box-shadow: inset 0.5px 0px 1px #666;
  border-radius: 10px;
}
.home-campaigns-container::-webkit-scrollbar-thumb:hover {
  background-color: #B8B1A1;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #334;
}

.home-campaigns-container-inner {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.home-campaigns-reminder {
  width: 100%;
  margin-top: 10px;
  font-size: 20px;
}

.home-campaigns-not-logged-in-header {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.home-campaigns-header {
  text-align: center;
  font-size: 20px;
  width: 100%;
  padding: 30px 0 20px 0;
}

.home-campaigns-table-container {
  width: 100%;
  border-top: 1px solid black;
  border-left: 1px solid black;
  min-width: 325px;
}

.home-campaign-row-container {
  width: 100%;
  display: flex;
  width: 100%;
}

.home-campaign-row-cell {
  padding: 5px 10px;
  min-height: 100%;
  display: block;
  align-items: center;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}

.home-campaign-row-header {
  text-align: center;
}

.home-campaign-row-name {
  width: 40%;
  min-width: 130px;
}
.home-campaign-row-group-size {
  width: 20%;
  min-width: 65px;
}
.home-campaign-row-dm {
  width: 40%;
  min-width: 130px;
}

.home-features-video-section {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
  max-width: calc(45% - 120px);
}

.home-future-features-container {
  width: 100%;
  margin: 0 30px;
  padding: 20px;
  height: inherit;
  max-height: calc(100% - 40px);
  border-radius: 6px;
  background-color: #DAD3C3;
  box-shadow: #333 0px 0px 10px -1px;
  display: flex;
  flex-wrap: wrap;
}

.dream-feature-title {
  font-size: 20px;
  width: 100%;
}

.dream-feature {
  margin: 0 10px;
  width: 100%;
  font-size: calc(5px + 1.5vh);
}

.feedback-button-container {
  height: 60px;
  width: 180px;
  margin: 20px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-decoration: none;
}
.feedback-button {
  text-decoration: none;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3A3323;
  color: #ccc;

}

.feedback-button:hover {
  cursor: pointer;
  background-color: #2A2313 !important;
  color: #bbb !important;
}

/* .youtube-video-container {
  width: 100%;
  margin: 0 30px;
  padding: 20px;
  height: inherit;
  border-radius: 6px;
  background-color: #DAD3C3;
  box-shadow: #333 0px 0px 10px -1px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
} */

.youtube-video {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* padding: 0 30px; */
  min-height: 200px;
}

/* ############################# */
/* ########### FORMS ########### */
/* ############################# */

.inputField {
  display: inline-block;
  width: 25%;
}
.fieldLabel {
  display: inline-block;
  width: 15%;
  margin-bottom: 5px;
}
.field {
  width: -webkit-fill-available;
  background-color: #FAF3E3;
  box-shadow: inset #7a7363 0px 1px 2px 1px;
  border: 1px solid #7A7363;
  padding-left: 5px;
  height:30px;
}

.languageSection {
  height: max-content;
  display: table;
}
.languageTitle {
  display: table;
  height: 100%;
  /* width: 100%; */
  text-align: center;
}
.languageTitleText {
  display: table-cell;
  vertical-align: middle;
}
.languageWrapper {
  display: inline-block;
  width: 85%;
  /* margin-bottom: 5px; */
}
.languages {
  display: block;
  width: 75%;
}
.selectedOption {
  display: inline-block;
  text-align: center;
  line-height: 30px;
  height: 30px;
  width: 25%;
}
.clicked {
  background-color: navy;
  color: white;
}
.cancel {
  position: absolute;
  margin-left: 120px;
  margin-top: -30px;
}
.addedOption {

}
.writtenLanguages {
  width: 18.75%;
  display:block;
}
.languageField {
    width: -webkit-fill-available;
}


.navIcon {
  height:30px;
  width:30px;
  border-radius: 20px;
}


.userImage {
  height: 200px;
  width: 200px;
}


.switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.switch input {
  display:none;
}

.slider {
  background-color: #7A7363;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 26px;
}

input:checked + .slider {
  background-color: #66bb6a;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
  box-shadow: black 0px 0px 3px -1px;
}

.slider.round:before {
  border-radius: 50%;
}

/* ###################### */
/* #### PROFILE PAGE #### */
/* ###################### */

.profile-page {
  width: 80%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  padding: 10px;
  background-color: #DAD3C3;
  height: calc(100% - 20px);
  margin: 0 auto;
}

.profile-page-wrapper {
  /* display: flex;
  width: 100%%;
  justify-content: center;
  flex-wrap: wrap; */
}

.profile-image {
  height: 400px !important;
  width: unset !important;
}

.profile-info-container {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 50%; */
}

.profile-page-info {
  width: 300px;
  text-align: left;
  margin: 10px 0;
}

.profile-page-link {
  margin: 10px auto 0 auto;
  text-decoration: none;
  color: black;
  background-color: #BAB3A3;
  width: 200px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}


/* ###################### */
/* #### EDIT PROFILE #### */
/* ###################### */

.edit-profile-page {
  width: 80%;
  height: calc(100% - 20px);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #DAD3C3;
  margin: 0 auto;
}

.edit-profile-wrapper {
  width: 100%;
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  align-items: center;
}

.edit-profile-image-section {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  height: fit-content;
  justify-content: center;
}

.edit-profile-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.edit-profile-input-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.edit-profile-input-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  /* background-color: #BAB3A3; */
  border-radius: 6px;
}

.edit-profile-input {
  width: 250px;
  padding: 5px;
}


.edit-profile-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 33%;
}

.edit-profile-credentials-wrapper {
  /* display: flex;
  align-self: flex-start;
  flex-wrap: wrap;
  justify-content: center; */
  text-align: center;
  width: 100%;
}

.edit-profile-credentials-header {
  font-size: 20px;
  text-align: center;
  margin: 30px 0 10px;
  width: 100%;
}

.edit-profile-field {
  width: 51%;
  margin-top: 5px;
  height: 30px;
}

.edit-profile-input {
  margin-bottom: 10px;
  background-color: #FAF3E3;
  box-shadow: inset #7a7363 0px 1px 2px 1px;
  border: 1px solid #7A7363;
}

.edit-profile-buttons-container {
  width: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5px;
}

.edit-profile-image-button {
  display: flex;
  height: 50px;
  width: 100%;
  margin: 5px 0;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.edit-profile-button-container {
  width: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.edit-profile-finish-button {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

/* .edit-profile-good-button {
  height: 40px;
  width: 60px;
}

.edit-profile-bad-button {
  height: 30px;
  width: 80px;
} */

/* ####################### */
/* #### NOTIFICATIONS #### */
/* ####################### */


.notifications-page {
  height: 100%;
  width: 80%;
  margin: 0 auto;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center; */
  background-color: #DAD3C3;
}

.notifications-heading {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 30px;
}

.notifications-container {
  /* margin-top: 10px; */
  height: calc(50% - 70px);
  width: calc(100% - 40px);
  margin: 0 20px 10px 20px;
  background-color: #CAC3B3;
  border: 1px solid #4A4333;
  box-shadow: inset #7a7363 0px 1px 2px 1px;
  overflow-y: scroll;
}

.notifications-container::-webkit-scrollbar {
  width: 10px;
}
.notifications-container::-webkit-scrollbar-thumb {
  background: #C9C2B2;
  border-radius: 10px;
  box-shadow: inset 0 0px 4px black;
}
.notifications-container::-webkit-scrollbar-track {
  background-color: #C9C2B2;
  box-shadow: inset 0.5px 0px 1px #666;
  border-radius: 10px;
}
.notifications-container::-webkit-scrollbar-thumb:hover {
  background-color: #B8B1A1;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #334;
}

.notification-square {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  border-bottom: 1px solid #7a7363;
}

.notification-square-text-outer-wrapper {
  display: flex;
  align-items: center;
  width: calc(100% - 80px);
  padding: 10px 0;
}

.notification-square-text-container {
  margin-left: 20px;
  width: calc(100% - 20px);
}

.notification-square-text {
  inline-size: 150px;
  overflow-wrap: break-word;
  width: calc(100% - 20px);
}

.notification-read-unread {
  margin-left: 20px;
  height: 20px;
}

.accept-deny-container {
  display: flex;
}

.notification-button {
  width: 40px;
  height: 30px;
  margin: 5px 0 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 0 10px;
}

.notification-delete-button {
  margin: 5px;
  height: min-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  padding: 8px;
}

.notification-delete-button-icon {
  font-size: 13px;
}


/* ITEMS */
.items-container {

}
.item-square {
  display: inline-block;
  margin: .5px 2px;
  height: 100px;
  width: calc(10% - 4px);
  background-color: wheat;
  box-shadow: -1px 1px 2px brown;
}
.item-square-text-container {
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
}
.item-square-text {
  display: table-cell;
  vertical-align: middle;
}

/* CHARACTER OVERVIEW SECTION */
.charsheet-sections-container {
  height: 100%;
  width: 100%;
}

.charsheet-sections-container:hover {
  cursor: pointer;
}

.charsheet-section {
  display: inline-block;
  color: #BBBBBB;
}

.bio-section {
  width: 50%;
  height: 15%;
  background-color: #353535;
}

.powers-section {
  width: 50%;
  height: 15%;
  background-color: #383838;
}

.abilities-section {
  width: 33.333%;
  height: 85%;
  background-color: #424242;
}

.combat-section {
  width: 33.333%;
  height: 85%;
  background-color: #494949;
}

.equipment-section {
  width: 33.333%;
  height: 85%;
  background-color: #424242;
}


/********************************/
/* CHARACTER AUTOMATION SECTION */
/********************************/

.class-prompt-story-mode-button {
  margin-left: 5px;
  padding: 5px;
  border-radius: 40px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.class-prompt-story-mode-button:hover {
  background-color: #BAB3A3;
  cursor: pointer;
  /* background-color: #AAA393; */
}

.char-prompt-section-container{
  display:flex;
  height: inherit;
  /* width: webkit-fill-available; */
  padding: 20px;
  /* width: 100%; */
  justify-content: center;
}

.char-prompt-container {
  width: calc(100% - 270px - 10vw);
  height: 100%;
  /* display: flex; */
  /* flex-wrap: wrap; */
}

.char-prompt-menu-container {
  width: calc(100% - 270px - 10vw);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  align-self: end;
  background-color: #DAD3C3;
  box-shadow: #7a7363 0px 0px 6px 0px, inset #7a7363 0 0 2px;
  border-radius: 3px;
  outline: #7a7363 solid 1px;
}

.char-prompt-menu-title {
  height: 10%;
  display: flex;
  align-items: flex-end;
}

.char-prompt-menu-title-inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.char-prompt-menu-title-text {
  font-size: 30px;
  width: 100%;
  text-align: center;
}

.char-prompt-menu-warning {
  text-align: center;
  width: 100%;
}

.char-prompt-menu-warning-icon {
  height: 18px;
  margin: 0 5px;
  position: relative;
  top: 3px;
  background: radial-gradient(circle at center, #778 0, #445 90%, #889 100%);
  border-radius: 10px;
  box-shadow: #556 -1px 1px 1px 0px;
}

.char-prompt-menu-wrapper {
  height: 90%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}


.char-prompt-menu {
  border-radius: 5px;
  height: 75%;
  max-width: 800px;
  display: flex;
  align-self: flex-end;
  flex-wrap: wrap;
  outline: black solid 1px;
  background-color: #9A9383;
}

.char-prompt-menu-item {
  height: calc(50% - 10px);
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #BAB3A3;
  box-sizing: border-box;
  border: black solid 1px;
  text-decoration: none;
  color: black;
  margin: 5px;
  box-shadow: black 0px 0px 3px 0px;
  line-height: 35px;
}

.char-prompt-menu-item:hover {
  background-color: #9A9383;
  transition: background-color .1s linear;
  cursor: pointer;
}

.char-prompt-menu-item:active {
  background-color: #8A8373;
  /* cursor: */
}

.char-prompt-menu-item-text {
  width: 60%;
  text-align: center;
  font-size: 35px;
  position: relative;
}

.menuIcon {
  height: 18px;
  position: relative;
  left: 70%;
  top: -35%;
  /* border: solid 1px; */
  background: radial-gradient(circle at center, #778 0, #445 90%, #889 100%);
  border-radius: 10px;
  box-shadow: #556 -1px 1px 1px 0px;
}

.border-radius-top-left-4 {border-top-left-radius: 4px;}
.border-radius-top-right-4 {border-top-right-radius: 4px;}
.border-radius-bottom-left-4 {border-bottom-left-radius: 4px;}
.border-radius-bottom-right-4 {border-bottom-right-radius: 4px;}

.accented-heading {
  line-height: 23px;
}

.accented-word{
  font-size: 20px;
}

.section-menu-button-container {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 10px 0;
  align-self: flex-start;
}

.char-prompt-delete-button {
  background-color: #111;
  border-radius: 8px;
  color: #aaa;
  font-size: 25px;
  height: 80px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.char-prompt-publish-button {
  background-color: #36c;
  color: #ccc;
  border-radius: 8px;
  font-size: 25px;
  height: 80px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.char-prompt-publish-button:hover {
  background-color: #25b;
  color: #bbb;
  cursor: pointer;
}
.char-prompt-delete-button:hover {
  background-color: #000;
  color: #777;
  cursor: pointer;
}

.is-unclickable {
  pointer-events: none;
  opacity: 0.45;
}

/***************/
/* BIO PROMPTS */
/***************/

.bio-detail-container {
  /* display: flex;
  height: 90%;
  background-color: #A7A090;
  overflow-y: auto;

  margin: 0 auto;
  box-shadow: #333 0px 0px 6px 0px;
  border-radius: 3px;
  outline: #544 solid 1px; */


  display: flex;
  flex-wrap: wrap;
  /* width: 900px; */
  height: 90%;
  /* background-color: #544; */
  /* background-color: #A7A090; */
  background-color: #DAD3C3;

  /* margin: 0 auto; */
  box-shadow: #333 0px 0px 6px 0px;
  border-radius: 3px;
  outline: #544 solid 1px;
}

.bio-detail-inner-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  display: flex;
}

.bio-detail-inner {
  width: 100%;
}

.bio-detail-inner-buttons {
  display: flex;
  align-items: flex-end;
  margin-bottom: 5px;
}

.bio-stat-wrapper {
  display: flex;
  align-items: center;
  width: calc(100% - 20px);
  margin: 10px;
  height: 30px;
}

.bio-field-label {
  width: 150px;
  display: inline-block;
}

.bio-input-field {
  display: inline-block;
  width: calc(100% - 150px);
  height: 33px;
  background-color: #FAF3E3;
  box-shadow: inset #7a7363 0px 1px 2px 1px;
  border: 1px solid #7A7363;
}

.bio-field-selectable {
  height: 35px;
  display: inline-block;
  width: calc(100% - 150px);
  background-color: #FAF3E3;
  box-shadow: inset #7a7363 0px 1px 2px 1px;
  border: 1px solid #7A7363;
}

.bio-field {
  width: -webkit-fill-available;
}

.bio-field-inner {
  height: 30px;
  width: -webkit-fill-available;
  background-color: #FAF3E3;
  box-shadow: inset #7a7363 0px 1px 3px 0px;
  border: 1px solid #7A7363;
  padding-left: 5px;
}

.bio-proceed-buttons-wrapper {
  width: 50%;
}

  /****************/
 /* RACE PROMPTS */
/****************/


.race-detail-header {
  display: flex;
  height: 10%;
  justify-content: center;
  font-size: 30px;
  align-items: center;
}

.auto-archrace-header {
  height: 100%;
  display: flex;
  width: 15%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.auto-corerace-header {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85%;
}

.race-detail-container {
  display: flex;
  /* width: 900px; */
  height: 90%;
  /* background-color: #544; */
  /* background-color: #A7A090; */
  background-color: #DAD3C3;
  /* margin: 0 auto; */
  box-shadow: #333 0px 0px 6px 0px;
  border-radius: 5px;
  outline: #544 solid 1px;
}

.auto-archraces {
  height: 100%;
  width: 15%;
  display: flex;
  flex-wrap: wrap;
  border-right: #333 solid 1px;
}

.auto-coreraces {
  height: 100%;
  width: 44%;
  display:inline-block;
  overflow-y:auto;
  border-right: #333 solid 1px;
  /* border: #222 solid 1px; */
}

.selectableCoreRace {
  display: flex;
  background-color: #DAD3C3;
  /* background-color: #aab; */
  padding: 5px;
}
.selectableCoreRace:hover {
  cursor: pointer;
}

.archraces-container {
  overflow-y: auto;
  overflow-x: hidden;
  height: min-content;
  max-height: 70%;
  width: 100%;
  border-bottom: solid 1px #333;
  border-top-left-radius: 3px;
}

.proceed-buttons-container {
  display: flex;
  justify-content: space-evenly;
  height: 30%;
  flex-direction: column;
  align-self: flex-end;
  width: 100%;
}

.char-prompt-details {
  border-bottom: solid 1px #333;
}

.auto-trait-selections {
  height: 100%;
  width: 44%;
  display:inline-block;
  overflow-y:auto;
  border-top-right-radius: 5px;
  /* border-top: #222 solid 1px;
  border-bottom: #222 solid 1px;
  border-right: #222 solid 1px; */
}

.archraces-container::-webkit-scrollbar,
.auto-trait-selections::-webkit-scrollbar,
.auto-coreraces::-webkit-scrollbar {
  width: 10px;
}
.archraces-container::-webkit-scrollbar-thumb,
.auto-trait-selections::-webkit-scrollbar-thumb,
.auto-coreraces::-webkit-scrollbar-thumb {
  background: #C9C2B2;
  border-radius: 10px;
  /* box-shadow: inset -.5px -1px 3px black; */
  box-shadow: inset 0 0px 4px black;
}
.archraces-container::-webkit-scrollbar-track,
.auto-trait-selections::-webkit-scrollbar-track,
.auto-coreraces::-webkit-scrollbar-track {
  /* background-color: #DAD3C3; */
  background-color: #C9C2B2;
  /* box-shadow: inset -0.5px -1px 3px black; */
  box-shadow: inset 0.5px 0px 1px #666;
  border-radius: 10px;
}
.archraces-container::-webkit-scrollbar-thumb:hover,
.auto-trait-selections::-webkit-scrollbar-thumb:hover,
.auto-coreraces::-webkit-scrollbar-thumb:hover {
  background-color: #B8B1A1;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #334;
}

.selectableCharacterQuality {
  padding: 5px;
  /* background-color: #aab; */
  /* background-color: #DDDFDD; */
  background-color: #DAD3C3;

}

.selectableCharacterQuality:hover {
  cursor: pointer;
}

.selectableTrait {
  /* background-color: #aab; */
  /* background-color: #DDDFDD; */
  background-color: #DAD3C3;

}

.selectableTrait:hover {
  cursor: pointer;
}

.selectableSelection {
  width: 100%;
  /* background-color: #aab; */
  /* background-color: #DDDFDD; */
  background-color: #DAD3C3;

}

.selectableSelection:hover {
  cursor: pointer;
}

.auto-selection {
  display: flex;
  position: relative;
  cursor: pointer;
  background-image: linear-gradient(135deg, #DAD3C3 79px, #CAC3B3);
  background-color: #DAD3C3;
}

.selectedCharacterQuality {
  /* background-color: #778; */
  /* background-color: #AAAFAA; */
  background: none !important;
  background-color: #A7A090 !important;
}

.selectedTrait{
  /* background-color: #778; */
  /* background-color: #AAAFAA; */
  background: none !important;
  background-color: #A7A090 !important;
}

.selected{
  /* background-color: #778; */
  /* background-color: #AAAFAA; */
  background: none !important;
  background-color: #A7A090 !important;
}

.disabled-trait {
  font-style: italic;
  cursor: default;
  background: none !important;
  background-color: #D0C0B0 !important;
  /* background-color: #aab; */
  /* background-color: #D0D0D0; */

  /* background-color: #8a8a9a; */
}

.disabled-trait:hover {
  cursor: default;
}

.disabled {
  font-style: italic;
  cursor: default;
  background: none !important;
  background-color: #D0C0B0 !important;
  /* background-color: #aab; */
  /* background-color: #DDDFDD; */
  /* background-color: #D0D0D0; */

}

.disabled:hover {
  cursor: default;
}

.statusIcon {
  height: 14px;
  width: 14px;
  position: absolute;
  top: 13px;
  left: 2px;
  font-size: 14px;
}

.selectableCoreSubrace {
  width: 15%;
  margin-bottom: 1px;
  margin-right: 1px;
  padding: 5px;
  outline: 1px solid gray;
}

.selectableCoreSubrace:hover {
  cursor: pointer;
}

.auto-traits-and-descs {
  display: flex;
  position: relative;
  cursor: pointer;
  background-image: linear-gradient(135deg, #DAD3C3 79px, #CAC3B3);
}

.auto-trait {
  width: 25%;
  display: inline-block;
  padding: 10px 5px;
  padding-left: 20px;
  position: relative;
}

.auto-trait-desc {
  width: 75%;
  max-height: 100px;
  /* overflow: hidden; */
  display: inline-block;
  padding: 10px 5px;
  margin-bottom: 15px;
  padding: 10px 10px 25px 5px;
  -webkit-mask-image: linear-gradient(180deg, #DAD3C3 98px, transparent);
}

.auto-trait-read-more {
  position: absolute;
  bottom: 0px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 20px;
  width: 15px;
  background-image: radial-gradient(#DAD3C3 0%, transparent);
  border-radius: 30px;
  padding: 2px 5px;
}

.auto-trait-read-more:hover {
  background-image: radial-gradient(#CAC3B3 0%, transparent);
  cursor: pointer !important;
}

.choose-banner {
  background-color: #6A6353;
  color: #ccc;
  text-align: center;
  padding: 10px 0;
}

.chosen-selection-subtext-symbol {
  font-size: calc(4px + 1vh);
}

.chosen-selection-subtext {
  font-size: calc(4px + 1vh);
}

.selection-prompt-visible-line-break {
  width: 100%;
  border-bottom: #7A7363 solid 1px;
}

/*
.hovered-desc {
  position: absolute;
  background-color: #949494;
  padding: 10px;
  width: 250px;
  margin-left: 280px;
  margin-top: -15px;
} */

.proceed-classes-button,
.proceed-charsheet-button {
  background-color: #36c;
  color: #ccc;
  display: flex;
  margin: 10px auto;
  align-items: center;
  /* height: 40%; */
  height: 55px;
  width: 85%;
  min-width: 70px;
  border-radius: 5px;
  text-decoration: none;
}

.proceed-classes-button-text,
.proceed-charsheet-button-text {
  display: table-cell;
  width: 100%;
  text-align: center;
  user-select: none;
  padding: 5px;
  min-width: 60px;
  border-radius: inherit;
}

.proceed-classes-button:hover,
.proceed-charsheet-button:hover {
  background-color: #14a;
  color: #aaa;
  cursor: pointer;
}

.go-back-button-text {
  display: table-cell;
  width: 100%;
  text-align: center;
  user-select: none;
  padding: 5px;
  min-width: 60px;
  border-radius: inherit;
}

.go-back-button {
  display: flex;
  width: 85%;
  text-decoration: none;
  /* height: 40%; */
  height: 55px;
  align-items: center;
  margin: 10px auto;
  min-width: 70px;
  background-color: #111;
  color: #999;
  border-radius: 5px;
}

.go-back-button:hover {
  cursor: pointer;
  background-color: #000 !important;
  color: #777 !important;
}

.disabled-button {
  background-color: #999 !important;
  color: #aaa !important;
  pointer-events: none;
}


.auto-background-variant-section-container {
  cursor: default;
}
.auto-background-variant-container {
  display: flex;
  justify-content: space-between;
}
.auto-background-variant-name {

}
.auto-background-slider {

}


/* ################################### */
/* ########### QUIK STATS ############ */
/* ################################### */

.quik-stats-container {
  width: calc(250px + 10vw);
  margin-left: 20px;
  display: flex;
  flex-wrap: wrap;
  background-color: #DAD3C3;
  box-shadow: #7a7363 0px 0px 6px 0px;
  border-radius: 3px;
  outline: #544 solid 1px;
}

.quik-stats-header-wrapper {
  height: 10%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quik-stats-header-text {
  display: flex;
  font-size: 30px;
}

.quik-stats-tabs {
  display: flex;
  width: 100%;
  height: 5%;
  position: relative;
  align-items: center;
  justify-content: space-evenly;

}

.quik-stats-tab {
  justify-content: center;
  display: inline-flex;
  flex-wrap: wrap;
  background-color: #BAB3A3;
  border-radius: 5px;
  align-items: center;
  height: 22px;
  box-shadow: black 0px 0px 3px 0px;
  max-width: 25%;
  min-width: 20%;
}

.quik-stats-tab:hover {
  cursor: pointer;
  background-color: #9A9383;
}

.quik-stats-tab-text {
  text-align: center;
  margin: 0 10px;
}

.quik-stats-details {
  height: 85%;
  width: 100%;
  background-color: #A7A090;
  padding-top: 1px;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* .quik-stats-wrapper {
  padding: 2px;
  height: 95%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  width: 100%;
} */

.quik-stat-wrapper {
  /* outline: black solid 2px; */
  margin: 4px 0;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.quik-stat {
  background-color: #DAD3C3;
  margin: 0 1px;
  text-align: center;
  min-height: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* display: block; */
  padding: 3px;
}

.quik-stat-field-value, .quik-stat-field-name {
  width: 100%
}

.quik-stat-field-sub-value {
  width: 15px;
  margin: 0 auto;
  border-radius: 30px;
  border: solid black 1px;
  font-size: 10px;
}

.quik-stat-field-value-text {

}

.first-element-rounded-top {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.width-pct-1 {
  width: 100%;
}
.width-pct-2 {
  width: 50%;
}
.width-pct-3 {
  width: 33.33%;
}
.width-pct-4 {
  width: 25%;
}
.width-pct-5 {
  width: 20%;
}
.width-pct-6 {
  width: 16.66%;
}
.width-pct-7 {
  width: 14.28%;
}
.width-pct-8 {
  width: 12.5%;
}
.width-pct-9 {
  width: 11.11%;
}
.width-pct-10 {
  width: 10%;
}


.quik-ability {
  width:100%;
  display:flex;
  background-color: #DAD3C3;
  /* outline-style: solid; */
  margin: 1px 0;
}

.quik-ability-title {
  display: flex;
  align-items: center;
  width: 50%;
  border-right: #A7A090 solid 2px;
}

.quik-ability-title-name {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 10px 0;
}

.quik-ability-names {
  /* display: flex; */
  /* flex-wrap: wrap; */
  width: 50%;
  margin: 10px 0 10px 5px;
}

.quik-ability-name {
  width: 100%;
}



.quik-inventory{
  width: 100%;
  height: 100%;
  padding-top: 1px;
  display: flex;
  flex-direction: column;
  background-color: #A7A090;
}

.quik-inventory-monies{
  display: flex;
  justify-content: space-evenly;
  height: 10%;
  text-align: center;
  padding: 10px 0;
  background-color: #DAD3C3;
}

.quik-inventory-currency{}

.quik-inventory-currency-name{}

.quik-inventory-currency-value{}

.quik-inventory-items-title {
  text-align: center;
  margin-top: 2px;
  margin-bottom: 1px;
  padding-top: 10px;
  padding-bottom: 2px;
  background-color: #DAD3C3;
}

.quik-inventory-items{
  flex: 1;
  padding: 5px 0 0 0;
  background-color: #DAD3C3;
}

.quik-inventory-item {
  padding: 0 10px;
}


/* ############################################ */
/* ############# CHARACTERS SECTION ########### */
/* ############################################ */

.characters-table-container {
  background-color: #DAD3C3;
  /* display: flex; */
  justify-content: center;
  flex-wrap: wrap;
  width: 60vw;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  box-shadow: #333 0px 0px 10px -1px;
}

.characters-table-title {
  width: 100%;
  padding: 40px 0 10px 0;
  font-size: 30px;
  text-align: center;
}

.characters-table-list {
  width: 100%;
  border-top: 1px solid black;
  border-left: 1px solid black;
}

.characters-creation-button-container {
  display: flex;
  justify-content: center;
  margin: 20px auto 0;
  flex-direction: column;
  background-color: #36c;
  /* background-color: #607d8b; */
  color: #fff;
  border-radius: 5px;
  padding: 15px;
}

.characters-creation-button-container:hover {
  background-color: #059862;
  cursor: pointer;
}

.characters-creation-button-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.characters-creation-button-link {
  width: 350px;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  color: white;
}

.characters-creation-button-advisory {
  width: 350px;
  font-size: 12px;
  text-align: left;
  margin: 0 auto;
}

.characters-creation-button-advisory-text {

}

.character-row-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 1px;
  height: 60px;
  /* outline: black solid 1px; */
}

.character-row-centered{
  text-align: center;
  display: flex;
  justify-content: center;
}

.listed-character-cell {
  /* padding: 0 10px; */
  height: 100%;
  display: block;
  align-items: center;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}

.listed-character-name {
  width: 20%;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listed-character-details {
  width: 20%;
}

.listed-character-campaign {
  width: 20%;
}

.listed-character-status {
  width: 20%;
}

.listed-character-cell-content {
  display: flex;
  height: 100%;
  /* width: 100%; */
  align-items: center;
  flex-direction: row;
  padding: 0 10px;
}

.listed-character-button {
  width: 10%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.listed-character-import-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #36c;
  color: #ddd;
  height: 40px;
  width: 40px;
  border-radius: 5px;
}

.listed-character-import-button:hover {
  cursor:pointer;
  background-color: #25b;
  color: #ccc;
}

.listed-character-delete-button {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #36c; */
  height: 40px;
  width: 40px;
  border-radius: 5px;
  background-color: #111;
  color: #aaa;
}

.listed-character-delete-button:hover {
  cursor:pointer;
  background-color: #000;
  color: #999;
}

/* ############################ */
/* ######## CAMPAIGNS ######### */
/* ############################ */

.campaigns-container {
  display: flex;
  height: 100%;
  padding: 0 10px;
}

.campaigns-list-container {
  height: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  border-radius: 4px;
  background-color: #DAD3C3;
  /* position: relative; */
  box-shadow: #333 0px 0px 10px -1px;
}

.campaigns-samples-list {
  width: calc(70% - 40px);
  padding: 0 20px;
}

.campaigns-personal-list {
  width: calc(30% - 20px);

}

.campaigns-squares-title-personal {
  font-size: 18px;
  text-align: center;
  margin: 15px 0;
  height: 20px;
}
.campaigns-squares-title {
  height: 20px;
  font-size: 18px;
  margin: 15px 0 15px 60px;
}

.campaigns-squares-container {
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
}

.campaigns-square-container {
  margin: 10px;
  width: 21vh;
}

.campaigns-squares-container-personal {
  width: 100%;
  height: calc(100% - 125px);
  overflow-y: auto;
}

.campaigns-squares-container-personal::-webkit-scrollbar {
  width: 10px;
}
.campaigns-squares-container-personal::-webkit-scrollbar-thumb {
  background: #C9C2B2;
  border-radius: 10px;
  box-shadow: inset 0 0px 4px black;
}
.campaigns-squares-container-personal::-webkit-scrollbar-track {
  background-color: #C9C2B2;
  box-shadow: inset 0.5px 0px 1px #666;
  border-radius: 10px;
}
.campaigns-squares-container-personal::-webkit-scrollbar-thumb:hover {
  background-color: #B8B1A1;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #334;
}

.campaigns-square-container-personal {
  margin: 10px;
  width: calc(100% - 20px);
  height: min-content;
}

.campaigns-image-personal {
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* height: calc(56.25%); */
  border-radius: 4px;  /* height: calc(56.25%); */
}
.campaigns-image {
  /* max-width: 21vh;
  height: 15vh; */
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* height: calc(56.25%); */
  border-radius: 4px;  /* height: calc(56.25%); */

}

.campaigns-square {
  /* height: 150px;
  width: 240px; */
  height: 15vh;
  background-color: #888;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 5vh;
  color: #666;
  border-radius: 4px;
  cursor: pointer;
}

.campaigns-square-personal {
  height: 157px;
  width: 220px;
  margin: 0 auto;
  background-color: #888;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 5vh;
  color: #666;
  border-radius: 4px;
  cursor: pointer;
}

.campaigns-square-symbol {
  text-align: center;
  background-color: #aaa;
  border-radius: 3.5vh;
  height: 7vh;
  width: 7vh;
  /* border-radius: 35px;
  height: 70px;
  width: 70px; */
}

.campaigns-square-title-personal {
  text-align: right;
  height: 20px;
  width: 220px;
  margin: 0 auto;
}

.campaigns-square-title {
  text-align: right;
}


.campaigns-create-container {
  /* position: absolute; */
  /* left: calc(100% - 190px); */
  margin: 10px auto;
  background-color: #36c;
  color: #ccc;
  width: 150px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.campaigns-create-container:hover {
  background-color: #14a;
  cursor: pointer;
}

.campaigns-un-full-access {
  padding-left: 20px;
}

/* ################################ */
/* ######## CAMPAIGN FORM ######### */
/* ################################ */


.campaigns-create-popup {
  padding: 20px 10px;

  position: absolute;
  float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  border-radius: 6px;
  margin: auto;
  box-shadow: inset black 0px 0px 1px 1px, black 0px 0px 6px 1px;
  background-color: #A7A090;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  width: 300px;
  overflow-y: auto
}

.campaigns-create-popup-headings-container {

}

.campaigns-create-popup-main-heading {
  text-align: center;
  font-size: 20px
}

.campaigns-create-popup-sub-heading {
  text-align: center;
  font-size: 10px
}

.campaigns-create-popup-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 10px;
}

.campaigns-create-popup-field {
  width: 100%;
  margin-top: 10px;
}

.campaigns-create-popup-button-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}

.campaign-form-button {
  background-color: #36c;
  height: 30px;
  width: 50px;
}


/* ########################### */
/* ######## CAMPAIGN ######### */
/* ########################### */

.campaign-page {
  display: flex;
  height: 100%;
}



/* ############################### */
/* ######## CAMPAIGN NAV ######### */
/* ############################### */

.campaign-nav {
  width: 200px;
  display: flex;
  align-items: center;
}

.campaign-nav-collapsed {
  width: 50px;
}

.campaign-nav-collapse-button-container {
  position: absolute;
  background-color: #999;
  border: black solid 1px;
  border-radius: 26px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 76px;
  left: 173px;
  z-index: 1;
  box-shadow: inset 0px 0px 2px 0px black, 0 0 1px 0 black;
}

.campaign-nav-collapsed-button {
  left: 23px;
}

.campaign-three-nav-options {
  top: 50px;
}
.campaign-four-nav-options {
  top: 76px;
}

.campaign-nav-collapse-button-container:hover {
  background-color: #777;
}

.campaign-nav-collapse-symbol {
  width: 30px;
  display: flex;
  justify-content: right;
}

.campaign-nav-container {
  border-top: solid black 1px;
  width: 200px;
  position: relative;
}

.campaign-nav-option {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 50px;
  border-bottom: solid black 1px;
  border-right: solid black 1px;
  box-shadow: inset 0px 0px 2px 0px black, 0 0 1px 0 black;
  background-color: #999;
}

.campaign-nav-option:hover {
  background-color: #777;
  cursor: pointer;
}

.campaign-nav-option-selected {
  background-color: #777;
}

.campaign-nav-option-symbol {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaign-nav-option-name {
  /* padding-left: 10px; */
}

.campaign-section-container {
  width: calc(100% - 200px);
  margin: 20px;
}

.campaign-section-collapsed {
  width: calc(100% - 50px);
}


/* ################################### */
/* ######## CAMPAIGN ACTIONS ######### */
/* ################################### */

.campaign-actions-container {
  width: 100%;
  display: flex;
  background-color: #DAD3C3;
  border-radius: 6px;
  box-shadow: #333 0px 0px 10px -1px;
  padding-bottom: 20px;
}

.campaign-actions-members-container {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 20px;
}

.campaign-actions-members-header {
  padding: 20px 0;
  font-size: 30px;
  width: 100%;
  text-align: center;
}

.campaign-actions-members-table {
  width: 500px;
  display: flex;
  border-top: 1px solid black;
  border-left: 1px solid black;
  flex-wrap: wrap;
  margin: 0 auto;
}

.campaign-member-container {
  width: 100%;
  display: flex;
}

.campaign-member-row-cell {
  padding: 15px 10px;
  display: flex;
  align-items: center;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}

.campaign-member-row-header {
  justify-content: center;
}

.campaign-member-row-name {
  width: 50%;
}
.campaign-member-row-level {
  width: 25%;
  padding: 10px;
  justify-content: center;
}

.campaign-member-role-circle-text {
  height: 30px;
  width: 30px;
  border-radius: 21px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}

.circle-dm {
  background-color: purple;
}

.circle-pc {
  background-color: blue;
}

.campaign-member-row-button {
  width: 25%;
  justify-content: center;
}

.campaign-member-remove-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #999;
  height: 35px;
  width: 35px;
  border-radius: 5px;
}

.campaign-member-remove-button:hover {
  cursor: pointer;
  background-color: #777;
}

.campaign-actions-dm-action-buttons-container {
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  width: 600px;
}

.campaign-actions-dm-action-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.campaign-actions-dm-action-button {
  height: 50px;
  width: 130px;
  border-radius: 6px;
  background-color: #36c;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
}

.small-disclaimer {
  font-size: 10px;
  text-align: center;
}

.campaign-actions-dm-action-button:hover {
  cursor:pointer;
  background-color: #25b;
}

.campaign-actions-dm-action-button-delete {
  background-color: #111;
  color: #aaa;
}

.campaign-actions-dm-action-button-delete:hover {
  cursor:pointer;
  background-color: #060606;
  color: #888;
}

.campaign-actions-dm-action-slider-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 170px;
}

.campaign-actions-dm-action-slider {
  display: flex;
  width: 100%;
  justify-content: center;
}

.campaign-actions-photo-container {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.campaign-actions-image-header {
  padding: 20px 0;
  font-size: 30px;
  width: 100%;
  text-align: center;
}

.campaign-actions-image-container {
  width: 100%;
  text-align: center;
  align-self: flex-end;
}

.campaign-actions-image-buttons-container {
  width: 100%;
}

.campaign-actions-photo-button-row {
  width: 100%;
  display: flex;
  justify-content: center;
}

.campaign-actions-blank-preview {
  height: 250px;
  width: 250px;
  background-color: #888;
  border: solid black 1px;
  margin: 0 auto;
}

.campaign-actions-image {
  height: 300px;
  max-width: 600px;
}

.campaign-actions-image-button {
  margin-top: 5px;
  height: 50px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  background-color: #36c;
  border-radius: 6px;
}

.campaign-actions-image-button:hover {
  cursor:pointer;
  background-color: #25b;
}

.campaign-actions-image-button-file {
  margin-top: 10px;
  background-color: #36c;
  height: 50px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.campaign-actions-image-button-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  cursor: inherit;
  display: block;
}

.campaign-actions-image-button-file:hover {
  cursor:pointer;
  background-color: #25b;
}


/* ###################################### */
/* ######## CAMPAIGN FIELD VIEW ######### */
/* ###################################### */

.campaign-field-view-container {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #DAD3C3;
  border-radius: 6px;
  box-shadow: #333 0px 0px 10px -1px;
  margin-bottom: 20px;
}

.campaign-field-view-map-section {
  width: 100%;
  height: 100%;
  display: flex;
}

/* ################################ */
/* ######## CAMPAIGN INFO ######### */
/* ################################ */

.campaign-info-container {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #DAD3C3;
  border-radius: 6px;
  box-shadow: #333 0px 0px 10px -1px;
  margin-bottom: 20px;
}

/* ###################################### */
/* ######## CAMPAIGN FIELD VIEW ######### */
/* ###################################### */

.campaign-field-view-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  width: 100%;
}

/* ################################ */
/* ######## CAMPAIGN HOME ######### */
/* ################################ */

.campaign-home-container {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  background-color: #DAD3C3;
  border-radius: 6px;
  box-shadow: #333 0px 0px 10px -1px;
  margin-bottom: 20px;
}

.campaign-home-top-section {
  width: 100%;
  height: 50%;
  display: flex;
}

.campaign-home-bottom-section {
  width: 100%;
  height: 50%;
  display: flex;
}


.campaign-home-box {
  height: 100%;
}

.campaign-home-left-section {
  display: flex;
  width: 70%;
  height: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.campaign-home-right-section {
  display: flex;
  width: 30%;
  height: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.campaign-home-top-left {
  /* width: 60%; */
  width: -webkit-fill-available;
}
.campaign-home-top-right {
  display: flex;
  height: 40%;
  width: 100%;
}
.campaign-home-users {
  display: flex;
  background-color: #CAC3B3;
  border-radius: 5px;
  height: calc(60% - 20px);
  width: calc(100% - 20px);
  margin: 10px;
}
.campaign-home-bottom-right {
  width: 60%;
}

.campaign-home-title {
  border-radius: 4px;
  width: calc(100% - 40px);
  height: 60px;
  font-size: calc(15px + 3vh);
  padding-left: 20px;
  padding-right: 20px;
  background-color: #CAC3B3;
  margin: 10px;
  display: flex;
  align-items: center;
}

.campaign-home-desc {
  font-size: calc(10px + 1vh);
  display: inline-flex;
  margin-left: 10px;
}

.campaign-home-quest-section {
  display: flex;
  width: 100%;
  height: calc(100% - 80px);
}

.campaign-quest-notes-campaign-notes {
  height: calc(100% - 60px) !important;
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  position: relative;
}

.campaign-quest-notes-save-container {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 60px;
  height: 40px;
  border-radius: 6px;
  background-color: #36c;
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaign-quest-notes-save-container:hover {
  cursor:pointer;
  background-color: #25b;
}

.campaign-quest-notes-save {
}

/* .quest-box {
  height: calc(100% - 100px) !important;
  margin: 20px 10px 10px !important;
} */

.image-box {
  height: calc(100% - 100px) !important;
}

.campaign-home-title-section {
  height: 80px;
  display: flex;
}

.campaign-home-quest-section {
  display: flex;
  width: 100%;
  height: calc(100% - 80px);
}

.campaign-home-section-box {
  display: flex;
  flex-wrap:wrap;
  background-color: #CAC3B3;
  border-radius: 5px;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  margin: 10px;
}

.campaign-home-chars-box-content {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 40px);
  padding: 10px 20px;
  height: calc(100% - 20px);
}

.campaign-home-section-box-content {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 20px);
  padding: 10px 10px;
  margin: 0 10px 5px 10px;
  height: calc(100% - 85px);
  background-color: #DAD3C3;
  box-shadow: inset #7a7363 0px 1px 3px 1px;
  white-space: pre-line;
  overflow-y: auto;
}

.campaign-home-section-box-content::-webkit-scrollbar {
  width: 10px;
}
.campaign-home-section-box-content::-webkit-scrollbar-thumb {
  background: #C9C2B2;
  border-radius: 10px;
  box-shadow: inset 0 0px 4px black;
}
.campaign-home-section-box-content::-webkit-scrollbar-track {
  background-color: #C9C2B2;
  box-shadow: inset 0.5px 0px 1px #666;
  border-radius: 10px;
}
.campaign-home-section-box-content::-webkit-scrollbar-thumb:hover {
  background-color: #B8B1A1;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #334;
}

.campaign-home-section-box-image {
  display: flex;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  padding: 10px;
}

.campaign-home-coming-soon {
  font-size: calc(10px + 3vh);
}

.campaign-home-image {
  width: -webkit-fill-available;
  object-fit: contain;
}

.campaign-home-players-header {
  height: 30px;
  width: 100%;
  text-align: center;
  font-size: calc(10px + 1.5vh);
}

.campaign-home-characters-container {
  padding: 5px 0;
  width: 100%;
  height: calc(100% - 45px);
  margin: 5px 0;
  border-radius: 8px;
  background-color: #AAA393;
  box-shadow: #8a8373 0px 0px 6px 0px, inset #8a8373 0 0 2px;
  outline: #8a8373 solid 1px;
  /* overflow: auto; */
}

.campaign-home-characters {
  /* padding: 5px 0;
  width: 100%;
  height: calc(100% - 45px);
  margin: 5px 0; */
  /* border-radius: 8px;
  background-color: #AAA393;
  box-shadow: #8a8373 0px 0px 6px 0px, inset #8a8373 0 0 2px;
  outline: #8a8373 solid 1px; */
  overflow: auto;
  height: 100%;
  margin: 0 5px 0 0;
}
/*
.story-mode-inner-wrapper {
  overflow-y: auto;
  position: relative;
  height: 100%;
} */

.campaign-home-characters::-webkit-scrollbar {
  width: 10px;
}
.campaign-home-characters::-webkit-scrollbar-thumb {
  background: #C9C2B2;
  border-radius: 10px;
  box-shadow: inset 0 0px 4px black;
}
.campaign-home-characters::-webkit-scrollbar-track {
  background-color: #C9C2B2;
  box-shadow: inset 0.5px 0px 1px #666;
  border-radius: 10px;
}
.campaign-home-characters::-webkit-scrollbar-thumb:hover {
  background-color: #B8B1A1;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #334;
}

.campaign-home-characters-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.campaign-home-character-row {
  height: 25px;
  width: 100%;
  background-color: #bAb3a3;
  margin: 5px 10px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  /* box-shadow: #8a8373 0px 0px 6px 0px, inset #8a8373 0 0 2px; */
  outline: #8a8373 solid 1px;
}

/* ###################################### */
/* ######## CAMPAIGN CHAR SHEET ######### */
/* ###################################### */

.fillable-char-field {
  /* background-color: #D3C7B2; */
}

.campaign-char-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #DAD3C3;
  border-radius: 6px;
  box-shadow: #333 0px 0px 10px -1px;
  margin-bottom: 20px;
}

.campaign-char-sheet-nav-container {
  position: absolute;
  background-color: #999;
  border-left: solid black 1px;
  border-top: solid black 1px;
  box-shadow: #333 0px 0px 6px -3px;
  top: -15px;
  /* border-radius: 5px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaign-char-sheet-nav-option {
  height: 30px;
  width: 50px;
  display: flex;
  justify-content: center;
  border-right: solid black 1px;
  border-bottom: solid black 1px;
  box-shadow: inset 0px 0px 2px 0px black;
}

.campaign-char-sheet-nav-option:hover {
  background-color: #777;
  cursor: pointer;
}

/* ################################################# */
/* ######## CAMPAIGN CHAR SHEET MAIN STATS ######### */
/* ################################################# */

.campaign-char-sheet-characters-wrapper {
  width: 100%;
}

.campaign-char-sheet-characters {
  width: 450px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.campaign-char-sheet-characters-alt {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.campaign-char-sheet-characters-heading {
  font-size: 28px;
  text-align: center;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.campaign-char-sheet-characters-heading-alt {
  font-size: 28px;
  text-align: center;
  width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.campaign-char-sheet-character-rows {
  padding: 5px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px;
  border-radius: 8px;
  background-color: #8A8373;
  box-shadow: #6a6353 0px 0px 6px 0px, inset #6a6353 0 0 2px;
  outline: #6a6353 solid 1px;
}

.campaign-char-sheet-character-row {
  height: 25px;
  width: 100%;
  background-color: #bAb3a3;
  margin: 10px 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 6px;
  justify-content: space-between;
}

.campaign-char-sheet-character-row:hover {
  background-color: #AAA393;
  box-shadow: #6a6353 0px 0px 6px 0px, inset #6a6353 0 0 2px;
  outline: #6a6353 solid 1px;
}

.campaign-char-sheet-remove-character-icon {
  height: 20px;
  width: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #BA6343;
  font-size: 12px;
  box-shadow: 0px 0px 2px 1px #8a0313;
}

.campaign-char-sheet-remove-character-icon:hover {
  background-color: #8A3323;
  cursor: pointer;
  color: #aaa;
}

.campaign-char-go-back-button {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 25px;
  height: 25px;
  width: 25px;
  background-color: #9A9383;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.campaign-char-main-stats-container {
  display: flex;
  padding: 10px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
  overflow-y: hidden;
  border-radius: 6px;
  box-shadow: inset 0px 0px 3px 3px #414020;
}

.campaign-char-main-stats-header {
  width: 100%;
  height: 20%;
  border-bottom: #333 solid 1px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.campaign-char-main-stats-header-sub-section {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 0 10px 0;
}

.campaign-char-main-stats-header-sub-section-right {
  width: 50%;
  margin-left: 20%;
}

.campaign-char-main-stats-header-stat-name-container {
  width: calc(100% - 125px);
  padding-left: 15px;
}

.character-portrait-circle {
  height: 70px;
  width: 70px;
  border-radius: 50px;
  margin-left: 30px;
  background-color: #9A9383;
  outline: 1px solid #3A3323;
  object-fit: cover;
}

.grand-text {
  font-size: calc(10px + 2.5vh);
}

.campaign-char-main-stats-header-stat-name {
  /* font-size: 25px; */
}

.small-char-stat {
  height: 25%;
  width: 33%;
}

.subtext {
  font-size: calc(2px + 1.5vh);
}

.maintext {
  font-size: calc(6px + 1.8vh);
}

.campaign-char-main-stats-sub-section {
  width: 33%;
  height: calc(80% - 10px);
  padding-bottom: 10px;
}

.campaign-char-main-stats-middle-section {
  border-left: #333 solid 1px;
  border-right: #333 solid 1px;
}

.campaign-char-main-stats-sub-section-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.campaign-char-main-stats-abilities {
  height: 45%;
  border-bottom: solid #333 1px;
}

.campaign-char-main-stats-prof-insp {
  height: 20%;
  border-bottom: solid #333 1px;
}

.campaign-char-main-stats-saving-throws {
  height: 35%;
}

.campaign-char-main-stats-saving-throws-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.campaign-char-ability-container {
  width: calc(33% - 10px);
  height: 36%;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #BAB3A3;
  border-radius: 6px;
  box-shadow: 0px 0px 0.5px 1px #8a8373;
}

.campaign-char-ability-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.campaign-char-ability {
  /* height: 16%; */
  /* width: 33%; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.ability-title {
  align-items: end;
  width: 100%;
  font-size: calc(13px + 0.5vh);
}


.grand-ability {
  width: 100%;
  font-size: calc(16px + 1vh);
}

.ability-score {
  align-items: start;
  width: 100%;
}

.campaign-char-prof-insp-container {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.campaign-char-prof-insp {
  /* width: 30%; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.campaign-char-prof-insp-value {
  /* width: 20%; */
  height: 100%;
  margin-left: 5px;
  display: flex;
  align-items: center;
}

.campaign-char-saving-throws-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 10.2%;
  /* font-size: 2.5vh; */
  font-size: calc(16px + 0.5vh);
}

.campaign-char-saving-throw {
  width: 42%;
  height: 14.2%;
  display: flex;
  align-items: center;
  font-size: calc(2px + 1.5vh);
  border-bottom: 1px #333 solid;

}

.campaign-char-saving-throw-box {
  width: 25%;
  margin-right: 3%;
  display: flex;
  align-items: center;
  font-size: calc(2px + 1.5vh);
  justify-content: flex-end;
}
.campaign-char-saving-throw-value {
  width: 10%;
  align-items: center;
  display: flex;
  font-size: calc(2px + 1.5vh);
  border-bottom: 1px #333 solid;
  margin-right: 20%;
  justify-content: flex-end;
}

.campaign-char-main-stats-passive-skills{
  height: 20%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: solid #333 1px;
}

.campaign-char-passive-skill-header {
    height: 33%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(16px + 0.5vh);
}

.campaign-char-passive-skill {
  width: 33%;
  height: 33%;
  display: flex;
  justify-content: center;
  align-items: start;
}

.campaign-char-passive-skill-value {
  width: 33%;
  height: 33%;
  display: flex;
  justify-content: center;
  align-items: end;
}

.campaign-char-main-stats-skills {
  height: 80%;
  /* overflow-y: auto; */
}

.campaign-char-main-stats-skills-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.campaign-char-skills-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  font-size: calc(16px + 0.5vh);
}

.campaign-char-skill {
  width: 45%;
  align-items: center;
  display: flex;
  font-size: calc(2px + 1.5vh);
  border-bottom: 1px #333 solid;
}

.campaign-char-skill-value {
  width: 10%;
  align-items: center;
  display: flex;
  font-size: calc(2px + 1.5vh);
  border-bottom: 1px #333 solid;
  margin-right: 20%;
  justify-content: flex-end;
}

.campaign-char-skill-box {
  width: 22%;
  margin-right: 3%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: calc(2px + 1.5vh);
}


.campaign-char-main-stats-ac-init-speed-box {
  width: 100%;
  height: 15%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-bottom: 1px #333 solid;
}

.campaign-char-main-stats-ac-init-speed-stat {
  width: 33%;
  height: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ac-init-speed-text {
  align-items: flex-start;
}

.campaign-char-main-stats-hp-box {
  width: 100%;
  height: 20%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-bottom: 1px #333 solid;
}

.campaign-char-hp-box-container {
  width: calc(33% - 10px);
  height: calc(80% - 20px);
  background-color: #bAb3a3;
  margin: 10px 5px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 0px 0.5px 1px #8a8373;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.clickable-hp-box:hover {
  cursor: pointer;
  background-color: #AAA393;
}

.campaign-char-hp-box-wrapper {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.campaign-char-hp-box {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: flex-start;
  /* align-items: center; */
  justify-content: center;
}

/* .campaign-char-main-stats-hp-stat {
  width: 33%;
  height: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hp-stat-text {
  align-items: flex-start;
} */


.campaign-char-main-stats-hit-dice-death-saves-box {
  width: 100%;
  height: 15%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5% 0;
  border-bottom: 1px #333 solid;
}

.campaign-char-main-stats-hit-dice-container {
  width: 33%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.campaign-char-main-stats-hit-dice-stat {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hit-dice-stat-text {
  align-self: flex-start;
}

.campaign-char-main-stats-death-saves-container {
  width: 33%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.campaign-char-main-stats-death-saves-chart {
  height: 75%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.campaign-char-main-stats-death-saves-chart-set {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-right: 20%;
}

.death-save-successes-text, .death-save-failures-text {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.death-save-successes, .death-save-failures {
  display: flex;
  width: 45%;
  margin-left: 5%;
  align-items: center;
  cursor: pointer;
}

.death-save-success, .death-save-failure {
  margin: 0 1px;
}

.campaign-char-main-stats-death-saves-text {
  height: 25%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaign-char-main-stats-combat-tooltip-button-container {
  width: 33%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.campaign-char-main-stats-combat-tooltip-button {
  height: 40px;
  width: 60px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #9AA383;
  padding: 5px;
  box-shadow: 0 0 3px 1px #7a7363;
  outline: 1px solid #5A5343;
}
.campaign-char-main-stats-combat-tooltip-button:hover {
  cursor: pointer;
  background-color: #8A9373;
}

.campaign-confirm-drop-popup-inner-tool-tip {
  padding: 20px 10px;
  position: absolute;
  float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  margin: auto;
  box-shadow: inset black 0px 0px 1px 1px, black 0px 0px 6px 1px;
  background-color: #A7A090;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 85%;
  height: 85%;
}

.tool-tips-popup-container {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-y: auto;
  flex-wrap: wrap;
  align-items: flex-start;
}

.tool-tips-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: calc(90% - 55px);
  overflow-y: auto;
  background-color: #DAD3C3;
  padding: 20px;
  box-shadow: inset 0 1px 3px 3px #7a7363;
}
.tool-tips-container::-webkit-scrollbar {
  width: 10px;
}
.tool-tips-container::-webkit-scrollbar-thumb {
  background: #C9C2B2;
  border-radius: 0px;
  box-shadow: inset 0px 0px 5px 1px #393222
}
.tool-tips-container::-webkit-scrollbar-track {
  background-color: #C9C2B2;
  box-shadow: inset 0px 1px 2px 1px #666;
  border-radius: 0px;
}

.tool-tips-container::-webkit-scrollbar:hover {
  cursor: pointer;
}

.tool-tips-container::-webkit-scrollbar-thumb:hover {
  background-color: #A9A292;
  /* border-radius: 10px; */
  box-shadow: inset 0 0 5px 1px #191202;
}

.tool-tips-summary {
  width: 42%;
}
.tool-tips-actions {
  width: 58%;
}
.tool-tips-interactions {
  margin-top: 10px;
}
.tool-tips-cover {
  margin-top: 10px;
}


.tool-tips-summary-header {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tool-tips-summary-items {

}
.tool-tips-summary-item {
  margin-left: 20px;
  font-size: 14px;
}
.tool-tips-actions-uls {
  padding: 5px;
  margin: 0;
  column-count: 2;
  list-style-position: inside;
  overflow-x: hidden;
  column-gap: 3px;
}
.tool-tips-action {
  width: calc(100% - 10px);
  max-width: calc(100% - 10px);
  font-size: calc(3px + 1.5vh);
  list-style-type: none;
  margin-bottom: 3px;
  padding-left: 5px;
  padding-right: 5px;
}
.tool-tips-action-header {
  text-align: center;
  font-size: 16px;
}
.tool-tips-action-desc {
  font-size: 14px;
}




.campaign-char-main-stats-background-bio {
  width: 100%;
  height: 43.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.campaign-char-main-stats-background-personality-container {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.campaign-char-main-stats-background-personality {
  margin-left: 5%;
  width: 35%;
  display: flex;
}

.campaign-char-main-stats-background-personality-text {

}

.campaign-char-main-stats-background-personality-description {
  width: 60%;
}

.height-20-pct {
  height: 20%;
}
.height-25-pct {
  height: 25%;
}
.height-50-pct {
  height: 50%;
}
.height-100-pct {
  height: 100%;
}

.info-symbol-container {
  display: flex;
  font-size: calc(10px + 0.5vh);
  margin-left: 5px;
  align-items: center;
}

.campaign-char-bonus-fields-header {
  height: 40px;
  width: 100%;
  font-size: calc(16px + 0.5vh);
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaign-char-rendered-bonus-fields {
  height: calc(100% - 50px);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

.campaign-char-rendered-bonus-field-container {
    width: calc(33% - 10px);
    height: calc(50% - 20px);
    background-color: #bAb3a3;
    margin: 10px 5px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 0.5px 1px #8a8373;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* ############################################# */
/* ######## CAMPAIGN CHAR SHEET NOTES ######### */
/* ############################################# */

textarea {
  box-shadow: inset #7a7363 0px 1px 2px 1px;
  border: 1px solid #7A7363;
  background-color: #FAF3E3;
  resize: none;
  outline: none;
  padding: 5px;
}

.campaign-char-notes-container {
  display: flex;
  width: 100%;
  overflow-y: hidden;
  border-radius: 6px;
  box-shadow: inset 0px 0px 2px 2px #414020;
  padding: 10px;
}

.campaign-char-notes-section {
  width: calc(50% - 30px);
  height: calc(100% - 20px);
  display: flex;
  flex-wrap: wrap;
}

.char-notes-section-left {
  box-shadow: inset -19px 0 16px -17px #2a2313;
  border-right: 0.5px solid #5a5343;
  padding: 10px 20px 10px 10px;
}
.char-notes-section-right {
  box-shadow: inset 19px 0 16px -17px #2a2313;
  padding: 10px 10px 10px 20px;
}

.campaign-char-notes-header {
  text-align: center;
  font-size: 30px;
  height: 40px;
  width: 100%;
  margin-top: 10px;
}

.campaign-char-notes-input-wrapper {
  display: flex;
  height: calc(100% - 50px);
  width: 100%;
  position: relative;
}

.campaign-char-notes-input-wrapper-small {
  display: flex;
  height: calc(50% - 50px);
  width: 100%;
}

.campaign-char-notes-input {
  display: flex;
  height: 100%;
  width: 100%;
}

.campaign-char-notes-field {
  height: calc(100% - 10px);
  width: calc(100% - 10px);
}

.campaign-char-notes-field::-webkit-scrollbar {
  width: 10px;
}
.campaign-char-notes-field::-webkit-scrollbar-thumb {
  background: #C9C2B2;
  border-radius: 0px;
  box-shadow: inset 0px 0px 5px 1px #393222
}
.campaign-char-notes-field::-webkit-scrollbar-track {
  background-color: #C9C2B2;
  box-shadow: inset 0px 1px 2px 1px #666;
  border-radius: 0px;
}

.campaign-char-notes-field::-webkit-scrollbar:hover {
  cursor: pointer;
}

.campaign-char-notes-field::-webkit-scrollbar-thumb:hover {
  background-color: #A9A292;
  /* border-radius: 10px; */
  box-shadow: inset 0 0 5px 1px #191202;
}

.campaign-char-notes-limit {
  position: absolute;
  right: 5px;
  top: -14px;
  color: #333;
  font-size: 11px;
}




.campaign-char-notes-photo-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.campaign-char-notes-photo-container {
  display: flex;
  justify-content: right;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  margin-top: 10px;
}

.campaign-char-notes-image-container {
  width: calc(50% - 20px);
  margin: 0 10px;
  text-align: right;
  height: 25vh;
}

.campaign-char-notes-img {
  height: 25vh;
}

.campaign-char-notes-photo-button-row {
  width: calc(100% - 20px);
  display: flex;
  justify-content: left;
  margin: 5px 10px;
}

.campaign-char-notes-image-buttons-container-wrapper {
  width: 50%;
  display: flex;
  align-items: center;
}

.campaign-char-notes-image-buttons-container {
}

.campaign-char-notes-image-button {
  margin-top: 0 !important;
}

.campaign-char-notes-save-container {
  position: absolute;
  right: 10px;
  width: 60px;
  height: 40px;
  border-radius: 6px;
  background-color: #36c;
  color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaign-char-notes-save {

}

.campaign-char-notes-save-container:hover {
  cursor:pointer;
  background-color: #25b;
}



.campaign-char-notes-campaign-notes {
  height: calc(100% - 25vh - 70px);
  width: 100%;
  padding: 10px 0;
}

/* ############################################# */
/* ######## CAMPAIGN CHAR SHEET POWERS ######### */
/* ############################################# */


.campaign-char-powers-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
  overflow-y: hidden;
  border-radius: 6px;
  box-shadow: inset 0px 0px 2px 2px #414020;
  padding: 10px;
}

.campaign-char-powers-section {
  display: flex;
  flex-wrap: wrap;
  width: 33.3%;
  height: 100%;
}

.campaign-char-powers-section-header {
  width: 100%;
  height: 7vh;
  display: flex;
  justify-content: center;
  align-items: end;
  font-size: calc(10px + 2vh);
}

.campaign-char-powers-section-content {
  width: 100%;
  height: calc(100% - 7vh);
}

.campaign-char-powers-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.campaign-char-power-container {
  width: 100%;
  padding: 0 1px;
  border-radius: 5px;
  margin: 1% .5% 0 .5%;
  box-shadow: inset 0px 0px 1.5px 1px black;
  overflow-y: auto;
  background-color: #CAC3B3;
}
/* .campaign-char-power-container {
  margin-top: 10px;
  padding: 0 1px;
  border-radius: 5px;
  box-shadow: inset 0px 0px 1.5px 1px black;
  overflow-y: auto;
  background-color: #CAC3B3;
} */

.campaign-char-power-header {
  border-bottom: #968777 solid 1px;
  padding: 5px 5px 0;
  width: calc(100% - 10px);
  height: calc(8px + 1.5vh);
  font-size: calc(3px + 1.5vh);
}

.campaign-char-power-content {
  padding: 5px;
  margin: 0;
  column-count: 2;
  list-style-position: inside;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /* display: grid;
  grid-template-columns: repeat(2, 1fr); */
  column-gap: 3px;
}

.campaign-char-power-proficiency {
  height: 19%;
}

.campaign-char-traits-box-size {
  height: 28%;
}

.campaign-char-features-box-size {
  height: 50%;
}

.campaign-char-feats-box-size {
  height: 19%;
}

.campaign-char-power-spell {
  /* height: 39%; */
  height: 33%;
}

.campaign-char-bonus-fields-box-size {
  /* height: 19%; */
  height: 31%;
}

.campaign-char-power {
  width: calc(100% - 10px);
  max-width: calc(100% - 10px);
  /* margin-left: 2%; */
  font-size: calc(3px + 1.5vh);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
  list-style-type: none;
  margin-bottom: 3px;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  justify-content: space-between;
}

.campaign-char-power:hover {
  cursor: pointer;
}

.campaign-char-power-clickable, .campaign-char-power-unclickable {
  background-color: #bAb3a3;
  border-radius: 3px;
  box-shadow: 0px 0px 0.5px 1px #8a8373;
}

.clickable {
  cursor: pointer;
}

.non-clickable:hover {
  cursor: auto;
}

.prepared-spell {
  /* background-color: #AAA393 !important; */
  background-color: #822;
  color: #DAD3C3;
}

.prepared-spell:hover {
  /* background-color: #8A8373 !important; */
  background-color: #711 !important;
  color: #CAC3B3 !important;
}

.campaign-char-power-wording {
  text-overflow: ellipsis;
  overflow-x: hidden;
}

.campaign-char-power-text {
  text-overflow: ellipsis;
  overflow-x: hidden;
  width: calc(100% - 25px);
}

.campaign-char-power-spellcasting-box {
  height: calc(100% - 85px - 3vh);
  width: calc(100% - 8px);
  display: flex;
  justify-content: center;
  margin: 0 4px;
}

.campaign-char-spellcasting-not-possible {
  height: calc(100% - 27px - 1.5vh);
  width: calc(100% - 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  font-size: calc(5px + 1.5vh);
}

.campaign-char-spellcasting-box-container {
  width: calc(33% - 10px);
  height: 100%;
  background-color: #bAb3a3;
  margin: 0 5px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 0px 0.5px 1px #8a8373;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.campaign-char-spellcasting-box-wrapper {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.campaign-char-spellcasting-box {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.spell-slots-container {
  display: flex;
  height: calc(42px + 1.5vh);
  align-items: center;
  justify-content: center;
  margin: 10px;
  background-color: #BAB3A3;
  border-radius: 6px;
  outline: solid 1px #8A8373;
}

.spell-slot-column {
  width: 10%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.spell-slot-square-title {
  font-size: calc(3px + 1.5vh);
}

.spell-slot-square {
  font-size: calc(3px + 1.5vh);
  height: 50%;
  display: flex;
  width:100%;
  justify-content: center;
}

.square-bottom {

}

.square-top {
  align-items: flex-end;
  border-bottom: 1px solid #8A8373;
}

.darkened-power {

}

/* ################################### */
/* ######## CAMPAIGN DETAILS ######### */
/* ################################### */

.campaign-detail-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.campaign-detail-popup-inner{
  padding: 20px 10px;

  position: absolute;
  float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  border-radius: 6px;
  margin: auto;
  box-shadow: inset black 0px 0px 1px 1px, black 0px 0px 6px 1px;
  background-color: #A7A090;
  /* display: flex; */
  flex-wrap: wrap;
  align-items: stretch;
  width: 500px;
  min-height: 300px;
  max-height: 75vh;
  overflow-y: auto
}

.campaign-detail-popup-details-container {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
  /* align-items: flex-start; */
  /* height: 80%; */
}

.campaign-detail-popup-button-container {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}


/* CONFIRM DROP */

.campaign-confirm-drop-popup-inner-2nd {
  padding: 20px 10px;
  position: absolute;
  float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  margin: auto;
  box-shadow: inset black 0px 0px 1px 1px, black 0px 0px 6px 1px;
  background-color: #A7A090;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 300px;
  min-height: 125px;
  max-height: 60vh;
  overflow-y: auto;
}

.campaign-confirm-drop-popup-title {
  display: flex;
  /* height: 10%; */
  width: 100%;
  justify-content: center;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.campaign-confirm-drop-popup-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.campaign-confirm-drop-popup-params-container {
  /* height: calc(90% - 20px); */
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 10px 10px 0px 10px;
}

.campaign-confirm-drop-popup-param-wrapper {
  width: 100%;
  margin-bottom: 10px;
  /* height: 25px; */
  /* justify-self: start;
  display: flex; */
}

.campaign-confirm-drop-popup-button-container {
  width: 100%;
  /* height: calc(100% - 25px); */
  align-self: flex-end;
  /* align-items: flex-end; */
  display: flex;
  justify-content: center;
}

/* ITEMS POPUP */

.campaign-detail-popup-section-container {
  width: 100%;
  /* display: flex;
  flex-wrap: wrap; */
  /* margin-bottom: 20px; */
  background-color: #DAD3C3;
  box-shadow: inset #4a4333 0px 1px 4px 1px;
  padding: 10px;
  border-radius: 5px;
  min-height: 230px;
}

.campaign-detail-popup-section-container-inner {
  display: flex;
  flex-wrap: wrap;
}

.campaign-detail-popup-header-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.campaign-detail-popup-name {
  font-size: calc(6px + 2vh);
  display: block;
  padding-bottom: 5px;
  margin-left: 20px;
  margin-bottom: 10px;
  border-bottom: black solid 1px;
  height: min-content;
}

.campaign-detail-popup-quantities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 8px;
  background-color: #bab3a3;
  box-shadow: 0px 1px 2px 0px;

}

.campaign-detail-popup-quantities-header {
  width: 100%;
  text-align: center;
}

.campaign-detail-popup-quantity-buttons {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

.quantity-button {
  border-radius: 17px;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  cursor: pointer;
}
/*
.quantity-button:hover {
  cursor: pointer;
} */

.campaign-detail-popup-primary-details {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.campaign-detail-popup-detail {
  width: 33%;
  text-align: center;
}

/* .grand-ability {
  font-size: calc(10px + 1.2vh);
} */

.popup-sub-text {
  font-size: calc(2px + 1.2vh);
}

.cip-whole {
  text-align: center;
  width: 100%;
}

.cip-half {
  text-align: center;
  width: 50%;
}

.campaign-detail-popup-primary-one-line-details {
  width: calc(100% - 40px);
  display: flex;
  margin-top: 10px;
  margin-left: 20px;
  padding-top: 10px;
  border-top: solid black 1px;
}

.campaign-detail-popup-detail-one-line {
  margin-top: 5px;
  display: flex;
}

.campaign-detail-popup-element-container {
  margin-top: 10px;
}

.popup-bold-text {
  font-weight: bold;
}

.popup-normal-text {
  margin-left: 5px;
}

.campaign-popup-type-specific-render {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
}

.campaign-popup-descs {
  margin-left: 20px;
  margin-right: 20px;
  width: calc(100% - 40px);
}

.bulleted-header-text {
  width: 100%;
    font-size: 20px;
    text-decoration: underline;
    margin-top: 5px;
}

.bulleted-desc {
  margin: 0 5px;
}

.headlining-header-text {
  width: 100%;
  font-size: 16px;
  text-decoration: underline;
  margin-top: 5px;
}

.campaign-detail-popup-desc {
  font-size: calc(5px + 1.2vh);
  width: 100%;
}

.campaign-detail-sub-header {
  font-style: italic;
}

.armor-weapon {
  height: calc(50% - 10px);
}

.gear {
  height: calc(60% - 10px);
}

.tools {
  height: calc(20% - 10px);
}

.mounts {
  height: calc(20% - 10px);
}

.w66pct {
  width: 66.67%;
}


.campaign-char-powers-section-header {
  width: 100%;
  height: 7vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: calc(10px + 2vh);
}

.campaign-char-inventory-section-positioner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  height: calc(100% - 20px);
  width: 100%;
  padding-bottom: 10px;
}

.campaign-char-inventory-section-header {
  width: 100%;
  height: 7vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: calc(10px + 2vh);
}

.campaign-char-equipped-section-content {
  width: 100%;
  /* height: 24%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  align-items: flex-start; */
  border-bottom: black solid 1px;
}

.campaign-char-wallet-section-content {
  width: 100%;
  /* height: calc(45% - 10px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center; */
  /* margin-top: 10px; */
  padding-bottom: 10px;
  border-bottom: black solid 1px;
}

.campaign-char-encumbrance-section-content {
  width: 100%;
  /* height: calc(34% - 10px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center; */
  max-height: 39%;
  padding-bottom: 10px;
}

.campaign-char-inventory-section-content {
  width: 100%;
  height: calc(100% - 7vh);
  display: flex;
  flex-wrap: wrap;
}

.campaign-char-add-item-button {
  height: calc(10px + 2.5vh);
  width: calc(45px + 2.5vw);
  font-size: calc(5px + 1vh);
  background-color: #36c;
  color: #ccc;
  border-radius: 5px;
  position: absolute;
  right: 1vw;
  top: 2vh;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: #444 0px 0px 1px 1px;
}

.campaign-char-add-item-button:hover {
  cursor:pointer;
  background-color: #25b;
  color: #ccc;
}

.inventory-subtext {
  font-size: calc(4px + 1vh);
  padding-bottom: calc(-3px + 1vh);
  padding-left: 5px
}

.campaign-char-inventories-column {
  height: 100%;
  margin: 0 0 10px 10px;
  width: calc(50% - 10px);
}

.inventory-items-container {
  margin-top: 10px;
  padding: 0 1px;
  border-radius: 5px;
  box-shadow: inset 0px 0px 1.5px 1px black;
  overflow-y: auto;
  background-color: #CAC3B3;
}

.equipped-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-self: flex-start;
  height: calc(100% - 7vh);
  width: 100%;
  margin: 10px 0;
}

.equipped-items-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  height: 28%;
  width: 100%;
}

.equipped-item-container {
  /* margin-top: 10px;
  padding: 0 1px; */
  border-radius: 5px;
  box-shadow: inset 0px 0px 1.5px 1px black;
  overflow-y: auto;
  background-color: #bAb3a3;
  width: 32%;
  height: calc(50% + 20px);
  min-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipped-item-container-unequipped {
  font-style: italic;
  border-radius: 5px;
  box-shadow: inset 0px 0px 1.5px 1px black;
  overflow-y: auto;
  background-color: #dAd3c3;
  width: 32%;
  height: calc(50% + 20px);
  min-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipped-item-container:hover, .campaign-char-power-clickable:hover {
  cursor: pointer;
  background-color: #AAA393;
}

.equipped-item {
  width: 32%;
  height: calc(50% - 20px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.equipped-item-text {
  text-align: center;
}

.unequipped-text {
  text-align: center;
}

.equipped-items-bonuses {
  display: flex;
  height: calc(72% - 20px);
  width: 100%;
  /* justify-content: center; */
  /* align-items: center; */
  margin-top: 20px;
}

.equipped-items-bonus-container {
  display: flex;
  flex-wrap: wrap;
  width: 31.33%;
  margin: 0 1%;
  background-color: #BAB3A3;
  border-radius: 6px;
  outline: 1px solid #7A7363;
  box-shadow: #4a4333 0px 0px 2px 0px;
  align-self: flex-start;
  justify-content: center;
}

.equipped-items-bonus-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  margin: 5px 0;
}

.equipped-items-bonus {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: calc(3px + 1.4vh);
  padding: 0 5px;
}


.campaign-ul-wrapper {
  /* height: calc(100% - 26px); */
  height: calc(100% - 30px);
  overflow-y: auto;
}

.campaign-char-wallet-symbols-wrapper {
  width: 100%;
  max-width: 350px;
  display: flex;
  height: calc(100% - 7vh)
}

.campaign-char-wallet-symbol-container {
  width: 20%;
  height: 40px;
  background-color: #bAb3a3;
  margin: 0 2px;
  border-radius: 6px;
  margin-top: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 0.5px 1px #8a8373;
}

.campaign-char-wallet-symbol-container:hover {
  cursor: pointer;
  background-color: #AAA393;
}

.campaign-char-wallet-symbol-wrapper {
  /* width: 20%;
  height: 40px;
  background-color: #bAb3a3;
  margin: 0 2px;
  border-radius: 15px;
  margin-top: 10px;
  box-shadow: 0px 0px 0.5px 1px #8a8373; */
}

.campaign-char-wallet-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
}

.campaign-char-inventory-input-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: flex-end;
  display: flex;
  width: 50%;
  height: 50%;
}

.campaign-char-currency-input-field {
  display: flex;
}

.campaign-char-currency-field {
  width: 100%;
  background-color: #FAF3E3;
  border: 1px solid #AAA393;
  text-align: center;
}

.encumbrance-info {
  width: 100%;
  height: calc(100% - 7vh);
}

.carrying-capac-breakdown {

}

.carrying-capac-line {
  font-size: calc(3px + 1.5vh);
}

.encumbrance-text {
  font-style: italic;
  font-size: calc(3px + 1.4vh);
  margin-left: 5px;
  margin-top: 10px;
}


.campaign-detail-popup-title {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 10px;
}

.campaign-detail-popup-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.campaign-detail-popup-param-wrapper {
  width: 50%;
}

.campaign-detail-popup-input-field {
  display: flex;
  margin: 0 10px;
}

.campaign-detail-popup-field {
  width: -webkit-fill-available;
  background-color: #FAF3E3;
  box-shadow: inset #7a7363 0px 1px 2px 1px;
  border: 1px solid #7A7363;
  padding-left: 5px;
  height: 30px;
}

.campaign-detail-popup-dropdown-results {
  height: 200px;
  width: calc(200% - 40px);
  margin: 10px;
  padding: 0 10px;
  overflow-y: auto;
  background-color: #DAD3C3;
  cursor: pointer;
  box-shadow: inset 0px 0px 3.5px 1px black;
}

.campaign-detail-popup-item-desc {
  min-height: 200px;
  width: calc(200% - 40px);
  margin: 10px;
  padding: 0 10px;
  /* overflow-y: auto; */
}

.campaign-detail-popup-button {

}

.popup-button {
  width: 75px;
  height: 45px;
  background-color: #333;
  color: #999;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  padding: 5px;
  margin: 0 5px;
}



.pop-up-2nd {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0,0,0, 0.3);
}

.campaign-detail-popup-inner-2nd {
  padding: 20px 10px;

  position: absolute;
  float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  border-radius: 6px;
  margin: auto;
  box-shadow: inset black 0px 0px 1px 1px, black 0px 0px 6px 1px;
  background-color: #A7A090;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 500px;
  min-height: 300px;
  max-height: 75vh;
  overflow-y: auto
}

/* ################################## */
/* ######## STORY MODE POPUP ######## */
/* ################################## */

.story-mode-pop-up {
  position: fixed;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0,0,0, 0.5);
}

.story-mode-popup-inner {
  padding: 15px;
  position: relative;
  /* float: left;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); */
  border-radius: 6px;
  margin: auto;
  box-shadow: inset #3A3323 0px 0px 1px 1px, #3A3323 0px 0px 6px 1px;
  background-color: #A7A090;
  max-width: 80vw;
  min-width: 700px;
  height: 80vh;
}

.story-mode-inner-wrapper {
  overflow-y: auto;
  position: relative;
  height: 100%;
}

.story-mode-inner-wrapper::-webkit-scrollbar {
  width: 10px;
}
.story-mode-inner-wrapper::-webkit-scrollbar-thumb {
  background: #C9C2B2;
  border-radius: 10px;
  box-shadow: inset 0 0px 4px black;
}
.story-mode-inner-wrapper::-webkit-scrollbar-track {
  background-color: #C9C2B2;
  box-shadow: inset 0.5px 0px 1px #666;
  border-radius: 10px;
}
.story-mode-inner-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #B8B1A1;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #334;
}

.story-mode-header-container {
  width: 100%;
  display: flex;
}

.story-mode-popup-go-back-button {
  position: fixed;
  background-color: #8A8373;
  height: 30px;
  width: 30px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: #4a4333 0 0 2px 2px;
  z-index: 1;
}

.story-mode-popup-go-back-button:hover {
  background-color: #7A7363;
  cursor: pointer;
}

.story-mode-popup-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  margin-bottom: 10px;
}

.story-mode-popup-class-table-container {
}

.story-mode-popup-class-level-table {
  display: flex;
  flex-wrap: wrap;
}

.story-mode-class-level-table {

}

.story-mode-class-table-row {
  display: flex;
  width: 100%;
  justify-content: center;
}

.story-mode-class-table-row-inner {
  background-color: #DAD3C3;
  display: flex;
  border-left: 1px solid #7a7363;
}

.story-mode-class-table-row-inner:hover {
  background-color: #BAB3A3;
}

.story-mode-class-table-row-inner-border {
  border-top: 1px solid #7a7363;
}

.story-mode-class-table-column {
  min-height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1px 10px;
  border-right: 1px solid #7a7363;
  border-bottom: 1px solid #7a7363;
}

.class-level-column-30 {
  width: 30px;
}

.class-level-column-40 {
  width: 40px;
}

.class-level-column-60 {
  width: 60px;
}

.class-level-column-80 {
  width: 80px;
}

.class-level-column-120 {
  width: 120px;
}

.class-level-column-180 {
  width: 180px;
}

.class-level-column-240 {
  width: 240px;
  text-align: left !important;
  justify-content: left !important;
}

.story-mode-class-table-data-row-piece {

}

.story-mode-popup-class-features-container {
  padding: 20px 40px;
  margin: 20px;
  background-color: #DAD3C3;
  border-radius: 5px;
  box-shadow: inset #5a5343 0px 1px 3px 1px;
}
.story-mode-class-features {
  margin-top: 15px;
}
.story-mode-class-feature-name{
  font-size: 25px;
}
.story-mode-class-feature-descs {
  padding-left: 25px;
}
.story-mode-description-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.story-mode-header-text {
  width: 100%;
  font-size: 20px;
  text-decoration: underline;
  margin-top: 5px;
}
.story-mode-header-text-bullet {
  font-weight: bold;
  font-family: serif;
  /* display: flex;
  align-items: center; */
  margin-right: 5px;
}
.story-mode-description {
  /* display: flex;
  flex-wrap: wrap; */
}
.story-mode-bulleted-desc {

}

.bolded-header {
  font-weight: bold;
  font-family: serif;
  font-size: 16px;
  text-decoration: underline;
}

.story-mode-feature-tables {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.story-mode-feature-table {
  outline: solid 1px;
  border-radius: 5px;
  margin: 10px;
}
.story-mode-feature-table-title {
  font-weight: bold;
  font-family: serif;
  font-size: 18px;
  text-align: center;
  margin-bottom: 5px;
  text-decoration: underline;
}
.feature-table-column {
  text-align: center;
}
.feature-table-row {
  display: flex;
  width: fit-content;
}
.odd-row {
  /* background-color: #AABF99; */
  background-color: #ADBFA0;
}
.even-row {
  background-color: #DAD3C3;
}

.non-first-column {
  margin-left: 5px;
}

.story-mode-background-characteristic-tables {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.story-mode-background-characteristic-table {
  margin: 10px auto;
  width: 75%;
  outline: solid 1px;
  border-radius: 5px;
}

.story-mode-background-table-header {
  font-weight: bold;
  font-family: serif;
}
.background-table-column {
  min-width: 20px;
  margin-left: 5px;
}
.background-table-row {
  display: flex;
}


/* ########################## */
/* ######## HP POPUP ######## */
/* ########################## */

.hp-increase-popup-title {
  height: 50px;
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 30px;
}

.hp-increase-popup-final-selection-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: 0 calc(50% - 80px); */
}

.hp-increase-popup-final-selection {
  width: 80px;
  height: 80px;
  background-color: ivory;
  border-radius: 4px;
  box-shadow: #333 0 0 5px 3px;
}

.hp-increase-popup-final-selection-text {
  width: 80px;
  height: 80px;
  display: flex;
  font-size: 60px;
  justify-content: center;
  align-items: center;
}

.hp-increase-popup-final-con-add {
  width: 80px;
  margin-left: 10px;
  font-size: 60px;
}

.hp-increase-popup-options-wrapper {
  width: 100%;
  display: flex;
  margin: 20px 0;
  justify-content: center;
}

.hp-increase-popup-option-header {
  width: 100%;
  text-align: center;
}

.hp-increase-popup-option-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hp-increase-popup-option {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-increase-number-text-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #5A5343;
  color: #DAD3C3;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 18px;
}

.hp-increase-number-text-wrapper:hover {
  cursor: pointer;
  background-color: #3A3323;
  color: #BAB3A3;
}

.increase-hp-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.increase-hp-popup-button {
  height: 40px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}

/* ##### MISC ##### */
.feedback-notes {
  height: calc(100% - 25vh - 70px);
  width: calc(100% - 20px);
  padding: 10px 0;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center; */
  margin: 0 auto;
}

.feedback-notes-input-wrapper {
  width: 600px;
  margin: 20px auto;
  position: relative;
}

.feedback-notes-field {
  height: 300px;
  width: 600px;
  margin: 0 auto;
}

.feedback-subtmit-button-container {
  width: 200px;
  margin: 0 auto;
}



/* ############################## */
/* ######## CAMPAIGN MAP ######## */
/* ############################## */

.campaign-map {
  width: 100%;
  height: 100%;
  /* overflow: scroll; */
}

.campaign-map-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
}

.campaign-map-controls {
  width: 50%;
  height: 100%;
}

.campaign-map-and-initiative {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  width: 50%;
  justify-content: center;
}

.campaign-map-coordinates-outer-wrapper {
  margin: 20px 20px 20px 0px;
  width: calc(100% - 20px);
  height: calc(80% - 40px);
  display: flex;
  flex-wrap: wrap;
}

.campaign-map-coordinates-inner-wrapper {
  display: flex;
  width: 100%;
}

.campaign-map-coordinates-columns-ids {
}

.campaign-map-coordinates-rows-ids {
  grid-template-columns: 1fr;
}

.map-column-identifier {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 5px;
}

.map-row-identifier {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 7px;
}

.campaign-map-coordinates {
  /* overflow-y: scroll; */
  /* outline: #333 solid; */
  display: grid;
}

.campaign-map-initiative {
  height: 20%;
  width: calc(100% - 40px);
  margin: 0 20px;
}




/* ####################################### */
/* ######## CAMPAIGN MAP CONTROLS ######## */
/* ####################################### */

.map-controls {
  /* display: flex;
  flex-wrap: wrap; */
  /* height: 100%; */
}

.remaining-map-controls {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

/* .map-controls-and-indicator {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
} */

/* Hexes */
.map-controls-remaining-control {
  width: 33%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.map-marker-header-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.control-header {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: end;
}

.hex-controls {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  /* width: 105px;
  height: 35px; */
  width: 70px;
  height: 70px;
  outline: #333 solid 1px;
}

.hex-control {
  outline: 1px solid black;
}
.hex-control-preview-square {
  height: 35px;
  width: 35px;
  cursor: pointer;
  text-align: center;
  display: flex;
  font-size: 12px;
  justify-content: center;
  align-items: center;
}
/* .hex-control-preview-square-text {
  padding-left: 5px;
  line-height: 10px;
} */


/* Markers */
.map-marker-selection-section {
  width: calc(100% - 60px);
  max-height: 35vh;
  padding: 0 10px 10px 10px;
  display: flex;
  margin: 20px;
  box-shadow: 0px 1px 4px 1px #5a5343;
  justify-content: space-evenly;
  border-radius: 3px;
  outline: 1px solid #5a5343;
  background-color: #CAC3B3;
}
.marker-controls {
  overflow-y: auto;
  width: 100%;
  height: calc(100% - 25px);
  font-size: calc(5px + 1vh);
  box-shadow: inset 0px 2px 5px 0px #7A7363;
  outline: 1px solid #7a7363;
  background-color: #c9c0b0;
  margin-top: 5px;
}

.marker-controls::-webkit-scrollbar {
  width: 10px;
}
.marker-controls::-webkit-scrollbar-thumb {
  background: #DAD3C3;
  border-radius: 10px;
  box-shadow: inset 0 0px 4px black;
}
.marker-controls::-webkit-scrollbar-track {
  background-color: #DAD3C3;
  box-shadow: inset 0.5px 0px 1px #666;
  border-radius: 10px;
  margin-top: 5px;
}
.marker-controls::-webkit-scrollbar-thumb:hover {
  background-color: #BAB3A3;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #334;
}

.controls-map-markers-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 5px;
}

.controls-map-markers-grouping {
  width: calc(33% - 15px);
}

.controls-map-markers-grouping-header {
  width: 100%;
}

.controls-map-markers-type-section {
  margin-bottom: 5px;
  border-left: 1px solid;
  border-top: 1px solid;
}

.no-border {
  border: none !important;
}

.marker-control {
  width: calc(100% - 6px);
  height: calc(12px + 1vh);
  border-bottom: 1px solid;
  border-right: 1px solid;
  padding: 5px 0 5px 5px;
  display: flex;
  justify-content: left;
  align-items: center;
  overflow-wrap: anywhere;
  height: 20px;
  background: #9A9383;
}
.marker-indicator {
  height: 30px;
  width: 30px;
  border-radius: 3px;
  outline: solid 1px #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-control-preview-square {

}
.marker-control-preview-square-text {
  padding: 0 5px;
  line-height: 10px;
}

/* Buttons */
.map-controls-buttons {
  align-items: center;
}
.marker-button-create {
  text-align: center;
  width: 80px !important;
  height: 30px !important;
  margin: 5px;

}
.map-button-create {
  text-align: center;
  width: 80px !important;
  height: 30px !important;
  margin: 5px;
}

/* ######################################### */
/* ######## CAMPAIGN MAP COORDINATE ######## */
/* ######################################### */

.map-coordinate-square {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  outline: black solid 0.5px;
}

.map-coordinate-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: relative; */
  position: absolute;
  font-size: 1vw;
}

.map-coordinate-hover-detail {
  position: absolute;
  background-color: #FAF3E3;
  outline: 1px solid;
  left: 10px;
  top: -10px;
  width: max-content;
  padding: 0 5px;
  z-index: 3;
}

.icon-unit {
  position: absolute;
}

.coord-listed-icons {
  position: absolute;
  display: flex;
}

.coord-listed-icon {
  position: relative;
  top: -25px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: #9a9383;
  outline: solid 1px black;
  height: 25px;
  width: 25px;
}

.arrow {
  position: relative;
  z-index: 2;
  color: black;
  top: -4px;
}

.bounce {
  animation: bounce 1s;
  animation-iteration-count: 3;
}

.fadeout {
  animation: 5s ease 0s normal forwards 1 fadeout;
}

@keyframes fadeout {
  0%, 95% { opacity:1; }
  100% { opacity:0; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-24px);
  }
  60% {
    transform: translateY(-12px);
  }
}

/* ########################################### */
/* ######## NEW MAP MARKER POPUP MENU ######## */
/* ########################################### */

.new-map-pop-up {
  width: 400px;
}

.new-map-warning {
  text-align: center;
  font-size: 18px;
  /* margin-bottom: 10px */
}

.new-map-hint {
  text-align: center;
  font-size: 10px;
  margin-bottom: 10px
}

.new-map-label-wrapper {
  display: flex;
  justify-content: space-between;
}

.new-map-height, .new-map-width {
  margin-bottom: 10px;
  width: 50%;
}

.new-map-pop-up-button-container {
  display: flex;
  width: 100%;
}


/* ################################################ */
/* ######## CAMPAIGN MAP MARKER POPUP MENU ######## */
/* ################################################ */

/* Generic */
.marker-pop-up-menu {
  overflow-y: unset !important;
  padding: 5px 5px 5px 15px !important;
  max-width: 430px !important;
}

.marker-pop-up-inner {
  max-height: calc(94vh - 15px);
  width: 100%;
  overflow-y: auto;
  padding: 10px 10px 10px 0;
  width: calc(100% - 10px);
}

.marker-pop-up-inner::-webkit-scrollbar {
  width: 10px;
}
.marker-pop-up-inner::-webkit-scrollbar-thumb {
  background: #C9C2B2;
  border-radius: 10px;
  box-shadow: inset 0 0px 4px black;
}
.marker-pop-up-inner::-webkit-scrollbar-track {
  background-color: #C9C2B2;
  box-shadow: inset 0.5px 0px 1px #666;
  border-radius: 10px;
}
.marker-pop-up-inner::-webkit-scrollbar-thumb:hover {
  background-color: #B8B1A1;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #334;
}

.marker-pop-up-menu-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  height: 100%;
}

.marker-pop-up-menu-options-inner {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}

.marker-pop-up-menu-label-text {
  position: relative;
}
.marker-pop-up-menu-label-wrapper {
  margin-bottom: 10px;
  border-bottom: 1px solid;
  padding-bottom: 10px;
}

.marker-pop-up-menu-notes-limit {
  position: absolute;
  right: 0px;
  color: #333;
  font-size: 11px;
}


.marker-types-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid;
  padding-bottom: 10px;
}
.marker-types-header {
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}

.marker-type-square {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 6px;
  padding: 4px 2px;
  cursor: pointer;
}
.marker-type-square:hover {
  background-color: #BAB3A3;
}
.marker-type-name {
  width: 100%;
  text-align: center;
}

.aware-users-container {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.aware-users-header {
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}

.aware-user-square {
  width: calc(50% - 10px);
  border-radius: 6px;
  background-color: #DAD3C3;
  outline: 1px solid #333;
  box-shadow: 0px 0px 2px 1px #333;
  cursor: pointer;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.aware-user-square:hover {
  background-color: #BAB3A3;
}


.highlighted-icon {
  border-radius: 6px;
  background-color: #6A6353;
  color: #ccc;
  box-shadow: inset 0px 0px 2px 2px #EEE;
}

.delete-marker {
  display: flex;
}

.delete-marker-title {
  display: flex;
  align-items: center;
}


/* Options */
.marker-pop-up-menu-option {
  width: 100%;
  display: flex;
}
.change-marker-color {

}

/* Labels */
.marker-pop-up-menu-labels {

}
.marker-pop-up-menu-input {
  box-shadow: inset #7a7363 0px 1px 2px 1px;
  border: 1px solid #7A7363;
  background-color: #FAF3E3;
  height: 20px;
}

/* Notes section */
.marker-pop-up-menu-label-header-wrapper {
  position: relative;
}
.marker-pop-up-menu-label-header {

}
.campaign-char-notes-limit {

}
.marker-pop-up-menu-notes-wrapper {

}
.marker-pop-up-menu-notes-text {
  height: 150px;
  width: calc(100% - 10px);
  padding: 10px 5px 5px;
}

.marker-pop-up-menu-non-dm-notes {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 20px);
  /* height: calc(100% - 85px); */
  padding: 5px;
  margin-bottom: 10px;
  background-color: #DAD3C3;
  box-shadow: inset #7a7363 0px 1px 3px 1px;
  white-space: pre-line;
}

/* Popup */
.color-options-container {

}
.color-option {

}

.disabled-marker-button, .disabled-marker-button:hover {
  cursor: default;
  color: #D0C0B0 !important;
  background: none !important;
  background-color: #C0B0A0 !important;
}
