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


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

.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"] {
    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 {
    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 {
    transform: scale(1);
}

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

.set-container .app-list-item {
    background-color: var(--grisoscuro);
    grid-template-columns: 100px 1fr 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 .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;
}

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

.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: var(--grismedio);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    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;
}

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: 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: 12px;
    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: 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 {
    background: var(--naranja1);
    background: linear-gradient(90deg, var(--naranja1) 0%, var(--naranja2) 100%);
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    border: none;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    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: white;
    border: none;
    color: var(--grisoscuro);
    height: 50px;
    padding: 0 30px;
    border-radius: 25px;
    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: grid;
    grid-template-columns: 3fr 1fr;
    border-radius: 12px;
}

.payments-info span,
.payout-item span {
    font-weight: 600;
    width: 100%;
    text-align: right;
}

.payout-item {
    width: 100%;
    height: 60px;
    height: max-content;
    padding: 12px;
    background-color: var(--grismedio);
    display: grid;
    grid-template-columns: 1fr 60px;
    border-radius: 12px;
    margin: auto auto 10px auto;
}

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

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

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

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