﻿/******************* 
* Pace Loader
********************/

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
	background: #b7384d;
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 4px;
}

.pace .pace-progress-inner {
	display: block;
	position: absolute;
	right: 0px;
	width: 100px;
	height: 100%;
	box-shadow: 0 0 10px #b7384d, 0 0 5px #b7384d;
	opacity: 1.0;
	-webkit-transform: rotate(3deg) translate(0px, -4px);
	-moz-transform: rotate(3deg) translate(0px, -4px);
	-ms-transform: rotate(3deg) translate(0px, -4px);
	-o-transform: rotate(3deg) translate(0px, -4px);
	transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
	display: block;
	position: fixed;
	z-index: 2000;
	top: 25px;
	right: 15px;
	width: 18px;
	height: 18px;
	border: solid 2px transparent;
	border-top-color: #b7384d;
	border-left-color: #b7384d;
	border-radius: 10px;
	-webkit-animation: pace-spinner 400ms linear infinite;
	-moz-animation: pace-spinner 400ms linear infinite;
	-ms-animation: pace-spinner 400ms linear infinite;
	-o-animation: pace-spinner 400ms linear infinite;
	animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes pace-spinner {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes pace-spinner {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes pace-spinner {
    0% {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes pace-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/******************* 
* Scrollbar
********************/
/* Container style */
.ps {
	overflow: hidden !important;
	overflow-anchor: none;
	-ms-overflow-style: none;
	touch-action: auto;
	-ms-touch-action: auto;
}

/* Rail styles */
.ps__rail-x {
	display: none;
	opacity: 0;
	-webkit-transition: background-color .2s linear, opacity .2s linear;
	transition: background-color .2s linear, opacity .2s linear;
	height: 6px;
	bottom: 0;
	position: absolute;
}

.ps__rail-y {
	display: none;
	opacity: 0;
	-webkit-transition: background-color .2s linear, opacity .2s linear;
	transition: background-color .2s linear, opacity .2s linear;
	width: 6px;
	right: 0;
	position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
	display: block;
	background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
	opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
	opacity: 0.9;
}

/* Thumb styles */
.ps__thumb-x {
	border-radius: 0;
	-webkit-transition: background-color .2s linear, height .2s ease-in-out;
	transition: background-color .2s linear, height .2s ease-in-out;
	height: 6px;
	bottom: 0;
	position: absolute;
}

.ps__thumb-y {
	background-color: #aaa;
	border-radius: 0;
	-webkit-transition: background-color .2s linear, width .2s ease-in-out;
	transition: background-color .2s linear, width .2s ease-in-out;
	width: 6px;
	right: 0;
	position: absolute;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
	.scrollable.ps {
		overflow: auto !important;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.ps {
		overflow: auto !important;
	}
}

/********************* 
* Toast Notification
**********************/
.toast-title {
	font-weight: bold;
}

.toast-message {
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	display: table-cell;
	vertical-align: middle;
	max-width: calc(100% - 75px);
	line-height: 1.2;
}

	.toast-message a,
	.toast-message label {
		color: #FFFFFF;
	}

		.toast-message a:hover {
			color: #CCCCCC;
			text-decoration: none;
		}

.toast-close-button {
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	color: #fff;
	filter: alpha(opacity=80);
	float: right;
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	opacity: 0.8;
	position: relative;
}

	.toast-close-button:hover,
	.toast-close-button:focus {
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
		color: #000000;
		cursor: pointer;
		filter: alpha(opacity=40);
		opacity: 0.4;
		text-decoration: none;
	}

.rtl .toast-close-button {
	float: left;
	left: -0.3em;
	right: 0.3em;
}


/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/

button.toast-close-button {
	-webkit-appearance: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}

.toast-top-center {
	right: 0;
	top: 0;
	width: 100%;
}

.toast-bottom-center {
	bottom: 0;
	right: 0;
	width: 100%;
}

.toast-top-full-width {
	right: 0;
	top: 60px;
	transition: width ease .2s;
}

.toast-bottom-full-width {
	bottom: 0;
	right: 0;
	width: 100%;
}

.toast-top-full-width,
.toast-bottom-full-width {
	width: calc(100% - 240px);
}

.mini-sidebar .toast-top-full-width,
.mini-sidebar .toast-bottom-full-width {
	width: calc(100% - 60px);
}

.modal-open .toast-top-full-width .toast-error {
	margin-top: -60px !important;
}

.modal-open .toast-top-full-width .toast-error {
	min-height: 60px;
}

.toast-top-left {
	left: 25px;
	top: 25px;
}

.toast-top-right {
	right: 25px;
	top: 25px;
}

.modal-open .toast-top-right,
.modal-open .toast-bottom-right {
	margin-right: 17px;
}

.toast-bottom-right {
	bottom: 25px;
	right: 25px;
}

.toast-bottom-left {
	bottom: 25px;
	left: 25px;
}

#toast-container {
	pointer-events: none;
	position: fixed;
	z-index: 999999;
}

	#toast-container > div {
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
		background-position: 15px center;
		background-repeat: no-repeat;
		color: #FFFFFF;
	    display: table;
		filter: alpha(opacity=90);
		margin: 0 0 6px;
		opacity: 0.9;
		overflow: hidden;
		padding: 15px;
		pointer-events: auto;
		position: relative;
		width: 350px;
	}

		#toast-container > div.rtl {
			background-position: right 15px center;
			direction: rtl;
			padding: 15px 50px 15px 15px;
		}

		#toast-container > div:hover {
			-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
			cursor: pointer;
			filter: alpha(opacity=100);
			opacity: 1;
		}


	#toast-container > .toast-info:before,
	#toast-container > .toast-error:before,
	#toast-container > .toast-success:before,
	#toast-container > .toast-warning:before {
		font-family: "coreicons";
		display: inline-block;
		width: 35px;
		float: left;
		height: 35px;
		line-height: 36px;
		font-weight: bold;
		text-align: center;
		-webkit-animation: rotateIn .5s ease-in-out;
		animation: rotateIn .5s ease-in-out;
		margin-top: 1px;
		margin-left: 3px;
		margin-right: 10px;
	}

	#toast-container > .toast-info::after,
	#toast-container > .toast-error::after,
	#toast-container > .toast-success::after,
	#toast-container > .toast-warning::after {
		content: "";
		vertical-align: middle;
		display: inline-block;
		width: 35px;
		height: 35px;
		font-weight: bold;
		text-align: center;
		border-radius: 100%;
		border: 2px solid #fff;
		position: absolute;
		left: 17px;
		top: 17px;
		opacity: .5;
	}

    #toast-container > .toast-info::before {
        content: "\e64c";
        font-size: 16px;
        margin-left: 2px;
    }

    #toast-container > .toast-error::before {
        content: "\e646";
        font-size: 12px;
        margin-left: 2px;
    }

	#toast-container > .toast-success::before {
		content: "\f12c";
		font-size: 16px;
	}

	#toast-container > .toast-warning::before {
		content: "\e652";
		font-size: 18px;
	}

	#toast-container.toast-top-center > div,
	#toast-container.toast-bottom-center > div {
		margin-left: auto;
		margin-right: auto;
		width: 350px;
	}

	#toast-container.toast-top-full-width > div,
	#toast-container.toast-bottom-full-width > div {
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}

