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

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

body {
    width: 100%;
    height: 100%;
    background-color: var(--grisoscuro);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

.mobile-wrap {
    width: 100%;
    padding: 0 15px;
    position: relative;
}

.top-banner {
    width: calc(100% + 30px);
    margin: 0 0 30px -15px;
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    text-shadow: 0 0 12px black;
    position: relative;
    text-align: center;
}

.backBtn {
    position: absolute;
    top: 20px;
    left: 15px;
    background-color: transparent;
    border: none;
    font-family: inherit;
    font-size: 1em;
    color: white;
    z-index: 99;
    cursor: pointer;
}

.top-banner .cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -999;
}

.top-banner.s {
    height: 230px;
}

.top-banner .start-btn {
    position: relative;
    text-shadow: 0 0 12px white;
}

h1,
h2,
h3,
h4,
b {
    font-weight: 600;
}

h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1rem;
    margin: 15px 0;
}

p {
    font-weight: normal;
    color: var(--grisclaro);
}

.app-list {
    margin-bottom: 100px;
}

.app-list .app-list-item,
.app-list .a-link {
    width: 100%;
    height: 100px;
    background-color: var(--grismedio);
    border-radius: 12px;
    list-style: none;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 100px 1fr 35px;
    overflow: hidden;
    align-items: center;
    text-decoration: none;
    color: white;
}

.app-list-item.simple {
    grid-template-columns: 1fr 35px;
    padding-left: 12px;
}

.app-list .b-link {
    width: 100%;
    height: 100px;
    background-color: var(--grismedio);
    border-radius: 12px;
    list-style: none;
    margin-bottom: 10px;
    padding-left: 12px;
    display: grid;
    grid-template-columns: 1fr 35px;
    overflow: hidden;
    align-items: center;
    text-decoration: none;
    color: white;
}

.app-list .app-list-item.empty {
    grid-template-columns: unset;
    align-items: center;
}

.preview-cont {
    display: flex;
    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;
}

.preview-cont>i {
    font-size: 2rem;
    color: var(--grisclaro);
}

.preview-cont img.rounded {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--grisbtn);
}

.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 {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 15px;
    overflow: hidden;
    min-width: 0;
}


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


.info-cont span {
    color: var(--grisclaro);
    font-size: 0.8em;
    line-height: 1.4em;
    display: inline-block;
    max-width: 28ch;
    /* Cambia 10 por el número de caracteres que desees mostrar */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.info-cont span.alert {
    color: var(--naranja1);
    font-size: .9em;
    margin: 0;
}

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

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

.start {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgb(255, 0, 66);
    background: linear-gradient(90deg, rgba(255, 0, 66, 1) 0%, rgba(253, 103, 80, 1) 100%);
    border-radius: 0;
    color: white;
    text-shadow: 0 0 12px white;
    text-decoration: none;
    font-weight: 600;
    border: none;
    font-family: inherit;
    font-size: 1.2em;
    border-radius: 12px 12px 0 0;
}

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

.finish-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .7em;
    cursor: pointer;
    z-index: 9999;
    text-decoration: none;
    color: white;
    border: none;
    font-size: inherit;
    font-family: inherit;
    background-color: transparent;
}

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

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

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

.controls {
    width: 100%;
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 900;
}

.back {
    font-size: 1em;
    font-family: inherit;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-top: 30px;
}

.input-cont {
    background-color: var(--grismedio);
    width: 90px;
    height: 90px;
    border-radius: 12px;
    padding: 10px;
}

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

.input-cont input {
    width: 100%;
    height: 45px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.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;
}

.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: 999;
    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: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .7em;
    background-color: transparent;
    border: none;
    color: white;
    font-family: inherit;
    z-index: 9999;
}

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

.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: 600;
    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;
}

/* Terminan estilos app usuario */

/* Inician estilos de welcome, login, signup y password recovery */
.welcome-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: url(../assets/img/CoacCover2.png) center center no-repeat;
    background-size: cover;
}

.welcome-container .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.welcome-container h1,
.welcome-container p {
    color: white;
}

.welcome-container .logo {
    border-radius: 16px;
    height: 80px;
    width: 80px;
    margin-bottom: 14px;
}

.welcome-container .btns-cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    margin: 30px auto 90px auto;
}

.welcome-container .filled-btn {
    background-color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 50px;
    border-radius: 25px;
    width: 100%;
    color: var(--grisoscuro);
    font-weight: 600;
    font-size: 1rem;
}

