@-moz-keyframes spin { 100% { -moz-transform: rotate(180deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(180deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(180deg); transform:rotate(180deg); } }
.need-help__icon {
    background: url("../i/need-help__icon.png") 0 0 no-repeat;
    width: 42px;
    height: 162px;
    position: fixed;
    right:-2px;
    top: 50%;
    margin-top: -81px;
    cursor: pointer;
}
.need-help__icon:hover {
    right: 0px;
}
.need-help__wrapper {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: rgba(0,0,0,.5);
    z-index: 1000;
    display: none;
}
.need-help__content {
    background: white;
    width: 100%;
    max-width: 610px;
    margin: auto auto;
    position: relative;
    border: 1px solid #ffffff;
}
.need-help__close {
    background: url('../i/need-help__close.png') 0 0 no-repeat;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 5px;
    right: 5px;
}
.need-help__close:hover {
    -webkit-animation:spin 0.3s linear;
    -moz-animation:spin 0.3s linear;
    animation:spin 0.3s linear;
}
.need-help__title {
    color: #535353;
    text-align: center;
    font-size: 20px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 55px 0 30px 0;
}
.need-help__connections {
    display: flex;
    justify-content: center;
    padding-bottom: 7px;
    flex-wrap: wrap;
}
.need-help__chat {
    border-top: 1px solid #E6E6E6;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
.need-help__steps {
    display: none;
    background: #30415D;
    color: #FFFFFF;
    padding: 25px 30px 30px 30px;
}
.connection {
    display: flex;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    margin-bottom: 20px;
}
.connection__image {
    height: fit-content;
}
.connection__content {
    width: 190px;
    padding: 0 10px;
}
.connection__title {
    font-size: 17px;
    font-weight: bold;
    line-height: 25px;
    color: #333333;
    margin: 0 0 5px 0;
}
.connection__item {
    font-size: 12px;
    line-height: 18px;
    font-weight: bold;
    margin: 0;
}
.chat-link {
    border-bottom: 1px dashed #1899DC;
}
.chat-link:hover {
    text-decoration: none;
}
.easy-steps {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
.easy-steps__title {
    text-align: center;
    margin: 0 0 27px 0;
    font-size: 20px;
    text-transform: uppercase;
}
.easy-steps__subtitle {
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
    margin: 11px 0 0 0;
}
.easy-steps__content {
    display: flex;
}
.easy-steps__item {
    text-align: center;
    flex-grow: 1;
    flex-basis: 170px;
    margin: 0 10px;
    font-weight: 100;
}
.easy-steps__text {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
}
.need-help__bottom {
    background: #30415D;
    color: #FFFFFF;
    border-top: 1px solid #FFFFFF;
    padding: 23px 0;
    text-align: center;
}
.need-help__link {
    text-decoration: none;
    cursor: pointer;
    color: #1899DC;
    position: relative;
    border-bottom: 1px dashed #1899DC;
}
.need-help__link:hover {
    color: #18a8eb;
    text-decoration: none;
    border-bottom: 1px dashed #18a8eb;
}
.need-help__video {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
}
.need-help__popup {
    position: absolute;
    width: 700px;
    height: 420px;
    background: #ffffff;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    margin-top: -210px;
    margin-left: -350px;
    padding: 30px;
}
.need-help__video-close {
    background: url(../i/need-help__close.png) 0 0 no-repeat;
    width: 36px;
    height: 36px;
    position: absolute;
    top: -5px;
    right: -5px;
    cursor: pointer;
}
@media (min-width: 767px) {
    .need-help__steps {
        display: block;
    }
    .need-help__close {
        top: -18px;
        right: -18px;
    }
    .need-help__title {
        font-size: 30px;
        margin: 35px 0 30px 0;
    }
}