.one {
  order: 1;
}
.two {
  order: 2;
}
.three {
  order: 3;
}
.add-shadow--diffused {
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.25);
}
.add-shadow--diffused.hover-effects:hover {
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.75);
}

.add-border {
  border: 1px solid #ffffff;
}

.add-solid-bg {
  background-color: #f6f6f6;
}

.add-wide-padding {
  padding: 2rem 4rem;
}

.shift-up10 {
  margin-top: -10%;
}

.shift-up20 {
  margin-top: -20%;
}

.add-margin-bottom {
  margin-bottom: 2rem;
}

.center {
  margin: 0 auto;
}

svg.center {
  display: block;
}

.hidden, #start .btn--start-over,
#complete .btn--start-over {
  visibility: hidden;
}

.no-top-padding {
  padding-top: 0;
}

.no-bottom-padding {
  padding-bottom: 0;
}

.has-loader {
  min-height: 300px;
}

.slideup-fade-in {
  animation: slideup-fade-in ease 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode: forwards;
  /*when the spec is finished*/
  opacity: 0;
  opacity: 1\9 ;
}

@keyframes slideup-fade-in {
  0% {
    opacity: 0;
    transform: translate(0px, 40px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.slide-up-fade-in-enter,
.slide-up-fade-in-leave-to {
  opacity: 0;
  transform: translate(0px, 40px);
  transform-origin: 50% 50%;
}

.slide-up-fade-in-enter-to {
  opacity: 1;
  transform: translate(0px, 0px);
  transform-origin: 50% 50%;
}

.slide-up-fade-in-enter-active {
  transition: all ease 250ms;
}

.add-radius {
  border-radius: 10px;
}

.add-radii-t {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.add-radii-tl {
  border-top-left-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.add-radii-tr {
  border-top-left-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.add-radii-b {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.add-radii-br {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 0;
}

.add-radii-bl {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 10px;
}

/* === TYPOGRAPHY MIXINS === */
h1 {
  font-family: var(--secondary-font);
  font-weight: 400;
  opacity: 1;
  font-size: 2.369rem;
  line-height: 3;
  color: var(--primary-color);
  line-height: normal;
  margin: 0 0 0.5em 0;
}

h4 {
  margin-top: 0;
}

h1 + h2 {
  margin-top: 0;
}

.ax--container > h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

body {
  font-family: var(--primary-font);
  font-weight: 400;
  opacity: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  padding: 0;
}

.ax--btn {
  background-color: #999;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  min-height: 44px;
  line-height: 1.6rem;
  padding: 0.5rem 1rem;
  position: relative;
  text-transform: uppercase;
}
.ax--btn.ax--btn--primary {
  background-color: var(--primary-button-color);
  color: var(--primary-button-text-color);
  border: 2px solid var(--primary-button-border-color);
}
.ax--btn.ax--btn--secondary {
  background-color: var(--secondary-button-color);
  color: var(--secondary-button-text-color);
  border: 2px solid var(--secondary-button-border-color);
}
.ax--btn.ax--btn--lg {
  font-family: var(--primary-font);
  font-weight: 700;
  opacity: 1;
  font-size: 1.333rem;
  line-height: 3;
  line-height: normal;
  padding: 1.5rem 4rem;
}
.ax--btn.hover-effects:hover:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--background-color);
  opacity: 0.05;
}
.ax--btn.has-icon {
  display: flex;
  padding-left: 2.5rem;
}
.ax--btn.has-icon svg {
  height: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.5rem;
}
.ax--btn .ax--btn__icon {
  height: 2rem;
  position: absolute;
  left: 2rem;
  top: 1rem;
  width: 2rem;
}
.ax--btn .ax--btn__icon.icon--centerY {
  top: 50%;
  transform: translateY(-50%);
}
.ax--btn .label--add-left-margin {
  margin-left: 1rem;
}

.ax--container {
  position: relative;
  overflow: hidden;
}
.ax--container.container--centerX, .ax--container.container--centerY, .ax--container.container--centerBoth {
  display: flex;
  flex-direction: column;
}
.ax--container.container--centerX {
  align-items: center;
}
.ax--container.container--centerY {
  justify-content: center;
}
.ax--container.container--centerBoth {
  justify-content: center;
  align-items: center;
}
.ax--container.ax--container__columns {
  display: grid;
}
.ax--container.ax--container__columns.columns__gap1 {
  grid-gap: 1rem;
}
.ax--container.ax--container__columns.columns__equal-width {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.ax--container.ax--container__rows {
  display: grid;
}
.ax--container.ax--container__rows.rows__gap1 {
  grid-gap: 1rem;
}
.ax--container.container--scrollable {
  overflow-y: auto;
}
.ax--container h2,
.ax--container h3,
.ax--container h4,
.ax--container p {
  text-align: center;
}
.ax--container h2 {
  margin-bottom: 2rem;
}
.ax--container > p {
  font-family: var(--primary-font);
  font-weight: 400;
  opacity: 1;
  font-size: 1.333rem;
  line-height: 3;
  line-height: 1.5;
  max-width: 600px;
}
.ax--container .ax--container__content--fix-height {
  min-height: 40vh;
}
.ax--container .ax--container__footer {
  background-color: #dddddd;
  padding: 1.5rem;
}
.ax--container .ax--container__footer.container__footer--button-actions {
  display: flex;
  justify-content: center;
}
.ax--container .ax--container__footer.container__footer--button-actions > * {
  margin: 0 1rem;
  min-width: 150px;
}
.ax--container .ax--container__footer.container__footer--justify-between {
  justify-content: space-between;
}
.ax--container .ax--container__footer.container__footer--remove-background {
  background: none;
}

.profile__name {
  font-size: 2.5rem;
  line-height: 1;
}

.ax--list {
  max-height: 400px;
  overflow-y: auto;
}
.ax--list.ax--list--grid {
  display: grid;
}
.ax--list.ax--list--grid.grid--columns3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.ax--list.list__select {
  max-height: 535px;
}
.ax--list .ax--list--item {
  border-radius: 3px;
  border: none;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr auto;
  margin: 0.5rem;
  padding: 1rem;
}
.ax--list .ax--list--item.selectable {
  cursor: pointer;
  grid-template-columns: auto 1fr auto auto;
  border: 1px solid transparent;
}
.ax--list .ax--list--item.selectable:hover {
  background-color: var(--background-color);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.85);
}
.ax--list .ax--list--item.selectable.selected {
  border-color: #78b348;
  background-color: var(--background-color);
}

.ax--fieldset {
  margin-bottom: 0.5rem;
}

.ax--form-item {
  font-family: var(--primary-font);
  color: var(--primary-font-color);
  align-items: flex-start;
  display: flex;
  flex: 1 1;
  flex-direction: column;
  margin-bottom: 1rem;
  order: 2;
}
.ax--form-item.form-item--inline {
  flex-direction: row;
}
.ax--form-item.form-item--inline > * {
  margin-right: 1rem;
}
.ax--form-item.form-item--inline > *:last-child {
  margin-right: 0;
}

.ax--date-dropdown.ax--form-item {
  margin-bottom: 0;
}

.ax--label {
  font-family: var(--primary-font);
  font-weight: 700;
  opacity: 0.5;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
}

.ax--text-area {
  font-family: var(--primary-font);
  font-weight: 400;
  opacity: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  line-height: normal;
  background-color: #f4f7fb;
  border: none;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 0 #5a6872;
  color: #152935;
  min-width: 10rem;
  order: 2;
  padding: 1rem;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

.ax--text-input {
  font-family: var(--primary-font);
  font-weight: 400;
  opacity: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  line-height: normal;
  background-color: #f4f7fb;
  border: none;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 0 #5a6872;
  color: #152935;
  display: block;
  height: 2.5rem;
  min-width: 10rem;
  order: 2;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.ax--text-input[data-invalid],
.ax--text-input[data-invalid]:focus {
  box-shadow: 0 2px 0 0 #e0182d;
}

.ax--select[data-invalid] select,
.ax--select[data-invalid]:focus select {
  box-shadow: 0 2px 0 0 #e0182d;
}

.ax--date-dropdown[data-invalid] select {
  box-shadow: 0 2px 0 0 #e0182d;
}

.ax--form-requirement {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0.75rem 0 0;
  margin-top: 0.75rem;
  max-height: 0;
  overflow: hidden;
}

.ax--text-input ~ .ax--form-requirement,
.ax--date-dropdown ~ .ax--form-requirement {
  color: #e0182d;
  font-weight: 400;
  margin-top: 0;
  order: 3;
}

.ax--form-item[data-invalid=true] .ax--form-requirement {
  color: #e0182d;
  font-weight: 400;
  margin-top: 0;
  display: block;
  max-height: none;
}

.ax--list-box[data-invalid] ~ .ax--form-requirement,
input[data-invalid] ~ .ax--form-requirement,
select[data-invalid] ~ .ax--form-requirement,
textarea[data-invalid] ~ .ax--form-requirement,
.ax--date-dropdown[data-invalid] ~ .ax--form-requirement {
  display: block;
  max-height: 12.5rem;
}

.ax--text-area[data-invalid],
.ax--text-area[data-invalid]:focus {
  box-shadow: 0 2px 0 0 #e0182d;
}

.ax--select {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.ax--select-input {
  font-family: var(--primary-font);
  font-weight: 400;
  opacity: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  line-height: normal;
  -webkit-appearance: none;
  background-color: #f4f7fb;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  box-shadow: 0 1px 0 0 #5a6872;
  color: #152935;
  cursor: pointer;
  display: block;
  height: 2.5rem;
  order: 2;
  padding: 0 2.5rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
}
.ax--select-input ::-ms-expand {
  display: none;
}

.ax--select-input[data-invalid],
.ax--select-input[data-invalid]:focus {
  box-shadow: 0 2px 0 0 #e0182d;
}

.ax--select-optgroup,
.ax--select-option {
  color: #152935;
}

.ax--select-option[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.ax--select__arrow {
  bottom: 1.75rem;
  fill: #3d70b2;
  height: 0.3125rem;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  width: 0.625rem;
}

.ax--select .ax--label {
  font-family: var(--primary-font);
  font-weight: 700;
  opacity: 0.5;
  font-size: 0.875rem;
  line-height: 1.5;
  display: inline-block;
  margin-bottom: 0.25rem;
  vertical-align: baseline;
}

.ax--pagination {
  font-family: var(--primary-font);
  font-weight: 400;
  opacity: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  align-items: center;
  background-color: #fff;
  border: 1px solid #dfe3e6;
  display: flex;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  width: 100%;
}

.ax--pagination__left,
.ax--pagination__right {
  align-items: center;
  display: flex;
}

.ax--pagination__right {
  margin-left: auto;
}

.ax--pagination .ax--select {
  margin-right: 0.5rem;
}

.ax--select {
  display: flex;
  flex-direction: column;
  position: relative;
}

.ax--pagination__text {
  color: #5a6872;
  display: none;
  font-size: 0.85rem;
  padding-right: 0.25rem;
}
@media (min-width: 530px) {
  .ax--pagination__text {
    display: block;
  }
}

.ax--pagination__button {
  background-color: var(--primary-button-color);
  color: var(--primary-button-text-color);
  border: 2px solid var(--primary-button-border-color);
  cursor: pointer;
}

.ax--pagination__button--backward {
  margin-left: 1rem;
  margin-right: 1.5rem;
}

.ax--pagination__button--forward {
  margin-left: 1.5rem;
}

.ax--assistive-text,
.ax--visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  visibility: visible;
  white-space: nowrap;
  width: 1px;
}

.ax--pagination .ax--text-input {
  background-color: #f4f7fb;
  box-shadow: none;
  font-weight: 600;
  height: 1.5rem;
  margin: 0;
  min-width: 1.5rem;
  order: 0;
  padding: 0;
  text-align: center;
  width: 1.5rem;
}

.tip {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.75rem;
  margin-bottom: 1rem;
}
.tip em {
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tip h2 {
  line-height: 1.25;
}

.page-title-sub {
  margin: 0 0 1em 0;
}

.add-new-customer {
  width: 100%;
  max-width: 60vw;
  padding: 2rem 0;
}
.add-new-customer .column {
  padding: 0 1em;
}
.add-new-customer .column.address {
  border-left: 1px solid #ccc;
  padding-left: 2em;
}
.add-new-customer h5 {
  /*margin-left: 1em;*/
  background: #e0e0e0;
  padding: 0.8em;
}

#contact-list-page .contact-family {
  margin: 0 1rem;
  background: var(--background-color);
  padding: 0.5rem 1rem;
  max-width: 300px;
}
#contact-list-page ul.family {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#contact-list-page ul.family li {
  display: inline-block;
}
#contact-list-page ul.family li:after {
  content: ", ";
  display: inline-block;
  margin-right: 0.25em;
}
#contact-list-page ul.family li:last-child:after {
  display: none;
}

#self-registration-app {
  background-image: var(--background-image-url);
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}

#start {
  background-image: var(--start-background-image-url);
  background-size: cover;
  background-repeat: no-repeat;
}

#complete-page-title {
  font-family: var(--secondary-font);
  font-size: 4rem;
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
  text-align: right;
}

#start-page-title {
  display: flex;
  align-items: center;
  font-family: var(--primary-font);
  font-size: var(--start-page-title-size);
  font-weight: normal;
  text-transform: uppercase;
  line-height: normal;
  text-align: left;
  color: var(--start-page-title-font-color);
}
#start-page-title #start-page-logo {
  width: var(--start-page-logo-width);
}

