body
{
	margin: 0;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	font-size: 14px;
	color: #4F5962;
}

header
{
	height: 80px;
	width: 100%;
	background: #36414C;
	position: absolute;
	top: 0;
	z-index: 9;
}

ul
{
	list-style: none;
	padding: 0;
}

li
{
	list-style: none;
}

	.logo
	{
		width: 22px;
		margin: 22px auto;
	}

input[type="time"]::-webkit-clear-button
{
	display: none;
}

#wrapper
{
	left: 0px;
    right: 0;
    top: 0px;
    margin-top: 60px;
    bottom: 0;
    width: auto;
    position: fixed;
    overflow: auto;
}

.page
{
	height: 100%;
	width: 100%;
	top: 0;
	overflow: auto;
	position: relative;

	-webkit-transition: -webkit-transform .8s ease-in-out, opacity .15s linear;
	transition: transform .8s ease-in-out, opacity .15s linear;
}

#loginForm input[type="text"],
#loginForm input[type="tel"],
#loginForm input[type="password"],
#loginForm input[type="email"],
#secondLoginForm input[type="text"]
{
	width: 100%;
	height: 52px;
	background: #fff;
	padding: 20px 15px 10px;
	border: 1px solid #E5E7E8;
	border-radius: 4px;
	box-sizing: border-box;
	margin: 5px 0;
	outline: none;
}

#loginForm input[type="text"].error,
#loginForm input[type="tel"].error,
#loginForm input[type="password"].error,
#loginForm input[type="email"].error
#secondLoginForm input[type="text"].error
{
	border-color: #F45531;
}

#loginForm input[type="text"]:focus,
#loginForm input[type="tel"]:focus,
#loginForm input[type="password"]:focus,
#loginForm input[type="email"]:focus,
#secondLoginForm input[type="text"]:focus
{
	border-color: #1E88E5;
}

.form_row
{
	position: relative;
}

.placeholder
{
	position: absolute;
	margin: 22px 16px;
	color: #81888F;
	pointer-events: none;
	top: 0;
	left: 0;

	-webkit-transition: transform .15s linear, font-size .15s linear;
	transition: transform .15s linear, font-size .15s linear;
}

input[type="text"]:focus + .placeholder,
input[type="tel"]:focus + .placeholder,
input[type="password"]:focus + .placeholder,
input[type="email"]:focus + .placeholder,
input.noShowdown + .placeholder
{
	-webkit-transform: translate(-1px, -7px);
	transform: translate(-1px, -7px);
	font-size: 10px;
}

#loginForm button,
#secondLoginForm button
{
	background: #1E88E5;
	border-radius: 4px;
	width: 314px;
	height: 52px;
	font-size: 14px;
	color: #fff;
	border: none;
	margin: 20px 0;
	font-weight: bold;
	outline: none;
	cursor: pointer;

	-webkit-transition: -webkit-transform .15s linear, box-shadow .1s linear, border .15s linear, background .15s linear;
	transition: transform .15s linear, box-shadow .1s linear, border .15s linear, background .15s linear;
}

	button:hover:not(:disabled)
	{
		-webkit-transform: scale(1.03);
		transform: scale(1.03);
	}

	button:active
	{
		box-shadow: inset 0 1px 3px 0px #000;
	}

	button:disabled
	{
		border: 1px solid #1E88E5;
		background: #fff;
		color: #1E88E5;
	}

form
{
	margin: 0 auto;
}

h1
{
	font-size: 28px;
	font-weight: normal;
}

a, a:visited
{
	color: #1E88E5;
	font-weight: bold;
}

/*.table
{
	height: 100%;
	width: 100%;
	position: absolute;
	display: table;
}*/

.baseMarginTop
{
	margin-top: 15px;
}

.middle
{
	display: table-cell;
	vertical-align: middle;
}
	.middle .logo_img
	{
		/* background: url(https://old.p-food.ru/bitrix/templates/pfood_adaptive/images/foot_logo.png?v1) no-repeat center; */
		-webkit-background-size: contain;
		background-size: contain;
		width: 100%;
		height: 125px;
		margin-bottom: 20px;
	}

.loginScreen
{
	text-align: center;
}

	.loginScreen .table
	{
		position: absolute;
		width: inherit;
	}

	.loginScreen h1
	{
		margin: -120px 0 110px;
	}

