﻿help-section-component {
    position: static;
}

.help-section {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0 20px;
    background: #f4f4f4;
}

.help-section .title {
    cursor: pointer;
    padding: 16px 0;
    border-top: 1px solid #d6d6d6;
    font-weight: bold;
    font-size: 16px;
}

.help-section .caret {
    height: 0;
    width: 0;
    display: inline-block;
    border-left: 6px solid #5b5b5b;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin: -2px 4px 0 0;
    vertical-align: middle;
    transition: transform 200ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.help-section .content {
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 200ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.help-section .video-item {
    white-space: nowrap;
}

    .help-section .video-item + .video-item {
        margin-top: 10px;
    }

.help-section .video-icon {
    background: #b9b9b9;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    color: #000;
    text-align: center;
    font-size: 13px;
    padding-top: 6px;
    float: left;
    cursor: pointer;
    z-index: 1000;
}

    .help-section .video-icon .icon-outer {
        border-radius: 50%;
        border: 2px solid #696969;
        height: 30px;
        width: 30px;
        text-align: center;
        margin: 0 auto 2px;
        padding: 5px 0 0 4px;
    }

    .help-section .video-icon .icon-inner {
        height: 0;
        width: 0;
        border-left: 10px solid #696969;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        display: inline-block;
    }

.help-section .text {
    white-space: normal;
    font-size: 14px;
    padding-left: 70px;
}

.help-section .text .name {
    font-weight: bold;
    font-size: 15px;
}

.help-section.expanded .content {
    height: auto;
    margin-bottom: 20px;
}

.help-section.expanded .caret {
    transform: rotateZ(90deg);
}

@media (min-width: 768px) {
    .help-section .video-icon {
        width: 70px;
        height: 70px;
    }

        .help-section .video-icon .icon-outer {
            height: 40px;
            width: 40px;
            padding-top: 10px;
        }

    .help-section .text {
        padding-left: 80px;
    }
}

@media (max-height: 768px) {
    .help-section {
        zoom: 80%;
    }
}