@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@keyframes l26 {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes trans {
  0%, 100% {
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-icon-top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 0.5rem;
    transform: rotate(0);
  }
  100% {
    top: 0.5rem;
    transform: rotate(45deg);
  }
}
@keyframes menu-icon-top-2 {
  0% {
    top: 0.5rem;
    transform: rotate(45deg);
  }
  50% {
    top: 0.5rem;
    transform: rotate(0);
  }
  100% {
    top: 0;
    transform: rotate(0);
  }
}
@keyframes menu-icon-bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 0.5rem;
    transform: rotate(0);
  }
  100% {
    bottom: 0.5rem;
    transform: rotate(135deg);
  }
}
@keyframes menu-icon-bottom-2 {
  0% {
    bottom: 0.5rem;
    transform: rotate(135deg);
  }
  50% {
    bottom: 0.5rem;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@keyframes menu-icon-scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes menu-icon-scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
:root {
  --dark-color: #151515;
  --dark-color2: #272727;
  --light-color: #ccc;
  --light-color2: #efefef;
  --light-publicated: #fdfdfd;
  --dark-publicated: #3d3d3d;
  --light-lang: #cdcdcd;
  --dark-lang: #5e5e5e;
  --light-tipo: #3f3e3e;
  --dark-tipo: #b3b3b3;
  --header-bg-color: var(--light-color2);
  --text-color: var(--dark-color);
  --btns-color: var(--dark-color);
  --btns-text-color: var(--light-color);
  --secondary-bg: var(--light-color);
  --bg-book-group: var(--light-publicated);
  --lang-color: var(--light-lang);
  --tipos-color: var(--dark-tipo);
}

.dark-mode {
  --header-bg-color: var(--dark-color);
  --text-color: var(--light-color);
  --btns-color: var(--light-color);
  --btns-text-color: var(--dark-color);
  --secondary-bg: var(--dark-color2);
  --bg-book-group: var(--dark-publicated);
  --lang-color: var(--dark-lang);
  --tipos-color: var(--light-tipo);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--secondary-bg);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  transition: background 250ms 0s;
}

::-moz-selection {
  background-color: #2b2b2b;
  color: #bbb;
}

::selection {
  background-color: #2b2b2b;
  color: #bbb;
}

a {
  text-decoration: none;
}

#cookies-bg {
  background-color: rgba(0, 0, 0, 0.3137254902);
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 98;
  font-size: clamp(1rem, 0.866rem + 0.357vw, 1.188rem);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  display: none;
}
#cookies-bg #cookies {
  display: flex;
  flex-direction: column;
  position: inherit;
  overflow: auto;
  max-height: 70%;
  width: 50%;
  min-width: 350px;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  background-color: #f4f3f3;
  z-index: inherit;
  padding: 20px;
}
#cookies-bg #cookies .btns-div {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
#cookies-bg #cookies .btns-div :nth-child(1) {
  background-color: var(--dark-color);
  color: #dedede;
}
#cookies-bg #cookies .btns-div button {
  border: 1px solid var(--dark-color);
  background-color: none;
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
  cursor: pointer;
}