.toast {
	background-color: #030303;
	transition: margin ease .2s;
}

.toast-success {
    background-color: #69af2d;
}

.toast-error {
	background-color: #fc4b6c;
}

.toast-info {
    background-color: #26c6da;
}

.toast-warning {
	background-color: #ffb22b;
}

.toast-progress {
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
	background-color: #000000;
	bottom: 0;
	filter: alpha(opacity=40);
	height: 4px;
	left: 0;
	opacity: 0.4;
	position: absolute;
}


/*Responsive Design*/

@media all and (max-width: 240px) {
	#toast-container > div {
		padding: 8px 8px 8px 50px;
		width: 11em;
	}

		#toast-container > div.rtl {
			padding: 8px 50px 8px 8px;
		}

	#toast-container .toast-close-button {
		right: -0.2em;
		top: -0.2em;
	}

	#toast-container .rtl .toast-close-button {
		left: -0.2em;
		right: 0.2em;
	}
}

@media all and (min-width: 241px) and (max-width: 480px) {
	#toast-container > div {
		padding: 8px 8px 8px 50px;
		width: 18em;
	}

		#toast-container > div.rtl {
			padding: 8px 50px 8px 8px;
		}

	#toast-container .toast-close-button {
		right: -0.2em;
		top: -0.2em;
	}

	#toast-container .rtl .toast-close-button {
		left: -0.2em;
		right: 0.2em;
	}
}