.welcome-container .simple-btn {
    background-color: transparent;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 50px;
    border-radius: 25px;
    width: 100%;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* app wrap is for triner interface, mobile wrap is for user interface */
.app-wrap nav.top {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    background-color: var(--grisoscuro);
    border-bottom: 1px solid var(--grismedio);
    padding: 0 0 0 15px;
    position: fixed;
    top: 0;
    text-align: center;
    z-index: 999;
}

nav.top .back {
    color: var(--grisclaro);
    text-decoration: none;
}

nav.top .current-view {
    color: white;
    font-weight: 600;
    translate: -7.5px;
}

nav.top .menu {
    color: white;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.app-wrap nav.bottom {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: 0;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    background-color: var(--grisoscuro);
    border-top: 1px solid var(--grismedio);
    z-index: 200;
}

.app-wrap nav.bottom a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 60px;
    height: 60px;
    margin: 0 auto auto auto;
    color: var(--grisclaro);
    text-decoration: none;
    font-size: 12px;
}

.app-wrap nav.bottom a.current {
    color: white;
}

.app-wrap nav.bottom a i {
    font-size: 20px;
}

.app-wrap .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 65px;
    width: 100%;
}

.app-wrap .content.register {
    padding-top: 0;
}

.app-wrap .content .logo {
    height: 90px;
    margin: auto auto 15px auto;
    border-radius: 16px;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-form label {
    width: 100%;
    color: var(--grisclaro);
    font-size: 13px;
    font-family: inherit;
    line-height: 23px;
}

.login-form input {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    background-color: var(--grismedio);
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid var(--grisbtn);
    padding: 0 12px;
    font-family: inherit;
}

.login-form button {
    background-color: white;
    border: none;
    color: var(--grisoscuro);
    height: 50px;
    padding: 0 30px;
    border-radius: 25px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    margin: 30px auto 15px auto;
}

.white-link {
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.search-bar {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 50px;
    padding: 0 15px;
    color: white;
    position: relative;
}

.search-bar input {
    padding: 0 12px;
    width: 100%;
    height: 50px;
    background-color: var(--grismedio);
    border: 1px solid var(--grisbtn);
    border-radius: 12px 0 0 12px;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    color: white;
}

.search-bar-button {
    height: 50px;
    width: 50px;
    background-color: var(--grisbtn);
    border: none;
    border-radius: 0 12px 12px 0;
    font-size: 17px;
    color: white;
}

.content h2 {
    font-size: 20px;
    text-align: left;
    width: 100%;
    padding: 0 15px;
}

.content .app-list {
    width: 100%;
    padding: 0 15px;
}

.plan-form {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 90px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 15px;
    padding: 15px;
    width: 100%;
}

.form-grid.sim {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 0;
    width: 100%;
}

.form-grid label,
.form-grid>span {
    font-size: 13px;
    font-weight: 600;
    color: var(--grisclaro);
    font-family: inherit;
}

.form-grid input,
.form-grid select,
.custom-select {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    background-color: var(--grismedio);
    border: 1px solid var(--grisbtn);
    font-family: inherit;
    font-size: 16px;
    padding: 0 12px;
    color: white;
}

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

.form-grid textarea {
    width: 100%;
    height: 90px;
    border-radius: 12px;
    background-color: var(--grismedio);
    border: 1px solid var(--grisbtn);
    font-family: inherit;
    font-size: 15px;
    padding: 12px;
    color: white;
    resize: none;
}

.form-grid p {
    font-size: 11px;
}

.plan-form p,
.library-form p {
    padding: 0 15px;
    margin-bottom: 10px;
}

.plan-form .app-list {
    margin-bottom: unset;
}

.main-btn {
    margin: 15px auto auto auto;
    width: calc(100% - 30px);
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--naranja1);
    background: linear-gradient(180deg, var(--naranja1) 0%, var(--naranja2) 100%);
    height: 100vh;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
}

.gray-btn {
    margin: 15px auto auto auto;
    width: calc(100% - 30px);
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--grisbtn);
    height: 100vh;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
}

.add-btn,
.set__add-ex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 60px;
    margin: auto 15px auto auto;
    border: none;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none !important;
}

.add-btn i,
.set__add-ex i {
    font-size: 36px;
    margin-left: 10px;
    border-radius: 17px;
}

.library-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 90px;
}

.library-form label {
    width: 100%;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 60px;
    margin-bottom: 10px;
    font-family: inherit;
}

.library-form label .app-list-item {
    width: 100%;
    height: 100px;
    background-color: var(--grismedio);
    border-radius: 12px;
    list-style: none;
    display: grid;
    grid-template-columns: 100px 1fr;
    overflow: hidden;
    align-items: center;
    text-decoration: none;
    color: white;
    font-family: inherit;
}

.library-form input {
    border-radius: 12px;
    background-color: var(--grismedio);
    border: 1px solid var(--grisbtn);
    font-family: inherit;
    font-size: 16px;
    padding: 0 12px;
    color: white;
    margin: auto;
    width: 25px;
    height: 25px;
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
}

input[type="checkbox"],
input[type="radio"] {
    appearance: none;
    background-color: var(--grismedio);
    margin: auto;
    padding: 0;
    font: inherit;
    font-size: 16px;
    color: currentColor;
    width: 30px;
    height: 30px;
    border: 2px solid var(--grisbtn);
    border-radius: 15px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

input[type="checkbox"]::before,
input[type="radio"]::before {
    content: "";
    padding: 0;
    margin: 0;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 26px 26px var(--naranja2);
}

input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
    transform: scale(1);
}

