@import url("https://fonts.googleapis.com/css?family=Ubuntu:300,400&display=swap");

:root {
  /* Define Colors as colors */
  --green: #00ebc7;
  --red: #ff5470;
  --yellow: #fde24f;
  --black: #1b2d45;
  --darkBlue: #00214d;
  --grey: #bfbfbf;
  --lightGrey: #f2f4f6;
  --darkGrey: #595959;
  --darkGreen: #00818a;
  --mainWhite: #ffffff;
  /* Define Colors intentions */
  --primary: var(--darkGreen);
  --danger: var(--red);
  /* --background: var(--lightGrey); */
  --background: var(--mainWhite);
  --textColor: var(--black);
  --lineColor: var(--grey);

  /* Styles */
  --line: solid 1px var(--lineColor);

  /* Type */
  --headingFont: Ubuntu, monospace;
  --bodyFont: "Ubuntu-Light", sans-serif;
  --baseFontSize: 100%;
  --h1: 2.441em;
  --h2: 1.953em;
  --h3: 1.563em;
  --h4: 1.25em;
  --smallText: 0.8em;

  /* Elevation */
  --level-1: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --level-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --level-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --level-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Positioning */
  --containerPadding: 2.5%;
  --headerHeight: 3rem;
}

/* FROM Type Scale */

html {
  font-size: var(--baseFontSize);
  box-sizing: border-box;
}

/*18px*/

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

body {
  font-family: var(--bodyFont);
  font-weight: 400;
  line-height: 1.65;
  background: var(--background);
  color: var(--textColor);
}

header {
  --headerBackground: var(--darkGreen);
  color: white;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--headerHeight);
  background: var(--headerBackground);
  box-shadow: var(--level-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--containerPadding);
  z-index: 100;
}

.topPaddingAdded {
  padding-top: var(--headerHeight);
}

.disabled,
[disabled] {
  opacity: 0.5;
  /*esto hace que la cosa en sí no responda a los events del mouse pointer-events*/
  pointer-events: none;
}

header nav a {
  color: white;
  text-decoration: none;
}

header nav a + a {
  margin-left: 10px;
}

footer {
  --footerTextColor: #ffffff;
  color: var(--footerTextColor);
  background: var(--darkGreen);
  padding: 0rem var(--containerPadding);
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

footer a {
  color: var(--footerTextColor);
}

footer p {
  margin: 0;
  max-width: none;
}

p {
  margin-bottom: 1.15rem;
  max-width: 45em;
  margin-left: auto;
  margin-right: auto;
}

p a,
blockquote a {
  color: var(--black);
  text-decoration: none;
  border-bottom: solid 2px var(--primary);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 2.75rem 0 1.05rem;
  font-family: var(--headingFont);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  margin-top: 0;
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
}

h5 {
  font-size: var(--h5);
}

small,
.text_small {
  font-size: var(--smallText);
}

h1 > small {
  font-size: 28px;
  display: block;
  font-weight: 300;
  color: var(--darkGrey);
  padding: var(--containerPadding) 0;
}

/* End typescale */

.dark {
  --background: var(--black);
  --textColor: var(--lightGrey);
}

blockquote {
  margin: 10px;
  padding: 2em;
  background: white;
  box-shadow: var(--level-3);
}

label {
  display: block;
  font-size: var(--smallText);
}

input,
textarea {
  padding: 4px 5px;
  border: var(--line);
  border-radius: 4px;
}

textarea {
  width: 100%;
  height: 5rem;
}

::placeholder {
  color: var(--grey);
}

select {
  border: var(--line);
}

hr {
  border-top: var(--line);
}

button {
  --buttonColor: var(--primary);

  appearance: none;
  /* color: var(--textColor); */
  color: #ffffff;
  background-color: var(--buttonColor);
  border: none;
  border-radius: 4px;
  padding: 15px 25px;
  box-shadow: var(--level-3);
  transition: 0.3s ease-in-out box-shadow;
  cursor: pointer;
}

button:hover {
  box-shadow: var(--level-4);
}

button:active {
  box-shadow: var(--level-1);
}

button[disabled] {
  opacity: 0.4;
}

/* .cancel can mean anything */
button.cancel {
  --buttonColor: var(--danger);
  --textColor: white;
}

button.small {
  font-size: var(--smallText);
}

.layout {
  /* top padding header height + whatever visual padding we want */
  padding: calc(3rem + var(--headerHeight)) var(--containerPadding);
  max-width: 55em;
  margin: auto;
}

.grid {
  --gridCols: 2;
  display: block;
  grid-template-columns: repeat(var(--gridCols), 1fr);
  font-size: 1.125em;
}

.datepicker-wrapper .grid {
  --gridCols: 1;
}

.cols-3 {
  --gridCols: 3;
}

.flex {
  --justifyContent: space-between;
  display: block;
  justify-content: var(--justifyContent);
}

.flex-around {
  --justifyContent: space-around;
}

@media only screen and (min-width: 500px) {
  :root {
    --baseFontSize: 112.5%;
  }

  .grid {
    display: grid;
  }

  .flex {
    display: flex;
  }
}

.logo {
  font-size: var(--baseFontSize);
  margin: 0;
}

/* Alert */
.alert-container {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 110;
  background: var(--primary);
  width: 23rem;
  padding: 2.5rem 1rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-radius: 8px;
  color: #ffffff;
}

.alert-center {
  position: relative;
}

.alert p {
  margin-bottom: 0;
  line-height: 2;
}

.alert-danger {
  background: var(--danger);
}

.alert-close {
  color: var(--mainWhite);
  font-size: 1.5rem;
  background: transparent;
  border: none;
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 7px;
  cursor: pointer;
  line-height: 0;
}
body > main > blockquote > div.resultado.svelte-1qp9fq > h3:nth-child(5),
body > main > blockquote > div.resultado.svelte-1qp9fq > p:nth-child(6),
body
  > main
  > blockquote
  > div.resultado.svelte-1qp9fq
  > p.button-wrapper.svelte-1qp9fq,
body > main > blockquote > div.resultado.svelte-1qp9fq > p:nth-child(8),
body > main > blockquote > div.resultado.svelte-1qp9fq > h3:nth-child(9),
body > main > blockquote > div.resultado.svelte-1qp9fq > p:nth-child(10),
body
  > main
  > blockquote
  > div.resultado.svelte-1qp9fq
  > div.fechaVencimientoContratoActual-input--wrapper.svelte-1qp9fq {
  display: none !important;
}