@media all and (min-width: 481px) and (max-width: 768px) {
	#toast-container > div {
		padding: 15px 15px 15px 50px;
		width: 25em;
	}

		#toast-container > div.rtl {
			padding: 15px 50px 15px 15px;
		}
}


/********************* 
* Select2
**********************/
.select2 > * {
	outline: none;
}

.select2-container {
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	position: relative;
	vertical-align: middle;
	width: 100% !important;
}

	.select2-container .select2-selection--single {
		-webkit-user-select: none;
		box-sizing: border-box;
		cursor: pointer;
		display: block;
		user-select: none;
	}

		.select2-container .select2-selection--single .select2-selection__rendered {
			display: block;
			overflow: hidden;
			padding-right: 20px;
			text-overflow: ellipsis;
			white-space: nowrap;
		}

		.select2-container .select2-selection--single .select2-selection__clear {
			position: relative;
		}

	.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
		padding-left: 20px;
		padding-right: 8px;
	}

	.select2-container .select2-selection--multiple {
		-webkit-user-select: none;
		box-sizing: border-box;
		cursor: pointer;
		display: block;
		min-height: 32px;
		user-select: none;
	}

		.select2-container .select2-selection--multiple .select2-selection__rendered {
			display: inline-block;
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
		}

	.select2-container .select2-search--inline {
		float: left;
	}

		.select2-container .select2-search--inline .select2-search__field {
			border: none;
			box-sizing: border-box;
			font-size: 100%;
			margin-top: 5px;
			padding: 0;
		}

			.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
				-webkit-appearance: none;
			}

.select2-dropdown {
	background-color: #fff;
	box-sizing: border-box;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	display: block;
	left: -100000px;
	position: absolute;
	width: 100%;
	z-index: 1051;
}

.select2-results {
	display: block;
}

.select2-results__options {
	list-style: none;
	margin: 0;
	padding: 0;
}

.select2-results__option {
	-webkit-user-select: none;
	padding: 8px 6px;
	position: relative;
	user-select: none;
}

	.select2-results__option[aria-selected] {
		cursor: pointer;
	}

.select2-container--open .select2-dropdown {
	left: 0;
}

.select2-search--dropdown {
	display: block;
}

.select2-search.select2-search--dropdown:after {
    content: '\e610';
    font-family: 'coreicons';
    font-size: 15px;
    -ms-opacity: .5;
    opacity: .5;
    position: absolute;
    right: 10px;
    top: 8px;
}

.select2-search--dropdown .select2-search__field {
		box-sizing: border-box;
		padding: 4px;
		width: 100%;
	}

		.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
			-webkit-appearance: none;
		}

	.select2-search--dropdown.select2-search--hide {
		display: none;
	}

.select2-close-mask {
	background-color: #fff;
	border: 0;
	display: block;
	filter: alpha(opacity=0);
	height: auto;
	left: 0;
	margin: 0;
	min-height: 100%;
	min-width: 100%;
	opacity: 0;
	padding: 0;
	position: fixed;
	top: 0;
	width: auto;
	z-index: 99;
}