#start-page-subtitle {
  font-family: var(--secondary-font);
  font-size: 5rem;
  font-weight: normal;
  text-transform: none;
  line-height: normal;
  text-align: left;
  color: #656565;
}

#complete-page-title {
  text-align: center;
  margin-top: 1em;
}

[disabled=disabled] {
  pointer-events: none;
}

input[type=text] {
  display: inline-block;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 8px;
  margin: 0px 10px 10px 0;
}
input[type=text].hidden-input {
  width: 0px;
  height: 0px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}

select {
  display: inline-block;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 8px;
  margin: 0px 10px 10px 0;
}

.signature-panel {
  background-color: white;
  border: 2px solid black;
  border-radius: 10px;
  position: absolute;
  top: 90px;
  left: 90px;
  z-index: 999;
  padding: 50px;
}

.missing-signature {
  color: red;
  margin: 5px 0;
}

#start-page-screen.full-screen .outer-panel {
  height: 100%;
  padding-top: 100px;
  text-align: center;
}
#start-page-screen.full-screen .outer-panel .inner-panel {
  width: 1100px;
  height: 600px;
  border: none;
  background-color: inherit;
  position: relative;
}
#start-page-screen.full-screen .outer-panel .inner-panel .start-page-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 60px;
  text-align: right;
}
#start-page-screen.full-screen .outer-panel .inner-panel #start-panels {
  padding-top: 500px;
  display: flex;
}
#start-page-screen.full-screen .outer-panel .inner-panel #start-panels a {
  display: inline-block;
}
#start-page-screen.full-screen .outer-panel .inner-panel #start-panels a,
#start-page-screen.full-screen .outer-panel .inner-panel #start-panels a:hover,
#start-page-screen.full-screen .outer-panel .inner-panel #start-panels a:visited {
  color: white;
  text-decoration: none;
}
#start-page-screen.full-screen .outer-panel .inner-panel #start-panels a .start-panel,
#start-page-screen.full-screen .outer-panel .inner-panel #start-panels a:hover .start-panel,
#start-page-screen.full-screen .outer-panel .inner-panel #start-panels a:visited .start-panel {
  width: 300px;
  height: 150px;
  background-color: crimson;
  border: solid white 2px;
  border-radius: 10px;
  float: left;
  margin: 0 20px;
}

