/* ========================================
PARALLAX EFFECT - To be removed
======================================== */
.wk__wrapper-parallax {
	position: relative;
	transform-style: inherit;
	width: 100%;
}
.wk__hero-wrapper {	z-index: -1 }
.wk__hero-parallax {
	left: 0;
	position: fixed;
	top: 0;
	z-index: -2;
}
.wk__hero-parallax-blog{
	left: 0;
	position: fixed;
	top: 0;
	z-index: -2;
}
.wl__method-wrapper {
	z-index: 3;
}

/* ========================================
FIXED COLUMN - To be removed
======================================== */
.fixed-column,
.fixed-other-column {
	position: fixed;
	width: calc(50% - 10px); 
	background-color: var(--color-bg-light);
	padding: 15px;
	z-index: 1000;
}
.fixed-column { left: 0 }
.fixed-other-column { right: 0 }


/* ========================================
ASL PLUGIN - To be removed
======================================== */
.asl-cont .sl-main-cont{
	box-shadow: none!important;
}

/* ========================================
ANIMATED ARROWS - To be removed
======================================== */
.arrow-wrapper {
	display: flex;
}
.arrow-container {
	font-family: var(--font-primary);
	font-size: 28px;
	color: var(--color-accent);
	opacity: 0;
	animation: arrowLoad 2s linear infinite;
}
.arrow-title {
	font-family: var(--font-secondary);
	color: var(--color-text-light);
	font-size: clamp(22px, 2.33vw, 28px);
	line-height: 1em;
	margin-left: 10px;
}
@keyframes arrowLoad {0% {
	opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* ========================================
ANIMATED BUTTONS - To be removed
========================================*/
.btn-transition-hover {
	position: relative;
	display: inline-block;
	padding: 13px 15px;
	width: 199px;
	border-radius: 40px;
	background: var(--bluesweat, #00A0DF);
	border: none;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.5s ease;
}
.btn-tow { background: #ffff }
.btn-transition-hover:hover { background-color: #00FFC2 }
.icon {
	position: absolute;
	top: 50%;
	right: -45px;
	transform: translateY(-50%);
	width: 46px;
	height: 45px;
	background-color: #00A0DF;
	border-radius: 50%;
	transition: transform 0.5s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.arrow {
	font-size: 10px !important;
	color: white;
	transition: color 0.5s ease;
	font-family: 'ALS Hauss - Regular' !important;
	padding-top: 4px;
}
.text {
	color: var(--white, #FFF);
	text-align: center;
	font-family: 'ALS Hauss - Regular' !important;
	font-size: 14px;
	font-style: bold;
	font-weight: 500;
	line-height: normal;
	transition: color 0.5s ease;
}
.text-tow { color: #000 }
.black-icon {
	position: absolute;
	top: 50%;
	right: -45px;
	transform: translateY(-50%);
	width: 46px;
	height: 45px;
	background-color: #000;
	border-radius: 50%;
	transition: transform 0.5s ease, opacity 0.5s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	opacity: 0;
}
.btn-transition-hover:hover .icon {
	transform: translateX(-241px) translateY(-50%);
	background-color: #00FFC2;
}
.btn-transition-hover:hover .arrow { color: #000 }
.icon-tow {	background-color: #00FFC2!important }
.icon-tow {	background-color: #fff!important }
.btn-transition-hover:hover .text {	color: #000 }
.btn-transition-hover:hover .black-icon {
	transform: translateX(-241px) translateY(-50%);
	opacity: 1;
}
.black-icon-svg { display: none }

/* ========================================
MODALS OVERWRITE
======================================== 
.modal {
	display: none;
	position: fixed;
	z-index: 100000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
	padding-top: 60px;
}
.modal-content {
	background-color: var(--color-bg-dark);
	margin: 5% auto;
	padding: 20px;
	border: 0px solid #888;
	border-radius: 10px;
	width: 80%;
	align-items: center;
	justify-content: center;
}
.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: white;
	text-decoration: none;
	cursor: pointer;
}
.select-button-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0);
	cursor: pointer;
}
*/

/* Desktop/laptop optimization - fixed width modal on larger screens */
@media (min-width: 768px) {
	.modal-content {
		width: 650px;
	}
	.select-button-container {
		flex-direction: row;
		justify-content: space-between;
	} 
	#goButton {
		margin: 10px;
	}
}

/* ========================================
CHATBOT Icon
========================================*/
#chatbot-icon {
  right: 70px  !important;;
}