
/**********
Global styles across the application.
**********/

*{
    font-smooth: almays;
    text-shadow: 0px 0px 1px transparent;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}
@-moz-document url-prefix() {
    body {
        font-weight: lighter !important;
    }
}
body, html {
    min-height: 100%;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
    font-family: var(--font-normal);
    background: var(--black);
    color: var(--gray);
}
body {
    transition: opacity 0.5s var(--curve);
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
} 
html {
    scroll-behavior: initial;
    font-size: calc((1 / 1440) * 100vw);
    @media (max-width: 1024px) {
        font-size: 1px;
    }
    &.small-modal-open, &.search-open, &.nav-dropdown-open {
        overflow: hidden !important;
    }
}
.no-transition, .no-transition * {
    transition: none !important;
}
.no-transform, .no-transform * {
    transform: none !important;
}
#block-gssi-latam-tabs {
    display: none;
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
}
a:focus {
    outline: none;
}
hr {
    color: inherit;
}
svg {
    fill: currentColor;
}
.gssi-row {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    gap: 20px;
}

.gssi-row-container {
    width: 100%;
    display: flex;
    max-width: calc(100% - var(--margin) * 2);
}

.gssi-col {
    display: flex;
    flex-direction: column;
}

button:focus, input:focus, textarea:focus, select:focus {
    outline: none;
}
.underline{
    position: relative;
    cursor: pointer;
}
.underline::after{
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0px;
    left: 0;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: transform 0.6s cubic-bezier(0.35, 0.42, 0, 1);
}
.underline:hover::after {
    transform: scaleX(1);
    transform-origin: 0% 50%;
}
.underline.reverse::after {
    transform: scaleX(1);
}
.underline.reverse:hover::after {
    transform: scaleX(0);
}

#header #navbar-top {
    padding-top: 3px;
    padding-bottom: 3px;
    background-color: black;
}

.header .navbar .region-secondary-menu .navbar-brand {
   
}

.header .navbar .region-secondary-menu .navbar-brand img {
    width: auto;
    height: 60px;
}
.hidden {
    display: none !important;
}
.no-transform {
    &, * {
        transform: none !important;
    }
}
.no-transition {
    &, * {
        transition: none !important;
    }
}
html.is-leaving body {
    opacity: 0 !important;
}
[data-fade-in] {
    transition: opacity 1s ease-in;
    &:not(.show) {
      opacity: 0 !important;
    }
}
@media (max-width: 800px) {
    .mobile-vertical {
        flex-direction: column;
    }
    .gssi-row-container {
        width: calc(100vw - 40px);
        padding-left: 20px;
        padding-right: 20px;
    }
}

html[data-theme="light"] {
    &:root {
        --title-color: var(--black);
    }
    body, & {
        background: var(--white);
        color: var(--black);
    }
}
html.loaded {
    .hide-on-logged {
        display: none !important;
    }
}
form.user-login-form {
    margin-top: 150px;
    padding-left: 50px;
}
