/*! 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)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

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

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

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


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.
*/


pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
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 {
  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 { /* 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.
 */


h1,
h2,
h3,
hr,
p,
pre {
  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
 */

hr {
  border-top-width: 1px;
}

/**
 * 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;
}

h1,
h2,
h3 {
  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 {
  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.
 */

pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 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 {
  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
}

.pointer-events-none {
  pointer-events: none;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

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

.top-4 {
  top: 1rem;
}

.left-1 {
  left: 0.25rem;
}

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

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

.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.block {
  display: block;
}

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

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-auto {
  height: auto;
}

.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);
  }
}

.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-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.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-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.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-4 {
  gap: 1rem;
}

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

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

.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;
}

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

.border {
  border-width: 1px;
}

.border-color-primary-01 {
  --tw-border-opacity: 1;
  border-color: rgba(236, 0, 0, var(--tw-border-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-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));
}

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

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

.p-1 {
  padding: 0.25rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

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

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

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

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

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

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

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

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

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

.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;
}

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

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

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

.text-color-primary-01 {
  --tw-text-opacity: 1;
  color: rgba(236, 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));
}

.hover\:text-color-primary-01:hover {
  --tw-text-opacity: 1;
  color: rgba(236, 0, 0, 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;
}

*, ::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);
}

.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 */

:root {
  --santander-red: #ec0000;
  --default-black: #444;
  --default-white: #fff;
  --form-control-color: blue;
  --section-title-size: 28px;
  --default-margin-inline: 7%;
  --default-margin-inline-mobile: 5%;
  --default-title-size: 28px;
  --default-text-size: 18px;
  --default-bigTitle-size: 35px;
}

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Santander-11", Arial, Helvetica, sans-serif;
  color: var(--default-black);
} */

/* CREDISIMPLES CSS START */

input[type="radio"] {
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
}

h1 {
  font-family: "Santander-02", Arial, Helvetica, sans-serif;
}

h2,
h3 {
  font-family: "Santander-06", Arial, Helvetica, sans-serif;
}

p {
  font-size: 16px;
}

sup {
  font-size: 12px;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -moz-crisp-edges; /* Firefox */
  image-rendering: -webkit-optimize-contrast; /* Webkit */
  image-rendering: crisp-edges; /* Standard */
}

.taeg {
  color: white;
  font-weight: 100;
}

#overlay {
  position: fixed;
  opacity: 0;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 400;
  pointer-events: none;
  margin-left: 0% !important;
}

.section-grey {
  background-color: #f0f0f0;
}

.red-bar-top {
  background-color: var(--santander-red);
  height: 15px;
}

.red-bar-bot {
  background-color: var(--santander-red);
  height: 5px;
}

/* backgroud */

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

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

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

.logo {
  font-weight: bold;
  font-size: 27.5px;
}

section {
  padding-block: 3.5rem;
}

.section-item-text {
  font-size: 18px;
}

.section-one {
  width: 100%;
  padding-top: 5em;
}

.section-two {
  width: 100%;
  background-color: #f0f0f0;
  margin-top:0px;
}

.section-six {
  margin-block: 0em;
  padding-top: 0;
}

.ladder-container {
  height: 3em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.background-white {
  background-color: white;
  width: 100vw;
}

.background-grey {
  background-color: #f0f0f0;
  width: 80vw;
}

/* .section-content {
  margin-inline: var(--default-margin-inline);
} */

.section-title {
  font-size: var(--section-title-size);
  font-weight: bold;
  padding-bottom: 0.3em;
}

.section-item-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  padding-block: 1.1rem;
}

.section-item-container-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  padding-left: 7rem;
}

.section-item-container:last-child {
  padding-bottom: 0;
}

.icon-small {
  width: 2.5rem;
  min-width: 100%;
  max-width: none;
}

.section-item-text {
  line-height: 1.3rem;
}

.section-item-text > h3 {
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 1.1em;
}

.contacto-text-title,
.contacto-text-secondary {
  color: var(--default-white);
}

.contacto-container {
  background-color: #f0f0f0;
  height: auto;
  border-radius: 15px;
  padding: 2.5em;
  background-color: var(--santander-red);
}

