.header {
  background-color: #3B43F2;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 853px) {
  .header {
    height: 80vh;
  }
}
@media (max-width: 480px) {
  .header {
    height: 100vh;
  }
}

.barra_superior {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.barra_superior a {
  color: #ffffff;
  text-decoration: none;
  font-size: 2rem;
  margin: 0 3rem;
}

#portafolio {
  background-color: #ffffff;
  color: black;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  border: 0.2rem #ffffff solid;
  transition: 300ms;
}
#portafolio:hover {
  background-color: transparent;
  color: #ffffff;
}

.logo:hover {
  cursor: pointer;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));
}
@media (max-width: 480px) {
  .logo {
    width: 70vw;
  }
}

#hamburguesa {
  display: none;
}

.contenedor-navegacion ul {
  display: flex;
}
.contenedor-navegacion li {
  list-style: none;
}
.contenedor-navegacion li:not(:last-child) {
  position: relative;
}
.contenedor-navegacion li:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 0%;
  left: 50%;
  bottom: -1rem;
  transform: translate(-50%, -50%);
  transition: 300ms;
}
.contenedor-navegacion li:not(:last-child):hover::after {
  width: 70%;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 480px) {
  .contenedor-navegacion {
    display: none;
  }
}
@media (max-width: 853px) {
  .contenedor-navegacion {
    display: none;
  }
}

.activador_hamburguesa {
  display: none;
  width: 4rem;
  height: 0.5rem;
  background-color: rgb(119, 128, 0);
  position: relative;
  transition: 300ms;
}
.activador_hamburguesa:hover {
  cursor: pointer;
}
@media (max-width: 480px) {
  .activador_hamburguesa {
    background-color: black;
    display: inline-block;
  }
  .activador_hamburguesa::after {
    content: "";
    position: absolute;
    width: 4rem;
    height: 0.5rem;
    top: 1rem;
    background-color: black;
    transition: 300ms;
  }
  .activador_hamburguesa::before {
    content: "";
    position: absolute;
    width: 4rem;
    height: 0.5rem;
    top: -1rem;
    background-color: black;
    transition: 300ms;
  }
}
@media (max-width: 853px) {
  .activador_hamburguesa {
    background-color: black;
    display: inline-block;
  }
  .activador_hamburguesa::after {
    content: "";
    position: absolute;
    width: 4rem;
    height: 0.5rem;
    top: 1rem;
    background-color: black;
    transition: 300ms;
  }
  .activador_hamburguesa::before {
    content: "";
    position: absolute;
    width: 4rem;
    height: 0.5rem;
    top: -1rem;
    background-color: black;
    transition: 300ms;
  }
}

#hamburguesa:checked ~ .activador_hamburguesa::after {
  transform: rotate(45deg);
  top: 0rem;
}

#hamburguesa:checked ~ .activador_hamburguesa::before {
  transform: rotate(-45deg);
  top: 0rem;
}

#hamburguesa:checked ~ .activador_hamburguesa {
  background-color: transparent;
}

#hamburguesa:checked ~ .contenedor-navegacion {
  display: flex;
  position: fixed;
  top: 7.6rem;
  background-color: black;
  z-index: 2;
  left: 0rem;
  animation: 200ms movedor linear;
}

@media (max-width: 480px) {
  .contenedor-navegacion ul {
    display: flex;
    padding: 10rem;
    flex-direction: column;
    height: 100vh;
    min-width: 80vw;
    align-items: center;
    justify-content: center;
    gap: 5rem;
  }
}

@keyframes movedor {
  from {
    left: -12rem;
  }
  to {
    left: 0rem;
  }
}
@keyframes regresador {
  from {
    left: orem;
  }
  to {
    left: -12rem;
    display: none;
  }
}
.intro {
  display: flex;
  margin: 2rem;
}
@media (max-width: 480px) {
  .intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
}

