/* ============ GO TOP============ */
.scrollbar{
    position:relative;
}
.goTopBtn{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    text-align: center;
    position: fixed;
    width: 63px;	height: 76px;    right:-30px;    bottom: 30px;
    font-size:1.5rem;    color: #ffffff;  font-weight: 600;
	text-decoration: underline;
	letter-spacing: 0.03em;
    background-image: url(../img/top_bg.svg);
	background-repeat: no-repeat;
    opacity: 0;
    border-radius: 7px;
    -webkit-transition: all 1s;
    transition: all 1s;
    cursor: pointer;
    z-index: 99999;
	padding: 1.2em 0 0 0;
}

.goTopBtn img{
    margin-right: auto;
    margin-left: auto;
}
.scrollbar .upToShow{
    opacity: 1;
    right:3%;
}

@media screen and (max-width: 768px) {
	.goTopBtn{
		padding: 1.4em 0 0 0;
	}
	.scrollbar .upToShow{
		right:10px;
	}
}



/*==================== hover====================*/
/********************** Bob *********************/
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}