.legal-text {
  margin: 20px;
  text-align: left;
}

.waiver-container {
  border: 1px solid black;
  margin: 15px 50px;
  overflow-y: auto;
  max-height: 300px;
}

input.wide {
  width: 400px;
}

select.wide {
  width: 400px;
}

input.medium {
  width: 200px;
}

input.thin {
  width: 100px;
}

.contact-search-result {
  background-color: white;
  border: 1px solid black;
  margin: 10px;
  display: block;
  padding: 5px;
  display: flex;
}
.contact-search-result.contact-selected {
  background-color: lightblue;
}
.contact-search-result.member-ineligible {
  background-color: lightgray;
}

.navigation {
  margin: 20px 0;
  position: absolute;
  bottom: 0;
}

.form-label {
  width: 200px;
  text-align: right;
}

.test-message {
  box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.25);
  background: #000;
  color: rgba(255, 255, 255, 0.8);
  bottom: 0px;
  height: calc(80px - 0.5rem);
  left: 0;
  padding: 0.5rem;
  position: fixed;
  right: 0;
  text-align: center;
}
.test-message h4 {
  text-transform: uppercase;
  margin: 0.5rem auto;
}
.test-message p {
  margin: 0;
}

.card-scan .card-hand {
  transform: translate3d(-5px, 10px, 0);
  transition: transform 150ms;
}