.set-container {
    background-color: var(--grismedio);
    margin-bottom: 15px !important;
}

.set-container .app-list-item {
    background-color: var(--grisoscuro);
    /* Editando para minmax: */
    grid-template-columns: 100px minmax(0, 1fr) 50px 35px 35px;
}

.set-container .set-info-cont,
.set-container .reps-info-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.set-container .target-info-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    background-color: var(--grisoscuro);
}

.set-container .target-info-cont div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.set-container .target-info-cont label {
    height: 13px;
    width: 50px;
    color: var(--grisclaro);
    font-size: 9px;
    text-align: center;
}

.set-container .target-info-cont input {
    height: 35px;
    width: 50px;
    background-color: var(--grismedio);
    color: white;
    font-size: 16px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--grisbtn);
    -moz-appearance: textfield;
    appearance: textfield;
}

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

.set-container .set-info-cont span {
    font-weight: 600;
    font-size: 17px;
    color: white;
}

.arrows-cont button {
    background-color: var(--grisoscuro);
    color: var(--grisclaro);
    height: 35px;
    width: 35px;
    border: none;
    font-size: 17px;
    border-radius: 12px;
}

.set-container .reps-info-cont span {
    font-weight: 600;
    font-size: 15px;
    color: white;
    font-family: inherit;
}

.set-container .reps-info-cont input {
    height: 50px;
    width: 50px;
    background-color: var(--grisoscuro);
    color: white;
    font-size: 18px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--grisbtn);
}

.set-container .app-list-item .arrows-cont {
    margin: auto 10px auto auto;
}

.plans-container .app-list-item {
    grid-template-columns: 1fr 35px 35px;
}

.set-container .app-list-item .arrows-cont button,
.plans-container .app-list-item .arrows-cont button {
    height: 50px;
    border-radius: 0;
    background-color: inherit;
}

.abc {
    background-color: rgba(255, 255, 255, 0.4);
    color: white;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 600;
}

/* Perfil web Beta */

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

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

.username {
    font-size: 1rem;
    color: var(--naranja2);
    text-align: center;
    margin: 0 auto !important;
}

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

.perfil .foto {
    width: 130px;
    height: 130px;
    border-radius: 70px;
    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: 15px auto;
    width: max-content;
}

.social-btns a {
    background-color: var(--grismedio);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    font-size: 30px;
    margin: 0 3px;
}

.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;
    background-color: var(--grisoscuro);
}

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;
}

/* Filtros */

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

.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 15px auto;
    padding: 15px;
    background-color: var(--grismedio);
    border-radius: 25px;
    /* 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: 1.2rem;
    color: white;
    margin: auto auto 15px auto;
}

.filterDiv img {
    width: 100%;
    border-radius: 25px;
    margin: auto;
}

.filterDiv video {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    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,
.stripe-btn {
    width: max-content;
    padding: 0 30px;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--grismedio);
    text-decoration: none;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
}

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

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

/* Style the buttons */
#myBtnContainer {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 15px;
    margin-bottom: 15px;
    padding: 0 15px;
    width: 100%;
}

.btn {
    border: none;
    outline: none;
    padding: 15px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-family: inherit;
    background-color: transparent;
    color: var(--grisclaro);
}

.btn i {
    font-size: 1.6rem;
    margin: auto auto 10px auto;
}

/* Add a light grey background on mouse-over */
.btn:hover {
    color: var(--naranja2);
}

/* Add a dark background to the active button */
.btn.active {
    color: var(--naranja2);
}

/* Btn de filtros clientes */
.btn-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--naranja1);
    height: 36px;
    width: 100%;
    padding: 0 20px;
    border-radius: 18px;
    background-color: transparent;
    color: var(--naranja1);
    font-family: inherit;
    font-weight: normal;
    font-size: 13px;
}

.btn-filter.active {
    background-color: var(--naranja1);
    color: white;
}

