/* Header */
body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    /* align-content: center; */
    /* justify-content: center; */
    /* display: flex; */
}

header {
    /* position: fixed; */
    z-index: 2;
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 25px 25px 10px;
    opacity: 0;
    -webkit-transition: .4s ease;
    transition: .4s ease;
}

header.start {
    opacity: 1;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

header .logo {
    height: 24px;
}

header .wordle-txt {
    color: white;
    font-size: 16px;
    padding-right: 3px;
    line-height: 12px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: right;
    margin-right: -3px;
    font-family: monospace;
    letter-spacing: 1px;
}

.letter.current:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 25px;
    width: 3px;
    background-color: #067dc0;
    -webkit-animation: blink-caret-bg 1.5s step-end infinite;
    animation: blink-caret-bg 1.5s step-end infinite;
}

/* Content */
body {
    color: white;
    background-color: #007cbf;
    background: #lime;
    background-attachment: fixed;
}

div#tsparticles {
    pointer-events: none;
    height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
    width: 100vw;
    position: fixed;
    z-index: -1;
    opacity: .7;
}

div#tsparticles.start {
    opacity: .4;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

/* INTRO */
.intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 30px 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 300px;
    height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    position: fixed;
    top: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    pointer-events: none;
    margin: auto;
}

.intro .text-traz {
    margin-top: 5px;
}

.intro .text-traz.mobile {
    /* transform: scale(3); */
}

.intro .text-traz.fibra {
    -webkit-transform: translate(100vw, 0);
    transform: translate(100vw, 0);
}

.wordle-txt span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 25px;
    text-align: right;
    /* padding-top: 5px; */
}

.intro img {
    max-width: 100%;
}

.intro .vs-box {
    width: 70%;
    height: 160px;
    position: relative;
    z-index: -1;
    -webkit-transform: scale(10);
    transform: scale(10);
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

.vs-box.start {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.intro .vs-box .vs-traz {
    width: 90px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 1.8s cubic-bezier(0.2, 0.36, 0.63, 0.95) 0s;
    transition: 1.8s cubic-bezier(0.2, 0.36, 0.63, 0.95) 0s;
}

.intro .vs-box .vs-traz.v {
    -webkit-transform: translate(10%, -150%);
    transform: translate(10%, -150%);
}

.intro .vs-box .vs-traz.s {
    -webkit-transform: translate(-80%, 45%);
    transform: translate(-80%, 45%);
}

.intro .vs-box.start .vs-traz.v {
    -webkit-transform: translate(-60%, -80%);
    transform: translate(-60%, -80%);
}

.intro .vs-box.start .vs-traz.s {
    -webkit-transform: translate(-25%, -20%);
    transform: translate(-25%, -20%);
}

.intro .vs-box .vs-traz.effect {
    width: 100px;
    opacity: 0;
    z-index: -1;
    -webkit-transform: rotate(1deg) translate(-50%, -50%);
    transform: rotate(1deg) translate(-50%, -50%);
    -webkit-transition: 1s ease-in-out .5s;
    transition: 1s ease-in-out .5s;
    -webkit-filter: brightness(1);
    filter: brightness(1);
}

.intro .vs-box.start .vs-traz.effect {
    -webkit-transform: rotate(0deg) translate(-50%, -50%);
    transform: rotate(0deg) translate(-50%, -50%);
    width: 170px;
    opacity: 1;
    -webkit-filter: brightness(1.3);
    filter: brightness(1.3);
}

.intro.start {
    opacity: 0;
    -webkit-transform: translate(-50%, 0%) scale(.5);
    transform: translate(-50%, 0%) scale(.5);
}

/* GAME */
.game {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    opacity: 0;
    /* height: 90%; */
    /* height: calc(100vh - 75px); */
    /* mobile viewport bug fix */
    /* min-height: -webkit-fill-available; */
}

.game.start {
    opacity: 1;
    /* transform: translate(-50%, 0%); */
}

.sublogo {
    height: 80px;
    /* width: 470px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.sublogo img.text-traz {
    height: 34px;
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

.sublogo img.text-traz.mobile {
    height: 40px;
    -webkit-transform: translate(0px, -5px);
    transform: translate(0px, -5px);
}

.sublogo .vs-traz {
    width: 30px;
    /* position: absolute; */
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

.sublogo .vs-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -5px 0 10px;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    position: relative;
}

.sublogo .vs-traz.effect {
    position: absolute;
    width: 60px;
    z-index: -1;
    -webkit-transform: translate(-7px, 6px);
    transform: translate(-7px, 6px);
    -webkit-filter: brightness(1.2);
    filter: brightness(1.2);
}

.sublogo .vs-traz.s {
    -webkit-transform: translate(-10px, 15px);
    transform: translate(-10px, 15px);
}

body.game-end .game-box {
    opacity: 0;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transition: .5s ease-in-out 1s;
    transition: .5s ease-in-out 1s;
}

.offer-box h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    text-align: center;
}

.offer {
    background-color: white;
    margin: 20px auto;
    width: 60%;
    max-width: 300px;
    border-radius: 0px;
    padding: 10px;
    -webkit-box-shadow: 7px 7px 0 rgb(0 0 0 / 18%);
    box-shadow: 7px 7px 0 rgb(0 0 0 / 18%);
}

.offer img {
    width: 100%;
    display: block;
}

.game-box {
    /* padding-bottom: 30px; */
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* justify-content: space-between; */
}

.offer-box {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 80px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    width: 90%;
    margin-top: 0px;
    z-index: 1;
    height: 0;
    overflow: hidden;
}

body.game-end .offer-box {
    opacity: 1;
    -webkit-transition: .5s ease-in-out 1.3s;
    transition: .5s ease-in-out 1.3s;
    pointer-events: all;
    height: auto;
    overflow: auto;
}

.buttons-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
}

