/* -- Bootstrap bug causes menu to flash when full sized -- */
.collapsing {
  transition: none !important;
}

.input-group-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.display-5 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* -- Increased specifity to override issue with compatibility between react-hook-form and boostrap --*/
.was-validated .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right 0.5625rem;
  background-size: 1.125rem 1.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
}

.was-validated .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control.is-valid {
  border-color: #28a745;
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right 0.5625rem;
  background-size: 1.125rem 1.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.was-validated .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.flyout {
  background: #fff;
  bottom: 0;
  box-shadow: 0 2px 1rem #000;
  display: block;
  height: 100vh;
  margin: auto;
  min-width: 20rem;
  max-width: 480px;
  overflow: auto;
  padding: 1.5rem 1rem;
  position: fixed;
  top: 0;
  transition: transform 0.3s linear;
  transform: translateX(-100%);
  z-index: 2000;
}
.flyout h4 {
  margin-right: 1rem;
  width: 100%;
}

.flyout-open {
  transform: translateX(0);
}

.flyout-close {
  font-size: 1.25rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

@-webkit-keyframes spin {
  to {
    stroke-dashoffset: -264;
  }
}
@keyframes spin {
  to {
    stroke-dashoffset: -264;
  }
}
.spinner circle {
  fill: none;
  stroke: slategray;
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 0, 0, 70, 194;
  stroke-dashoffset: 0;
  animation: spin 1s infinite linear;
  -webkit-animation: spin 1s infinite linear;
}

.loading-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.loading-cover-center {
  right: 0;
}

.loading-cover-cell {
  padding: 0.75rem;
}

.modal {
  background: #fff;
  box-shadow: 0 0 1em #000;
  display: block;
  height: auto;
  left: 0;
  margin: auto;
  max-height: 100vh;
  overflow: auto;
  padding: 1.5rem;
  position: absolute;
  right: 0;
  top: -100vh;
  transition: all 0.3s;
  max-width: 50vw;
  z-index: 2001;
}

.modal-open {
  top: 0;
}

.modal-small {
  width: 350px;
}

.storymap-header {
  background: #fff;
  left: 0;
  padding: 70px 1rem 0.5rem 1rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.storymap-actions {
  display: flex;
  font-size: 1rem;
  position: absolute;
  top: 0;
  right: 0;
}
.storymap-actions .storymap-action {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}
.storymap-actions .storymap-action:last-of-type {
  padding-right: 0;
}
.storymap-actions .storymap-action + .storymap-action {
  border-left: 1px dashed #ccc;
}
.storymap-actions label {
  margin: 0 0.5rem 0 0;
}

.storymap-container {
  margin-top: calc(70px + 3rem);
}

.storymap-release {
  border: none;
  border-top: 1px dashed #e5e5e5;
  min-width: max-content;
  position: relative;
  transition: all 0.3s ease;
}
.storymap-release legend {
  font-size: 1rem;
  margin: 0 0 0 1.5rem;
  padding: 0 0.5rem;
  width: auto;
}

.storymap-goal-collapse {
  align-items: center;
  display: flex;
  font-size: 2rem;
  flex-direction: row;
  min-width: 1.875rem;
}

.storymap-goal-collapse-hint {
  font-size: 1rem;
  font-weight: lighter;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.storymap-goal:hover .storymap-goal-collapse-hint {
  opacity: 1;
}

.storymap-collapse {
  margin-right: 0.5rem;
  transition: transform 0.5s linear;
  transform: rotate(540deg);
}

.storymap-collapsed {
  transform: rotate(0deg);
}

.storymap-actions-container {
  margin-top: 0.5rem;
  min-height: 80px;
  min-width: 150px;
  opacity: 0;
  padding-left: 1rem;
  transition: opacity 0.3s linear;
  width: 150px;
}

.storymap-release:hover .storymap-actions-container {
  opacity: 1;
}

.storymap-release-target {
  border: 1px dashed #e5e5e5;
}

.storymap-card {
  min-height: 80px;
  margin: 0.5rem;
  padding: 0.5rem;
  position: relative;
  width: 200px;
  transition: all 0.3s ease;
}

.placeholder-row {
  margin-right: 1.875rem;
}

.storymap-card-create {
  align-items: center;
  border: 1px dashed #ccc;
  display: flex;
  font-size: 2rem;
  justify-content: center;
  margin: 0.5rem;
  padding: 0.5rem;
}

.storymap-card-sm-for-column {
  height: 3rem;
  margin-top: 0rem;
  min-height: 3rem;
  min-width: 200px;
  width: 200px;
}

.storymap-card-sm-for-row {
  height: 80px;
  margin-left: 0rem;
  min-height: 80px;
  min-width: 3rem;
  width: 3rem;
}

.storymap-card-actions {
  align-items: center;
  border: 1px dashed #ccc;
  border-bottom-left-radius: 0.25rem;
  border-right: none;
  border-top-left-radius: 0.25rem;
  display: none;
  flex-direction: column;
  height: 4rem;
  justify-content: center;
  margin: auto;
  padding: 0.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 2rem;
  transition: opacity 0.3s linear;
}

.storymap-card-actionable:hover .storymap-card-actions {
  background: #fff;
  display: flex;
  z-index: 100;
}

.storymap-card-editor > div {
  flex: 2;
  padding: 0 1rem 1rem 0;
}
.storymap-card-editor > div + div {
  flex: 1;
  padding: 0 0 1rem 1rem;
}
.storymap-card-editor .form-row {
  margin: 0;
}
.storymap-card-editor .form-row + .form-row {
  margin-top: 0.5rem;
}
.storymap-card-editor input {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.storymap-label-selector {
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  width: 2.5rem;
}

.storymap-label-edit {
  align-items: center;
  color: #444;
  display: flex;
  justify-content: center;
  margin: auto;
  padding: 0.5rem;
  padding-right: 0;
  width: 1.75rem;
}
.storymap-label-edit:visited {
  color: #444;
}
.storymap-label-edit:active, .storymap-label-edit:hover, .storymap-label-edit:focus {
  color: #007bff;
}

.storymap-label-pill {
  border-radius: 1rem;
  height: 0.5rem;
  margin: 0 0.25rem;
  width: 3rem;
}
.storymap-label-pill:first-child {
  margin-left: 0;
}

.toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 62px;
  height: 32px;
  display: inline-block;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: #707070;
  transition: background-color ease 0.5s;
}
.toggle:before {
  content: "on off";
  display: block;
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  background: #fff;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  font: 10px/28px Helvetica;
  text-transform: uppercase;
  font-weight: bold;
  text-indent: -22px;
  word-spacing: 37px;
  color: #fff;
  text-shadow: -1px -1px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all cubic-bezier(0.3, 1.5, 0.7, 1) 0.3s;
}
.toggle:checked {
  background-color: #007bff;
}
.toggle:checked:before {
  left: 32px;
}

html,
body {
  font-size: 14px;
}

/* -- Margin for fixed navbar -- */
.app-body {
  margin-top: 70px;
}

/* -- Margin for iconified menu --*/
.dropdown-item svg, .nav-link svg {
  width: 16px !important;
  margin-right: 0.5rem;
}

/* -- Home page layout -- */
.landing-page {
  overflow: hidden;
}
.landing-page .logo {
  color: #28a745;
  font-family: monospace;
  font-size: 8rem;
  text-shadow: 2px 2px 2px green;
}

/* -- Utilities -- */
.clickable {
  cursor: pointer;
}

.delinkify,
.delinkify:visited {
  color: initial;
  text-decoration: none !important;
}

.delinkify:active,
.delinkify:focus,
.delinkify:hover {
  color: #007bff;
}

.fa-action {
  display: block;
  opacity: 0.75;
}

.fa-action:hover {
  opacity: 1;
}

.card-fade {
  border-style: dashed;
  opacity: 0.8;
}

.card-fade:hover {
  opacity: 1;
}

.card-closed {
  background: #ddd;
}

.btn-circle {
  border-radius: 50%;
  height: 35px;
  line-height: 2.3rem;
  padding: 0;
  text-align: center;
  width: 35px;
  position: relative;
}
.btn-circle::after {
  border-radius: 50%;
  box-shadow: 0 0 10px #ccc;
  content: "";
  height: 34px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-in-out;
  width: 34px;
  z-index: -1;
}
.btn-circle:hover::after {
  opacity: 1;
}

.card-square {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-weight: lighter;
  height: 12rem;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  width: 12rem;
}
.card-square ~ .card-square {
  margin-left: 2rem;
}
.card-square::after {
  box-shadow: 0 0 10px #ccc;
  content: "";
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
  z-index: -1;
}
.card-square:hover {
  color: #007bff;
}
.card-square:hover::after {
  opacity: 1;
}

nav {
  box-shadow: 1px 0 0.5rem #ccc;
}

nav.is-busy {
  animation: party 4s infinite;
  animation-direction: alternate;
}

@keyframes party {
  0% {
    box-shadow: 1px 0 0.5rem #007bff;
  }
  33% {
    box-shadow: 1px 0 0.5rem #17a2b8;
  }
  66% {
    box-shadow: 1px 0 0.5rem #28a745;
  }
  100% {
    box-shadow: 1px 0 0.5rem #ffc107;
  }
}

/*# sourceMappingURL=main.faeb268c4f6ef077ce3d.css.map*/