.share-btn {
    background-color: var(--naranja2);
    border: none;
    color: var(--grisoscuro);
    height: 50px;
    width: 100%;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    margin: auto auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn i {
    margin-left: 10px;
}

.options-wrap {
    width: calc(100% - 30px);
    margin: auto;
    background-color: var(--grismedio);
    border-radius: 12px;
}

.option-big {
    width: 100%;
    height: 90px;
    background-color: transparent;
    display: grid;
    grid-template-columns: 90px 1fr 50px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid var(--grisoscuro);
}

.option-big img {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    margin: auto;
    object-fit: cover;
}

.option-big .user-info {
    display: flex;
    flex-direction: column;
}

.user-info .user-name {
    color: white;
    font-weight: 600;
    font-size: 17px;
}

.user-info .user-email {
    color: var(--grisclaro);
    font-weight: normal;
    font-size: 13px;
}

.option-big i {
    text-align: center;
    margin: auto;
}

.option {
    width: 100%;
    height: 50px;
    background-color: transparent;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid var(--grisoscuro);
}

.option:last-child {
    border-bottom: none;
}

.option i {
    text-align: center;
    margin: auto;
}

.option .fa-chevron-right,
.option-big .fa-chevron-right {
    color: var(--grisclaro);
}

/* Media input style */

.form-photo-cont {
    margin: auto;
    width: 120px;
    height: 120px;
    background-color: var(--grisbtn);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-photo-cont img {
    margin: auto;
    width: 116px;
    height: 116px;
    object-fit: cover;
    border-radius: 58px;
}

.form-photo-cont .custom-file-input {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--grisoscuro);
}

.form-photo-cont .custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.form-photo-cont .custom-file-input::before {
    content: '\f03e';
    font-family: "Font Awesome 6 Pro";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: white;
    color: var(--grisoscuro);
    border: none;
    padding: 0;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
}

.form-photo-cont .custom-file-input:hover::before {
    border-color: var(--grisoscuro);
}

.form-photo-cont .custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

/* Nuevo plan cover preview */

.form-cover-cont {
    margin: auto;
    width: 100%;
    background-color: transparent;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 40px;
    gap: 15px;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-cover-img {
    position: relative;
    display: block;
    width: 100%;
    height: 196px;
    background-color: var(--grismedio);
    border: 1px solid var(--grisbtn);
    border-radius: 12px;
    overflow: hidden;
}

.form-cover-img img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.form-cover-img img.hidden {
    display: none;
}

.form-cover-img i {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--grisclaro);
    font-size: 2em;
    translate: -50% -50%;
    opacity: 0.6;
    z-index: 0;
}

.form-cover-cont video {
    margin: auto;
    width: 43%;
    height: 196px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px dashed var(--grisclaro);
}

.form-cover-cont .custom-file-input {
    background-color: white;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.form-cover-cont .custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.form-cover-cont .custom-file-input::before {
    content: 'Elije un archivo';
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    background: white;
    color: var(--grisoscuro);
    border: none;
    padding: 0;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    z-index: 99;
}

.form-cover-cont .custom-file-input:hover::before {
    border-color: var(--grisoscuro);
}

.form-cover-cont .custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

/* Preview pop up */

.preview-video-cont {
    background-color: black;
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
}

.clients-container {
    margin-top: 30px;
    padding: 0 0 90px 0;
    width: 100%;
}

.toggle-container {
    width: 100%;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 60px;
    grid-template-rows: 60px;
    background-color: var(--grismedio);
    align-items: center;
}

.toggle-container span {
    font-size: 15px;
    color: white;
}

.toggle-container button {
    width: 100%;
    height: 100%;
    border: none;
    text-decoration: none;
    background-color: transparent;
}

.toggle-container i {
    font-size: 27px;
    color: white;
}

/* #toggle-content {
    display: none;
} */

.no-content {
    margin: auto;
    text-align: center;
    font-size: 13px;
    color: var(--grisclaro);
}

.big-photo {
    margin: auto;
    width: 116px;
    height: 116px;
    object-fit: cover;
    border-radius: 58px;
    border: 2px solid var(--grisbtn);
}

.subscription-status {
    font-weight: 600;
    color: var(--naranja1);
    margin: 15px auto auto auto;
}

.subscription-renews {
    font-weight: normal;
    color: var(--grisclaro);
    margin: 8px auto;
}

.subscription-price {
    font-weight: 600;
    font-size: 15px;
    color: white;
    margin: 0 auto 30px auto;
}

.plan-sep {
    margin-bottom: 10px;
    padding: 10px 0 0 0;
    text-align: center;
    border-top: 1px solid var(--grisbtn);
    width: calc(100% - 30px);
}

.simple-btn {
    color: var(--naranja2);
    background-color: transparent;
    margin: auto;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
}

.spacer {
    height: 30px;
}

.payments-info {
    width: calc(100% - 30px);
    height: max-content;
    padding: 12px;
    background-color: var(--grismedio);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 12px;
}

.payments-intro {
    margin-top: 8px;
    font-size: .9rem;
    color: var(--grisclaro);
    line-height: 1.5;
}

.payments-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.balances-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.balance-card {
    border-radius: 14px;
    padding: 14px;
    border: 1px solid var(--grisbtn);
    background: #18191d;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.balance-card small {
    color: var(--grisclaro);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.balance-card strong {
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 600;
}

.balance-card span {
    color: var(--grisclaro);
    font-size: .82rem;
}

.balance-card--current {
    background: linear-gradient(120deg, rgba(253, 103, 80, .22) 0%, rgba(255, 0, 66, .12) 100%);
    border-color: rgba(253, 103, 80, .38);
}

.balances-subgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.payments-note {
    padding: 12px;
    border: 1px solid var(--grisbtn);
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    color: var(--grisclaro);
    font-size: .88rem;
    line-height: 1.5;
}

.payments-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.payment-card {
    padding: 12px;
    border-radius: 12px;
    background-color: #18191d;
    border: 1px solid var(--grisbtn);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-card span {
    color: var(--grisclaro);
    font-size: .8rem;
}

.payment-card strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-card small {
    color: var(--grisclaro);
    line-height: 1.4;
}

.payments-summary-footer {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--grisbtn);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.payments-summary-footer span {
    color: var(--grisclaro);
}

.payments-summary-footer strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.payout-item h3 {
    margin-bottom: 2px;
    font-size: 1rem;
    font-weight: 600;
}

.payout-item p {
    margin-top: 2px;
    font-size: .82rem;
}

.payout-item__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payout-item__title-group {
    min-width: 0;
}

.payout-item__title-group h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payout-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.payout-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--grisclaro);
    font-size: .82rem;
}

.payout-item__meta span {
    width: auto;
    text-align: left;
    font-weight: 400;
}

.payout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.payout-grid__cell {
    background: #18191d;
    border: 1px solid #2c2d33;
    border-radius: 10px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payout-grid__cell small {
    font-size: .72rem;
    color: var(--grisclaro);
}

.payout-grid__cell strong {
    font-size: .92rem;
    line-height: 1.25;
    font-weight: 600;
}

.payout-grid__cell span {
    font-size: .72rem;
    color: var(--grisclaro);
}

.payout-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: white;
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
}

.payout-pill.status-paid {
    background: rgba(253, 103, 80, .18);
    color: var(--naranja2);
}

.payout-pill.status-pending {
    background: rgba(255, 255, 255, .1);
    color: #f3f3f3;
}

.payout-pill.status-failed,
.payout-pill.status-refunded {
    background: rgba(255, 255, 255, .08);
    color: #d3d3d3;
}

.payout-pill--cutoff {
    background: rgba(255, 255, 255, .08);
    color: #f3f3f3;
}

.payout-item {
    width: 100%;
    height: 60px;
    height: max-content;
    padding: 12px;
    background-color: var(--grismedio);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    margin: auto auto 10px auto;
}

.cutoff-separator {
    list-style: none;
    margin: 12px 0 8px;
    padding: 8px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--grisbtn);
    color: var(--grisclaro);
}

.cutoff-separator span {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.cutoff-separator strong {
    font-size: .88rem;
    color: #fff;
    font-weight: 600;
}

.payout-item i {
    margin: auto;
    font-size: 27px;
    color: var(--grisclaro);
}

.payout-item i.fa-circle-check {
    color: var(--naranja1);
}

.tx-email {
    word-break: break-word;
    color: var(--grisclaro);
}

@media (max-width: 390px) {

    .balances-grid,
    .balances-subgrid,
    .payout-grid {
        grid-template-columns: 1fr;
    }
}

.logo-mini {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin: 0 auto 15px auto;
}

.steps-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 10px;
    background: var(--naranja1);
    background: linear-gradient(180deg, var(--naranja1) 0%, var(--naranja2) 100%);
    margin: 0 0 30px 0;
}

.steps-bar .covered {
    width: 100%;
    height: 100%;
    background-color: var(--grismedio);
}

.download-container {
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.download-btn {
    width: 50%;
    margin: 30px auto;
}

.download-btn img {
    width: 100%;
}

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

/* -----------------------------------Atlantian Rules----------------------------------- */

/* Library */
.header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 1rem 15px 1rem 15px;
    width: 100%;
}

.header h1,
.header span {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    text-align: start;
}

.header a,
.header button {
    background-color: transparent;
    outline: none;
    border: none;
    color: #FFF;
    text-decoration: none;
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .header a.red {
    color: var(--naranja1);
    font-size: 22px;
} */

.library {
    display: block;
    padding: 30px 0 0 0;
    width: 100%;
    height: 100%;
}

.lib__pop-up {
    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;
}


.lib__pop-up>div {
    display: block;
    width: 100%;
    background-color: #FFF;
    border: 1px solid #707070;
    border-radius: 24px;
}

.lib__pop-up h3 {
    display: block;
    width: 100%;
    margin: 0;
    color: var(--grisoscuro);
    text-align: center;
    font-size: 17px;
}

.lib__pop-up a {
    display: grid;
    grid-template-columns: 25px 1fr 25px;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.lib__pop-up a:active {
    background-color: #F2F2F2;
}

.lib__pop-up a i:first-child {
    color: var(--naranja1);
    font-size: 19px;
}

.lib__pop-up i {
    justify-self: center;
    color: var(--grisbtn);
    font-size: 22px;
}

.lib__pop-up p {
    display: block;
    color: var(--grisbtn);
    font-size: 17px;
    font-weight: 600;
    line-height: 23px;
}

.lib__pop-up span {
    display: block;
    color: var(--grisbtn);
    font-size: 12px;
    font-weight: normal;
}

.lib__pop-up-title {
    display: grid;
    grid-template-columns: 25px 1fr 25px;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 1rem 15px 1rem 15px;
    border-bottom: 1px solid #000;
}

.lib__pop-up-title button {
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--grisbtn);
    font-size: 19px;
}

/* Sets */
.set__items {
    width: 100%;
}


/* Selectable List Pop-Up */
.list-pop-up {
    position: fixed;
    top: 0;
    left: 0;
    padding: 65px 15px 75px 15px;
    width: 100%;
    height: 100vh;
    background-color: #16161980;
    z-index: 1100;
}

.pop-up__frame {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: var(--grisoscuro);
    border: 1px solid var(--grisbtn);
    border-radius: 15px;
    overflow: hidden;
}

.pop-up__frame>p {
    padding: 0 15px;
    margin: 20px 0;
    line-height: 1.3em;
}

.pop-up__header {
    display: block;
    padding: 20px 0;
    border-bottom: 2px solid var(--grisbtn);
}

.pop-up__header h3 {
    text-align: center;
    font-size: 18px;
}

.pop-up__header button {
    display: block;
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--grisclaro);
    font-size: 18px;
}

.pop-up__selects {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.pop-up__selects label {
    width: 100%;
    padding: 8px 15px;
    display: grid;
    grid-template-columns: 1fr 60px;
    margin-bottom: 10px;
    font-family: inherit;
}

.pop-up__selects .app-list-item {
    width: 100%;
    height: 100px;
    background-color: var(--grismedio);
    border-radius: 12px;
    list-style: none;
    display: grid;
    grid-template-columns: 100px 1fr;
    overflow: hidden;
    align-items: center;
    text-decoration: none;
    color: white;
    font-family: inherit;
}

.pop-up__selects .app-list-item.simple {
    grid-template-columns: 1fr;
}

.pop-up__selects>button,
.pop-up__selects .gray-btn {
    flex-shrink: 0;
}

.pop-up__btns {
    padding-bottom: 15px;
}


/* Message Pop-Up */
.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: #FFF;
    border-radius: 24px;
}

.msg__frame h3 {
    display: block;
    padding: 1.6rem 1.2rem 1rem 1.2rem;
    width: 100%;
    border-bottom: 1px solid #000;
    color: var(--grisoscuro);
    text-align: center;
}

.msg__frame p {
    padding: 0 1.5rem;
    color: var(--grisbtn);
    text-align: center;
    line-height: 1.3em;
}

.msg__btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 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: 16px;
    font-weight: 600;
}

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