.select2-hidden-accessible {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
}

	.select2-container--default .select2-selection--single .select2-selection__clear {
		cursor: pointer;
		float: right;
		font-weight: bold;
	}

		.select2-container--default .select2-selection--single .select2-selection__placeholder {
			color: #7b8490;
		}

	.select2-container--default .select2-selection--single .select2-selection__arrow {
		height: calc(100% - 3px);
		position: absolute;
		right: 1px;
		top: 1px;
		width: 20px;
	}

		.select2-container--default .select2-selection--single .select2-selection__arrow b {
			border-color: #888 transparent transparent transparent;
			border-style: solid;
			border-width: 5px 4px 0 4px;
			height: 0;
			left: 50%;
			margin-left: -4px;
			margin-top: -2px;
			position: absolute;
			top: 50%;
			width: 0;
		}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
	float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
	left: 1px;
	right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
	background-color: #eee;
	cursor: default;
}

	.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
		display: none;
	}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888 transparent;
	border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
	cursor: text;
}

	.select2-container--default .select2-selection--multiple .select2-selection__rendered {
		box-sizing: border-box;
		list-style: none;
		margin: 0;
		padding: 0;
		width: 100%;
	}

		.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
			list-style: none;
		}

	.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
		color: #999;
		float: left;
		margin-top: 5px;
	}

	.select2-container--default .select2-selection--multiple .select2-selection__clear {
		cursor: pointer;
		float: right;
		font-weight: bold;
		margin-right: 10px;
		margin-top: 5px;
	}

	.select2-container--default .select2-selection--multiple .select2-selection__choice {
		background-color: #e4e4e4;
		border: 1px solid #d9d9d9;
		border-radius: 14px;
		cursor: default;
		float: left;
		font-size: 14px;
		margin-right: 5px;
		margin-top: 5px;
		padding: 0 10px 0 5px;
	}

	.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
		cursor: pointer;
		display: inline-block;
		font-weight: bold;
		margin-right: 6px;
	}

		.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
			color: #606e8b;
		}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
	float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
	margin-left: 5px;
	margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
	margin-left: 2px;
	margin-right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
	cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
	display: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	background: #f3f3f4;
	border: none !important;
	color: #606e8b;
	padding: 8px;
	outline: none;
}

.select2-container--default .select2-search--inline .select2-search__field {
	-webkit-appearance: textfield;
	background: transparent;
	border: none;
	box-shadow: none;
	outline: 0;
}

.select2-container--default .select2-results > .select2-results__options {
	max-height: 200px;
	position: relative;
	overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
	padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
	color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: #ddd;
}

.select2-results__option[aria-selected=true]:after {
	content: '\f12c';
	font-family: 'coreicons';
	font-size: 15px;
	opacity: .7;
	position: absolute;
	right: 10px;
	top: 8px;
}

.select2-container--default .select2-results__option .select2-results__option {
	padding-left: 1em;
}

	.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
		padding-left: 0;
	}

	.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
		margin-left: -1em;
		padding-left: 2em;
	}

		.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
			margin-left: -2em;
			padding-left: 3em;
		}

			.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
				margin-left: -3em;
				padding-left: 4em;
			}

				.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
					margin-left: -4em;
					padding-left: 5em;
				}

					.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
						margin-left: -5em;
						padding-left: 6em;
					}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #575e67;
	color: white;
}

.select2-container--default .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px;
}

