.__overlay_container_immersive__request {
    height: 100%;
    width: 100%;
    position: fixed;
    inset: 0;

    display: none !important;
    align-items: center;
    justify-content: center;

    background-color: rgba(0, 0, 0, 0.5);
    /* menor opacidade ajuda o blur aparecer */

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* suporte Safari */
}

.__immersive_volve_container_itens {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(1.1);
    justify-content: space-evenly;
}

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

.container_algment {
    height: 130px;
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: center;

}

.____immersive {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.____immersive input {
    opacity: 0;
    width: 0;
    height: 0;
}

.____immersive .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    border-radius: 50px;
    transition: 0.3s;
}

.____immersive .slider::before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    top: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

/* Estado ativo */
.____immersive input:checked+.slider {
    background-color: #4caf50;
}

.____immersive input:checked+.slider::before {
    transform: translateX(22px);
}

.__view_immersive_text {
    background-color: rgba(12, 5, 5, 0.795);
    display: flex;
    height: 80%;
    border-radius: 10px;
    width: 100%;

    align-items: center;
    justify-content: center;
}

.p__immersive_view {
    line-height: 33px;
    text-align: justify;
    width: 90%;
    font-size: 17px;
    color: white;
}


