/* Popup
/*------------------------------------------------------------*/
/* Plain Text Link - Backgound Highlight */
.text-gradient-orange {
	font-weight: bold;
	background: -webkit-linear-gradient(90deg, #DD7453 0%, #E7AB53 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
  
/* Popup from bottom */
.popup__wrapper {
	position: sticky;
	bottom: -290px;
	transition: bottom .5s ease-in-out;

	display: flex;
	justify-content: flex-end;

	pointer-events: none;

	z-index: 10;
}

.popup__wrapper.on {
	bottom: 0;
}


/* Popup from right */
.popup__wrapper.from-right {
	position: fixed;
	bottom: 60px;
	right: -400px;
	transition: right .5s ease-in-out;
}

.popup__wrapper.from-right.on {
	right: 0;
}


/* Hide */
.popup__wrapper.hide {
	display: none !important;
}


/* Popup */
.popup {
	font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
	width: 360px;
	
	background-color: #FFF;
	color: #333;
	padding: 15px 20px;
	border-radius: 16px;
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);

	position: absolute;
	bottom: 15px;
	right: 15px;

	pointer-events: all;

	display: none;
}


/* Popup - Close */
.popup .close {
	width: 24px;
	height: 24px;
	font-size: 20px;
	color: #aaa;

	display: flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	right: 15px;
	top: 15px;

	opacity: 1;

	z-index: 3;
}

.popup .close:hover {
	color: #ccc;
}

.popup .close svg {
	width: 90%;
	height: 90%;
}


/* Popup - Message */
.popup .popup__msg {
	font-size: 13px;
	font-weight: 500;
	color: #E8552A;
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.popup .popup__msg i {
	margin-right: 6px;
}



/* Popup with Job */
.popup__wrapper {
	display: none;
}



/* Popup message with icon */
.popup--icon-msg {
	font-size: 14px;
	padding: 15px;
	padding-right: 40px;
	border-radius: 12px;
	border-left: 6px solid #F0805D;
}

.popup--icon-msg .popup__content {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.popup--icon-msg .popup__content a {
	display: inline;
}

.popup--icon-msg .popup__content a .fa-arrow-right {
	margin-left: 6px;
}


@media (min-width: 992px) {
	.popup__wrapper {
		display: unset;
	}
}


/* Floating Action Button (Extended) - With Text e.g. Looking for jobs?
/*------------------------------------------------------------*/
.floating-act-btn:link,
.floating-act-btn:visited {
	font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
	
	width: fit-content;
	height: 42px;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 42px;
	
	/* Incomplete Applications - Orange */
	background: linear-gradient(90deg, #DD7453 0%, #E7AB53 100%);
	color: #FFF;
	box-shadow: 0 4px 20px 0px rgba(0,0,0,0.15);

	display: flex;
	align-items: center;
	justify-content: center;

	position: fixed;
	left: 50%;
	bottom: -42px;

	cursor: pointer;
	transform: translateX(-50%);
	transition: bottom .5s ease-in-out;
  
	box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.3);
	z-index: 100;
}

.floating-act-btn.on {
	bottom: 15px;
}

.floating-act-btn svg {
	width: 50%;
	height: 50%;
}

.floating-act-btn img {
	margin-right: 6px;
}

.floating-act-btn--extended span {
	white-space: pre;
}

/* Moving Arrow Right */
.animated-arrow-right {
    animation: arrow-right-slide 1s ease-in-out infinite;
    margin-left: 6px;
}	  

@keyframes arrow-right-slide {
    0%,
    100% {
      transform: translate(0, 0);
    }
  
    50% {
      transform: translate(6px, 0);
    }
}

@media (min-width: 992px) {
	.floating-act-btn--extended:link,
	.floating-act-btn--extended:visited {
		display: none;
	}

	.popup {
		display: unset;
	}
}