/* Minification failed. Returning unminified contents.
(2551,26): run-time error CSS1038: Expected hex color, found '#f000'
(2552,29): run-time error CSS1038: Expected hex color, found '#ff00'
 */

@charset "utf-8";
/* CSS Document */



/*------------------------------------*\
 		Global style
\*------------------------------------*/

body {
	font-family: 'Open Sans', sans-serif;
	background: #ffffff;
}

h1, h2, h3, h4, h5, h6, p, a {
	margin: 0;
}

.maxWidth900 {
	max-width: 900px;
	margin: 0 auto;
}

.block {
	float: left;
	width: 100%;
}

.primary-color {
	color: #ffffff;
}

.primary-bg {
	background: #ffffff;
}

.link {
	color: #938667 !important;
	text-decoration: none;
}

	.link:focus,
	.link:hover {
		color: #c4be9f !important;
	}

.btn.btn-add-new {
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	border-radius: 6px;
	border: none;
	padding: 10px 20px;
	min-width: 140px;
	height: 52px;
	background: rgb(0,196,172);
	background: -moz-linear-gradient(top, rgba(0,196,172,1) 0%, rgba(4,173,152,1) 100%);
	background: -webkit-linear-gradient(top, rgba(0,196,172,1) 0%,rgba(4,173,152,1) 100%);
	background: linear-gradient(to bottom, rgba(0,196,172,1) 0%,rgba(4,173,152,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00c4ac', endColorstr='#04ad98',GradientType=0 );
}

	.btn.btn-add-new:hover,
	.btn.btn-add-new:focus {
		background: rgb(4,173,152);
		color: #ffffff;
		opacity: 0.8;
	}

.ffa7-group {
	padding: 0 20px;
}

	.ffa7-group label {
		color: #938667;
		font-size: 16px;
		line-height: 16px;
		font-weight: 300;
		margin: 0 0 10px;
	}

	.ffa7-group .form-control {
		color: #938667;
		font-size: 16px;
		line-height: 20px;
		font-weight: 300;
		border: 1px solid #c5bd9e;
		border-radius: 0;
		box-shadow: none;
		height: 50px;
		padding: 10px 20px;
	}

		.ffa7-group .form-control::-webkit-input-placeholder {
			color: #c5bd9e;
		}

		.ffa7-group .form-control::-moz-placeholder {
			color: #c5bd9e;
		}

		.ffa7-group .form-control:-ms-input-placeholder {
			color: #c5bd9e;
		}

		.ffa7-group .form-control:-moz-placeholder {
			color: #c5bd9e;
		}

	.ffa7-group textarea.form-control {
		min-height: 140px;
	}

	.ffa7-group select.form-control {		
		-moz-appearance: none;
		-webkit-appearance: none;
		background: #ffffff url("../images/select-cust-arrow.png") no-repeat scroll 92% 50%/ 15px auto;
	}

	.ffa7-group .input-info {
		position: absolute;
		right: 0px;
		top: 22px;
		font-size: 15px;
		color: #c5bd9e;
	}


/*--- Custom Switch---*/

.ffa7-switch {
	position: relative;
	display: inline-block;
	width: 70px;
	height: 35px;
}

	.ffa7-switch input {
		display: none;
	}

	.ffa7-switch .slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #c5bd9e;
		-webkit-transition: .4s;
		transition: .4s;
		content: "On";
	}

		.ffa7-switch .slider:before {
			position: absolute;
			content: "";
			height: 26px;
			width: 26px;
			left: 4px;
			bottom: 5px;
			background-color: #ffffff;
			-webkit-transition: .4s;
			transition: .4s;
		}

	.ffa7-switch input:checked + .slider {
		background-color: #00c4ac;
	}

	.ffa7-switch input:focus + .slider {
		box-shadow: 0 0 1px #00c4ac;
	}

	.ffa7-switch input:checked + .slider:before {
		-webkit-transform: translateX(36px);
		-ms-transform: translateX(36px);
		transform: translateX(36px);
	}

	.ffa7-switch .slider span {
		position: absolute;
		left: 0;
		top: 0;
		color: #fff;
		font-size: 12px;
		line-height: 33px;
		font-weight: 300;
		text-transform: uppercase;
		visibility: hidden;
	}

	.ffa7-switch input:checked + .slider .on {
		left: 10px;
		visibility: visible;
	}

	.ffa7-switch .slider .off {
		left: auto;
		right: 8px;
		visibility: visible;
	}

	.ffa7-switch.active .slider .off {
		visibility: hidden;
	}

	/* Rounded sliders */
	.ffa7-switch .slider.round {
		border-radius: 35px;
	}

		.ffa7-switch .slider.round:before {
			border-radius: 50%;
		}


	/* Square sliders */
	.ffa7-switch.square .slider {
		border-radius: 0;
	}

		.ffa7-switch.square .slider:before {
			border-radius: 0;
		}

		.ffa7-switch.square .slider img {
			max-width: 13px;
			margin-right: 3px;
		}

		.ffa7-switch.square .slider .on img {
			max-width: 15px;
			margin-right: 0;
			margin-left: 3px;
		}

		.ffa7-switch.square .slider::before {
			height: 31px;
			width: 31px;
			left: 2px;
			bottom: 2px;
		}

	.ffa7-switch.square input:checked + .slider::before {
		-webkit-transform: translateX(35px);
		-ms-transform: translateX(35px);
		transform: translateX(35px);
	}

.ffa7-upload-file {
	margin-bottom: 20px;
}

	.ffa7-upload-file .upload-body {
		border: 2px dashed #938667;
		background: #ffffff;
		border-radius: 10px;
		padding: 60px 20px 40px;
		cursor: pointer;
		width: 100%;
		display: block;
	}

	.ffa7-upload-file input {
		display: none;
	}

	.ffa7-upload-file .upload-body span {
		display: block;
		text-align: center;
	}

	.ffa7-upload-file .upload-body .drop {
		color: #c5bd9e;
		font-size: 26px;
		line-height: 30px;
		font-weight: 600;
	}

	.ffa7-upload-file .upload-body .or {
		color: #c5bd9e;
		font-size: 12px;
		line-height: 14px;
		font-weight: 300;
		margin: 5px 0 20px;
	}

	.ffa7-upload-file .upload-body .select {
		color: #ffffff;
		background: #c5bd9e;
		font-size: 16px;
		line-height: 18px;
		font-weight: 400;
		text-transform: uppercase;
		padding: 15px;
		max-width: 160px;
		margin: 0 auto;
		border-radius: 6px;
	}









/*------------------------------------*\
    	header style
\*------------------------------------*/


.ffa7-header {
	background: #353433;
}

	.ffa7-header .logo a img {
		max-width: 103px;
		width: 100%;
		margin: 0 auto;
	}

.ffa7-header-right {
	padding: 0;
}

	.ffa7-header-right ul {
		padding: 0;
		margin: 0;
	}

		.ffa7-header-right ul li {
			list-style: none;
			display: inline-block;
		}

	.ffa7-header-right .add-menu a {
		background: #fff;
		padding: 13px 24px;
		display: block;
	}

	.ffa7-header-right .add-menu img {
		max-width: 30px;
	}

	.ffa7-header-right .search {
		padding: 0 20px;
	}

		.ffa7-header-right .search img {
			max-width: 26px;
		}

	.ffa7-header-right .search-input {
		min-width: 320px;
		border: none;
		background: none;
		color: #fff;
		font-size: 16px;
		margin-left: 15px;
		font-weight: 300;
	}

		.ffa7-header-right .search-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
			color: #9a9a99;
		}

		.ffa7-header-right .search-input::-moz-placeholder { /* Firefox 19+ */
			color: #9a9a99;
		}

		.ffa7-header-right .search-input:-ms-input-placeholder { /* IE 10+ */
			color: #9a9a99;
		}

		.ffa7-header-right .search-input:-moz-placeholder { /* Firefox 18- */
			color: #9a9a99;
		}


	.ffa7-header-right .notification a {
		background: #c5bd9e;
		padding: 14px 13px;
		display: block;
		margin: 0 -4px;
	}

		.ffa7-header-right .notification a sup {
			color: #938667;
			background: #fff;
			border-radius: 15px;
			padding: 4px 8px;
			font-size: 11px;
		}

	.ffa7-header-right .notification img {
		max-width: 20px;
		margin-top: 7px;
		margin-right: 4px;
	}

	.ffa7-header-right .user a {
		background: #938667;
		padding: 17px 24px;
		display: block;
	}

	.ffa7-header-right .user img {
		max-width: 22px;
	}


	.ffa7-header-right .add-menu a:hover,
	.ffa7-header-right .notification a:hover,
	.ffa7-header-right .user a:hover {
		opacity: 0.8;
		text-decoration: none;
	}





/*------------------------------------*\
    	ffa7-Wrap style
\*------------------------------------*/