.select2-container--classic .select2-selection--single {
	background-color: #f7f7f7;
	background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
	background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
	background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
	background-repeat: repeat-x;
	border: 1px solid #aaa;
	border-radius: 4px;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
	outline: 0;
}

	.select2-container--classic .select2-selection--single:focus {
		border: 1px solid #009efb;
	}

	.select2-container--classic .select2-selection--single .select2-selection__rendered {
		color: #444;
		line-height: 28px;
	}

	.select2-container--classic .select2-selection--single .select2-selection__clear {
		cursor: pointer;
		float: right;
		font-weight: bold;
		margin-right: 10px;
	}

	.select2-container--classic .select2-selection--single .select2-selection__placeholder {
		color: #999;
	}

	.select2-container--classic .select2-selection--single .select2-selection__arrow {
		background-color: #ddd;
		background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
		background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
		background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
		background-repeat: repeat-x;
		border: none;
		border-bottom-right-radius: 4px;
		border-left: 1px solid #aaa;
		border-top-right-radius: 4px;
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
		height: 26px;
		position: absolute;
		right: 1px;
		top: 1px;
		width: 20px;
	}

		.select2-container--classic .select2-selection--single .select2-selection__arrow b {
			border-color: #888 transparent transparent transparent;
			border-style: solid;
			border-width: 5px 4px 0 4px;
			height: 0;
			left: 50%;
			margin-left: -4px;
			margin-top: -2px;
			position: absolute;
			top: 50%;
			width: 0;
		}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
	float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
	border: none;
	border-bottom-left-radius: 4px;
	border-radius: 0;
	border-right: 1px solid #aaa;
	border-top-left-radius: 4px;
	left: 1px;
	right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
	border: 1px solid #009efb;
}

	.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
		background: transparent;
		border: none;
	}

		.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
			border-color: transparent transparent #888 transparent;
			border-width: 0 4px 5px 4px;
		}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
	background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
	background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
	background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
	background-repeat: repeat-x;
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
	background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
	background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
	background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
	background-repeat: repeat-x;
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
	outline: 0;
}

	.select2-container--classic .select2-selection--multiple:focus {
		border: 1px solid #009efb;
	}

	.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
		list-style: none;
		margin: 0;
		padding: 0 5px;
	}

	.select2-container--classic .select2-selection--multiple .select2-selection__clear {
		display: none;
	}

	.select2-container--classic .select2-selection--multiple .select2-selection__choice {
		background-color: #e4e4e4;
		border: 1px solid #aaa;
		border-radius: 4px;
		cursor: default;
		float: left;
		margin-right: 5px;
		margin-top: 5px;
		padding: 0 5px;
	}

	.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
		color: #888;
		cursor: pointer;
		display: inline-block;
		font-weight: bold;
		margin-right: 2px;
	}

		.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
			color: #555;
		}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
	float: right;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
	margin-left: 5px;
	margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
	margin-left: 2px;
	margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
	border: 1px solid #009efb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
	outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
	box-shadow: none;
	outline: 0;
}

.select2-container--classic .select2-dropdown {
	background-color: white;
	border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
	border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
	border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
	max-height: 200px;
	overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
	padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
	color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
	background-color: #3875d7;
	color: white;
}

.select2-container--classic .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px;
}


/******************* 
* MVC Grid
********************
https://github.com/NonFactors/MVC5.Grid
Copyright © NonFactors
Licensed under the terms of the MIT License
http://www.opensource.org/licenses/mit-license.php */
.mvc-grid {
	position: relative;
}
.mvc-grid th {
	position: relative;
}
.mvc-grid th.filterable .mvc-grid-header-title {
	padding-right: 20px;
}
.mvc-grid .sortable,
.mvc-grid .mvc-grid-filter {
	cursor: pointer;
}

	.mvc-grid .asc::after,
	.mvc-grid .desc::after {
		font-family: 'coreicons';
		padding-left: 5px;
		color: #d44e4e;
		line-height: 1;
		vertical-align: middle;
	}

.mvc-grid .asc::after {
	content: '\f35d';
}

.mvc-grid .desc::after {
	content: '\f360';
}

.mvc-grid-hidden,
.mvc-grid-options {
	display: none;
}

.mvc-grid-filter {
	transition: border-color .3s;
	font-family: 'coreicons';
	text-decoration: none;
	align-items: center;
	position: absolute;
	color: inherit;
	display: flex;
	border-bottom: 3px solid transparent;
	height: 100%;
	width: 36px;
	right: 0;
	top: 0;
}

	.mvc-grid-filter:not(.applied):focus,
	.mvc-grid-filter:not(.applied):hover {
		border-color: rgba(0, 0, 0, 0.06);
	}

	.mvc-grid-filter::before {
		text-align: center;
		content: '\f236';
		display: block;
		flex: 1;
	}

.mvc-grid-filter.applied {
	border-color: #f83f73;
}

	.mvc-grid-filter.applied::before {
		color: #f83f73;
	}

.mvc-grid-row-filters .filterable {
	padding: 4px;
}

.mvc-grid-row-filters .first-filter,
.mvc-grid-row-filters .second-filter {
	display: flex;
}

