

.btn-glow-slide {
    position: relative;
    /*width: 220px;*/
    height: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    background: transparent;
    padding: 0;
    overflow: visible;
    font-family: "galix-mono", sans-serif;
}

/* glow del borde */
.btn-glow-slide::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        45deg,
        #ff0000, #ff7300, #fffb00, #48ff00,
        #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000
    );
    background-size: 400%;
    filter: blur(2px);
    border-radius: 10px;
    z-index: 0;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    animation: glowing 20s linear infinite;
}

/* base interna */
.btn-glow-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--fifthColor);
    border-radius: 10px;
    z-index: 1;
}

.btn-glow-slide:hover::before {
    opacity: 1;
}

/* capa que desliza */
.btn-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--secondColor);
    border-radius: 10px;
    z-index: 2;
    transition: width .3s ease;
}

.btn-glow-slide:hover .btn-fill {
    width: 100%;
}

/* texto */
.btn-label {
    position: relative;
    z-index: 3;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 10px;
    color: var(--secondColor);
    text-align: left;
    transition: all .3s ease;
    left:0;
    bottom: 0;
    padding-right: 40px;
}

.btn-glow-slide:hover .btn-label {
    color: var(--mainColor);
    left: 20px;

}

.btn-arrow{
    position: absolute;
    left: 10px;
    bottom: -10px;
    z-index: 2;
    color: var(--mainColor);
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease;
}

.btn-glow-slide:hover .btn-arrow{
    visibility: visible;
    opacity: 1;
    bottom: 9px;
}

.btn-circle{
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 2;
    border-radius: 9999px;
    background-color: var(--secondColor);
    width: 10px;
    height: 10px;
    visibility: visible;
    opacity: 1;
    transition: all .2s ease;
}
.btn-glow-slide:hover .btn-circle{
    opacity: 0;
    bottom: 19px;
}

.btn-vert-slide {
    position: relative;
    /*width: 220px;*/
    height: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    background: transparent;
    padding: 0;
    overflow: hidden;
    font-family: "galix-mono", sans-serif;
    min-width: fit-content;

}
.btn-vert-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--fifthColor);
    border-radius: 10px;
    z-index: 1;
}
.set-btn-style-2:after {
    background-color: var(--thirdColor);
    /*border: 1px solid var(--secondColor);*/
}
.set-btn-style-3:after {
    background-color: var(--mainColor);
    /*border: 1px solid var(--secondColor);*/
}
.btn-fill-vert {
    position: absolute;
    inset: 0;
    height: 0%;
    background: var(--secondColor);
    border-radius: 10px;
    z-index: 2;
    transition: height .3s ease;
}

.btn-vert-slide:hover .btn-fill-vert {
    height: 100%;
}
.btn-vert-slide:hover .btn-label {
    color: var(--mainColor);
    bottom: 15px;
}
.btn-vert-slide:hover .btn-circle{
    opacity: 0;
    bottom: 19px;
}

/*.btn-arrow{
    position: absolute;
    left: 10px;
    bottom: -10px;
    z-index: 2;
    color: var(--mainColor);
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease;
}*/

.btn-vert-slide:hover .btn-arrow{
    visibility: visible;
    opacity: 1;
    bottom: 9px;
}

@keyframes glowing {
    0%   { background-position: 0 0; }
    50%  { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.lateral-bar{
    position: fixed;
    right: 0;
    top: 0;

    width: var(--lateral-bar);
    z-index: 999999;
    background-color: var(--mainColor);
    display: flex;
    flex-direction: column;
    transition: right 1.3s ease;
    height:100dvh;
    visibility: hidden;
}
.lateral-bar.hide{
    right: calc(var(--lateral-bar) * -1);
}
.lateral-bar .burguer{
    background-color: var(--secondColor);
    width: 100%;
    height: var(--lateral-bar);
    font-size: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    flex-shrink: 0;
    transition: background-color .3s ease;
    cursor: pointer;
}
.lateral-bar .burguer:hover{
    background-color: var(--fifthColor);
}

.lateral-bar .opcion{
    writing-mode: vertical-rl;
    font-family: "galix-mono", sans-serif;
    color: var(--secondColor);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 5px;
    cursor: pointer;
}
.lateral-bar .opcion:last-child {
    writing-mode: vertical-rl;
    font-family: "galix-mono", sans-serif;
    color: var(--secondColor);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 5px;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--fourthColor);
    transition: background-color 0.3s ease;
}
.lateral-bar .opcion:last-child:hover {
    background-color: var(--seventColor);
}
.lateral-bar .opcion span{
    position: relative;
    transition: color 0.3s ease;
}
.lateral-bar .opcion span.boton:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    background-color: var(--secondColor);
    transition: top .3s ease;
    z-index: -1;
}
.lateral-bar .opcion:hover span.boton{
    color: var(--mainColor);
}
.lateral-bar .opcion:hover span.boton:before{
    top: 0;
}
/*.lateral-bar .opcion:first-child{
    margin-bottom: 30px;
}*/

