/*Floating button link*/

.sticky-link {
    position: fixed;
    z-index: 99;
    right: 0px;
    top: 25%;
    background: var(--primary);
	cursor: pointer;
	transform: rotate(-90deg) translateY(-50%);
    transform-origin: right center;
	border-top-right-radius:  1rem;
	border-top-left-radius: 1rem;

}

	.sticky-link-link {
		display: block;
		padding: 10px 20px;
		color:#fff;
		font-weight: 600;
		font-size: 18px;
	}

	.sticky-link-link:hover, .sticky-link-link:focus {
		background: var(--secondary);
    	color: var(--light);
		border-top-right-radius:  1rem;
		border-top-left-radius: 1rem;
	}

		.sticky-link-icon {
			margin: 0 10px 0 0;
			color: #fff;
			font-weight: 600;
			transform: rotate(-90deg) translateY(-50%);
		}


/*Hiding on small screens*/

@media screen and (max-width:767px) {
	.sticky-link {
		display: none;
	}

  .block-sticky-link {
      display: none;
  }

}

