/* Stripe Elements */
/**
 * The CSS shown here will not be introduced in the Quickstart guide, but shows
 * how you can use CSS to style your Element's container.
 */

 
.StripeElement {
  box-sizing: border-box;

  height: 40px;

  padding: 10px 12px;

  border: 1px solid transparent;
  border-radius: 4px;
  background-color: white;

  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
/* End Stripe Elements */

.not-bold {
  font-weight: normal !important;
}

.nodisplay {
  display: none;
}

.f80 {
  font-size: 80%;
}

/* Credit Cards */
.cc-stripe {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/stripe.svg);
  background-size: 50px 41px;
}

.cc-visa {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/visa.svg);
  background-size: 50px 41px;
}

.cc-discover {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/discover.svg);
  background-size: 50px 41px;
}

.cc-amex {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/amex.svg);
  background-size: 50px 41px;
}
.cc-mastercard {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/mastercard.svg);
  background-size: 50px 41px;
}

.cc-jcb {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/jcb.svg);
  background-size: 50px 41px;
}

.cc-apple-pay {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/apple-pay.svg);
  background-size: 50px 41px;
}

.cc-diners {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/diners-club.svg);
  background-size: 50px 41px;
}

.cc-duotone {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/credit-card-duotone.svg);
  background-size: 50px 41px;
}

.cc-duotone-front {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/credit-card-front-duotone.svg);
  background-size: 50px 41px;
}

.cc-unionpay {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/credit-card-regular.svg);
  background-size: 50px 41px;
}

.cc-unknown {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/credit-card-regular.svg);
  background-size: 50px 41px;
}

.cc-regular {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/credit-card-regular.svg);
  background-size: 50px 41px;
}

.cc-solid {
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 41px;
  background: url(/img/icons/cc/credit-card-solid.svg);
  background-size: 50px 41px;
}
/* END Credit Cards */

.brand-logo {
  margin-top: 6px;
  margin-left: 1em;
}

/* Material Icons */
/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/materialIcons.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* Change materialize css default green */

.switch label input[type='checkbox']:checked + .lever {
  background-color: #71bbf7 !important;
}

.switch label input[type='checkbox']:checked + .lever:after {
  background-color: #2196f3 !important;
}

/* Change materialize css default green */
.switch label input[type='checkbox']:checked {
  background-color: #2196f3 !important;
}

.active {
  color: #2196f3 !important;
}

.tabs .active {
  background-color: #ffffff !important;
}

.tabs .indicator {
  background-color: #2196f3 !important;
}

.tabs .tab a {
  color: #000 !important;
}

.img.material-icons.icon.prefix {
  color: #2196f3 !important;
}
input:focus {
  border-bottom: 1px solid#2196F3 !important;
  box-shadow: 0 1px 0 0 #2196f3 !important;
}

ul.dropdown-content.select-dropdown li span {
  color: #000;
}

.autocomplete-content.dropdown-content li span {
  color: #2196f3 !important;
}

/* textarea label focus color */
.input-field input[type='text']:focus + label,
.materialize-textarea:focus:not([readonly]) + label {
  color: #2196f3 !important;
}

/* textarea label underline focus color */
.input-field input[type='text']:focus,
.materialize-textarea:focus:not([readonly]) {
  border-bottom: 1px solid #2196f3 !important;
  box-shadow: 0 1px 0 0 #2196f3 !important;
}

/* END Change materialize css default green */

.completedWip {
  color: #65ae6e;
  font-weight: bold;
}

/* Stick Footer */
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.sms-conversation-wrapper {
  max-height: 10rem;
  overflow-y: auto;
  display: black;
}

.chat-conversation-wrapper {
  max-height: 10rem;
  overflow-y: auto;
  display: black;
}

.icon {
  max-height: 2rem;
}

.center {
  margin: auto;
}

.infoModal dt {
  float: left;
  width: 50%;
  /* adjust the width; make sure the total of both is 100% */
  padding: 0;
  margin: 0;
}
.infoModal dd {
  float: left;
  width: 50%;
  /* adjust the width; make sure the total of both is 100% */
  padding: 0;
  margin: 0;
  margin-left: -200px;
}

/* FancyGrid */
.fancy-field-search .fancy-field-text-input {
  height: 10px !important;
}

.fancy-panel-bbar .fancy-button {
  margin-top: 9px !important;
}

.fancy-panel-bbar .fancy-separator {
  margin-top: 12px !important;
}

.fancy-panel-bbar .fancy-bar-text {
  margin-top: 5px;
}

.fancy-panel-bbar .fancy-field-text-input {
  height: 10px !important;
}

.dataTables_filter {
  float: left;
  text-align: left;
  width: 30%;
  color: #1976d2;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.dot {
  height: 25px;
  width: 25px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.wordwrap {
  white-space: pre-wrap; /* CSS3 */
  white-space: -moz-pre-wrap; /* Firefox */
  white-space: -pre-wrap; /* Opera <7 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* IE */
}

/*------------------------------------*\
  Grid JS Tables
\*------------------------------------*/
.gridjs-sort {
  border-width: 0px;
}

/*------------------------------------*\
  FONT-WEIGHT
\*------------------------------------*/
.b {
  font-weight: bold;
}
.fw5 {
  font-weight: 500;
}

.cardInfo {
  position: absolute;
  margin-left: -0.3em;
  margin-bottom: -0.3em;
  margin-top: 0.05em;
  color: grey;
}

/* Custom font size for Materialize toast */
.toast {
  font-size: 125%; /* Adjusts font size to 200% */
}

#documentAnswers.container {
  max-width: 100% !important;
  padding: 0 1rem; 
}