/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

 #cherryPicker-bookmark {
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(216, 87, 87, 0.74);
  position: relative;
  cursor: move;
  cursor: grab;
  color: rgb(43, 43, 43);
  font-size: 20px;
  line-height: 1.2;
 }
 #cherryPicker-bookmark:after {
   content: '';
   display: block;
   position: absolute;
   width: 26px;
   height: 26px;
   top: 100%;
   left: 100%;
   background: url(../assets/scissors.svg) 0 0 no-repeat;
   background-size: contain;
   margin-top: -6px;
   margin-left: -7px;
 }
 #cherryPicker-bookmark:hover {
   background-color: rgb(193, 235, 199);
 }
 #cherryPicker-bookmark:active {
   border-color: transparent;
   background-color: rgb(218, 236, 221);
   box-shadow: 5px 5px 15px rgba(189, 216, 189, 0.2);
 }
 #cherryPicker-bookmark:active:after {
   opacity: 0;
 }