﻿/* Desktop drawing instructional bubble styling */
.home-bubble {
    background-color: #f4f4f4;
    border-radius: 3px;
    -webkit-box-shadow: 0 4px 3px rgba(0,0,0,.5);
    box-shadow: 0 4px 3px rgba(0,0,0,.5);
    line-height: normal;
    position: relative;
    width: 170px;
    padding: 6px 10px;
    white-space: pre-wrap;
    font-size: 13px;
    color: #231F20;
    border: 1px solid #404041;
}

.home-bubbleWrapper {
    opacity: 0;
    position: absolute;
}

    .home-bubbleWrapper.top {
        bottom: 18px;
        left: -23px;
    }
    .home-bubbleWrapper.bottom {
        bottom: -65px;
        left: -23px;
    }
    .home-bubbleWrapper.right {
        left: 18px;
        top: -23px;
    }

    .home-bubbleWrapper.top .home-bubble {
        width: 176px;
        padding-right: 16px;
    }

    .home-bubbleWrapper .arrow-down,
    .home-bubbleWrapper .arrow-down-stroke {
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #f4f4f4;
        position: absolute;
        left: 14px;
        bottom: -7px;
    }

    .home-bubbleWrapper .arrow-down-stroke {
        bottom: -8px;
        border-top-color: #404041;
    }

    .home-bubbleWrapper .arrow-left,
    .home-bubbleWrapper .arrow-left-stroke {
        width: 0;
        height: 0;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 8px solid #f4f4f4;
        position: absolute;
        left: -7px;
        top: 50%;
        margin-top: -8px;
    }

    .home-bubbleWrapper .arrow-left-stroke {
        border-right-color: #404041;
        left: -8px;
    }

    .home-bubbleWrapper .arrow-up,
    .home-bubbleWrapper .arrow-up-stroke {
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #f4f4f4;
        position: absolute;
        left: 14px;
        top: -8px;
    }

    .home-bubbleWrapper .arrow-up-stroke {
        top: -8px;
        border-top-color: #404041;
    }

    .home-bubbleWrapper .number {
        width: 24px;
        height: 24px;
        position: absolute;
        right: -8px;
        top: -8px;
        border-radius: 100px;
        padding-top: 11px;
        color: #fff;
        background: #869EB6;
        text-align: center;
        font-size: 14px;
        padding: 2px;
    }