/* Client */
h1.client__name {
    margin: 12px;
}

.client__change {
    margin: 10px auto 0 auto;
}

.no-plan-text {
    padding: 0 15px;
    width: 100%;
    grid-column: 1 / 4;
    align-self: center;
    justify-self: center;
    color: var(--grisclaro);
    text-align: center;
    font-size: 15px;
    line-height: 23px;
}

/* Verification */
.verification {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 90px;
}

.verification h2 {
    text-align: center;
}

.vrf__photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
}

.vrf__photo img {
    display: block;
    width: 120px;
    height: min-content;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
}

.vrf__photo span {
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
}

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

.vrf__list {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px;
    row-gap: 30px;
    padding: 15px 30px;
    font-size: 19px;
}

.vrf__list h4 {
    margin-bottom: 7px;
}

.vrf__list p {
    color: var(--grisclaro);
    font-size: 15px;
}

.vrf__list i {
    margin-top: 7px;
    font-size: 22px;
    color: var(--naranja2);
}

.vrf__link {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 30px;
}

.vrf__link a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 50px;
    height: 50px;
    background-color: #FFF;
    border-radius: 25px;
    text-decoration: none;
    color: var(--grisoscuro);
    font-size: 17px;
    font-weight: 600;
}

h1.vrf__status {
    margin: 10px 0;
}

