.featurestips_wrapper {
    margin: 2px 0 0 6px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    font: inherit;
    font-weight: normal;
    line-height: 1.3;
}
.featurestips_wrapper .featurestips_icon {
    cursor: pointer;
    display: block;
}
.featurestips_wrapper .featurestips_icon IMG {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}
.featurestips_wrapper .featurestips_view {
    display: inline-block;
    position: absolute;
    visibility: hidden;
    margin-left: -40px;
    margin-top: 10px;
    z-index: 9996;
    -webkit-box-shadow: 0 3px 10px rgba(0,0,0,.5);
    box-shadow: 0 3px 10px rgba(0,0,0,.5);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.featurestips_wrapper .featurestips_view::after, .featurestips_wrapper .featurestips_view::before {
    content: '';
    position: absolute;
    background: #ffffff;
    width: 15px;
    height: 15px;
    z-index: -1;
    left: 37px;
    top: -7px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -webkit-box-shadow: 0 3px 10px rgba(0,0,0,.5);
    box-shadow: 0 3px 10px rgba(0,0,0,.5);
}
.featurestips_wrapper .featurestips_view::before {
    z-index: 1;
    box-shadow: none;
}
.featurestips_wrapper .tip_view_in {
    width: 360px;
    min-height: 40px;
    max-height: 320px;
    padding: 20px;
    margin: 0 0 -10px 0;
    display: inline-block;
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (max-width: 576px) {
    .featurestips_wrapper .featurestips_view {
        position: fixed;
        left: 10px;
        right: 10px;
        margin-left: 0;
    }
    .featurestips_wrapper .tip_view_in {
        width: 100%;
    }
    
}