p.see-you {
    font-size: 18px;
}

a.primary-btn {
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#fdec4f), to(#eba709)) 0 0 no-repeat padding-box;
    background: transparent linear-gradient(180deg, #fdec4f 0%, #eba709 100%) 0 0 no-repeat padding-box;
    text-decoration: none;
    text-align: center;
    font-size: 1.1rem;
    line-height: 45px;
    padding: 0 3rem;
    text-transform: uppercase;
    color: #005181 !important;
    -webkit-box-shadow: 4px 4px 0px rgb(0 0 0 / 18%);
    box-shadow: 4px 4px 0px rgb(0 0 0 / 18%);
    border-radius: 10px;
    font-weight: 600;
    margin: 10px 0 10px;
}

.reset-btn {
    color: white !important;
    font-size: 16px;
    text-decoration: underline;
    padding-top: 25px;
    position: relative;
    text-align: center;
}

.reset-btn:before {
    content: '';
    height: 20px;
    width: 20px;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    /*background-image: url(../images/reset.png);*/
    background-size: 100%;
}

.sublogo .vs-traz.plus {
    position: absolute;
    -webkit-transform: scale(5);
    transform: scale(5);
    left: 5px;
    top: 0px;
    width: 35px;
    position: absolute;
    opacity: 0;
    -webkit-transition: .5s ease-in-out 1.8s !important;
    transition: .5s ease-in-out 1.8s !important;
}

.game-end .sublogo .vs-traz.plus {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.game-end .sublogo .vs-traz.v {
    -webkit-transform: translate(50px, -70px);
    transform: translate(50px, -70px);
    opacity: 0;
}

.game-end .sublogo .vs-traz.s {
    -webkit-transform: translate(-50px, 70px);
    transform: translate(-50px, 70px);
    opacity: 0;
}

.game-end .sublogo .vs-traz.effect {
    opacity: 0;
    -webkit-transition: .5s ease-in-out 1.3s !important;
    transition: .5s ease-in-out 1.3s !important;
}

.game-end .sublogo .vs-traz {
    -webkit-transition: .5s ease-in-out 1.3s;
    transition: .5s ease-in-out 1.3s;
}

.game-end .sublogo img.text-traz.mobile {
    -webkit-transform: translate(7px, -5px);
    transform: translate(7px, -5px);
}

.game-end .sublogo img.text-traz.fibra {
    -webkit-transform: translate(-7px, 0px);
    transform: translate(-7px, 0px);
}

.game-end .sublogo img.text-traz {
    -webkit-transition: .2s ease-in-out 2s;
    transition: .2s ease-in-out 2s;
}

.return-game .sublogo .vs-traz.plus {
    opacity: 0;
    -webkit-transform: scale(.4);
    transform: scale(.4);
    -webkit-transition: .5s ease-in-out 0s !important;
    transition: .5s ease-in-out 0s !important;
}

.return-game .sublogo .vs-traz.v {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
    -webkit-transition: .5s ease-in-out 0s !important;
    transition: .5s ease-in-out 0s !important;
}

.return-game .sublogo .vs-traz.s {
    -webkit-transform: translate(-10px, 15px);
    transform: translate(-10px, 15px);
    opacity: 1;
    -webkit-transition: .5s ease-in-out 0s !important;
    transition: .5s ease-in-out 0s !important;
}

.return-game .sublogo .vs-traz.effect {
    opacity: 1;
    -webkit-transition: .5s ease-in-out 0s !important;
    transition: .5s ease-in-out 0s !important;
}

.return-game .sublogo img.text-traz.mobile {
    -webkit-transform: translate(0px, -5px);
    transform: translate(0px, -5px);
    -webkit-transition: .5s ease-in-out 0s !important;
    transition: .5s ease-in-out 0s !important;
}

.return-game .sublogo img.text-traz.fibra {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: .5s ease-in-out 0s !important;
    transition: .5s ease-in-out 0s !important;
}

body.return-game .offer-box {
    opacity: 0;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

body.return-game .game-box {
    opacity: 1;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

/* DEMO-SPECIFIC STYLES */
.typewriter span {
    color: #fff;
    font-family: monospace;
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    border-right: .15em solid #fff;
    /* The typwriter cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */
    margin: 0 auto;
    /* Gives that scrolling effect as the typing happens */
    display: block;
    letter-spacing: .15em;
    -webkit-animation: typing 1.25s steps(15, end), blink-caret .7s step-end 3;
    animation: typing 1.25s steps(15, end), blink-caret .7s step-end 3;
    padding-right: 0 !important;
}

.grid {
    margin: 50px auto 10px;
    width: 290px;
    /* height: 290px; */
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.grid>.row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    margin: 10px 0;
}

.letter {
    background-color: white;
    height: 50px;
    color: #067dc0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 36px;
    font-weight: 700;
    -webkit-transition: .2s;
    transition: .2s;
    position: relative;
    text-transform: uppercase;
    -webkit-box-shadow: 3px 3px 0 rgb(0 0 0 / 30%);
    box-shadow: 3px 3px 0 rgb(0 0 0 / 30%);
}

.letter[data-status="1"], .tec[data-status="1"] {
    background-color: #86cc17 !important;
    color: white !important;
}

.letter[data-status="2"], .tec[data-status="2"] {
    background-color: #e5c615 !important;
    color: white !important;
}

.letter[data-status="3"], .tec[data-status="3"] {
    background-color: #a3a3a3 !important;
    color: white !important;
}

/* The typing effect */
@-webkit-keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: #fff
    }
}
@keyframes blink-caret {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: #fff
    }
}

@-webkit-keyframes blink-caret-bg {
    from, to {
        background-color: transparent
    }

    50% {
        background-color: #067dc0
    }
}

@keyframes blink-caret-bg {
    from, to {
        background-color: transparent
    }

    50% {
        background-color: #067dc0
    }
}

.teclado > .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    /* padding: 0 10px; */
    width: 450px;
    max-width: 100%;
    /* margin: auto; */
}