/* Video Loader */
.vl__cont {
    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;
}

.video-loader {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
    background-color: #FFF;
    border-radius: 24px;
}

.video-loader h3 {
    display: block;
    padding: 1.6rem 1.2rem 1rem 1.2rem;
    width: 100%;
    border-bottom: 1px solid #000;
    color: var(--grisoscuro);
    text-align: center;
}

.video-loader p {
    padding: 0 1.5rem;
    color: var(--grisbtn);
    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;
}

/* Special */
.hidden {
    display: none;
}

label.input-file {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    width: 100%;
    height: 50px;
    background-color: var(--grismedio);
    border: 1px solid var(--grisbtn);
    border-radius: 12px;
    color: #FFF;
    font-family: inherit;
    font-size: 15px;
    overflow: hidden;
}

.input-file input {
    display: none;
}

.input-file p {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #CCC;
    text-overflow: ellipsis;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
}

.input-file span {
    color: var(--grisclaro);
    font-size: 14px;
    font-weight: normal;
}

.input-file i {
    margin-right: 10px;
}

/* Error 404 */
.error-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 15px 2rem 15px;
}

.error-404 img {
    display: block;
    margin: 3rem 0;
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    object-fit: contain;
}

.error-404 img:first-child {
    margin: 0;
    width: 80px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
}

