@import url("./base/font-sizes.75cf7bcdcc1c.css");
@import url("./base/colors.da46b20aa8ec.css");

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-almost-black);
    margin: 0;
    background: linear-gradient(rgba(238, 238, 238, .9), rgba(238, 238, 238, .1));
    background-attachment: fixed;
}

.arrow-icon {
    fill: var(--color-link);
}

.icono-descarga {
    fill: var(--color-link-hover);
}

.d-block {
    display: block;
}

.hidden {
    display: none;
}

.w-fit {
    width: fit-content;
}

.w-full {
    width: 100%;
}

.w-2-of-4 {
    width: 50%;
}

.max-w-150 {
    max-width: 150px;
}

/* overflow */

.overflow-visible {
    overflow: visible !important;
}

/* fin de overflow */

.elipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.translate-y-1 {
    transform: translateY(1px);
}

.translate-y-1-5 {
    transform: translateY(1.5px);
}

.like-a-link-color {
    color: var(--color-main-button-background);
    text-decoration: none;
}

.cursor-pointer {
    cursor: pointer;
}

.title-large {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-medium);
    padding: 16px;
    padding-top: 20px;
}

.total-amount {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    color: var(--color-black);
}

.total-amount_title {
    font-size: var(--font-size-l);
    white-space: nowrap;
    margin-right: 16px;
}

.icono-exito {
    border: .125em solid var(--color-succsess);
    border-radius: 50%;
    height: 52px;
    width: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Información adicional */

.info-container {
    position: relative;
    display: inline-block;
}

.info-icon {
    color: #333333;
    border: solid 1px #333333;
    border-radius: 50%;
    cursor: pointer;
    height: 16px;
    min-width: 16px;
    width: 16px;
    font-weight: 600;
}

.info-popup {
    display: none;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #393939;
    color: white;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,.1),0 0 6px 0 rgba(0,0,0,.1);
    z-index: 1;
    width: 200px;
}

.info-popup div {
    width: 90%;
}

.info-popup p {
    margin: 0;
}

.info-popup-close-button {
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    height: 1.1rem;
    left: auto;
    padding: 0;
    position: relative;
    position: absolute;
    right: .625em;
    top: .625em;
    width: 1.1rem;
}

.info-popup-close-button:before {
    content: "";
    font-size: 14px;
    cursor: pointer;
    height: 1rem;
    position: absolute;
    width: .125rem;
    transform: rotate(45deg);
    opacity: 1;
    background-color: #fff;
    left: .43em;
    top: .06em;
}

.info-popup-close-button:after {
    content: "";
    font-size: 14px;
    cursor: pointer;
    height: 1rem;
    position: absolute;
    width: .125rem;
    transform: rotate(-45deg);
    opacity: 1;
    background-color: #fff;
    left: .43em;
    top: .06em;
}

.info-popup::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #393939 transparent transparent transparent;
}

/* Fin de Información adicional */


/* Opacity */

.opacity-50 {
    opacity: 0.5;
}

/* Fin de Opacity */

/* Alineación de los textos */

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

.text-right {
    text-align: right;
    text-align: -webkit-right;
}

.text-left {
    text-align: left;
}

/* Fin de Alineación de los textos */

/* Font-size */

.font-size-xs {
    font-size: var(--font-size-xs); /* 11px */
}

.font-size-s {
    font-size: var(--font-size-s); /* 14px */
}

.font-size-m {
    font-size: var(--font-size-m); /* 16px */
}

.font-size-l {
    font-size: var(--font-size-l); /* 18px */
}

/* Fin de Font-size */

/* Flexbox */

.flex {
    display: flex;
}

/* -- Dirección del flujo (Flex Direction) -- */

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

/* -- Justificar contenido (Justify Content) -- */

.justify-star {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

/* -- Alinear ítems (Align Items) -- */

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.items-baseline {
    align-items: baseline;
}

/* Fin de Flexbox */

/* Font Sizes */

.font-size-s {
    font-size: var(--font-size-s);
}

.font-size-m {
    font-size: var(--font-size-m);
}

.font-size-l {
    font-size: var(--font-size-l);
}

/* Fin de Font Sizes */

/* Font Weights */

.font-weight-medium {
    font-weight: var(--font-weight-medium);
}

.font-weight-semibold {
    font-weight: var(--font-weight-semibold);
}

/* Fin Font Weights */

/* Paddings */

/* p aplica padding en todos los lados */
.p-3 {
    padding: 0.75rem;
}

.p-3-5 {
    padding: 1rem;
}

.p-4 {
    padding: 1.25rem;
}

/* px aplica padding horizontal */
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* py aplica padding vertical */
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* pt aplica solo padding superior */
.pt-0 {
    padding-top: 0rem;
}

.pt-3 {
    padding-top: 0.75rem;
}

.pt-5 {
    padding-top: 1.5rem;
}

/* pb aplica solo padding inferior */
.pb-1 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 0.75rem;
}

/* pl aplica solo padding izquierdo */

.pl-0 {
    padding-left: 0;
}

.pl-3 {
    padding-left: 0.75rem;
}

/* pr aplica solo padding derecho */
.pr-3 {
    padding-right: 0.75rem;
}

/* Fin de Paddings */

/* Margins */

.m-0 {
    margin: 0;
}

/* m aplica margin en todos los lados */
.m-1 {
    margin: 0.5rem;
}

/* mt aplica solo margin superior */
.mt-1 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* mb aplica solo margin inferior */
.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* mr aplica solo margin derecho */
.mr-0-3 {
    margin-right: 0.3rem;
}

.mr-1 {
    margin-right: 0.5rem;
}

.mr-0-75 {
    margin-right: 0.75rem;
}

/* Fin de Margins */

/* Font Colors */

.color-link {
    color: var(--color-link);
}

.color-danger {
    color: var(--color-danger);
}

.color-medium-gray {
    color: var(--color-medium-gray);
}

.color-dark-gray {
    color: var(--color-dark-gray);
}

/* Fin de Font Colors */

.position-relative {
    position: relative;
}

.title {
    color: var(--color-medium-gray);
    font-size: 18px;
    font-size: 1.25em;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1.5em;
}

.debt-due_ball {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 16px;
    min-width: 16px;
    width: 16px;
    transition: all .3s cubic-bezier(.77, 0, .175, 1);
}

.due_ball--green {
    background: var(--color-succsess);
}

.due_ball--grey {
    background: var(--color-medium-light-gray);
}

.circle_payment {
    -webkit-align-items: center;
    align-items: center;
    border: 1px solid var(--color-light-gray);
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    height: 2.5em;
    -webkit-justify-content: center;
    justify-content: center;
    width: 2.5em;
}

.detallesPago {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 850px) {

    .title-off {
        display: none !important;
    }

}














