/*
 * jquery.panor.pastemenu.css
 * author: Dennis Y. Parygin (dyp2000@mail.ru)
 * Copyright (c) 2018, Panorama
 *
 * Зависимости:
 *  - Bootstrap
 */

/* PASTE CONTEXT MENU */
.paste-menu {
    background-color: transparent;
    position: absolute;
    z-index: 15;
    border: solid 0px red;
    cursor: pointer;
/*    width: 405px;
    height: 421px;
*/    /*left: 100px;*/
    /*top: 100px;*/
}

.paste-menu a {
    color: white;
}

.paste-menu a.list-group-item:hover,
            a.list-group-item:focus {
    color: white;
    background-color: #0A5AB3;
}

.paste-menu .list-group {
    width: 200px;
    color: white;
    /*box-shadow: 0px 0px 20px 5px #5d5d5d;*/
    background: transparent;
    border-radius: 6px;
    border: solid 2px darkgrey;
    margin-bottom: 0px;
    text-align: center;
}

.paste-menu .nw {
    position: absolute;
    top: 0px;
    /*left: 100px;*/
}

.paste-menu .ne {
    position: absolute;
    top: 0px;
    left: calc(50% + 0px);
}

.paste-menu .sw {
    position: absolute;
    top: 185px;
    /*left: 0px;*/
}

.paste-menu .se {
    position: absolute;
    top: 185px;
    left: calc(50% + 0px);
}

.list-group-item {
    position: relative;
    display: block;
    padding: 5px 8px;
    margin-bottom: -1px;
    border: 1px solid #fff;
}
.list-group-item.default {
    text-transform: uppercase;
}

.nw .list-group-item {
    background-color: rgba(63, 130, 190, 0.75);
}
.nw .default {
    background-color: rgba(31, 82, 127, 0.75);
}

.ne .list-group-item {
    background-color: rgba(87, 87, 87, 0.75);
}
.ne .default {
    background-color: rgba(48, 48, 48, 0.75);
}

.se .list-group-item {
    background-color: rgba(123, 63, 177, 0.75);
}
.se .default {
    background-color: rgba(74, 37, 107, 0.75);
}

.sw .list-group-item {
    background-color: rgba(115, 157, 98, 0.85);
}
.sw .default {
    background-color: rgba(86, 116, 74, 0.85);
}

.list-group-item:hover {
    background-color: #0A5AB3;
}

.list-group-item > .badge {
    float: left;
    margin-right: 10px;
}

.list-group-item > div:hover {
    background-color: #0A5AB3;
}

.direction-icon {

}