.mvc-grid-row-filters .mvc-grid-value {
	border: 0.5px solid #AAAAAA;
	margin-right: 5px;
	padding: 2px 4px;
	font: inherit;
	flex: 1;
}

	.mvc-grid-row-filters .mvc-grid-value.invalid {
		outline-color: #DC3545;
	}

	.mvc-grid-row-filters .mvc-grid-value::placeholder {
		color: #BBBBBB;
	}

	.mvc-grid-row-filters .mvc-grid-value:-ms-input-placeholder {
		color: #BBBBBB;
	}

.mvc-grid-row-filters .mvc-grid-filter {
	border: 0.5px solid #AAAAAA;
	position: static;
	flex: 0 0 28px;
	height: 28px;
}

.mvc-grid-row-filters [readonly] {
	background-color: #e4e4e4;
}

.mvc-grid-row-filters.mvc-grid-headers .filterable {
	padding: 0;
}

.mvc-grid-row-filters.mvc-grid-headers .mvc-grid-value {
	padding: 8px 44px 8px 8px;
	border: none;
	margin: 0;
}

.mvc-grid-row-filters.mvc-grid-headers .mvc-grid-filter {
	position: absolute;
	border: none;
	height: 100%;
}

.mvc-grid-popup {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
	background-clip: padding-box;
	background-color: #FFFFFF;
	border: 1px solid transparent;
	transition: opacity 0.5s;
	position: absolute;
	margin-top: 5px;
	border-radius: 4px;
	min-width: 180px;
	display: none;
	z-index: 1100;
	opacity: 0;
}

	.mvc-grid-popup.open {
		display: block;
		opacity: 1;
	}

	.mvc-grid-popup .popup-arrow {
		border-right: 7px solid transparent;
		border-left: 7px solid transparent;
		border-bottom: 8px solid #FFFFFF;
		box-sizing: border-box;
		position: absolute;
		height: 9px;
		top: -8px;
	}

		.mvc-grid-popup .popup-arrow::after {
			border-right: 8px solid transparent;
			border-left: 8px solid transparent;
			border-bottom: 9px solid rgba(204, 204, 204, .2);
			position: absolute;
			content: " ";
			z-index: -1;
			left: -8px;
			top: -1px;
		}

	.mvc-grid-popup .popup-group {
		padding: .7em .7em 0;
	}

	.mvc-grid-popup .operator-filter {
		text-align: center;
	}

	.mvc-grid-popup .filter-actions {
		padding-top: 0.7em;
		text-align: center;
	}

		.mvc-grid-popup .filter-actions button {
			width: 50%;
			font-size: 1em;
		}

	.mvc-grid-popup .mvc-grid-value,
	.mvc-grid-popup .mvc-grid-method,
	.mvc-grid-popup .mvc-grid-operator {
		font-size: 0.9em;
		outline: 0;
		padding: 0.4em;
		width: 100%;
	}

	.mvc-grid-popup .mvc-grid-operator {
		text-align: center;
		width: auto;
	}

	.mvc-grid-popup .mvc-grid-value {
		padding: 0.4em;
	}

		.mvc-grid-popup .mvc-grid-value.invalid {
			outline-color: #DC3545;
		}

	.mvc-grid-popup .mvc-grid-apply,
	.mvc-grid-popup .mvc-grid-cancel {
		outline: 0;
	}

button.btn.mvc-grid-apply {
	border-radius: 0 0 0 .25rem;
}

button.btn.mvc-grid-cancel {
	border-radius: 0 0 .25rem 0;
}

.mvc-grid-empty-row {
	text-align: center;
	font-size: 80%;
	background-color: transparent !important;
}

.mvc-grid-empty-row td {
	padding-top: 20px;
	padding-bottom: 0;
}

	.mvc-grid-pager li + li a {
		margin-left: 3px;
	}

	.mvc-grid-pager .disabled a {
		text-decoration: none;
		cursor: not-allowed;
		outline: none;
	}

.mvc-grid-page-sizes {
	display: inline-flex;
}

	.mvc-grid-page-sizes select {
		height: 2.5em;
		font: inherit;
	}

	.mvc-grid-page-sizes input {
		text-align: center;
		height: 2.5em;
		width: 48px;
	}

