/*----------------------------------------------

[Main CSS]

Component styles: header, sections, cards, footer.

Site    : Make It Pop — Sarah J Hill
Author  : Sarah Hill
Contact : sarah@sarahjhill.com

Adapted from "Shock" (ThemeForest item g7OgNzSh) by
Codings, used under the purchased ThemeForest licence.
Modified for Sarah J Hill in 2026: rebranded,
unused components removed, and simplified to the
components this site actually uses.

See THIRD-PARTY-NOTICES.md for the full licence terms.

----------------------------------------------*/

/* Stripped to the rules this site reaches. Verified against all
   three pages: computed layout and type unchanged. Regenerate
   rather than hand-edit if new components are added. */

.cursor-effect{
	display: none;
}
@media (any-pointer: fine){.cursor-effect{
		position: fixed;
		z-index: 1000;
		top: 0;
		left: 0;
		display: block;
		pointer-events: none;
		opacity: 0;
	}
.cursor-effect-inner{
		fill: none;
		stroke: var(--color);
		stroke-width: 1px;
	}}
.side-widget{
	position: fixed;
	z-index: 11;
	top: 0;
	width: auto;
	height: 100%;
	padding: 1rem 0;
	pointer-events: none;
	transition: transform 1s cubic-bezier(0.2, 1, 0.20, 1);
}
.side-widget.to-right{
	right: 1rem;
	transform: translateX(100px);
}
.side-widget.to-left{
	left: 1rem;
	transform: translateX(-100px);
}
.side-widget.to-right.show,
.side-widget.to-left.show{
	transform: translateX(0);
}
.side-widget .item{
	width: auto;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.side-widget .widget{
	position: relative;
	top: initial;
	right: initial;
	bottom: initial;
	left: initial;
}
.basic-intro{
	position: relative;
	z-index: 1;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.basic-intro .title{
	margin: 0;
	color: var(--color);
}
.basic-intro .text-1, .basic-intro .text-2{
	color: var(--color);
}
.basic-intro .description{
	margin: 1.5rem 0;
	color: var(--color);
}
.basic-intro .description:last-child{
	margin-bottom: 0;
}
.basic-intro .button{
	margin: 1.5rem 0 0;
}
@media (max-width: 991px){.basic-intro .text-1, .basic-intro .text-2{
		display: block;
	}}
.banner{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner .content-wrapper{
	position: absolute;
	z-index: 2;
	width: 100%;
	height: auto;
	padding: 1rem;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.banner .image-wrapper{
	overflow: hidden;
	position: relative;
	width: 100%;
	height: auto;
	display: block;
}
.banner .image-wrapper .image{
	width: 100%;
	display: block;
}
@media (max-width: 991px) and (orientation: landscape){.banner .image-wrapper .image,
	.banner .image-wrapper .video{
		height: 150vh !important;
	}}
.gallery .item{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.gallery .item .image-wrapper{
	overflow: hidden;
	position: relative;
	width: 100%;
	height: auto;
	display: block;
}
.gallery .item .image{
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	display: block;
	transition: transform 2s cubic-bezier(0.2, 1, 0.2, 1);
}
.gallery .item .image-wrapper .overlay{
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color);
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.gallery .item.active .overlay,
.gallery .item:hover .overlay{
	opacity: 1;
}
button{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.button{
	position: relative;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	border: none;
	border-radius: 0;
	background-color: var(--color);
	text-decoration: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	cursor: pointer;
}
.button:not(.magnetic-effect){
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.parent:hover .button,
.button:hover{
	background-color: var(--hover-color);
	border-color: var(--hover-color);
	border-image: unset;
}
.button .button-text{
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 1rem 1.25rem;
	font-family: var(--secondary-font);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	color: var(--color);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.button:hover .button-text{
	color: var(--hover-color);
}
.button .button-icon{
	position: relative;
	z-index: 1;
	margin-left: -0.75rem;
	padding-right: 1.25rem;
	font-size: 1rem;
	line-height: 1;
	color: var(--color);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.button:hover .button-icon{
	color: var(--hover-color);
}
.button.outline{
	border: 2px solid;
	border-color: var(--color);
	background-color: transparent;
}
.button.outline:hover{
	background-color: var(--hover-color) !important;
	border-color: var(--hover-color);
	border-image: unset;
}
.card{
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	word-wrap: break-word;
	background-color: transparent;
	background-clip: border-box;
	border: none;
	border-radius: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.card .card-body{
	position: relative;
	z-index: 1;
	padding: 1.75rem;
}
.card .title{
	margin-top: 0;
	margin-bottom: 1rem;
	color: var(--color);
}
.card.has-icon .title{
	margin-top: 1rem;
}
.card .description{
	margin-bottom: 0rem;
}
.card .overlay{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color);
	opacity: 1;
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.card.outline .overlay{
	background-color: transparent;
	opacity: 1;
}
.card.outline .overlay::before{
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid;
	border-radius: inherit;
	border-color: var(--color);
	transform: rotate(0deg);
}
.card.boxed{
	position: relative;
	width: 100%;
	height: 100%;
}
.card.boxed .image-wrapper{
	position: relative;
	overflow: hidden;
	width: 80%;
	margin-bottom: 20%;
	display: block;
}
.card.boxed .image-wrapper .image{
	position: relative;
	z-index: 1;
	width: 100%;
	display: block;
	pointer-events: none;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.card.boxed .image-wrapper .image.outline{
	padding: 10px 10px 0;
	filter: drop-shadow(2px 0 0 transparent) drop-shadow(-2px 0 transparent) drop-shadow(0 2px 0 transparent) drop-shadow(0 -2px 0 transparent) drop-shadow(2px 2px 0 transparent) drop-shadow(2px -2px 0 transparent) drop-shadow(-2px 2px 0 transparent) drop-shadow(-2px -2px 0 transparent);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.card.boxed .image-wrapper .image.outline.active,
.card.boxed:hover .image-wrapper .image.outline{
	filter: drop-shadow(2px 0 0 var(--color)) drop-shadow(-2px 0 var(--color)) drop-shadow(0 2px 0 var(--color)) drop-shadow(0 -2px 0 var(--color)) drop-shadow(2px 2px 0 var(--color)) drop-shadow(2px -2px 0 var(--color)) drop-shadow(-2px 2px 0 var(--color)) drop-shadow(-2px -2px 0 var(--color));
}
.card.boxed .image-wrapper .image-overlay{
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color);
	opacity: 1;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.card.boxed .image-wrapper .image-overlay.outline{
	background-color: transparent;
	border: 2px solid;
	border-color: var(--color);
}
.card.boxed .image-wrapper .image-overlay.active,
.card.boxed:hover .image-wrapper .image-overlay{
	background-color: var(--hover-color);
}
.card.boxed .box{
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 20%;
	width: 80%;
	height: auto;
	display: block;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
@media (max-width: 767px){.card.boxed .box .link{
		display: block;
	}
.card.boxed .box .link .badge{
		margin: 1rem 0 0 !important;
		display: inline-block;
	}}
.mip-main{	
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.mip-section{
	position: relative;
	z-index: 10;
	padding-top: 10rem;
}
.mip-section .container{
	position: relative;
	z-index: 1;
}
@media (max-width: 991px){.mip-main{	
		overflow: hidden;
	}
.mip-section .container{
    max-width: 960px !important;
    padding-left: 1rem;
    padding-right: 1rem;
	}
.mip-section .content-wrapper .container{
    padding-left: 0;
    padding-right: 0;
	}}
.image-wrapper{
	width: 100%;
}
.image-wrapper .image{
	width: 100%;
	height: auto;
	display: block;
}
.image-merge{
	position: absolute;
	top: 35%;
	width: 100%;
}
.image-merge .image{
	position: absolute;
	width: 100%;
	display: block;
}
table{
  caption-side: bottom;
  border-collapse: collapse;
	border-color: var(--color);
}
.badge{
	padding: 3.5px 10px;
	display: inline;
	border-radius: 0.25rem;
  border: 1px solid;
	border-color: var(--color);
	background-color: var(--color);
	font-family: var(--secondary-font);
	font-size: 0.85rem;
	font-weight: 400;
	color: var(--gray-color);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.badge.outline{
	background-color: transparent;
}
.badge.active,
.badge:hover{
	background-color: var(--hover-color);
	border-color: var(--hover-color);
	color: var(--white-color);
}
.badge .badge-text{
	display: table-row;
	color: var(--color);
}
.badge.active .badge-text,
.badge:hover .badge-text{
	color: var(--hover-color);
}
.label-vertical{
	position: absolute;
	z-index: 3;
	bottom: calc(100% + 15px);
	right: 15%;
	width: fit-content;
	height: max-content;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--secondary-font);
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 1px;
	color: var(--gray-color);
}
.label-vertical.to-bottom-right{
	bottom: 35px;
	right: 35px;
}
.has-divider .label-vertical.to-bottom-right{
	bottom: 300px;
	font-size: 12px;
	font-weight: 400;
}
.label-vertical .label-text{
	line-height: 0;
	color: var(--color);
}
.label-vertical .label-text .icon{
	transform: rotate(90deg);
	margin-bottom: 10px;
	line-height: 0;
}
.label-vertical .label-line{
	width: 1px;
	height: 35px;
	margin: 0 0 10px 0;
	display: inline-block;
	background-color: var(--color);
}
.label-vertical.outline{
	bottom: 120%;
	right: 10%;
	font-size: 2.5rem;
	font-weight: 800;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 1px;
}
.label-vertical.outline .label-line{
	width: 5px;
	height: 35px;
	margin: 0 5px 0 0;
	display: inline-block;
	border: 1px solid;
	border-color: var(--color);
	background: none;
}
@media (max-width: 767px){.label-vertical.outline{
    bottom: 110%;
    font-size: 1.5rem;
	}
.label-vertical.outline .label-line{
    display: none;
	}}
:root .horizontal-tab.scheme-1,
:root .vertical-tab.scheme-1{
	--color-1: var(--black-color);
	--color-2: var(--white-color);
	--color-3: var(--gray-25-color);
}
:root .horizontal-tab.scheme-2,
:root .vertical-tab.scheme-2{
	--color-1: var(--white-color);
	--color-2: var(--black-color);
	--color-3: var(--gray-25-color);
}
.nav-tabs{
	margin-top: 0;
	margin-bottom: 3rem;
	justify-content: center;
	border-bottom: 1px solid;
	border-color: var(--color-3);
}
.nav-tabs .nav-item{
	margin: 0;
}
.nav-tabs .nav-link,
.nav-pills .nav-link{
	position: relative;
	margin: 0;
	padding: 1.2rem 2rem;
	background: none;
	border: none;
	border-radius: unset;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: left;
	color: var(--gray-color);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.nav-tabs .nav-link{
	padding: 0 1rem 1.5rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus,
.nav-pills .nav-link:hover, .nav-pills .nav-link:focus{
	border: none;
	color: var(--color-1);
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link,
.nav-pills .nav-link.active, .nav-pills .nav-item.show .nav-link{
	background-color: inherit;
	border: none;
	color: var(--color-1);
}
.nav-tabs .nav-link:before, .nav-tabs .nav-item .nav-link:before{
	content: '';
	position: absolute;
	top: calc(100% + -2.5px);
	right: 50%;
	width: 0;
	height: 5px;
	background-color: var(--color);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.nav-tabs .nav-link:after, .nav-tabs .nav-item .nav-link:after{
	content: '';
	position: absolute;
	top: calc(100% + -2.5px);
	left: 50%;
	width: 0;
	height: 5px;
	background-color: var(--color);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.nav-tabs .nav-link.active:before, .nav-tabs .nav-item.show .nav-link:before,
.nav-tabs .nav-link.active:after, .nav-tabs .nav-item.show .nav-link:after{
	width: 50%;
}
@media (max-width: 991px){.horizontal-tab .nav-tabs{
		margin-bottom: 1.5rem;
	}
.nav-tabs .nav-link, .nav-pills .nav-link{
    padding: 0.75rem 1.5rem;
	}}
:root .icon-list.scheme-1{	
	--color-1: var(--gray-25-color);
}
:root .icon-list.scheme-2{	
	--color-1: var(--white-10-color);
}
.icon-list{
	position: relative;
	margin-bottom: 1rem;
	padding-left: 2rem;
	list-style: none;
}
.icon-list .icon-list{
	margin-bottom: 0;
}
.icon-list .item{
	text-align: left;
}
.icon-list .link{
	position: initial;
	color: var(--gray-color);
}
.icon-list .link:hover{
	color: var(--color);
}
.icon-list .icon{
	position: absolute;
	left: 0;
	margin: 0;
	padding: 1.5px 0;
	font-size: 1.3rem;
	color: var(--color);
}
.animated-underline{
	position: relative;
	z-index: 1;
	padding: 0;
	display: inline-block;
	background: none;
	text-decoration: none;
	color: inherit;
}
.animated-underline::before{
	content: '';
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 0;
	height: 30%;
	background-color: var(--color);
}
.animated-underline.active::before,
.parent:hover .animated-underline::before{
	animation: width-animation 0.5s forwards;
}
@media(max-width: 991px){
	.vertical-lines {
		display: none;
	}
}
:root .zzz.scheme-1{
	--color-1: var(--white-color);
	--color-2: var(--color);
}
:root .zzz.scheme-2{
	--color-1: var(--black-color);
	--color-2: var(--color);
}
:root .zzz.scheme-3{
	--color-1: var(--color);
	--color-2: var(--white-color);
}
.zzz{
	position: relative;
	z-index: -1;
	width: 0;
	height: 15px;
	display: block;
	opacity: 0.5;
}
.zzz.active{
	animation: width-animation 1s forwards;
	animation-delay: 0.4s;
}
.zzz.large{
	height: 32px;
}
.zzz::before,
.zzz::after{
	content: '';
	position: absolute;
	left: 0;
	width: inherit;
	height: inherit;
	background-size: 14.5px 100%;
	top: 1px;
	background-image: linear-gradient(45deg, var(--color-1) 35%, transparent 0),
		linear-gradient(-45deg, var(--color-1) 35%, transparent 0);
}
.zzz.large::before,
.zzz.large::after{
	background-size: 32px 100%;
}
.zzz::before{
	top: -1px;
	background-image: linear-gradient(45deg, var(--color-2) 35%, transparent 0),
		linear-gradient(-45deg, var(--color-2) 35%, transparent 0);
}
:root .mip-footer.scheme-1{
	--color-1: var(--black-color);
	--color-2: var(--white-color);
	--color-3: var(--white-10-color);
}
:root .mip-footer.scheme-2{
	--color-1: var(--white-color);
	--color-2: var(--black-color);
	--color-3: var(--black-10-color);
}
.mip-footer{
	position: relative;
	background-color: var(--color-1);
}
.mip-footer .footer-content{
	position: relative;
	padding: 35px 0;
}
.mip-footer .footer-content .footer-item{
	margin-bottom: 2.5rem;
}
.mip-footer .footer-content .footer-item:last-child{
	margin-bottom: 0;
}
.mip-footer .footer-content .title{
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid;
	border-color: var(--color-3);
	font-family: var(--secondary-font);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-2);
}
.mip-footer .footer-content .footer-brand{
	margin: 0;
	margin-bottom: 1.5rem;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.mip-footer .footer-content .footer-brand .logo{
	width: auto;
	height: 100%;
	max-height: 38px;
	display: block;
}
.mip-footer .footer-content .footer-brand .logo-after-text{
  margin-left: 10px;
  font-family: var(--secondary-font);
  font-size: 1.2rem;
  font-weight: 500;
	color: var(--color-2);
}
.mip-footer .footer-content .footer-text{
	margin-bottom: 1.5rem;
}
.mip-footer .footer-content .nav-item{
	margin: 0;
}
.mip-footer .footer-content .nav-link{
	margin: 0;
  padding: 0.5rem 0;
	font-size: 1rem;
	color: var(--color-2);
}
.mip-footer .footer-content .nav-list{
	margin: 0;
}
.mip-footer .footer-content .nav-list .nav-item:first-child .nav-link{
	padding-top: 0;
}
.mip-footer .footer-content .nav-list .nav-item:last-child .nav-link{
	padding-bottom: 0;
}
.mip-footer .footer-content .nav-link .text{
	background: linear-gradient(to right, var(--color), var(--color) 50%, var(--gray-color) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	transition: background-position 0.4s ease;
	font-weight: 700;
	color: var(--gray-color);
}
.mip-footer .footer-content .nav-link:hover .text{
	background-position: 0% 100%;
	filter: none;
}
.mip-footer .footer-content .nav-link.has-icon:hover .icon{
	color: var(--color);
}
.mip-footer .footer-content .nav-link.has-icon{
	display: inline-flex;
	align-items: center;
}
.mip-footer .footer-content .nav-link.has-icon .icon{
	margin-right: 10px;
}
@media (max-width: 991px){.mip-footer .container{
    max-width: 960px !important;
    padding-left: 1rem;
    padding-right: 1rem;
	}}
@media (max-width: 767px){.mip-footer .footer-content .row > *:not(:first-child){
    margin-top: 0;
	}
.mip-footer .footer-content .row > *:last-child .footer-item{
		margin-bottom: 0;
	}
.mip-footer .footer-content .footer-item,
	.mip-footer .footer-content .footer-item:last-child{
    margin-bottom: 1.5rem;
	}
.mip-footer .footer-content .title{
		padding-top: 1.5rem;
		padding-bottom: 0;
		border-bottom: none;
    border-top: 1px solid;
    border-color: var(--color-3);
	}
.mip-footer .footer-content .nav-list{
		margin-bottom: 1.5rem;
	}}
.bubble{
	position:absolute;
	width:10em;
	height:10em;
	border:1px solid rgba(255,255,255,0.1);
	border-radius:50%;
	background: radial-gradient(ellipse at center,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 70%);
	box-shadow: inset 0 20px 30px rgba(255, 255, 255, 0.4), inset 1em 1em 1em rgba(255, 255, 255, 0.6), 0 1em 2em rgba(0, 0, 0, 0.25);
  }
.bubble:hover{
	display:none;
  }
.b1{
	animation: floatup 10s linear infinite, sideways 5s ease-in-out infinite alternate;
	left: 10%;
	top:100%; 
  }
.b2{
	animation: floatup 5s linear infinite, sideways 4s ease-in-out 1s infinite alternate;
	left: 15%;
	top: 30%;
	transform: scale(.7);
  }
.b3{
	animation: floatup 4s linear infinite, sideways 6s ease-in-out 6s infinite alternate;
	left: 20%;
	transform: scale(1.2);
  }
.b4{
	animation: floatup 6s linear infinite, sideways 5s ease-in-out 3s infinite alternate;
	left: 25%;
	top:90%;
	transform: scale(.5);
  }
.b5{
	animation: floatup 8s linear infinite, sideways 6s ease-in-out 3s infinite alternate;
	left: 30%;
	top:30%;
	transform: scale(1.1);
  }
.b6{
	animation: floatup 7s linear infinite, sideways 4s ease-in-out 3.5s infinite alternate;
	left:40%;
	top:50%;
	transform: scale(.7);
  }
.b7{
	animation: floatup 6s linear infinite, sideways 5s ease-in-out 4s infinite alternate;
	left: 90%;
	top:90%;
	transform: scale(.6);
  }
@keyframes floatup{
	0% {margin-top: 50%;}
	100% {margin-top: -50%;}
  }
@keyframes sideways{
	0% {margin-left: 0em;}
	100%{margin-left: 20em;}
	//100% {margin-left: 0px;}
  }
$cirle-width: 95vmin;
// You can play with these for a little variation
  $shadow-depth: $cirle-width * .125;
$shadow-depth-hover-ratio: 2;
$shadow-blur: $shadow-depth * 0;
$shadow-spread: $shadow-depth * 0;
$y-offset: $shadow-depth * .5;
$x-offset: $y-offset * 1.7320508076;
// √3
  $y-offset-hover: $y-offset * $shadow-depth-hover-ratio;
$x-offset-hover: $x-offset * $shadow-depth-hover-ratio;
$red:    rgba(255,   0,   0, .45);
$orange: rgba(253, 127,  11, .54);
$yellow: rgba(235, 255,   0, .54);
$green:  rgba( 22, 243,   3, .55);
$blue:   rgba(  0, 133, 255, .53);
$purple: rgba(190,  11, 224, .55);
@keyframes spin{
	  0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }