
/* V46.4 - Yukarı Çık */
#og-back-to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9998;
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid rgba(255,255,255,.35);
  border-radius:50%;
  background:linear-gradient(135deg,#214d82,#163b65);
  color:#fff;
  font-size:25px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 7px 20px rgba(16,43,67,.22);
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:opacity .2s ease,transform .2s ease,visibility .2s ease,background .2s ease;
}
#og-back-to-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
#og-back-to-top:hover{
  background:linear-gradient(135deg,#e21b23,#bd151b);
  transform:translateY(-2px);
}
#og-back-to-top:active{
  transform:scale(.95);
}
@media(max-width:650px){
  #og-back-to-top{
    width:42px;
    height:42px;
    right:13px;
    bottom:72px;
    font-size:22px;
  }
}