.lateral-bar .opciones{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 30px;
}
.front-mouse{
    position: fixed;
    inset: 0;
    z-index: 999999;
    pointer-events: none;
    overflow: hidden;
}

.front-mouse .pointer{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translate3d(-9999px,-9999px,0) rotate(0deg);
    will-change: transform, opacity;
    pointer-events: none;
    color: var(--mainColor);
    font-size: 5em;
}
.front-mouse .pointer .circle{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--fourthColor);
    display: flex;
    align-items: center;
    justify-content: center;
}
.front-mouse .pointer .circle i{
    transform: rotate(-135deg);
}
.top-bar{
    position: fixed;
    z-index: 999998;
    left: 0;
    top: 0;
    right: var(--lateral-bar);
}
.top-bar .logo-mini-black{
    position: absolute;
    right: 10px;
    width: 80px;
    top: 20px;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.top-bar .logo-mini-black:hover{
    transform: scale(1.1);
}
.top-bar .logo-mini-magenta{
    position: absolute;
    right: 10px;
    width: 80px;
    top: 20px;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.top-bar .logo-mini-magenta:hover{
    transform: scale(1.1);
}
.top-bar .cc3-0{
    position: absolute;
    left: 10px;
    top: 20px;
    opacity: 1;
    color: var(--secondColor);
    font-size: 2em;
    letter-spacing: -1px;
    font-weight: 500;
    line-height: 1em;
    display: flex;
    flex-direction: row;
    transition: all 1s ease;
    align-items: center;
}
.top-bar .cc3-0 .linea{
    height: 2px;
    background-color: var(--secondColor);
    width: 30px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}
.top-bar .clientes{
    position: absolute;
    left: 10px;
    top: 20px;
    opacity: 1;
    color: var(--mainColor);
    font-size: 2em;
    letter-spacing: -1px;
    font-weight: 500;
    line-height: 1em;
    display: flex;
    flex-direction: row;
    transition: all 1s ease;
    align-items: center;
}
.top-bar .clientes .linea{
    height: 2px;
    background-color: var(--mainColor);
    width: 20px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}
.top-bar .nosotros{
    position: absolute;
    left: 10px;
    top: 20px;
    opacity: 1;
    color: var(--secondColor);
    font-size: 2em;
    letter-spacing: -1px;
    font-weight: 500;
    line-height: 1em;
    display: flex;
    flex-direction: row;
    transition: all 1s ease;
    align-items: center;
}
.top-bar .nosotros .linea{
    height: 2px;
    background-color: var(--secondColor);
    width: 30px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}
.top-bar .hide{
    visibility: hidden;
    opacity: 0;
    top:-100px;
}
.top-bar .gradiente{
    position: absolute;
    top: 0;
    left: 0;
    right: calc(var(--lateral-bar) * -1);
    height: 120px;
    mix-blend-mode: multiply;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(
          180deg,
          rgba(0,0,0,1),
          rgba(0,0,0,0)
        );
}

.btn-circle-big{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 0;
    background-color: var(--fourthColor);
    text-align: center;
    font-family: "galix-mono", sans-serif;
    display: flex;
    color: var(--secondColor);
    transition: background-color 0.3s ease,
        transform 0.1s ease,
        color 0.2s ease;
    cursor: pointer;
}
.btn-circle-big:hover{
    background-color: var(--secondColor);
    transform: scale(1.1);
    color: var(--mainColor);
}
.btn-circle-big .centro{
    width: 100%;
    height: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}
.btn-circle-big .centro i{
    transform: rotate(-135deg);
}
.back-filters{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(10, 1fr);
    z-index: 1;
    mix-blend-mode: overlay;
}
.back-filters .overlay-blend-1{
    grid-area: 1 / 1 / 11 / 7;
    background-color: var(--seventColor);
    transition: all 0.9s ease;

}
.footer{
    position: relative;
    width: calc(100% - var(--lateral-bar));
    padding: 20px;
    padding-top: 150px;
    background-color: var(--secondColor);
    color: var(--mainColor);
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    box-sizing: border-box;
    visibility: hidden;
    z-index: 1;

}
.footer .text-big{
    grid-area: 1 / 1 / 2 / 13;
    font-size: 2em;
    line-height: 1em;
    letter-spacing: -2px;
}
.footer .newsletter{

    grid-area: 2 / 1 / 3 / 13;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    display: none;
}
.footer .newsletter .text{
    font-size: 1em;
    text-transform: uppercase;
}
.footer .newsletter .input-wrapper {
    width: 90%;
    position: relative;
}
.footer .newsletter input {
    width: inherit;
    position: relative;
}
.footer .newsletter .input-wrapper::after {
    content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);

  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondColor);
}
.footer .info {
    margin-top: 20px;
    grid-area: 3 / 1 / 6 / 13;
    display: flex;
    flex-direction: column;
    font-size: 1em;
    align-items: flex-start;
    padding-left: 0;
}
.footer .info .title{
    font-weight: 900;
    margin-bottom: 20px;
}
.footer .info .dato{
    display: flex;
    flex-direction: row;
    line-height: 1.4em;
}
.footer .info .dato i{
    margin-right: 10px;

}
.footer .info .espacio{
    height: 20px;
}
.footer .info .espacio-2{
    height: 10px;
}
.footer .info .small{
    font-size: 0.8em;
    line-height: 1em;
    margin-bottom: 20px;
}
.footer .info .ubicacion {
    font-weight: 100;
}
.footer .menu{
    display: flex;
    font-size: 1em;
    gap: 5px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.footer .menu.menu-1{
    margin-top: 30px;
    grid-area: 6 / 1 / 7 / 13;
}
.footer .menu.menu-2{
    grid-area: 7 / 1 / 8 / 13;
}
.footer .menu .item{
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 0 4px;
}
.footer .menu .item b{
    font-weight: 900;
    margin-bottom: 0px;
}
.footer .menu .item:has(a){
    /*text-align: right;*/
    justify-content: flex-end;
    position: relative;
    text-align: right;
}
.footer .menu .item:has(a):before{
    content: "|";
    position: absolute;
    left: -4px;
}
.footer .menu .item:has(b){
    justify-content: flex-end;
}
.footer .menu .item .small{
    font-size: smaller;
}

.footer .logo{
    margin-top: 30px;
    grid-area: 8 / 1 / 11 / 5;
}
.footer .banner{
    display: none;
    grid-area: 6 / 6 / 11 / 13;
    /*background-color: var(--seventColor);*/
    background: linear-gradient(90deg, var(--seventColor) 60%, var(--eightColor));
    position: relative;
}
.footer .banner img{
    position: absolute;
    right: 20px;
    bottom: 20px;
    height: 80px;
}
.footer .banner .titulo{
    position: absolute;
    left: 20px;
    top: 20px;
    width: 50%;
    font-size: 3em;
    line-height: 0.9em;
    letter-spacing: -2px;
}
.footer .redes{
    grid-area: 9 / 6 / 10 / 13;
    display: flex;
    flex-direction: column;
    font-size: 1em;
    gap: 5px;
    align-items: flex-end;
    padding-bottom: 0;
}
.footer .redes i{

    transform: rotate(180deg);
}
.footer .idioma{
    margin-top: 20px;
    grid-area: 10 / 11 / 11 / 13;
    font-size: 0.9em;
    text-align: right;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 5px;
}
.header-section{
    width: calc(100% - var(--lateral-bar));
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--fourthteenColor);
    /*padding-top:120px;*/
    color: var(--secondColor);
    /*min-height: 100vh;*/
    justify-content: space-between;
}

