/* Filepicker CSS */
.filepicker {
  font-family: sans-serif;
}

div.filepicker {
  text-align: center;
  padding: 5px;
  background-color: #E1E1E1;
  border-radius: 5px;
  min-height: 60px;
  border: 2px dashed #C7C7C7;
}

/* Icon */
.filepicker-file-icon {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 2.5em 0;
  padding-left: 45px;
  color: black;
}

.filepicker-file-icon::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 29px;
  height: 34px;
  content: "";
  border: solid 2px #7F7F7F;
  border-radius: 2px;
}

.filepicker-file-icon::after {
  font-size: 11px;
  line-height: 1.3;
  position: absolute;
  top: 9px;
  left: -4px;
  padding: 0 2px;
  content: "file";
  content: attr(data-filetype);
  text-align: right;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
}

.filepicker-file-icon .fileCorner {
  position: absolute;
  top: -7px;
  left: 22px;
  width: 0;
  height: 0;
  border-width: 11px 0 0 11px;
  border-style: solid;
  border-color: white transparent transparent #920035;
}@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 20px 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}

.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: #fff;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: #fff;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}@charset "UTF-8";
body {
  background-color: black;
  margin: 0px;
  font-family: "Titillium Web", sans-serif;
}

.app-wrapper {
  background-color: black;
}

.container-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container-wrapper .container-upper-side {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.container-wrapper .container-lower-side {
  flex: 1;
  display: flex;
  flex-direction: row;
  background-color: black;
  flex-shrink: 0;
}
.container-wrapper .container-lower-side .container-lower-left-side {
  padding-left: 2.5%;
}
.container-wrapper .container-lower-side .container-lower-right-side {
  width: 100%;
  flex: 1;
}

.footer {
  flex-shrink: 0;
}

.content {
  flex: 1;
}

.azul-galicia {
  color: #019ACE;
}

textarea {
  border: 1px solid gray;
  background-color: transparent;
  font-size: 1rem;
  height: 100px;
  outline: none;
  padding: 10px;
}

.select-element {
  border: 1px solid #ccc;
  font-size: 1.1rem;
  color: #42454a;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  background-color: transparent;
  outline: none;
}

.btn {
  cursor: pointer;
  height: 42px;
  font-size: 1em;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.5s ease-in-out;
  background-color: black;
  color: whitesmoke;
}
.btn:hover {
  background-color: #207b88;
}
.btn:active, .btn:focus {
  outline: none;
}

.one-column {
  display: grid;
  grid-gap: 21px;
  grid-template-columns: 1fr;
  font-size: 1.1rem;
  height: 40px;
}

.two-column {
  display: grid;
  grid-gap: 21px;
  grid-template-columns: 1fr 1fr;
  height: 40px;
  font-size: 1.1rem;
}

.three-column {
  display: grid;
  grid-gap: 21px;
  grid-template-columns: 1.3fr 1.5fr 0.7fr;
  height: 40px;
  font-size: 1.1rem;
}

.side-nav-wrapper {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background-color: black;
  padding-bottom: 10vh;
  height: 60vh;
}
@media (max-width: 610px) {
  .side-nav-wrapper {
    padding: 10px;
  }
}
.side-nav-wrapper .nav-link-wrapper {
  display: flex;
  transition: color 0.5s ease-in-out; /* Transición general */
  font-size: 1.3rem;
  color: #ffffff;
}
@media (max-width: 610px) {
  .side-nav-wrapper .nav-link-wrapper {
    font-size: 1rem;
  }
}
.side-nav-wrapper .nav-link-wrapper a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  text-decoration: none;
}
.side-nav-wrapper .nav-link-wrapper a span,
.side-nav-wrapper .nav-link-wrapper a svg {
  transition: color 0.5s ease-in-out, fill 0.5s ease-in-out; /* Añadir transición para fill */
}
.side-nav-wrapper .nav-link-wrapper a svg {
  fill: #ffffff; /* Asegura que el color inicial del SVG sea blanco */
}
.side-nav-wrapper .nav-link-wrapper a:hover {
  transition: color 0.5s ease-in-out;
  color: #019ACE; /* Cambia el color del texto */
}
.side-nav-wrapper .nav-link-wrapper a:hover span,
.side-nav-wrapper .nav-link-wrapper a:hover svg {
  color: #019ACE;
  fill: #019ACE; /* Cambia también el color de los SVG */
}
.side-nav-wrapper .nav-link-wrapper:hover {
  transition: color 0.5s ease-in-out;
  color: #019ACE;
}
.side-nav-wrapper .upper-side {
  padding-bottom: 5px;
}
.side-nav-wrapper .lower-side {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}
.side-nav-wrapper .portfolio-link,
.side-nav-wrapper .admin {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
@media (max-width: 610px) {
  .side-nav-wrapper .portfolio-link,
  .side-nav-wrapper .admin {
    font-size: 1rem;
  }
}
.side-nav-wrapper .icon-wrapper {
  margin-right: 5px;
}
.side-nav-wrapper .admin {
  align-items: center;
  color: #019ACE;
  cursor: pointer;
}
.side-nav-wrapper .admin a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #019ACE !important;
}
.side-nav-wrapper .admin a span,
.side-nav-wrapper .admin a svg {
  transition: color 0.5s ease-in-out, fill 0.5s ease-in-out;
}
.side-nav-wrapper .admin a svg {
  fill: #019ACE;
}
.side-nav-wrapper .admin a span {
  margin-right: 5px;
}
.side-nav-wrapper .admin:hover {
  transition: color 0.5s ease-in-out;
  color: #019ACE;
}

.nav-link-active {
  font-weight: bold; /* Opcional: Resalta el texto */
  border-left: 4px solid #019ACE; /* Indicador visual en el lado izquierdo */
  background-color: rgba(0, 0, 255, 0.1); /* Fondo opcional */
}

.upper-side-nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 2vh;
  margin-bottom: 2vh;
  flex-wrap: wrap;
}
.upper-side-nav-wrapper .upper-nav-left-side {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* Media query for responsiveness */
  /* Media query for responsiveness */
}
.upper-side-nav-wrapper .upper-nav-left-side .logo-image {
  padding-right: 5%;
}
.upper-side-nav-wrapper .upper-nav-left-side .left-side {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 30px;
  width: 30px;
  margin-right: 10px;
  cursor: pointer;
  transition: border 0.3s ease-in-out; /* Smooth transition for the ring */
}
.upper-side-nav-wrapper .upper-nav-left-side .left-side.active-language {
  border: 2px solid whitesmoke; /* Customize the ring color */
  border-radius: 50%; /* Circular ring */
}
@media (max-width: 600px) {
  .upper-side-nav-wrapper .upper-nav-left-side .left-side {
    height: 25px;
    width: 25px;
  }
}
@media (max-width: 400px) {
  .upper-side-nav-wrapper .upper-nav-left-side .left-side {
    height: 20px;
    width: 20px;
  }
}
.upper-side-nav-wrapper .upper-nav-left-side .logo-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 50px;
  width: 40px;
  margin-right: 10px;
  margin-left: 35px;
}
@media (max-width: 600px) {
  .upper-side-nav-wrapper .upper-nav-left-side .logo-image {
    height: 49.6px;
    width: 39.68px;
  }
}
@media (max-width: 400px) {
  .upper-side-nav-wrapper .upper-nav-left-side .logo-image {
    height: 32.05px;
    width: 25.64px;
  }
}
.upper-side-nav-wrapper .upper-nav-right-side {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* Media query for responsiveness */
}
.upper-side-nav-wrapper .upper-nav-right-side .right-side {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 40px;
  width: 195px;
  margin-right: 1vw;
  cursor: pointer;
}
@media (max-width: 600px) {
  .upper-side-nav-wrapper .upper-nav-right-side .right-side {
    height: 30.77px;
    width: 150px;
  }
}
@media (max-width: 400px) {
  .upper-side-nav-wrapper .upper-nav-right-side .right-side {
    height: 20.51px;
    width: 100px;
  }
}

.contact-page-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: calc(66vh - 50px);
  padding-top: 30px;
}
@media (max-width: 960px) {
  .contact-page-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 960px) {
  .contact-page-wrapper .contact-left-column {
    display: none;
  }
}
.contact-page-wrapper .contact-right-column {
  display: flex;
  align-items: center;
  padding: 80px 100px 80px 100px;
}
@media (max-width: 960px) {
  .contact-page-wrapper .contact-right-column {
    padding: 50px;
  }
}
.contact-page-wrapper .contact-right-column .category-side-title {
  color: #999999;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.contact-page-wrapper .contact-right-column .contact-bullet-points {
  display: grid;
  grid-gap: 21px;
}
.contact-page-wrapper .contact-right-column .contact-bullet-points .bullet-point-group {
  display: flex;
  align-items: center;
}
.contact-page-wrapper .contact-right-column .contact-bullet-points .bullet-point-group .icon {
  font-size: 2em;
  color: #999999;
}
.contact-page-wrapper .contact-right-column .contact-bullet-points .bullet-point-group .text {
  font-size: 1.5em;
  font-weight: 900;
  margin-left: 21px;
  color: #999999;
}
.contact-page-wrapper .contact-right-column .contact-bullet-points .bullet-point-group .text a {
  color: #999999;
}
.contact-page-wrapper .contact-right-column .contact-bullet-points .bullet-point-group .text a:hover {
  color: #019ACE;
}