.loader-div {
  background-color: #efefef;
  position: fixed;
  z-index: 99;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-div .loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  -webkit-mask: conic-gradient(from 15deg, rgba(0, 0, 0, 0), #000);
  mask: conic-gradient(from 15deg, rgba(0, 0, 0, 0), #000);
  animation: l26 1s infinite steps(12);
  position: absolute;
  top: 50%;
  left: 50%;
}
.loader-div .loader, .loader-div .loader::before, .loader-div .loader::after {
  background: radial-gradient(closest-side at 50% 12.5%, #151515 50%, #efefef) 50% 0/20% 80% repeat-y;
}
.loader-div .loader::before, .loader-div .loader::after {
  content: "";
  grid-area: 1/1;
  transform: rotate(30deg);
}
.loader-div .loader::after {
  transform: rotate(60deg);
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1137254902);
  text-align: center;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--header-bg-color);
  transition: background 250ms 0s;
  z-index: 97;
  padding: 0 10px;
}
header > *:not(.menu) {
  padding: 10px 0;
}
header button {
  display: none;
  border: none;
  background: none;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  width: 20px;
  height: 32px;
  padding: 4px;
}
header button span {
  display: block;
  width: 100%;
  height: 0.125rem;
  border-radius: 2px;
  background-color: var(--text-color);
  box-shadow: 0 0.5px 2px 0 hsla(0, 0%, 0%, 0.2);
  transition: all 0.4s;
  position: relative;
}
header button span + span {
  margin-top: 0.375rem;
}
header button span:nth-child(1) {
  animation: ease 0.25s menu-icon-top-2 forwards;
}
header button span:nth-child(2) {
  animation: ease 0.25s menu-icon-scaled-2 forwards;
}
header button span:nth-child(3) {
  animation: ease 0.25s menu-icon-bottom-2 forwards;
}
header button span:nth-child(1).active {
  animation: ease 0.25s menu-icon-top forwards;
}
header button span:nth-child(2).active {
  animation: ease 0.25s menu-icon-scaled forwards;
}
header button span:nth-child(3).active {
  animation: ease 0.25s menu-icon-bottom forwards;
}
header ul {
  display: flex;
  list-style: none;
  max-width: 400px;
}
header ul li {
  line-height: 64px;
}
header ul li a {
  display: inline-block;
  color: inherit;
  font-weight: bold;
  padding: 0 10px;
  height: 100%;
  width: 100%;
  font-size: clamp(0.625rem, 0.357rem + 0.714vw, 1rem);
  position: relative;
  white-space: nowrap;
}
header ul li .submenu {
  height: 0;
  width: -moz-max-content;
  width: max-content;
  display: block;
  overflow: hidden;
  background-color: var(--header-bg-color);
  position: absolute;
  top: 65.33px;
  transition: background 250ms 0s, height 250ms 0s;
}
header ul li .submenu li {
  line-height: 30px;
}
header ul li:hover {
  background-color: rgba(204, 204, 204, 0.2666666667);
}
header h1 {
  font-size: clamp(1.5rem, 0.429rem + 2.857vw, 3rem);
}

header .custom-select,
#tipos {
  position: relative;
  width: 150px;
  color: var(--text-color);
}
header .custom-select img,
#tipos img {
  height: 20px;
}
header .custom-select .select-arrow,
#tipos .select-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
}
header .custom-select .select-selected,
header .custom-select .select-item,
#tipos .select-selected,
#tipos .select-item {
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
header .custom-select .select-selected,
#tipos .select-selected {
  border-radius: 20px;
  background-color: var(--tipos-color);
}
header .custom-select .select-selected img,
#tipos .select-selected img {
  margin-right: 20px;
}
header .custom-select .select-items,
#tipos .select-items {
  position: absolute;
  border: 1px solid #151515;
  border-top: none;
  width: 100%;
  background-color: var(--header-bg-color);
  z-index: 99;
}
header .custom-select .select-items .select-item:hover,
#tipos .select-items .select-item:hover {
  background-color: rgba(117, 114, 114, 0.279);
}
header .custom-select .select-hide,
#tipos .select-hide {
  display: none;
}

#inicio {
  padding: 0 20px;
  padding-bottom: 40px;
  width: 100%;
  min-height: 100vh;
}
#inicio h1 {
  color: var(--light-color2);
}
#inicio .swiper {
  width: 80%;
  margin-top: 50px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fdfdfd;
  border-radius: 20px;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.4);
}
#inicio .swiper-slide {
  display: flex;
  justify-content: center;
  padding: 50px;
}
#inicio .swiper-slide img {
  filter: drop-shadow(3px 3px 10px var(--dark-color));
}
#inicio .swiper-slide p {
  color: white;
  padding-top: 20px;
  text-align: center;
}
#inicio .swiper-button-next, #inicio .swiper-button-prev {
  color: white;
}
#inicio .swiper-pagination-bullet-active {
  background-color: white;
}

#info {
  position: relative;
  min-height: calc(100vh - 64.6667px);
  background-image: url("../img/banner.jpeg");
  background-position: 60%;
  background-size: cover;
  color: white;
  overflow: hidden;
  display: block;
  padding: 20px;
  /* Capa oscura como filtro */
}
#info h1 {
  color: var(--light-color2);
}
#info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  opacity: 0.6;
  /* Puedes ajustar la opacidad */
  z-index: 1;
}
#info * {
  position: relative;
  z-index: 2;
}

body > div h1 {
  color: var(--text-color);
  text-align: center;
  padding-top: 40px;
  font-size: clamp(2rem, 1.286rem + 1.905vw, 3rem);
}

