.menu-placeholder {
    position: relative;
    pointer-events: auto;
}
.menu {
    position: absolute;
    opacity: 0;
    overflow: hidden;
    z-index: 10;
    right: 0;
    top: 16px;
    background: #fff;
    width: 220px;
    border-radius: 3px;
    text-align: left;
    -webkit-transition: all 280ms cubic-bezier(.4,0,.2,1);
    transition: all 280ms cubic-bezier(.4,0,.2,1);
}
.itemgrid .menu {
    width: 100%;
}
.menu--active {
    opacity: 1;
    top: 0;
}
.menu [type=checkbox] {
    display: none
}
.menu li {
    line-height: 0;
}
.menu__title {
    display: block;
    padding: 0 0 0 12px;
    border-bottom: 1px solid #E1E1E1;
    color: rgba(0,0,0,.87);
    font-size: 13px;
    font-weight: 600;
    line-height: 36px;
}
.menu__item {
    display: block;
    font-weight: 500;
    color: rgba(0,0,0,.87);
    cursor: pointer;
    color: #666;
    padding: 0 12px;
}
.menu__item:hover {
    background: #f5f5f5
}
.menu__label {
    line-height: 36px;
    display: block;
    vertical-align: middle;
    -webkit-transition: all 150ms;
    transition: all 150ms
}
.menu__label::before {
    content: '\2713';
    line-height: 13px;
    font-size: 11px;
    text-align: center;
    margin-right: 8px;
    display: inline-block;
    border-radius: 2px;
    vertical-align: text-top;
    width: 12px;
    height: 12px;
    border: 2px solid #737373;
    background: #fff;
    color: #fff;
    -webkit-transition: all 150ms;
    transition: all 150ms
}
.menu__item [type=checkbox]:checked + .menu__label {
    color: #2196F3
}
.menu__item [type=checkbox]:checked + .menu__label::before {
    background: #2196F3;
    border-color: #2196F3
}

.menu .button {
    margin: 10px;
    display: block;
    text-align: center;
    color: #F44336;
    width: auto;
}
.menu input[type=text] {
    padding: 10px;
    text-align: center;
}
.menu form {
    margin: 10px
}

.menu__share {
    color: #fff;
    width: 50%;
    float: left;
    line-height: 40px;
    text-align: center
}
.menu__share .icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
.menu__share--tw {
    background: #55acee
}
.menu__share--fb {
    background: #3B5998
}