#blackout {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 11;
  display: none;
}

#modal_container {
  position: fixed;
  margin: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background-color: white;
  color: #212121;
  height: auto;
  width: 500px;
  z-index: 12;
  display: none;
  opacity: 0;
  flex-direction: column;
  animation: apareceModal 0.3s ease forwards;
}

#modal_container_media {
  position: fixed;
  margin: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background-color: white;
  color: #212121;
  height: auto;
  width: 900px;
  z-index: 12;
  display: none;
  opacity: 0;
  flex-direction: column;
  animation: apareceModal 0.3s ease forwards;
}

#picModal_container {
  position: fixed;
  margin: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background-color: white;
  height: auto;
  width: 90vw;
  z-index: 12;
  display: none;
  opacity: 0;
  flex-direction: column;
  animation: apareceModal 0.3s ease forwards;
}

@keyframes apareceModal {
  0% {
    opacity: 0;
    top: 45%;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}
.visibleModal {
  display: flex !important;
}

#modal_header {
  padding: 1rem;
  height: 9vh;
  border-radius: 20px 20px 0 0;
  background-color: #006164;
  color: #f5f5f5;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

#modal_body {
  display: flex;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  height: auto;
  font-weight: bold;
  text-align: center;
  line-height: 1.5rem;
}

#modal_body p {
  text-align: center;
  line-height: 1.5rem;
  color: #00363a !important;
}

#modal_body ul li {
  list-style: none;
  text-align: center;
  line-height: 1.5rem !important;
  color: #00363a !important;
}

#modal_buttons {
  display: flex;
  flex-direction: row;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  padding: 2rem 1rem;
}

.button_modal {
  display: flex;
  flex: 1;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.aceptar {
  background-color: #ff3366;
  height: 3rem;
  border-radius: 16px;
  margin: 0 2rem;
  color: #f5f5f5;
  box-shadow: 0px 1px 10px 2px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 1px 10px 2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 1px 10px 2px rgba(0, 0, 0, 0.12);
}

.aceptar:hover {
  background-color: #c5003c;
}

.cancelar {
  background-color: #00363a;
  height: 3rem;
  border-radius: 16px;
  color: #f5f5f5;
  margin: 0 2rem;
  box-shadow: 0px 1px 10px 2px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0px 1px 10px 2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 1px 10px 2px rgba(0, 0, 0, 0.12);
}

.cancelar:hover {
  background-color: #428f92;
}

.popup_medios {
  height: 60vh;
  width: 100%;
  overflow-y: scroll;
}

.images-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.image-item-container {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.image-item {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-media {
  width: 60%;
  margin-right: 10px;
}

.barra-copiado {
  height: 30px;
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.barra-copiado span {
  font-size: 11px;
  margin-right: 5px;
}

.barra-copiado:hover {
  background: #428f92;
  color: white;
}

.pagination-container {
  margin-bottom: 15px;
  text-align: center;
}

#page-selector {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}/*# sourceMappingURL=modal.css.map */