.offcanvasblock {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  left: 0;
	background-color: rgb(107, 107, 107, 60%);
  backdrop-filter: blur(10px);
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the offcanvasblock */
  align-content: center;
}

#block-quickbolt-quickorderoffcanvas .pullTab {
  position: fixed;
  bottom: calc(1vh + 130px);
  right: calc(1vw + 15px);
/*  transform: rotate(90deg); */
  z-index: 99999;
  border-style: solid;
  border-radius: 7.5px;
  background-color: white;
  border-color: #f7971e;
  padding: 10px;
  cursor: pointer;
}

#block-quickbolt-quickorderoffcanvas .pullTab:hover {
	background-color:aliceblue;
	box-shadow: 0px 1px 8px 5px grey;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-15px); }
  50% { transform: translateX(15px); }
  75% { transform: translateX(-15px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.5s;
}


/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the offcanvasblock (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .offcanvasblock {padding-top: 15px;}
  .offcanvasblock a {font-size: 18px;}
}