.tec {
    background-color: white;
    padding: 10px 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: black;
    font-weight: 600;
    border-radius: 0px;
    line-height: 20px;
    /* width: 30px; */
    text-align: center;
    width: 100%;
    margin: 2px;
}

.tec.delete {
    font-size: 26px;
    line-height: 18px;
}

.teclado {
    background-color: rgb(0 0 0 / 10%);
    padding: 10px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 1;
}

.modal-error {
    /* position: fixed; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* bottom: 180px; */
    background-color: rgb(0 0 0 / 10%);
    color: #ffffff;
    width: 350px;
    max-width: 90%;
    margin: 10px auto;
    text-align: center;
    padding: 20px 40px;
    border-radius: 0;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    /* box-shadow: 3px 3px 0 rgb(0 0 0 / 30%); */
    -webkit-transition: .4s ease;
    transition: .4s ease;
}

.error-notValid .modal-error {
    opacity: 1;
}

.modal-error > span {
    font-weight: bold;
}

.row.complate-word.error {
    -webkit-animation: shake .5s linear 1;
    animation: shake .5s linear 1
}

.winrow {
    -webkit-animation: shake .5s linear .5s;
    animation: shake .5s linear .5s;
}

#final-text-win {
    display: none;
}

.game-win #final-text-win {
    display: block;
}

