
.contextMenu {
    --menu-border: rgba(255, 255, 255, 0.08);
    --menu-bg: linear-gradient(45deg, rgba(10, 20, 28, 0.2) 0%, rgba(10, 20, 28, 0.7) 100%);
    --item-border: rgba(255, 255, 255, 0.1);
    --item-color: #fff;
    --item-bg-hover: rgba(255, 255, 255, 0.1);
    height: 0px;
    overflow: hidden;
    background: var(--menu-bg);
    position: fixed;
    top: var(--top);
    left: var(--left);
    height: var(--height);
    opacity: 1;
    border-radius: 4px;
    list-style: none;
    margin: 1px;
    padding: 1px;
    min-width: 190px;
    display: flex;
    flex-direction: column;
    z-index: 999999999;
    box-shadow: 0 0 0 1px var(--menu-border), 0 2px 2px rgba(0, 0, 0, 0.03), 0 4px 4px rgba(0, 0, 0, 0.04), 0 10px 8px rgba(0, 0, 0, 0.05), 0 15px 15px rgba(0, 0, 0, 0.06), 0 30px 30px rgba(0, 0, 0, 0.07), 0 70px 65px rgba(0, 0, 0, 0.09);
}
.contextMenu-item {
    padding: 3px;
}
.contextMenu-item[data-divider=top] {
    border-top: 1px solid;
}
.contextMenu-item[data-divider=bottom] {
    border-bottom: 1px solid;
}
.contextMenu-item[data-divider=top-bottom] {
    border-top: 1px solid;
    border-bottom: 1px solid;
}
.contextMenu-item[data-divider] {
    border-color: var(--item-border);
}
.contextMenu-button {
    color: var(--item-color);
    background: 0;
    border: 0;
    white-space: nowrap;
    width: 100%;
    border-radius: 3px;
    padding: 4px 19px 5px 8px;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
}

.contextMenu-sub-level {
    color: var(--item-color);
    background: 0;
    border: 0;
    white-space: nowrap;
    width: 100%;
    border-radius: 3px;
    padding: 4px 0px 5px 0px;
    text-align: left;
    align-items: center;
    font-size: 14px;
    width: 100%;
}
.contextMenu-button:hover {
    background-color: var(--item-bg-hover);
}
.contextMenu[data-theme=light] {
    --menu-bg: linear-gradient(45deg, rgb(255 255 255) 0%, rgb(255 255 255) 100%);
    --menu-border: rgba(0, 0, 0, 0.08);
    --item-border: rgb(116 116 116 / 10%);
    --item-color: rgb(10, 20, 28);
    --item-bg-hover: rgba(10, 20, 28, 0.09);
}

 .contextMenu-button svg {
    width: 15px;
    height:15px;
    margin-right: 8px;
    vertical-align: middle;
}
 .contextMenu-sub-level svg {
    width: 15px;
    height:15px;
    margin-right: 8px;
    vertical-align: middle;
    margin-left: 7px;
}

.contextMenu-sub-level::before {
   content: url("data:image/svg+xml,%3Csvg class='svg-icon__arrow--down' viewBox='0 0 12 7' height='100%25' width='100%25' preserveAspectRatio='MinYMin' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23003E57' fill-rule='evenodd' d='M5.952 6.97c-.268 0-.525-.106-.714-.294L.355 1.802C-.04 1.408-.04.772.355.378c.394-.393 1.032-.393 1.427 0l4.17 4.162 4.17-4.162c.394-.393 1.032-.393 1.426 0 .395.393.395 1.03 0 1.424L6.665 6.676c-.19.188-.445.295-.713.295z'%3E%3C/path%3E%3C/svg%3E%0A");
   float: right;
   transition: all 0.5s;
   right: 9px;
   position: absolute;
   width: 15px;
   height: 15px;
   -webkit-animation: shake-bottom 2s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 2s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}
.contextMenu-sub-level.active::before {
   content: url("data:image/svg+xml,%0A%3Csvg class='svg-icon__arrow--up' viewBox='0 0 12 7' height='100%25' width='100%25' preserveAspectRatio='MinYMin' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23003E57' fill-rule='evenodd' d='M5.95.03c-.267 0-.523.106-.712.294L.355 5.198c-.395.394-.395 1.03 0 1.424.394.393 1.032.393 1.426 0L5.95 2.46l4.172 4.162c.394.393 1.032.393 1.426 0 .394-.393.394-1.03 0-1.424L6.665.324C6.475.136 6.22.03 5.95.03z'/%3E%3C/svg%3E");
   float: right;
   transition: all 0.5s;
   right: 9px;
   position: absolute;
   width: 15px;
   height: 15px;
    
} 


.contextMenu .contextMenu-item span.contextMenu-accesskey {
    margin-left: 2px;
    color: #cf0c0c;
    font-size: .9em
}
.contextMenu .contextMenu-item span.contextMenu-accesskey i {
    text-decoration: underline;
    float: none;
    padding: 0 3px;
    color: #353434;
}
.contextMenu .contextMenu-item span.contextMenu-accesskey:before {
    content:'('
}
.contextMenu .contextMenu-item span.contextMenu-accesskey:after {
    content:')'
}
.contextMenu .contextMenu-sub-level div.sub-level {
    display: none;
    margin-top: 15px;
}
.contextMenu .contextMenu-sub-level div.sub-level.active {
    background-color: #efefef;
    display: block;
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 0px 0px;
}

.contextMenu .contextMenu-sub-level div.sub-level.active .social_media{
  height: 100%;
  width: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.4s ease-in-out;
}

.contextMenu .contextMenu-sub-level div.sub-level.active .social_media i{
  font-size: 28px;
  color: #34495e;
  transition: all 0.3s linear;
}
.contextMenu .contextMenu-sub-level div.sub-level.active .social_media a{
    cursor: pointer;
}
.contextMenu .contextMenu-sub-level div.sub-level.active .social_media i:hover{
  
   -webkit-animation: shake-bottom 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}


@-webkit-keyframes shake-bottom {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}
@keyframes shake-bottom {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}
