﻿@charset "UTF-8";
/*!
 * jQuery contextMenu - Plugin for simple contextMenu handling
 *
 * Version: v2.1.0
 *
 * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
 * Web: http://swisnl.github.io/jQuery-contextMenu/
 *
 * Copyright (c) 2011-2016 SWIS BV and contributors
 *
 * Licensed under
 *   MIT License http://www.opensource.org/licenses/mit-license
 *
 * Date: 2016-01-08T20:22:20.182Z
 */
@font-face {
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
}

.context-menu-icon:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 28px;
    font-family: "FontAwesome";
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    color: #212529;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.context-menu-icon-add:before {
  content: "";
}

.context-menu-icon-copy:before {
  content: "";
}

.context-menu-icon-cut:before {
  content: "";
}

.context-menu-icon-delete:before {
  content: "";
}

.context-menu-icon-edit:before {
  content: "";
}

.context-menu-icon-paste:before {
  content: "";
}

.context-menu-icon-quit:before {
  content: "";
}

.context-menu-icon.context-menu-hover:before {
  color: #fff;
}

.context-menu-list {
  position: absolute; 
  display: inline-block;
  min-width: 180px;
  max-width: 360px;
  padding: 4px 0;
  margin: 5px;
  font-family: inherit;
  font-size: inherit;
  list-style-type: none;
  background: #fff;
  border: 1px solid #bebebe;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
          box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}

.context-menu-item {
    position: relative;
    padding: 3px 10px;
    color: #2f2f2f;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
}

    .context-menu-item.context-menu-separator i {
        display: none !important;
    }

    .context-menu-item i {
        padding-right: 7px;
    }

.context-menu-separator {
  padding: 0; 
  margin: 5px 0;
  border-bottom: 1px solid #e6e6e6;
}

.context-menu-item > label > input,
.context-menu-item > label > textarea {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.context-menu-item.context-menu-hover {
    color: #fff;
    cursor: pointer;
    background-color: #343f51;
}

.context-menu-item.context-menu-disabled {
  color: #626262; 
  background-color: #fff;
}

.context-menu-input.context-menu-hover,
.context-menu-item.context-menu-disabled.context-menu-hover {
  cursor: default; 
  background-color: #eee;
}

.context-menu-submenu:after {
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 1; 
  width: 0;
  height: 0;
  content: '';
  border-color: transparent transparent transparent #2f2f2f;
  border-style: solid;
  border-width: 4px 0 4px 4px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

/**
 * Inputs
 */
.context-menu-item.context-menu-input {
  padding: 5px 10px;
}

/* vertically align inside labels */
.context-menu-input > label > * {
  vertical-align: top;
}

/* position checkboxes and radios as icons */
.context-menu-input > label > input[type="checkbox"],
.context-menu-input > label > input[type="radio"] {
  position: relative;
  top: 3px;
}

.context-menu-input > label,
.context-menu-input > label > input[type="text"],
.context-menu-input > label > textarea,
.context-menu-input > label > select {
  display: block;
  width: 100%; 
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.context-menu-input > label > textarea {
  height: 100px;
}

.context-menu-item > .context-menu-list {
  top: 5px; 
  /* re-positioned by js */
  right: -5px;
  display: none;
}

.context-menu-item.context-menu-visible > .context-menu-list {
  display: block;
}

.context-menu-accesskey {
  text-decoration: underline;
}

.context-menu-icon-modifica {
    background-image: url(png/22/pencil.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-visualizza {
    background-image: url(png/22/search.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-approfondimenti {
    background-image: url(png/22/link.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-allegati {
    background-image: url(png/22/paperclip.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-immagini {
    background-image: url(png/22/picture-o.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-cancella {
    background-image: url(png/22/trash-o.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-menu {
    background-image: url(png/22/share-alt.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-potrebbe_interessarti {
    background-image: url(png/22/hand-o-up.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-articoli {
    background-image: url(png/22/th.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-csv {
    background-image: url(png/22/file-excel-o.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-disponibilita {
    background-image: url(png/22/download.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-ingredienti {
    background-image: url(png/22/wheat-awn-solid.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-caratteristiche {
    background-image: url(png/22/tasks.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-sinonimi {
    background-image: url(png/22/font.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-vini {
    background-image: url(png/22/wine-bottle-solid.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}

.context-menu-icon-ricette {
    background-image: url(png/22/bowl-food-solid.png);
    min-height: 19px;
    background-repeat: no-repeat;
    background-position: 4px 2px;
}