/*
Usage:
- linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,
   if 3 colors used then the position of each will be 33,33%
- linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,
   first param - color, second - position. Also you can use px or other valid units for set position.
*/
/* based on "visually-hidden" mixin in LDS for accessibility goals */
/* Do not edit */
.contextual-popup {
    position: absolute;
    left: 15px;
    top: 0px;
    width: 500px;
    color: #222;
    background: #f3f1ef;
    padding: 15px;
    z-index: 300;
    box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
}

.contextual-popup h2 {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.contextual-popup .heading {
    font-weight: bold;
}

.contextual-popup .arrow {
    position: absolute;
    z-index: 301;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    border: 1px #f3f1ef solid;
    border-left: none;
    border-top: none;
    width: 12px;
    height: 12px;
    background: #f3f1ef;
    box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
}

.contextual-popup .arrow-cover {
    background: #f3f1ef;
    position: absolute;
    z-index: 302;
    left: 6px;
    width: 30px;
    height: 15px;
}

.contextual-popup.bottom .arrow {
    top: -6px;
}

.contextual-popup.bottom .arrow-cover {
    top: 0px;
}

.contextual-popup.top .arrow {
    bottom: -6px;
}

.contextual-popup.top .arrow-cover {
    bottom: 0px;
}

.contextual-popup .tooltipstered {
    text-align: right;
}

.contextual-popup .footer {
    margin-top: 10px;
}

.contextual-popup .footer .btn {
    float: right;
    margin-left: 20px;
}

.contextual-popup .footer .btn.cancel {
    position: relative;
    top: 3px;
}

/*# sourceMappingURL=contextualPopup.css.map */