

#enunciado{
    width: calc(90%);
    margin: 40px auto 20px auto;
    font-size: 18px;
    /* font-weight: bold; */
}

#tip_btn{
    /* background: red; */
    width: 40px;
    height: 40px;
    position: absolute;
    left: 5%;
    display: none;
    align-items: center;
    justify-content: center;
}

#tip_btn img{
    display: block;
}

#tip_dialog{
    position: absolute;
    left: calc(5% + 40px);
    background: #fffed1e6;
    border: #e7debf 1px solid;
    max-width: calc(90% - 60px);
    padding: 15px;
    transform: translateY(calc(-100% + 10px));
    border-radius: 20px 20px 20px 0;
    color: var(--texto0);
    box-shadow: 20px 20px 4px rgba(0, 0, 0, 0.08);
    animation-name: tip_anime;
    animation-duration: 0.6s;
    /* animation-delay: 0.5s; */
    transform-origin:left bottom;
    display: none;
}

@keyframes tip_anime {
    0% {
        transform: scale(0.1, 0.1) translateY(-300%);
    }

    100% {
        transform: scale(1, 1) translateY(calc(-100% + 10px));
    }
}


.mini_ok{
    font-size: 14px;
}



#tip_dialog-linha1{
    font-size: 14px;
    margin-bottom: 10px;
}

#tip_dialog-linha2{
    font-size: 18px;
    font-weight: 800;
}

#tip_dialog-linha3{
    margin-top: 10px;
    text-align: center;
}

#interacao{
    width: calc(90%);
    /* border: 1px red dotted; */
    overflow-x: auto;
    padding: 30px 30px;
    background: var(--neutral-200);
    margin: 10px auto;
    /* box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.123); */
    min-height: 40vh;
    font-weight: 800;
}


.palavra{
    white-space: nowrap;
    border: 1px dashed #ffffff2e;
    display: inline-block;
    margin: 7px 0px;
    line-height: 1em;
    background: #ffffff2e;

}

.letra{
    display: inline-block;
    font-size: 30px;
    padding: 20px 1.5px;
    cursor: col-resize;
    border-right: 2px dashed #ffffff00;
    word-spacing: 30px;
    vertical-align: middle;
    line-height: 1em;
}

.palavra:hover{
    border: 1px dashed var(--bege3);;
}

.letra:hover{
    border-right: 2px dashed #000;
    /* transition: 0.4s; */
}

#recebe{
    display: none;
}


.separador{
    width: 1px;
    height: 70px;
    border-left: 3px dashed var(--secondary);
    display: inline-block;
    vertical-align: middle;
}



.btn-separar{
    /* font-size: 32px; */
    border-radius: 40px;
    /* transform: rotate(-90deg); */
    /* padding: 8px 10px; */
    position: absolute;
    display: none;
    transform: translateX(-50%);
    /* border: 1px red solid; */
    border: none;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.08);
    background-color:var(--secondary);
    line-height: 1em;
    cursor: pointer;
    z-index: 1000;
    width: 50px;
    height: 50px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

.btn-separar img{
    width: 30px;
    display: block;
}

button:focus {outline:0;}

.espaco{
    display: inline-block;
    border-bottom: #ededed 1px dashed;
    width: 30px;
    height: 30px;
    cursor: pointer;
    vertical-align: middle;
}

.espaco:hover{
    background-image: url(../imgs/excluir.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position-x: center;
    border-bottom: var(--rosa1) 1px dashed;
}

#botoes{
    margin-top: 20px;
    text-align: center;
    display: none;
}



#tras{
    /* display: none; */
}


@media only screen and (max-width: 768px) {
    #miolo {
        height: initial !important;
        margin-bottom: 40px;
    }
}