<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import ;
*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.title {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 20px;
}
.title span {
  display: block;
  text-transform: none;
  font-size: .70em;
}

.contenedor-acordeon {
  width: 500px;
  border-radius: 3px;
}

.acordeon {
  width: 100%;
  overflow: hidden;
}
.acordeon__head {
  /* background: #ecf0f1; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .90em;
  border-top: 1px  solid black;
}
.acordeon__head:hover {
  cursor: pointer;
}
.acordeon__head--logo, .acordeon__head--title, .acordeon__head .icon {
  pointer-events: none;
}
.acordeon__head--logo {
  width: 8%;
}
.acordeon__head--title {
  display: inline-block;
  text-transform: uppercase;
  font-size: .95em;
  font-weight: 600;
}
.acordeon__head .icon {
  font-size: .80em;
}
.acordeon__body {
  height: 0;
  transition: height .4s ease-in-out;
}
.acordeon__body__menu {
  height: 240px;
  list-style: none;
}
.acordeon__body__menu li {
  height: 240px;
  border-bottom: 0.2px solid rgba(0, 0, 0, 0.3);
  padding: .90em;
}
.acordeon__body__menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 1em 0 1em 1.5em;
  font-size: .95em;
  line-height: 1.2em;
  font-weight: 600;
}
.acordeon__body__menu li p{
  margin: 24px 0px;
}
.active {
  height: 56px;
}
</pre></body></html>