/**
 * Draggable small popup similar to a dialog.
 */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 300px;
    margin: 30px;
}

.popup-content {
    background-color: white;
    box-shadow: 0 2px 3px black;
}

.popup-header {
    padding: 5px 15px;
    border-bottom: 1px solid #e5e5e5;
    cursor: grab;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.popup-header:after {
    clear: both;
}

.popup-body {
    padding: 5px 15px;
}

.popup-footer {
    padding: 5px 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.popup-header .close {
    margin-top: -2px;
    padding: 2px 5px;
}

.popup-title {
    margin: 0;
    line-height: 1.42857143;
    font-family: 'Source Sans Pro', sans-serif;
}
