.container__help {
    width: 350px;
    height: 100%;
    background-color: #f6f6f6;
    position: fixed;
    padding: 15px;
    overflow-y: scroll;
    top: 62px;
    right: 0;
    margin-right: -351px;
    z-index: 100;
}

.container__help p#qual_seu_perfil {
    font-family: 'Roboto';
    font-size: 18px;
}

.container__help.open__help {
    margin-right: -351px;
    -webkit-animation-name: open__help;
    animation-name: open__help;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.container__help .texto {
    color: #8b8b8b;
    font-family: sans-serif;
    font-size: 15px;
}

.container__help .texto b {
    color: #858484;
    font-family: 'Roboto';
    font-weight: bold;
}

.container__help #texto__help__3 {
    margin-bottom: 100px;
}

@-webkit-keyframes open__help {
    0% {
        margin-right: -351px;
    }

    100% {
        margin-right: 0px;
    }
}

@keyframes open__help {
    0% {
        margin-right: -351px;
    }

    100% {
        margin-right: 0px;
    }
}

.container__help.close__help {
    margin-right: -351px;
    -webkit-animation-name: close__help;
    animation-name: close__help;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes close__help {
    0% {
        margin-right: 0px;
    }

    100% {
        margin-right: -351px;
    }
}

@keyframes close__help {
    0% {
        margin-right: 0px;
    }

    100% {
        margin-right: -351px;
    }
}

div.item div.first {
    height: 40px;
    width: 100%;
    background-color: #E3E3E3;
    margin-bottom: 10px;
    margin-top: 15px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

div.item div.first span {
    font-size: 15px;
    color: #707070;
}

div.item div.first img {
    width: 50px;
    height: 25px;
    object-fit: contain;
}

div.item div.first:hover {
    height: 40px;
    width: 100%;
    background-color: #E3E3E3;
    margin-bottom: 10px;
    margin-top: 15px;
    border-radius: 7px;
    border: 1px solid #2684ff;
    cursor: pointer;
}

div.item div.first span icon {
    font-size: 15px;
    color: #707070;
}

div.item div.first i {
    font-size: 15px;
    color: #707070;
    margin-left: auto;
    padding-right: 10px;
}

div.item div.first i.open {
    -webkit-animation-name: flip;
    animation-name: flip;
    -webkit-animation-duration: 0.1s;
    animation-duration: 0.1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        margin-top: 0;
    }

    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        margin-top: 3px;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        margin-top: 0;
    }

    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        margin-top: 3px;
    }
}