.error-404 h2 {
    margin: 15px 0 10px 0;
    font-size: 20px;
}

.error-404 p {
    color: #FFF;
}

.error-404 a {
    display: flex;
    align-items: center;
    padding: 0 2rem;
    height: 50px;
    background-color: #FFF;
    border-radius: 25px;
    color: var(--grisoscuro);
    text-decoration: none;
    font-weight: 600;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-top: 60px;
}

.empty-state i {
    font-size: 4rem;
    color: white;
    margin: auto;
}

.empty-state h2 {
    margin: 20px 0 5px 0;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    width: max-content;
}

.empty-state p {
    color: var(--grisclaro);
    font-size: .9rem;
    text-align: center;
    font-weight: 400;
    width: 100%;
    text-align: center;
    padding: 0 15px;
}

.nomargin {
    margin-top: unset;
}

.simple-link {
    font-size: inherit;
    color: inherit;
}

/* Nutrition styles */
/* plans */
.meal-times-container,
.supplements-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 0;
    width: 100%;
    margin: 0;
}

.meal-time-block,
.supplement-block {
    border-radius: 0;
    padding: 16px;
    background: var(--grismedio);
    overflow-x: hidden;
}

.meal-time-block__header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.meal__label {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    color: white;
    flex: 1;
}

.meal__label_small,
.meal-time-block__inputs label {
    font-size: 12px;
    color: var(--grisclaro);
}

.meal-time-block__title {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    background-color: var(--grisoscuro);
    border: 1px solid var(--grisbtn);
    font-family: inherit;
    font-size: 16px;
    padding: 0 12px;
    color: white;
}

.meal-time-block__controls {
    display: flex;
    gap: 8px;
}

.meal-time-block__controls button,
.supplement-block__header button {
    background-color: var(--grisoscuro);
    color: var(--grisclaro);
    height: 35px;
    width: 35px;
    border: none;
    font-size: 17px;
    border-radius: 12px;
}

.meal-time-block__inputs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 12px;
    margin: 0 0 12px 0;
    overflow: hidden;
}

.meal-time-block__inputs input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 50px;
    border-radius: 12px;
    background-color: var(--grisoscuro);
    border: 1px solid var(--grisbtn);
    font-family: inherit;
    font-size: 16px;
    padding: 0 12px;
    color: white;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.meal-time-block__options_header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
}

.meal-time-block__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--blanco);
    border-radius: 6px;
    margin-bottom: 12px;
    padding-top: 8px;
}

.meal-time-option {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 50px;
    border-radius: 12px;
    background-color: var(--grismedio);
    border: 1px solid var(--grisbtn);
    font-family: inherit;
    font-size: 16px;
    padding: 0 12px;
    color: white;
}

.meal-time-option input[type="checkbox"] {
    cursor: pointer;
}

.meal-time-option__name {
    flex: 1;
    font-size: 14px;
}

.meal-time-option__remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--grisclaro);
}

.meal-time-block__add-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 60px;
    margin: auto 15px auto auto;
    border: none;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none !important;
}

.meal-time-block__add-option i {
    font-size: 36px;
    margin-left: 10px;
    border-radius: 17px;
}

.supplement-block__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.supplement-block__name {
    font-weight: 600;
    flex: 1;
}

.supplement-block__fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.supplement-block__field {
    display: flex;
    flex-direction: column;
}

.supplement-block__field label {
    font-size: 12px;
    margin-bottom: 4px;
    color: var(--grisclaro);
}

.supplement-block__remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--grisclaro);
    align-self: flex-end;
    margin-top: 8px;
}

.supplement-block__field textarea {
    width: 100%;
    height: 90px;
    border-radius: 12px;
    background-color: var(--grisoscuro);
    border: 1px solid var(--grisbtn);
    font-family: inherit;
    font-size: 15px;
    padding: 12px;
    color: white;
    resize: none;
}

.sl__brand,
.sl__format {
    margin: unset;
}

.empty-state-small {
    text-align: center;
    padding: 24px 12px;
    color: var(--grisclaro);
    font-size: 14px;
}

/* meals */
.meal-search-wrap {
    position: relative;
}

.meal-search-wrap #food-search {
    width: 100%;
    padding-right: 42px;
    margin-bottom: 15px;
}

.meal-suggestions {
    position: absolute;
    top: 50px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    max-height: 280px;
    overflow: auto;
    z-index: 5;
}

.meal-suggestion-item {
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    color: var(--grisoscuro);
    border-bottom: 1px dashed var(--grisclaro);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    font-family: inherit;
}

.meal-suggestion-item strong {
    color: var(--grismedio);
    font-weight: bold;
    font-size: 15px;
}

.meal-suggestion-item span,
.meal-suggestion-empty {
    color: var(--grisbtn);
    font-size: 13px;
    font-weight: normal;
}

