﻿/* #region Noty notification */
@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
	}
}

@-moz-keyframes rotation {
	from {
		-moz-transform: rotate(0deg);
	}

	to {
		-moz-transform: rotate(359deg);
	}
}

@-o-keyframes rotation {
	from {
		-o-transform: rotate(0deg);
	}

	to {
		-o-transform: rotate(359deg);
	}
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(359deg);
	}
}

.spinner,
.spinner-small {
	height: 40px;
	width: 40px;
	position: absolute;
	left: 50%;
	margin: -20px 0 0 -20px;
	border: 2px solid #24B498;
	border-top: 2px solid #fff;
	border-radius: 100%;
	-webkit-animation: rotation .6s infinite linear;
	-moz-animation: rotation .6s infinite linear;
	-o-animation: rotation .6s infinite linear;
	animation: rotation .6s infinite linear;
}

.noty_bar .spinner,
.noty_bar .spinner-small {
	height: 20px;
	width: 20px;
	top: 50%;
	left: 0;
	margin: -10px 0 0 10px;
}

	.noty_bar .spinner + .noty_body,
	.noty_bar .spinner-small + .noty_body {
		padding-left: 40px;
	}

.spinner-small {
	border: 2px solid #24B498;
	border-top: 2px solid #fff;
	height: 30px;
	width: 30px;
	margin: -15px 0 0 -15px;
}

button .spinner {
	height: 25px;
	width: 25px;
	position: relative;
	left: 0;
	margin: 0;
	margin-right: 10px;
	border: 2px solid #24B498;
	border-top: 2px solid #fff;
	border-radius: 100%;
	-webkit-animation: rotation .6s infinite linear;
	-moz-animation: rotation .6s infinite linear;
	-o-animation: rotation .6s infinite linear;
	animation: rotation .6s infinite linear;
	display: inline-block;
	vertical-align: middle;
	display: none;
}

button span {
	vertical-align: middle;
}

.noty_bar {
	position: relative;
}

.noty_close {
	position: absolute;
	top: 50%;
	right: 5px;
	float: none;
	margin-top: -11px;
	height: 15px;
}

.noty_message {
	font-size: 10.5pt !important;
	padding-right: 7px;
}
/* #endregion */

.cc-window .cc-btn {
	color: #000 !important;
	border-style: none;
}

.cc-link {
	padding: 0;
}

.cc-window.cc-floating {
	max-width: 30em;
}

.progressBar {
	border-radius: 60px;
	overflow: hidden;
	width: 100%;
	height: 10px;
	border-bottom-left-radius: 7px;
	border-top-left-radius: 0;
	border-bottom-right-radius: 7px;
	border-top-right-radius: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.65;
}

	.progressBar span {
		display: block;
	}

	.progressBar .bar {
		background: rgba(0,0,0,0.075);
		height: 10px;
	}

	.progressBar .progress {
		color: #fff;
		width: 0;
		height: 10px;
		border-bottom-left-radius: 7px;
		border-top-left-radius: 0;
		border-bottom-right-radius: 7px;
		border-top-right-radius: 0;
	}


/* Autocomplete input */
.autocomplete {
	/*the container must be positioned relative:*/
	position: relative;
	display: inline-block;
	width: 100%;
}

.autocomplete-items {
	position: absolute;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	/*position the autocomplete items to be the same width as the container:*/
	top: 100%;
	left: 0;
	right: 0;
}

	.autocomplete-items div {
		padding: 5px 10px;
		cursor: pointer;
		background-color: #fff;
		border-bottom: 1px solid #d4d4d4;
	}

		.autocomplete-items div:hover {
			/*when hovering an item:*/
			background-color: #e9e9e9;
		}

.autocomplete-active {
	/*when navigating through the items using the arrow keys:*/
	background-color: DodgerBlue !important;
	color: #ffffff;
}
/**********************/

body {
	scroll-behavior: smooth;
}

.grecaptcha-badge {
    visibility: hidden;
}