@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');

*,
::after,
::before {
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.ui-top-nav {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
    padding-left: 0;
    margin: 0;
    transition: background-color .3s ease-out;
    background-color: #fff;
    min-height: 72px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}

.ui-top-nav.menu-expanded {
    background-color: #fff;
}

.ui-top-nav.nav-fixed {
    position: fixed;
    top: 0;
    z-index: 1020;
}

.ui-top-nav.nav-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
    overflow: hidden;
}

.ui-top-nav a {
    font-family: var(--ui-font) !important;
    font-size: 17px;
    font-weight: bolder;
    position: relative;
}

.ui-top-nav.menu-expanded .ui-brand {
    color: #000;
}

.ui-nav-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.ui-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.ui-nav-left {
    padding: 0 8px;
    padding-left: 0;
    justify-content: center;
}

.ui-box-toggler {
    position: relative;
}

.ui-box-toggler {
    position: relative;
}

.button-toggler-expand {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    color: var(--ui-orange);
}

.ui-brand {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.ui-brand .ui-icono {
    margin-right: 16px;
    position: relative;
    font-size: 1.25em !important;
    color: var(--ui-red);
}

.ui-brand .ui-tag {
    animation: fadeInUp .6s ease;
}

.ui-bar-social {
    padding: 0;
    margin: 0;
    justify-content: center;
    margin-left: auto;
    flex-direction: row !important;
}

.ui-bar-social .item-li {
    width: auto !important;
}

.ui-bar-social .link-item {
    background-color: var(--ui-red) !important;
    padding: 0 !important;
}

.ui-bar-social .ui-icono {
    margin: 0 !important;

    font-size: 1.25em !important;
    color: #fff !important;
    opacity: 1 !important;
}

.ui-nav-left .ui-lista-items .link-item {
    color: rgb(0 0 0 / 0.4) !important;
    margin: 8px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.ui-nav-right .ui-lista-items .link-item {
    padding: 6px;
    display: inline-flex;
    background-color: transparent;
    font-weight: bolder;
    font-size: 13.75px;
    align-items: center;
    text-transform: uppercase;
    flex-direction: row-reverse;
}

.ui-nav-right .ui-lista-items .link-item:hover .ui-icono {
    opacity: 1;
}

.ui-top-nav.menu-expanded .ui-nav-right .ui-lista-items .link-item {
    color: #000;
}

.ui-nav-right .ui-lista-items .link-item .ui-tag {
    padding-right: 6px;
}

.ui-top-nav.menu-expanded .ui-nav-right .ui-lista-items .link-item {
    box-shadow: none;
}

.ui-nav-right .ui-lista-items .link-item .ui-icono {

    color: var(--ui-red);

    transition: opacity .6s ease-out;
    width: 16px;
    height: 16px;
    transform: scale(0.8);
}

.ui-top-nav.menu-expanded .ui-nav-right .ui-lista-items .link-item .ui-icono {
    animation: fadeInUp 0.3s ease-out;
}

.ui-expand,
.ui-expand-not-fixed {
    display: flex;
}

.ui-expand .ui-lista-items {
    justify-content: flex-end;
}

.session-item {
    margin: 6px;
}

.button-toggler-expand.ui-close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 16px !important;
    background: transparent;
    color: var(--ui-red);
}

.button-toggler-expand.ui-close .ui-icono {
    font-size: 2.5em;
}

#TopBarUI .button-toggler-expand {
    border-radius: 50% !important;
}

#TopBarUI .button-toggler-expand .ui-icono {

    border-radius: 50%;
}

#TopBarUI .button-toggler-expand .ui-icono img {
    object-fit: contain;
    box-shadow: 0 0 0 4px var(--ui-red);
    border-radius: 50%;
}

#TopBarUI>.button-toggler-expand {
    visibility: hidden;
}

#TopBarUI>.button-toggler-expand.ui-start {
    visibility: visible !important;
}

#TopBarUI>.button-toggler-expand .ui-icono img {
    padding: 6px;
    filter: drop-shadow(2px 4px 6px #000);
    object-fit: contain;
}

.link-item.session-item {
    background-color: var(--ui-red) !important;
    color: #fff !important;
    border-radius: 24px;
    padding: 8px 16px !important;
    box-shadow: 0 0 14px var(--ui-red);
}

.link-item.session-item .ui-icono {
    color: #fff !important;
}

.ui-expand-not-fixed .ui-lista-items .link-item.session-item {
    color: #fff !important;
}