#scan-card-panel-inner .has-hover {
  cursor: pointer;
}
#scan-card-panel-inner .has-hover:hover {
  transform: translateY(5px) rotate(15deg) scale3d(1.1, 1.1, 1.1);
}

@keyframes scan {
  0% {
    transform: translate3d(-5px, 10px, 0);
  }
  10% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
#start-over-btn {
  position: absolute;
  top: 5%;
  right: 5%;
  background: black;
  color: white;
  z-index: 1000;
}

.ax--list {
  min-width: 600px;
}

#select-member-page #select-member-container #select-member-list {
  width: 850px;
  min-width: 850px;
  height: 560px;
  min-height: 560px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding-left: 40px;
}
#select-member-page #select-member-container #select-member-list .member-eligible {
  height: 100px;
}
#select-member-page #select-member-container #select-member-list .ax--list--item {
  width: 350px;
}
#select-member-page #select-member-container #select-member-list .ax--list--item .group-member-image {
  max-height: 50px;
  max-width: 50px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  line-height: 50px;
  text-align: center;
}
#select-member-page .ax--pagination__text {
  font-size: 1.5rem;
}

.contact-order {
  min-width: 200px;
  padding: 0.5rem 1rem;
}
.contact-order.has-order {
  background: var(--background-color);
}

.contact-name .contact-name__name {
  font-family: var(--primary-font);
  font-weight: 400;
  opacity: 1;
  font-size: 1.333rem;
  line-height: 3;
  line-height: normal;
  margin-bottom: 0.5rem;
}

.toolbar--btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  background: white;
  border-color: rgba(0, 0, 0, 0.25);
  border-width: 1px 0;
  border-style: solid;
  margin-top: -1px;
  pointer-events: none;
  width: 100%;
}
.toolbar--btn.btn--start-over {
  pointer-events: all;
}
.toolbar--btn .toolbar--btn-icon {
  position: relative;
  border-radius: 100%;
  border: 2px solid #999;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toolbar--btn .toolbar--btn-icon.add-color .icon {
  height: 100%;
  width: 100%;
  z-index: 1;
}
.toolbar--btn .toolbar--btn-icon.add-color.active:after {
  background: var(--primary-color);
}
.toolbar--btn .toolbar--btn-icon.add-color:after {
  position: absolute;
  content: "";
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 100%;
  box-shadow: 0px 0px 0px 3px #939393;
  background: transparent;
  mix-blend-mode: overlay;
}
.toolbar--btn .toolbar--btn-icon.add-color:after img {
  width: 100%;
  height: 100%;
}
.toolbar--btn .toolbar--btn-icon .icon {
  height: 32px;
  width: 32px;
  fill: #939393;
}
.toolbar--btn .toolbar--btn-icon .icon path {
  fill: inherit;
}
.toolbar--btn .toolbar--btn-label {
  font-family: var(--primary-font);
  font-weight: 700;
  opacity: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  font-size: 0.78rem;
  line-height: 1.1em;
  margin-top: 0.25rem;
  text-transform: uppercase;
  color: #958E8A;
}
.toolbar--btn:hover {
  cursor: pointer;
  background: #f6f6f6;
}
.toolbar--btn:hover .toolbar--btn-icon {
  background: #dddddd;
}
.toolbar--btn:hover .toolbar--btn-label {
  color: var(--primary-color);
}

.icon--restart {
  position: relative;
  top: -2px;
  left: 1px;
}

.icon--restart svg {
  top: -3px;
  left: 2px;
}

.rol__window .sign-form button {
  font-family: var(--primary-font);
  font-weight: 700;
  opacity: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  width: 100%;
  line-height: 48px;
  max-height: 48px;
  padding: 0;
}
.rol__window .header__title h3 {
  font-size: 1.85rem;
  margin: 5px 0;
}

.rol__wrapper .rol__window {
  max-height: 55vh;
}

.ax--select-input,
.ax--text-input,
.ax--text-area {
  background: #ffffff;
}

.profile,
.registration {
  width: 100%;
  max-width: 50vw;
}

.ax--pagination__button {
  border: 1px solid #a41f1e;
  line-height: 64px;
  padding: 0 1rem;
  text-transform: uppercase;
}

.ax--pagination__button:focus {
  outline: none;
}

.ax--pagination--disabled {
  cursor: not-allowed;
  border: 1px solid #ccc;
}

.ax--pagination__button > svg {
  height: 1rem;
  width: auto;
  position: relative;
  top: 0.2em;
}
.ax--pagination__button > svg path {
  fill: var(--primary-button-text-color);
}

.ax--pagination__button--backward svg {
  margin-right: 0.5rem;
}

.ax--pagination__button--forward svg {
  margin-left: 0.5rem;
}

.ax--pagination {
  margin: 0.5em;
  width: auto;
  border: none;
  padding: 0.5rem;
  box-sizing: border-box;
  height: auto;
  background: none;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  margin-top: 1rem;
}

.ax--pagination__text {
  font-size: 1rem;
}

.ax--list--item.selectable.contact-inelligible {
  pointer-events: none;
  cursor: default;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0.5;
}
.ax--list--item.selectable.contact-inelligible .checkmark-wrapper {
  opacity: 0.5;
}

