#burger-menu-movile {
  display: none; /* Oculto por defecto */
}

@media (max-width: 1200px) {
  #burger-menu-movile {
    display: block !important; /* Se muestra en resoluciones <=1200px */
  }
}

.icon-menu {
    min-width: 190px;
}

.menu-item:hover {
    text-decoration: none;
}

/* Submenu container styles */
.sub-menu {
    border-radius: 0 0 12px 12px;
    background: color-mix(in srgb, var(--color-palette-ghost-white-light) 90%, transparent);
    max-width: 100% !important;
    left: 0 !important;
    right: 0;
    padding: 27px 20px;
}

/* Submenu list layout */
.sub-menu-list {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}
/* Adjust gap when there are exactly 7 items */
.sub-menu-list:has(img):has(> *:nth-child(7):last-child) {
    gap: 30px;
}

/* Adjust gap when there are exactly 4 items */
.sub-menu-list:has(img):has(> *:nth-child(4):last-child) {
    gap: 80px;
}

.sub-menu-list:has(> *:nth-child(4):last-child) {
    gap: 26px;
}

/* Submenu item base style */
.sub-menu-item {
    padding: 0;
}

.login-link {
    display: flex!important;
    gap: 15px!important;
    font-size: 16px;
}
.login-link span{
    font-size: 16px;
    font-family: Lato;
}

.profile-link {
    display: flex!important;
    gap: 15px!important;
    border: none !important;
}

.profile-link-user-name {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

/* Hover effect on submenu items */
.sub-menu-item:hover {
    border-radius: 12px;
    background: #dcd5e1;
}

/* Submenu link styles */
.sub-menu a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 22px 30px;
}

/* Adjust padding if link contains an image */
.sub-menu a:has(img) {
    padding: 22px 15px !important;
    min-height: 255px;
}

/* Submenu heading styles */
.sub-menu h4 {
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    color: var(--color-palette-soap-dark-active);
}

/* Submenu paragraph styles */
.sub-menu p {
    font-family: "Red Hat Display";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    font-feature-settings: 'liga' off, 'clig' off;
    color: var(--color-palette-ghost-white-dark-active);
}

/* Highlighted span text */
.sub-menu span {
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    color: var(--color-palette-yellow-orange-dark) !important;
}

/* Top-level navbar menu layout */
.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    align-content: space-between;
    width: 100%;
    padding: 0 100px;
}

.navbar-menu a[aria-expanded="true"], .item-menu-active, .uk-navbar-nav > li > a[aria-expanded="true"]  {
    color: var(--color-palette-yellow-orange-light-active)!important;
    font-weight: 700!important;
}

/* Menu list layout */
.menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.menu-label {
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}
@media (min-width: 1200px) {
    .login-link {
        min-width: 160px;
    }
}
@media (min-width: 960px) and (max-width: 1200px) {
    .sub-menu-list {
        gap: 12px;
    }

    .sub-menu a {
        padding: 22px 15px
    }

    .navbar-menu {
        padding: 0 50px;
    }
}
@media (max-width: 960px) {
    .navbar-menu {
        padding: 0 1rem;
    }
    .sing-in {
        visibility: hidden;
        display: none;
    }
}
@media (min-width: 960px) {
    .navbar-menu {
        padding: 0 40px;
    }
}

@media (max-width: 430px) {
    .profile-link-user-name{
        visibility: hidden;
        display: none;
    }
}
.uk-navbar-nav > li:hover > a {
    color: white!important;
}

.sixth-sense {
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Red Hat Display";
    font-size: 22.39px;
    font-style: normal;
    font-weight: 800;
    line-height: 19px;
    letter-spacing: 1.343px;
    opacity: 0.7;
    min-width: 140px;
    margin: 0;
}

.text-logo{
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Lato;
    font-size: 11.195px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.151px; /* 180% */
    letter-spacing: 2.183px;
}


