.page-container-can {

    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.__container_help_user {
    height: 700px;
    position: absolute;
    overflow: auto;
    background-color: #000000;
    border-radius: 30px;


    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    width: 400px;
}




.__text_content_helper {
    display: block;

    overflow: auto;
}

.__text_content_helper div {
    margin-top: 20px;
}

.__hep_content_text {

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

}

.text_helper_envolv_content {
    font-size: 16px;
    text-align: justify;
    line-height: 50px;
    width: 80%;
}


.tier__loop {
    width: 40px;
    height: 40px;
    background-image: url('/Assets/Imagens/Estrutural/application/bow.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 10px;
    top: 15px;
    transform: rotate(20deg);
    z-index: 10;
}


.heart_icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url('/Assets/Imagens/Estrutural/application/bow.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

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


/* CSS */
.__suport_button_anchor-pushable {
    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;
}

.__suport_button_anchor-shadow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;

    background: hsl(0deg 0% 0% / 0.25);

    will-change: transform;

    transform: translateY(2px);

    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.__suport_button_anchor-edge {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;

    background: linear-gradient(to left,
            hsl(0, 0%, 41%) 0%,
            hsl(0, 0%, 61%) 8%,
            hsl(0, 0%, 49%) 92%,
            hsl(0, 0%, 51%) 100%);
}

.__suport_button_anchor-front {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: relative;

    width: 180px;
    height: 50px;
    border-radius: 12px;

    font-size: 1.1rem;
    color: rgb(0, 0, 0);

    background: hsl(340, 9%, 93%);

    will-change: transform;

    transform: translateY(-4px);

    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {

    .__suport_button_anchor-front {
        font-size: 1.25rem;
        padding: 12px 42px;
    }

}

.__suport_button_anchor-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.__suport_button_anchor-pushable:hover .__suport_button_anchor-front {

    transform: translateY(-6px);

    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__suport_button_anchor-pushable:active .__suport_button_anchor-front {

    transform: translateY(-2px);

    transition: transform 34ms;
}

.__suport_button_anchor-pushable:hover .__suport_button_anchor-shadow {

    transform: translateY(4px);

    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.__suport_button_anchor-pushable:active .__suport_button_anchor-shadow {

    transform: translateY(1px);

    transition: transform 34ms;
}

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