.ax--member-edit-item .ax--date-dropdown.ax--form-item {
  margin-bottom: 0;
  margin-right: 0;
  width: 400px;
  padding-left: 5px;
}

.ax--list--add--item {
  text-align: center;
}
.ax--list--add--item .ax--add--icon {
  font-size: 24px;
  font-family: Arial;
  font-weight: 700;
}

.ax--internal--nav {
  text-align: center;
}
.ax--internal--nav .ax--btn {
  margin-bottom: 15px;
}

.ax--form-item {
  align-items: flex-start;
  display: flex;
  flex: 1 1;
  flex-direction: column;
  margin-bottom: 1rem;
  order: 2;
}

.ax--text-area {
  line-height: normal;
  background-color: #f4f7fb;
  border: none;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 0 #5a6872;
  color: #152935;
  min-width: 10rem;
  order: 2;
  padding: 1rem;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

.ax--container__buttons {
  padding: 15px;
  display: flex;
  flex-direction: row;
}

.ax--btn {
  background-color: lightgrey;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  min-height: 44px;
  line-height: 1.6rem;
  padding: 0.5rem 1rem;
  position: relative;
  text-transform: uppercase;
}

.ax--btn.ax--btn--lg {
  font-weight: 700;
  line-height: normal;
  padding: 1.5rem 4rem;
}

.ax--label-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.ax--label-container .tooltip {
  position: relative;
  display: inline-block;
}

.ax--label-container .tooltip .tool-tip-icon {
  width: 25px;
  height: auto;
}

.ax--label-container .tooltip .tooltiptext {
  visibility: hidden;
  width: 240px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -120px;
  opacity: 0;
  transition: opacity 0.3s;
}

.ax--label-container .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.ax--label {
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  display: block;
}

:root {
  --primary-color: black;
  --secondary-color: grey;
  --background-color: white;
  --primary-font: garamond;
  --secondary-font: garamond;
  --primary-button-color: black;
  --primary-button-text-color: white;
  --primary-button-border-color: grey;
  --secondary-button-color: black;
  --secondary-button-text-color: white;
  --secondary-button-border-color: grey;
  --start-page-title-size: 9rem;
  --start-page-title-font-color: black;
  --start-page-logo-width: 100px;
}

body {
  padding: 0;
  margin: 0;
}

#symbol-reference {
  display: none;
}

.kiosk-layout-full {
  height: 100vh;
}

.kiosk-layout {
  height: 100vh;
  display: grid;
  grid-template-areas: "nav content";
  grid-template-columns: 160px 1fr;
  grid-template-rows: 1fr auto;
}
.kiosk-layout.kiosk-layout--has-footer {
  grid-template-areas: "nav content" "footer footer";
}
.kiosk-layout.test-mode {
  height: calc(100vh - 80px);
}
.kiosk-layout .kiosk-layout__content {
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem 0 3rem;
}
.kiosk-layout .kiosk-layout__content > .ax--container > .ax--container {
  min-width: 500px;
}
.kiosk-layout nav {
  margin-top: 2%;
}
.kiosk-layout nav.ax--container__footer {
  background-color: transparent;
  margin-top: 0;
}
.kiosk-layout nav #back-btn {
  position: absolute;
  left: 30px;
  bottom: 130px;
}

#member-bar {
  background-color: #353539;
  bottom: 0;
  color: white;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 1rem 1rem 1rem 6rem;
  position: absolute;
  right: 0;
}
#member-bar .contact-name {
  font-family: var(--secondary-font);
  font-weight: 400;
  opacity: 1;
  font-size: 2.369rem;
  line-height: 3;
  line-height: 1;
  border-right: 1px solid white;
  display: flex;
  flex-direction: column;
  padding-right: 2rem;
}
#member-bar .contact-name .contact-last-name {
  font-size: 0.65em;
  opacity: 0.8;
}

.terminal-id {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#start-page-screen {
  padding: 8%;
}

#complete-panels {
  margin-top: 100px;
}
#complete-panels .ax--btn {
  min-width: 410px;
  padding: 2rem 2rem 2rem 6rem;
}
#complete-panels .ax--btn .ax--btn__label {
  font-family: var(--secondary-font);
  color: var(--secondary-font-color);
  font-size: 2.369rem;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  line-height: 1em;
}
#complete-panels .ax--btn .ax--btn__icon {
  height: 4rem;
  width: 4rem;
  left: 1.25rem;
  top: 1.5rem;
}