.contacto-text-title {
  font-size: 1.1em;
  font-weight: bold;
  padding-bottom: 0.5em;
}

.contacto-text-secondary {
  font-size: 0.9em;
}

.phone-container {
  height: 3.5em;
  width: 18em;
  background-color: white;
  border-radius: 50px;
  margin-block: 1em;
  -webkit-box-shadow: 0px 0px 10px -1px rgba(36, 36, 36, 0.2);
          box-shadow: 0px 0px 10px -1px rgba(36, 36, 36, 0.2);
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
}

.phone-number {
  color: var(--santander-red);
  font-weight: bold;
}

.adesao-container {
  height: 3.5em;
  width: 18em;
  background-color: white;
  border-radius: 50px;
  margin-block: 1em;
  -webkit-box-shadow: 0px 0px 10px -1px rgba(36, 36, 36, 0.2);
          box-shadow: 0px 0px 10px -1px rgba(36, 36, 36, 0.2);
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
}

.adesao-container2 {
  height: 3.5em;
  width: 11em;
  background-color: white;
  border-radius: 50px;
  margin-block: 1em;
  -webkit-box-shadow: 0px 0px 10px -1px rgba(36, 36, 36, 0.2);
          box-shadow: 0px 0px 10px -1px rgba(36, 36, 36, 0.2);
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
}

.aderir-number {
  color: var(--santander-red);
  font-weight: bold;
}

.disclaimer-content {
  /* margin-inline: var(--default-margin-inline); */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.disclaimer-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
}

.right-disclaimer {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: justify;
}

.left-disclaimer {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: justify;
}

footer {
  background-color: #222222;
  height: 5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer-container {
  padding-inline: 6em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.5em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  width: 100%;
  max-width: 100em;
}

.footer-container > a,
.footer-container > p {
  color: white;
  font-size: 0.8em;
}

.footer-container > a {
  text-decoration: none;
}

.footer-logo {
  margin-left: auto;
}

article.disclaimer-content.customContainer{
  width:unset !important;
  max-width:unset;
}

section.section-seven{
  margin-top:0px !important;
}

@media only screen and (max-width: 1050px) {
}

/* MOBILE VERSION */

@media only screen and (max-width: 700px) {

  .section-item-container-top {
    padding: 10px;
  }

  section {
    padding-block: 2rem;
  }

  p {
    font-size: 14px;
  }

  /* .hero-container > * {
    margin-left: var(--default-margin-inline-mobile);
  } */

  .section-one {
    padding-top: 3em;
  }

  /* .section-content {
    margin-inline: var(--default-margin-inline-mobile);
  } */

  /*.margin-top {
      margin-top: 7em;
    }*/

  .contacto-container {
    width: auto;
    height: 23em;
    background-color: var(--santander-red);
  }

  .phone-container {
    width: auto;
  }

  .section-six {
    padding-block: 1em;
  }

  .section-seven {
    padding-bottom: 1em;
  }

  .disclaimer-content {
    margin-inline: 5%;
  }

  .disclaimer-container {
    font-size: 12px;
    display: block;
  }

  footer {
    width: 100vw;
    height: 7em;
  }

  .footer-container {
    font-size: 12px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px;
    height: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer-logo {
    display: none;
  }
}

/* CREDISIMPLES CSS END */

/* 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));
}

/* 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 */

/* :checked - resize to full height */

/* Label formatting when open */

/* Icon */

/* Icon formatting - closed */

/* Icon formatting - open */

/* 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 */

/* 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 {
  padding-right: 1rem;
  padding-left: 1rem;
}

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

@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: 8rem;
    padding-left: 8rem;
  }
}

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

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

.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 Content */

/* The Close Button */

/*! CSS Used from:  */

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

h2,p{
  margin:0;
  padding:0;
}

@media print{

  p{
    orphans:3;
    widows:3;
  }
}

.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*/

.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;
}

/* .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;
}

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

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

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

.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: 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-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-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\: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-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\:flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

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

  .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\:justify-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

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

  .md\:pt-3 {
    padding-top: 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\: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\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1280px) {

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

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