.box {
  position: relative !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  padding: 10px;
  background-color: transparent !important;
  border-radius: 5px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  border-radius: 5px !important;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.box::after {
  content: "" !important;
  border-radius: 5px !important;
  position: absolute !important;
  z-index: -1 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8) !important;
  opacity: 0 !important;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.box:hover {
  -webkit-transform: scale(1.25, 1.25) !important;
  transform: scale(1.25, 1.25) !important;
  background-color: white !important;
}

.box:hover::after {
  opacity: 1 !important;
}

.box-bl {
  position: relative !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  padding: 10px;
  background-color: transparent !important;
  border-radius: 5px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  border-radius: 5px !important;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.box-bl::after {
  content: "" !important;
  border-radius: 5px !important;
  position: absolute !important;
  z-index: -1 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  box-shadow: 0 5px 15px rgba(128, 128, 128, 0.3) !important;
  opacity: 0 !important;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.box-bl:hover {
  -webkit-transform: scale(1.1, 1.1) !important;
  transform: scale(1.1, 1.1) !important;
  background-color: white !important;
}

.box-bl:hover::after {
  opacity: 1 !important;
}