#start-panels {
  position: absolute;
  bottom: 16%;
  left: 2px;
  background-color: white;
  border-top: solid 2px var(--primary-button-color);
  border-bottom: solid 2px var(--primary-button-color);
  width: calc(100% - 2px);
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#start-panels .start-panel {
  justify-content: center;
  align-content: center;
}
#start-panels .start-panel .ax--panel__label {
  font-family: var(--primary-font);
  color: var(--primary-font-color);
  font-size: 3rem;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  line-height: 1em;
}
#start-panels .start-panel .ax--panel__text {
  font-family: var(--secondary-font);
  color: var(--secondary-font-color);
  font-size: 1.5rem;
  margin: 0;
  text-transform: none;
}
#start-panels .start-panel .ax--btn {
  padding: 2rem 2rem 2rem 6rem;
  line-height: 4rem;
}
#start-panels .start-panel .ax--btn > * {
  text-align: center;
}
#start-panels .start-panel .ax--btn .ax--btn__label {
  font-family: var(--primary-font);
  color: var(--primary-font-color);
  font-size: 3rem;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  line-height: 1em;
}
#start-panels .start-panel .ax--btn .ax--btn__text {
  font-family: var(--secondary-font);
  color: var(--secondary-font-color);
  font-size: 1.6rem;
  margin: 0;
  text-transform: none;
}
#start-panels .start-panel .ax--btn .ax--btn__icon {
  height: 8rem;
  width: 8rem;
  left: 1.25rem;
  top: 1.5rem;
}
#start-panels .start-panel .ax--btn svg {
  transition: transform 150ms;
}
#start-panels .start-panel .ax--btn:hover svg {
  transform: translateY(5px) rotate(15deg) scale3d(1.1, 1.1, 1.1);
}
#start-panels #start-button-panels {
  margin: 15px;
  flex-basis: 60%;
  display: flex;
}
#start-panels #start-button-panels .start-button-panel {
  flex-basis: 50%;
  display: flex;
  padding: 15px;
}
#start-panels #start-button-panels .start-button-panel .ax--btn--primary {
  flex-basis: 100%;
}
#start-panels #scan-card-panel {
  text-align: center;
  margin-bottom: 15px;
  padding-left: 20px;
  flex-basis: 25%;
}
#start-panels #scan-card-panel .has-hover {
  cursor: pointer;
}
#start-panels #scan-card-panel .has-hover:hover {
  transform: translateY(5px) rotate(15deg) scale3d(1.1, 1.1, 1.1);
}
#start-panels #start-or-panel {
  font-family: var(--primary-font);
  font-size: 6rem;
  flex-basis: 10%;
  color: #656565;
  height: 175px;
  vertical-align: middle;
  color: var(--primary-font-color);
}

#scan-card-page .icon-scan-card {
  width: 200px;
  margin: 2rem auto;
  display: block;
}

#progress-map-container {
  background-color: #fff;
  box-shadow: 2px 0px 1px rgba(0, 0, 0, 0.25);
}

#progress-map {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}
#progress-map .logo {
  height: 130px;
  width: 100%;
}
#progress-map .progress-step {
  text-align: center;
  padding: 5px;
}
#progress-map .progress-step .progress-step-indicator {
  border-radius: 25px;
  height: 50px;
  width: 50px;
  background-color: lightgrey;
  color: white;
  font-size: 36px;
  color: crimson;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto;
}
#progress-map .progress-step .progress-step-name {
  font: 10px arial, sans-serif;
  color: lightgrey;
  text-align: center;
}
#progress-map .progress-step.active-step {
  background-color: cornsilk;
}
#progress-map .progress-step.active-step .progress-step-indicator {
  background-color: crimson;
  color: white;
}
#progress-map .progress-step.active-step .progress-step-name {
  color: crimson;
}

.group-members {
  width: 100%;
  display: flex;
  padding: 0 3rem;
}
.group-members .group-member {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 60px;
  justify-content: center;
  margin-right: 0.5rem;
  width: 60px;
}
.group-members .group-member .group-member-image {
  max-height: 50px;
  max-width: 50px;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  border: 1px solid white;
  line-height: 50px;
  text-align: center;
}
.group-members .group-member .member-name {
  margin-top: 8px;
  font-size: 10px;
  text-align: center;
  line-height: 10px;
}

.touch-scroll-wrapper {
  position: absolute;
  z-index: 100;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  height: 240px;
  width: 165px;
  border: 2px solid #999;
  border-radius: 15px;
  background: rgba(161, 161, 161, 0.95);
}
.touch-scroll-wrapper label {
  position: absolute;
  color: var(--secondary-color);
  bottom: 10px;
  text-align: center;
  left: 0;
  right: 0;
}
.touch-scroll-wrapper svg {
  width: 75%;
  height: auto;
  position: absolute;
  top: 20%;
  left: 20px;
  fill: white;
}

#launch-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.application-launch-panel {
  padding: 15px;
  margin: 15px 0;
  border: 2px solid gray;
  background-color: white;
}

.application-launch-panel .url-example {
  padding: 20px;
  font-style: italic;
}

#one-risk__iframe {
  width: 100%;
  height: 100%;
}

#onerisk-waiver-container {
  min-width: 800px;
  min-height: 800px;
}

.ax__ff-container {
  width: 80%;
  display: flex;
  flex-direction: column;
}
.ax__ff-container-inner {
  max-height: 65vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ax__ff-list {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
  padding-top: 10px;
}
.ax__ff-list-item {
  padding: 0 10px;
  height: 100%;
  width: 16.66666%;
  min-width: 220px;
}
.ax__ff-list-item-inner {
  background-color: white;
  padding: 0 25px;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  height: 100%;
  overflow-x: hidden;
  overflow-y: overlay;
}
.ax__ff-list-item-inner .contact-name {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-bottom: 1px solid #c4c4c4;
  padding: 20px 0 10px 0;
}
.ax__ff-list-item-inner .contact-name__image {
  max-height: 50px;
  max-width: 50px;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  background-color: #ccc;
  line-height: 50px;
  text-align: center;
  margin-bottom: 5px;
}
.ax__ff-info {
  margin: 15px 0 10px 0;
}
.ax__ff-info-title {
  text-transform: uppercase;
  font-size: 16px;
  color: #999;
  margin-bottom: 5px;
}
.ax__ff-info-text {
  margin-bottom: 5px;
}

.color-avatar-0 {
  background-color: #4C648E !important;
}

.color-avatar-1 {
  background-color: #DC8C41 !important;
}

.color-avatar-2 {
  background-color: #509CC6 !important;
}

.color-avatar-3 {
  background-color: #F5BD65 !important;
}

.color-avatar-4 {
  background-color: #B39971 !important;
}

.color-avatar-5 {
  background-color: #9F432A !important;
}

.color-avatar-6 {
  background-color: #002E54 !important;
}

.color-avatar-7 {
  background-color: #56602F !important;
}

.color-avatar-8 {
  background-color: #5B4938 !important;
}

/* === TYPOGRAPHY VARIABLES === */
/* === TYPOGRAPHY MIXINS TEST BUILD COMPILE 3 === */
@font-face {
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal;
  src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?v=4.3.0");
  src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
}
/* === TYPOGRAPHY MIXINS === */
body,
html {
  font-size: 16px;
}

@keyframes outline {
  from {
    stroke-dasharray: 0, 345.576px;
  }
  to {
    stroke-dasharray: 345.576px, 345.576px;
  }
}
@keyframes circle {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes check {
  from {
    stroke-dasharray: 0, 75px;
  }
  to {
    stroke-dasharray: 75px, 75px;
  }
}
@keyframes check-group {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
  to {
    transform: scale(1);
  }
}
.checked #outline {
  animation: 0.38s ease-in outline;
  transform: rotate(0deg);
  transform-origin: center;
}
.checked #white-circle {
  animation: 0.35s ease-in 0.35s forwards circle;
  transform: none;
  transform-origin: center;
}
.checked #check {
  animation: 0.34s cubic-bezier(0.65, 0, 1, 1) 0.8s forwards check;
  stroke-dasharray: 0, 75px;
}
.checked #check-group {
  animation: 0.32s ease-in-out 1.03s check-group;
  transform-origin: center;
}