.personal-bg {
  height: calc(100vh - 61.33px);
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 60%;
  filter: grayscale(100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.25rem, 0.357rem + 2.381vw, 2.5rem);
  text-align: center;
}
.personal-bg div {
  position: absolute;
}
.personal-bg div.animate {
  animation: trans 10s infinite;
}
.personal-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

#libros {
  position: relative;
}
#libros #tipos {
  position: absolute;
  right: 20px;
  top: 150px;
  z-index: 5;
}
#libros .book-container {
  display: block;
  margin: 0 auto;
  padding-top: 120px;
  width: 90%;
  position: relative;
  z-index: 4;
}
#libros .book-container .book-group {
  background-color: var(--bg-book-group);
  transition: background 250ms 0s;
  color: var(--text-color);
  display: flex;
  align-items: center;
  padding: 20px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1137254902);
  margin-bottom: 50px;
  min-height: 300px;
  opacity: 0.3;
}
#libros .book-container .book-group > * {
  margin-left: 100px;
}
#libros .book-container .book-group .image-wrapper {
  position: relative;
  width: 170px;
  height: 250px;
  background-color: var(--light-color);
  overflow: hidden;
}
#libros .book-container .book-group .image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ddd;
  animation: pulse 1.5s infinite ease-in-out;
  z-index: 1;
}
#libros .book-container .book-group .image-wrapper img {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 2;
}
#libros .book-container .book-group .image-wrapper.loaded::before {
  display: none;
}
#libros .book-container .book-group .image-wrapper.loaded img {
  opacity: 1;
}
#libros .book-container .book-group .input-group {
  display: flex;
  flex-direction: column;
  max-width: 40%;
}
#libros .book-container .book-group .input-group a {
  margin-top: 30px;
}
#libros .book-container .book-group .input-group a::before {
  content: "\f138";
}
#libros .book-container .book-group .input-group > div:not(:has(#btn-compra)) {
  font-style: oblique;
  font-weight: 600;
  margin-top: 10px;
  transition: transform 500ms ease-out;
}
#libros .book-container .book-group .input-group #btn-compra::before {
  background-color: #ea8007;
  color: #2c2c2c;
  content: "\f68d";
}
#libros .book-container .book-group.publicado {
  opacity: 1 !important;
}
#libros .pag-cont {
  margin: 0 auto;
  width: 350px;
  position: relative;
}
#libros .pag-cont .paginacion {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  gap: 10px;
  text-align: center;
}
#libros .pag-cont .paginacion a:first-child {
  border-radius: 50px 0 0 50px;
}
#libros .pag-cont .paginacion a:last-child {
  border-radius: 0 50px 50px 0;
}
#libros .pag-cont .paginacion .page-num {
  width: 40px;
}
#libros .pag-cont .paginacion .page-num.active {
  background-color: white;
  border: 1px solid var(--dark-color);
  text-decoration: underline;
  color: var(--dark-color);
  font-weight: bolder;
}
#libros .pag-cont .paginacion a {
  color: var(--light-color);
  background-color: #121212;
  padding: 10px;
}
#libros .creatividad {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  margin: 20px 0;
}
#libros .creatividad .cube {
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  transition: all 0.85s cubic-bezier(0.17, 0.67, 0.14, 0.93);
  transform-style: preserve-3d;
  transform-origin: 100% 50%;
  width: 10em;
  height: 4em;
}
#libros .creatividad .cube:hover {
  transform: rotateX(-90deg);
}
#libros .creatividad .cube .side {
  box-sizing: border-box;
  position: absolute;
  display: inline-block;
  height: 4em;
  width: 10em;
  text-align: center;
  padding-top: 1.2em;
  border: 1px solid #222;
  border-radius: 50px;
}
#libros .creatividad .cube .top {
  transform: rotateX(90deg) translate3d(0, 0, 2em);
  background-color: var(--dark-color);
  color: white;
}
#libros .creatividad .cube .front {
  transform: translate3d(0, 0, 2em);
}

header > a,
.book-container a {
  text-align: center;
  color: inherit;
  width: 130px;
  height: 20px;
  display: inline-block;
  line-height: 0;
  border: 1px solid var(--text-color);
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  z-index: 0;
  padding: 20px 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
header > a::before,
.book-container a::before {
  content: "";
  font-family: "bootstrap-icons";
  position: absolute;
  z-index: 1;
  background: #000000;
  color: white;
  height: 40px;
  width: 100%;
  top: 0;
  right: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.7s ease;
}

a:hover::before {
  right: 0;
}

#opinions {
  color: var(--text-color);
  padding-bottom: 100px;
}
#opinions #opCont > div {
  padding: 20px;
}