.mvc-grid-loader {
	background-color: rgba(255, 255, 255, 0.8);
	justify-content: center;
	transition: opacity 1s;
	align-items: center;
	position: absolute;
	display: flex;
	z-index: 100;
	height: 100%;
	cursor: wait;
	width: 100%;
	opacity: 0;
	left: 0;
	top: 0;
}

.mvc-grid-loading {
	opacity: 1;
}

	.mvc-grid-loading > div > div {
		animation: loader-points 1.4s infinite ease-in-out both;
		background-color: #26c6da;
		display: inline-block;
		border-radius: 100%;
		margin: 0 10px;
		height: 18px;
		width: 18px;
	}

		.mvc-grid-loading > div > div:nth-child(1) {
			animation-delay: -0.32s;
		}

		.mvc-grid-loading > div > div:nth-child(2) {
			animation-delay: -0.16s;
		}

@keyframes loader-points {
	0%, 80%, 100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1.0);
	}
}

/******************* 
* CodeMirror
********************/
.CodeMirror {
	font-family: monospace;
	height: 300px;
	line-height: 1;
	position: relative;
	overflow: hidden;
	background: #272822;
	color: #f8f8f2;
}

.CodeMirror-scroll {
	/* Set scrolling behaviour here */
	overflow: auto;
}

/* PADDING */

.CodeMirror-lines {
	padding: 4px 0; /* Vertical padding around content */
}

.CodeMirror pre {
	padding: 0 4px 0 7px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
	background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
	background-color: #272822;
	white-space: nowrap;
}

.CodeMirror-linenumbers {
}

.CodeMirror-linenumber {
	padding-right: 5px;
	min-width: 20px;
	line-height: 1rem;
	text-align: right;
	color: #d0d0d0;
	border-right: 1px solid rgba(255,255,255,.1);
}

/* CURSOR */

.CodeMirror div.CodeMirror-cursor {
	border-left: 1px solid #f8f8f0;
	z-index: 3;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
	border-left: 1px solid silver;
}

.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
	width: auto;
	border: 0;
	background: #7e7;
	z-index: 1;
}
/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {
}

.cm-tab {
	display: inline-block;
}

/* DEFAULT THEME */

.cm-s-default .cm-keyword {
	color: #f92672;
}

.cm-s-default .cm-atom {
	color: #ae81ff;
}

.cm-s-default .cm-number {
	color: #ae81ff;
}

.cm-s-default .cm-def {
	color: #fd971f;
}

.cm-s-default .cm-variable {
	color: #a6e22e;
}

.cm-s-default .cm-variable-2 {
	color: #9effff;
}

.cm-s-default .cm-variable-3 {
	color: #085;
}

.cm-s-default .cm-property {
	color: #a6e22e;
}

.cm-s-default .cm-operator {
	color: black;
}

.cm-s-default .cm-comment {
	color: #75715e;
}

.cm-s-default .cm-string {
	color: #e6db74;
}

.cm-s-default .cm-string-2 {
	color: #f50;
}

.cm-s-default .cm-meta {
	color: #555;
}

.cm-s-default .cm-qualifier {
	color: #555;
}

.cm-s-default .cm-builtin {
	color: #30a;
}

.cm-s-default .cm-bracket {
	color: #f8f8f2;
}

.cm-s-default .cm-tag {
	color: #f92672;
}

.cm-s-default .cm-attribute {
	color: #a6e22e;
}

.cm-s-default .cm-header {
	color: blue;
}

.cm-s-default .cm-quote {
	color: #090;
}

.cm-s-default .cm-hr {
	color: #999;
}

.cm-s-default .cm-link {
	color: #ae81ff;
}

.cm-negative {
	color: #d44;
}

.cm-positive {
	color: #292;
}

.cm-header, .cm-strong {
	font-weight: bold;
}

.cm-em {
	font-style: italic;
}

.cm-link {
	text-decoration: underline;
}

.cm-s-default .cm-error {
	color: #f92672;
	color: #f8f8f0;
}