@keyframes typing {
  from {
    width: 0ch;
  }
  to {
    width: 14ch;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
.contenedor_palabras {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 3rem;
  margin: 15% 0 0% 0;
}
.contenedor_palabras span {
  color: #ffffff;
  font-size: 3rem;
}
@media (max-width: 853px) {
  .contenedor_palabras {
    position: relative;
    padding-top: 15vh;
  }
}
@media (max-width: 480px) {
  .contenedor_palabras {
    transform: scale(0.95);
  }
}

.texto_entrada {
  font-size: 5rem;
  color: #ffffff;
  width: 1ch;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Courier New", Courier, monospace;
  animation: typing 3s steps(19) infinite alternate, blink 0.5s, infinite alternate;
  border-right: 4px solid;
}
@media (max-width: 853px) {
  .texto_entrada {
    position: absolute;
    top: 0;
  }
}

.intro_contenedor1 {
  min-width: 50vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 480px) {
  .intro_contenedor1 {
    height: 50vh;
    justify-content: start;
    align-items: center;
  }
}
.intro_contenedor1 .intro_boton:active {
  transform: scale(1.1);
}
.intro_contenedor1 .intro_boton {
  width: 25rem;
  height: 6rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  font-size: 3rem;
  color: black;
  position: relative;
  overflow: hidden;
  transition: 100ms;
  cursor: pointer;
}
.intro_contenedor1 .intro_boton a {
  all: unset;
  z-index: 1;
}
.intro_contenedor1 .intro_boton::after {
  position: absolute;
  content: "";
  height: 350%;
  width: 0rem;
  transform: rotate(40deg);
  transition: 700ms;
  background-color: #ffff00;
}
.intro_contenedor1 .intro_boton:hover::after {
  border: 1px solid black;
  width: 120%;
}

.intro_contenedor2 {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 50vw;
  height: 100vhw;
}
@media (max-width: 480px) {
  .intro_contenedor2 {
    width: 100vw;
    height: 50vh;
    align-items: center;
  }
}
.intro_contenedor2 img {
  width: 90%;
  height: auto;
  z-index: 1;
  position: absolute;
}
@media (max-width: 853px) {
  .intro_contenedor2 img {
    transform: scale(1.1);
    margin-bottom: 15rem;
  }
}
@media (max-width: 480px) {
  .intro_contenedor2 img {
    height: auto;
    width: 80vw;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.circulo {
  width: 60vw;
  height: 60vh;
  position: absolute;
  height: 90rem;
  background-image: linear-gradient(to bottom, #0f8bff, #42f2ff);
  border-radius: 50%;
  right: -10rem;
  top: 20rem;
}
@media (max-width: 853px) {
  .circulo {
    width: 60vw;
    height: 55vh;
    transform: rotate(-12deg);
  }
}
@media (max-width: 480px) {
  .circulo {
    right: 0;
    width: 100vw;
    height: 60vh;
  }
}

.header_portafolio {
  height: 100%;
}

.portafolio {
  background-color: #3B43F2;
  height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portafolio h1 {
  margin: 2rem;
  font-size: 3.5rem;
  color: #ffffff;
  font-family: "Bebas Neue";
  letter-spacing: 0.5rem;
}
.portafolio .contenedor_portafolio {
  background-color: #ffffff;
  width: 65vw;
  height: 50vh;
  border-radius: 4rem 0rem;
  display: flex;
  padding: 3rem;
  justify-content: center;
}
.portafolio .contenedor_portafolio p {
  font-size: 1.5rem;
}

.contenedor_web {
  overflow: hidden;
  padding: 5rem;
}
@media (max-width: 480px) {
  .contenedor_web {
    padding: 0;
  }
}

.cuerpo {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem;
  margin-bottom: 10rem;
}
.cuerpo h2 {
  text-align: center;
}
@media (max-width: 853px) {
  .cuerpo {
    height: auto;
    width: 100%;
  }
}

.contenedor_cuerpo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 2rem;
  height: 100%;
}
@media (max-width: 853px) {
  .contenedor_cuerpo {
    flex-wrap: wrap;
    width: 80vw;
  }
}

.imagen_cuerpo {
  width: 5rem;
  height: 5rem;
}

.habilidad {
  width: 35vh;
  min-height: 23rem;
  border-radius: 5px;
  padding: 1rem;
  box-shadow: 1px 5px 10px rgb(60, 92, 101);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem;
}
.habilidad h3 {
  font-size: 3rem;
  margin: 0;
}

.acerca_de_mi {
  height: auto;
  padding: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 853px) {
  .acerca_de_mi {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.foto_mia {
  width: 50rem;
  height: 40rem;
  border-radius: 10rem;
  mask-image: linear-gradient(blue 80%, transparent);
}

.part2 {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.part2 picture {
  position: relative;
}
.part2 picture::after {
  content: "";
  position: absolute;
  width: 70rem;
  height: 25rem;
  border-radius: 10% 100% 40% 100%;
  background-color: #3B43F2;
  z-index: -1;
  transform: rotate(-20deg);
  bottom: -5rem;
  right: -15rem;
}
@media (max-width: 480px) {
  .part2 {
    transform: scale(0.5);
  }
}

.part1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.part1::after {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  background-color: #3B43F2;
  z-index: -1;
  border-radius: 50%;
  top: 0;
  right: 0;
}
.part1 h2 {
  margin: 0;
}
.part1 p {
  font-family: "Courier New", Courier, monospace;
  font-size: 2rem;
}
@media (max-width: 853px) {
  .part1 p {
    width: 80vw;
  }
}
@media (max-width: 853px) {
  .part1 {
    width: 100%;
    justify-content: center;
  }
}

.textito {
  height: 5rem;
  width: 25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 4rem;
  box-shadow: 1rem 1rem 4rem rgb(206, 200, 200);
}
.textito span {
  font-size: 1.4rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.textito:nth-of-type(1) {
  margin: 0 10% 2rem 0;
}

.textito:nth-of-type(2) {
  margin: 0 0 2rem 20%;
}

.textito:nth-of-type(3) {
  margin: 0 30% 0 0;
}

.imagen_textito {
  height: 3rem;
  width: 3rem;
}

.texto_acercademi span {
  font-weight: bold;
  font-size: larger;
  font-style: italic;
}

.servicios {
  display: flex;
  width: 100vw;
  height: auto;
  justify-content: space-evenly;
  gap: 1rem;
  padding: 3rem 0;
  margin-top: 10rem;
}
@media (max-width: 480px) {
  .servicios {
    margin-top: 10rem;
    flex-direction: column-reverse;
    width: 100vw;
    justify-content: center;
    background-color: #3B43F2;
  }
}

.servicio_imagen {
  width: 4rem;
  height: 4rem;
}

.servicios_part1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  gap: 1rem;
}
.servicios_part1::before {
  content: "";
  position: absolute;
  width: 45vw;
  height: 40vh;
  border-radius: 50%;
  background-color: #3B43F2;
  z-index: -1;
}
@media (max-width: 480px) {
  .servicios_part1 {
    width: 0 auto;
    padding: 3rem;
    flex-wrap: wrap;
  }
}

article {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  padding: 3rem;
  background-color: #ffffff;
  box-shadow: 1rem 1rem 2rem rgba(106, 106, 106, 0.4);
  margin: 4rem 0;
  height: 20rem;
  width: auto;
  justify-content: center;
}
@media (max-width: 480px) {
  article {
    width: 70vw;
  }
}

h3 {
  font-size: 2rem;
}
@media (max-width: 480px) {
  h3 {
    color: #ffffff;
  }
}

h4 {
  font-size: 3rem;
}

.sub_servicios1 {
  margin-bottom: 10rem;
}
@media (max-width: 480px) {
  .sub_servicios1 {
    margin-bottom: 0;
  }
}

.sub_servicios2 {
  margin-top: 10rem;
}
@media (max-width: 480px) {
  .sub_servicios2 {
    margin-top: 0;
  }
}

footer {
  background-color: #4C7B8B;
  min-height: 20vh;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 480px) {
  footer {
    height: auto;
  }
}

.footersito1 {
  display: flex;
  justify-content: center;
  width: 80%;
  border-bottom: 1px solid rgba(201, 201, 201, 0.666);
}
.footersito1 .sub1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footersito1 img {
  flex-basis: 40%;
  height: 10rem;
  width: 45rem;
}
@media (max-width: 480px) {
  .footersito1 img {
    transform: scale(0.7);
  }
}
.footersito1 .sub2 {
  flex-basis: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.footersito1 .sub2 q {
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(100, 100, 100, 0.741);
}
.footersito1 .sub2 p {
  font-family: "Montserrat", serif;
  font-size: 1.9rem;
  color: #ffff00;
  border-bottom: 1px solid #ffff00;
}
.footersito1 .sub3 {
  flex-basis: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footersito1 .sub3 .obten {
  all: unset;
  background-color: transparent;
  font-family: "M PLUS Rounded 1c";
  color: #ffffff;
  font-size: 2rem;
  border: 2px solid #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  transition: 300ms;
}
.footersito1 .sub3 .obten:hover {
  border: 1px solid #ffff00;
  background-color: #ffff00;
  cursor: pointer;
  text-shadow: 2px 2px 3px black;
  font-weight: bold;
}
@media (max-width: 480px) {
  .footersito1 {
    flex-direction: column-reverse;
    padding: 2rem;
  }
}

.footersito3 {
  display: flex;
  min-height: 5vh;
  height: auto;
  align-items: center;
  justify-content: center;
}
.footersito3 p {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
}
@media (max-width: 480px) {
  .footersito3 {
    height: 8rem;
  }
}

.footer_portafolio {
  height: auto;
  padding: 2rem;
}

.bodisito {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .bodisito {
    height: auto;
    overflow: visible;
    overflow-x: hidden;
  }
}

.cuerpito {
  background-image: url(/scss/imagenes/Python_image.jpg.webp);
  width: 100vw;
  margin: 0 auto;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.el_formulario {
  margin: 0 auto;
  border-radius: 3rem;
  border: 2px solid black;
  width: 50vw;
  height: 90%;
  padding: 4rem;
  margin: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(34, 45, 45, 0.2); /* Fondo semi-transparente */
  backdrop-filter: blur(10px); /* Aplica desenfoque al fondo */
}
@media (max-width: 480px) {
  .el_formulario {
    flex-direction: column;
    height: auto;
    width: auto;
  }
}

.sub_elformulario {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.sub_elformulario h2 {
  color: white;
  text-shadow: 1px 1px black;
}
.sub_elformulario img {
  height: 50%;
  width: 100%;
}
@media (max-width: 480px) {
  .sub_elformulario img {
    display: none;
  }
}

.pie_pagina {
  padding-bottom: 7rem;
}
@media (max-width: 480px) {
  .pie_pagina {
    height: auto;
    padding-bottom: 0;
  }
}

.cabecera {
  height: 15rem;
}
@media (max-width: 480px) {
  .cabecera {
    height: 8rem;
  }
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Karla";
  color: white;
  text-shadow: 1px 1px black;
}

.formulario_input {
  padding: 1rem;
  margin-bottom: 1rem;
}

.formulario_boton {
  all: unset;
  margin: 2rem;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid black;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 2rem;
  font-weight: bold;
  transition: 300ms;
  position: relative;
}
.formulario_boton:hover {
  background-color: #ffff00;
}

.botonsito1 {
  filter: grayscale(90%);
}
.botonsito1::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 10px;
  background-color: red;
  z-index: 22;
}

.holasito {
  transform: scale(2);
  background-color: red;
  text-align: center;
}

.vacio {
  border: 2px solid red;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-padding-top: 0rem;
}

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

h1, h2, h3 {
  margin: 0 0 5rem 0;
  font-weight: 900;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 4.6rem;
}

h3 {
  font-size: 6rem;
  text-align: center;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}