@charset "UTF-8";
/* CSS Document */


.box.slashbox {
}

.slash-container {
  position: absolute;
  width: 230px;
  height: 230px;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slash {
  position: absolute;
  top: 60%;
  transform: translateY(-40%);
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  width: 50%;
  background: #f04939; background: var(--accent-color);
  -webkit-transition: all .3s cubic-bezier(0.55, 0.085, 0.68, .1);
  transition: all .3s cubic-bezier(0.55, 0.085, 0.68, .1);
  border-radius: 0;
  overflow: hidden;
  text-align: center;
}

.slash-container:hover .slash {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 60px;
  border-radius: 6px;
  transform-origin: center center;
  width: 100%;
}

.slash-video {
  display: block;
  position: absolute;
  left: 50%;
  top: calc(50% - 0px);
  width: 602px;
  height: 602px;
  transform: rotate(0deg) translate(-50%, -50%);
  transform-origin: 0 0;
  transition: all .5s cubic-bezier(.455, .03, .515, .955);
  opacity: .1;
  z-index: 2;
}


.slash-container:hover .slash-video {
  top: calc(50% + 90px);
  opacity: .125;
}

.slash-number {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #fff; color: var(--nav-title-color);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  font-family: 'Roboto', sans-seif;
  z-index: 2;
}