.cm-invalidchar {
	color: #f00;
}

div.CodeMirror span.CodeMirror-matchingbracket {
	text-decoration: underline;
	color: white;
}

div.CodeMirror span.CodeMirror-nonmatchingbracket {
	color: #f22;
}

.CodeMirror-activeline-background {
	background: #373831;
}


.CodeMirror-scroll {
	/* 30px is the magic margin used to hide the element's real scrollbars */
	/* See overflow: hidden in .CodeMirror */
	margin-bottom: -30px;
	margin-right: -30px;
	padding-bottom: 30px;
	padding-right: 30px;
	height: 100%;
	outline: none; /* Prevent dragging from highlighting the element */
	position: relative;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.CodeMirror-sizer {
	position: relative;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actuall scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
	position: absolute;
	z-index: 6;
	display: none;
}

.CodeMirror-vscrollbar {
	right: 0;
	top: 0;
	overflow-x: hidden;
	overflow-y: scroll;
}

.CodeMirror-hscrollbar {
	bottom: 0;
	left: 0;
	overflow-y: hidden;
	overflow-x: scroll;
}

.CodeMirror-scrollbar-filler {
	right: 0;
	bottom: 0;
}

.CodeMirror-gutter-filler {
	left: 0;
	bottom: 0;
}

.CodeMirror-gutters {
	position: absolute;
	left: 0;
	top: 0;
	padding-bottom: 30px;
	z-index: 3;
}

.CodeMirror-gutter {
	white-space: normal;
	height: 100%;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	padding-bottom: 30px;
	margin-bottom: -32px;
	display: inline-block;
	/* Hack to make IE7 behave */
	*zoom: 1;
	*display: inline;
}

.CodeMirror-gutter-elt {
	position: absolute;
	cursor: default;
	z-index: 4;
}

.CodeMirror-lines {
	cursor: text;
}

.CodeMirror pre {
	/* Reset some styles that the rest of the page might have set */
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border-width: 0;
	background: transparent;
	font-family: inherit;
	font-size: 1rem;
	margin: 0;
	white-space: pre;
	word-wrap: normal;
	line-height: inherit;
	color: inherit;
	z-index: 2;
	position: relative;
	overflow: visible;
}

.CodeMirror-wrap pre {
	word-wrap: break-word;
	white-space: pre-wrap;
	word-break: normal;
}

.CodeMirror-code pre {
	border-right: 30px solid transparent;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.CodeMirror-wrap .CodeMirror-code pre {
	border-right: none;
	width: auto;
}

.CodeMirror-linebackground {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
}

.CodeMirror-linewidget {
	position: relative;
	z-index: 2;
	overflow: auto;
}

.CodeMirror-widget {
}

.CodeMirror-wrap .CodeMirror-scroll {
	overflow-x: hidden;
}

.CodeMirror-measure {
	position: absolute;
	width: 100%;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}

	.CodeMirror-measure pre {
		position: static;
	}

.CodeMirror div.CodeMirror-cursor {
	position: absolute;
	visibility: hidden;
	border-right: none;
	width: 0;
}

.CodeMirror-focused div.CodeMirror-cursor {
	visibility: visible;
}

.CodeMirror-selected {
	background: #d9d9d9;
}

.CodeMirror-focused .CodeMirror-selected {
	background: #d7d4f0;
}

.cm-searching {
	background: #ffa;
	background: rgba(255, 255, 0, .4);
}

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span {
	*vertical-align: text-bottom;
}

@media print {
	/* Hide the cursor when printing */
	.CodeMirror div.CodeMirror-cursor {
		visibility: hidden;
	}
}


/* Easy Autocomplete */
.easy-autocomplete-container ul {
    list-style: none;
    padding: 5px 0 0;
}

.easy-autocomplete-container ul li {
    padding: 5px 0;
    cursor: pointer;
}

    .easy-autocomplete-container ul li:hover {
        background: rgba(0,0,0,.1);
    }


/* Sweet Alert */
.swal2-popup .swal2-content {
    padding: 0 35px;
}

.swal2-popup .swal2-textarea {
    height: 5.75em;
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 0;
}