/* Author: Aneudy 2021-10-30 */
button,
textarea,
input,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: border-box;
}
.height-fluid {
  height: 100%;
}

.height-full {
  height: 100vh;
}

.page-brand-logo {
  border-bottom: solid 1px #f0f0f0;
  max-height: 72px;
}

.page-brand-logo img {
  height: 38px;
}

.identity-selector-button {
  color: #000;
  background-color: transparent;
  border-bottom: 2px solid #e9e9e8;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.identity-selector-button:first-of-type {
  margin-top: 2rem;
}

.chevron-right-icon {
  background: url(/assets/images/icons/chevron-right-solid.svg) center no-repeat;
  width: 1em;
  height: 1em;
}

.flex {
  display: flex;
}

.flex-flow-column {
  flex-flow: column;
}

.row-gap-5em {
  row-gap: 5em;
}

.margin-top-2em {
  margin-top: 2em;
}

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

.image-panel {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkMAYAADkANVKH3ScAAAAASUVORK5CYII=);
  background-position: center right;
  background-size: cover;
}

.blur {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}
[data-provider] {
  /* display: none; */
}
[data-provider*="1--"] {
  order: 1;
}
[data-provider*="2--"] {
  order: 2;
}
[data-provider*="3--"] {
  order: 3;
}
[data-provider*="4--"] {
  order: 4;
}
[data-provider*="5--"] {
  order: 5;
}
[data-provider*="6--"] {
  order: 6;
}
[data-provider*="6--"] {
  order: 6;
}
[data-provider*="7--"] {
  order: 7;
}

/* xs - mobile */
@media screen and (max-width: 374px) {
  h2 {
    font-size: 1rem;
  }
  .identity-selector-button {
    font-size: 1rem;
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  .hide-on-mobile {
    display: none;
  }
  .provider-form {
    max-width: 400px;
    margin: 0 auto;
  }

  .content {
    text-align: center;
  }
}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  h2 {
    font-size: 2rem;
  }
}

/* Desktop */
@media screen and (min-width: 1024px) {
}

.margin-0, .margin-t-0, .margin-y-0 {
  margin-top: 0;
}
.margin-0, .margin-b-0, .margin-y-0 {
  margin-bottom: 0;
}
.margin-0, .margin-l-0, .margin-x-0 {
  margin-left: 0;
}
.margin-0, .margin-r-0, .margin-x-0 {
  margin-right: 0;
}
.margin-1em, .margin-t-1em, .margin-y-1em {
  margin-top: 1em;
}
.margin-1em, .margin-b-1em, .margin-y-1em {
  margin-bottom: 1em;
}
.margin-1em, .margin-l-1em, .margin-x-1em {
  margin-left: 1em;
}
.margin-1em, .margin-r-1em, .margin-x-1em {
  margin-right: 1em;
}
.margin-2em, .margin-t-2em, .margin-y-2em {
  margin-top: 2em;
}
.margin-2em, .margin-b-2em, .margin-y-2em {
  margin-bottom: 2em;
}
.margin-2em, .margin-l-2em, .margin-x-2em {
  margin-left: 2em;
}
.margin-2em, .margin-r-2em, .margin-x-2em {
  margin-right: 2em;
}

.width-fluid {
  width: 100%;
}

h1.brand-voice {
  word-break: break-all;
}

.need-help .modal {
  z-index: 9999;
  overflow-y: scroll;
  position: fixed;
  display: flex;
  align-items: flex-start;
    justify-content: center;
  left: 0;
  right:0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  padding: 5rem 0;
}

/* mobile */
@media screen and (max-width: 767px) {
  .need-help .modal {
    padding: 0;
  }
  
}

.scrollable-x {
  width: 100%;
  overflow-x: scroll;
}
.need-help  .modal-content {
  background-color: white;
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 860px;
  border-radius: 0.5rem;
}
.need-help  .close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
}
.need-help  .close-button:hover {
  background-color: darkgray;
}
.need-help  .show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