.menu-left {
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
    backdrop-filter: blur(47.5px);
    padding: 0px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-left::-webkit-scrollbar, .training-list-per-day::-webkit-scrollbar {
    display: none;
}

.menu-left li > a,  .menu-left li > span {
    border-top: solid .5px #ffffff5e;
    padding: 15px 20px;
    color: var(--color-palette-soap-light)!important;
    text-align: center;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.152px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-left li > a:last-child{
    border-bottom: solid .5px #ffffff5e;
}

.menu-left .logo-container {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.menu-left .sixth-sense-text {
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 22.39px;
    font-style: normal;
    font-weight: 800;
    line-height: 19px;
    letter-spacing: 1.343px;
    min-width: 140px;
    margin: 0;
}


.menu-left .harmony-text {
    color: #FFF;
    font-family: Lato;
    font-size: 11.195px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.151px;
    letter-spacing: 2.183px;
}

.menu-left .submenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 18px;
    margin: 0px;
    color: #FFF;
}

.menu-left .submenu a {
    font-size: 16px;
    padding: 13px;
}

.menu-left .uk-accordion-title::before {
    display: none;
}

.menu-left .uk-accordion-title::after {
    content: "";
    width: 1.4em;
    height: 1.4em;
    margin-left: 3px;
    margin-top: 3px;
    float: right;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.93738 0.38501L6.99988 5.44751L12.0624 0.38501L13.2556 1.57825L6.99988 7.834L0.744141 1.57825L1.93738 0.38501Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.menu-left .uk-open>.uk-accordion-title::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.0626 7.83398L7.00012 2.77148L1.93762 7.83399L0.744373 6.64074L7.00012 0.384999L13.2559 6.64074L12.0626 7.83398Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

.menu-left .uk-open>.uk-accordion-title{
    color: #FDE6C1 !important;
}

.btn-logout {
    border-radius: 0px 0px 16px 16px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    padding: 0px 21.223px 0px 21px;
    justify-content: center;
    align-items: center;
    border: none;
    color: white;
}
.form-logout {
    margin: 0px;
}


.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, 0)!important;
}

.profile .uk-dropdown {
    border-radius: 0px 0px 16px 16px!important;
    background: rgba(255, 255, 255, 0.15)!important;
    justify-content: center!important;
    align-items: center!important;
    border: none!important;
    color: white!important;
    min-width: auto!important;
    flex-direction: column;
    padding: 0px!important;
    padding-bottom: 10px!important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
    top: 50px !important;
}

.profile .uk-dropdown a, .uk-dropdown button{
    padding: 10px 21px 0px 21px!important;
    background: transparent;
    border: none;
    color: white;
    font-family: Lato;
    font-size: 15.435px;
    font-style: normal;
    font-weight: 400;
    display: block;
    cursor: pointer !important;
}

.uk-dropdown a:hover{
    text-decoration: none
}


.modal-delete{
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    min-height: 220px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.modal-delete h2{
    text-align: center;
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    color: white;
}

.btn-modal-delete {
    width: 45%;
}

.navbar-menu-admin {
    text-transform: capitalize;
    max-width: 520px!important;
    gap: 30px;
    list-style-type: none;
    padding: 0px!important;
}

.navbar-menu-admin > li  {
    padding: 20px;
    font-family: Lato;
    font-size: 15.435px;
    font-style: normal;
}
.navbar-menu-admin > li > a {
    color: #FBFAFD;
    text-decoration: none;
}

.menu-admin {
    background-color: #625B69!important;
    padding: 10px 0px;
}

@media (max-width: 960px) {
    .btn-modal-delete {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .btn-modal-delete {
        width: 100%;
    }

    .menu-admin {
        background-color: #5b5263;
        padding: 10px 1rem;
    }

}

@supports (-webkit-appearance: none) {
    .dropdown-safari-fix {
        left: 25% !important;
    }
}

