<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal-wrapper {
  display: flex;
  justify-content: center;
}

.modal {
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 0 24px;
  border-radius: 12px;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  clear:both;
}

.cards-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.12) 0 0 24px;
  border-radius: 24px;
  width: 275px;
}

#lista_aplicaciones_edit .card {
    width: 280px;
}

.card.hide {
    display: none;
}

.image-container {
  position: relative;
}

.card .icon {
  position: absolute;
  width: 40px;
  height: 40px!important;
  top: 24px;
  left: 24px;
  border-radius: 0;
}

.background {
  border-radius: 24px 24px 0 0 !important;
  max-width: 100% !important;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.card:hover {
  outline: 2.4px solid #00D17C;
  cursor: pointer;
}

.card.selected {
  outline: 2.4px solid #5F249B;
}

.button {
  background-color: #5F249B;
  color: #FFF;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  border-radius: 80px;
  font-size: 20px;
  transition: all .2s;
  width: 100%;
}

.button:hover {
  filter: brightness(125%);
}

.tabs-container {
  padding: 12px 0;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
}

.tab-pill {
  background-color: #F0F0F0;
  padding: 16px 36px;
  border-radius: 8px;
  transition: all .2s;
}

.tab-pill:hover {
  background-color: #5F249B;
  color: #FFF;
  cursor: pointer;
}

.tab-pill.selected {
  background-color: #5F249B;
  color: #FFF;
}

.tab-pill:hover a,
.tab-pill.selected a {
    color: #FFFFFF !important;
}


.aplicacion_link {
    text-align: right;
    float: left;
    position: relative;
    width: 90%;
}</pre></body></html>