.game-win #final-text-lose {
    display: none;
}

.end-message .sup-title {
    font-size: 22px;
    padding-bottom: 15px !important;
    display: block;
}

.final-word {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 10px 0;
}

.final-word > i {
    background-color: #86cc17;
    padding: 5px 10px;
    margin: 0 3px;
    display: block;
    font-size: 17px;
    font-style: normal;
    text-transform: uppercase;
    width: 10px;
    -webkit-box-shadow: 3px 3px 0 rgb(0 0 0 / 30%);
    box-shadow: 3px 3px 0 rgb(0 0 0 / 30%);
}

.game-end-tec .teclado {
    opacity: 0;
    -webkit-transition: .4s ease;
    transition: .4s ease;
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate(3px) rotate(0deg);
        transform: translate(3px) rotate(0deg)
    }

    10% {
        -webkit-transform: translate(-3px) rotate(0deg);
        transform: translate(-3px) rotate(0deg)
    }

    20% {
        -webkit-transform: translate(-3px) rotate(0deg);
        transform: translate(-3px) rotate(0deg)
    }

    30% {
        -webkit-transform: translate(3px) rotate(0deg);
        transform: translate(3px) rotate(0deg)
    }

    40% {
        -webkit-transform: translate(3px) rotate(0deg);
        transform: translate(3px) rotate(0deg)
    }

    50% {
        -webkit-transform: translate(-3px) rotate(0deg);
        transform: translate(-3px) rotate(0deg)
    }

    60% {
        -webkit-transform: translate(-3px) rotate(0deg);
        transform: translate(-3px) rotate(0deg)
    }

    70% {
        -webkit-transform: translate(3px) rotate(0deg);
        transform: translate(3px) rotate(0deg)
    }

    80% {
        -webkit-transform: translate(-3px) rotate(0deg);
        transform: translate(-3px) rotate(0deg)
    }

    90% {
        -webkit-transform: translate(3px) rotate(0deg);
        transform: translate(3px) rotate(0deg)
    }

    to {
        -webkit-transform: translate(3px) rotate(0deg);
        transform: translate(3px) rotate(0deg)
    }
}

a.btn-info {
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: solid 2px white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white !important;
    font-size: 16px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: rgb(6 125 192);
    color: white;
    z-index: 9999;
    padding: 20px 30px;
    left: -100%;
    overflow: auto;
    -webkit-transition: .4s;
    transition: .4s;
}

.modal.open {
    left: 0%;
}

.modal .grid {
    margin: 0;
    width: 200px;
}

.modal .letter {
    font-size: 22px;
    height: 32px;
}

.modal p {
    font-size: 15px;
}

.mi-modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    color: white !important;
    font-size: 32px;
    line-height: 22px;
    padding: 10px;
}

.container-into {
    max-width: 450px;
    margin: auto;
    position: relative;
    width: 100%;
}

a.content-logo {
    display: block;
    margin: auto;
    width: 127px;
}

.single-example {
    margin: 10px 0px;
    background-color: rgb(255 255 255 / 20%);
    padding: 20px;
}

.modal .single-example p {
    margin-bottom: 0px;
}




.logo-title {
    line-height: 1;
    margin: 0;
}

.back-btn {
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .2s;
    transition: .2s;
    padding: 10px;
}
.back-btn:hover {
    -webkit-transform: translate(-2px, -50%);
    transform: translate(-2px, -50%);
}
.back-btn svg {
    width: 25px;
}
.back-btn svg path {
    fill: white;
}
@media (max-width: 450px) {
    .teclado {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }
}