.forgotPassword
{
	margin: -41px 0 0 57px;
	position: absolute;
	color: #36414C;
	font-size: 12px;
	text-decoration: none;
	font-weight: normal;
}

.langSwitcher
{
	position: absolute;
	width: 100%;
	bottom: 50px;
}

	.langSwitcher label
	{
		color: #1E88E5;
		font-weight: bold;
	}

		.langSwitcher label:after
		{
			content: "";
			border: 2px solid #1E88E5;
			border-top: 0;
			border-left: 0;
			width: 6px;
			height: 6px;
			position: absolute;
			margin: 4px 6px;

			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
		}

.mainLoader
{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	display: table;
	background: rgba(247, 248, 248, 0.9);
	z-index: 999;

	-webkit-transition: opacity .3s linear;
	transition: opacity .3s linear;
}

	.mainLoader.hidden
	{
		opacity: 0;
	}

	.mainLoader.nodisplay
	{
		display: none;
	}

	.alignBox
	{
		display: table-cell;
		vertical-align: middle;
		text-align: center;
	}

	.loadCircle
	{
		background: linear-gradient(96deg, #1ec2e5, #1e88e5);
		background-size: 400% 400%;
		width: 92px;
		height: 92px;
		border-radius: 100%;
		display: inline-block;
		-webkit-animation: AnimationName 2.5s ease infinite;
		-moz-animation: AnimationName 2.5s ease infinite;
		-o-animation: AnimationName 2.5s ease infinite;
		animation: AnimationName 2.5s ease infinite;
	}

nav
{
	width: 220px;
	background: #36414C;
	position: fixed;
	z-index: 9;
	top: 0;
	bottom: 0;
	list-style: none;
}

	nav li a, nav li a:visited
	{
		color: #C0C4C7;
		text-decoration: none;
		display: block;
		padding: 11px 24px;
	}

	nav .heading
	{
		height: 80px;
	}

	nav .heading img
	{
		padding: 30px 0;
		display: block;
		margin: 0 auto;
	}

	nav li.active, nav li:not(.heading):hover
	{
		background: #4F5962;
	}

	nav li:hover a
	{
		color: #fff;
	}

/* limitless overrides */

.sidebar-xs .page
{
	left: 57px;
}
.sidebar-xs .navbar-header
{
	min-width: 0;
}

.sidebar-main
{
	position: fixed!important;
	bottom: 0;
	top: 0;
}

@-webkit-keyframes AnimationName {
	0%{background-position:0% 49%}
	50%{background-position:100% 52%}
	100%{background-position:0% 49%}
}
@-moz-keyframes AnimationName {
	0%{background-position:0% 49%}
	50%{background-position:100% 52%}
	100%{background-position:0% 49%}
}
@-o-keyframes AnimationName {
	0%{background-position:0% 49%}
	50%{background-position:100% 52%}
	100%{background-position:0% 49%}
}
@keyframes AnimationName {
	0%{background-position:0% 49%}
	50%{background-position:100% 52%}
	100%{background-position:0% 49%}
}

/* page transitions */
.fade
{
	opacity: 0;
}

.rightOverScreen
{
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.leftOverScreen
{
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.topOverScreen
{
	-webkit-transition: -webkit-transform .8s ease-in-out;
	transition: transform .8s ease-in-out;

	-webkit-transform: translateY(-150%);
	transform: translateY(-150%);
	z-index: 9;
	background: #F7F9FA;
}

.noAnim
{
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}
.media-list,
.chat-list {
	max-height: 300px !important;
	overflow-y: scroll !important;
}
#tasksList li *{
	animation: fadeIn .5s linear;
}
@keyframes fadeIn {
  0% {
	opacity: 0;
  }
  50% {
	opacity: 0.5;
  }
  100% {
	opacity: 1;
  }
}

.wrap_change:after,
.wrapper_translit_form:after,
.innere_change_wrapper_left:after {
	content: '';
	clear: both;
	display: table;
}
.wrap_change {
	position: relative;
	overflow: hidden;
	display: flex;
}
.wrap_change table {
	position: relative;
}
.wrap_change .table>tbody>tr>td {
	vertical-align: top;
}
.innere_change_wrapper_left {
	/*float: left;*/
	/*width: 50%;*/
}
.innere_change_wrapper_left.checked_package {
	transform: translateX(-100%);
	transition: transform .5s linear;
}
.inner_change_wrappwer_right {
	margin-right: 50px;
}
.inner_change_wrappwer_right.checked_package {
	position: absolute;
	right: 0%;
	width: 100%;
	height: 100%;
	transition: right .5s linear;
}
.inner_change_wrappwer_right.checked_package > .content {
	height: inherit;
}
.innere_change_wrapper_left .Package {
	max-height: 100%;
	overflow-y: scroll;
}
.innere_change_wrapper_left .Package input {
	/*display: none;*/
}
 #currentPackageAndNew {
	display: flex;
	height: inherit;
 }
 #currentPackageAndNew .bg-primary-400,
 #currentPackageAndNew .bg-success-400  {
	color: #fff;
 }
 #currentPackageAndNew .letter-icon-title {
	color: #1E88E5;
	font-weight: bold;
 }
 #currentPackageAndNew > .panel {
	margin: 10px;
 }
 #currentPackageAndNew > .panel.client_panel_left {
	margin-right: 50px;
	position: relative;
	width: 50%;
	border: none;
	box-shadow: none;
 }
 #currentPackageAndNew > .panel.client_panel_right {
	margin-left: 50px;
	width: 50%;
	border: none;
	box-shadow: none;
 }
 .panel.client_panel_right .table-responsive {
	max-height: 520px;
	overflow-y: scroll;
 }