/* Portrait phone */
@media (max-width: 575.98px) {

    .ui-top-nav {
        padding: 0;
    }

    .ui-brand {
        color: #000 !important;
    }

    .button-toggler-expand {
        display: flex;
    }

    .ui-expand {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #fff;
        z-index: 1020;
        animation: fadeOutLeft .3s ease-out;
        animation-fill-mode: forwards;
        overflow: auto;
        visibility: hidden;
    }

    .ui-expand .button-toggler-expand {
        border: 0;
        width: 48px;
        box-shadow: unset;
        margin: 0 auto;
        margin-bottom: 24px;
    }

    .ui-expand.ui-start {
        visibility: visible !important;
    }

    .ui-expand.menu-expanded {
        animation: fadeInLeft .3s ease-out;
    }

    .ui-expand.menu-expanded .button-toggler-expand {
        animation: fadeInUp 0.9s ease;
    }

    .ui-expand-not-fixed {
        position: absolute;
        width: 100%;
        height: calc(100% + 1px);
        top: 0;
        left: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: scroll;
    }



    .ui-expand-not-fixed .ui-lista-items {
        flex-direction: column;
        align-items: center;
    }

    .ui-expand-not-fixed .ui-lista-items .item-li {
        width: 100%;
    }

    .ui-expand-not-fixed .ui-lista-items .link-item {
        display: inline-flex;
        padding: 9px;
        color: rgb(0 0 0 / 80%) !important;
        margin: 0 auto;
        box-shadow: none;
    }

    .ui-middle-options .ui-brand-nav {
        display: none;
    }

    .ui-middle-options {
        height: auto;
    }

    .ui-form {
        width: 100% !important;
        padding: 0 !important;
    }

    .ui-form .ui-form-group {
        margin: 0 !important;
    }

    .nav-ui-top .ui-bottom-options .ui-lista-items .link-item .ui-icono {
        background-color: var(--ui-yellow);
    }

    #TopBarUI>.button-toggler-expand {
        position: fixed;
        top: 0;
        left: 0;
        margin: 4px;
        border-radius: 50%;
        background-color: var(--ui-red);
        z-index: 1020;
        border: 0;
        animation: fadeOutUp .6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        animation-fill-mode: forwards;
        visibility: hidden;
    }

    #TopBarUI>.button-toggler-expand.ui-start {
        visibility: visible !important;
    }

    #TopBarUI>.button-toggler-expand .ui-icono {
        color: #fff;
        border-radius: 50%;
        width: 64px;
        height: 64px;
        animation: shadow-pulse 1.2s infinite;
    }

    #TopBarUI.menu-expanded>.button-toggler-expand {
        animation: fadeInDown .6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .button-toggler-expand {
        background: #fff;
        color: #fff;
        border-radius: 50%;
        padding: 0;
        margin: 0;
    }

    .ui-nav-item {
        width: 100%;

        padding: 0 4px;
    }

    .ui-nav-right {
        height: 0;
    }
}

.ui-button-toggler {
    position: absolute !important;
    right: 0;
    top: -16px;
    margin: 6px;
    border-radius: 50%;
    animation: shadow-pulse 1s infinite;
    border: 0;
    background-color: var(--ui-red);
    width: 56px !important;
    height: 56px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Landscape phone */
@media (min-width: 576px) and (max-width: 1199.98px) {

    .ui-brand {
        color: #000 !important;
    }

    .ui-expand {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #fff;
        z-index: 1020;
        animation: fadeOutLeft .3s ease-out;
        animation-fill-mode: forwards;
        overflow: auto;
        visibility: hidden;
    }

    .ui-expand .button-toggler-expand {
        border: 0;
        box-shadow: unset;
        margin: 0 auto;
        margin-bottom: 24px;
        width: 48px;
    }

    .ui-brand-title {
        height: auto;
    }

    .ui-expand.ui-start {
        visibility: visible !important;
    }

    .ui-expand.menu-expanded {
        animation: fadeInLeft .3s ease-out;
    }

    .ui-expand-not-fixed {
        position: absolute;
        width: 100%;
        height: calc(100% + 1px);
        top: 0;
        left: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: scroll;
    }

    .ui-expand-not-fixed .ui-lista-items {
        align-content: center;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .ui-expand-not-fixed .ui-lista-items .link-item {
        color: rgb(0 0 0 / 80%) !important;
    }

    .ui-expand-not-fixed .ui-lista-items .button-toggler-expand {

        margin: auto;
        justify-content: center;
    }

    #TopBarUI>.button-toggler-expand {
        position: fixed;
        top: 0;
        left: 0;
        margin: 4px;
        border-radius: 50%;
        background-color: var(--ui-red);
        z-index: 1020;
        border: 0;
        animation: fadeOutUp .6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        animation-fill-mode: forwards;
    }

    #TopBarUI>.button-toggler-expand .ui-icono {

        border-radius: 50%;
        width: 64px;
        height: 64px;
        animation: shadow-pulse 1.2s infinite;
    }

    #TopBarUI.menu-expanded>.button-toggler-expand {
        animation: fadeInDown .6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .button-toggler-expand {
        background: #fff;
        color: #fff;
        border-radius: 50%;
        padding: 0;
        margin: 0;
    }

    .ui-nav-item {
        width: 100%;
    }
}


/* PC */
@media (min-width: 1200px) {
    .button-toggler-expand {
        display: none;
    }

    .ui-button-toggler {
        display: none !important;
    }
}

.ui-badge-navigation {
    width: 88px;
    display: flex;
    align-items: center;
    height: 36px;
    padding: 4px 8px;
    margin: 4px;
    background-color: #000;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    box-shadow: 2px 2px 4px rgb(0 0 0 / 75%);
}

.ui-badge-navigation .ui-icono {
    width: 21px;
    height: 21px;
    margin-right: 9px;
}

.ui-badge-navigation .ui-icono img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-store-text {
    width: 40px;
    font-family: 'Lato';
    font-weight: 700;
    color: #fff;
    font-size: 12px;
}

.ui-badge-store .ui-icono {
    filter: invert(1);
}

.ui-items-download-app {
    display: flex;
    flex-wrap: wrap;
}

.ui-items-download-app {
    width: calc(100% - 18px);
    margin: 9px;
    display: none;
    margin-top: 24px;
}

@media (max-width: 1200px) {

    .ui-items-download-app {
        display: flex;
        justify-content: center;
    }

    .ui-badge-navigation:not(.ui-badge-mobile) {
        display: none !important;
    }
}