.checkmark-wrapper {
  height: 100%;
  width: 38px;
  display: flex;
  align-items: center;
  margin-right: 1rem;
}
.checkmark-wrapper svg {
  height: 38px;
  width: auto;
}

.signature-pad__close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 35px;
  width: 35px;
  cursor: pointer;
}
.signature-pad__close-btn svg {
  height: 35px;
  width: 35px;
}
.signature-pad__overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  top: 0;
  left: 0px;
  z-index: 1;
}
.signature-pad__modal {
  position: absolute;
  top: 50%;
  width: 80%;
  max-width: 800px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: var(--background-color);
  border: 1px solid #ccc;
  padding-top: 0.5rem;
  z-index: 10;
}
.signature-pad__modal .signature-statement {
  margin: 1rem;
  line-height: 1.5em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}
.signature-pad__modal .signature-statement a {
  color: var(--link-text-color);
  cursor: pointer;
}
.signature-pad__modal .signature-canvas {
  position: relative;
}
.signature-pad__modal .signature-canvas__wrapper {
  margin: 0 1rem;
  min-height: 500px;
}
.signature-pad__modal .signature-canvas .canvas-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2rem 1rem 1.5rem 1rem;
  z-index: 10;
  pointer-events: none;
}
.signature-pad__modal .signature-canvas .canvas-overlay .signature-line {
  width: 100%;
  border-bottom: 2px solid black;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
}
.signature-pad__modal .signature-canvas .canvas-overlay svg {
  height: 30px;
  width: 30px;
}
.signature-pad__modal .signature-canvas .signature-canvas {
  background: var(--signature-canvas-color);
  width: 100%;
  min-height: 500px;
  z-index: 0;
  padding: 1rem;
  box-sizing: border-box;
}
.signature-pad__modal .signature-buttons {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.header__disclaimer {
  max-width: 740px;
  background: var(--background-color);
  padding: 1.5rem;
}

#sign-waiver-screen {
  background: var(--background-color);
}
#sign-waiver-screen .header__title h3 {
  font-size: 1.85rem;
  margin: 5px 0;
}
#sign-waiver-screen .waiver {
  height: calc(100vh - 300px);
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
  max-width: 800px;
}
#sign-waiver-screen .waiver__no-content {
  background: var(--waiver-no-content-background-color);
  max-width: 420px;
  padding: 2rem;
  margin: 8rem auto;
  text-align: center;
  border: 1px solid #ccc;
}
#sign-waiver-screen .waiver__no-content h2 {
  font-weight: normal;
  text-transform: none;
  font-size: 1.5rem;
}
#sign-waiver-screen .waiver__content {
  margin: 110px 1rem 5rem 1rem;
  text-align: left;
}
#sign-waiver-screen .waiver__content p {
  text-align: left;
}
#sign-waiver-screen .waiver__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 200px;
}
#sign-waiver-screen .waiver__buttons .btn {
  width: 320px;
  margin: 0 0 1rem 0;
  text-align: center;
}
#sign-waiver-screen .waiver__signature-statement {
  position: fixed;
  width: 800px;
  height: 85px;
  box-sizing: border-box;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--background-color);
  box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.15), inset 0px 1px 0px rgba(0, 0, 0, 0.2);
  z-index: 0;
}
#sign-waiver-screen .waiver__signature-statement .statement {
  line-height: 1.35;
}
#sign-waiver-screen .waiver__signature-statement .name {
  font-weight: bold;
  margin-left: 0.25em;
}
#sign-waiver-screen .waiver__signature-statement .btn {
  margin-left: 1rem;
  padding: 1rem;
  min-width: 120px;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.fade-quickly-enter-active, .fade-quickly-leave-active {
  transition: opacity 200ms;
}

.fade-quickly-enter, .fade-quickly-leave-to {
  opacity: 0;
}

.animate-scroll {
  animation: moveDown 1s ease-in 0s forwards;
  animation-iteration-count: 2;
}