#contacto {
  position: relative;
  border-top: 1px solid black;
}
#contacto #form-container {
  width: 100%;
  display: flex;
}
#contacto #form-container form {
  flex-grow: 1;
  padding: 20px 10%;
  max-width: 50%;
  border-right: 2px solid var(--dark-color);
  color: var(--text-color);
}
#contacto #form-container form h1 {
  font-size: clamp(1.5rem, 0.607rem + 2.381vw, 2.75rem);
}
#contacto #form-container form input:focus,
#contacto #form-container form textarea:focus {
  border-bottom: 3px solid var(--text-color);
}
#contacto #form-container form input,
#contacto #form-container form textarea,
#contacto #form-container form button {
  display: block;
  color: var(--text-color);
  padding: 10px;
  width: 100%;
  margin-top: 5px;
  margin: 0 auto;
  resize: none;
  outline: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--text-color);
}
#contacto #form-container form textarea {
  overflow: hidden;
  scrollbar-width: 0;
  max-height: 200px;
}
#contacto #form-container form textarea::-webkit-scrollbar {
  width: 0;
}
#contacto #form-container form .error {
  font-size: 9pt;
  color: #cc2626;
  margin-bottom: 20px;
  font-weight: bolder;
}
#contacto #form-container form label .hidden {
  opacity: 0;
}
#contacto #form-container form #enviar {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--text-color);
  transition: all 250ms 0s;
}
#contacto #form-container form #enviar:hover {
  cursor: pointer;
  border-radius: 20px;
  text-transform: uppercase;
  transition: all 250ms 0s;
}
#contacto #form-container #imageDiv {
  flex-grow: 1;
  background-repeat: no-repeat;
  background-size: cover;
}

.enabled {
  opacity: 1;
}
.enabled:hover {
  cursor: pointer;
}

.disabled {
  opacity: 0.5;
}
.disabled:hover {
  cursor: not-allowed;
}

footer {
  padding: 10px;
  color: var(--text-color) !important;
  background-color: var(--header-bg-color);
}

#copy {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
#copy > span span:first-child::after,
#copy > span:last-child::before {
  content: " · ";
}
#copy a i {
  font-size: 15pt;
  margin: 5px;
  color: var(--text-color);
}
#copy a,
#copy a:visited {
  color: white;
}

#enlacesInteres {
  font-size: 0.8rem;
  font-weight: bolder;
  display: flex;
  justify-content: flex-start;
}
#enlacesInteres a {
  margin: 0 10px;
  color: unset;
}
#enlacesInteres a:focus {
  color: var(--text-color);
}
#enlacesInteres a:visited {
  color: var(--text-color);
}

#social h3 {
  margin-left: 10px;
}
#social > div {
  display: flex;
  justify-content: flex-start;
  font-size: 16px;
  gap: 10px;
}
#social > div a {
  color: var(--light-color) !important;
}
#social > div a svg,
#social > div a i {
  background-color: var(--dark-color);
  border-radius: 20px;
  padding: 10px;
  display: inline-block;
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  vertical-align: middle;
}

