:root {
    --naranja1: #FF0042;
    --naranja2: #FD6750;
    --grisclaro: #858486;
    --grisbtn: #414046;
    --grismedio: #222328;
    --oscuro: #0C0F14;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: var(--oscuro);
    height: 100%;
}

body {
    width: 100vw;
    height: 100vh;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    text-align: center;
}

strong, b {
    font-weight: 600;
    /* Set 700 as the default (bold) weight */
}

.mobile-wrap {
    width: 100%;
    height: 100%;
    padding: 0 30px;
    position: relative;
    margin: auto;
    /* border: 1px solid var(--grismedio);
    border-radius: 20px; */
    overflow-x: hidden;
    overflow-y: auto;
}

.loader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--oscuro);
    z-index: 9999;
}

.header {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.header .gradient-decoration {
    position: absolute;
    top: -240px;
    left: 50%;
    width: calc(480px * 1.2);
    height: calc(480px * 1.2);
    transform: translateX(-50%);
    border-radius: 240px;
    opacity: .9;
    filter: blur(100px);
    z-index: -1;
}

.gray {
    background: #0C0F14;
    background: linear-gradient(180deg, #0C0F14 0%, rgba(65, 64, 70, 1) 100%);
}

.orange {
    background: rgb(255, 0, 66);
    background: linear-gradient(180deg, #ff0042 0%, #fd6750 100%);
}

.header button {
    position: absolute;
    top: 40px;
    left: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1em;
    font-weight: 600;
}

.header img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 10px;
    margin: 45px auto 25px;
}

.header h1 {
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 15px;
}

h2 {
    font-size: 1.1em;
    font-weight: 600;
    margin: 45px 0 20px 0;
    text-align: left;
    width: 100%;
}

.form {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 0 20px 0;
}

.form input, .form select {
    width: 100%;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 35px;
    padding: 0 20px;
    margin-bottom: 20px;
    color: white;
    font-family: inherit;
    font-size: 1em;
    font-weight: 600;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Para Safari */
    border: 1px solid var(--grisclaro);
}

.form input::placeholder {
    color: var(--grisclaro);
}

.form textarea {
    width: 100%;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 35px;
    padding: 0 20px;
    margin-bottom: 20px;
    color: white;
    font-family: inherit;
    font-size: 1em;
    font-weight: 600;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Para Safari */
    border: 1px solid var(--grisclaro);
    height: 120px;
    resize: none;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: max-content;
    height: 50px;
    background-color: white;
    border: none;
    border-radius: 25px;
    color: var(--oscuro);
    font-family: inherit;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    padding: 0 30px;
    margin: 20px auto;
}

.btn-container {
    margin-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

}

.btn-container .link {
    font-weight: 400;
    font-size: .9em;
    margin-bottom: 10px;
    color: var(--grisclaro);
}

.btn-container .link a {
    font-weight: 400;
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: max-content;
    height: 50px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 25px;
    color: white;
    font-family: inherit;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    padding: 0 30px;
    margin: 15px auto 25px auto;
}

p {
    font-size: 1em;
    font-weight: 400;
    margin: 0 0 20px 0;
}

a {
    text-decoration: underline;
    color: white;
    font-weight: 600;
}

.text-container {
    width: 100%;
    height: max-content;
    text-align: left;
}

.text-container ul, .text-container li {
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: disc;
    text-wrap: normal;
    width: 100%;
}

/* main */

nav {
    width: 90%;
    height: 70px;
    background-color: rgba(0, 0, 0, .25);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    margin: auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Para Safari */
    border: 1px solid var(--grisclaro);
    border-radius: 35px;
}

nav button {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: var(--grisclaro);
    font-size: .7em;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

nav button i {
    font-size: 1.8em;
    margin-bottom: 5px;
    pointer-events: none;
}

nav .active {
    color: white;
}

/* old */

/* ul li,
ul a {
    width: 100%;
    height: 80px;
    background-color: transparent;
    text-align: left;
    list-style: none;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 80px 1fr 35px;
    overflow: hidden;
    align-items: center;
    text-decoration: none;
    color: white;
} */

ul .simple-list {
    width: 100%;
    height: 90px;
    background-color: transparent;
    text-align: right;
    border-radius: 0px;
    list-style: none;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 35px;
    overflow: hidden;
    align-items: center;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid var(--grismedio);
}

.highlight {
    display: inline-block;
    max-width: 36ch;
    /* Cambia 10 por el número de caracteres que desees mostrar */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.preview-cont {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.preview-cont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.preview-cont video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.start-btn {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .7em;
}

.start-btn i {
    font-size: 3em;
    color: var(--naranja2);
    background-color: white;
    border-radius: 1.5em;
    margin-bottom: 2.5px;
}

.info-cont {
    padding: 15px;
    text-align: left;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.simple-list .info-cont {
    padding: 0;
}

.info-cont h3 {
    font-size: 1em;
    display: block;
}

.info-cont span {
    color: var(--grisclaro);
    font-size: .9em;
    display: block;
    margin: 2.5px 0;
}

/* rutina view */
.set-rep-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 25px 5px 10px 5px;
}

.set-rep-bar span {
    display: block;
    color: var(--grisclaro);
    width: max-content;
    margin: 0;
}

/* tracker view */
.video-cont {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0 -15px;
}

.finish-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .8em !important;
    font-weight: 600;
    cursor: pointer;
    z-index: 100;
    text-decoration: none;
    color: white;
    border: none;
    font-size: inherit;
    font-family: inherit;
    background-color: transparent;
}

.finish-btn i {
    font-size: 4.5em;
    color: white;
    border-radius: 1.5em;
    margin-bottom: 2.5px;
}

.video-cont video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -999 !important;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}

.video-cont .no-eventor {
    width: 100%;
    height: 100%;
    z-index: -99 !important;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}

.controls {
    /* width: 100%; */
    padding: 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 50;
    text-align: left;
    box-sizing: content-box;
}

.controls p {
    margin-bottom: unset;
}

.next-exercise {
    font-size: .8rem;
    font-weight: bold;
    color: var(--naranja2);
    background-color: white;
    padding: 4px 12px;
    border-radius: 12px;
    width: max-content;
    margin-top: 4px;
    ;
}

.back {
    font-size: 1em;
    font-family: inherit;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.progress-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
    margin-top: 20px;
}

.input-cont {
    background-color: rgba(133, 132, 134, 0.75);
    width: 100%;
    height: 80px;
    border-radius: 20px;
    padding: 10px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Para Safari */
    border: 1px solid var(--grisclaro);
}

.input-cont label {
    color: var(--grisclaro);
    text-align: center;
    width: 100%;
    display: block;
    font-size: .8em;
    font-weight: 600;
}

.input-cont input {
    width: 100%;
    height: 45px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Removes arrows in Firefox */
}

.input-cont input::-webkit-inner-spin-button,
.input-cont input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.progress-form button {
    width: 100%;
    height: 45px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
    font-family: inherit;
    cursor: pointer;
}

/* .progress-form button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .7em;
    background-color: transparent;
    border: none;
    color: white;
    font-family: inherit;
    cursor: pointer;
}

.progress-form button i {
    font-size: 4.5em;
    color: white;
    border-radius: 1.5em;
    margin-bottom: 5px;
    background-color: var(--naranja2);
} */

.timer-cont {
    background: var(--naranja1);
    background: linear-gradient(180deg, var(--naranja1) 0%, var(--naranja2) 100%);
    width: 100vw;
    height: 100vh;
    z-index: 90;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.time {
    font-weight: 600;
    font-size: 28vw;
    margin: 0;
}

.skip-btn {
    position: fixed;
    bottom: 130px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .8em;
    font-weight: 600;
    background-color: transparent;
    border: none;
    color: white;
    font-family: inherit;
    z-index: 100;
}

.skip-btn i {
    font-size: 4.5em;
    color: white;
    border-radius: 1.5em;
    margin-bottom: 2.5px;
}

.skip-btn.timer-i {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.btn-orange {
    width: max-content;
    padding: 0 30px;
    height: 50px;
    display: flex;
    margin: auto;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-decoration: none;
    background: var(--naranja1);
    background: linear-gradient(180deg, var(--naranja1) 0%, var(--naranja2) 100%);
}

.single-p {
    text-align: center;
    margin: auto auto 20px auto;
}

.small-p {
    text-align: center;
    margin: 20px auto 0 auto;
    color: white;
    font-size: .9em;
}

/* Editor */
input,
textarea,
select {
    width: 100%;
    height: 45px;
    background-color: var(--grismedio);
    border: none;
    color: white;
    font-size: 1em;
    font-weight: 600;
    text-align: left;
    border-radius: 12px;
    margin: 5px auto 10px auto;
    padding: 0 12px;
}

textarea {
    height: 100px;
}

fieldset {
    border: 1px solid var(--naranja2);
    padding: 25px;
    border-radius: 25px;
    margin: 25px;
}

fieldset:first-child {
    margin: 0px 0px 25px 0px;
}

fieldset button {
    width: 100%;
    height: 45px;
    height: 50px;
    display: flex;
    margin: auto;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-decoration: none;
    background-color: var(--grisbtn);
    border: none;
    margin: 0 auto 10px auto;
    font-size: 1em;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

legend {
    font-size: 1.2em;
    font-family: inherit;
    font-weight: 600;
    color: var(--naranja2);
    background-color: var(--grisoscuro);
    padding: 0 10px;
}

label {
    color: var(--grisclaro);
    width: 100%;
    display: block;
    font-size: .8em;
}

.output {
    white-space: pre-wrap;
    background: #f3f3f3;
    padding: 10px;
    border-radius: 5px;
}

/* termina old */

/* Coaches */
.coaches-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 15px;
    width: 100%;
    height: max-content;
    box-sizing: content-box;
    margin: 45px 0 90px 0;
}

.coach-card {
    width: 100%;
    height: calc(60vw - 45px);
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Para Safari */
    border: 1px solid var(--grisclaro);
    background-color: rgba(255, 255, 255, 0.25);
}

.coach-card img {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: cover;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

.coach-card h3 {
    font-size: .8em;
    font-weight: 600;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, .5);
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1;
}

.coach-card i {
    color: var(--naranja2);
}

/* Termina Coaches */

/* Inicia retos */
.acumulado {
    font-size: 3em;
    font-weight: 700;
    margin: 0;
    width: 100%;
}

.acumulado-label {
    font-size: 1em;
    margin: 10px 0 20px 0;
    width: 100%;
}

.dates-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    align-items: center;
}

.dates-container .date {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: white;
    font-size: .8em;
    padding: 5px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Para Safari */
    border: 1px solid var(--grisclaro);
}

.objetivos {
    text-align: left;
}

/* Inicia calendario */

.calendar-container {
    margin: 25px auto 120px auto;
    position: relative;
}

.start-indicator {
    position: absolute;
    top: 6vw;
    left: 2.5vw;
    font-size: .7em;
}

.end-indicator {
    position: absolute;
    bottom: -3vw;
    right: 2.5vw;
    font-size: .7em;
}

.calendar-weekdays {
    margin: 0 0 20px 0;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.calendar-day-name {
    font-weight: bold;
    font-size: 0.8rem;
    color: var(--grisclaro);
    font-weight: 600;
}

.calendar-day {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.calendar-day-content {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.calendar-photo {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 12px;
    opacity: .8;
}

.calendar-icon {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    font-size: 2em;
    color: white;

}

.calendar-circle {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Termina calendario */
/* Termina retos */

/* Inicia landing*/

.features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: max-content;
    box-sizing: content-box;
    margin: 45px 0 90px 0;
    width: 100%;
    max-width: 480px;
    margin: auto;
}

.feature {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: 80px;
    gap: 15px;
    height: 80px;
    width: 100%;
    text-align: left;
    align-items: center;
}

.feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.feature h3 {
    font-size: 1em;
    font-weight: 600;
}

.feature p {
    font-size: 1em;
    font-weight: 400;
    color: var(--grisclaro);
    margin: auto;
}

/* Termina landing*/

/* Inicia progress */

canvas#progressChart {
    margin-top: 60px;
}

.progress-select {
    margin-top: 15px;
    -webkit-appearance: none;
    /* Removes default Safari styling */
    -moz-appearance: none;
    /* Removes default Firefox styling */
    appearance: none;
    /* Removes default styling in modern browsers */
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Para Safari */
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 25px;
    padding: 0 25px;
    height: 50px;
    color: white;
    font-family: inherit;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNOC4wNzEgMTEuMjk3bC01LjQyNy01LjQyN2EuNzUuNzUgMCAxIDEgMS4wNjEtMS4wNjFsNC45MzYgNC45MzYgNC45MzYtNC45MzZhLjc1Ljc1IDAgMSAxIDEuMDYxIDEuMDYxbC01LjQyNyA1LjQyN2EuNzUuNzUgMCAwIDEtMS4wNjEgMHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.progress-select:focus {
    outline: none;
    /* Removes default focus outline */
    border-color: white;
    /* Optional: Add a custom focus border color */
}

/* Termina progress */

.perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--grisoscuro);
    padding: 45px 0 90px 0;
}

.perfil h1 {
    font-size: 1.2rem;
    text-align: center;
}

.perfil h2 {
    font-size: 1rem;
    color: var(--naranja2);
    text-align: center;
    margin: unset;
}

.perfil .profile-pic-cont {
    width: max-content;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    position: relative;
}

.perfil .foto {
    width: 30vw;
    height: 30vw;
    border-radius: 18vw;
    margin: 0 auto;
    border: 2px solid white;
    object-fit: cover;
}

.profile-pic-cont i {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    color: var(--naranja2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.perfil .bio {
    font-size: .9rem;
    padding: 0 30px;
    text-align: center;
    color: white;
}

.perfil .bio a {
    color: white;
}

.social-btns {
    display: flex;
    margin: 30px auto;
    width: max-content;
}

.social-btns a {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    font-size: 30px;
    margin: 0 3px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Para Safari */
    border: 1px solid var(--grisclaro);
}

.social-btns a:hover {
    background: var(--naranja1);
    background: linear-gradient(90deg, var(--naranja1) 0%, var(--naranja2) 100%);
}

footer {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p {
    color: gray;
    font-size: .8rem;
}

footer img {
    width: 45px;
    margin: 15px 0;
    border-radius: 12px;
}

footer a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
}

.container {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--grisoscuro);
    padding: 30px 30px 0 30px;
}

.container-clientes {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--grisoscuro);
    padding: 30px 0 0 0;
    margin: 0;
}

.filterDiv {
    width: 100%;
    text-align: left;
    margin: auto auto 30px auto;
    padding: 0 0 30px 0;
    border-bottom: 2px solid var(--grisclaro);
    /* display: none; */
    color: white;
}

#user_phone {
    display: none;
}

.filter-div {
    width: 100%;
    margin: 0;
    padding: 0 0 30px 0;
    display: none;
}

.show {
    display: block;
}

.filterDiv h2 {
    font-size: 1rem;
    color: white;
    margin: auto auto 15px auto;
}

.filterDiv img {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 0 12px rgba(0, 0, 0, .5);
    margin: auto;
}

.filterDiv video {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    border-radius: 35px;
    box-shadow: 0 0 12px rgba(0, 0, 0, .5);
    margin: auto;
}

.filterDiv p {
    margin: 15px auto 30px auto;
    font-size: .9em;
    color: white;
}

.filterDiv li {
    margin-left: 30px;
    font-size: .9em;
}

/* .filterDiv a {
    background: white;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oscuro);
    text-decoration: none;
    border-radius: 25px;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 1rem;
} */

.filterDiv a strike {
    font-size: .8rem;
}

span.ch {
    font-size: .8rem;
}

/* Message Pop-Up */
.hidden {
    display: none !important;
}

.message {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 0 15px;
    width: 100%;
    height: 100vh;
    background-color: #16161980;
    z-index: 1500;
}

.msg__frame {
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
    width: 100%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, .25);
    border-radius: 35px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Para Safari */
    border: 1px solid var(--grisclaro);
}

.msg__frame h3 {
    display: block;
    padding: 1.6rem 1.2rem 1rem 1.2rem;
    width: 100%;
    border-bottom: 1px solid rgba(133, 132, 134, 0.75);
    color: white;
    text-align: center;
    font-weight: 600;
}

.msg__frame p {
    padding: 0 1.5rem;
    color: white;
    text-align: center;
    line-height: 1.3em;
    margin: 1.5rem 0;
}

.msg__btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0 1rem 1rem 1rem;
}

.msg__btns button {
    display: block;
    width: 100%;
    height: 50px;
    max-width: 180px;
    background: var(--grisbtn);
    outline: none;
    border: none;
    border-radius: 25px;
    color: #FFF;
    font-size: 1em;
    font-weight: 600;
    font-family: inherit;
}

.msg__btns button:last-child {
    background: linear-gradient(270deg, var(--naranja1) 0%, var(--naranja2) 100%);
}

.insights-container {
    width: 100%;
    margin: 25px auto 120px auto;
    box-sizing: border-box;
}

.ai-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Para Safari */
    border: 1px solid var(--grisclaro);
    border-radius: 35px;
    padding: 25px 25px 25px 15px;
    width: 100%;
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto;
    align-items: center;
    margin: 10px 0;
}

.ai-card i {
    font-size: 2em;
    color: white;
    margin-right: 15px;
}

.ai-card p {
    color: white;
    margin: 0;
    text-align: left;
    font-size: .8rem;
}

.ai-suggestion {
    font-style: italic;
    color: white;
}

/* Video Loader */
.vl__cont {
    width: 100%;
    height: 100%;
}

.video-loader {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.video-loader p {
    padding: 130px 0 0 0;
    color: white;
    text-align: center;
    line-height: 1.3em;
}

.vl__animation {
    display: block;
    margin: 0 auto 1rem auto;
    width: 60px;
    height: 60px;
}

.vl__pulse-cont {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
}

.vl__pulse {
    width: 100%;
    height: 100%;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
    scale: 0.3;
}

.vl__pulse div {
    position: absolute;
    width: 30px;
    box-sizing: content-box;
}

.vl__pulse div:nth-child(1) {
    left: 35px;
    background: #fd6750;
    animation: pulse-1 1s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation-delay: -0.2s;
}

.vl__pulse div:nth-child(2) {
    left: 85px;
    background: #fe3a4a;
    animation: pulse-2 1s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation-delay: -0.1s;
}

.vl__pulse div:nth-child(3) {
    left: 135px;
    background: #ff0042;
    animation: pulse-3 1s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    animation-delay: undefineds;
}

/* Animations */
.message.appear,
.vl__cont.appear,
.lib__pop-up.appear,
.list-pop-up.appear {
    animation: fade-in 0.3s ease;
}

.message.disappear,
.vl__cont.disappear,
.lib__pop-up.disappear,
.list-pop-up.disappear {
    animation: fade-out 0.3s ease forwards;
}

.download-badge {
    width: 100%;
    height: max-content;
    display: block;
    margin: 25px auto;
    text-decoration: none;
}
.download-badge img {
    width: auto;
    height: 80px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, .5);
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes fade-out {
    0% {
        opacity: 100%;
    }

    100% {
        opacity: 0;
    }
}

@keyframes pulse-1 {
    0% {
        top: 36px;
        height: 128px;
    }

    50% {
        top: 60px;
        height: 80px;
    }

    100% {
        top: 60px;
        height: 80px;
    }
}

@keyframes pulse-2 {
    0% {
        top: 41.99999999999999px;
        height: 116.00000000000001px;
    }

    50% {
        top: 60px;
        height: 80px;
    }

    100% {
        top: 60px;
        height: 80px;
    }
}

@keyframes pulse-3 {
    0% {
        top: 48px;
        height: 104px;
    }

    50% {
        top: 60px;
        height: 80px;
    }

    100% {
        top: 60px;
        height: 80px;
    }
}

/* @media screen and (min-width: 768px) {
    .mobile-wrap {
        width: 768px;
        margin: 30px auto;
        border-radius: 16px;
        background-color: black;
        box-shadow: 0 0 12px rgba(0, 0, 0, .5);
        padding: 30px 0;
    }
} */