@keyframes moveDown {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  80% {
    transform: translateY(-30px);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}
.color-avatar-0 {
  background-color: #4C648E !important;
}

.color-avatar-1 {
  background-color: #DC8C41 !important;
}

.color-avatar-2 {
  background-color: #509CC6 !important;
}

.color-avatar-3 {
  background-color: #F5BD65 !important;
}

.color-avatar-4 {
  background-color: #B39971 !important;
}

.color-avatar-5 {
  background-color: #9F432A !important;
}

.color-avatar-6 {
  background-color: #002E54 !important;
}

.color-avatar-7 {
  background-color: #56602F !important;
}

.color-avatar-8 {
  background-color: #5B4938 !important;
}

/* === TYPOGRAPHY VARIABLES === */
/* === TYPOGRAPHY MIXINS TEST BUILD COMPILE 3 === */
@font-face {
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal;
  src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?v=4.3.0");
  src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
}
/* === TYPOGRAPHY MIXINS === */
body,
html {
  font-size: 16px;
}

.rol__wrapper {
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  border: 1px solid #ccc;
}
.rol__wrapper .rol__window {
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  background: var(--background-color);
  width: 740px;
  max-width: 100%;
  height: 500px;
  max-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}
.rol__wrapper .rol__window .rol__header {
  font-family: var(--primary-font);
  font-weight: 700;
  opacity: 1;
  background: #F7F7FA;
  border-bottom: 1px solid #ccc;
  box-shadow: 0px 4px 4px 2px rgba(255, 255, 255, 0.95);
  height: auto;
  line-height: 50px;
  padding: 1rem;
  position: relative;
  text-align: center;
  z-index: 999;
}
.rol__wrapper .rol__window .rol__header .rol__close {
  position: absolute;
  right: 30px;
  top: 0;
  line-height: inherit;
  cursor: pointer;
}
.rol__wrapper .rol__window .rol__header .rol__close:before {
  font-family: "jh-icons" !important;
  font-size: 0.85rem;
  position: absolute;
  line-height: inherit;
}
.rol__wrapper .rol__window .rol__header .header__title {
  margin: 0 0 0.5rem 0;
  line-height: 1;
}
.rol__wrapper .rol__window .rol__header .header__disclaimer {
  line-height: 1.3em;
  font-weight: normal;
  font-size: 0.875rem;
  margin: 0;
  font-style: italic;
  opacity: 0.75;
  border-top: 1px solid #ccc;
  padding: 0.75em 0.75em 0 0.75em;
  width: 740px;
}
.rol__wrapper .rol__window .rol__document {
  padding-top: 65px;
  font-family: "Helvetica", serif;
  font-size: 0.8em;
  padding: 20px 40px;
  top: 0;
  bottom: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  max-width: 100%;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}
.rol__wrapper .rol__window .rol__document * {
  max-width: 100%;
}
.rol__wrapper .rol__window .rol__document ul {
  list-style-type: disc;
}
.rol__wrapper .rol__window .rol__document ul,
.rol__wrapper .rol__window .rol__document ol {
  margin-left: 1rem;
  padding-left: 0;
}
.rol__wrapper .rol__window .rol__document ul > li,
.rol__wrapper .rol__window .rol__document ol > li {
  margin-bottom: 0.5rem;
}
.rol__wrapper .rol__window .rol__document p {
  font-family: inherit;
  color: inherit;
  opacity: 1;
}
.rol__wrapper .rol__window .rol__progress {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  height: 5px;
  background: #a41f1e;
  z-index: 999;
}
.rol__wrapper .rol__window .rol__signmessage {
  font-family: Raleway, Tahoma, Helvetica, sans-serif;
  font-weight: 700;
  opacity: 1;
  text-transform: uppercase;
  font-size: 0.75em;
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
}
.rol__wrapper .rol__window .rol__footer {
  font-family: var(--secondary-font);
  font-weight: 400;
  opacity: 1;
  padding: 0;
  background: #F7F7FA;
  border-top: 1px solid #ccc;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rol__wrapper .rol__window .rol__footer.on-top {
  z-index: 9999999;
  display: block;
}
.rol__wrapper .rol__window .rol__footer p {
  padding: 5px;
  text-align: center;
  font-size: 1em;
  font-family: georgia;
  line-height: 1.625em;
  opacity: 0.7;
}
.rol__wrapper .rol__window .rol__footer .sign-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}
.rol__wrapper .rol__window .rol__footer .sign-form button {
  width: 100%;
  line-height: 44px;
  text-align: center;
}

.spinner-wrapper .loading-message {
  font-family: var(--primary-font);
  font-weight: 400;
  opacity: 1;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: black;
  text-align: center;
  line-height: 1.2em;
  white-space: nowrap;
  position: absolute;
  bottom: -2em;
  font-weight: normal;
  left: 50%;
  transform: translateX(-50%);
}

.spinner {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@keyframes colors {
  0% {
    stroke: #a41f1e;
  }
  50% {
    stroke: #141e28;
  }
  100% {
    stroke: #DCDACC;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
.spinner-wrapper {
  position: absolute;
  left: 50%;
  top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: var(--loading-image-url) rgba(0, 0, 0, 0.4);
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: 40px;
  height: 58px;
  width: 58px;
  border-radius: 100%;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.6);
  transform: translateX(-50%);
}

.modal__close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 35px;
  width: 35px;
  cursor: pointer;
}
.modal__close-btn svg {
  height: 45px;
  width: 45px;
}
.modal__overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  top: 0;
  z-index: 9;
}
.modal__modal {
  padding: 15px;
  position: absolute;
  top: 50%;
  width: 80%;
  width: 600px;
  height: 600px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: white;
  border: 1px solid #ccc;
  padding-top: 0.5rem;
  z-index: 10;
}
.modal__outer {
  height: 600px;
  position: relative;
}
.modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal__desc {
  margin-bottom: 20px;
}
.modal__buttons {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.modal__buttons btn {
  margin: 5px;
}