.no-match-wrapper {
  padding-left: 20px;
}
.no-match-wrapper h2 {
  color: #999999;
}
.no-match-wrapper a {
  color: #999999;
  font-size: 1.1rem;
}

.portfolio-contents-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  background-color: #000000;
  margin-right: 5%;
  padding-top: 30px;
  background-repeat: no-repeat;
  background-position: flex-start;
  min-height: 60vh;
}
.portfolio-contents-wrapper .portfolio-contents-left-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .filter-links {
  display: grid;
  justify-items: flex-start;
  grid-gap: 10px;
  grid-template-columns: repeat(8, 1fr);
  justify-content: flex-start;
  /* Add a ring or border to the active button */
}
.portfolio-contents-wrapper .portfolio-contents-left-side .filter-links .btn {
  width: 100%;
  background-color: #394e56;
  color: #999999;
  aspect-ratio: auto 90/25;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.portfolio-contents-wrapper .portfolio-contents-left-side .filter-links .btn span {
  font-size: small;
  font-weight: 500;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .filter-links .active {
  border-bottom: 1px solid gray;
}
@media (max-width: 2000px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .filter-links {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 1600px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .filter-links {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1350px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .filter-links {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1095px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .filter-links {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 960px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .filter-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 712px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .filter-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 388px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .filter-links {
    grid-template-columns: repeat(1, 1fr);
  }
}
.portfolio-contents-wrapper .portfolio-contents-left-side .user-actions {
  display: flex;
  align-items: center;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .user-actions .MuiButton-label {
  display: flex;
  flex-direction: column;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .user-actions .MuiButton-label .MuiButton-endIcon {
  margin: 0px;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .user-actions .MuiIconButton-root {
  color: #da5726;
  margin-left: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.5s ease-in-out;
  font-size: 1.6rem;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .user-actions .MuiIconButton-root:hover {
  color: #7f2200;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper {
  display: grid;
  justify-items: flex-start;
  height: -moz-fit-content;
  height: fit-content;
  grid-gap: 10px;
  grid-template-columns: repeat(8, 1fr);
  justify-content: flex-start;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper a {
  display: block; /* Ensure the anchor tag behaves like a block element */
  width: 100%; /* Full width of its container */
  height: 100%; /* Full height of its container */
  margin: 0; /* Reset margin */
  padding: 0; /* Reset padding */
}
.portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper p {
  color: white;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper .portfolio-item-wrapper {
  position: relative;
  width: 100%;
  height: auto; /* Ensure it maintains aspect ratio */
}
.portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper .portfolio-item-wrapper .portfolio-img-background {
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 90/75;
}
@media (max-width: 2000px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 1600px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1350px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1095px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 960px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 712px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 388px) {
  .portfolio-contents-wrapper .portfolio-contents-left-side .portfolio-items-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.portfolio-contents-wrapper .portfolio-contents-left-side .links-items-wrapper {
  display: flex;
  color: #999999;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .links-items-wrapper button {
  background-color: transparent;
  color: #999999;
  border: 0;
  font-size: 16px; /* Change the font size as needed */
  text-align: flex-start; /* Align text to the left */
  margin: 10px 0; /* Optional: Add some margin between list items */
}
.portfolio-contents-wrapper .portfolio-contents-left-side .links-items-wrapper a {
  color: #999999;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .links-items-wrapper p {
  color: white;
}
.portfolio-contents-wrapper .portfolio-contents-left-side .links-items-wrapper .portfolio-item-wrapper {
  position: relative;
  width: 100%;
  height: auto; /* Ensure it maintains aspect ratio */
}
.portfolio-contents-wrapper .portfolio-contents-left-side .links-items-wrapper .portfolio-item-wrapper .portfolio-img-background {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 90/75; /* Maintain the aspect ratio */
}
.portfolio-contents-wrapper .portfolio-contents-right-side .category-side-title {
  padding-left: 5%;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .category-side-title h2 {
  color: #999999;
  margin-top: 0;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .category-side-description {
  padding-left: 5%;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .category-side-description p {
  color: #999999;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Arquitecturas p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Arquitecturas h2 {
  color: #999999;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Dibujos p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Dibujos h2 {
  color: #cc9900;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Grabados p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Grabados h2 {
  color: #996633;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Pinturas p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Pinturas h2,
.portfolio-contents-wrapper .portfolio-contents-right-side .Pinturas span {
  color: #ff0000;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Esculturas p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Esculturas h2 {
  color: #669999;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Diseños p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Diseños h2 {
  color: #663399;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Fotografías p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Fotografías h2 {
  color: #6699ff;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Enseñanza p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Enseñanza h2 {
  color: #669933;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Vídeos p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Vídeos h2 {
  color: #c13f00;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Enlaces p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Enlaces h2 {
  color: #999999;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Contacto p,
.portfolio-contents-wrapper .portfolio-contents-right-side .Contacto h2 {
  color: #999999;
}
.portfolio-contents-wrapper .portfolio-contents-right-side .Administrador {
  display: none;
}

.MuiSvgIcon-fontSizeLarge {
  color: white;
  font-size: larger !important;
}

.gestion-portfolio-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
}
.gestion-portfolio-wrapper .left-column {
  background-color: #f6f6f6;
  margin-left: 5%;
}
@media (max-width: 610px) {
  .gestion-portfolio-wrapper .left-column {
    margin-left: 0%;
  }
}
.gestion-portfolio-wrapper .right-column {
  background-color: #42454a;
  margin-right: 10%;
}

.portfolio-form-wrapper {
  display: grid;
  grid-gap: 21px;
  padding: 21px;
}
@media (max-width: 1096px) {
  .portfolio-form-wrapper {
    padding: 18px;
  }
}
@media (max-width: 968px) {
  .portfolio-form-wrapper {
    padding: 15px;
  }
}
@media (max-width: 782px) {
  .portfolio-form-wrapper {
    padding: 14px;
  }
}
@media (max-width: 610px) {
  .portfolio-form-wrapper {
    padding: 10px;
  }
}
.portfolio-form-wrapper input {
  font-family: "Titillium Web", sans-serif;
  color: #42454a;
  padding: 5px 0px;
  width: 100%;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-bottom: 1px solid #26bfd4;
  background-color: transparent;
  transition: 0.5s all ease-in-out;
  font-size: 1.1em;
  margin-bottom: 21px;
}
.portfolio-form-wrapper input:focus {
  outline: none;
  border-bottom: 1px solid #207b88;
}
.portfolio-form-wrapper input {
  margin-bottom: 0px;
}
.portfolio-form-wrapper .image-uploaders {
  display: grid;
  grid-gap: 21px;
  grid-template-columns: 200px 200px 200px;
  justify-content: center;
}
@media (max-width: 1155px) {
  .portfolio-form-wrapper .image-uploaders {
    grid-template-columns: 180px 180px 180px;
  }
}
@media (max-width: 1081px) {
  .portfolio-form-wrapper .image-uploaders {
    grid-template-columns: 150px 150px 150px;
  }
}
@media (max-width: 919px) {
  .portfolio-form-wrapper .image-uploaders {
    grid-template-columns: 160px 160px;
  }
}
@media (max-width: 719px) {
  .portfolio-form-wrapper .image-uploaders {
    grid-template-columns: 140px 140px;
  }
}
@media (max-width: 659px) {
  .portfolio-form-wrapper .image-uploaders {
    grid-template-columns: 150px;
  }
}
.portfolio-form-wrapper .image-uploaders .gestion-portfolio-image-wrapper img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.portfolio-form-wrapper .image-uploaders .gestion-portfolio-image-wrapper .image-removal-link {
  display: flex;
  justify-content: center;
}
.portfolio-form-wrapper .image-uploaders .gestion-portfolio-image-wrapper .image-removal-link a {
  font-weight: 900;
  color: #922a2a;
  cursor: pointer;
}
.portfolio-form-wrapper .form-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio-form-wrapper .form-buttons .logout-button {
  cursor: pointer;
}
.portfolio-form-wrapper .btn {
  margin-right: 10px;
  border-radius: 5px;
}
.portfolio-form-wrapper .add-subcategory-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background-color: mintcream;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
}
.portfolio-form-wrapper .add-subcategory-section button {
  height: 40px;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: 500;
}
.portfolio-form-wrapper .subcategory-list {
  margin-top: 20px;
}
.portfolio-form-wrapper .subcategory-list ul {
  list-style-type: none;
  padding: 0;
}
.portfolio-form-wrapper .subcategory-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.portfolio-form-wrapper .btn-delete {
  cursor: pointer;
  padding: 5px 10px;
  border: none;
  background-color: red;
  color: white;
  border-radius: 4px;
}

.portfolio-sidebar-list-wrapper {
  padding: 5px;
  color: white;
}
.portfolio-sidebar-list-wrapper .dropdown-wrapper {
  margin-bottom: 40px;
}
.portfolio-sidebar-list-wrapper .portfolio-item-thumb {
  padding: 21px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 610px) {
  .portfolio-sidebar-list-wrapper .portfolio-item-thumb {
    padding: 16px;
  }
}
.portfolio-sidebar-list-wrapper .portfolio-item-thumb .portfolio-thumb-img {
  height: 100px;
}
@media (max-width: 610px) {
  .portfolio-sidebar-list-wrapper .portfolio-item-thumb .portfolio-thumb-img {
    height: 90px;
  }
}
.portfolio-sidebar-list-wrapper .portfolio-item-thumb .portfolio-thumb-img img {
  height: 100%;
  width: auto;
}
.portfolio-sidebar-list-wrapper .portfolio-item-thumb .text-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio-sidebar-list-wrapper .portfolio-item-thumb .text-content .title {
  color: #f6f6f6;
  font-size: 1.2em;
  padding-right: 10px;
}
@media (max-width: 610px) {
  .portfolio-sidebar-list-wrapper .portfolio-item-thumb .text-content .title {
    font-size: 1.1em;
    padding-right: 5px;
  }
}
.portfolio-sidebar-list-wrapper .portfolio-item-thumb .text-content .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.portfolio-sidebar-list-wrapper .portfolio-item-thumb .text-content .actions .action-icon {
  cursor: pointer;
  color: #f6f6f6;
  font-size: 1.2em;
  transition: 0.5s ease-in-out;
}
@media (max-width: 610px) {
  .portfolio-sidebar-list-wrapper .portfolio-item-thumb .text-content .actions .action-icon {
    font-size: 1.1em;
  }
}
.portfolio-sidebar-list-wrapper .portfolio-item-thumb .text-content .actions .action-icon:hover {
  color: #922a2a;
}

.portfolio-detail-wrapper .portfolio-detail-description-wrapper {
  text-align: center;
  margin-top: 42px;
  display: flex;
  justify-content: center;
}
.portfolio-detail-wrapper .portfolio-detail-description-wrapper .description {
  width: 700px;
  font-size: 2em;
  margin-bottom: 50px;
}
.portfolio-detail-wrapper .bottom-content-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio-detail-wrapper .bottom-content-wrapper .back-button, .portfolio-detail-wrapper .bottom-content-wrapper .expand-button {
  padding: 15px;
  background-color: #01455C;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: 0.5s ease-in-out;
  font-size: 1em;
  margin-right: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.portfolio-detail-wrapper .bottom-content-wrapper .back-button:hover, .portfolio-detail-wrapper .bottom-content-wrapper .expand-button:hover {
  background-color: white;
  color: #01455C;
}

.admin-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 60vh;
  width: 100%;
}
@media (max-width: 960px) {
  .admin-page-wrapper {
    grid-template-columns: 1fr;
  }
}
.admin-page-wrapper .left-column {
  background-size: cover;
}
@media (max-width: 960px) {
  .admin-page-wrapper .left-column {
    display: none;
  }
}
.admin-page-wrapper .right-column {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}
.admin-page-wrapper .right-column .admin-wrapper {
  width: 60%;
}
.admin-page-wrapper .right-column .admin-wrapper span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999999;
  font-size: 1.5rem;
  padding-bottom: 20px;
}
.admin-page-wrapper .right-column .admin-wrapper .error-autenticacion {
  color: #999999;
  padding-bottom: 20px;
}
@media (max-width: 960px) {
  .admin-page-wrapper .right-column .admin-wrapper {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .admin-page-wrapper .right-column .admin-wrapper {
    width: 80%;
  }
}
.admin-page-wrapper .right-column .admin-form-wrapper {
  display: grid;
  grid-gap: 21px;
  grid-gap: 21px;
}
.admin-page-wrapper .right-column .admin-form-wrapper .form-group {
  display: flex;
  align-items: center; /* Aligns items vertically */
}
.admin-page-wrapper .right-column .admin-form-wrapper .form-group svg {
  font-size: 2em;
  color: #999999;
  margin-right: 15px;
}
.admin-page-wrapper .right-column .admin-form-wrapper .form-group input {
  font-size: 0.85rem;
  border-radius: 5px;
  background-color: white;
  padding: 10px 5px;
  width: 100%;
}
.admin-page-wrapper .right-column .admin-form-wrapper .entrar {
  cursor: pointer;
  height: 42px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.5s ease-in-out;
  background-color: black;
  border: 1px solid #999999;
  border-radius: 5px;
  color: #cfcfcf;
  font-size: 1.3rem;
  margin-top: 20px;
}

.content-loader {
  font-size: 2em;
  color: #26bfd4;
}

.ReactModal__Content,
.ReactModal__Content--after-open {
  height: 80%;
}

.rdw-option-wrapper {
  border: 1px solid #f1f1f1;
  padding: 5px;
  min-width: 25px;
  height: 20px;
  border-radius: 2px;
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}

.rdw-option-wrapper:hover {
  box-shadow: 1px 1px 0px #bfbdbd;
}

.rdw-option-wrapper:active {
  box-shadow: 1px 1px 0px #bfbdbd inset;
}

.rdw-option-active {
  box-shadow: 1px 1px 0px #bfbdbd inset;
}

.rdw-option-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-dropdown-wrapper {
  height: 30px;
  background: white;
  cursor: pointer;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  margin: 0 3px;
  text-transform: capitalize;
  background: white;
}

.rdw-dropdown-wrapper:focus {
  outline: none;
}

.rdw-dropdown-wrapper:hover {
  box-shadow: 1px 1px 0px #bfbdbd;
  background-color: #ffffff;
}

.rdw-dropdown-wrapper:active {
  box-shadow: 1px 1px 0px #bfbdbd inset;
}

.rdw-dropdown-carettoopen {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-top: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.rdw-dropdown-carettoclose {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-bottom: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.rdw-dropdown-selectedtext {
  display: flex;
  position: relative;
  height: 100%;
  align-items: center;
  padding: 0 5px;
}

.rdw-dropdown-optionwrapper {
  z-index: 100;
  position: relative;
  border: 1px solid #f1f1f1;
  width: 98%;
  background: white;
  border-radius: 2px;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: scroll;
}

.rdw-dropdown-optionwrapper:hover {
  box-shadow: 1px 1px 0px #bfbdbd;
  background-color: #ffffff;
}

.rdw-dropdownoption-default {
  min-height: 25px;
  display: flex;
  align-items: center;
  padding: 0 5px;
}

.rdw-dropdownoption-highlighted {
  background: #f1f1f1;
}

.rdw-dropdownoption-active {
  background: #f5f5f5;
}

.rdw-dropdownoption-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-inline-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.rdw-inline-dropdown {
  width: 50px;
}

.rdw-inline-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-block-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.rdw-block-dropdown {
  width: 110px;
}

.rdw-fontsize-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.rdw-fontsize-dropdown {
  min-width: 40px;
}

.rdw-fontsize-option {
  display: flex;
  justify-content: center;
}

.rdw-fontfamily-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.rdw-fontfamily-dropdown {
  width: 115px;
}

.rdw-fontfamily-placeholder {
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rdw-fontfamily-optionwrapper {
  width: 140px;
}

.rdw-list-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.rdw-list-dropdown {
  width: 50px;
  z-index: 90;
}

.rdw-list-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-text-align-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.rdw-text-align-dropdown {
  width: 50px;
  z-index: 90;
}

.rdw-text-align-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-right-aligned-block {
  text-align: right;
}

.rdw-left-aligned-block {
  text-align: left !important;
}

.rdw-center-aligned-block {
  text-align: center !important;
}

.rdw-justify-aligned-block {
  text-align: justify !important;
}

.rdw-right-aligned-block > div {
  display: inline-block;
}

.rdw-left-aligned-block > div {
  display: inline-block;
}

.rdw-center-aligned-block > div {
  display: inline-block;
}

.rdw-justify-aligned-block > div {
  display: inline-block;
}

.rdw-colorpicker-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
}

.rdw-colorpicker-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 175px;
  height: 175px;
  border: 1px solid #f1f1f1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #bfbdbd;
}

.rdw-colorpicker-modal-header {
  display: flex;
  padding-bottom: 5px;
}

.rdw-colorpicker-modal-style-label {
  font-size: 15px;
  width: 50%;
  text-align: center;
  cursor: pointer;
  padding: 0 10px 5px;
}

.rdw-colorpicker-modal-style-label-active {
  border-bottom: 2px solid #0a66b7;
}

.rdw-colorpicker-modal-options {
  margin: 5px auto;
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  overflow: scroll;
}

.rdw-colorpicker-cube {
  width: 22px;
  height: 22px;
  border: 1px solid #f1f1f1;
}

.rdw-colorpicker-option {
  margin: 3px;
  padding: 0;
  min-height: 20px;
  border: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  box-shadow: 1px 2px 1px #bfbdbd inset;
}

.rdw-colorpicker-option:hover {
  box-shadow: 1px 2px 1px #bfbdbd;
}

.rdw-colorpicker-option:active {
  box-shadow: -1px -2px 1px #bfbdbd;
}

.rdw-colorpicker-option-active {
  box-shadow: 0px 0px 2px 2px #bfbdbd;
}

.rdw-link-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
}

.rdw-link-dropdown {
  width: 50px;
}

.rdw-link-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-link-dropdownPlaceholder {
  margin-left: 8px;
}

.rdw-link-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 205px;
  border: 1px solid #f1f1f1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #bfbdbd;
}

.rdw-link-modal-label {
  font-size: 15px;
}

.rdw-link-modal-input {
  margin-top: 5px;
  border-radius: 2px;
  border: 1px solid #f1f1f1;
  height: 25px;
  margin-bottom: 15px;
  padding: 0 5px;
}

.rdw-link-modal-input:focus {
  outline: none;
}

.rdw-link-modal-buttonsection {
  margin: 0 auto;
}

.rdw-link-modal-target-option {
  margin-bottom: 20px;
}

.rdw-link-modal-target-option > span {
  margin-left: 5px;
}

.rdw-link-modal-btn {
  margin-left: 10px;
  width: 75px;
  height: 30px;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}

.rdw-link-modal-btn:hover {
  box-shadow: 1px 1px 0px #bfbdbd;
}

.rdw-link-modal-btn:active {
  box-shadow: 1px 1px 0px #bfbdbd inset;
}

.rdw-link-modal-btn:focus {
  outline: none !important;
}

.rdw-link-modal-btn:disabled {
  background: #ece9e9;
}

.rdw-link-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-history-dropdown {
  width: 50px;
}

.rdw-embedded-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
}

.rdw-embedded-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 180px;
  border: 1px solid #f1f1f1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  justify-content: space-between;
  box-shadow: 3px 3px 5px #bfbdbd;
}

.rdw-embedded-modal-header {
  font-size: 15px;
  display: flex;
}

.rdw-embedded-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rdw-embedded-modal-header-label {
  width: 95px;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
  background: #6eb8d4;
  border-bottom: 2px solid #0a66b7;
}

.rdw-embedded-modal-link-section {
  display: flex;
  flex-direction: column;
}

.rdw-embedded-modal-link-input {
  width: 88%;
  height: 35px;
  margin: 10px 0;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}

.rdw-embedded-modal-link-input-wrapper {
  display: flex;
  align-items: center;
}

.rdw-embedded-modal-link-input:focus {
  outline: none;
}

.rdw-embedded-modal-btn-section {
  display: flex;
  justify-content: center;
}

.rdw-embedded-modal-btn {
  margin: 0 3px;
  width: 75px;
  height: 30px;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}

.rdw-embedded-modal-btn:hover {
  box-shadow: 1px 1px 0px #bfbdbd;
}

.rdw-embedded-modal-btn:active {
  box-shadow: 1px 1px 0px #bfbdbd inset;
}

.rdw-embedded-modal-btn:focus {
  outline: none !important;
}

.rdw-embedded-modal-btn:disabled {
  background: #ece9e9;
}

.rdw-embedded-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}

.rdw-embedded-modal-size-input {
  width: 80%;
  height: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  font-size: 12px;
}

.rdw-embedded-modal-size-input:focus {
  outline: none;
}

.rdw-emoji-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
}

.rdw-emoji-modal {
  overflow: auto;
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-wrap: wrap;
  width: 235px;
  height: 180px;
  border: 1px solid #f1f1f1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #bfbdbd;
}

.rdw-emoji-icon {
  margin: 2.5px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rdw-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.rdw-spinner > div {
  width: 12px;
  height: 12px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.rdw-spinner .rdw-bounce1 {
  animation-delay: -0.32s;
}

.rdw-spinner .rdw-bounce2 {
  animation-delay: -0.16s;
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.rdw-image-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
}

.rdw-image-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  border: 1px solid #f1f1f1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #bfbdbd;
}

.rdw-image-modal-header {
  font-size: 15px;
  margin: 10px 0;
  display: flex;
}

.rdw-image-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rdw-image-modal-header-label {
  width: 80px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
}

.rdw-image-modal-header-label-highlighted {
  background: #6eb8d4;
  border-bottom: 2px solid #0a66b7;
}

.rdw-image-modal-upload-option {
  width: 100%;
  color: gray;
  cursor: pointer;
  display: flex;
  border: none;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  outline: 2px dashed gray;
  outline-offset: -10px;
  margin: 10px 0;
  padding: 9px 0;
}

.rdw-image-modal-upload-option-highlighted {
  outline: 2px dashed #0a66b7;
}

.rdw-image-modal-upload-option-label {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.rdw-image-modal-upload-option-label span {
  padding: 0 20px;
}

.rdw-image-modal-upload-option-image-preview {
  max-width: 100%;
  max-height: 200px;
}

.rdw-image-modal-upload-option-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.rdw-image-modal-url-section {
  display: flex;
  align-items: center;
}

.rdw-image-modal-url-input {
  width: 90%;
  height: 35px;
  margin: 15px 0 12px;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}

.rdw-image-modal-btn-section {
  margin: 10px auto 0;
}

.rdw-image-modal-url-input:focus {
  outline: none;
}

.rdw-image-modal-btn {
  margin: 0 5px;
  width: 75px;
  height: 30px;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}

.rdw-image-modal-btn:hover {
  box-shadow: 1px 1px 0px #bfbdbd;
}

.rdw-image-modal-btn:active {
  box-shadow: 1px 1px 0px #bfbdbd inset;
}

.rdw-image-modal-btn:focus {
  outline: none !important;
}

.rdw-image-modal-btn:disabled {
  background: #ece9e9;
}

.rdw-image-modal-spinner {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.rdw-image-modal-alt-input {
  width: 70%;
  height: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  font-size: 12px;
  margin-left: 5px;
}

.rdw-image-modal-alt-input:focus {
  outline: none;
}

.rdw-image-modal-alt-lbl {
  font-size: 12px;
}

.rdw-image-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}

.rdw-image-modal-size-input {
  width: -moz-fit-content;
  width: fit-content;
  height: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  font-size: 12px;
}

.rdw-image-modal-size-input:focus {
  outline: none;
}

.rdw-image-mandatory-sign {
  color: red;
  margin-left: 3px;
  margin-right: 3px;
}

.rdw-remove-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
}

.rdw-history-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.rdw-history-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-history-dropdown {
  width: 50px;
}

.rdw-link-decorator-wrapper {
  position: relative;
}

.rdw-link-decorator-icon {
  position: absolute;
  left: 40%;
  top: 0;
  cursor: pointer;
  background-color: white;
}

.rdw-mention-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-suggestion-wrapper {
  position: relative;
}

.rdw-suggestion-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid #f1f1f1;
  min-width: 100px;
  max-height: 150px;
  overflow: auto;
  background: white;
  z-index: 100;
}

.rdw-suggestion-option {
  padding: 7px 5px;
  border-bottom: 1px solid #f1f1f1;
}

.rdw-suggestion-option-active {
  background-color: #f1f1f1;
}

.rdw-hashtag-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-image-alignment-options-popup {
  position: absolute;
  background: white;
  display: flex;
  padding: 5px 2px;
  border-radius: 2px;
  border: 1px solid #f1f1f1;
  width: 105px;
  cursor: pointer;
  z-index: 100;
}

.rdw-alignment-option-left {
  justify-content: flex-start;
}

.rdw-image-alignment-option {
  height: 15px;
  width: 15px;
  min-width: 15px;
}

.rdw-image-alignment {
  position: relative;
}

.rdw-image-imagewrapper {
  position: relative;
}

.rdw-image-center {
  display: flex;
  justify-content: center;
}

.rdw-image-left {
  display: flex;
}

.rdw-image-right {
  display: flex;
  justify-content: flex-end;
}

.rdw-image-alignment-options-popup-right {
  right: 0;
}

.rdw-editor-main {
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
}

.rdw-editor-toolbar {
  padding: 6px 5px 0;
  border-radius: 2px;
  border: 1px solid #f1f1f1;
  display: flex;
  justify-content: flex-start;
  background: white;
  flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.public-DraftStyleDefault-block {
  margin: 1em 0;
}

.rdw-editor-wrapper:focus {
  outline: none;
}

.rdw-editor-wrapper {
  box-sizing: content-box;
}

.rdw-editor-main blockquote {
  border-left: 5px solid #f1f1f1;
  padding-left: 5px;
}

.rdw-editor-main pre {
  background: #f1f1f1;
  border-radius: 3px;
  padding: 1px 10px;
} /**
* Draft v0.9.1
*
* Copyright (c) 2013-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
.DraftEditor-editorContainer,
.DraftEditor-root,
.public-DraftEditor-content {
  height: inherit;
  text-align: initial;
}

.public-DraftEditor-content[contenteditable=true] {
  -webkit-user-modify: read-write-plaintext-only;
}

.DraftEditor-root {
  position: relative;
}

.DraftEditor-editorContainer {
  background-color: rgba(255, 255, 255, 0);
  border-left: 0.1px solid transparent;
  position: relative;
  z-index: 1;
}

.public-DraftEditor-block {
  position: relative;
}

.DraftEditor-alignLeft .public-DraftStyleDefault-block {
  text-align: left;
}

.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root {
  left: 0;
  text-align: left;
}

.DraftEditor-alignCenter .public-DraftStyleDefault-block {
  text-align: center;
}

.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.DraftEditor-alignRight .public-DraftStyleDefault-block {
  text-align: right;
}

.DraftEditor-alignRight .public-DraftEditorPlaceholder-root {
  right: 0;
  text-align: right;
}

.public-DraftEditorPlaceholder-root {
  color: #9197a3;
  position: absolute;
  z-index: 0;
}

.public-DraftEditorPlaceholder-hasFocus {
  color: #bdc1c9;
}

.DraftEditorPlaceholder-hidden {
  display: none;
}

.public-DraftStyleDefault-block {
  position: relative;
  white-space: pre-wrap;
}

.public-DraftStyleDefault-ltr {
  direction: ltr;
  text-align: left;
}

.public-DraftStyleDefault-rtl {
  direction: rtl;
  text-align: right;
}

.public-DraftStyleDefault-listLTR {
  direction: ltr;
}

.public-DraftStyleDefault-listRTL {
  direction: rtl;
}

.public-DraftStyleDefault-ol,
.public-DraftStyleDefault-ul {
  margin: 16px 0;
  padding: 0;
}

.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR {
  margin-left: 1.5em;
}

.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL {
  margin-right: 1.5em;
}

.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR {
  margin-left: 3em;
}

.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL {
  margin-right: 3em;
}

.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR {
  margin-left: 4.5em;
}

.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL {
  margin-right: 4.5em;
}

.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR {
  margin-left: 6em;
}

.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL {
  margin-right: 6em;
}

.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR {
  margin-left: 7.5em;
}

.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL {
  margin-right: 7.5em;
}

.public-DraftStyleDefault-unorderedListItem {
  list-style-type: square;
  position: relative;
}

.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0 {
  list-style-type: disc;
}

.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1 {
  list-style-type: circle;
}

.public-DraftStyleDefault-orderedListItem {
  list-style-type: none;
  position: relative;
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before {
  left: -36px;
  position: absolute;
  text-align: right;
  width: 30px;
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before {
  position: absolute;
  right: -36px;
  text-align: left;
  width: 30px;
}

.public-DraftStyleDefault-orderedListItem:before {
  content: counter(ol0) ". ";
  counter-increment: ol0;
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before {
  content: counter(ol1) ". ";
  counter-increment: ol1;
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before {
  content: counter(ol2) ". ";
  counter-increment: ol2;
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before {
  content: counter(ol3) ". ";
  counter-increment: ol3;
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before {
  content: counter(ol4) ". ";
  counter-increment: ol4;
}

.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset {
  counter-reset: ol0;
}

.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset {
  counter-reset: ol1;
}

.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset {
  counter-reset: ol2;
}

.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset {
  counter-reset: ol3;
}

.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset {
  counter-reset: ol4;
}

.DraftEditor-root {
  border: 1px solid #f1f1f1;
  padding: 20px;
  border-radius: 3px;
}

.rdw-image-modal {
  left: -215px;
}

.rdw-emoji-modal {
  left: -169px;
}

.rdw-embedded-modal {
  left: -124px;
}

.products-item-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1em;
  justify-items: center;
  padding: 0 5%;
  margin-bottom: 5px;
}
.products-item-wrapper .MuiCard-root {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  background-color: whitesmoke;
}
.products-item-wrapper .card-cart,
.products-item-wrapper .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 345px;
  min-width: 250px;
}
.products-item-wrapper .MuiCard-root:hover {
  transition: 1s;
}
.products-item-wrapper .MuiCardMedia-root,
.products-item-wrapper .card-image {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-item-wrapper .img-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-grow: 1; /* Allow this section to grow and fill available space */
}
.products-item-wrapper .img-text-wrapper .img-description {
  padding: 10px;
  color: black; /* Adjusted from transparent */
  background-color: #f5f5f5; /* Light grey background for description */
}
.products-item-wrapper .bottom-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px;
  background-color: white;
  border-top: 1px solid #ddd;
}
.products-item-wrapper .bottom-bar .price,
.products-item-wrapper .bottom-bar .shipment-cost {
  color: #019ace;
  font-weight: bold;
  margin-right: 5px;
}
.products-item-wrapper .bottom-bar .bottom-bar-price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
}
.products-item-wrapper .bottom-bar .bottom-bar-price .price,
.products-item-wrapper .bottom-bar .bottom-bar-price .shipment-cost {
  color: #019ace;
  font-weight: bold;
  margin-right: 5px;
}
.products-item-wrapper .bottom-bar .bottom-bar-price .shipment-cost {
  font-size: 0.9rem; /* Slightly smaller than the price */
  color: #6a6a6a; /* Grey color for shipment cost */
}
.products-item-wrapper .bottom-bar .bottom-bar-price .action-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products-item-wrapper .bottom-bar .card-cart {
  display: flex;
  flex-direction: column;
  height: 300px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  border: 1px solid #ddd;
}
.products-item-wrapper .bottom-bar .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  overflow: hidden;
}
.products-item-wrapper .bottom-bar .card-name,
.products-item-wrapper .bottom-bar .card-category {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.products-item-wrapper .bottom-bar .card-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-item-wrapper .bottom-bar .bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-top: 1px solid #ddd;
}
.products-item-wrapper .badge-container {
  margin-left: 90%;
}
.products-item-wrapper .badge-empty {
  background-color: white !important;
}
.products-item-wrapper .card-name {
  color: rgba(0, 0, 0, 0.87);
  font-size: 1rem; /* Ajusta el tamaño del texto según necesites */
  font-weight: bold;
  line-height: 1.2; /* Ajusta la altura de la línea */
  max-height: 3.6rem; /* Limita la altura del título a tres líneas */
  overflow: hidden; /* Oculta el contenido excedente */
  text-overflow: ellipsis; /* Añade puntos suspensivos si el texto es muy largo */
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Propiedad específica de WebKit para limitar a dos líneas */
  -webkit-box-orient: vertical; /* Mantener la orientación del contenido en vertical */
  display: box; /* Fallback genérico */
  line-clamp: 3; /* Propiedad estándar */
  box-orient: vertical; /* Propiedad estándar para compatibilidad */
  white-space: normal; /* Permite que el texto haga salto de línea */
  text-align: center;
  height: 4rem;
}
.products-item-wrapper .card-category {
  color: gray;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1700px) {
  .products-item-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1400px) {
  .products-item-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1000px) {
  .products-item-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 700px) {
  .products-item-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.MuiSvgIcon-root {
  font-size: large;
  padding: 0px !important;
}

.MuiCardHeader-action .MuiTypography-root,
.MuiCardActions-root .MuiTypography-root {
  color: #019ace !important;
}

.MuiCardContent-root {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px !important;
}

.flex-container {
  display: flex;
  padding-left: 5%;
}

.font-size-medium {
  font-size: medium !important;
  padding: 0px !important;
  padding-left: 4px !important;
}

.products-item-wrapper.flex-container {
  display: grid; /* Ensure that the grid display is used */
  padding: 8px;
  padding-top: 12px;
}

.product-item {
  width: 300px; /* Set a fixed width for the card */
  margin: 0 auto; /* Center the card horizontally */
  display: inline-block; /* Align cards next to each other */
  vertical-align: top; /* Align all cards at the top */
}

.product-item-container {
  text-align: center; /* Center all cards within the container */
}

.shipment-card {
  width: 250px; /* Coincide con la clase .product-item */
  margin: 0 auto; /* Centrar la tarjeta horizontalmente */
  display: inline-block; /* Para alinear junto a otras tarjetas */
  vertical-align: top; /* Alinear todas las tarjetas en la parte superior */
}

/* CSS for the toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* EMAIL LINK CONTRAST */
.email-link {
  color: #019ACE; /* Change text color */
  background-color: transparent; /* Remove background */
  text-decoration: underline; /* Optional underline */
}

.cart-page-wrapper {
  align-items: flex-start;
  justify-items: center;
  color: white;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  margin-left: 5%;
  margin-right: 5%;
}
@media (max-width: 845px) {
  .cart-page-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 0%;
  }
}
.cart-page-wrapper .payment-buttons {
  margin-right: 5%;
}
@media (max-width: 845px) {
  .cart-page-wrapper .payment-buttons {
    margin-right: 0%;
  }
}
.cart-page-wrapper .cart-title {
  font-size: 1.6rem;
  padding-bottom: 30px;
  word-spacing: 0.15rem;
}
@media (max-width: 845px) {
  .cart-page-wrapper .cart-title {
    font-size: 1.3rem;
    padding-bottom: 5px;
  }
}
.cart-page-wrapper .lottie-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 35%;
  margin-top: 50px;
}
@media (max-width: 1115px) {
  .cart-page-wrapper .lottie-wrapper {
    margin-left: 15%;
    margin-top: 55px;
  }
}
@media (max-width: 845px) {
  .cart-page-wrapper .lottie-wrapper {
    margin-left: 5%;
    margin-top: 0px;
  }
}
@media (max-width: 600px) {
  .cart-page-wrapper .lottie-wrapper {
    margin-left: 0%;
  }
}
@media (max-width: 550px) {
  .cart-page-wrapper .lottie-wrapper {
    margin-left: 0%;
  }
}
@media (max-width: 845px) {
  .cart-page-wrapper .lottie-wrapper img {
    height: 260px;
    width: 260px;
  }
}
@media (max-width: 600px) {
  .cart-page-wrapper .lottie-wrapper img {
    height: 200px;
    width: 200px;
  }
}
.cart-page-wrapper .lottie {
  grid-column: 1/4;
  grid-row: 3;
  display: flex;
  justify-content: flex-end;
}
.cart-page-wrapper .cart-total {
  grid-column: 3/4;
  grid-row: 3;
  font-size: large;
  color: white;
}
.cart-page-wrapper .cart-total a {
  text-decoration: none;
}
@media (max-width: 845px) {
  .cart-page-wrapper .cart-total {
    margin-right: 10px;
  }
}
.cart-page-wrapper .cart-checkout {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  background-color: #019ACE;
  border-radius: 10px;
  padding: 20px;
  font-size: small;
}
@media (max-width: 845px) {
  .cart-page-wrapper .cart-checkout {
    margin-top: 10px;
  }
}
.cart-page-wrapper .cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cart-page-wrapper .cart-checkout .MuiButton-startIcon {
  margin-right: 8px;
}
.cart-page-wrapper .cart-checkout svg {
  vertical-align: middle;
}

.MuiBadge-colorSecondary {
  background-color: #019ACE !important;
}

/*Texto del Modal*/
.dialogo .color-negro {
  color: black !important;
}

.MuiToolbar-root {
  display: flex;
  justify-content: space-between;
  margin: 0px 20px 0px 20px;
  color: #DA5726;
}
.MuiToolbar-root .MuiSvgIcon-root {
  color: #DA5726;
}

.MuiStep-root h1 {
  font-size: large !important;
}

.MuiPaper-root h1 {
  font-size: large !important;
}

.MuiTypography-root {
  font-family: "Titillium Web", sans-serif !important;
}

.confirmation-message {
  font-size: medium;
}

.product-container-styles .user-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 5%;
}
.product-container-styles .user-actions .cart-nav {
  display: flex;
  margin-left: 5%;
  margin-right: 5%;
  align-items: baseline;
}
.product-container-styles .user-actions .filter-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin-top: 1%;
  margin-bottom: 1.5%;
}
.product-container-styles .user-actions .filter-links .btn {
  border-color: whitesmoke;
  border-radius: 5px;
  margin: 2px 10px;
  padding: 10px;
  background-color: rgba(240, 240, 240, 0.9137254902);
  color: #000;
  transition: background-color 0.3s, color 0.3s;
  width: 150px;
}
.product-container-styles .user-actions .filter-links .btn.active {
  background-color: #019ACE;
  color: #fff;
}
@media (max-width: 1464px) {
  .product-container-styles .user-actions .filter-links .btn {
    width: 130px;
    margin: 2px 8px;
  }
}
@media (max-width: 1320px) {
  .product-container-styles .user-actions .filter-links .btn {
    width: 110px;
    margin: 2px 4px;
  }
}
.product-container-styles .user-actions .subcategory-filter-links {
  justify-content: start;
}
.product-container-styles .user-actions .subcategory-filter-links .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  border-radius: 10px;
  margin: 1px 10px;
  padding: 10px;
  background-color: rgba(245, 245, 245, 0.7764705882);
}
@media (max-width: 1664px) {
  .product-container-styles .user-actions .subcategory-filter-links .btn {
    width: 120px;
    margin: 2px 4px;
  }
}
@media (max-width: 1420px) {
  .product-container-styles .user-actions .subcategory-filter-links .btn {
    width: 115px;
    padding: 8px;
  }
}
@media (max-width: 1269px) {
  .product-container-styles .user-actions .subcategory-filter-links .btn {
    width: 110px;
    margin: 2px 3px;
    padding: 7px;
  }
}
.product-container-styles .user-actions .isSmallScreen {
  display: block;
  margin: 20px 0;
}
.product-container-styles .user-actions .isSmallScreen .filtering-button {
  color: white;
  font-size: 0.8em;
}
.product-container-styles .user-actions .isSmallScreen .selected-filter {
  background-color: #ff5733 !important;
}

@media (min-width: 1091px) {
  .user-actions .isSmallScreen {
    display: none !important;
  }
  .user-actions .filter-links {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
  }
}
@media (max-width: 1090px) {
  .user-actions .filter-links {
    display: none !important;
  }
  .user-actions .categories-title {
    display: none !important;
  }
  .user-actions .isSmallScreen {
    display: block;
    margin: 20px 0;
  }
}
.cart-nav-wrapper {
  display: flex;
  margin-left: 5%;
  margin-right: 5.8%;
  justify-content: flex-end;
}
.cart-nav-wrapper .icon-button {
  transition: transform 0.5s ease-in-out;
}
.cart-nav-wrapper .icon-button:hover svg {
  color: #019ACE;
}

.MuiInputLabel-outlined.MuiInputLabel-shrink {
  transform: translate(14px, -14px) scale(0.75) !important;
}

element.style {
  display: grid !important;
}

.signincard .MuiInputBase-input:invalid,
.signincard .MuiInputBase-input,
.signincard .MuiInputBase-input:focus,
.signincard .MuiOutlinedInput-input, .signupcard .MuiInputBase-input:invalid,
.signupcard .MuiInputBase-input,
.signupcard .MuiInputBase-input:focus,
.signupcard .MuiOutlinedInput-input {
  background-color: white !important;
  color: black !important;
}
.signincard .MuiIconButton-label, .signupcard .MuiIconButton-label {
  color: white !important;
}

.MuiGrid-container {
  display: grid !important;
  align-items: center !important;
}

.MuiInputLabel-outlined.MuiInputLabel-shrink,
.MuiTypography-colorTextSecondary,
.MuiTypography-h5,
.MuiGrid-item a,
.MuiFormControlLabel-label {
  color: white !important;
}

.MuiAvatar-colorDefault,
.MuiButton-root {
  background-color: #019ACE !important;
}

/* Card styles */
.MuiCard-root {
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.MuiCard-root:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.MuiCardContent-root {
  color: #fff;
  display: flex !important;
  flex-direction: column !important;
}

.MuiTypography-h5 {
  color: #fff;
}

.MuiTypography-body2 {
  color: #ccc;
}

.MuiIconButton-root {
  background-color: #019ACE;
  border-radius: 50%;
  padding: 20px;
  transition: background-color 0.3s ease;
}

.MuiIconButton-root:hover {
  background-color: #017BB5;
}

a {
  text-decoration: none;
}

.listado-entradas p {
  color: black !important;
}

.ecommerce-form-wrapper {
  display: grid;
  grid-gap: 21px;
  padding: 21px;
  /* Styling for the checkbox and label */
  /* Optional: Adjust spacing between checkbox and label */
}
@media (max-width: 1096px) {
  .ecommerce-form-wrapper {
    padding: 18px;
  }
}
@media (max-width: 968px) {
  .ecommerce-form-wrapper {
    padding: 15px;
  }
}
@media (max-width: 782px) {
  .ecommerce-form-wrapper {
    padding: 14px;
  }
}
@media (max-width: 610px) {
  .ecommerce-form-wrapper {
    padding: 10px;
  }
}
.ecommerce-form-wrapper input {
  font-family: "Titillium Web", sans-serif;
  color: #42454a;
  padding: 5px 0px;
  width: 100%;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-bottom: 1px solid #26bfd4;
  background-color: transparent;
  transition: 0.5s all ease-in-out;
  font-size: 1.1em;
  margin-bottom: 21px;
}
.ecommerce-form-wrapper input:focus {
  outline: none;
  border-bottom: 1px solid #207b88;
}
.ecommerce-form-wrapper input {
  margin-bottom: 0px;
}
.ecommerce-form-wrapper .image-uploaders {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 1155px) {
  .ecommerce-form-wrapper .image-uploaders {
    flex-direction: column;
  }
}
.ecommerce-form-wrapper .image-uploaders .filepicker {
  min-width: 150px;
  height: 180px;
  margin-bottom: 10px;
}
@media (max-width: 1138px) {
  .ecommerce-form-wrapper .image-uploaders .filepicker {
    min-width: 200px;
    flex-direction: column;
  }
}
.ecommerce-form-wrapper .image-uploaders .gestion-portfolio-image-wrapper img {
  width: 200px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.ecommerce-form-wrapper .image-uploaders .gestion-portfolio-image-wrapper .image-removal-link {
  display: flex;
  justify-content: center;
}
.ecommerce-form-wrapper .image-uploaders .gestion-portfolio-image-wrapper .image-removal-link a {
  font-weight: 900;
  color: #922a2a;
  cursor: pointer;
}
.ecommerce-form-wrapper .form-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ecommerce-form-wrapper .form-buttons .logout-button {
  cursor: pointer;
}
.ecommerce-form-wrapper .btn {
  margin-right: 10px;
}
.ecommerce-form-wrapper .three-column {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px; /* Add some gap between the columns */
  align-items: center; /* Align items vertically */
}
.ecommerce-form-wrapper .checkbox-wrapper {
  display: flex;
  align-items: center; /* Align checkbox and label vertically */
}
.ecommerce-form-wrapper .checkbox-wrapper input[type=checkbox] {
  margin-right: 5px; /* Space between checkbox and label */
}

.centrado {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 530px) {
  .centrado {
    flex-direction: column;
  }
}
.centrado .MuiInputLabel-outlined.MuiInputLabel-shrink,
.centrado .MuiTypography-colorTextSecondary,
.centrado .MuiTypography-h5,
.centrado .MuiGrid-item a,
.centrado .MuiFormControlLabel-label {
  color: black !important;
}
.centrado .MuiIconButton-label {
  background-color: white;
  color: #464646;
}
.centrado .Mui-disabled {
  cursor: not-allowed !important;
}
.centrado .Mui-disabled .MuiIconButton-label {
  color: gray;
}

.boton-footer {
  color: white;
  font-size: small;
  cursor: pointer;
}
.boton-footer:hover {
  color: #019ACE;
}

/* Estilos para el modal */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 700px;
}

.modal-image {
  width: 100%;
  height: auto;
}

.close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.botonEmail {
  height: 20px;
}
.botonEmail a {
  color: white;
}

.zoom-in-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto; /* Allow scrolling if content is too large */
}

.zoom-in-modal-content {
  position: relative;
  background-color: white;
  padding: 20px;
  max-width: 90%;
  max-height: 90%; /* Ensure modal content doesn't exceed 90% of viewport */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: auto; /* If image is larger than the modal, allow scrolling */
}

.zoom-in-modal-image {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* Ensures the full image is visible without distortion */
}

.zoom-in-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.zoom-in-close:hover,
.zoom-in-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Color blanco para el icono y el texto */
}

.spinner span {
  margin-left: 10px;
  font-size: 18px; /* Tamaño del texto */
  color: white; /* Asegurarte de que el texto también sea blanco */
}

.spinner-icon {
  font-size: 24px; /* Tamaño del icono */
  color: white; /* Color blanco para el icono */
}

/* Blog*/
.blog {
  padding-right: 15%;
  padding-left: 15%;
}
.blog .ultima-entrada h1,
.blog .ultima-entrada p {
  color: white;
}
.blog .ultima-entrada h1 {
  margin-top: 0.2rem; /* Reduce el espacio superior del título */
}
.blog .ultima-entrada .fecha-entrada-blog {
  color: #019ACE;
  margin-bottom: 0.2rem; /* Reduce el espacio inferior de la fecha */
}
.blog .lista-entradas .entrada p {
  display: -webkit-box; /* Necesario para habilitar line-clamp en navegadores WebKit */
  -webkit-line-clamp: 2; /* Prefijo WebKit */
  line-clamp: 2; /* Propiedad estándar */
  -webkit-box-orient: vertical; /* Orientación para line-clamp */
  overflow: hidden; /* Esconde el texto que exceda el límite */
  text-overflow: ellipsis; /* Añade los puntos suspensivos (...) */
  white-space: normal; /* Permite líneas múltiples */
}

/* Blog Header */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-header p {
  color: white;
  font-size: 1.4em;
}
.blog-header .nav-list {
  display: flex;
}
.blog-header .nav-list .blog-header-link {
  margin-left: 15px;
  font-size: 1.2em;
}
.blog-header .nav-list .blog-header-link a {
  color: white;
  text-decoration: none;
}
.blog-header .nav-list .blog-header-link a:hover {
  color: #ccc;
}
.blog-header .nav-list .blog-header-link a:active {
  color: #999;
}
.blog-header .nav-list .active a {
  color: #019ACE !important;
}

/* Blog Description */
.blog-description h1 {
  color: white;
  font-size: 2.6em;
  display: flex;
  justify-content: center;
  font-weight: bold;
  margin: 20px 0;
  border-top: 2px solid #b0b0b0;
  border-bottom: 2px solid #b0b0b0;
  padding: 10px 0;
}
@media (max-width: 960px) {
  .blog-description h1 {
    font-size: 2em;
  }
}
@media (max-width: 600px) {
  .blog-description h1 {
    font-size: 1.8em;
  }
}
.blog-description p {
  color: #ccc;
  font-size: 1.25em;
}
.blog-description .blog-image-header {
  width: 100%; /* Asegúrate de que el contenedor ocupe el ancho completo */
  height: 400px; /* Ajusta esta altura según necesites */
  overflow: hidden; /* Previene desbordamiento */
}
.blog-description .blog-image-header img {
  width: 100%; /* La imagen ocupará el ancho completo del contenedor */
  height: auto; /* Mantiene la proporción de la imagen */
  -o-object-fit: cover;
     object-fit: cover; /* Recorta la imagen para que encaje perfectamente en el contenedor */
  display: block; /* Evita espacio blanco en algunos navegadores */
}

/* Blog Última Entrada */
.blog .ultima-entrada h1 {
  margin-top: 0.2rem; /* Reduce el espacio superior del título */
}
.blog .ultima-entrada .fecha-entrada-blog {
  color: #019ACE;
  margin-bottom: 0.2rem; /* Reduce el espacio inferior de la fecha */
}

/* Blog Entradas Anteriores */
.blog .custom-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, #ccc, #515151, #ccc);
  margin: 60px 0 20px 0;
}
.blog h3 {
  color: white !important;
  margin-top: 3rem;
}
.blog .lista-entradas {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas de igual tamaño */
  grid-template-rows: repeat(2, auto); /* 2 filas con altura automática */
  gap: 20px; /* Espaciado entre las entradas (ajústalo según prefieras) */
  width: 100%; /* Asegura que el grid ocupe todo el ancho disponible */
}
@media (max-width: 960px) {
  .blog .lista-entradas {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .blog .lista-entradas {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog .lista-entradas .entrada {
  min-width: 0; /* Evita que el contenido expanda las columnas */
  word-wrap: break-word; /* Asegura que el texto largo se ajuste */
}
.blog .lista-entradas .entrada h2,
.blog .lista-entradas .entrada p {
  color: white !important;
  margin-bottom: 0.2rem;
}
.blog .lista-entradas .entrada .fecha {
  color: #019ACE !important;
}
.blog .lista-entradas .entrada .titulo {
  display: flex;
  justify-content: space-between;
  margin-top: 0.2rem;
  align-items: flex-start; /* Alinea los elementos al inicio del eje vertical */
}
.blog .lista-entradas .entrada .titulo .rotated-arrow {
  transform: rotate(315deg);
  font-size: 0.8em;
  margin-top: 10px; /* Ajusta la posición para alinearse mejor con el texto */
  margin-left: 2px;
}

/* PAGINATION */
.blog .cargar-mas {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
.blog .cargar-mas:hover {
  background-color: #0056b3;
}

.draft-content .DraftEditor-root {
  background-color: transparent;
  border: none;
  color: white;
  padding: 0;
}

.resumen {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Número máximo de líneas a mostrar */
  line-clamp: 2; /* Propiedad estándar */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; /* Asegura que el texto no se trunque en una sola línea */
}

.archivo-seguidores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px;
}

.seguidores {
  justify-self: end; /* Alinea Seguidores a la derecha */
}

/* 📌 RESPONSIVE: En móviles, Seguidores se va debajo */
@media (max-width: 768px) {
  .archivo-seguidores {
    grid-template-columns: 1fr; /* Cambia a una sola columna */
  }
  .seguidores {
    justify-self: start; /* Evita que quede alineado raro en móviles */
  }
}
.entrada-detalle {
  padding: 0% 15%;
  color: white;
}
.entrada-detalle h1 {
  font-size: 2em;
  margin-bottom: 10px;
}
.entrada-detalle .entrada-fecha {
  color: #3ebeff; /* Color destacado para la fecha */
  margin-bottom: 20px;
}
.entrada-detalle .entrada-resumen {
  line-height: 1.6;
  font-size: 1.2em;
}

.cuenta {
  font-family: Arial, sans-serif;
  color: white;
  background-color: black;
  padding-right: 15%;
  padding-left: 15%;
}
.cuenta .titulo {
  display: flex;
  justify-content: space-between;
  margin-top: 0.2rem;
  align-items: flex-start; /* Alinea los elementos al inicio del eje vertical */
}
.cuenta .titulo .rotated-arrow {
  transform: rotate(315deg);
  font-size: 0.8em;
  margin-top: 5px; /* Ajusta la posición para alinearse mejor con el texto */
  margin-left: 2px;
}

.cuenta-header {
  text-align: center;
}

.cuenta-header p {
  margin-bottom: 1rem;
}

.cuenta-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 960px) {
  .cuenta-form {
    flex-direction: column;
  }
}

.cuenta-form input,
.cuenta-form .pass {
  width: 100%;
  max-width: 400px;
  margin: 0.3rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .cuenta-form input,
  .cuenta-form .pass {
    margin: 0.2rem 0;
  }
}

.cuenta-form input {
  padding-left: 15px;
}

.cuenta-form .pass {
  position: relative;
  display: flex;
  align-items: center;
}

.cuenta-form .pass input {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.cuenta-form .pass button {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

.privacy-policy {
  font-size: 0.85rem;
  margin-top: 1rem;
}

.privacy-policy a {
  color: #007bff;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

.latest-posts {
  margin-top: 2rem;
}

.latest-posts h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.post {
  background-color: #222;
  padding: 1rem;
  border-radius: 8px;
}

.post p {
  margin: 0.5rem 0;
}

.post h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.post h3 a {
  color: #019ACE;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  color: black;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.modal-buttons {
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}

.btn-accept {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.btn-accept:hover {
  background-color: #0056b3;
}

.btn-subscribe {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.btn-subscribe:hover {
  background-color: #218838;
}

.logout-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  margin-left: 10px;
  color: #019ACE; /* Color del icono */
  transition: color 0.2s ease-in-out;
}

.logout-button:hover {
  color: red; /* Color cuando pasas el ratón */
}

.boton-gestionar-suscripcion,
.boton-acceso {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: medium;
}

.boton-crearcuenta {
  background-color: rgb(77, 77, 255);
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px; /* Ajusta el tamaño del texto */
  white-space: nowrap; /* Evita que el texto se divida */
  overflow: hidden;
  text-align: center; /* Centra el texto dentro del botón */
  min-width: 150px; /* Asegura un ancho mínimo para el botón */
  transition: background-color 0.2s ease-in-out;
  margin-left: 10px;
  margin-top: 0px;
}
@media (max-width: 960px) {
  .boton-crearcuenta {
    margin-left: 0px;
    margin-top: 10px;
    white-space: normal;
  }
}

.boton-gestionar-suscripcion:hover,
.boton-acceso:hover {
  background-color: #218838;
}

.boton-crearcuenta:hover {
  background-color: blue;
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 10px; /* Espaciado entre botones */
  margin-top: 20px;
}

.boton-acceder {
  background-color: #28a745; /* Verde */
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px; /* Ajusta el tamaño del texto */
  white-space: nowrap; /* Evita que el texto se divida */
  overflow: hidden;
  text-align: center; /* Centra el texto dentro del botón */
  min-width: 150px; /* Asegura un ancho mínimo para el botón */
  transition: background-color 0.2s ease-in-out;
  margin-left: 10px;
  margin-top: 0px;
}
@media (max-width: 960px) {
  .boton-acceder {
    margin-left: 0px;
    white-space: normal;
  }
}

.boton-acceder:hover {
  background-color: #218838;
}

.boton-cancelar {
  background-color: #6c757d; /* Gris */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: medium;
  transition: background-color 0.2s ease-in-out;
}

.boton-cancelar:hover {
  background-color: #5a6268;
}

.boton-darse-baja {
  background-color: #dc3545; /* Rojo */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: medium;
  transition: background-color 0.2s ease-in-out;
}

.boton-darse-baja:hover {
  background-color: #c82333;
}

.button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 960px) {
  .button-container {
    flex-direction: column;
    gap: 10px;
  }
}

/* COMENTARIOS EXISTENTES */
.comentarios-container {
  margin-top: 20px;
}
.comentarios-container h3 {
  color: #019ACE !important;
}

.comentario-card {
  background-color: #b0b0b0;
  border-radius: 10px;
  padding: 4px 15px;
  margin-bottom: 15px;
  word-wrap: break-word; /* Romper palabras largas */
  overflow-wrap: break-word; /* Asegurar ajuste de texto */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.comentario-header p {
  color: black !important;
  margin: 0px;
}

.comentario-fecha {
  color: black;
  font-size: 14px;
}

.comentario-contenido {
  margin-top: 10px;
  font-size: 16px;
  color: black !important;
  word-wrap: break-word; /* Forzar ajuste de palabras */
  overflow-wrap: break-word; /* Compatibilidad adicional */
  max-width: 100%; /* Asegurar que no exceda el contenedor */
  line-height: 1.5;
}
.comentario-contenido p {
  color: black !important;
  padding: 0px;
  margin: 0px;
}
.comentario-contenido .input-edicion {
  width: -webkit-fill-available;
  resize: none;
  background-color: #e5e5e5;
  background-color: #e5e5e5;
  height: auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  overflow-y: auto;
}

.comentario-acciones {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button-actions {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding-bottom: 5px;
}
@media (max-width: 690px) {
  .button-actions {
    flex-direction: column;
  }
}
.button-actions button {
  max-width: 200px;
  height: 40px; /* Define una altura fija */
  margin-left: 10px;
  margin-right: 10px;
}

.btn-responder,
.btn-eliminar {
  padding: 5px 10px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 90%;
}

.btn-responder {
  background: #28a745;
  color: white;
}

.btn-eliminar {
  background: #dc3545;
  color: white;
}

.respuesta {
  padding-left: 10px; /* Espaciado entre el borde y el texto */
  margin-left: 10px; /* Separación de la respuesta del comentario principal */
  border-left: 3px solid #777272; /* Borde en el lado izquierdo */
  background-color: inherit;
  color: black;
}
.respuesta p {
  color: black !important;
}

.acciones-admin {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn-responder {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.btn-eliminar {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.input-respuesta {
  background-color: #e5e5e5;
  height: auto;
  padding: 10px; /* Espaciado interno */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  resize: none; /* Evita que se pueda redimensionar manualmente */
  overflow-y: hidden; /* Muestra scroll solo si es necesario */
}

.input-respuesta:focus {
  outline: none;
  border-color: gray; /* Azul al enfocar */
}

/* ENTRADA DE COMENTARIO */
.comentario-input-container {
  margin-top: 20px;
  background-color: #b0b0b0;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #bdbdbd;
}
.comentario-input-container p {
  margin: 0;
  padding: 0;
  color: black !important;
  margin-bottom: 10px;
}
.comentario-input-container .modal .modal-content h2,
.comentario-input-container .modal p {
  margin-bottom: 10px;
  color: black;
}

.comentario-textarea {
  background-color: #e5e5e5;
  height: auto;
  padding: 10px;
  color: black;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  overflow-y: auto;
  width: -webkit-fill-available;
}

.comentario-textarea:focus {
  outline: none;
  border-color: gray;
}

.comentario-botones {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-publicar {
  background-color: #4caf50;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-publicar:hover {
  background-color: #388e3c;
}

.btn-suscribete, .btn-recibir-notificaciones {
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease-in-out;
}

.btn-suscribete {
  background-color: #3f51b5;
}

.btn-recibir-notificaciones {
  background-color: #2196F3;
}

.btn-suscribete:hover {
  background-color: #303f9f;
}

.btn-recibir-notificaciones:hover {
  background-color: #1E88E5;
}

.info-icon {
  font-size: 16px;
  color: #6c757d;
  cursor: pointer;
}

.info-icon:hover {
  color: #495057;
}

.privacidad-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  color: #6c757d !important;
}
.privacidad-texto .privacidad {
  color: #6c757d !important;
}
.privacidad-texto .boton-footer {
  color: #6c757d !important;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-cerrar-modal {
  background-color: #dc3545;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  min-width: 120px;
}

.btn-cerrar-modal:hover {
  background-color: #c82333;
}

.cuenta-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-cerrar-cuenta {
  background-color: #6c757d;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-cerrar-cuenta:hover {
  background-color: #5a6268;
}

.editado-badge {
  color: #276FBF;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 10px;
}

.btn-editar, .btn-guardar {
  background-color: #909090;
  border: 1px solid transparent;
  color: whitesmoke;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-editar {
  background-color: #909090;
}

.btn-guardar {
  background-color: #019ACE;
}

.btn-editar:hover, .btn-guardar:hover {
  background-color: #019ACE;
  color: white;
  border: 1px solid #019ACE;
  transform: scale(1.05);
}

.btn-editar:active, .btn-guardar:active {
  transform: scale(0.95);
}

.btn-editar svg, .btn-guardar svg {
  width: 16px;
  height: 16px;
}

.btn-publicar,
.btn-suscribete,
.btn-recibir-notificaciones {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px; /* Ajustar el padding */
  font-size: 16px; /* Mantener un tamaño uniforme */
  min-height: 44px; /* Establecer una altura mínima */
  border-radius: 6px; /* Asegurar bordes consistentes */
  text-align: center;
}

.blog-manager-wrapper {
  background-color: whitesmoke;
  padding: 2%;
  margin-right: 5%;
}
.blog-manager-wrapper h5 {
  color: #8a8a8a !important;
}
.blog-manager-wrapper .editor-nueva-entrada .DraftEditor-root {
  padding: 0px;
}
/*# sourceMappingURL=app-3f8a5a1983a7953124f5.map*/