textarea
{
	min-width: 100%;
	max-width: 100%;
	max-height: 200px;
	min-height: 50px;
}

.inner_change_wrappwer_left
{
	margin-right: 50px;
}

.innere_change_wrapper_right
{
	margin-left: 50px;
}

.inner_change_wrappwer_left:after
{
	content: "\e9c7";
	font-family: "icomoon";
	font-size: 46px;
	display: block;
	position: absolute;
	top: 50px;
	right: -60px;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transform: rotate(0deg) translateY(-50%);
	-webkit-transition: -webkit-transform 0.2s ease-in-out;
	-o-transition: -webkit-transform 0.2s ease-in-out;
	transition: -webkit-transform 0.2s ease-in-out;
}

/* радиобаттоны в попапе смена пакета */
.clients_radio,
.clients_radio_extend
{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

	.clients_radio label,
	.clients_radio_extend label
	{
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;

		margin-bottom: 5px;
		padding: 10px;
		width: 50px;
		height: 40px;
		border: 1px solid #ddd;
		border-radius: 8px;
		overflow: hidden;
		z-index: 0;
	}

	.clients_radio input[type=radio],
	.clients_radio_extend input[type=radio]
	{
		-webkit-appearance: none;

		width: 100%;
    	height: 100%;
    	margin: 0;

		cursor: pointer;
		position: absolute;

		color: #000;

		transition: background .2s linear;
	}

	.clients_radio input[type=radio]:checked + *,
	.clients_radio_extend input[type=radio]:checked + *
	{
		color: #fff;
		z-index: 1;
	}

	.clients_radio_extend label
	{
		width: 100%;
		margin: 0 3px;
	}

		.clients_radio input[type=radio]:checked,
		.clients_radio_extend input[type=radio]:checked
		{
			color: #f3f3f3;
			background: #4caf50;

			height: 40px;
			border: none;

			transition: background .2s linear;

		}
/* end радиобаттоны в попапе смена пакета */


/* календарь доставки пакетов клиенту client.html  */
 .currentPackageAndNew
 {
	display: block;
	overflow: hidden;
 }

 .currentPackageAndNew:after
 {
	content: '';
	display: table;
	clear: both;
 }

 .js-client-hideOnNoSum.hidden_number,
 .js-client-hideOnNoCard.hidden_number
 {
	display: none;
 }


.calendarity-table
{
	width: 100%;
}

	.calendarity, .calendarity th
	{
		text-align: center;
	}

	.calendarity td, .calendarity th
	{
		border-style: solid;
		border-width: 1px;
		border-color: #ddd;
		position: relative;
	}

	.calendarity .underground
	{
		position: absolute;
		right: 0;
		bottom: 0;
		padding: 10px;
	}

	.calendarity td.past
	{
		background: #f1f0f0;
		opacity: .3;
	}

	.calendarity td.today
	{
		background: #e7f4ff;
	}

	.calendarity td.selected
	{
		background: #f5f5f5;
	}

.js-calendarTooltip
{
	position: absolute;
	top: 200px;
	z-index: 99999999999999999;
	width: auto;
	text-align: center;
	padding: 7px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	box-shadow: 0 1px 1px rgba(0,0,0,.05);
	margin: 12px 0;
}

	.js-calendarTooltip:after
	{
		content: "";
		position: absolute;
		width: 35px;
		height: 35px;
		background: white;
		left: -15px;
		transform: rotate(45deg);
		z-index: -1;
		box-shadow: 0 1px 1px rgba(0,0,0,.05);
	}

.client-addressMap
{
	height: 100%;
}

.pac-container
{
	z-index: 9999999999999;
}
/* end календарь доставки пакетов клиенту client.html */

/* радиобаттоны в попапе продлить пакет */
#client-modalProlongationPackage .wrapp_payment,
#client-modalProlongationPackage .wrapp_summ
{
	display: flex;
}
	#client-modalProlongationPackage .wrapp_payment > div,
	#client-modalProlongationPackage .wrapp_summ > div
	{
		 display: flex;
		align-items: center;
	}
		#client-modalProlongationPackage .wrapp_payment .wrapp_paymen_right .pagination-rounded,
		#client-modalProlongationPackage .wrapp_summ .wrapp_paymen_right .pagination-rounded
		{
			display: flex;
			justify-content: left;
		}
			#client-modalProlongationPackage .wrapp_payment .wrapp_paymen_right .pagination-rounded label,
			#client-modalProlongationPackage .wrapp_summ .wrapp_paymen_right .pagination-rounded label
			{
				width: 100%;
			}
/*  end радиобаттоны в попапе продлить пакет */

/* блокировка блока при isHold */
.no-select td:first-child {
	-moz-user-select: -moz-none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	opacity: .3;
    pointer-events: none;
}
/* end блокировка блока при isHold */

.infiniteScroll
{
	max-height: 420px;
    overflow: auto;
    position: relative;
}

	.infiniteScroll thead
	{
		position: relative;
		width: 100%;
		top: 0;
	}



/*ахуительный неебический анимированный пихдец график*/
.outside_wrap
{
	width: 100%;
	height: calc(100vh - 113px);
	padding-top: 20px;
	overflow-x: scroll;
}
.wrapper_chart
{
	min-width: 1200px;
	height: 100%;
	display: flex;
	justify-content: center;
	border-bottom: 1px solid #000;
	padding-top: 50px;
}
	.wrapper_chart .chart
	{
		display: flex;
		height: 100%;
		min-width: 200px;
		padding: 10px 10px 0;
		justify-content: flex-end;
		align-items: flex-end;
		flex-direction: column;
	}
		.wrapper_chart .chart .wrap_top_bottom
		{
			display: flex;
			justify-content: center;
			align-items: flex-end;
			width: 100%;
		}
		.wrapper_chart .chart .wrap_top_bottom.one
		{
			height: 150px;
			display: flex;
			flex-direction: column;
			justify-content: flex-end;
			align-items: center;
			opacity: 0;
			transition: opacity 1s ease;
		}
		.wrapper_chart .chart .wrap_top_bottom.one.animation
		{
			opacity: 1;
		}
			.wrapper_chart .chart .wrap_top_bottom.one .name
			{
				padding: 10px;
			}
			.wrapper_chart .chart .wrap_top_bottom.one .wrap_img
			{
				min-height: 100px;
				width: 100px;
				border-radius: 100%;
				overflow: hidden;
				position: relative;
				border: 4px solid #fff;
    			box-shadow: 0 0 6px 0px #000;
    			z-index: 0;
			}
				.wrapper_chart .chart .wrap_top_bottom.one .wrap_img img
				{

					position: absolute;
					top: 50%;
					left: 50%;
					transform: translate(-50%, -50%);
					max-width: 100%;
					min-height: 100%;

				}
		.wrapper_chart .chart.one_chart .wrap_top_bottom.two,
		.wrapper_chart .chart.two_chart .wrap_top_bottom.two
		{
			height: 0%;
		}

		.wrapper_chart .wrap_top_bottom .column
		{
			width: 100%;
			height: 0px;
			display: flex;
			justify-content: center;
			align-items: baseline;
			margin: 0 5px;
		}
			.wrapper_chart .wrap_top_bottom .column.right_column,
			.wrapper_chart .wrap_top_bottom .column.left_column
			{
				display: flex;
				flex-direction: column;
				transition: height .5s ease !important;
				-webkit-transition: height .5s ease !important;
			}
				.wrapper_chart .wrap_top_bottom .column.right_column .inner_column,
				.wrapper_chart .wrap_top_bottom .column.left_column .inner_column
				{
					width: 100%;

					max-width: 60px;
					display: flex;
					justify-content: center;
				}
				.inner_column.bg-success
				{
					border: 2px solid #fff;
    				box-shadow: 0px 0px 6px 0px #0000005c;
				}
				.inner_column.inner_column_top.bg-danger
				{
					border: 2px solid #fff !important ;
    				box-shadow: 0px 0px 6px 0px #0000005c;
    				border-bottom: 0 !important ;
				}
				.inner_column.inner_column_bottom.bg-primary
				{
					border: 2px solid #fff !important ;
    				box-shadow: 0px 0px 6px 0px #0000005c;
    				border-top: 1px solid #fff !important ;
				}
				.wrapper_chart .chart .wrap_top_bottom .column .height_column
				{
					color: #fff;
					display: flex;
					justify-content: center;
					align-items: center;
					width: 100%;
					overflow: hidden;
				}
		.wrapper_chart .column.left_column,
		.wrapper_chart .column.right_column
		{
			height: 0%;
		}
		.wrapper_chart .column.right_column.animation,
		.wrapper_chart .column.left_column.animation
		{
			height: 100%;
			display: flex;
    		align-items: flex-end;
    		justify-content: flex-end;
    		transition: height .5s ease !important;
			-webkit-transition: height .5s ease !important;
		}
		.wrapper_chart .column.right_column.animation
		{
			align-items: baseline;
			justify-content: flex-end;

		}

		.wrapper_chart .column.right_column
		{
			height: 0;
		}
		.wrapper_chart .column.right_column.animation
		{
			height: 100%;
		}
		.wrap_bottom
		{
			width: 100%;
			height: 0px;
			display: flex;
			justify-content: center;
			align-items: flex-end;
			margin: 0 5px;
		}

/* end ахуительный неебический анимированный пихдец график*/


.dashboardIncome
{
	display: flex;
	justify-content: end;
}
	.dashboardIncome li
	{
		margin: 0 5px;
	}
	#dashboardIncome .table-responsive
	{
		overflow-x: visible;
	}

.noevents
{
	pointer-events: none;
}

/*404*/

.wrapNotFound
{
	height: calc(100vh - 160px);
}
	.notFound
	{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
		.notFound h1
		{
			display: flex;
			justify-content: center;
			font-weight: bold;
    		font-size: 37vmin;
    		line-height: 37vmin;
    		color: transparent;
    		text-shadow:
    			0 1px 5px rgb(223, 223, 221),
    			0 -1px 0 rgba(0, 0, 0, 0.21),
    			0 -3px 0 rgba(0, 0, 0, 0.14),
    			0 1px 0 rgba(255,255,255,0.5),
    			0 2px 2px rgba(255,255,255,0.2);
		}
		.notFound .title,
		.notFound .backTitle
		{
			display: flex;
			justify-content: center;
			font-size: 3vmin;
		}

/*end 404*/
.multi-select-inline li
{
	width: 50px;
	display: inline-block;
}

	.multi-select-inline a
	{
		margin: 0 5px;
    	border-radius: 5px;
	}

		.multi-select-inline label
		{
			padding: 8px!important;
    		text-align: center;
		}

			.multi-select-inline input
			{
				visibility: hidden;
    			position: absolute;
			}

.dashboardIncomeContent .dropdown-menu-right
{
	right: auto;
}

.js-client_package-comment
{
	max-width: 205px;
    display: inline-block;
}

.wizard>.actions
{
	padding: 20px;
}

.wizard>.actions>ul>li.disabled>a, .wizard>.actions>ul>li.disabled>a:focus, .wizard>.actions>ul>li.disabled>a:hover
{
	color: inherit;
	opacity: .7;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.3s
}

.fade-enter, .fade-leave-active {
  opacity: 0
}

.small-right-padding
{
	padding-right: 20px;
}

/* iView customization start*/
.customAccordion .ivu-collapse>.ivu-collapse-item>.ivu-collapse-header>i,
.changePackageList .ivu-collapse>.ivu-collapse-item>.ivu-collapse-header>i
{
	display: none;
}
.customAccordion .br {
	display: none;
}

.largeInput .ivu-input-group-large .ivu-input,
.largeInput .ivu-input-group-large>.ivu-input-group-append,
.largeInput .ivu-input-group-large>.ivu-input-group-prepend
{
	height: 50px;
}

.wizard.nomargin .wizard__body{
	margin-left: 0;
    margin-right: 0;
}
/* iView customization end*/
.row-background__red td {
  background-color: #FF5722 !important;
  /* color: #ffffff; */
  color: #000000;
}

.suggestions-nowrap{white-space:nowrap}.suggestions-input{-ms-box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}.suggestions-input::-ms-clear{display:none}.suggestions-wrapper{display:inline-block;position:relative;margin:0;padding:0;vertical-align:top;min-height:1px;-webkit-text-size-adjust:100%}.suggestions-addon{display:none;opacity:0;position:absolute}.suggestions-addon[data-addon-type=spinner]{background:rgba(255,255,255,.75) url(data:image/gif;base64,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) 50% 50% no-repeat;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}.suggestions-addon[data-addon-type=clear]{background:transparent url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTAwJyBoZWlnaHQ9JzEwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48Zz48cGF0aCBkPSdtMjAsMjBtMTAsMGwyMCwyMGwyMCwtMjBsMTAsMTBsLTIwLDIwbDIwLDIwbC0xMCwxMGwtMjAsLTIwbC0yMCwyMGwtMTAsLTEwbDIwLC0yMGwtMjAsLTIwbDEwLC0xMCcgZmlsbD0nIzk5OScvPjwvZz48L3N2Zz4=) 50% 50% no-repeat;background-size:contain;cursor:pointer;opacity:.8}.suggestions-addon[data-addon-type=clear]:hover{opacity:1}.suggestions-suggestions{background:#fff;border:1px solid #999;-ms-box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:default;z-index:9999;-webkit-text-size-adjust:100%}.suggestions-suggestions strong{font-weight:400;color:#39f}.suggestions-suggestions.suggestions-mobile{border-style:none}.suggestions-suggestions.suggestions-mobile .suggestions-suggestion{border-bottom:1px solid #ddd}.suggestions-suggestion{padding:4px 4px;overflow:hidden}.suggestions-suggestion:hover{background:#f7f7f7}.suggestions-selected{background:#f0f0f0}.suggestions-selected:hover{background:#f0f0f0}.suggestions-hint{padding:4px 4px;white-space:nowrap;overflow:hidden;color:#777;font-size:85%}.suggestions-constraints{list-style:none!important;margin:0!important;padding:0!important;position:absolute!important;white-space:nowrap!important}.suggestions-constraints:empty{display:none!important}.suggestions-constraints li{background:#f8f8f8;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;cursor:default;display:inline-block;margin:0 4px 0 0;padding:0 .5em}.suggestions-constraints li .suggestions-remove{height:1em;width:1em;display:inline-block;margin:0 0 0 .25em;background:transparent url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTAwJyBoZWlnaHQ9JzEwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48Zz48cGF0aCBkPSdtMjAsMjBtMTAsMGwyMCwyMGwyMCwtMjBsMTAsMTBsLTIwLDIwbDIwLDIwbC0xMCwxMGwtMjAsLTIwbC0yMCwyMGwtMTAsLTEwbDIwLC0yMGwtMjAsLTIwbDEwLC0xMCcgZmlsbD0nIzk5OScvPjwvZz48L3N2Zz4=) 50% 50% no-repeat;background-size:contain;cursor:pointer;opacity:.8}.suggestions-constraints li .suggestions-remove:hover{opacity:1}.suggestions-constraints li span{vertical-align:middle}.suggestions-subtext{color:#777;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.suggestions-subtext_inline{display:inline-block;min-width:6em;vertical-align:bottom;margin:0 .5em 0 0}.suggestions-subtext-delimiter{display:inline-block;width:2px}.suggestions-subtext_label{margin:0 0 0 .25em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;padding:0 3px;background:#f5f5f5;font-size:85%}.suggestions-value[data-suggestion-status=LIQUIDATED]{position:relative}.suggestions-value[data-suggestion-status=LIQUIDATED]:after{position:absolute;left:0;right:0;top:50%;border-top:1px solid rgba(0,0,0,.4);content:''}

@font-face {
  font-family: 'Proxima Nova Black';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-Black.eot');
  src: local('/static/styles/fonts/ProximaNova/Proxima Nova Black'), local('ProximaNova-Black'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Black.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Black.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Black.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova Extrabld';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-Extrabld.eot');
  src: local('Proxima Nova Extrabold'), local('ProximaNova-Extrabld'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Extrabld.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Extrabld.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Extrabld.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Extrabld.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova SemiboldIt';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-SemiboldIt.eot');
  src: local('Proxima Nova Semibold Italic'), local('ProximaNova-SemiboldIt'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-SemiboldIt.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-SemiboldIt.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-SemiboldIt.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-SemiboldIt.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Proxima Nova Thin';
  src: url('/static/styles/fonts/ProximaNova/ProximaNovaT-Thin.eot');
  src: local('Proxima Nova Thin'), local('ProximaNovaT-Thin'),
  url('/static/styles/fonts/ProximaNova/ProximaNovaT-Thin.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNovaT-Thin.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNovaT-Thin.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNovaT-Thin.ttf') format('truetype');
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova Light';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-Light.eot');
  src: local('Proxima Nova Light'), local('ProximaNova-Light'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Light.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Light.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Light.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova BlackIt';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-BlackIt.eot');
  src: local('Proxima Nova Black Italic'), local('ProximaNova-BlackIt'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-BlackIt.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-BlackIt.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-BlackIt.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-BlackIt.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Proxima Nova BoldIt';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-BoldIt.eot');
  src: local('Proxima Nova Bold Italic'), local('ProximaNova-BoldIt'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-BoldIt.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-BoldIt.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-BoldIt.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-BoldIt.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Proxima Nova ThinIt';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-ThinIt.eot');
  src: local('Proxima Nova Thin Italic'), local('ProximaNova-ThinIt'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-ThinIt.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-ThinIt.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-ThinIt.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-ThinIt.ttf') format('truetype');
  font-weight: 100;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Proxima Nova Bold';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-Bold.eot');
  src: local('Proxima Nova Bold'), local('ProximaNova-Bold'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Bold.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Bold.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Bold.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova RegularIt';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-RegularIt.eot');
  src: local('Proxima Nova Regular Italic'), local('ProximaNova-RegularIt'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-RegularIt.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-RegularIt.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-RegularIt.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-RegularIt.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Proxima Nova ExtrabldIt';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-ExtrabldIt.eot');
  src: local('Proxima Nova Extrabold Italic'), local('ProximaNova-ExtrabldIt'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-ExtrabldIt.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-ExtrabldIt.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-ExtrabldIt.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-ExtrabldIt.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Proxima Nova Regular';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-Regular.eot');
  src: local('Proxima Nova Regular'), local('ProximaNova-Regular'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Regular.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Regular.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Regular.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova LightIt';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-LightIt.eot');
  src: local('Proxima Nova Light Italic'), local('ProximaNova-LightIt'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-LightIt.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-LightIt.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-LightIt.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-LightIt.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Proxima Nova Semibold';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-Semibold.eot');
  src: local('Proxima Nova Semibold'), local('ProximaNova-Semibold'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Semibold.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Semibold.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Semibold.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova Semibold';
  src: url('/static/styles/fonts/ProximaNova/ProximaNova-Semibold.eot');
  src: local('Proxima Nova Semibold'), local('ProximaNova-Semibold'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Semibold.eot?#iefix')
  format('embedded-opentype'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Semibold.woff2') format('woff2'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Semibold.woff') format('woff'),
  url('/static/styles/fonts/ProximaNova/ProximaNova-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins-Bold';
  src: url('/static/styles/fonts/Poppins/Poppins-Bold.ttf');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins-SemiBold';
  src: url('/static/styles/fonts/Poppins/Poppins-SemiBold.ttf');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

 @font-face {
   font-family: "GraphikLCG-Thin";
   font-weight: 300;

   src: url("/static/styles/fonts/GraphikLCG/GraphikLCG-Thin.woff2");
   font-display: swap;
 }

 @font-face {
   font-family: "GraphikLCG-Regular";
   font-weight: 400;

   src: url("/static/styles/fonts/GraphikLCG/GraphikLCG-Regular.woff2");
   font-display: swap;
 }

 @font-face {
   font-family: "GraphikLCG-Medium";
   font-weight: 500;

   src: url("/static/styles/fonts/GraphikLCG/GraphikLCG-Medium.woff2");
   font-display: swap;
 }

 @font-face {
   font-family: "GraphikLCG-Bold";
   font-weight: 700;

   src: url("/static/styles/fonts/GraphikLCG/GraphikLCG-Bold.woff2");
   font-display: swap;
 }