#btns-fixed {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#btns-fixed #dark,
#btns-fixed #subir {
  font-size: 20pt;
  padding: 5px 10px;
  border-radius: 10px;
  position: relative;
  color: var(--btns-text-color);
  background-color: var(--btns-color);
}
#btns-fixed #dark:hover,
#btns-fixed #subir:hover {
  background-color: #2b2b2b;
  cursor: pointer;
}
#btns-fixed #dark .bi,
#btns-fixed #subir .bi {
  font-weight: bold;
  font-size: 24px;
}
#btns-fixed #btnAbrir {
  position: fixed;
  right: 15px;
  bottom: 75px;
  padding: 10px;
  color: #dfdfdf;
  background-color: #aa3300;
  font-size: 20pt;
  border: none;
  border-radius: 50%;
  z-index: 5;
}
#btns-fixed #btnAbrir:hover {
  cursor: pointer;
}
#btns-fixed .devTools {
  background-color: #aa3300;
  color: #dfdfdf;
  display: none;
  margin-top: 10px;
  position: fixed;
  right: 10px;
  bottom: 140px;
  padding: 50px 10px;
  border-radius: 10px;
  width: 300px;
  gap: 20px;
  z-index: 90;
}
#btns-fixed .devTools i {
  font-size: 30pt;
}
#btns-fixed .devTools span {
  position: relative;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  box-shadow: 0 0 10px 0;
  border-radius: 50%;
}
#btns-fixed .devTools span :hover {
  cursor: pointer;
}
#btns-fixed .devTools span p {
  position: absolute;
  bottom: -20px;
  font-size: 8pt;
}
#btns-fixed #formulario {
  display: none;
  margin-top: 10px;
  position: fixed;
  right: 10px;
  bottom: 140px;
  background-color: #bfbfbf;
  padding: 10px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  z-index: 91;
}
#btns-fixed #formulario * {
  width: 100%;
  outline: none;
  padding: 10px;
}
#btns-fixed #formulario .bi-github {
  font-size: 25pt;
  padding: 0 !important;
}
#btns-fixed #formulario h3 {
  font-size: 25pt;
}
#btns-fixed #formulario textarea {
  resize: none;
  min-height: 150px;
}
#btns-fixed #formulario #btnEnviar:hover {
  cursor: pointer;
}

@media screen and (width <= 900px) {
  header ul {
    display: none;
  }
  header ul li {
    line-height: 40px;
  }
  header > ul.active {
    display: block;
    position: absolute;
    top: 50px;
    left: 10px;
    background-color: var(--header-bg-color);
    width: 150px;
  }
  header > ul.active a {
    font-size: 1rem;
  }
  header > ul.active .submenu {
    transition: height 250ms 0s;
  }
  .menu__icon {
    display: block;
  }
  #contacto {
    background-image: url(../img/pluma.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  #contacto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    opacity: 0.6;
    /* Puedes ajustar la opacidad */
    z-index: 1;
  }
  #contacto * {
    position: relative;
    z-index: 2;
  }
  #contacto #form-container form {
    z-index: 2;
    border-right: none !important;
    width: 100%;
    max-width: unset !important;
    flex-grow: unset;
    color: var(--light-color2);
  }
  #contacto #form-container form h1 {
    color: var(--light-color2);
  }
  #contacto #form-container form input,
  #contacto #form-container form textarea {
    color: inherit;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom-color: var(--light-color2) !important;
  }
  #contacto #form-container form button {
    background-color: var(--light-color2) !important;
    color: var(--dark-color);
  }
  #contacto #form-container form button:hover {
    background-color: #151515 !important;
    transition: all 250ms 0s;
    color: var(--light-color) !important;
  }
}
@media screen and (width <= 775px) {
  #cookies .btns-div {
    position: relative;
    flex-direction: column;
    gap: 5px !important;
  }
}
@media screen and (width <= 700px) {
  .book-group {
    flex-direction: column;
    gap: 20px;
  }
  .book-group > * {
    margin-left: 0 !important;
  }
  .book-group .input-group {
    max-width: 100% !important;
  }
  #copy {
    flex-direction: column;
  }
  #copy > span span:first-child::after,
  #copy > span:last-child::before {
    content: "";
  }
  #copy > * {
    width: 100%;
  }
  #copy > span:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  #copy > span:first-child:first-child, #copy > span:first-child {
    align-items: center;
  }
  #copy > span:last-child {
    display: flex;
    justify-content: right;
  }
}
@media screen and (width <= 625px) {
  #copy {
    text-align: center;
  }
  #copy a {
    margin: 10px 0;
  }
}
@media screen and (width <= 500px) {
  header .custom-select {
    width: 90px;
  }
  header .custom-select .select-arrow {
    right: 5px;
  }
  header .custom-select .select-selected {
    padding: 7px;
    gap: 5px;
  }
  .input-group > div:has(#btn-compra) {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .input-group > div:has(#btn-compra) a {
    width: 100%;
    margin-top: 15px !important;
  }
}
@media screen and (width <= 450px) {
  #libros .pag-cont {
    width: 80%;
  }
  #libros .pag-cont .paginacion a {
    padding: 5px;
  }
  #enlacesInteres {
    justify-content: center;
  }
  #copy > span {
    justify-content: center !important;
    align-items: center !important;
  }
  #copy > span:first-child {
    flex-direction: column;
  }
}/*# sourceMappingURL=styles.css.map */