.right-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    right: 0;
    top: 0;
    width: 560px;
    height: 100%;
    background-color: #fff;
    box-shadow: -3px 0 5px rgba(0,0,0,0.3);
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
}

.right-modal-content {
  position: relative; /* necesario para que el "absolute" de #close-modal funcione respecto a este contenedor */
  padding: 2rem 1rem 1rem 1rem; /* agregá padding arriba para que el contenido no quede debajo de la cruz */
}

#right-modal .modal-content {
  overflow: visible;
}


#petTabs {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

#close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 768px) {
    .right-modal {
        width: 100%;
    }
}