.meal-suggestion-empty {
    padding: 12px;
}

.meal-food-qty {
    width: 90px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--grismedio);
    border: 1px solid var(--grisbtn);
    font-family: inherit;
    font-size: 16px;
    padding: 0 12px;
    color: white;
}

.meal-food-item {
    width: 100%;
    height: 100px;
    background-color: var(--grismedio);
    border-radius: 12px;
    list-style: none;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 45px;
    overflow: hidden;
    align-items: center;
    text-decoration: none;
    color: white;
}

/* .checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
}

.checkbox-item input[type="checkbox"] {
    cursor: pointer;
}

.checkbox-item span {
    flex: 1;
    font-size: 14px;
} */

/* Responsive */
@media screen and (min-width: 768px) {
    body {
        background: var(--naranja1);
        background: linear-gradient(180deg, var(--naranja1) 0%, var(--naranja2) 100%);
        height: 100vh;
    }

    .mobile-wrap {
        width: 768px;
        height: calc(100% - 60px);
        margin: 30px auto;
        border-radius: 16px;
        background-color: black;
        box-shadow: 0 0 12px rgba(0, 0, 0, .5);
        padding: 30px 0;
    }

    .app-wrap {
        width: 100%;
        height: calc(100% - 60px);
        overflow-y: scroll;
        overflow-x: hidden;
        background-color: var(--grisoscuro);
    }

    .content,
    .perfil {
        padding: 0 25%;
    }

    .app-wrap nav.top {
        padding: 0 25% 0 calc(25% + 15px);
    }

    .app-wrap nav.bottom {
        padding: 0 calc(25% + 15px);
    }
}

/* 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;
}

@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;
    }
}

/* Public profile landing */

.landing-profile {
    gap: 14px;
    padding-bottom: 10px;
}

.landing-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    align-items: center;
    margin-top: 10px;
}

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

.hero-eyebrow,
.preview-caption-badge,
.offer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .02em;
    background: rgba(255, 255, 255, .08);
    color: white;
}

.landing-copy h1 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    margin-top: 10px;
    text-align: center;
}

.landing-copy .username {
    margin: 4px 0 0 0 !important;
    text-align: center;
}

.hero-lead {
    margin-top: 12px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 46ch;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: .92rem;
    line-height: 1.4;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 16px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    width: (100% - 30px);
    gap: 10px;
    margin: auto 20px;
}

.hero-cta {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    width: 100%;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.hero-cta:hover {
    transform: translateY(-1px);
}

.hero-cta.primary {
    background: linear-gradient(90deg, var(--naranja1) 0%, var(--naranja2) 100%);
    color: white;
}

.hero-cta.secondary {
    border: 1px solid rgba(255, 255, 255, .18);
    color: white;
    background: rgba(255, 255, 255, .04);
}

.landing-preview {
    width: calc(100% - 30px);
    margin: auto 15px;
}

.preview-card {
    position: relative;
    width: 300px;
    margin: auto;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: 0 14px 36px rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .08);
}

.preview-video,
.preview-image {
    width: 100%;
    aspect-ratio: 9 / 16;
    display: block;
    object-fit: cover;
    background: #000;
}

.preview-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(12, 15, 20, 0), rgba(12, 15, 20, .92));
    backdrop-filter: blur(6px);
}

.preview-caption h3 {
    margin-top: 8px;
    font-size: 1rem;
}

.preview-caption p {
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
    line-height: 1.4;
    margin-top: 6px;
}

.landing-profile .profile-pic-cont {
    margin-top: 8px;
}

.landing-benefits {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    padding: 0 15px;
}

.benefit-card {
    background: var(--grismedio);
    border-radius: 22px;
    padding: 18px 16px;
    text-align: left;
}

.benefit-card i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--naranja1), var(--naranja2));
    color: white;
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: .88rem;
    line-height: 1.5;
    color: var(--grisclaro);
}

.landing-offer {
    position: relative;
}

.offer-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.offer-note {
    color: var(--grisclaro);
    font-size: .8rem;
}

.landing-offer h2 {
    margin-top: 4px;
}

.landing-offer img {
    margin-top: 8px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.offer-features {
    list-style: none;
    display: grid;
    gap: 8px;
    margin: 0 0 24px 0;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .9);
    font-size: .88rem;
}

.offer-features i {
    color: var(--naranja2);
}

.empty-offers {
    width: 100%;
    padding: 18px;
    text-align: center;
    background: rgba(255, 255, 255, .04);
    border-radius: 18px;
}

@media (max-width: 900px) {

    .landing-hero,
    .landing-benefits {
        grid-template-columns: 1fr;
    }

    .landing-copy h1,
    .landing-copy .username,
    .landing-copy {
        text-align: center;
    }

    .landing-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-lead {
        max-width: 100%;
    }

    .trust-row {
        justify-items: center;
        text-align: center;
        justify-content: center;
    }

    .offer-topline {
        flex-direction: column;
        align-items: flex-start;
    }
}