.header-section .header-title{
    /*font-size: 8em;*/
    font-size: 2em;
    font-weight: 600;
    flex: 0 0 20%;
    background: linear-gradient(90deg, var(--seventColor), var(--nineColor));
    background-size: 200% 100%;
    background-position: 0% 50%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s ease-in-out infinite alternate;
    text-wrap: auto;
    word-wrap: break-word;
    line-height: 0.8em;
    text-transform: uppercase;
    padding-bottom: 30px;
}


@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.header-section .header-title i{
    transform: rotate(-135deg);
    margin: 3px;
    margin-bottom: 20px;
    font-size: 0.8em;
    /*color: var(--mainColor);*/
}
.header-section .header-subtitle{
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 2em;
    font-weight: 200;
    line-height: 1em;
    justify-content: flex-end;
}
.header-section .header-menu{
    margin-top: 30px;
    flex: 0 0 15%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}
.header-section .header-menu button{
    flex: 1;
}
.header-section .header-menu .btn-vert-slide{
    height: 70px;
}
.header-section-2{
    width: calc(100% - var(--lateral-bar));
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--fourthteenColor);
    padding-top:120px;
    color: var(--secondColor);
    min-height: 100vh;
    justify-content: space-between;
}
.header-section-2 .header-2-top{
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.header-section-2 .header-2-top .header-2-list-top{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 1em;
    justify-content: space-between;
    font-weight: 600;
    gap: 20px;
}
.header-section-2 .header-2-top .header-2-subtitle{
    text-align: center;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 1em;
}
.header-section-2 .header-2-middle{
    display: flex;
    flex-direction: column;
    flex: 3;
    justify-content: center;
}
.header-section-2 .header-2-middle .header-2-title{
    text-align: center;
    font-size: 3em;
    line-height: 0.8em;
    text-transform: uppercase;
    width: min(100%, 1000px);
    box-sizing: border-box;
    margin: 0 auto;
}
.header-section-2 .header-2-bottom .header-2-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 1em;
    justify-content:space-around;
    font-weight: 600;
    gap: 20px;
}
.end-section {
    width: calc(100% - var(--lateral-bar));
    display: flex;
    flex-direction: column;
    background-color: var(--fourthteenColor);
    padding: 20px;
    padding-bottom: 40px;
    padding-top: 140px;
    box-sizing: border-box;
    gap: 40px
}
.end-section .end-title{
    font-size: 2em;
    font-weight: 600;
    flex: 3;
    color: var(--secondColor);
    line-height: 1em;
}
.end-section .end-body{
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
}
.ui-big-text{
    padding: 20px;
    margin-top: 100px;
    display: flex;
    width: 100%;
    flex-direction: column;
    font-size: 2em;
    line-height: 1em;
    position: relative;

    position: relative;
    box-sizing: border-box;
    margin-bottom: 40px;
}
.ui-big-text::after{
    content: "";
    position: relative;
    transform: translate(0, 10px);
    /*width: 100%;*/
    height: 2px;
    background-color: currentColor;
    box-sizing: border-box;
}

