/* Context menu for pinned websites */
.central.ctxtmenu {z-index: 15; display: none;}
.central .menu
{
	background: #fff;
    color: #000;
	padding: 30px;
    font-size: 0;
	border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    z-index: 15;
    position: relative;
}

body.dark .central .menu
{
    background: rgb(35,35,35);
    color: #fff;
}

.menu .view
{
    margin-top: -100px;
}

.menu .view img
{
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.menu .view h5
{
    margin: 0;
    font-weight: normal;
    font-size: 16px;
}

.menu .actions
{
    list-style: none;
    padding: 0px;
    margin-top: 20px;
}

.menu .actions li
{
    display: inline-block;
    vertical-align: top;
    border: 1px solid transparent;
    border-radius: 5px;
    width: 90px;
    padding: 0 10px;
    cursor: pointer;
}

.menu .actions li:hover
{
    border-color: grey;
    background: #eee;
}

.menu .actions li:active
{
    border-color: black;
    background: #ddd;
}

body.dark .menu .actions li:hover
{
    border-color: #444;
    background: #333;
}

body.dark .menu .actions li:active
{
    border-color: #666;
    background: #555;
}

.menu .actions li img
{
    width: 20px;
    height: 20px;
    margin-top: 10px;
}

body.dark .menu .actions li img
{
	-webkit-filter: invert(100%);
	   -moz-filter: invert(100%);
		-ms-filter: invert(100%);
		 -o-filter: invert(100%);
		    filter: invert(100%);
}

.menu .actions li p
{
    margin: 10px 0;
    font-size: 12px;
}

#actUnpinEngine
{
    display: none;
}

@media screen and (max-width: 600px)
{
    .central.ctxtmenu .aligner,
    .central.ctxtmenu .menu
    {
        vertical-align: bottom;
    }
    
    .central .menu
    {
        padding: 0;
        border-radius: 0;
        width: 100%;
    }
    
    .menu .view {margin-top: -50px;}
    .menu .actions {margin: 10px; margin-bottom: 20px;}
}