.c_white {
    color: var(--white);
}
.c_hover_white:hover {
    color: var(--white);
}
.bg_white {
    background-color: var(--white);
}
.c_pink {
    color: var(--pink);
}
.c_hover_pink:hover {
    color: var(--pink);
}
.bg_pink {
    background-color: var(--pink);
}
.c_pink_2 {
    color: var(--pink_2);
}
.c_hover_pink_2:hover {
    color: var(--pink_2);
}
.bg_pink_2 {
    background-color: var(--pink_2);
}
.c_yellow {
    color: var(--yellow);
}
.c_hover_yellow:hover {
    color: var(--yellow);
}
.bg_yellow {
    background-color: var(--yellow);
}
.c_gray {
    color: var(--gray);
}
.c_hover_gray:hover {
    color: var(--gray);
}
.bg_gray {
    background-color: var(--gray);
}
.c_gray_2 {
    color: var(--gray_2);
}
.c_hover_gray_2:hover {
    color: var(--gray_2);
}
.bg_gray_2 {
    background-color: var(--gray_2);
}
.c_gray_3 {
    color: var(--gray_3);
}
.c_hover_gray_3:hover {
    color: var(--gray_3);
}
.bg_gray_3 {
    background-color: var(--gray_3);
}
.c_beige {
    color: var(--beige);
}
.c_hover_beige:hover {
    color: var(--beige);
}
.bg_beige {
    background-color: var(--beige);
}
html,
body {
    height: 100%;
}
b,
strong {
    font-weight: 700;
}
body {
    color: #000000;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll_padding, 100px);
}
hr {
    opacity: 1;
}
.ttu {
    text-transform: uppercase;
}
.ttl {
    text-transform: lowercase;
}
.tdn {
    text-decoration: none;
}
.tdu {
    text-decoration: underline;
}
.tdl {
    text-decoration: line-through;
}
.wmc {
    width: max-content;
}
.wfc {
    width: fit-content;
}
legend {
    float: initial;
    width: initial;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}
.l-s-2 {
    letter-spacing: 2px;
}
.no-opacity {
    opacity: 0;
}
@media (max-width: 575px) {
    .mobile-100 .container,
    .mobile-100 .col-12,
    .mobile-100 .row {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
}
.p-relative {
    position: relative;
}
.z-1 {
    z-index: 1;
}
.z-2 {
    z-index: 2;
}
.mt-auto {
    margin-top: auto;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
dl,
ol,
ul,
hr,
legend {
    margin: 0;
    padding: 0;
}
body,
html {
    height: 100%;
}
:root {
    --white: #ffffff;
    --light: 300;
    --regular: 400;
    --medium: 400;
    --demibold: 600;
    --bold: 700;
    --extrabold: 800;
    --heavy: 900;
    --poppins: "Poppins", sans-serif;
}
a:hover {
    color: inherit;
}
@media (max-width: 991px) {
    .row > * {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.ff-pop {
    font-family: var(--poppins);
}
ul,
ol {
    list-style-type: none;
    padding: 0;
}
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1264px;
    }
}
h1 {
    font-size: 120px;
}

.btn-copiar {
    background-color: #098d95; /* Main color */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px; /* Spacing from the list */
    margin-bottom: 20px; /* Spacing below button */
    cursor: pointer;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.1s ease; /* Smooth transitions */
}

.btn-copiar:hover {
    background-color: #07737a; /* Slightly darker shade for hover */
}

.btn-copiar:active {
    transform: scale(0.98); /* Slight press effect */
}

.btn-copiar:disabled {
    background-color: #5f9ea0; /* Lighter color when disabled (e.g., during "Copiado!") */
    cursor: not-allowed;
}
.btn-copiar {
    background-color: #098d95; /* Main color */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px; /* Spacing from the list */
    margin-bottom: 20px; /* Spacing below button */
    cursor: pointer;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.1s ease; /* Smooth transitions */
}

.btn-copiar:hover {
    background-color: #07737a; /* Slightly darker shade for hover */
}

.btn-copiar:active {
    transform: scale(0.98); /* Slight press effect */
}

.btn-copiar:disabled {
    background-color: #5f9ea0; /* Lighter color when disabled (e.g., during "Copiado!") */
    cursor: not-allowed;
}

/* Styles for the list presentation */
ul.list-unstyled > li {
    margin-bottom: 0.8em; /* Adjust as needed for desired spacing, 1em is roughly one line height */
    /* If your <strong> elements are display:block or have margins, 
       you might not need this, or need a smaller value.
       Test to get the visual spacing from your screenshot.
       0.8em to 1em is a good starting point. */
}

/* Styles for the copy button (from previous answer) */
.btn-copiar {
    background-color: #098d95; /* Main color */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.btn-copiar:hover {
    background-color: #07737a;
}

.btn-copiar:active {
    transform: scale(0.98);
}

.btn-copiar:disabled {
    background-color: #5f9ea0;
    cursor: not-allowed;
}

.submitter_external_id {
    display: none;
}
