/* colors */
/* The CTA and Main colors are pulled from site templates created by the Design team. These colors vary per OEM or group. */
/* CTA stands for Call-to-Action. The CTA color is often a bright, eye-catching color like red or light blue, used for links and important buttons. */
/* The Main color is often a dark, muted color like black or navy blue, used for backgrounds and less important buttons. */
/* fonts */
/* breakpoints */
/* borders */
/* local variables */
/* TODO: remove if border color classes are added to site templates */
/* Construct a media query that applies to multiple ranges of breakpoints. First and last argument must either be a single number or a list of 2 numbers. */
/* Make sure to give the truncated element a width. If the truncated element has display: flex or inline-flex, add min-width: 0 to the truncated element's immediate parent. If the flex truncated element is nested inside one or more other flex containers, also add min-width: 0 to the nearest ancestor element that does NOT have display: flex or inline-flex */
/* Works well for either single elements, or multiple elements grouped under the same parent */
/* Remove default styling from button element */
/* Good for adding color to an SVG-based image. Adds an ::after of the intended color and positions it over the element with a grid. NOTE: doesn't just use position: absolute because Safari doesn't like it. */
/* Good for adding color to an SVG-based image. Adds an ::after of the intended color and positions it over the element with a grid. Uses the SVG itself as a mask. NOTE: doesn't just use position: absolute because Safari doesn't like it. Expected code structure: <div class="icon" style="{the image url}"><img src="{the image url}"></div> */
@media (min-width: 767px) {
  .botdoc-modal {
    width: 700px;
  }
}
.botdoc-modal__no-padding {
  padding: 0;
}
.botdoc-modal__check__green {
  color: #01a601;
}
.botdoc-modal__check__gray {
  color: #7d7d7d;
}
.botdoc-modal__container-half {
  width: 50%;
}
.botdoc-modal__steps {
  margin-bottom: 30px;
  margin-left: 10px;
  margin-top: 60px;
}
.botdoc-modal__steps--mobile {
  margin-left: 60px;
  margin-bottom: 15px;
  margin-top: 20px;
}
.botdoc-modal__step-container {
  display: flex;
}
.botdoc-modal__step-container--checkmark {
  margin-right: 15px;
}
.botdoc-modal__step-container--label {
  align-self: center;
}
.botdoc-modal__fast-secure-badge {
  display: flex;
  margin: 20px 5px 0 5px;
}
.botdoc-modal__fast-secure-badge--text {
  align-self: center;
  margin: 10px;
  width: 210px;
  font-size: 14px;
}
.botdoc-modal__fast-secure-badge--text--mobile {
  align-self: center;
  margin: 10px;
  width: 220px;
}
.botdoc-modal__mobile-title {
  text-align: center;
  font-size: 22px;
}
.botdoc-modal__scan {
  text-align: center;
  margin-bottom: 30px;
}
.botdoc-modal__visitor-agreement {
  font-size: 12px;
  text-align: center;
  color: gray;
  margin: auto;
  width: 194px;
}
.botdoc-modal__visitor-agreement--mobile {
  font-size: 12px;
  text-align: center;
  color: gray;
}
.botdoc-modal__visitor-agreement--link {
  text-decoration: underline;
  color: black;
  font-weight: bold;
}
.botdoc-modal__powered-by-text {
  text-align: center;
}
.botdoc-modal__header--mobile {
  display: flex;
  margin-bottom: 20px;
}
.botdoc-modal__header--mobile--section {
  width: 33.3%;
}
.botdoc-modal__header {
  text-align: left;
  padding: 10px 10px 0 0;
}
@media (min-width: 767px) {
  .botdoc-modal__flex-container--desktop-only {
    display: flex;
    align-items: flex-start;
    margin: 10px;
    justify-content: space-evenly;
  }
  .botdoc-modal__flex-container--mobile-only {
    display: none;
  }
  .botdoc-modal__flex-container--general {
    display: flex;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .botdoc-modal__flex-container--desktop-only {
    display: none;
  }
  .botdoc-modal__flex-container--mobile-only {
    display: block;
    margin: 5px;
    font-size: 15px;
  }
  .botdoc-modal__flex-container--general {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}
.botdoc-modal__botdoc-logo {
  text-align: right;
}
.botdoc-modal__botdoc-logo--image {
  max-width: 160px;
}
.botdoc-modal__botdoc-secured-icon {
  background-color: #fff;
  border-radius: 50%;
  margin: 0.5em 1em 0.5em 1em;
  float: left !important;
}
.botdoc-modal__botdoc-secured-icon img {
  max-height: 80px;
  padding: 14px;
}
.botdoc-modal__botdoc-secured-icon-background {
  background-color: #01a601;
}
.botdoc-modal__image {
  max-width: 240px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.botdoc-modal__image--small {
  max-width: 100px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.botdoc-modal__image--scan {
  max-width: 70px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.botdoc-modal__qr-code {
  border: 2px solid lightgray;
  padding: 10px;
  display: inline-flex;
  border-radius: 14px;
  margin-bottom: 30px;
}
.botdoc-modal__half-margin {
  margin: 0.5em;
}
.botdoc-modal__get-started {
  background-color: var(--cta-background-color);
  color: var(--cta-font-color);
  width: 100%;
  text-align: center;
  height: 40px;
  border-radius: 7px;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
}
.botdoc-modal__get-started--start {
  padding-left: 32px;
}
.botdoc-modal__get-started--text {
  margin-top: auto;
  margin-bottom: auto;
}
.botdoc-modal__get-started--arrow {
  margin-top: auto;
  margin-bottom: auto;
  padding-right: 15px;
}

/*# sourceMappingURL=botDocTestDrive.css.map */
