.need-help{
    padding-left: 60px;
    position: fixed; z-index: 40;
    right: -390px;
    top: 200px;
    width: 450px;
    font-size: 0;
    vertical-align: bottom;
    transition: 0.5s;
}

.need-help.active{
    right: 0;
}

.need-help > div.content{
    padding: 35px 35px 27px 30px;
    font-size: 14px;
    background-color: white;
    box-shadow: 0 5px 10px #00000020;
}

.need-help > div.content h3{
    font-size: 20px;
    color: #0096FF;
}

.need-help > div.content ul {
    margin: 23px 0 0 0;
    padding: 0;
    list-style: none;
}

.need-help > div.content ul li {
    color: #0096FF;
    cursor: pointer;
    padding: 16px 10px 16px 30px;
    background: url("/resources/images/icons/phone-blue.svg") no-repeat left center;
    border-bottom: 2px solid #f3f4f5;
}

.need-help > div.content ul li:nth-child(2) {
    background-image: url("/resources/images/icons/chat-blue.svg");
}

.need-help > div.content ul li:last-child{
    background-image: url("/resources/images/icons/email-blue.svg");
    border-bottom: none;
}


.need-help > div.show-need-help{
    cursor: pointer;
    position: absolute; left: 0; top: 0;
    color: white;
    background-color: #123156;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    padding: 40px 20px;
    width: 60px;
    font-size: 18px;
    box-shadow: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

@media (max-width: 991px){
    .need-help{
        position: relative;
        left: 0; top: 0; right: auto;
        width: 100%;
        padding-left: 0;
        z-index: 0;
    }

    .need-help > div.show-need-help{
        display: none;
    }

    .need-help > div.content{
        padding: 35px 0 15px 0;
        box-shadow: none;
    }
}