.ui-flex-dual{
    display: flex;
    width: min(100%, 1000px);
    box-sizing: border-box;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    gap: 40px;
    margin: 0 auto;
}
.ui-info-box{
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: min(320px, 80vw);
    padding: 10px;
}
.ui-h1{
    font-size: 2.5em;
    font-weight: 100;
    margin: 20px 0;
}
.ui-h2{
    font-size: 2em;
    font-weight: 600;
    margin: 20px 0;
}
.ui-h3{
    font-size: 1.5em;
    font-weight: 100;
    margin: 20px 0;
}
.ui-info-title{
    font-size: 3em;
    line-height: 1em;
}
.ui-info-title-xl{
    font-size: 5em;
    line-height: 1em;
}
.ui-info-sub-title{
    font-size: 2em;
    line-height: 1em;
}
.ui-space-1{
    height: 40px;
}
.ui-space-2{
    height: 100px;
}
.ui-space-mini{
    height: 20px;
}
.ui-only-button{
    display: flex;
    align-items: flex-end;
    height: stretch;
}
.ui-flex-end{
    justify-content: flex-end
}
.ui-area-clara{
    width: 100%;
    overflow: hidden;
    background-color: var(--fourthteenColor);
    color: var(--secondColor);
    display: flex;
    flex-direction: column;
}
.ui-area-dark{
    width: 100%;
    overflow: hidden;
    background-color: var(--secondColor);
    color: var(--mainColor);
    display: flex;
    flex-direction: column;
}
.ui-list-simple{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}
.ui-list-simple{
    font-size: 1.5em;
}
.ui-flex-simple{
    display: flex;
    width: min(100%, 1000px);
    box-sizing: border-box;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    margin: 0 auto;
}
.ui-centrado{
    text-align: center;
}
.ui-flex-centrado{
    align-items: center
}
.ui-flex-expandido{
    justify-content: space-between;
}
.ui-info-number{
    font-size: 8em;
    font-weight: 100;
}
.ui-uppercase{
    text-transform: uppercase;
}
.ui-carrousel-wrap {
    overflow: hidden;
    width: 100%;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.ui-carrousel-list {
  display: flex;
  gap: 40px;
  width: max-content;
}
.ui-carrousel-list.force-rect {
  display: flex;
  gap: unset;
  width: 100%;
    flex-direction: row;
}

.ui-carrousel-list .card {
  flex: 0 0 auto;
    background-color: var(--mainColor);
    padding: 80px;
    filter: grayscale(100%);
}
.ui-carrousel-list .card.force-rect {
    min-width: 300px;
    height: 300px;
    flex: unset;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-end;
    max-height: 30dvh;
    filter: none;
    padding: 0;
}
.ui-carrousel-list .card .icon {
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 40px;
    right: 0;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ui-carrousel-list .card .icon img {
    max-height: 100%;
}
.ui-carrousel-list .card .panel {
    padding: 10px;
    font-size: 1.5em;
    line-height: 0.9em;
}
.ui-list-wrap{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
}
.fi{
    filter: grayscale(80%);
}
.ui-img-mini{
    width: fit-content;
    height: auto;
}
.ui-grid-3x2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}
.ui-grid-3xAuto{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    gap: 20px;
}
.ui-gap-mini{
    gap:10px;
}
.ui-gap-big{
    gap:40px;
}
.ui-no-gap{
    gap: 0;
}
.ui-no-margin{
    margin: 0;
}
.ui-no-padding{
    padding: 0;
}
.ui-padding-mini{
    padding: 20px;
}
.ui-margin-mini{
    margin: 20px;
}
.ui-line-height-regular{
    line-height: 1em;
}
.ui-linea{
    height: 1px;
    box-sizing: border-box;
    width: 100%;
    background-color: currentColor;
}
.ui-label{
    font-size: 1em;
    padding: 10px;
    width: fit-content;
}
.ui-lista-punto{
    position: relative;
}
.ui-lista-punto:before{
    position: absolute;
    content: '';
    top: -10px;
    height:3px;
    width: 10px;
    background-color: currentColor;
}

.ui-button-icon-normal{
    font-size: 1em;
    background-color: unset;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    padding: 0 10px;
}
.ui-button-icon-normal:hover{
    color: var(--mainColor);
    background-color: var(--secondColor);
}
.ui-zone-to-reveal{
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    display: none;
}
.ui-p-small{
    font-size: 0.9em;
}
.ui-font-size-2{
    font-size: 2em;
}
.ui-form-big{
    width: min(100%, 600px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
    margin: 0 auto;
}
.ui-flex-simple{
    display: flex;
    flex-direction: column;
}
.menu-overlay{
    position: fixed;
    top: 0;
    right: var(--lateral-bar);
    width: min(100%, 400px);
    /*height: 300px;*/
    background-color: var(--mainColor);
    z-index: 9999999;
    border: 1px solid var(--secondColor);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    color: var(--secondColor);
    transition: top 0.3s ease-in-out;
}
.menu-overlay.hide{
    top:-120dvh;
}
.menu-overlay .menu-box-simple{
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--secondColor);
}
.menu-overlay .menu-box-dual{
    display: flex;
    flex-direction: row;
    padding: 10px;
    border: 1px solid var(--secondColor);
}
.menu-overlay .menu-close{
    position: absolute;
    top: -6px;
    right: 2px;
    font-size: 3em;
    color: var(--secondColor);
    transition: transform 0.1s ease-in-out;
    cursor: pointer;
}
.menu-overlay .menu-close:hover{
    transform: scale(1.2);
}
.ui-bold{
    font-weight: bold;
}
.ui-hairline{
    font-weight: 100;
}