.ffa7-body-wraper {
	background: rgb(147,134,102); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(147,134,102,1) 0%, rgba(148,134,105,1) 0%, rgba(149,136,104,1) 1%, rgba(147,136,106,1) 2%, rgba(149,136,104,1) 2%, rgba(151,138,106,1) 4%, rgba(149,138,108,1) 4%, rgba(151,138,106,1) 5%, rgba(152,138,109,1) 5%, rgba(150,139,107,1) 5%, rgba(152,138,109,1) 5%, rgba(152,139,107,1) 6%, rgba(153,139,110,1) 6%, rgba(153,140,108,1) 7%, rgba(154,140,111,1) 7%, rgba(154,141,109,1) 8%, rgba(155,141,112,1) 8%, rgba(155,142,110,1) 9%, rgba(155,144,114,1) 11%, rgba(158,145,113,1) 13%, rgba(157,146,116,1) 13%, rgba(158,147,117,1) 15%, rgba(160,147,115,1) 15%, rgba(159,148,118,1) 16%, rgba(165,154,124,1) 23%, rgba(163,154,123,1) 23%, rgba(166,155,125,1) 24%, rgba(164,155,124,1) 25%, rgba(169,158,128,1) 28%, rgba(169,160,129,1) 31%, rgba(172,161,131,1) 32%, rgba(170,161,130,1) 32%, rgba(173,162,134,1) 33%, rgba(171,162,131,1) 34%, rgba(175,164,134,1) 36%, rgba(179,173,141,1) 45%, rgba(181,172,143,1) 45%, rgba(183,177,145,1) 50%, rgba(186,177,148,1) 51%, rgba(184,178,146,1) 51%, rgba(187,178,147,1) 52%, rgba(185,179,147,1) 53%, rgba(188,179,150,1) 53%, rgba(186,180,148,1) 54%, rgba(188,182,150,1) 56%, rgba(190,181,152,1) 56%, rgba(189,184,152,1) 59%, rgba(193,186,157,1) 62%, rgba(194,188,156,1) 64%, rgba(195,188,159,1) 64%, rgba(195,189,157,1) 65%, rgba(196,189,160,1) 66%, rgba(196,189,160,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(147,134,102,1) 0%,rgba(148,134,105,1) 0%,rgba(149,136,104,1) 1%,rgba(147,136,106,1) 2%,rgba(149,136,104,1) 2%,rgba(151,138,106,1) 4%,rgba(149,138,108,1) 4%,rgba(151,138,106,1) 5%,rgba(152,138,109,1) 5%,rgba(150,139,107,1) 5%,rgba(152,138,109,1) 5%,rgba(152,139,107,1) 6%,rgba(153,139,110,1) 6%,rgba(153,140,108,1) 7%,rgba(154,140,111,1) 7%,rgba(154,141,109,1) 8%,rgba(155,141,112,1) 8%,rgba(155,142,110,1) 9%,rgba(155,144,114,1) 11%,rgba(158,145,113,1) 13%,rgba(157,146,116,1) 13%,rgba(158,147,117,1) 15%,rgba(160,147,115,1) 15%,rgba(159,148,118,1) 16%,rgba(165,154,124,1) 23%,rgba(163,154,123,1) 23%,rgba(166,155,125,1) 24%,rgba(164,155,124,1) 25%,rgba(169,158,128,1) 28%,rgba(169,160,129,1) 31%,rgba(172,161,131,1) 32%,rgba(170,161,130,1) 32%,rgba(173,162,134,1) 33%,rgba(171,162,131,1) 34%,rgba(175,164,134,1) 36%,rgba(179,173,141,1) 45%,rgba(181,172,143,1) 45%,rgba(183,177,145,1) 50%,rgba(186,177,148,1) 51%,rgba(184,178,146,1) 51%,rgba(187,178,147,1) 52%,rgba(185,179,147,1) 53%,rgba(188,179,150,1) 53%,rgba(186,180,148,1) 54%,rgba(188,182,150,1) 56%,rgba(190,181,152,1) 56%,rgba(189,184,152,1) 59%,rgba(193,186,157,1) 62%,rgba(194,188,156,1) 64%,rgba(195,188,159,1) 64%,rgba(195,189,157,1) 65%,rgba(196,189,160,1) 66%,rgba(196,189,160,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(147,134,102,1) 0%,rgba(148,134,105,1) 0%,rgba(149,136,104,1) 1%,rgba(147,136,106,1) 2%,rgba(149,136,104,1) 2%,rgba(151,138,106,1) 4%,rgba(149,138,108,1) 4%,rgba(151,138,106,1) 5%,rgba(152,138,109,1) 5%,rgba(150,139,107,1) 5%,rgba(152,138,109,1) 5%,rgba(152,139,107,1) 6%,rgba(153,139,110,1) 6%,rgba(153,140,108,1) 7%,rgba(154,140,111,1) 7%,rgba(154,141,109,1) 8%,rgba(155,141,112,1) 8%,rgba(155,142,110,1) 9%,rgba(155,144,114,1) 11%,rgba(158,145,113,1) 13%,rgba(157,146,116,1) 13%,rgba(158,147,117,1) 15%,rgba(160,147,115,1) 15%,rgba(159,148,118,1) 16%,rgba(165,154,124,1) 23%,rgba(163,154,123,1) 23%,rgba(166,155,125,1) 24%,rgba(164,155,124,1) 25%,rgba(169,158,128,1) 28%,rgba(169,160,129,1) 31%,rgba(172,161,131,1) 32%,rgba(170,161,130,1) 32%,rgba(173,162,134,1) 33%,rgba(171,162,131,1) 34%,rgba(175,164,134,1) 36%,rgba(179,173,141,1) 45%,rgba(181,172,143,1) 45%,rgba(183,177,145,1) 50%,rgba(186,177,148,1) 51%,rgba(184,178,146,1) 51%,rgba(187,178,147,1) 52%,rgba(185,179,147,1) 53%,rgba(188,179,150,1) 53%,rgba(186,180,148,1) 54%,rgba(188,182,150,1) 56%,rgba(190,181,152,1) 56%,rgba(189,184,152,1) 59%,rgba(193,186,157,1) 62%,rgba(194,188,156,1) 64%,rgba(195,188,159,1) 64%,rgba(195,189,157,1) 65%,rgba(196,189,160,1) 66%,rgba(196,189,160,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#938666', endColorstr='#c4bda0',GradientType=0 ); /* IE6-9 */
}

.ffa7-left-menu {
	padding: 40px 30px;
}

.ffa7-sidemenu {
	padding: 0;
	margin: 0;
}

	.ffa7-sidemenu li {
		list-style: none;
		display: block;
		margin: 0 0 30px;
	}

		.ffa7-sidemenu li a {
			color: #fff;
			font-size: 18px;
			line-height: 20px;
			font-weight: 400;
			display: block;
		}

			.ffa7-sidemenu li a img {
				max-width: 20px;
				margin-right: 5px;
			}

			.ffa7-sidemenu li a:hover,
			.ffa7-sidemenu li a:focus {
				opacity: 0.7;
				text-decoration: none;
			}

	.ffa7-sidemenu .menu-alrt sup {
		color: #938667;
		background: #fff;
		border-radius: 15px;
		padding: 6px 11px;
		font-size: 12px;
		top: 0px;
		margin-left: 10px;
	}

.ffa7-body-right {
	background: #fff;
	min-height: 1000px;
	padding: 50px;
}

.title-bradcum {
	color: #938667;
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
}

	.title-bradcum .fa {
		margin: 0 10px;
	}

.body-title {
	color: #938667;
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
	position: relative;
	display: inline-block;
}

	.body-title .under {
		position: absolute;
		left: 0;
		bottom: -10px;
		height: 5px;
		width: 28px;
		background: #938667;
		border-radius: 10px;
	}

.content-title {
	color: #938667;
	font-size: 30px;
	line-height: 30px;
	font-weight: 700;
	margin: 30px 0;
}




/*----------------------------------------------*\
    	partner-businesses-body style
\*----------------------------------------------*/

.partner-businesses-body {
	padding: 30px 50px;
}

	.partner-businesses-body .search-box {
		background: #e5e0c4;
		padding: 15px;
		width: 100%;
		display: block;
		position: relative;
		margin-top: 20px;
	}

		.partner-businesses-body .search-box a {
			position: absolute;
			left: 24px;
			top: 20px;
		}

			.partner-businesses-body .search-box a img {
				max-width: 20px;
			}

		.partner-businesses-body .search-box input {
			background: #ffffff;
			padding: 8px 10px 8px 40px;
			max-width: 260px;
			width: 100%;
			border: none;
			font-size: 14px;
			font-weight: 400;
			color: #938667;
		}

			.partner-businesses-body .search-box input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
				color: #c5bd9e;
			}

			.partner-businesses-body .search-box input::-moz-placeholder { /* Firefox 19+ */
				color: #c5bd9e;
			}

			.partner-businesses-body .search-box input:-ms-input-placeholder { /* IE 10+ */
				color: #c5bd9e;
			}

			.partner-businesses-body .search-box input:-moz-placeholder { /* Firefox 18- */
				color: #c5bd9e;
			}

.ffa7-table {
	margin: 0;
}

table.ffa7-table tr th,
table.ffa7-table tr td {
	border: none !important;
	padding: 15px;
	vertical-align: middle;
}

table.ffa7-table tr th {
	color: #ffffff;
	background: #c5bd9e;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}

table.ffa7-table tr td {
	color: #938667;
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
}

table.ffa7-table .word-icon {
	max-width: 20px;
}

.ffa7-table .up-down {
	display: inline-block;
	margin-left: 10px;
	height: 21px;
	vertical-align: middle;
}

	.ffa7-table .up-down a {
		display: block;
		color: #e2decf;
		font-size: 16px;
		line-height: 9px;
		margin: 0;
		padding: 0;
	}

		.ffa7-table .up-down a .fa {
			line-height: 9px;
		}

		.ffa7-table .up-down a:hover,
		.ffa7-table .up-down a:focus,
		.ffa7-table .up-down .active {
			color: #ffffff;
		}

.ffa7-pagination {
	background: #e5e0c4;
	padding: 10px;
}

	.ffa7-pagination ul {
		margin: 0;
		padding: 0;
	}

		.ffa7-pagination ul a {
			padding: 2px 15px;
			background: none;
			color: #fff;
			font-size: 16px;
			line-height: 18px;
			font-weight: 400;
		}

			.ffa7-pagination ul a img {
				max-width: 20px;
				margin-top: -4px;
			}

			.ffa7-pagination ul a:hover {
				color: #938667;
				background: none;
			}

				.ffa7-pagination ul a:hover img {
					opacity: 0.7;
				}



/*----- businesses-tab -----*/

.businesses-tab-wrap {
}

	.businesses-tab-wrap .nav-tabs {
		border-bottom: none;
		margin-bottom: 1px;
	}

		.businesses-tab-wrap .nav-tabs li a {
			background: rgb(222,222,222);
			background: -moz-linear-gradient(top, rgba(222,222,222,1) 0%, rgba(255,255,255,1) 100%);
			background: -webkit-linear-gradient(top, rgba(222,222,222,1) 0%,rgba(255,255,255,1) 100%);
			background: linear-gradient(to bottom, rgba(222,222,222,1) 0%,rgba(255,255,255,1) 100%);
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#ffffff',GradientType=0 );
			margin-right: 3px;
			border: none;
			border-radius: 0;
			color: #666666;
			font-size: 14px;
			font-weight: 400;
			padding: 15px 13px;
		}

		.businesses-tab-wrap .nav-tabs li.active a,
		.businesses-tab-wrap .nav-tabs li:hover a {
			background: #eeeeee;
			color: #21201e;
			border: none;
		}

		.businesses-tab-wrap .nav-tabs li.active a {
			font-weight: 600;
		}


	.businesses-tab-wrap .tab-content {
		background: #eeeeee;
		padding: 20px;
	}


#mainDetails .edit-btn {
	min-width: 160px;
}

	#mainDetails .edit-btn img {
		max-width: 20px;
		margin-right: 10px;
		margin-top: -6px;
	}

.sku-row {
	margin: 0;
}

	.sku-row .sku-item {
		margin-bottom: 30px;
		border-left: 1px solid #938667;
		padding: 0 8px;
	}

		.sku-row .sku-item h5 {
			color: #938667;
			font-size: 16px;
			font-weight: 500;
			line-height: 22px;
			margin: 0;
		}

		.sku-row .sku-item p {
			color: #938667;
			font-size: 14px;
			font-weight: 400;
			line-height: 18px;
			margin: 0;
			max-width: 460px;
		}

.branches-title {
	color: #938667;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
}

.branches-table {
	margin: 15px 0 30px;
}

table.branches-table tr td {
	background: #f3f3f3;
	border-top: none;
	color: #938667;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	padding: 10px 12px;
}

table.branches-table tr:nth-of-type(2n+1) td {
	background: #f8f8f8;
}

table.branches-table tr td img {
	max-width: 20px;
}

table.branches-table tr td a:hover {
	opacity: 0.7;
}













/*------------------------------------*\
 		person-details style
\*------------------------------------*/

.person-details .table tr th {
	color: #938667;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	border: none;
}

.person-details .table tr td {
	background: #f8f8f8;
	color: #938667;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	border: none;
}

.person-details .table tr:nth-of-type(2n+1) td {
	background: #f3f3f3;
}

#persons .btn.btn-add-new,
.btn.btn-add-new.addr {
	margin-top: 80px;
}

.btn.btn-add-new img {
	max-width: 20px;
	margin-right: 5px;
}


/*------------------------------------*\
 		address-details style
\*------------------------------------*/


.address-details .table tr td {
	border-top: none;
	border-left: 2px solid #938667;
	color: #938667;
}

	.address-details .table tr td h3 {
		font-size: 16px;
		line-height: 20px;
		font-weight: 400;
	}

	.address-details .table tr td p {
		color: #938667;
		font-size: 14px;
		line-height: 16px;
		font-weight: 400;
	}


/*------------------------------------*\
 		exten-details style
\*------------------------------------*/
.exten-details {
	margin: 0;
}

	.exten-details .exten-item {
		margin-bottom: 30px;
		border-left: 1px solid #938667;
		padding: 0 8px;
	}

		.exten-details .exten-item h5 {
			color: #938667;
			font-size: 16px;
			font-weight: 500;
			line-height: 22px;
			margin: 0;
		}

		.exten-details .exten-item p {
			color: #938667;
			font-size: 14px;
			font-weight: 400;
			line-height: 18px;
			margin: 0;
			max-width: 460px;
		}

.dietary-restri h5 {
	color: #938667;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	margin: 0;
}

.dietary-restri p {
	color: #938667;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	margin: 0;
}

.dietary-restri .extr-border {
	border-left: 1px solid #938667;
	padding: 0 8px;
}



.step-width-MX900 {
	max-width: 900px;
	margin: 0 auto;
}
















/*----------------*/

.partner-step-wizard {
	width: 100%;
}

.partner-stepWiz-head {
	width: 100%;
	display: block;
	margin: 0 auto;
	max-width: 740px;
}

	.partner-stepWiz-head ul {
		background: #e5e0c4;
		height: 4px;
		padding: 0;
		position: relative;
		margin: 80px auto;
	}

		.partner-stepWiz-head ul li.defaultState {
			display: inline-block;
			left: 0;
			list-style: outside none none;
			position: absolute;
			top: 15px;
			width: 22.2%;
		}

			.partner-stepWiz-head ul li.defaultState:nth-child(1) {
				left: -25px;
			}

			.partner-stepWiz-head ul li.defaultState:nth-child(2) {
				left: 20%;
			}

			.partner-stepWiz-head ul li.defaultState:nth-child(3) {
				left: 40%;
			}

			.partner-stepWiz-head ul li.defaultState:nth-child(4) {
				left: 60%;
			}

			.partner-stepWiz-head ul li.defaultState:nth-child(5) {
				left: 80%;
			}

			.partner-stepWiz-head ul li.defaultState:nth-child(6) {
				left: 100%;
				width: 5%;
			}

		.partner-stepWiz-head ul .defaultState a:hover {
			text-decoration: none;
		}

		.partner-stepWiz-head ul .defaultState a .circle {
			width: 40px;
			height: 40px;
			display: block;
			background: #e5e0c4;
			color: #ffffff;
			border-radius: 50%;
			margin: -33px 0 0;
			position: relative;
			z-index: 10;
			line-height: 40px;
			text-align: center;
		}

			.partner-stepWiz-head ul .defaultState a .circle span {
				color: #fff;
				font-size: 16px;
			}

			.partner-stepWiz-head ul .defaultState a .circle .fa {
				color: #fff;
				font-size: 16px;
				line-height: 40px;
			}

			.partner-stepWiz-head ul .defaultState a .circle .fa,
			.partner-stepWiz-head ul .defaultState.completedStep a .circle span {
				display: none;
			}

			.partner-stepWiz-head ul .defaultState.completedStep a .circle .fa,
			.partner-stepWiz-head ul .defaultState a .circle span {
				display: block;
			}

		.partner-stepWiz-head ul .defaultState.active a .circle {
			background: #938667;
			width: 50px;
			height: 50px;
			line-height: 50px;
			margin-top: -38px;
		}

		.partner-stepWiz-head ul .defaultState.completedStep a .circle {
			background: #938667;
		}

		.partner-stepWiz-head ul .defaultState.completedStep a .circle-text {
			color: #938667;
		}

		.partner-stepWiz-head ul .defaultState.active a .circle-text {
			color: #938667;
			top: auto;
			bottom: -30px;
		}

			.partner-stepWiz-head ul .defaultState.active a .circle-text .under {
				position: absolute;
				left: 15px;
				bottom: -2px;
				height: 3px;
				width: 15px;
				background: #938667;
				border-radius: 6px;
			}

		.partner-stepWiz-head ul .defaultState.active:nth-child(2) a .circle-text .under {
			left: 2px;
		}

		.partner-stepWiz-head ul .defaultState.active:nth-child(3) a .circle-text .under {
			left: 8px;
		}

		.partner-stepWiz-head ul .defaultState.active:nth-child(4) a .circle-text .under {
			left: 8px;
		}

		.partner-stepWiz-head ul .defaultState.active:nth-child(5) a .circle-text .under {
			left: 28px;
		}

		.partner-stepWiz-head ul .defaultState.active:nth-child(6) a .circle-text .under {
			left: 20px;
		}

		.partner-stepWiz-head ul .defaultState a .circle-text {
			color: #c5bd9e;
			margin: 0;
			position: absolute;
			left: -30px;
			top: -60px;
			width: 108px;
			text-align: center;
			font-size: 14px;
			font-weight: 300;
		}

		.partner-stepWiz-head ul .defaultState.completedStep::before {
			background: #938667;
			content: "";
			height: 4px;
			left: 10px;
			position: absolute;
			top: -15px;
			width: 100%;
		}

.partner-stepWiz-body .setup-content {
	padding: 20px;
}

	.partner-stepWiz-body .setup-content.activeStepBody {
		display: block;
	}

.partner-stepWiz-body .setup-content {
	display: none;
	min-height: 300px;
}

.btn.action-step {
	background: #c5bd9e;
	border: none;
	min-width: 120px;
	min-height: 52px;
}

	.btn.action-step:hover {
		background: #938667;
	}

	.btn.action-step.btn-bue {
		background: #02b7a1;
	}

		.btn.action-step.btn-bue:hover {
			background: #03af99;
		}

	.btn.action-step img {
		max-width: 20px;
		margin-top: -4px;
	}

	.btn.action-step.inactiveActionBtn {
		opacity: 0.5;
	}

	.btn.action-step[data-action="next"] span,
	.btn.action-step[data-action="next"].inactiveActionBtn img {
		display: none;
	}

	.btn.action-step[data-action="next"].inactiveActionBtn span {
		display: block;
		text-transform: uppercase;
	}

	.btn.action-step[data-action="next"].inactiveActionBtn {
		opacity: 1;
	}


.partner-step-wizard .box-footer {
	margin: 20px -15px;
}

.partner-step-wizard .btn-save-exit {
	background: #02b7a1;
	border: none;
	min-width: 120px;
	min-height: 52px;
	margin: 0 auto;
	padding: 10px 25px;
}

	.partner-step-wizard .btn-save-exit img {
		max-width: 20px;
		margin-right: 10px;
		margin-top: -4px;
	}

.ffa7-group.cuisines .form-control,
.ffa7-group.tags .form-control {
	text-align: right;
}

.ffa7-group .add-field {
	position: absolute;
	top: 32px;
	left: 27px;
}

.ffa7-group .input-btn {
	display: inline-block;
	color: #ffffff;
	background: #c5bd9e;
	padding: 9px 15px;
	border-radius: 6px;
	font-size: 14px;
	text-decoration: none;
	margin-right: 3px;
}

	.ffa7-group .input-btn a img {
		max-height: 10px;
		margin-left: 6px;
	}

.person-step .table-responsive {
	margin-top: 30px;
}

.person-step table.ffa7-table tr td a {
	margin-left: 15px;
}

	.person-step table.ffa7-table tr td a:hover {
		opacity: 0.8;
	}

	.person-step table.ffa7-table tr td a img {
		max-width: 18px;
	}

.person-addnew-form {
	background: #eeeeee;
	padding: 30px 30px 20px 10px;
	margin: 40px 0;
}

.person-addnew-btn.show {
	display: inline-block !important;
}


.primary-admin-blk .ffa7-switch {
	margin: 15px 0 4px;
}

.primary-admin-blk div p {
	font-size: 13px;
	color: #938667;
}

.partner-stepWiz-head.addItemStp {
	max-width: 680px;
}

	.partner-stepWiz-head.addItemStp ul li.defaultState {
		width: 36%;
	}

		.partner-stepWiz-head.addItemStp ul li.defaultState:nth-child(1) {
			left: -25px;
		}

		.partner-stepWiz-head.addItemStp ul li.defaultState:nth-child(2) {
			left: 33.3%;
		}

		.partner-stepWiz-head.addItemStp ul li.defaultState:nth-child(3) {
			left: 66.6%;
		}

		.partner-stepWiz-head.addItemStp ul li.defaultState:nth-child(4) {
			left: 100%;
			width: 5%;
		}

	.partner-stepWiz-head.addItemStp ul .defaultState a .circle-text {
		width: 125px;
	}

	.partner-stepWiz-head.addItemStp ul .defaultState.active a .circle-text .under {
		left: 24px;
	}

	.partner-stepWiz-head.addItemStp ul .defaultState.active:nth-child(2) a .circle-text .under {
		left: 3px;
	}

	.partner-stepWiz-head.addItemStp ul .defaultState.active:nth-child(3) a .circle-text .under {
		left: 15px;
	}

	.partner-stepWiz-head.addItemStp ul .defaultState.active:nth-child(4) a .circle-text .under {
		left: 27px;
	}

.breakfastLunch-check {
	max-width: 720px;
	margin: 20px auto 40px;
	text-align: center;
}

	.breakfastLunch-check .item label,
	.tax-exempt label {
		float: left;
	}

	.breakfastLunch-check .item .text,
	.tax-exempt .text {
		float: left;
		color: #938667;
		font-size: 15px;
		line-height: 32px;
		margin-left: 10px;
	}

.modifier-group .btn {
	min-width: 90px;
	margin-top: 25px;
}

.modifier-group .ffa7-group {
	padding: 0 15px;
}



/*------------------------------------*\
 		media-details style
\*------------------------------------*/
.media-details a {
	text-decoration: none;
}

.media-details .img-title {
	color: #938667;
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
	text-decoration: none;
	display: block;
	margin-top: 5px;
}

.media-details .edit-btn {
	margin-top: 114px;
}

/*------------------------------------*\
 		item-details style
\*------------------------------------*/

.item-details .table tr th {
	color: #938667;
	font-size: 16px;
	line-height: 20px;
	font-weight: 300;
	border: none;
}

.item-details .table tr td {
	background: #f8f8f8;
	color: #938667;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	border: none;
}

	.item-details .table tr td a {
		text-decoration: none;
		color: #938667;
		font-size: 14px;
		line-height: 20px;
		font-weight: 400;
	}

/*------------------------------------*\
 		multimedia-tab style
\*------------------------------------*/

.multimedia-tab .table tr td {
	padding: 25px;
	border: none;
}

	.multimedia-tab .table tr td .image-title {
		color: #938667;
		font-size: 14px;
		line-height: 20px;
		font-weight: 300;
		text-decoration: none;
		display: block;
		margin-top: 5px;
	}

		.multimedia-tab .table tr td .image-title a img {
			max-width: 15px;
		}


/*------------------------------------*\
 		dietary-details style
\*------------------------------------*/

.dietary-restriction {
	margin-top: 50px;
}

.dietary-rest-form {
	margin-top: 30px;
	background: #eeeeee;
	padding: 25px 10px 10px 10px;
}

	.dietary-rest-form .save-btn {
		margin-top: 20px;
	}


/*------------------------------------*\
 		user-settings style
\*------------------------------------*/
.user-settings {
	margin-top: 50px;
}

.user-settings-form {
	background: #eeeeee;
	margin-top: 30px;
	padding: 25px 20px 25px 5px;
}

.media-btn-editAdd .btn {
	margin-top: 50px;
}

.multimedia-tab .ffa7-upload-file {
	padding: 20px 30px;
	margin-bottom: 0;
}

.multimedia-tab .max-file {
	color: #938667;
	font-size: 14px;
	font-weight: 400;
	padding: 0 30px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.partner-stepWiz-head.addClientStp {
	max-width: 720px;
}

	.partner-stepWiz-head.addClientStp ul li.defaultState {
		width: 28%;
	}

		.partner-stepWiz-head.addClientStp ul li.defaultState:nth-child(1) {
			left: -25px;
		}

		.partner-stepWiz-head.addClientStp ul li.defaultState:nth-child(2) {
			left: 25%;
		}

		.partner-stepWiz-head.addClientStp ul li.defaultState:nth-child(3) {
			left: 50%;
		}

		.partner-stepWiz-head.addClientStp ul li.defaultState:nth-child(4) {
			left: 75%;
		}

		.partner-stepWiz-head.addClientStp ul li.defaultState:nth-child(5) {
			left: 100%;
			width: 5%;
		}

	.partner-stepWiz-head.addClientStp ul .defaultState a .circle-text {
		width: 100px;
	}

	.partner-stepWiz-head.addClientStp ul .defaultState:nth-child(2) a .circle-text {
		width: 165px;
	}

	.partner-stepWiz-head.addClientStp ul .defaultState:nth-child(3) a .circle-text {
		width: 125px;
	}

	.partner-stepWiz-head.addClientStp ul .defaultState.active a .circle-text .under {
		left: 12px;
	}

	.partner-stepWiz-head.addClientStp ul .defaultState.active:nth-child(2) a .circle-text .under {
		left: 4px;
	}

	.partner-stepWiz-head.addClientStp ul .defaultState.active:nth-child(3) a .circle-text .under {
		left: 2px;
	}

	.partner-stepWiz-head.addClientStp ul .defaultState.active:nth-child(4) a .circle-text .under {
		left: 26px;
	}

	.partner-stepWiz-head.addClientStp ul .defaultState.active:nth-child(5) a .circle-text .under {
		left: 20px;
	}

.tax-exempt {
	padding: 0 20px;
}

.ffa7-group.desc-addClient textarea.form-control {
	min-height: 105px;
}

.send-email .btn {
	font-size: 14px;
	background: #c5bd9e;
}

	.send-email .btn:hover,
	.send-email .btn:focus {
		background: #a19372;
	}

.delivery-billing {
	margin: 50px 0 0;
}

	.delivery-billing .ffa7-switch {
		float: left;
		margin: 0 0 15px;
	}

	.delivery-billing div p {
		float: left;
		font-size: 13px;
		color: #938667;
		margin: 6px 0 0 10px;
	}

.btn-add-new.extrMrg {
	margin-top: 115px;
}

.search-box.search-showOnly a {
	top: 6px;
}

.search-box.search-showOnly .search-input {
	max-width: 300px;
}

.search-box.search-showOnly .ffa7-switch {
	float: right;
}

.search-box.search-showOnly p {
	float: right;
	color: #938667;
	font-size: 14px;
	margin: 7px 0 0 15px;
}

.order-item-alrt {
	color: #ffffff;
	background: #938667;
	font-size: 16px;
	padding: 3px 12px;
	border-radius: 20px;
	margin-left: 15px;
}

.businesses-tab-wrap.multimedia-tab .nav-tabs li .mrg-cont {
	background: rgb(222,222,222);
	background: -moz-linear-gradient(top, rgba(222,222,222,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top, rgba(222,222,222,1) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(222,222,222,1) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#ffffff',GradientType=0 );
	margin-right: 3px;
}

.businesses-tab-wrap.multimedia-tab .nav-tabs li:hover .mrg-cont {
	background: #eeeeee;
}

.businesses-tab-wrap.multimedia-tab .nav-tabs li.active .mrg-cont {
	background: #eeeeee;
}

.businesses-tab-wrap.multimedia-tab .nav-tabs li .mrg-cont a {
	display: inline-block;
	background: none;
	text-decoration: none;
	margin-right: 0;
}

.businesses-tab-wrap.multimedia-tab .nav-tabs li .mrg-cont .ffa7-switch {
	float: right;
	margin: 8px 8px 0 0;
}


.tab-content .no-day-hour {
	max-width: 440px;
	margin: 0 auto;
}

	.tab-content .no-day-hour .text {
		float: left;
		color: #938667;
		margin: 8px 10px 0 0;
	}


.tab-content .day-calander {
	margin: 30px auto 80px;
	max-width: 700px;
	text-align: center;
}

	.tab-content .day-calander a {
		background: #ffffff;
		color: #938667;
		height: 64px;
		width: 64px;
		font-size: 16px;
		line-height: 64px;
		text-align: center;
		border-radius: 50%;
		display: inline-block;
		margin: 0 10px;
		text-decoration: none;
		text-transform: uppercase;
	}

		.tab-content .day-calander a.active {
			background: #938667;
			color: #ffffff;
		}
		.tab-content .day-calander a:hover {
			background: #DDDDDD;
			color: #ffffff;
		}

.ffa7-progress.progressMaxWidth700 {
	max-width: 620px;
}

.ffa7-progress {
	background: #ffffff;
	width: 100%;
	height: 25px;
	margin: 50px auto;
	border-radius: 15px;
	-webkit-box-shadow: 0 0 1px rgba(0,0,0,.15);
	box-shadow: 0 0 1px rgba(0,0,0,.15);
	position: relative;
}

	.ffa7-progress .ffa7-progress-bar {
		background: #c5bd9e;
		box-shadow: none;
		border-radius: 15px;
		height: 25px;
	}

	.ffa7-progress .ffa7-progress-content {
		position: absolute;
		left: 0;
		top: -50px;
	}

.ffa7-progress-content .start-cont,
.ffa7-progress-content .end-cont {
	font-size: 14px;
	text-transform: uppercase;
	color: #938667;
	background: #fff;
	border: 2px solid #e5e0c4;
	border-radius: 12px;
	padding: 6px 12px;
	position: relative;
}

	.ffa7-progress-content .start-cont:before,
	.ffa7-progress-content .end-cont:before {
		content: '';
		position: absolute;
		bottom: -12px;
		height: 16px;
		width: 16px;
		left: 35%;
		background: url(../images/progress-down-arrow.png) no-repeat center center / 16px auto;
	}

.ffa7-progress-content .start-cont {
	float: left;
	margin-left: -20px;
}

.ffa7-progress-content .end-cont {
	float: right;
	margin-right: -20px;
}

.businesses-tab-wrap .tab-content.working-hour {
	padding: 0;
}

	.businesses-tab-wrap .tab-content.working-hour .tab-pane {
		padding: 20px;
	}

		.businesses-tab-wrap .tab-content.working-hour .tab-pane.business-hour {
			padding: 0;
		}

.multimedia-tab .business-hour .table tr td {
	padding: 10px 20px;
	vertical-align: middle;
}

	.multimedia-tab .business-hour .table tr td:nth-child(2) {
		width: 65%;
	}

	.multimedia-tab .business-hour .table tr td .day {
		color: #938667;
		font-size: 16px;
		font-weight: 600;
	}

	.multimedia-tab .business-hour .table tr td .ffa7-progress {
		margin-bottom: 20px;
		margin-top: 60px;
	}

	.multimedia-tab .business-hour .table tr td .ffa7-switch {
		width: 85px;
		margin-bottom: 0;
	}

		.multimedia-tab .business-hour .table tr td .ffa7-switch input:checked + .slider::before {
			-webkit-transform: translateX(50px);
			-ms-transform: translateX(50px);
			transform: translateX(50px);
		}

.addClient-dietary-restr .dietary-tag {
	display: inline-block;
	color: #ffffff;
	background: #c5bd9e;
	padding: 9px 35px 9px 15px;
	border-radius: 6px;
	font-size: 14px;
	text-decoration: none;
	margin: 5px;
	min-width: 90px;
	text-align: left;
}

.addClient-dietary-restr .ffa7-upload-file {
	position: relative;
}

	.addClient-dietary-restr .ffa7-upload-file .upload-body {
		padding: 100px 20px;
	}

	.addClient-dietary-restr .ffa7-upload-file .input-info {
		position: absolute;
		right: -25px;
		top: -5px;
		font-size: 15px;
		color: #c5bd9e;
	}


.items-accordion .panel-default {
	border: none;
}

.items-accordion .panel-group .panel + .panel {
	margin: 0;
}

.items-accordion .panel-default > .panel-heading {
	color: #938667;
	background-color: #f8f8f8;
	border: none;
	padding: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

	.items-accordion .panel-default > .panel-heading a {
		display: block;
		padding: 10px 15px;
		text-decoration: none;
	}

	.items-accordion .panel-default > .panel-heading + .panel-collapse > .panel-body {
		border: none;
	}

	.items-accordion .panel-default > .panel-heading a:after {
		content: "";
		position: relative;
		top: 1px;
		display: inline-block;
		font-family: 'Glyphicons Halflings';
		font-style: normal;
		font-weight: 600;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		float: right;
		transition: transform .25s linear;
		-webkit-transition: -webkit-transform .25s linear;
	}

	.items-accordion .panel-default > .panel-heading a[aria-expanded="true"] {
		background-color: #ffffff;
	}

		.items-accordion .panel-default > .panel-heading a[aria-expanded="true"]:after {
			content: "\2212";
			-webkit-transform: rotate(180deg);
			transform: rotate(180deg);
		}

	.items-accordion .panel-default > .panel-heading a[aria-expanded="false"]:after {
		content: "\002b";
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}

.items-accordion .accordion-option {
	width: 100%;
	float: left;
	clear: both;
	margin: 15px 0;
}

	.items-accordion .accordion-option .title {
		font-size: 18px;
		font-weight: 700;
		float: left;
		padding: 0;
		margin: 0;
	}

	.items-accordion .accordion-option .toggle-accordion {
		float: right;
		font-size: 16px;
		color: #6a6c6f;
	}

.items-accordion .panel-content-title {
	padding: 10px 15px;
}

	.items-accordion .panel-content-title span {
		font-size: 15px;
		font-weight: 400;
		color: #938667;
	}

	.items-accordion .panel-heading .panel-title .item-name,
	.items-accordion .panel-content-title .item-name {
		width: 45%;
		display: inline-block;
	}

	.items-accordion .panel-heading .panel-title .cost,
	.items-accordion .panel-heading .panel-title .tax,
	.items-accordion .panel-content-title .cost,
	.items-accordion .panel-content-title .tax {
		width: 15%;
		display: inline-block;
	}

.items-accordion .panel-default:nth-child(even) > .panel-heading {
	background-color: #f3f3f3;
}


.items-accordion .panel-body .media-tag {
	display: inline-block;
	color: #ffffff;
	background: #c5bd9e;
	padding: 9px 15px;
	border-radius: 6px;
	font-size: 14px;
	text-decoration: none;
	margin: 0 10px 10px 0;
	min-width: 90px;
	text-align: left;
}

	.items-accordion .panel-body .media-tag img {
		max-width: 25px;
	}

.items-accordion .panel-body .media-img {
	display: inline-block;
	background: #ffffff;
	border: 2px solid #938667;
	margin: 0 10px 10px 0;
	float: left;
}

	.items-accordion .panel-body .media-img img {
		max-width: 105px;
	}

.topping-list {
	padding-right: 0;
	margin-top: 10px;
}

	.topping-list ul {
		padding: 0;
		margin: 0;
	}

		.topping-list ul li {
			list-style: none;
			display: block;
			font-size: 14px;
			line-height: 18px;
			font-weight: 400;
			color: #938667;
			padding: 5px 0;
		}

			.topping-list ul li span {
				font-weight: 600;
			}

.grilled-text {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	color: #938667;
}




/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
                All media style
----------------------------------------------------------------------------
----------------------------------------------------------------------------*/

@media screen and (-webkit-min-device-pixel-ratio:0) {

	.ffa7-header-right .add-menu a {
		padding: 13px 24px 13px;
	}

	.ffa7-header-right .notification a {
		padding: 14px 13px 14px;
	}
}




@media (min-width: 1367px) {

	.ffa7-body-wraper {
		min-height: 1000px;
		position: relative;
		background: #fff;
	}

	.ffa7-left-menu {
		position: absolute;
		top: 0;
		left: 0;
		max-width: 300px;
		z-index: 100;
		height: 100%;
		background: rgb(147,134,102); /* Old browsers */
		background: -moz-linear-gradient(top, rgba(147,134,102,1) 0%, rgba(148,134,105,1) 0%, rgba(149,136,104,1) 1%, rgba(147,136,106,1) 2%, rgba(149,136,104,1) 2%, rgba(151,138,106,1) 4%, rgba(149,138,108,1) 4%, rgba(151,138,106,1) 5%, rgba(152,138,109,1) 5%, rgba(150,139,107,1) 5%, rgba(152,138,109,1) 5%, rgba(152,139,107,1) 6%, rgba(153,139,110,1) 6%, rgba(153,140,108,1) 7%, rgba(154,140,111,1) 7%, rgba(154,141,109,1) 8%, rgba(155,141,112,1) 8%, rgba(155,142,110,1) 9%, rgba(155,144,114,1) 11%, rgba(158,145,113,1) 13%, rgba(157,146,116,1) 13%, rgba(158,147,117,1) 15%, rgba(160,147,115,1) 15%, rgba(159,148,118,1) 16%, rgba(165,154,124,1) 23%, rgba(163,154,123,1) 23%, rgba(166,155,125,1) 24%, rgba(164,155,124,1) 25%, rgba(169,158,128,1) 28%, rgba(169,160,129,1) 31%, rgba(172,161,131,1) 32%, rgba(170,161,130,1) 32%, rgba(173,162,134,1) 33%, rgba(171,162,131,1) 34%, rgba(175,164,134,1) 36%, rgba(179,173,141,1) 45%, rgba(181,172,143,1) 45%, rgba(183,177,145,1) 50%, rgba(186,177,148,1) 51%, rgba(184,178,146,1) 51%, rgba(187,178,147,1) 52%, rgba(185,179,147,1) 53%, rgba(188,179,150,1) 53%, rgba(186,180,148,1) 54%, rgba(188,182,150,1) 56%, rgba(190,181,152,1) 56%, rgba(189,184,152,1) 59%, rgba(193,186,157,1) 62%, rgba(194,188,156,1) 64%, rgba(195,188,159,1) 64%, rgba(195,189,157,1) 65%, rgba(196,189,160,1) 66%, rgba(196,189,160,1) 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(top, rgba(147,134,102,1) 0%,rgba(148,134,105,1) 0%,rgba(149,136,104,1) 1%,rgba(147,136,106,1) 2%,rgba(149,136,104,1) 2%,rgba(151,138,106,1) 4%,rgba(149,138,108,1) 4%,rgba(151,138,106,1) 5%,rgba(152,138,109,1) 5%,rgba(150,139,107,1) 5%,rgba(152,138,109,1) 5%,rgba(152,139,107,1) 6%,rgba(153,139,110,1) 6%,rgba(153,140,108,1) 7%,rgba(154,140,111,1) 7%,rgba(154,141,109,1) 8%,rgba(155,141,112,1) 8%,rgba(155,142,110,1) 9%,rgba(155,144,114,1) 11%,rgba(158,145,113,1) 13%,rgba(157,146,116,1) 13%,rgba(158,147,117,1) 15%,rgba(160,147,115,1) 15%,rgba(159,148,118,1) 16%,rgba(165,154,124,1) 23%,rgba(163,154,123,1) 23%,rgba(166,155,125,1) 24%,rgba(164,155,124,1) 25%,rgba(169,158,128,1) 28%,rgba(169,160,129,1) 31%,rgba(172,161,131,1) 32%,rgba(170,161,130,1) 32%,rgba(173,162,134,1) 33%,rgba(171,162,131,1) 34%,rgba(175,164,134,1) 36%,rgba(179,173,141,1) 45%,rgba(181,172,143,1) 45%,rgba(183,177,145,1) 50%,rgba(186,177,148,1) 51%,rgba(184,178,146,1) 51%,rgba(187,178,147,1) 52%,rgba(185,179,147,1) 53%,rgba(188,179,150,1) 53%,rgba(186,180,148,1) 54%,rgba(188,182,150,1) 56%,rgba(190,181,152,1) 56%,rgba(189,184,152,1) 59%,rgba(193,186,157,1) 62%,rgba(194,188,156,1) 64%,rgba(195,188,159,1) 64%,rgba(195,189,157,1) 65%,rgba(196,189,160,1) 66%,rgba(196,189,160,1) 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to bottom, rgba(147,134,102,1) 0%,rgba(148,134,105,1) 0%,rgba(149,136,104,1) 1%,rgba(147,136,106,1) 2%,rgba(149,136,104,1) 2%,rgba(151,138,106,1) 4%,rgba(149,138,108,1) 4%,rgba(151,138,106,1) 5%,rgba(152,138,109,1) 5%,rgba(150,139,107,1) 5%,rgba(152,138,109,1) 5%,rgba(152,139,107,1) 6%,rgba(153,139,110,1) 6%,rgba(153,140,108,1) 7%,rgba(154,140,111,1) 7%,rgba(154,141,109,1) 8%,rgba(155,141,112,1) 8%,rgba(155,142,110,1) 9%,rgba(155,144,114,1) 11%,rgba(158,145,113,1) 13%,rgba(157,146,116,1) 13%,rgba(158,147,117,1) 15%,rgba(160,147,115,1) 15%,rgba(159,148,118,1) 16%,rgba(165,154,124,1) 23%,rgba(163,154,123,1) 23%,rgba(166,155,125,1) 24%,rgba(164,155,124,1) 25%,rgba(169,158,128,1) 28%,rgba(169,160,129,1) 31%,rgba(172,161,131,1) 32%,rgba(170,161,130,1) 32%,rgba(173,162,134,1) 33%,rgba(171,162,131,1) 34%,rgba(175,164,134,1) 36%,rgba(179,173,141,1) 45%,rgba(181,172,143,1) 45%,rgba(183,177,145,1) 50%,rgba(186,177,148,1) 51%,rgba(184,178,146,1) 51%,rgba(187,178,147,1) 52%,rgba(185,179,147,1) 53%,rgba(188,179,150,1) 53%,rgba(186,180,148,1) 54%,rgba(188,182,150,1) 56%,rgba(190,181,152,1) 56%,rgba(189,184,152,1) 59%,rgba(193,186,157,1) 62%,rgba(194,188,156,1) 64%,rgba(195,188,159,1) 64%,rgba(195,189,157,1) 65%,rgba(196,189,160,1) 66%,rgba(196,189,160,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#938666', endColorstr='#c4bda0',GradientType=0 ); /* IE6-9 */
	}

	.ffa7-body-right {
		width: 100% !important;
		padding-left: 350px;
	}

	.ffa7-header .logo a img {
		margin: 0 0 0 85px;
	}







	.businesses-tab-wrap .nav-tabs li a {
		font-size: 18px;
		margin-right: 5px;
	}

	.businesses-tab-wrap .tab-content {
		padding: 40px;
	}
}
/* End of @media (min-width: 1367px) */



@media (max-width: 1366px) {

	#persons .btn.btn-add-new,
	.btn.btn-add-new.addr,
	.btn.btn-add-new.dietary {
		font-size: 16px;
		padding: 10px 15px;
	}
}
/* End of @media (max-width: 1366px) */



@media (min-width: 768px) {

	.ffa7-left-menu,
	.ffa7-header .logo {
		width: 20%;
	}

	.ffa7-body-right,
	.ffa7-header-right {
		width: 80%;
	}
}
/* End of @media (min-width: 768px) */




@media (min-width: 768px) and (max-width: 1024px) {
}
/* End of @media (min-width: 768px) and (max-width: 1024px) */



@media (max-width:1024px) {

	.partner-businesses-body {
		padding: 20px 0px;
	}

	#mainDetails .edit-btn {
		min-width: initial;
	}
}
/* End of @media (max-width: 1024px) */



@media (max-width: 991px) {
}
/* End of @media (max-width: 991px) */





@media (min-width: 768px) {
}
/* End of @media (min-width: 768px) */





@media (max-width: 767px) {

	.btn.btn-add-new {
		font-size: 16px;
		line-height: 16px;
		padding: 15px;
		min-width: 120px;
	}

	.ffa7-header-right {
		text-align: center;
	}

	.ffa7-body-right {
		min-height: inherit;
		padding: 30px 20px;
	}


	.partner-stepWiz-head {
		width: 80%;
	}

		.partner-stepWiz-head ul li.defaultState {
			width: 30%;
		}


	.partner-step-wizard .box-footer > div {
		text-align: center;
		margin-bottom: 15px;
	}

	.multimedia-tab .table tr td {
		padding: 15px;
		float: left;
		width: 100%;
	}

	.addClient-dietary-restr .ffa7-upload-file {
		margin-top: 40px;
	}

	.breakfastLunch-check .item label {
		margin-bottom: 20px;
	}

	.partner-stepWiz-head.addItemStp ul li.defaultState {
		width: 38%;
	}

	.tab-content .day-calander a {
		margin: 5px;
	}

	.ffa7-progress .ffa7-progress-content {
		top: -40px;
	}

	.ffa7-progress-content .start-cont {
		margin-left: -25px;
	}

	.ffa7-progress-content .end-cont {
		margin-right: -25px;
	}

	.ffa7-progress-content .start-cont,
	.ffa7-progress-content .end-cont {
		font-size: 10px;
	}

	.multimedia-tab .table tr td span .img-responsive {
		width: 100%;
	}

	.media-details .img-title {
		margin-bottom: 30px;
	}

	#items .clearfix .col-md-9,
	#items .clearfix .col-md-3 {
		padding: 0;
	}

	.items-accordion .panel-heading .panel-title .cost,
	.items-accordion .panel-heading .panel-title .tax,
	.items-accordion .panel-content-title .cost,
	.items-accordion .panel-content-title .tax {
		width: 20%;
	}

	.dietary-restri .extr-border {
		margin-bottom: 20px;
	}

	.topping-list {
		margin-bottom: 20px;
	}

	.businesses-tab-wrap .nav-tabs li a {
		font-size: 12px;
		padding: 15px 8px;
	}

	.dietary-restri p {
		margin-bottom: 30px;
	}

	#persons .btn.btn-add-new,
	.btn.btn-add-new.addr,
	.btn.btn-add-new.dietary,
	.btn.btn-add-new {
		font-size: 14px;
	}

	.search-box.search-showOnly .search-input {
		margin-bottom: 20px;
		max-width: 100%;
	}

	.partner-businesses-body .search-box input {
		max-width: 100%;
	}
}
/* End of @media (min-width: 768px) */



@media (max-width:690px) {

	.ffa7-header-right ul li {
		display: block;
		text-align: center;
	}

	.ffa7-header-right .notification a {
		margin: 0;
	}

	.ffa7-header-right .search {
		margin: 25px 0;
	}

	.partner-stepWiz-head.addClientStp ul li.defaultState {
		width: 32%;
	}

	.partner-stepWiz-head {
		width: 66%;
	}

		.partner-stepWiz-head.addItemStp ul li.defaultState {
			width: 42%;
		}

	.businesses-tab-wrap .tab-content.working-hour .tab-pane {
		padding: 10px 5px;
	}

	.tab-content .day-calander a {
		height: 50px;
		width: 50px;
		font-size: 12px;
		line-height: 50px;
	}

	.multimedia-tab .ffa7-upload-file {
		padding: 5px 0px 15px;
	}

	.person-details .table tr th {
		font-size: 13px;
	}

	.person-details .table tr td {
		font-size: 12px;
	}

	
}
/* End of @media (min-width: 690px) */





@media (max-width:420px) {
}
/* End of @media (min-width: 400px) */


.paginate_button, .ellipsis {
	font-size: 14px;
	font-weight: 400;
	border-left: 1px solid #ddd;
	border-right: none;
	border-top: none;
	border-bottom: none;
	padding: 7px 14px;
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #337ab7;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
	cursor: pointer;
}

.dataTables_paginate {
	padding: 2px;
}
.tooltip-inner {
	max-width: 300px;
	padding: 0;
}

.tooltip-alert {
	padding: 8px 10px;
	font-weight: bolder;
	color: red;
}

.spinnerOverlay {
	background-color: black;
}

.spinnerOverlayCenter {
	background-color: red;
}





/*------------------------------------*\
 		@selectize overrides
\*------------------------------------*/
.selectize-input {
	font-size: 13px;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

	.selectize-input.focus {
		-webkit-box-shadow: none;
		box-shadow: none;
		border-color: #c5bd9e;
	}

.selectize-control.multi .selectize-input > div {
	cursor: pointer;
	margin: -5px 3px 3px 0;
	padding: 6px 10px;
	color: #ffffff;
	background: #c5bd9e;
}





/*------------------------------------*\
 		@syncfusion slider overrides
\*------------------------------------*/

.sfslidercontainer {
	width: 100%;
	position: relative;
	height: 30px;
	background-color: transparent;
	margin: 50px auto;
	top: -20px;
}

.sfslider.e-slider.e-widget {
	height: 25px;
}


.sfslider.e-tooltip {
	background: none repeat scroll 0 0 violet;
	border-color: black;
	color: white;
}

.sfslider.e-slider .e-handle.e-select {
	background-color: transparent;
	border-color: transparent;
}

.sfslider.e-slider .e-handle.e-hover {
	background-color: transparent;
	border-color: transparent;
}

.sfslider.e-slider .e-handle.e-focus {
}

.sfslider.e-slider .e-range {
	background: none repeat scroll 0 0 #c5bd9e;
	/* Old browsers */
}

.sfslider.e-scale .e-tick {
	/*background-image: url(images/dot.png);*/
}




.businesshourtable tr {
	height: 130px;
}


.spanWrkHrs {
	display: inline-block;
	width: 35px;
}



/*------------------------------------*\
 		@media style
\*------------------------------------*/


.selectize-dropdown, .selectize-dropdown.form-control {
	height: auto !important;
}

.selectize-control.form-control.multi {
	height: auto;
}

.selectize-input.items.not-full.has-options.has-items .item {
	margin-top: 1px;
}

.ItemTypeLabel {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 15px;
}

.breadcrumbLink {
	color: #938667 !important;
	cursor: pointer !important;
}

.submenu {
	margin-left: 28px;
}

/*
.capitalize {
	text-transform: capitalize;
}
	*/

.adminordertable.table tr td:nth-child(1) {
	width: 80%;
}

.adminordertable.table tr td:nth-child(2) {
	width: 10%;
}

.adminordertable.table tr td:nth-child(3) {
	width: 10%;
}



.list-body .search-box {
	background: #e5e0c4;
	padding: 15px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

.search-input {
	flex: 1;
	margin-left: 10px;
	margin-right: 10px;
	height: 38px;
	border-radius: 4px;
	border: 1px solid #ccc;
	padding: 0 10px;
}

.dropdown-container {
	display: flex;
	align-items: center;
}

.dropdown-container label {
	margin-right: 5px;
	align-self: center;
}

.dropdown-container select {
	height: 38px;
	border-radius: 4px;
	border: 1px solid #ccc;
}

.search-icon {
	position: absolute;
	left: 24px;
	top: 20px;
	margin: 9px 0px 0px 9px;
}

.childRestaurant {
	margin-left: 15px;
}

.restaurantLast {
	min-width: 100px;
}

.orders-details-body {
	padding: 30px 0px;
}

.order-details-top {
}

	.order-details-top img {
		display: inline-block;
		max-width: 13px;
		width: 100%;
	}

.order-top-left,
.order-top-right {
	width: 50%;
	position: relative;
	padding: 11px 20px;
	font-size: 16px;
	font-weight: 700;
}

.order-top-left {
	background: #C5BD9E;
	color: #fff;
}

	.order-top-left:before {
		position: absolute;
		content: "";
		top: 0;
		right: -18px;
		width: 0;
		height: 0;
		border-top: 22px solid #f000;
		border-bottom: 22px solid #ff00;
		border-left: 18px solid #C5BD9E;
		z-index: 1;
	}

.order-top-right {
	background: #E5E0C4;
	color: #938667;
}

.orders-details-content {
	border: 1px solid #C5BD9E;
	border-top: none;
}

.orders-details-head {
	border-bottom: 1px solid #C5BD9E;
}

.order-head-left {
	padding: 30px 20px;
	width: 26%;
}

.order-item {
	padding-left: 5px;
	margin-bottom: 20px;
	border-left: 1px solid #938667;
}

	.order-item h4 {
		color: #938667;
		font-weight: 700;
		font-family: "arial";
		font-size: 14px;
	}

	.order-item p {
		color: #938667;
		font-weight: 400;
		font-family: "arial";
		font-size: 14px;
	}

.order-head-left .btn {
	margin-top: 50px;
}

	.order-head-left .btn img {
		display: inline-block;
	}

.order-head-right {
	width: 74%;
	border-left: 1px solid #C5BD9E;
}

.order-head-right-top {
	padding: 25px 50px 0;
	border-bottom: 1px solid #C5BD9E;
}

.order-head-right-bottom {
	padding: 30px 50px;
}

	.order-head-right-bottom .order-title,
	.orders-item-body .order-title,
	.order-head-right-bottom .order-summary-title {
		color: #938667;
	}

	.order-head-right-bottom .note {
		color: #938667;
		padding: 15px 30px;
		background: #E5E0C4;
		font-size: 12px;
		margin-bottom: 20px;
	}

	.order-head-right-bottom .order-summary-table {
		background: #E5E0C4;
		margin: 0;
	}

		.order-head-right-bottom .order-summary-table tr {
		}

			.order-head-right-bottom .order-summary-table tr td {
				border: none;
				padding: 10px 20px;
				color: #938667;
				vertical-align: middle;
			}

				.order-head-right-bottom .order-summary-table tr td:last-child {
					text-align: right;
				}


			.order-head-right-bottom .order-summary-table tr:last-child td {
				background: #C5BD9E;
				color: #fff;
				font-weight: 700;
			}

.orders-item-body {
	padding: 50px 20px 30px;
}

.order-item-btn {
	margin-top: -18px;
}

	.order-item-btn .btn {
		min-width: 40px;
		height: 30px;
		padding: 0;
	}

		.order-item-btn .btn img {
			display: inline-block;
			margin: -5px 0 0;
		}

		.order-item-btn .btn.btn-edit {
			min-width: 30px;
		}

			.order-item-btn .btn.btn-edit img {
				max-width: 12px;
			}

.orders-item-body .order-item-table {
	margin: 0;
}

	.orders-item-body .order-item-table tr td {
		border: none;
		vertical-align: middle;
		color: #938667;
		padding: 10px 25px;
	}

		.orders-item-body .order-item-table tr td:last-child {
			text-align: right;
		}

	.orders-item-body .order-item-table tr:nth-child(odd) {
		background: rgba(229,224,196,0.5);
	}

	.orders-item-body .order-item-table tr:nth-child(even) {
		background: rgba(229,224,196,0.2);
	}






/*             All Media     */








@media (min-width: 768px) and (max-width: 991px) {
	.orders-details-body {
		padding: 30px 25px;
	}
}
/* End of @media (min-width: 768px) and (max-width: 991px) */


@media (max-width: 767px) {

	.orders-details-body {
		padding: 30px 0;
	}

	.order-top-left,
	.order-top-right {
		width: 100%;
		text-align: left;
	}

	.order-head-left {
		width: 100%;
	}

	.order-head-right {
		width: 100%;
		border-top: 1px solid #C5BD9E;
		border-left: none;
	}

	.order-head-right-top,
	.order-head-right-bottom {
		padding: 30px 20px;
	}
}

/* End of @media (max-width: 767px) */









/*The additional part Rony sent over slack on 4/21*/



.orders-item-body .order-item-table tr td {
	font-size: 14px;
}

	.orders-item-body .order-item-table tr td p b {
		font-weight: 700;
		font-size: 14px;
	}

	.orders-item-body .order-item-table tr td p {
		font-size: 12px;
	}








@media (max-width: 1166px) {
	.orders-details-body,
	.order-head-right-bottom {
		padding: 30px 25px;
	}
}
/* End of  and (max-width: 1366px) */





@media (min-width: 768px) and (max-width: 991px) {


	.order-top-left,
	.order-top-right {
		padding: 13px 20px;
		font-size: 13px;
	}

	.order-head-left {
		padding: 30px 10px;
		width: 32%;
	}

	.order-head-right {
		width: 68%;
	}

	.order-head-right-top {
		padding: 25px 15px 0;
	}

	.orders-details-body,
	.order-head-right-bottom {
		padding: 30px 15px;
	}

		.order-head-right-bottom .note {
			padding: 15px 10px;
		}

		.order-head-right-bottom .order-summary-table tr td {
			padding: 8px;
			font-size: 12px;
		}
}

/* End of @media (min-width: 768px) and (max-width: 991px) */

.xdsoft_datetimepicker{box-shadow:0 5px 15px -5px rgba(0,0,0,0.506);background:#fff;border-bottom:1px solid #bbb;border-left:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;color:#333;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;padding:8px;padding-left:0;padding-top:2px;position:absolute;z-index:9999;-moz-box-sizing:border-box;box-sizing:border-box;display:none}.xdsoft_datetimepicker.xdsoft_rtl{padding:8px 0 8px 8px}.xdsoft_datetimepicker iframe{position:absolute;left:0;top:0;width:75px;height:210px;background:transparent;border:0}.xdsoft_datetimepicker button{border:none !important}.xdsoft_noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.xdsoft_noselect::selection{background:transparent}.xdsoft_noselect::-moz-selection{background:transparent}.xdsoft_datetimepicker.xdsoft_inline{display:inline-block;position:static;box-shadow:none}.xdsoft_datetimepicker *{-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin:0}.xdsoft_datetimepicker .xdsoft_datepicker,.xdsoft_datetimepicker .xdsoft_timepicker{display:none}.xdsoft_datetimepicker .xdsoft_datepicker.active,.xdsoft_datetimepicker .xdsoft_timepicker.active{display:block}.xdsoft_datetimepicker .xdsoft_datepicker{width:224px;float:left;margin-left:8px}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker{float:right;margin-right:8px;margin-left:0}.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker{width:256px}.xdsoft_datetimepicker .xdsoft_timepicker{width:58px;float:left;text-align:center;margin-left:8px;margin-top:0}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker{float:right;margin-right:8px;margin-left:0}.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin-top:8px;margin-bottom:3px}.xdsoft_datetimepicker .xdsoft_monthpicker{position:relative;text-align:center}.xdsoft_datetimepicker .xdsoft_label i,.xdsoft_datetimepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_next,.xdsoft_datetimepicker .xdsoft_today_button{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC)}.xdsoft_datetimepicker .xdsoft_label i{opacity:.5;background-position:-92px -19px;display:inline-block;width:9px;height:20px;vertical-align:middle}.xdsoft_datetimepicker .xdsoft_prev{float:left;background-position:-20px 0}.xdsoft_datetimepicker .xdsoft_today_button{float:left;background-position:-70px 0;margin-left:5px}.xdsoft_datetimepicker .xdsoft_next{float:right;background-position:0 0}.xdsoft_datetimepicker .xdsoft_next,.xdsoft_datetimepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_today_button{background-color:transparent;background-repeat:no-repeat;border:0 none;cursor:pointer;display:block;height:30px;opacity:.5;-ms-filter:"alpha(opacity=50)";outline:medium none;overflow:hidden;padding:0;position:relative;text-indent:100%;white-space:nowrap;width:20px;min-width:0}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{float:none;background-position:-40px -15px;height:15px;width:30px;display:block;margin-left:14px;margin-top:7px}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev,.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next{float:none;margin-left:0;margin-right:14px}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev{background-position:-40px 0;margin-bottom:7px;margin-top:0}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{height:151px;overflow:hidden;border-bottom:1px solid #ddd}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div{background:#f5f5f5;border-top:1px solid #ddd;color:#666;font-size:12px;text-align:center;border-collapse:collapse;cursor:pointer;border-bottom-width:0;height:25px;line-height:25px}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:first-child{border-top-width:0}.xdsoft_datetimepicker .xdsoft_today_button:hover,.xdsoft_datetimepicker .xdsoft_next:hover,.xdsoft_datetimepicker .xdsoft_prev:hover{opacity:1;-ms-filter:"alpha(opacity=100)"}.xdsoft_datetimepicker .xdsoft_label{display:inline;position:relative;z-index:9999;margin:0;padding:5px 3px;font-size:14px;line-height:20px;font-weight:bold;background-color:#fff;float:left;width:182px;text-align:center;cursor:pointer}.xdsoft_datetimepicker .xdsoft_label:hover>span{text-decoration:underline}.xdsoft_datetimepicker .xdsoft_label:hover i{opacity:1.0}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select{border:1px solid #ccc;position:absolute;right:0;top:30px;z-index:101;display:none;background:#fff;max-height:160px;overflow-y:hidden}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_monthselect{right:-7px}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_yearselect{right:2px}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover{color:#fff;background:#ff8000}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option{padding:2px 10px 2px 5px;text-decoration:none !important}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current{background:#3af;box-shadow:#178fe5 0 1px 3px 0 inset;color:#fff;font-weight:700}.xdsoft_datetimepicker .xdsoft_month{width:100px;text-align:right}.xdsoft_datetimepicker .xdsoft_calendar{clear:both}.xdsoft_datetimepicker .xdsoft_year{width:48px;margin-left:5px}.xdsoft_datetimepicker .xdsoft_calendar table{border-collapse:collapse;width:100%}.xdsoft_datetimepicker .xdsoft_calendar td>div{padding-right:5px}.xdsoft_datetimepicker .xdsoft_calendar th{height:25px}.xdsoft_datetimepicker .xdsoft_calendar td,.xdsoft_datetimepicker .xdsoft_calendar th{width:14.2857142%;background:#f5f5f5;border:1px solid #ddd;color:#666;font-size:12px;text-align:right;vertical-align:middle;padding:0;border-collapse:collapse;cursor:pointer;height:25px}.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th{width:12.5%}.xdsoft_datetimepicker .xdsoft_calendar th{background:#f1f1f1}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today{color:#3af}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default{background:#ffe9d2;box-shadow:#ffb871 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint{background:#c1ffc9;box-shadow:#00dd1c 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current{background:#3af;box-shadow:#178fe5 0 1px 3px 0 inset;color:#fff;font-weight:700}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,.xdsoft_datetimepicker .xdsoft_time_box>div>div.xdsoft_disabled{opacity:.5;-ms-filter:"alpha(opacity=50)";cursor:default}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled{opacity:.2;-ms-filter:"alpha(opacity=20)"}.xdsoft_datetimepicker .xdsoft_calendar td:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover{color:#fff !important;background:#ff8000 !important;box-shadow:none !important}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current.xdsoft_disabled:hover{background:#3af !important;box-shadow:#178fe5 0 1px 3px 0 inset !important;color:#fff !important}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_disabled:hover{color:inherit !important;background:inherit !important;box-shadow:inherit !important}.xdsoft_datetimepicker .xdsoft_calendar th{font-weight:700;text-align:center;color:#999;cursor:default}.xdsoft_datetimepicker .xdsoft_copyright{color:#ccc !important;font-size:10px;clear:both;float:none;margin-left:8px}.xdsoft_datetimepicker .xdsoft_copyright a{color:#eee !important}.xdsoft_datetimepicker .xdsoft_copyright a:hover{color:#aaa !important}.xdsoft_time_box{position:relative;border:1px solid #ccc}.xdsoft_scrollbar>.xdsoft_scroller{background:#ccc !important;height:20px;border-radius:3px}.xdsoft_scrollbar{position:absolute;width:7px;right:0;top:0;bottom:0;cursor:pointer}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar{left:0;right:auto}.xdsoft_scroller_box{position:relative}.xdsoft_datetimepicker.xdsoft_dark{box-shadow:0 5px 15px -5px rgba(255,255,255,0.506);background:#000;border-bottom:1px solid #444;border-left:1px solid #333;border-right:1px solid #333;border-top:1px solid #333;color:#ccc}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box{border-bottom:1px solid #222}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div{background:#0a0a0a;border-top:1px solid #222;color:#999}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label{background-color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select{border:1px solid #333;background:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover{color:#000;background:#007fff}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current{background:#c50;box-shadow:#b03e00 0 1px 3px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==)}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{background:#0a0a0a;border:1px solid #222;color:#999}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{background:#0e0e0e}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today{color:#c50}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default{background:#ffe9d2;box-shadow:#ffb871 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint{background:#c1ffc9;box-shadow:#00dd1c 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current{background:#c50;box-shadow:#b03e00 0 1px 3px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div:hover{color:#000 !important;background:#007fff !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{color:#666}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright{color:#333 !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a{color:#111 !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover{color:#555 !important}.xdsoft_dark .xdsoft_time_box{border:1px solid #333}.xdsoft_dark .xdsoft_scrollbar>.xdsoft_scroller{background:#333 !important}.xdsoft_datetimepicker .xdsoft_save_selected{display:block;border:1px solid #ddd !important;margin-top:5px;width:100%;color:#454551;font-size:13px}.xdsoft_datetimepicker .blue-gradient-button{font-family:"museo-sans","Book Antiqua",sans-serif;font-size:12px;font-weight:300;color:#82878c;height:28px;position:relative;padding:4px 17px 4px 33px;border:1px solid #d7d8da;background:-moz-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(73%,#f4f8fa));background:-webkit-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-o-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-ms-linear-gradient(top,#fff 0,#f4f8fa 73%);background:linear-gradient(to bottom,#fff 0,#f4f8fa 73%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff',endColorstr='#f4f8fa',GradientType=0)}.xdsoft_datetimepicker .blue-gradient-button:hover,.xdsoft_datetimepicker .blue-gradient-button:focus,.xdsoft_datetimepicker .blue-gradient-button:hover span,.xdsoft_datetimepicker .blue-gradient-button:focus span{color:#454551;background:-moz-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f4f8fa),color-stop(73%,#FFF));background:-webkit-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-o-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-ms-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:linear-gradient(to bottom,#f4f8fa 0,#FFF 73%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f8fa',endColorstr='#FFF',GradientType=0)}

