/*! tailwindcss v2.2.7 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

/**
Add the correct font size in all browsers.
*/

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/


sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
select {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */


h2,
p {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

input::-webkit-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button {
  cursor: pointer;
}


h2 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
select {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
iframe {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img {
  max-width: 100%;
  height: auto;
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

/* Fonts */

@font-face {
  font-family: "Santander-01";

  src: local("SantanderHeadline-Bold"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderHeadline-Bold.woff)
        format("woff");
}

@font-face {
  font-family: "Santander-02";

  src: local("SantanderHeadlineW05-Bold"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderHeadlineW05-Bold.woff)
        format("woff");
}

@font-face {
  font-family: "Santander-03";

  src: local("SantanderHeadlineW05-BoldIt"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderHeadlineW05-BoldIt.woff)
        format("woff");
}

@font-face {
  font-family: "Santander-04";

  src: local("SantanderHeadlineW05It-Italic"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderHeadlineW05-Italic.woff)
        format("woff");
}

@font-face {
  font-family: "Santander-05";

  src: local("SantanderHeadlineW05-Rg"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderHeadlineW05-Rg.woff)
        format("woff");
}

@font-face {
  font-family: "Santander-06";

  src: local("SantanderTextW05-Bold"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderTextW05-Bold.woff)
        format("woff");
}

@font-face {
  font-family: "Santander-07";

  src: local("SantanderTextW05-BoldItalic"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderTextW05-BoldItalic.woff)
        format("woff");
}

@font-face {
  font-family: "Santander-08";

  src: local("SantanderTextW05-Italic"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderTextW05-Italic.woff)
        format("woff");
}

@font-face {
  font-family: "Santander-09";

  src: local("SantanderTextW05-Light"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderTextW05-Light.woff)
        format("woff");
}

@font-face {
  font-family: "Santander-10";

  src: local("SantanderTextW05-LightIt"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderTextW05-LightIt.woff)
        format("woff");
}

@font-face {
  font-family: "Santander-11";

  src: local("SantanderTextW05-Regular"),
      url(/content/dam/sitepublico/campanhas-mkd/assets/fonts/SantanderTextW05-Regular.woff)
        format("woff");
}

h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-family: Santander-02, SantanderHeadlineW05-Bold;
  --tw-text-opacity: 1;
  color: rgba(68, 68, 68, var(--tw-text-opacity));
  margin-bottom: 1.5rem;
}

section {
  margin-top: 2rem
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 370px) {
  .container {
    max-width: 370px;
  }
}

@media (min-width: 410px) {
  .container {
    max-width: 410px;
  }
}

@media (min-width: 550px) {
  .container {
    max-width: 550px;
  }
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

@media (min-width: 1900px) {
  .container {
    max-width: 1900px;
  }
}

@media (min-width: 2100px) {
  .container {
    max-width: 2100px;
  }
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.top-0 {
  top: 0px;
}

.top-1 {
  top: 0.25rem;
}

.top-4 {
  top: 1rem;
}

.bottom-0 {
  bottom: 0px;
}

.left-1 {
  left: 0.25rem;
}

.left-2 {
  left: 0.5rem;
}

.z-10 {
  z-index: 10;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.-z-1 {
  z-index: -1;
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-start-1 {
  grid-column-start: 1;
}

.col-start-11 {
  grid-column-start: 11;
}

.col-end-2 {
  grid-column-end: 2;
}

.col-end-13 {
  grid-column-end: 13;
}

.row-span-1 {
  grid-row: span 1 / span 1;
}

.row-span-2 {
  grid-row: span 2 / span 2;
}

.row-span-4 {
  grid-row: span 4 / span 4;
}

.row-span-5 {
  grid-row: span 5 / span 5;
}

.row-start-2 {
  grid-row-start: 2;
}

.row-start-6 {
  grid-row-start: 6;
}

.row-end-5 {
  grid-row-end: 5;
}

.row-end-7 {
  grid-row-end: 7;
}

.float-right {
  float: right;
}

.m-auto {
  margin: auto;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-auto {
  margin-left: auto;
}

.block {
  display: block;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-7 {
  height: 1.75rem;
}

.h-9 {
  height: 2.25rem;
}

.h-11 {
  height: 2.75rem;
}

.h-24 {
  height: 6rem;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.min-h-tres-cinco-rem {
  min-height: 3.5rem;
}

.w-9 {
  width: 2.25rem;
}

.w-1\/2 {
  width: 50%;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-full {
  width: 100%;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ping {
  75%, 100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.cursor-pointer {
  cursor: pointer;
}

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.grid-flow-row {
  grid-auto-flow: row;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.items-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-x-2 {
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.gap-x-4 {
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-t-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.border-0 {
  border-width: 0px;
}

.border-2 {
  border-width: 2px;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-color-primary-01 {
  --tw-border-opacity: 1;
  border-color: rgba(236, 0, 0, var(--tw-border-opacity));
}

.border-color-primary-07 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.hover\:border-color-primary-16:hover {
  --tw-border-opacity: 1;
  border-color: rgba(216, 46, 32, var(--tw-border-opacity));
}

.bg-transparent {
  background-color: transparent;
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-color-primary-01 {
  --tw-bg-opacity: 1;
  background-color: rgba(236, 0, 0, var(--tw-bg-opacity));
}

.bg-color-primary-07 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-color-primary-12 {
  --tw-bg-opacity: 1;
  background-color: rgba(34, 34, 34, var(--tw-bg-opacity));
}

.bg-color-primary-14 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 0, 0, var(--tw-bg-opacity));
}

.bg-color-primary-15 {
  --tw-bg-opacity: 1;
  background-color: rgba(246, 250, 252, var(--tw-bg-opacity));
}

.bg-color-secondary-04 {
  --tw-bg-opacity: 1;
  background-color: rgba(51, 102, 255, var(--tw-bg-opacity));
}

.bg-color-secondary-06 {
  --tw-bg-opacity: 1;
  background-color: rgba(245, 249, 251, var(--tw-bg-opacity));
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.hover\:bg-color-primary-16:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(216, 46, 32, var(--tw-bg-opacity));
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-8 {
  padding-left: 2rem;
}

.text-left {
  text-align: left;
}

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

.font-San-Head-B {
  font-family: Santander-01, SantanderHeadline-Bold;
}

.font-San-HeadL-W05-B {
  font-family: Santander-02, SantanderHeadlineW05-Bold;
}

.font-San-HeadW05-Rg {
  font-family: Santander-05, SantanderHeadlineW05-Rg;
}

.font-San-TextW05-B {
  font-family: Santander-06, SantanderTextW05-Bold;
}

.font-San-TextW05-Light {
  font-family: Santander-09, SantanderTextW05-Light;
}

.font-San-TextW05-Regular {
  font-family: Santander-11, SantanderTextW05-Regular;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-none {
  line-height: 1;
}

.leading-normal {
  line-height: 1.5;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

.text-color-primary-01 {
  --tw-text-opacity: 1;
  color: rgba(236, 0, 0, var(--tw-text-opacity));
}

.text-color-primary-02 {
  --tw-text-opacity: 1;
  color: rgba(204, 0, 0, var(--tw-text-opacity));
}

.text-color-primary-07 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-color-primary-11 {
  --tw-text-opacity: 1;
  color: rgba(68, 68, 68, var(--tw-text-opacity));
}

.text-color-primary-13 {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.text-color-primary-16 {
  --tw-text-opacity: 1;
  color: rgba(216, 46, 32, var(--tw-text-opacity));
}

.text-color-secondary-03 {
  --tw-text-opacity: 1;
  color: rgba(27, 179, 188, var(--tw-text-opacity));
}

.hover\:text-color-primary-01:hover {
  --tw-text-opacity: 1;
  color: rgba(236, 0, 0, var(--tw-text-opacity));
}

.hover\:text-color-primary-07:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.underline {
  text-decoration: underline;
}

.focus\:placeholder-transparent:focus::-webkit-input-placeholder {
  color: transparent;
}

.focus\:placeholder-transparent:focus::-moz-placeholder {
  color: transparent;
}

.focus\:placeholder-transparent:focus:-ms-input-placeholder {
  color: transparent;
}

.focus\:placeholder-transparent:focus::-ms-input-placeholder {
  color: transparent;
}

.focus\:placeholder-transparent:focus::placeholder {
  color: transparent;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

*, ::before, ::after {
  --tw-shadow: 0 0 #0000;
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
          box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
          box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

*, ::before, ::after {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

/* CSS */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus{
  outline:none;
}

*:focus-visible{
  outline: 2px solid #3366ff;
}

/* backgroud */

.background-img {
  background-image: url("../img/AO_CP_EXTRA_LP_SMALL.jpg");
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .background-img {
    background-image: url("../img/AO_CP_EXTRA_LP_BIG_1.jpg");
  }
}

@media (min-width: 1536px) {
  .background-img {
    background-image: url("../img/AO_CP_EXTRA_LP_BIG_2.jpg");
  }
}

/* backgroud */

.background-img-cp-extra {
  background-image: url("../img/banner_testemunho_cp_extra_mobile.jpg");
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .background-img-cp-extra {
    grid-template-rows: repeat(7, minmax(0, 1fr));
    background-image: url("../img/banner_testemunho_cp_extra_desk.jpg");
  }
}

.background-img-cp-auto {
  background-image: url("../img/banner_testemunho_ca_mobile.jpg");
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .background-img-cp-auto {
    grid-template-rows: repeat(7, minmax(0, 1fr));
    background-image: url("../img/banner_testemunho_ca_desk.jpg");
  }
}

.tailwindNotWorking{
  grid-template-columns: repeat(6, minmax(0,1fr));
}

.bg-testemunho-text-mobile {
  grid-template-rows: repeat(7, minmax(0, 1fr));
}

/* Input */

input:not(:-moz-placeholder-shown) ~ label {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-y: -1rem;
  --tw-scale-x: .75;
  --tw-scale-y: .75;
}

input:not(:-ms-input-placeholder) ~ label {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  -ms-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-y: -1rem;
  --tw-scale-x: .75;
  --tw-scale-y: .75;
}

input:focus-within ~ label, input:not(:placeholder-shown) ~ label {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  -webkit-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      -ms-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-y: -1rem;
  --tw-scale-x: .75;
  --tw-scale-y: .75;
}

input:not(:-moz-placeholder-shown) ~ label {
  z-index: 10;
}

input:not(:-ms-input-placeholder) ~ label {
  z-index: 10;
}

input:focus-within ~ label, input:not(:placeholder-shown) ~ label {
  z-index: 10;
}

input:not(:-moz-placeholder-shown) ~ label {
  --tw-text-opacity: 1;
  color: rgba(118, 118, 118, var(--tw-text-opacity));
}

input:not(:-ms-input-placeholder) ~ label {
  --tw-text-opacity: 1;
  color: rgba(118, 118, 118, var(--tw-text-opacity));
}

input:focus-within ~ label, input:not(:placeholder-shown) ~ label {
  --tw-text-opacity: 1;
  color: rgba(118, 118, 118, var(--tw-text-opacity));
}

.line-focus {
  border-bottom-color: #5096b5;
}

.select-arrow {
  pointer-events: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.select-arrow svg {
  height: 1.25rem;
  width: 1.25rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgba(236, 0, 0, var(--tw-text-opacity));
}

.select-arrow-previous-credit svg {
  height: 1.25rem;
  width: 1.25rem;
  fill: currentColor;
  --tw-text-opacity: 1;
  color: rgba(236, 0, 0, var(--tw-text-opacity));
}

.select-arrow-previous-credit {
  pointer-events: none;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  top:39px;
  right:178px;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

.removeArrow::-webkit-calendar-picker-indicator {
  display: none !important;
}

/* input radio */

input[type=radio] {
  /* display: none;  */
}

input[type=radio]:checked + label:before {
  background: #6E8CA0;
  font-size: 50px;
}

/***************** Vantagens *****************/

/***************** Condições *****************/

/* Accordion */

/* Tab content - closed */

.tab-content {
  max-height: 0;
  -webkit-transition: max-height .25s;
  transition: max-height .25s;
}

/* :checked - resize to full height */

.tab input:checked ~ .tab-content {
  max-height: 100vh;
}

/* Label formatting when open */

.tab input:checked + label{
  /*@apply text-xl p-5 border-l-2 border-indigo-500 bg-gray-100 text-indigo*/
  /* font-size: 1.25rem; */ /*.text-xl*/
  /* padding: 1.25rem; */ /*.p-5*/
  /* border-left-width: 2px; */ /*.border-l-2*/
  /* border-color: #6574cd; */ /*.border-indigo*/
  /* background-color: #f8fafc; */ /*.bg-gray-100 */
  /*color: #6574cd; .text-indigo*/
}

/* Icon */

.tab a>label::after {
  float:right;
  right: 0;
  top: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5;
  font-size: 1.25rem;
  text-align: center;
  -webkit-transition: all .35s;
  transition: all .35s;
}

/* Icon formatting - closed */

.tab input[type=checkbox] + a>label::after {
  content: url("../img/BE120-acordion.svg");
  /* "\25BE" */
  font-weight: normal; /*.font-bold*/
  /*  border-width: 1px; */ /*.border*/
  /*  border-radius: 9999px; */ /*.rounded-full */
  /* border-color: #b8c2cc; */ /*.border-grey*/
}

.tab input[type=radio] + a>label::after {
  content: "\25BE";
  font-weight:bold; /*.font-bold*/
  border-width: 1px; /*.border*/
  border-radius: 9999px; /*.rounded-full */
  border-color: #b8c2cc; /*.border-grey*/
}

/* Icon formatting - open */

.tab input[type=checkbox]:checked + a>label::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  /*background-color: #6574cd; .bg-indigo*/
  color: #f8fafc; /*.text-grey-lightest */
}

.tab input[type=radio]:checked + a>label::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
  /*background-color: #6574cd;  .bg-indigo*/
  color: #f8fafc; /*.text-grey-lightest*/
}

/* NEW AMOUNT SLIDER */

input[type="range"]::-ms-tooltip {
  display: none;
}

input[type="range"] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  background: transparent; /* Otherwise white in Chrome */
  /*background: linear-gradient(to right, green 0%, green 50%, #fff 50%, white 100%);*/
  border-radius: 100px;
  height: 3px;
  background-image: -webkit-gradient(
     linear,
     left top,
     right top,
     color-stop(0.15, #EC0000),
     color-stop(0.15, #cccccc)
 );
}

input[type="range"]:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type="range"]::-ms-track {
  cursor: pointer;
  /*height: 8.4px;*/
  /* Hides the slider so custom styles can be added */
  background: transparent;
  border-color: transparent;
  color: transparent;
}

#prazo-sim-slider {
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2.4px;
  cursor: pointer;
  border-radius: 100px;
  -webkit-appearance: none;
  /* box-shadow: 1px 1px 1px yellow, 0px 0px 1px #0d0d0d;*/
  /* border: 0.2px solid #010101;*/
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  /*  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  border-radius: 10px;
  /* border: 0.2px solid #010101;*/
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

input[type="range"]::-ms-fill-lower {
  background: rgb(161, 154, 154);
  /* border: 0.2px solid #010101;*/
  border-radius: 10px;
  /* box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
}

input[type="range"]:focus::-ms-fill-lower {
  background: #e5e5e5;
}

input[type="range"]::-ms-fill-upper {
  background: #9e3667;
  /* border: 0.2px solid #010101;*/
  border-radius: 10px;
  /*  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
}

input[type="range"]:focus::-ms-fill-upper {
  background: #9e3667;
}

@media screen and (max-width: 648px) {
  input[type="range"] {
    width: 100%;
  }
}

input[type="range"]::-ms-tooltip {
  display: none;
}

input[type="range"]::-ms-track {
  width: 100%;
  cursor: pointer;
  height: 2.4px;
  background: 0 0;
  border-color: transparent;
  color: transparent;
}

/* Special styling for WebKit/Blink */

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  border: 2px solid #ff0200;
  height: 15px;
  width: 15px;
  border-radius: 100px;
  background: #ff0200;
  cursor: pointer;
  margin-top: -6px;
  /* gives a shadow to the slider "thumb" (the ball slider)
  -webkit-box-shadow: 0 0 0 10px rgba(255, 2, 0, 0.3);
  box-shadow: 0 0 0 10px rgba(255, 2, 0, 0.3); */
  /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */ /* Add cool effects to your sliders! */
}

/* All the same stuff for Firefox */

input[type="range"]::-moz-range-thumb {
  border: 2px solid #ff0200;
  height: 18px;
  width: 18px;
  border-radius: 100px;
  background: #ff0200;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(255, 2, 0, 0.3);
}

input[type="range"]::-ms-thumb {
  border: 2px solid #ff0200;
  height: 18px;
  width: 18px;
  border-radius: 100px;
  background: #ff0200;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(255, 2, 0, 0.3);
}

#prazo-sim-slider {
  -webkit-transform: rotateY(0);
  -ms-transform: rotateY(0);
  transform: rotateY(0);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 2.4px;
  cursor: pointer;
  border-radius: 10px;
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 5.4px;
  cursor: pointer;
  background: 0 0;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

input[type="range"]::-ms-fill-lower {
  background: #ff0200;
  border-radius: 10px;
}

input[type="range"]:focus::-ms-fill-lower {
  background: #ff0200;
}

input[type="range"]::-ms-fill-upper {
  background: #ff0200;
  border-radius: 10px;
}

input[type="range"]:focus::-ms-fill-upper {
  background: #ff0200;
}

/** FF*/

input[type="range"]::-moz-range-progress {
  background-color: BLACK;
  height: 2px;
  border-radius: 100px;
}

input[type="range"]::-moz-range-track {
  background-color: #cccccc;
}

/* END NEW AMOUNT SLIDER */

/* END OF CSS USED ON THE FORM PAGE */

.advantages{
  margin-top:0px;
  padding-top:2rem;
}

/* New Radios */

input[name="radio"] {
  display:none;
}

#new-radios-check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 2px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

#new-radios-check input {
  height: auto;
  width: auto;
}

#new-radios-check label.containerRadio {
  --cor: #9bc3d3;
  max-width:106px;
  display: block;
  position: relative;
  /* padding-top: 4px; */
  padding-left: 28px;
  padding-right: 0px;
  margin-bottom: 12px;
  /* font-family: Arial, Helvetica, sans-serif; 
  @apply font-San-TextW05-Regular;*/
  cursor: pointer;
  font-size: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */

.containerRadio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */

.checkmark {
  margin:0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 24px;
  width: 24px;
  /*  background-color: #eee; */
  border: 0.5px solid #707070;
  border-radius: 50%;
  border: 1px solid var(--cor);
}

/* On mouse-over, add a red background color */

.containerRadio:hover input ~ .checkmark {
  /*background-color: #ccc;*/
  border-color:#EC0000;
}

/* When the radio button is checked, add a red background */

.containerRadio input:checked ~ .checkmark {
  background-color: white;
  border: 2px solid #EC0000;
}

/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */

.containerRadio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */

.containerRadio .checkmark:after {
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #EC0000;
}

/* End of new radios*/

/*FORM TOP BAR */

/*! CSS Used from */

::after,::before{
  -webkit-box-sizing:inherit;
  box-sizing:inherit;
}

@media print{
  *{
    background:0 0!important;
    color:#000!important;
    -webkit-print-color-adjust:economy;
    color-adjust:economy;
    -webkit-box-shadow:none!important;
    box-shadow:none!important;
    text-shadow:none!important;
  }
}

/* END OF FORM TOP BAR */

/*FORM NOT CLIENT*/

/*! CSS Used from: */

::after,::before{
  -webkit-box-sizing:inherit;
  box-sizing:inherit;
}

p{
  margin:0;
  padding:0;
}

/*END OF FORM NOT CLIENT*/

.pointer {
  cursor: pointer;
}

.customContainer {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 320px) {
  .customContainer {
    max-width: 550px;
  }
}

@media (min-width: 640px) {
  .customContainer {
    max-width: 640px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 768px) {
  .customContainer {
    max-width: 1040px;
  }
}

@media (min-width: 1024px) {
  .customContainer {
    max-width: 1400px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

@media (min-width: 1280px) {
  .customContainer {
    max-width: 1400px;
  }
}

@media (min-width: 1536px) {
  .customContainer {
    max-width: 1556px;
  }
}

.simulatorTaxes{
  font-size: 1.1rem;
}

.simulatorTaxes .sup{
  font-size: 0.55rem;
  vertical-align:text-top;
}

.simulatorTaxes .monthly{
  font-size: 0.55rem;
}

.simulatorTaxesRiscada{
  font-size: 0.9rem;
}

.simulatorTaxesRiscada .sup{
  font-size: 0.45rem;
  vertical-align:text-top;
}

.simulatorTaxesRiscada .monthly{
  font-size: 0.45rem;
}

@media screen and (min-width: 354px) {
  .simulatorTaxes{
    font-size: 1.2rem;
  }

  .simulatorTaxes .sup{
    font-size: 0.7rem;
  }

  .simulatorTaxes .monthly{
    font-size: 0.7rem;
  }

  .simulatorTaxesRiscada{
    font-size: 1rem;
  }

  .simulatorTaxesRiscada .sup{
    font-size: 0.6rem;
  }

  .simulatorTaxesRiscada .monthly{
    font-size: 0.6rem;
  }
}

@media screen and (min-width: 477px) {
  .simulatorTaxes{
    font-size: 1.75rem;
  }

  .simulatorTaxes .sup{
    font-size: 0.9rem;
  }

  .simulatorTaxes .monthly{
    font-size: 0.9rem;
  }

  .simulatorTaxesRiscada{
    font-size: 1.55rem;
  }

  .simulatorTaxesRiscada .sup{
    font-size: 0.8rem;
  }

  .simulatorTaxesRiscada .monthly{
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 768px) {
  .simulatorTaxes{
    font-size: 1rem;
  }

  .simulatorTaxes .sup{
    font-size: 0.6rem;
  }

  .simulatorTaxes .monthly{
    font-size: 0.6rem;
  }

  .simulatorTaxesRiscada{
    font-size: 0.8rem;
  }

  .simulatorTaxesRiscada .sup{
    font-size: 0.5rem;
  }

  .simulatorTaxesRiscada .monthly{
    font-size: 0.5rem;
  }
}

@media screen and (min-width: 900px) {
  .simulatorTaxes{
    font-size: 1.1rem;
  }

  .simulatorTaxes .sup{
    font-size: 0.6rem;
  }

  .simulatorTaxes .monthly{
    font-size: 0.6rem;
  }

  .simulatorTaxesRiscada{
    font-size: 1rem;
  }

  .simulatorTaxesRiscada .sup{
    font-size: 0.6rem;
  }

  .simulatorTaxesRiscada .monthly{
    font-size: 0.6rem;
  }
}

@media screen and (min-width: 1110px) {
  .simulatorTaxes{
    font-size: 1.1rem;
  }

  .simulatorTaxes .sup{
    font-size: 0.6rem;
  }

  .simulatorTaxes .monthly{
    font-size: 0.6rem;
  }

  .simulatorTaxesRiscada{
    font-size: 0.9rem;
  }

  .simulatorTaxesRiscada .sup{
    font-size: 0.6rem;
  }

  .simulatorTaxesRiscada .monthly{
    font-size: 0.6rem;
  }
}

@media screen and (min-width: 1135px) {
  .simulatorTaxes{
    font-size: 1.3rem;
  }

  .simulatorTaxes .sup{
    font-size: 0.6rem;
  }

  .simulatorTaxes .monthly{
    font-size: 0.6rem;
  }

  .simulatorTaxesRiscada{
    font-size: 1.1rem;
  }

  .simulatorTaxesRiscada .sup{
    font-size: 0.5rem;
  }

  .simulatorTaxesRiscada .monthly{
    font-size: 0.5rem;
  }
}

@media screen and (min-width: 1243px) {
  .simulatorTaxes{
    font-size: 1.75rem;
  }

  .simulatorTaxes .sup{
    font-size: 0.9rem;
  }

  .simulatorTaxes .monthly{
    font-size: 0.9rem;
  }

  .simulatorTaxesRiscada{
    font-size: 1.5rem;
  }

  .simulatorTaxesRiscada .sup{
    font-size: 0.8rem;
  }

  .simulatorTaxesRiscada .monthly{
    font-size: 0.8rem;
  }
}

/* The Modal (background) */

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding-left:48px;
  padding-right:48px;
  margin-top:0px;
  border: 1px solid #888;
  width: 600px;
}

@media screen and (max-width:648px){
  .modal-content {
    width: 100%;
  }
}

/* The Close Button */

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/*! CSS Used from:  */

.modal-content *,::after,::before{
  -webkit-box-sizing:inherit;
  box-sizing:inherit;
}

.modal-content div,h2,p{
  margin:0;
  padding:0;
}

.modal-content p{
  margin-bottom:1rem;
  font-size:inherit;
  line-height:1.6;
  text-rendering:optimizeLegibility;
}

.modal-content h2{
  text-rendering:optimizeLegibility;
}

.modal-content h2{
  font-size:1.25rem;
  line-height:1.4;
  margin-top:0;
  margin-bottom:.5rem;
}

@media print,screen and (min-width:40em){
  .modal-content h2{
    font-size:2.5rem;
  }
}

@media print{
  .modal-content *{
    background:0 0!important;
    color:#000!important;
    -webkit-print-color-adjust:economy;
    color-adjust:economy;
    -webkit-box-shadow:none!important;
    box-shadow:none!important;
    text-shadow:none!important;
  }

  .modal-content h2,p{
    orphans:3;
    widows:3;
  }

  .modal-content h2{
    page-break-after:avoid;
  }
}

.modal-content h2{
  font-size:24px;
  margin-top:30px;
  margin-bottom:20px;
}

@media screen and (max-width:648px){
  .modal-content h2{
    font-size:16px;
  }
}

.montanteSliderContainer, .prazoSliderContainer{
  font-size:14px;
}

@media screen and (min-width:1090px){
  .montanteSliderContainer, .prazoSliderContainer {
    font-size:16px;
  }
}

.bannerLogo{
  height:20px;
}

@media screen and (min-width:768px){
  .bannerLogo {
    height:auto;
  }
}

/*mobile simulator panel*/

@media screen and (max-width: 768px) {
  #new-mobile-cta {
    /*display: block;*/
    width: 100%;
    height: auto;
    border-top: 1px solid #bcbcbc;
    background-color: white;
    position: fixed;
    bottom: 0;
    right: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 9999;
  }
}

.strikethrough {
  position: relative;
}

.strikethrough:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 3px solid;
  border-color: #EC0000;
  color:#EC0000;
  -webkit-transform:rotate(-30deg);
  -ms-transform:rotate(-30deg);
  transform:rotate(-30deg);
}

#tanRiscada{
  display:none;
  /*display:inline;*/
}

#tanRiscada + .monthly{
  display:none;
  /*display:inline;*/
}

.noCampaign{
  /*display:none;*/
  display:block;
}

.mobileOnly{
  display:block;
}

@media screen and (max-width:767px){
  .mobileOnly{
    display:block;
  }
}

@media screen and (min-width:768px){
  .mobileOnly{
    display:none;
  }
}

.cartaoDaInfo{
  /* margin-top:50px;*/
  /*display:flex;*/
  display:none;
}

.saberMaisCartaoDa{
  cursor: pointer;
}

#estudar{
  cursor: pointer;
}

#energias{
  cursor: pointer;
}

#creditoAuto{
  cursor: pointer;
}

.faqVoucher, .faqVoucherElement{
  display:none;
}

#naoSouCliente{
  margin-bottom: 20px;
  text-decoration: underline;
}

.overlay {
  content:'\A';
  position:relative;
  width:100%;
  height:100%;
  top:0; left:0;
  background:rgba(30,30,30,0.6);
  opacity:1;
}

.wrapperSiblingSizing{
  display: inline-block;
}

.dynamicSibling{
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
}

#step-two{
  width:auto;
}

@media screen and (min-width: 768px){
  #step-two{
    width:auto;
  }
}

form input[type=text], form select{
  outline:none;
}

form input[type=text]:focus, form select:focus{
  border:1px solid #01b6be;
}

.inputAnimation{
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

.inputAnimation:focus{
  width:100%;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

.formNonDigital input[type="checkbox"]{
  display:none;
  position: absolute;
  opacity: 0;
}

.formNonDigital input[type="checkbox"] + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.formNonDigital input[type="checkbox"] + label:before {
  content: '';
  /* margin-top: 4px; */
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 24px;
  height: 24px;
  border: 1px solid #A2A2A2;
  border-radius: 4px;
}

.formNonDigital input[type="checkbox"]:checked + label:before {
  /* background: #f35429; */
  border: 2px solid #1BB3BC;
}

.formNonDigital input[type="checkbox"]:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.formNonDigital input[type="checkbox"]:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}

.formNonDigital input[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  left: 8px;
  top: 11px;
  background: #1BB3BC;
  /* width: 2px;
  height: 2px; */
  width: 1px;
  height: 1px;
  /* box-shadow: 2px 0 0 #1BB3BC, 4px 0 0 #1BB3BC, 4px -2px 0 #1BB3BC, 4px -4px 0 #1BB3BC, 4px -6px 0 #1BB3BC, 4px -8px 0 #1BB3BC; */
  /* box-shadow: 1px 0 0 #1BB3BC,1px 0 0 #1BB3BC,1px 0 0 #1BB3BC,1px 0 0 #1BB3BC,1px 0 0 #1BB3BC, 1px 0 0 #1BB3BC, 1px 0 0 #1BB3BC, 1px 0 0 #1BB3BC, 1px 0 0 #1BB3BC; */
  -webkit-box-shadow: 1px 0px 0 #1bb3bc, 2px 0px 0 #1bb3bc, 3px 0px 0 #1bb3bc, 4px 0px 0 #1bb3bc, 4px -1px 0 #1bb3bc, 4px -2px 0 #1bb3bc, 4px -3px 0 #1bb3bc, 4px -4px 0 #1bb3bc, 4px -5px 0 #1bb3bc, 4px -6px 0 #1bb3bc, 4px -7px 0 #1bb3bc;
          box-shadow: 1px 0px 0 #1bb3bc, 2px 0px 0 #1bb3bc, 3px 0px 0 #1bb3bc, 4px 0px 0 #1bb3bc, 4px -1px 0 #1bb3bc, 4px -2px 0 #1bb3bc, 4px -3px 0 #1bb3bc, 4px -4px 0 #1bb3bc, 4px -5px 0 #1bb3bc, 4px -6px 0 #1bb3bc, 4px -7px 0 #1bb3bc;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* .dynamicSibling.whiteButtons button{
  box-shadow: 0px 1px 6px rgba(68, 68, 68, 0.2);  
} */

#formNonDigitalContainer .error{
  color:#EC0000;
  padding-left:11px;
  margin-bottom:6px;
}

#formNonDigitalContainer .autorizacao-container .error{
  margin-top:-3px;
}

#formNonDigitalContainer .error{
  font-size:12px;
}

input#montante-previous-credit{
  background-image: url("../img/lapis.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 94% center;
}

input#montante-previous-credit::-webkit-input-placeholder{
  font-family: 'Santander-01', 'SantanderHeadline-Bold';
}

input#montante-previous-credit::-moz-placeholder{
  font-family: 'Santander-01', 'SantanderHeadline-Bold';
}

input#montante-previous-credit:-ms-input-placeholder{
  font-family: 'Santander-01', 'SantanderHeadline-Bold';
}

input#montante-previous-credit::-ms-input-placeholder{
  font-family: 'Santander-01', 'SantanderHeadline-Bold';
}

input#montante-previous-credit::placeholder{
  font-family: 'Santander-01', 'SantanderHeadline-Bold';
}

input#montante-previous-credit:focus{
  background-image: none;
}

.prazoActive{
  color:#FFFFFF;
  background-color:#EC0000;
  font-family: "Santander-11";
}

.prazoInactive{
  color:#000000;
  background-color:#FFFFFF;
  font-family: "Santander-06";
}

/* aside::-webkit-scrollbar {
  display: none;
}
aside{
  overflow-y:auto;
  max-height:100vh;
} */

@media (min-width: 370px) {

  .xxxs\:pr-8 {
    padding-right: 2rem;
  }

  .xxxs\:pl-8 {
    padding-left: 2rem;
  }

  .xxxs\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .xxxs\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 410px) {

  .xxs\:col-start-11 {
    grid-column-start: 11;
  }

  .xxs\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .xxs\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .xxs\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 550px) {

  .xs\:col-start-12 {
    grid-column-start: 12;
  }

  .xs\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .xs\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .xs\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .xs\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 640px) {

  .sm\:col-start-12 {
    grid-column-start: 12;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 768px) {
  .md\:container {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 370px) {
    .md\:container {
      max-width: 370px;
    }
  }

  @media (min-width: 410px) {
    .md\:container {
      max-width: 410px;
    }
  }

  @media (min-width: 550px) {
    .md\:container {
      max-width: 550px;
    }
  }

  @media (min-width: 640px) {
    .md\:container {
      max-width: 640px;
      padding-right: 2rem;
      padding-left: 2rem;
    }
  }

  @media (min-width: 768px) {
    .md\:container {
      max-width: 768px;
    }
  }

  @media (min-width: 1024px) {
    .md\:container {
      max-width: 1024px;
      padding-right: 4rem;
      padding-left: 4rem;
    }
  }

  @media (min-width: 1280px) {
    .md\:container {
      max-width: 1280px;
    }
  }

  @media (min-width: 1536px) {
    .md\:container {
      max-width: 1536px;
    }
  }

  @media (min-width: 1900px) {
    .md\:container {
      max-width: 1900px;
    }
  }

  @media (min-width: 2100px) {
    .md\:container {
      max-width: 2100px;
    }
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:relative {
    position: relative;
  }

  .md\:inset-x-0 {
    left: 0px;
    right: 0px;
  }

  .md\:top-0 {
    top: 0px;
  }

  .md\:top-16 {
    top: 4rem;
  }

  .md\:top-40 {
    top: 10rem;
  }

  .md\:right-0 {
    right: 0px;
  }

  .md\:-z-1 {
    z-index: -1;
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .md\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  .md\:col-start-11 {
    grid-column-start: 11;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .md\:mt-8 {
    margin-top: 2rem;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-4 {
    height: 1rem;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:w-44 {
    width: 11rem;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-2\/5 {
    width: 40%;
  }

  .md\:w-5\/12 {
    width: 41.666667%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .md\:flex-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .md\:items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .md\:justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .md\:justify-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .md\:rounded-lg {
    border-radius: 0.5rem;
  }

  .md\:rounded-tl-md {
    border-top-left-radius: 0.375rem;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:pt-1 {
    padding-top: 0.25rem;
  }

  .md\:pt-3 {
    padding-top: 0.75rem;
  }

  .md\:pt-14 {
    padding-top: 3.5rem;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:pb-3 {
    padding-bottom: 0.75rem;
  }

  .md\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
            box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}

@media (min-width: 1024px) {

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px) {

  .xl\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .xl\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .xl\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .xl\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1536px) {

  .\32xl\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .\32xl\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .\32xl\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
