.top-bar-right a.block {
  transition: all .1s ease-in-out;
  border-radius: 8px;
  background: linear-gradient(315deg,#492265 0%,#372481 50%,#071b5a) !important;
  color: #fff !important;
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  font-size: 1rem;
  font-weight: bold;
}

.top-bar-right a.block:hover {
  text-decoration: none;
  transform: scale(1.05);
}

.top-bar-right a.block:active {
  transform: scale(0.98);
}

.tile {
  transition: all .1s ease-in-out;
  box-shadow: 0 8px 16px rgba(0,0,0,.05);
}

.tile:hover {
  transform: scale(1.05);
}

@media (max-width: 1023px) {
  .footer__links a {
  	transition: all .1s ease-in-out;
  	border-radius: 8px;
  	background: #fff !important;
  	color: var(--background, var(--vpt-theme-footer-background-color)) !important;
  	box-shadow: 0 4px 8px rgba(0,0,0,.1);
  	font-size: 1rem;
  	font-weight: bold;
    padding: 8px 16px;
    display: block;
    text-align: center;
  }
  
  .footer__links a:hover {
   	transform: scale(1.05); 
  }
  
  .footer__links a:active {
   	transform: scale(0.95); 
  }
}