.priority-popup {
	position: absolute;
	background: #000;
	color: #fff;
	padding: 8px;
	border-radius: 6px;
	z-index: 1000000;
	font-size: 14px;
}
.priority-popup a {
	font-size: inherit !important;
	color: inherit !important;
	text-decoration: underline;
}
.priority-popup::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -10px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 10px solid black;
}
.v2-select .select2-drop.select2-drop-active {
	border: 1px solid #939BA4;
	box-shadow: none;
	border-radius: 0 0 10px 10px;
	border-top: none;
	padding: 0;
}
.v2-select .select2-drop.select2-drop-active .select2-search {
	height: 0px;
	min-height: 0px;
}
.v2-select .select2-drop.select2-drop-active .select2-search input {
	height: 0 !important;
	min-height: 0;
	border: none;
	padding: 0;
	margin: 0;
}
.v2-select .select2-drop.select2-drop-active .select2-results {
	margin: -16px 0 0 0;
	padding: 0;
}
.v2-select .select2-drop.select2-drop-active .select2-results .select2-result-label {
	padding: 6px 10px;
	position: relative;
}
.v2-select .select2-drop.select2-drop-active .select2-results .select2-result-label .priority-info {
	position: relative;
	font-size: 16px;
	display: inline-block;
	margin-left: 0;
	padding: 0 10px;
}
.v2-select .select2-drop.select2-drop-active .select2-results .select2-result-label .priority-info::before {
	content: "\f059";
	font-family: FontAwesome !important;
}
.whale-container {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: none;
	z-index: 2000;
	overflow: hidden;
}
.whale-container .whale-container-inner {
	position: relative;
}
.whale-container .whale-container-inner .whale-svg {
	position: absolute;
	left: calc(50% - 380px);
	top: 0px;
	transform: translateY(2000px);
	bottom: auto;
	background-image: url("whale.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	max-width: 100%;
	width: 760px;
	height: 856px;
	animation-duration: 3s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}
.whale-container.happy {
	display: block;
}
.whale-container.happy .whale-svg {
	animation-name: happy;
}
@media screen and (max-width:768px) {
	.whale-svg {
		left: 0 !important;
	}
}
@keyframes happy {
		0% {
		transform: translateY(2000px);
	}
		30% {
		transform: translateY(0px);
	}
		50% {
		transform: translateY(200px);
	}
		66% {
		transform: translateY(0px);
	}
		100% {
		transform: translateY(2000px);
	}
	}