@charset "UTF-8";
/* Aquí definimos las Custom properties */
:root {
  --negro: #000000;
  --blanco: #E769F6;
  --sombra-ppal: hsl(0, 3%, 29%);
  --sombra-sec: #00ff2a;
  --borde-negro: #00000050;
  --marcado: #ff00d9;
  /* Tipografía */
  --tipo-principal: Helvetica, Arial, sans-serif;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption, tbody, tfoot, thead,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
}
img,picture, video, iframe, figure {
  max-width: 400px;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
a {
  display: block;
}
p a {
  display: inline;
}
li {
  list-style-type: none;
}
p, span, a, strong, blockquote, i, b, u, em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
::-moz-selection {
  background-color: var(--negro);
  color: var(--blanco);
}
::selection {
  background-color: var(--negro);
  color: var(--blanco);
}
form, input, textarea, select, button, label {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  background-color: transparent;
  display: block;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}
.contenedor {
  width: 500px;
  /*min-width: 500px; */
  
  max-width: 365px;

  color: var(--negro);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 0.5em;
  background-color: var(--blanco);
}
.contenedor .ul {
  width: 500px;
  min-width: 500px;
  padding: 1em 0.5em 1em 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contenedor .li {  
  font-size: 14px;
  max-width: 83px;
  margin-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: var(--negro);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 0.5em;
  background-color: var(--blanco);
  -webkit-box-shadow: 0.3em 0.3em 0.6em var(--sombra-ppal), inset 0 0 0 transparent;
          box-shadow: 0.3em 0.3em 0.6em var(--sombra-ppal), inset 0 0 0 transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.contenedor .li.activo {
  background-color: #ff00d9;
  color: rgb(0, 0, 0);
}
.contenedor .li:hover:not(.active) {
  background-color: #ff00d9; 
}
.contenedor .subcontenedor { 
  position: relative;
}
.contenedor .bloque {  
  min-width: 365px;
  padding: 2em 1em 2em 1em;
  position: absolute;
  top: 2em;
  color: var(--negro);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 0.5em;
  background-color: var(--blanco);
  -webkit-box-shadow: 0.3em 0.3em 0.6em var(--sombra-ppal),  inset 0 0 0 transparent;
          box-shadow: 0.3em 0.3em 0.6em var(--sombra-ppal),  inset 0 0 0 transparent;
  opacity: 0;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.contenedor .bloque.activo {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
h1, h2, h3, h4, h5, h6 {
  color: black !important;
}
.textarea{
  max-width: 295px;
}
@media screen and (min-width: 520px) {
  .textarea{
    max-width: none;
  }
  .contenedor .bloque {
  width: 500px;
  }
  .contenedor {
    width: 500px;
    min-width: 500px;    
    max-width: none;
  }
  .contenedor .li {  
    padding: 1em;  
    margin: none;
    font-size: 16px;
    max-width: none;
  }
  .contenedor .ul {
    padding: 1em;
  }
}