.logoutForm {
    position: fixed;
    right: 6%;
    top: 0;
    color: #ffff00;
    font-family: Poppins, Open-Sans;
    z-index: 1;
}

.logout_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    line-height: 80px;
}

.logged_user {
    margin-left: 8px;
    font-size: 16px;
    text-transform: uppercase;
}

.divider {
    margin: 0 14px;
    height: 40px;
    border: 1px solid #ffff00;
}

.login_info--text {
    color: #fff;
    font-size: 15px;
}

.logout_button {
    border: none;
    background-color: #000000;
    background-image: url('../img/logout.svg');
    background-repeat: no-repeat;
    margin-left: 20px;
    width: 24px;
    height: 24px;
    color: #ffff00;
    cursor: pointer;
}

.my_links {
    font-size: 18px;
    color: #ffff00;
    transition: .3s;
}

.my_links:hover {
    color: #ffffff;
}

@media (min-width: 360px) and (max-width: 767px) {
    .logged {
        display: none;
    }

    .logout_wrapper {
        line-height: 75px;
    }

    .divider {
        display: none;
    }
}
