body {
    background-color: #000000;
    overflow: hidden;

}

.__recover_container {
    height: 100vh;
    width: 100vw;
    display: none;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.__recover_envolve {
    width: 100%;
    height: 66%;
    position: relative;
    top: -34px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;

}

.__app_icon_recover {
    width: 100px;
    height: 100px;
    background-image: url('/app/share/imgs/Icons/b.png');
    background-position: center center;
    background-repeat: no-repeat;

    background-size: contain;
}


.__recover_update_progress {

    width: 100%;
    display: none;
    align-items: center;
    height: auto;
    justify-content: center;
}


.progress-container {
    width: 300px;
    height: 12px;
    background: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
}

.progress_bar_recover {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border-radius: 10px;
    transition: width 1s ease;
}


.__recover_text_content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(20, 20, 20);
    border-radius: 10px;
    width: 90%;
    height: 150px;
}

.__recover_text_content p {
    color: white;
    text-align: justify;
    width: 80%;
    line-height: 38px;
    font-family: 'Times New Roman', Times, serif;

}

.__recover_button_container {

    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.__recover_update {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.__recover_update-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.__recover_update-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
            hsl(0, 0%, 17%) 0%,
            hsl(0, 0%, 18%) 8%,
            hsl(0, 0%, 18%) 92%,
            hsl(0, 0%, 14%) 100%);
}

.__recover_update-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: hsl(0, 0%, 0%);
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
    .__recover_update-front {
        font-size: 1.25rem;
        padding: 12px 42px;
    }
}

.__recover_update:hover {
    filter: brightness(110%);
}

.__recover_update:hover .__recover_update-front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__recover_update:active .__recover_update-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.__recover_update:hover .__recover_update-shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__recover_update:active .__recover_update-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.__recover_update:focus:not(:focus-visible) {
    outline: none;
}

a {
	text-decoration: none;
}

* {
	-webkit-tap-highlight-color: transparent;
}