body {
	background-color: rgba(238, 240, 244, .34) !important;
	padding-top: 60px;
	padding-left: 35px;
	padding-right: 35px;
	font-family: "Work Sans", sans-serif, "Helvetica Neue", Helvetica !important;
	letter-spacing: -0.01em;
}

/* Loader */

@-webkit-keyframes anim_11507647321202 {
	0% {
		transform: scaleY(1);
	}

	50% {
		transform: scaleY(0.4);
	}

	100% {
		transform: scaleY(1);
	}
}

@-moz-keyframes anim_11507647321202 {
	0% {
		transform: scaleY(1);
	}

	50% {
		transform: scaleY(0.4);
	}

	100% {
		transform: scaleY(1);
	}
}

@-o-keyframes anim_11507647321202 {
	0% {
		transform: scaleY(1);
	}

	50% {
		transform: scaleY(0.4);
	}

	100% {
		transform: scaleY(1);
	}
}

@keyframes anim_11507647321202 {
	0% {
		transform: scaleY(1);
	}

	50% {
		transform: scaleY(0.4);
	}

	100% {
		transform: scaleY(1);
	}
}

.scaleLoader-container {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	/* margin: 6px 0px; */
}

.scaleLoader-container>.ScaleLoader {
	margin: 0 auto;
}

/* End of Loader */

a.navbar-brand {
	color: #585858 !important;
	margin-left: 0 !important;
}

a.navbar-brand:last-child {
	border-right: none;
}

.navbar-brand:focus,
.navbar-brand:hover {
	color: #202020 !important;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
	background-color: white !important;
	color: #585858 !important;
}

.navbar-right .dropdown-menu {
	left: auto !important;
	color: #676767 !important;
	font-size: 14px !important;
	font-weight: 400;
	margin-left: 0;
	opacity: 1;
	font-family: "Work Sans", sans-serif !important;
	/* multi step form */
}

/* .navbar-right .dropdown-menu.maps,
.navbar-right .dropdown-menu.tools {
  right: 0px !important;
} */
.dropdown-menu.analytics {
	right: -55px !important;
	/* Appear Right */
}

.dropdown-menu.maps {
	right: -44px !important;
	/* Appear Right */
}

.dropdown-menu.tools {
	right: -84px !important;
	/* Appear Right */
}

.dashboard-filter-row label {
	top: -1px;
}

.unmappedPromos-main .dataTables_scrollBody {
	overflow: visible !important;
}

.maps-quarterly-sub-drop a,
.maps-weekly-sub-drop .weekly-a {
	font-size: 12px !important;
}

.maps-weekly-sub-drop .weekly-a-sub {
	font-size: 10px !important;
}

/*custom font*/

@import url(http://fonts.googleapis.com/css?family=Montserrat);

#msform {
	/*width: 400px;*/
	margin: 50px auto 20px;
	text-align: center;
	position: relative;
}

#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;

	box-sizing: border-box;
	/*width: 85%;*/
	width: 100%;
	/*margin: 0 10%;*/
	/*stacking fieldsets above each other*/
	/*position: absolute;*/
}




/*Hide all except first fieldset*/

#msform fieldset:not(:first-of-type) {
	display: none;
}




/*inputs*/

#msform input,
#msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}




/*buttons*/

#msform .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}

#msform .action-button:hover,
#msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}




/*headings*/

.fs-title {
	font-size: 20px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}

.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}




/*progressbar*/

#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}

#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
}

#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: #dddddd;
	border-radius: 3px;
	margin: 0 auto 5px auto;
	z-index: 1;
}




/*progressbar connectors*/

#progressbar li:after {
	content: '';
	width: 95%;
	height: 2px;
	background: white;
	position: absolute;
	left: -48%;
	top: 9px;
	z-index: -1;
	/*put it behind the numbers*/
}

#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none;
}




/*marking active/completed steps green*/


/*The number of the step and the connector before it = green*/

#progressbar li.active:before,
#progressbar li.active:after {
	background: #27AE60;
	color: white;
	z-index: 2;
}

.panel.panel-default.create {
	/*min-height:1400px;*/
	position: relative;
	height: auto;
}

#msform .create-checkbox {
	text-align: left;
	margin-left: 30px;
}

#msform .create-checkbox label {
	width: 100%;
}

#msform .create-checkbox input[type="checkbox"] {
	float: left;
	width: 10px;
	height: 10px;
	margin-right: 10px;
}

#msform .create-checkbox div {
	width: 80%;
	float: left;
	font-weight: normal;
}

#msform .table input[type="text"] {
	height: auto;
	padding: 10px;
	font-size: 14px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a.btn.mrg {
	margin-right: 20px;
}

form table.create-plan>thead tr th,
tbody tr td {
	/*padding:3px !important; */
}

form table.create-plan thead tr th {
	text-align: center;
}

form table.create-plan tbody tr td input {
	height: auto;
	padding: 6px 0;
	text-align: center;
}

table.create-plan tbody tr td {
	text-align: center;
}

form table.create-plan tbody tr td input {
	width: 50px;
	margin: 0 auto;
}

table.promo-detail thead tr th {
	text-align: center;
}

table.promo-detail tbody tr td {
	text-align: center;
}

.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
}

.panel table.promo-detail {
	border-bottom: 1px solid #cccccc;
	margin-bottom: 40px;
}

.panel table.promo-detail:nth-of-type(n+2) {
	border-top: 1px solid #cccccc;
}

.panel-title.hd-left {
	width: 90%;
	float: left;
}

.mb0 {
	margin-bottom: 0;
}

#msform input.crt-schd {
	padding: 0 10px;
}

#msform span.vrt-mng {
	vertical-align: top;
}

.lb-left label.control-label {
	text-align: left;
	padding-bottom: 15px;
}

.ft12 label {
	font-size: 12px;
}

table.create-plan tbody tr td.center {
	text-align: center;
}

table.create-plan thead tr th.center {
	text-align: center;
}

table.promo-detail tbody tr td input.form-control {
	text-align: center;
}

table.weekly-note {
	background: #cccccc;
	border: 1px solid #dddddd;
	width: 25%;
}

table.weekly-note tbody tr td {
	border: none;
}

table.promo-detail tbody tr th:nth-of-type(n+2) {
	text-align: center;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

.mb30 {
	margin-bottom: 30px;
}

.modal-dialog {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -300px;
	margin-top: -200px;
}




/* login */

.login-wrap {
	border: 1px solid #cccccc;
	border-radius: 5px;
	-moz-box-shadow: 0px 0px 20px 10px #cccccc;
	-webkit-box-shadow: 0px 0px 20px 10px #cccccc;
	-o-box-shadow: 0px 0px 20px 10px #cccccc;
	-ms-box-shadow: 0px 0px 20px 10px #cccccc;
	box-shadow: 0px 0px 20px 10px #cccccc;
	width: 45%;
	padding: 30px 10px 10px;
	position: absolute;
	left: 50%;
	top: 30%;
	margin-left: -20%;
}

.login-wrap h4 {
	padding-bottom: 10px;
	margin-bottom: 20px;
	color: #333333;
	text-align: center;
	text-transform: uppercase;
	margin-top: 0;
}

a.simple-link {
	line-height: 33px;
}

.caret-up {
	width: 0;
	height: 0;
	border-left: 4px solid rgba(0, 0, 0, 0);
	border-right: 4px solid rgba(0, 0, 0, 0);
	border-bottom: 4px solid;
	display: inline-block;
	margin-left: 2px;
	vertical-align: middle;
}

#table tbody tr.selected-row {
	background: #b4e7ff;
}

li.mng-sp {
	padding: 10px;
}

a.mr20 {
	margin-right: 20px;
}

.signup {
	text-decoration: underline;
	font-weight: bold;
}

.lht {
	line-height: 35px;
}

.lht label {
	font-weight: normal;
}

.a-mt10 {
	margin-top: 10px;
	cursor: pointer;
}

.a-mt10:hover {
	text-decoration: none;
}

.dropdown-submenu {
	position: relative;
	color: #676767 !important;
	font-size: 14px !important;
	font-weight: 400;
	margin-left: 0;
	opacity: 1;
	font-family: "Work Sans", sans-serif !important;
}

.submenu-list-unlock {
	color: #676767 !important;
	font-size: 14px !important;
	font-weight: 400;
	width: 134px;
	font-family: "Work Sans", sans-serif !important;
}

.submenu-list,
.submenu-a {
	color: #676767 !important;
	font-size: 14px !important;
	font-weight: 400;
	font-family: "Work Sans", sans-serif !important;
}

.map-list {
	width: 147px;
}

.dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	-webkit-border-radius: 0 6px 6px 6px;
	-moz-border-radius: 0 6px 6px;
	border-radius: 0 6px 6px 6px;
	visibility: hidden;
}

.dropdown-submenu:hover>.dropdown-menu {
	display: block;
	visibility: visible;
}

.dropdown-submenu>a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: #ccc;
	margin-top: 5px;
	margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
	border-left-color: #fff;
}

.dropdown-submenu.pull-left {
	float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}

input[value="04/10/2015"] {
	width: 55%;
	text-align: center;
}

.submenu-height {
	margin-top: -2%;
	margin-bottom: -0%;
}

.dropdown-select {
	width: 90%;
	margin: 1% 0 1.5% 5%;
}

#gobtn {
	float: right;
	margin-top: 1%;
	height: 30px;
	text-align: center;
}

#datepicker1 {
	margin-top: 2%;
}

li.dropdown-submenu>ul.dropdown-menu {
	width: 144%;
}

#datepicker1>div>div {
	/* display: block !important; */
}

[data-date="datepicker1.getDate()"]>.datepicker.datepicker-inline {
	/* color:blue; */
	display: block !important;
}

div.datepicker-days div.datepicker.datepicker-inline {
	display: none !important;
}

h1#logo {
	margin-top: -5px;
	margin-bottom: -1px;
}

:focus {
	outline: none !important;
}

::-moz-focus-inner {
	border: 0 !important;
}

::-ms-focus-inner {
	border: 0 !important;
}

::-webkit-focus-inner {
	border: 0 !important;
}

::-o-focus-inner {
	border: 0 !important;
}

tr.launch {
	background-color: #7EC0EE !important;
}

a.dt-button.buttons-flash {
	border: 1px solid #dadadc !important;
}

.btn {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	margin-top: 0px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border-radius: 4px;
}

a.btn.btn-primary-create {
	border: 1px solid transparent !important;
}

.btn-rch {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	margin-top: 0px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: left;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	width: 85px;
}

.btn-primary {
	color: #fff;
	background-color: rgba(1, 163, 242, 1);
	border-color: transparent;
}

.btn-default {
	color: #333;
	background-color: #fff;
	border-color: #ccc;
}

.btn:hover {
	color: #fff !important;
	background-color: #34baff !important;
	border: 1px solid transparent !important;
}

.btn-success:focus {
	border: 1px solid transparent !important;
}

.btn-primary-create {
	color: #fff;
	background-color: #01a3f2 !important;
	border-color: #2e6da4;
}

.dropdown-menu {
	margin-top: 0px !important;
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border-top-right-radius: 3px;
}

.btn-group>.btn:first-child {
	border-color: rgba(179, 179, 179, 0.42);
	border-bottom-left-radius: 3px !important;
	border-top-left-radius: 3px !important;
	border-bottom-right-radius: 3px !important;
	border-top-right-radius: 3px !important;
}

.err-message {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: center;
	color: red;
}

table.campaign-reach>tbody tr td {
	border: 1px solid #cccccc;
	text-align: center;
}

.table-responsive {
	overflow-x: inherit;
}

table.dataTable thead th,
table.dataTable thead td {
	border-bottom-color: #c5c8ca !important;
}

table.dataTable.no-footer {
	border-bottom: 1px solid #c5c8ca !important;
}

.navbar>.container .navbar-brand .active>a:active {
	color: #20B3FF;
	background-color: transparent;
}

.navbar>.container .navbar-brand,
.navbar>.container-fluid .navbar-brand {
	/*color: #676767 !important;*/
	font-size: 14px !important;
	font-weight: 400 !important;
	margin-left: 0;
	opacity: 1;
	font-family: "Work Sans", sans-serif !important;
}

.navbar>.container .navbar-brand:hover,
.navbar>.container-fluid .navbar-brand:hover,
.navbar>.container-fluid .navbar-brand:active {
	color: rgba(32, 32, 32, 1) !important;
}

.navbar-brand {
	/* padding: 15px 10px; */
}

table.tablesaw tbody tr td {
	font-family: "trebuchet MS", "Lucida sans", Arial;
	font-size: 14px;
	padding-left: 10px !important;
	vertical-align: middle;
}

.mr10 {
	margin-right: 10px;
}

.tablesaw-advance.minimap {
	visibility: hidden;
}

.panel-heading .tab-nav a {
	font-size: 32px;
}

.tablesaw thead tr th {
	font-size: 12px;
	text-transform: inherit;
}

.chl-title {
	padding-left: 45px;
}

.cust-graph {
	position: relative;
	padding: 0;
	left: -80px;
}

.fade-layer {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 999999;
	background: #cccccc;
	left: 0;
	top: 0;
	opacity: .5;
	text-align: center;
}

.loading-image {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
}

.loading-image img {
	width: 80px;
	height: auto;
}

.loading-image p {
	color: #0053ba;
	font-weight: bold;
	margin-top: 10px;
	font-size: 18px;
}

.datepicker-inline {
	background: #ffffff;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
	background: none;
}

ul.typeahead-selector {
	border: 1px solid #cccccc;
	height: 200px;
	list-style: inside none none;
	overflow-y: scroll;
	padding-left: 0;
}

.typeahead-selector>li {

	margin: 2px 0;
	padding: 5px 10px;
}

.typeahead-token-close {
	float: right;
	font-size: 20px;
}

.typeahead-token {
	clear: both;
	padding: 5px 5px 10px;
}

.typeahead-token:nth-of-type(2n+1) {
	background: #f5f5f5 none repeat scroll 0 0;
}

.typeahead-token>span {
	vertical-align: middle;
}

.typeahead>input {
	margin-top: 20px;
}

.dropdown-menu>.active>a {
	background-color: #0081c2;
}

.mn-ht {
	min-height: 200px;
}

.mn-ht220 {
	min-height: 220px;
}

.modal-body .form-control {
	padding: 0;
	text-align: center;
}

.modal-body .form-horizontal .form-group {
	margin-left: auto;
}

.rec-input {
	padding: 5px;
	clear: both;
	margin-bottom: 5px;
	position: relative;
}

.rec-input:nth-of-type(2n+1) {
	background: #f5f5f5;
}

.typeahead-token-close.cust {
	position: absolute;
	right: 1%;
	top: 0;
}

.typeahead-token-close.cust:hover {
	text-decoration: none;
}

.pd-no {
	padding-left: 0;
	padding-right: 30px;
}

.pd-no+.add {
	position: relative;
}

.pd-no+.add a {
	cursor: pointer;
	position: absolute;
	top: 8px;
	right: 0;
}

.pd-no+.add a:hover {
	text-decoration: none;
}

.btn-group.pull-left.ml10 {
	margin-left: 10px;
}

input[type=checkbox],
input[type=radio] {
	vertical-align: middle;
}

.lht-2 {
	line-height: 40px;
}

.lht-3 {
	line-height: 50px;
}

.ml80 {
	margin-left: 80px;
}

#example_length select.form-control {
	width: 70px;
}

.plan .form-control {
	display: inline;
	width: auto;
}

.plans-status .row {
	padding: 2px 0;
}

.plans-status .pend {
	color: red;
}

.plans-status .compt {
	color: green;
}

input[type="cancel"] {
	width: 85px;
}

iframe {
	border: none;
}

th.fmt-txt a {
	font-size: 14px;
	font-weight: normal;
}

.glyphicon.glyphicon-chevron-down.pull-right {
	font-size: 12px;
}




/*.dataTables_wrapper {
    overflow: auto;
    overflow-x:scroll;
    }*/

.glyphicon.glyphicon-chevron-up.pull-right {
	font-size: 12px;
}

#checkbox1 {
	margin-top: 0;
}

@font-face {
	font-family: "Glyphicons Halflings";
	src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}

label.txtlt {
	text-align: left !important;
}

.checkbox input.movt {
	margin-top: 0;
}

.form-horizontal .checkbox {
	padding-top: 5px;
}

panel[header="Flighting1"] {
	font-weight: bold;
}

table tr[class^="disabled"] td div {
	visibility: hidden;
}

table tbody tr[class^="disabled"] td {
	vertical-align: middle;
}

table tr[class^="disabled"] td input[type="checkbox"] {
	margin-top: 0 !important;
}

table tr[class^="disabled"] td input {
	margin-bottom: 0 !important;
}

fieldset .table tbody tr td {
	vertical-align: middle !important;
}

fieldset .table tr td input[type="checkbox"] {
	margin-top: 0 !important;
}

fieldset .table tr td input {
	margin-bottom: 0 !important;
}

fieldset .table tbody tr td input[type="checkbox"] {
	margin: 10px;
}

li.open {
	position: relative;
}

li.open>.dropdown-menu>.open .dropdown-menu {
	top: 0 !important;
}




/* responsive view */


/* screen less than 667px */

@media screen and (max-width: 667px) {
	.panel-body {
		padding: 0;
	}

	.panel-default {
		padding: 10px;
	}
}

.form-horizontal .has-feedback .form-control-feedback {
	right: 0;
}

.form-horizontal .checkbox {
	padding-top: auto;
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
	position: inherit;
}




/* screen less than 375px */

@media screen and (max-width: 375px) {
	.login-wrap {
		width: 80%;
		position: absolute;
		top: 20%;
		left: 30%;
		margin-left: -20%;
	}

	body {
		padding: 70px 10px 50px;
	}

	.table-responsive>.table>tbody>tr>td,
	.table-responsive>.table>tbody>tr>th,
	.table-responsive>.table>tfoot>tr>td,
	.table-responsive>.table>tfoot>tr>th,
	.table-responsive>.table>thead>tr>td,
	.table-responsive>.table>thead>tr>th {
		white-space: normal;
		word-wrap: break-word;
		padding: 0 !important;
	}

	.ms-selectable,
	.ms-selection {
		display: block;
		width: 45% !important;
		float: none !important;
		margin-bottom: 10px;
	}

	.containerDashboardClass {
		position: relative;
		padding: 0;
		left: 0%;
	}

	ul.extras.dropdown-menu {
		left: -185%;
	}

	.table-responsive {
		overflow-y: auto;
	}
}




/* screen less than 320px */

@media screen and (max-width: 320px) {
	.containerDashboardClass {
		position: relative;
		padding: 0;
		left: -15%;
	}
}




/* responsive style end */

.co-anly {
	background: #f6f6f6;
}

.mt20 {
	margin-top: 20px;
}

.mt35 {
	margin-top: 35px;
}

.block-flat {
	background: #ffffff;
	border-top: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
	border-left: 1px solid #e2e2e2;
	border-right: 1px solid #e2e2e2;
	border-radius: 3px;
	box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.04);
	padding: 20px;
	position: relative;
	margin-bottom: 0;
}

#vmn-cross-promos {
	padding-left: 25%;
}

table.dataTable tbody #subItm td:first-child a {
	color: #000000;
	font-size: 12px;
	padding-left: 10px;
	word-wrap: break-word;
}

.form.vw-qtr {
	overflow-x: scroll;
}

.form.vw-qtr .dataTables_wrapper {
	overflow-x: inherit;
}

table.dataTable tbody td.pend {
	color: blue;
}

table.dataTable tbody td.compt {
	color: green;
}

table.dataTable tbody td.started {
	color: orange;
}

table.dataTable tbody td.error {
	color: red;
}

table.table tbody td.red {
	color: red;
	text-align: center;
}

table.table tbody td.blue {
	color: #0FC0FC;
	text-align: center;
}

table.table tbody .center-item.bd {
	font-weight: bold;
}

a.cust-drop {
	color: rgba(255, 255, 255, 0.7) !important;
	font: 14px !important;
	margin-left: 0;
	background-color: white !important;
	font-family: "Work Sans", sans-serif !important;
}

.containerDashboardClass .highcharts-container {
	overflow: inherit !important;
}

.column-blk {
	width: 4%;
	background: #7cb5ec;
	height: 2%;
}

.column-blk-2 {
	width: 4%;
	background: #000000;
	height: 2%;
}

.spline-blk {
	width: 4%;
	background: #000000;
	height: 2%
}

.spline-blk-2 {
	width: 4%;
	background: #90ed7d;
	height: 2%
}

.highcharts-button {}

.mnt-sp {
	visibility: hidden;
}

.modal-body.default .form-control {
	text-align: left;
	padding: 0 10px;
}

.row.pro-title .bd {
	font-weight: bold;
}

.twitter-typeahead {
	width: 100%;
}




/* .project-graph-container .twitter-typeahead { */


/* width:80%; */


/* } */

.twitter-typeahead .tt-query,
.twitter-typeahead .tt-hint {
	margin-bottom: 0;
}

.tt-dropdown-menu {
	min-width: 160px;
	margin-top: 2px;
	padding: 5px 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, .2);
	*border-right-width: 2px;
	*border-bottom-width: 2px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	width: 100%;
}

.tt-suggestion {
	display: block;
	padding: 3px 20px;
}

.tt-suggestion.tt-is-under-cursor {
	color: #fff;
	background-color: #0081c2;
	background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
	background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
	background-image: -o-linear-gradient(top, #0088cc, #0077b3);
	background-image: linear-gradient(to bottom, #0088cc, #0077b3);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0)
}

.tt-suggestion.tt-is-under-cursor a {
	color: #fff;
}

.tt-suggestion p {
	margin: 0;
}

.mt15 {
	margin-top: 15px;
}

.mb15 {
	margin-bottom: 15px;
}

ul#sortable,
ul#sortable1 {
	margin: 0;
	padding: 0;
}

.cross-campaign-chart {
	width: 540px;
	height: 550px;
	margin: 0 auto;
	clear: both;
	position: relative;
	padding-left: 10px;
	margin-top: 70px;
}

.other-sister-nets,
.link-network-nets,
.network {
	width: 320px;
	height: 320px;
	border-radius: 100%;
	opacity: 0.5;
	padding: 1%;
	position: absolute;
}

.other-sister-nets {
	background-color: #1f77b4;
	z-index: 1;
}

.link-network-nets {
	background-color: #ff7f0e;
	z-index: 2;
	margin-left: 35%;
}

.network {
	background-color: #2ca02c;
	z-index: 3;
	margin-left: 18%;
	margin-top: 28%;
}

.cross-campaign-chart h4 {
	color: #ffffff;
	text-transform: uppercase;
	z-index: 4;
	font-weight: normal;
	text-align: center;
}

.cross-campaign-chart h4.other-info {
	position: absolute;
	top: 136px;
	left: 34px;
	font-size: 14px;
}

.cross-campaign-chart h4.network-nets-info {
	position: absolute;
	top: 131px;
	right: 42px;
	font-size: 14px;
}

.cross-campaign-chart h4.network-info {
	position: absolute;
	bottom: 155px;
	right: 258px;
	font-size: 14px;
}

.cross-campaign-chart h4.inter-section-1 {
	position: absolute;
	top: 94px;
	left: 257px;
	font-size: 14px;
}

.cross-campaign-chart h4.inter-section-2 {
	position: absolute;
	top: 196px;
	left: 258px;
	font-size: 14px;
}

.cross-campaign-chart h4.inter-section-3 {
	position: absolute;
	top: 245px;
	left: 167px;
	font-size: 14px;
}

.cross-campaign-chart h4.inter-section-4 {
	position: absolute;
	top: 240px;
	right: 177px;
	font-size: 14px;
}

.block-flat.intersect {
	padding: 0;
}

.listSortable {
	list-style-type: none;
}

.scrollToTop {
	width: 40px;
	height: 80px;
	padding: 10px;
	text-align: center;
	background: whiteSmoke;
	font-weight: bold;
	color: #444;
	text-decoration: none;
	position: fixed;
	bottom: 10px;
	right: 5px;
	display: none;
	background: url("../images/gototop.png") no-repeat 0px 20px;
}

.scrollToTop:hover {
	text-decoration: none;
}

.timeband-add {
	display: none;
}

table.table tbody .center-item.valign {
	vertical-align: inherit;
}

.dataTables_filter {
	float: left !important;
	text-align: left !important;
	margin-left: 0 !important;
}

#containerDashTitle-5400 {
	margin-top: 100px;
}

/*table.dataTable thead .sorting_asc {
  background: none;
}

table.dataTable thead .sorting_desc {
  background: none;
}*/

table.dataTable thead .sorting {
	background: none;
}

span.arrow-hack {
	margin-left: 5px;
}

span.asc {
	background: url("../images/sort_asc.png") no-repeat center right;
}

span.desc {
	background: url("../images/sort_desc.png") no-repeat center right;
}

span.sort {
	background: url("../images/sort_both.png") no-repeat center right;
}

a.my-tool-tip,
a.my-tool-tip:hover,
a.my-tool-tip:visited {
	color: black;
}

#ulProject ul {
	padding-left: 0;
}

#ulProject ul li {
	list-style: outside none none;
}

#ulProject ul li a {
	clear: both;
	color: #333;
	display: block;
	font-weight: 400;
	line-height: 1.42857;
	padding: 3px 20px 3px 30px;
	white-space: nowrap;
}

#ulProject ul li a:hover {
	background-color: #f5f5f5;
	color: #262626;
	text-decoration: none
}

.half-list {
	display: inline-block;
	padding: 5px 10px;
	vertical-align: middle;
	width: 24%;
}

.half-list li {
	display: inline-block;
	padding: 5px;
	vertical-align: middle;
	width: 48.5%;
	word-wrap: break-word;
}

.custom-label {
	font-weight: bold;
}

.promo_top_tab {
	background: #fff;
	border: 1px solid #ddd;
	margin: 30px 0;
}

.promo_top_tab>table {
	width: 100%;
}

.promo_top_tab th {
	background: #e6e6e6 none repeat scroll 0 0;
	padding: 5px;
	width: 25%;
}

.promo_top_tab td {
	padding: 5px;
}

#btnCancelad {
	margin-right: 5px;
}

.panel-heading.mb30.mrg-btm {
	margin-bottom: 0;
	display: inline-block;
	padding: 0 15px 5px;
}

.mt10 {
	margin-top: 10px;
}

.inl-div>div {
	display: inline-block;
	vertical-align: middle;
}

.custom-left-col {
	width: 29.5%;
}

.custom-right-col {
	width: 69.5%;
}

.inl-div .form-control {
	margin-bottom: 0;
}

.custom-right-col .btn-default {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 190px;
}

.custom-left-eq-col {
	width: 48.5%;
	display: inline-block;
	vertical-align: middle;
}

.custom-right-eq-col {
	width: 48.5%;
	display: inline-block;
	vertical-align: middle;
}

ul.inline-list li {
	display: inline-block;
	width: 29%;
	position: relative;
	vertical-align: top;
}

ul.inline-list li:first-child {
	width: 8%;
}

ul.inline-list li:nth-child(2) {
	width: 31%;
	text-align: center;
}

.form-horizontal .inline-label-col .radio-inline {
	padding-top: 0;
}

ul.inline-list .dropdown-menu li {
	display: block;
}

.bck-btn {
	position: absolute;
	right: 10px;
	top: 6px;
}

@media (min-width: 767px) and (max-width: 992px) {

	.half-list {
		display: inline-block;
		padding: 5px;
		vertical-align: middle;
		width: 49%;
	}

	ul.inline-list li {
		display: inline-block;
		width: 47%;
		margin-bottom: 10px;
	}

	ul.inline-list li:first-child {
		width: 40%;
	}

	ul.inline-list li:nth-child(2) {
		width: 55%;
		text-align: right;
	}
}

@media (max-width: 767px) {

	.mar-btm {
		margin: 10px 0;
	}

	.half-list {
		width: 100%;
	}

	.half-list li .custom-label {
		width: 35%;
	}

	.half-list li.custom-label-detail {
		width: 63%;
	}

	.promo_top_tab {
		margin: 10px;
	}

	ul.inline-list li {
		display: inline-block;
		width: 100%;
		margin-bottom: 10px;
	}

	ul.inline-list li:first-child {
		width: 30%;
	}

	ul.inline-list li:nth-child(2) {
		width: 65%;
		text-align: left;
	}
}

@media (max-width: 667px) {
	.promo_top_tab {
		margin: 10px 0;
	}

	ul.inline-list li:first-child {
		width: 100%;
	}

	ul.inline-list li:nth-child(2) {
		width: 100%;
	}
}

.myShowClass {
	display: table-row !important;
}

#ulProject span {
	background: #ccc;
	display: block;
	font-weight: bold;
	padding: 10px;
	font-size: 16px;
	line-height: normal;
	color: #fff;
}

#ulProject ul li:nth-child(2n) {
	background: #e4e4e4;
}

@media (min-width: 767px) and (max-width: 992px) {

	.half-list {
		display: inline-block;
		padding: 5px;
		vertical-align: middle;
		width: 49%;
	}
}

@media (max-width: 767px) {

	.mar-btm {
		margin: 10px 0;
	}

	.half-list {
		width: 100%;
	}

	.half-list li .custom-label {
		width: 35%;
	}

	.half-list li.custom-label-detail {
		width: 63%;
	}

	.promo_top_tab {
		margin: 10px;
	}

	.custom-right-eq-col,
	.custom-left-eq-col {
		width: 100%;
	}
}

@media (max-width: 667px) {
	.promo_top_tab {
		margin: 10px 0;
	}

	.custom-right-col .checkbox-inline+.checkbox-inline,
	.custom-right-col .radio-inline+.radio-inline {
		margin-left: 0;
	}
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
	height: auto !important;
}

table.dataTable.display tbody tr.odd>.sorting_1,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
	background-color: #fff !important;
}

table.dataTable.display tbody tr.even>.sorting_1,
table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
	background-color: #fff !important;
}

.advant-page img.brand {
	margin-top: 10px;
}

.separator {
	display: block;
}

.show-data {
	display: none;
}

#chart svg {
	height: 400px;
}

.blank_table {
	display: block;
	min-height: 250px;
}




/*.advant-page  .page-container {
    padding-left:0;
}*/

#myDataTable {
	border-top: 1px solid #ddd;
}

#myDataTable tr {
	display: table;
	table-layout: fixed;
	width: 100%;
	border: none !important;
}

#myDataTable thead {
	border-top: 1px solid #ddd;
}

#myDataTable thead tr th {
	border: none;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
}

#myDataTable tbody tr td:first-child,
#myDataTable thead tr th:first-child {
	border-left: none;
}

#myDataTable tbody tr td {
	border: none;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
}

#myDataTable tbody tr:last-child td {
	border-bottom: none;
}

.btn.details_btn,
.btn.summary_btn {
	margin-bottom: 10px;
}




/*--------- Login page ---------*/

.video-container {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.video-main {
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	width: auto;
}

#loopback {
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	width: auto;
}

.form-outer-container {
	bottom: 0;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	/*background: rgba(68, 74, 78, 0.85) url("../img/logo-bg.png") no-repeat scroll center 27% / 340px auto;*/
}

.form-inner-container {
	/* background: rgba(68, 74, 78, 0.85) url("/images/logo-bg.png") no-repeat scroll center 33px / 450px auto; */
	background: rgba(0, 0, 0, 1) url("/images/logo-bg-new.png") no-repeat scroll center 33px / 450px auto;
	padding: 130px 15px 20px;
}

.form-inner-container-mediamantra {
	background: rgba(0, 0, 0, 0) url("/images/media-mantra-logo.png") no-repeat scroll center 0 / 100% auto;
	padding: 130px 15px 99px;
}

.form-outer-container>.container {
	left: 50%;
	max-width: 650px;
	position: absolute;
	top: 51.5%;
	border-radius: 10px;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	width: 100%;
}

.form-wrapper {
	left: 50%;
	margin-left: -23px;
	max-width: 500px;
	position: relative;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

#form-login1 {
	background: #25272c;
	border-radius: 15px;
	padding: 30px 51px;
}

#form-login1 .form-group.form-group-default {
	background: transparent;
	margin-bottom: 0;
	border-bottom: 2px solid #444a4e;
}

#form-login1 .form-group.form-group-default:last-of-type {
	border-bottom: none;
}

#form-login1 .login-btn {
	background: #25272c;
	border: 14px solid #444a4e;
	border-radius: 50%;
	height: 110px;
	min-width: 0;
	position: absolute;
	right: -56px;
	text-indent: -99999px;
	top: 25px;
	width: 110px;
}

#form-login1 .login-btn:hover,
#form-login1 .login-btn:focus,
#form-login1 .login-btn:active {
	background: #25272c;
	border: 14px solid #444a4e;
}

#form-login1 .login-btn:after {
	content: "";
	border-top: 20px solid transparent;
	border-left: 30px solid transparent;
	border-bottom: 30px solid #b3b5b7;
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	margin-left: -15px;
	margin-top: -7px;
}

.video-container .form-control::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #b3b5b7;
	text-transform: uppercase;
	opacity: 1;
}

.video-container .form-control::-moz-placeholder {
	/* Firefox 19+ */
	color: #b3b5b7;
	text-transform: uppercase;
	opacity: 1;
}

.video-container .form-control:-ms-input-placeholder {
	/* IE 10+ */
	color: #b3b5b7;
	text-transform: uppercase;
	opacity: 1;
}

.video-container .form-control:-moz-placeholder {
	/* Firefox 18- */
	color: #b3b5b7;
	text-transform: uppercase;
	opacity: 1;
}

.video-container .form-group-default {
	padding: 16px 12px 10px;
}

.video-container .form-control,
.video-container .form-control:focus {
	font-size: 16px;
	font-weight: 600;
	color: #b3b5b7 !important;
}

.frgt-psd {
	color: #9b9da0;
	font-size: 16px;
	line-height: 40px;
	letter-spacing: 0.01em;
	font-family: inherit;
}

.frgt-psd a {
	color: #c6c8ca;
	font-size: 16px;
	line-height: 20px;
}

#mute-video {
	background: #fff url("/images/speaker.png") no-repeat scroll center center;
	border: none;
	height: 50px;
	text-indent: -9999px;
	width: 50px;
	right: 12px;
	bottom: 10px;
	position: absolute;
}

#mute-video.unmute {
	background: #fff url('/images/mute.png') no-repeat center center;
}

#form-login1 input {
	background: none;
	border: none;
}

#form-login1 input:focus {
	outline: none !important;
	box-shadow: none;
}

#form-login1 .form-group-default .form-control {
	min-height: 25px;
	height: 25px;
	padding: 0;
	margin-top: -4px;
}

#form-login1 .form-group-default .form-control {
	min-height: 25px;
	height: 25px;
	padding: 0;
	margin-top: -4px;
}




/*---------- 20/07/2016 --------------------*/

.pq-grid-top.ui-widget-header {
	background: #efefef;
	background: linear-gradient(#fff 0%, #ddd 100%);
	background: -webkit-linear-gradient(#fff 0%, #ddd 100%);
	background: -moz-linear-gradient(#fff 0%, #ddd 100%);
	background: -ms-linear-gradient(#fff 0%, #ddd 100%);
	background: -o-linear-gradient(#fff 0%, #ddd 100%);
}

.pq-grid-bottom.ui-widget-header {
	background: #fff;
}

@media (max-width: 992px) {

	.btn.details_btn,

	,
	.btn.summary_btn {
		margin: 5px 0;
	}

	.form-inner-container {
		background-size: 300px auto;
		background-position: center 48px;
	}
}

@media (max-width: 767px) {

	#scout_btn {
		margin-bottom: 10px;
	}

	.form-outer-container>.container {
		width: 80%;
		max-width: 100%;
	}

	#form-login1 {
		padding: 20px;
	}

	#form-login1 .login-btn {
		top: 21px;
		width: 90px;
		height: 90px;
	}

	.form-inner-container {
		background-size: 88% auto;
	}

	.form-wrapper {
		margin-left: -23px;
		max-width: 80%;
	}

	.form-inner-container {
		padding-top: 100px;
	}

	.frgt-psd,
	.frgt-psd a {
		font-size: 14px;
	}

	.form-inner-container {
		background-size: 250px auto;
		background-position: center 35px;
	}
}

#RSGlogo {
	display: none;
	position: absolute;
	bottom: 10%;
	left: 50%;
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (max-width: 479px) {

	.form-outer-container>.container {
		max-width: 320px;
		width: 100%;
	}
}

.pq-grid {
	font-size: 13px;
}

div.pq-grid tr td.readonly {
	/ / text-shadow: 0 1 px 0 #fff;
	/ / background: #ddd;
	color: darkgray;
}

tr td.beige {
	background: yellow;
}

* {
	font-size: 12px;
}

tr td.green {
	background: lightgreen;
}

tr td.yellow {
	background: #c9d8e8;
	font-weight: bold;
}

tr td.bold {

	font-weight: bold;
}

tr.bold td {

	font-weight: bold;
}

tr.red td {

	color: red;
}

tr td.LightPink {
	background: #b7cbe1;
	font-weight: bold;
}

tr td.LightSkyBlue {

	background: #93b1d2;
	font-weight: bold;
}

.top-heading-container {
	border: 1px solid #aaaaaa;
	margin-top: 20px;
	padding: 20px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.top-heading-container h4.modal-title {
	/*margin-top:4px;*/
}

.grid-container .grid_json.pq-grid.ui-widget.ui-widget-content.pq-disable-select {
	width: 100% !important;
	margin-top: 0 !important;
}

.grid-container {
	border: 1px solid #aaaaaa;
	padding: 10px;
	border-top: none;
}

.button-container {
	padding: 20px 0 10px;
}

label#zoomlabel {
	margin-top: 20px;
}

.grid_json.pq-grid.ui-widget.ui-widget-content.pq-disable-select {
	height: 550px;
}

.full-width-container {
	width: 100%;
	padding-left: 5px;
	padding-right: 5px;
}




/*----------- Styling Of Pop Up ---------------*/

.pop-up-container.container-fluid {
	display: none;
}

.pop-up-container.container-fluid {
	background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999999;
	overflow-x: hidden;
	overflow-y: auto;
}

.pop-up-inner-container {
	background: #fff none repeat scroll 0 0;
	border-radius: 5px;
	margin: 30px auto;
	max-width: 600px;
	padding: 20px 50px;
	position: relative;
}

.pop-up-header {
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
	text-align: center;
}

.pop-up-header h3 {
	margin-top: 10px;
}

.pop-up-footer {
	border-top: 1px solid #ccc;
	margin-top: 20px;
	padding-top: 10px;
	text-align: right;
}

.top-heading-container {
	background: #efefef;
}

body.pop-open {
	overflow: hidden;
}

.four-col {
	display: table;
	table-layout: fixed;
	width: 100%;
}

.four-col>div {
	/*display: inline-block;*/
	display: table-cell;
	width: 19%;
	vertical-align: middle;
}

.col-four input.form-control {
	width: auto;
	display: inline-block;
}

.four-col>div.col-four {
	width: 39%;
	text-align: right;
}

.four-col>div.col-four label.inline-cont {
	padding-right: 20px;
}

label.inline-cont {
	vertical-align: middle;
	margin: 0;
	margin-top: 2px;
}

@media (min-width: 767px) and (max-width: 990px) {
	.top-heading-container .row>div {
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {

	.top-heading-container .modal-title.quartely-heading {
		border-bottom: 1px solid #aaa;
		margin-bottom: 15px;
		padding-bottom: 10px;
		text-align: center;
	}

	.project-label,
	.project-selection,
	.project-button {
		text-align: center;
	}

	.top-heading-container .row>div {
		margin-bottom: 10px;
	}

	.top-heading-container h4.modal-title {
		margin-bottom: 10px;
	}

	button.delete_btn {
		margin: -2px 0px;
	}

	tr.pq-row-delete {
		text-decoration: line-through;
	}

	tr.pq-row-delete td {
		background-color: pink;
	}
}

.pq-grid-col {
	background-color: grey !important;
}

.pq-slider-icon {
	visibility: hidden !important;
}

.disabledmaps {
	background-color: grey !important;
}




/* report summary css starts here */

ul.lblesdw {
	list-style-type: none;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: table;
	margin-top: 50px;
	margin-bottom: 50px;
}

ul.lblesdw li {
	display: table-cell;
	text-align: center;
}

.reachValue-t {
	font-size: 20px;
}

ul.lblesdw li div.reachValue-box {
	background-color: #f2f2f2;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 116px;
	min-height: 90px;
	border: 1px solid #DDD;
	vertical-align: middle;
	font-weight: 600;
	font-size: 20px;
	color: #595959;
	border-radius: 15px;
	-webkit-box-shadow: 1px 1px 6px 1px rgba(255, 254, 250, 0.69);
	-moz-box-shadow: 1px 1px 6px 1px rgba(255, 254, 250, 0.69);
	box-shadow: 1px 1px 6px 1px rgba(255, 254, 250, 0.69);
	margin: 0 auto;
}

ul.lblesdw li div .onAir-planned {
	display: block;
	color: rgb(60, 152, 66);
	font-size: 20px;
}

ul.lblesdw li div .onAir-actual {
	display: block;
	color: rgb(25, 123, 151);
	;
	font-size: 20px;
}

.custombgs {
	position: relative;
	background-image: url(../images/bg-img.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	padding: 5px 15px;
	margin: 15px 15px;
	border-radius: 5px;
	box-shadow: 2px 4px 4px 0px rgba(16, 33, 51, 0.81), 0px 2px 10px 0px rgba(34, 36, 38, 0.83);
	color: #FFF;
	min-height: 360px;
}

@media all and (max-width: 900px) {
	ul.lblesdw li {
		display: inline-block;
		text-align: center;
		padding: 15px;
	}

	ul.lblesdw li div {
		margin: 0 auto;
	}
}

section.summary-block h4 span {
	font-size: 18px;
}




/* report summary css ends here */

.spinner {
	-webkit-animation: rotation 1.4s linear infinite;
	animation: rotation 1.4s linear infinite;
}

@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
}

@keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
}

.circle {
	stroke-dasharray: 187;
	stroke-dashoffset: 0;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-animation: turn 1.4s ease-in-out infinite;
	animation: turn 1.4s ease-in-out infinite;
}

@-webkit-keyframes turn {
	0% {
		stroke-dashoffset: 187;
	}

	50% {
		stroke-dashoffset: 46.75;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}

	100% {
		stroke-dashoffset: 187;
		-webkit-transform: rotate(450deg);
		transform: rotate(450deg);
	}
}

@keyframes turn {
	0% {
		stroke-dashoffset: 187;
	}

	50% {
		stroke-dashoffset: 46.75;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}

	100% {
		stroke-dashoffset: 187;
		-webkit-transform: rotate(450deg);
		transform: rotate(450deg);
	}
}

div.smryLoader svg.spinner {
	stroke: #9e9e9e;
}

div.smryLoader {
	width: 25px;
	display: none;
}

.pq-col-header {
	font-weight: bold;
}

span.dashboard-highchart-title {
	font-size: 18px;
	font-weight: 500;
}

span.highchart-no-data {
	position: relative;
	top: 20px;
	font-style: italic;
}

.no-data-available {
	position: relative;
	display: block;
	margin: 10px auto;
	top: -4px;
	text-align: center;
	color: rgba(78, 71, 71, 0.88);
}

.create-project-container .control-label {
	padding: 0;
	top: 10px;
}

.create-episode-container .control-label {
	padding: 0;
	padding-right: 10px;
	top: 10px;
}

.date-control {
	padding: 0px 3px 0px 5px !important;
}

.create-project-btn-group {
	display: flex;
	position: relative;
	justify-content: flex-end;
	margin-right: -9px;
	top: 33px;
}

.create-project-btn-group input {
	margin-right: 5px;
}

#targetReachId,
#targetGRPId {
	padding-right: 3px !important;
}

#targetGRPId1::placeholder,
#targetReachId::placeholder,
#targetGRPId::placeholder {
	position: relative;
	left: -3px;
	padding-left: 0px !important;
	padding-right: 0px !important;
	font-size: 12px;
	text-align: center
}

#divTargetReach input,
#divTargetGRP input {
	width: 183px;
}

.bg-danger.user-access-denied-msg {
	font-size: 20px;
	text-align: center;
	position: fixed;
	background: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dropdown-menu.analytics {
	width: 154.1px !important;
}

.dropdown-menu.network-report-sub-drop {
	top: 0px !important;
	right: -211px !important;
	/* width: 163px !important; */
}

.dropdown-menu.maps {
	right: -75px !important;
	width: 128px !important;
}

li.open>.dropdown-menu>.open .dropdown-menu.dropdown-menu.maps-quarterly-sub-drop {
	top: -6px !important;
	width: 70.8px !important;
}

.dropdown-menu.maps-weekly-sub-drop {
	top: 0px !important;
	width: 80.8px !important;
}

.dropdown-menu.maps-weekly-week-drop {
	top: 0px !important;
	width: 149px !important;
}

.dropdown-menu.maps-daily-sub-drop {
	top: 0px !important;
}

.dropdown-menu.tools-cl1 {
	top: 55px !important;
	right: -85.3px !important;
	width: 160.5px !important;
}

.dropdown-menu.tools-cl2 {
	top: 55px !important;
	right: -85.3px !important;
	width: 160.5px !important;
}

.dropdown-menu.scheduler {
	top: 55px !important;
	left: 64px !important;
	width: 125px !important;
}

.dropdown-menu.sescheduler-cl1 {
	top: 55px !important;
	left: 54px !important;
	width: 125px !important;
}

.dropdown-menu.sescheduler-cl2 {
	top: 55px !important;
	left: 40px !important;
	width: 100px !important;
}

.dropdown-menu.sescheduler-maps {
	top: 55px !important;
	right: 123px !important;
}

.dropdown-menu.sescheduler-maps .maps-quarterly-sub-drop {
	top: 55px !important;
	right: 147px !important;
}

.dropdown-menu.sescheduler-reports-cl1 {
	top: 55px !important;
	right: 123px !important;
	/* width: 150px !important; */
}

.dropdown-menu.sescheduler-reports-cl2 {
	top: 55px !important;
	right: 98px !important;
	/* width: 150px !important; */
}

#logOut {
	cursor: pointer;
}

#bootstrapNotify.alert {
	padding: 5px 10px;
}

#bootstrapNotify.alert ul {
	margin-bottom: 0px;
}

#addtimebeltmodal {
	overflow: visible;
}

.edit-col-icon {
	font-family: 'Glyphicons Halflings' !important;
	float: right;
	margin-left: 10px;
}

h4.sub-header {
	font-size: 19px;
	color: grey;
}

.capacity-submenu {
	margin-top: -6px !important;
	/* left: -160px !important; */
	margin-left: -146.344px !important;
}

.menuRightAligned {
	/* margin-left: 7px; */
	/* text-align: right; */
}

/* .dropdown-menu.tools a {
  margin-left: 15px;
} */

@media only screen and (max-width: 1318px) {
	#logo_container {
		display: none;
	}

	#campaign_logo_container {
		margin-left: 26px !important;
	}
}


@media only screen and (min-width: 1200px) {}

.unlock-submenu {
	margin-top: -6px !important;
	/* left: -160px !important; */
	margin-left: -136px !important;
}

.bootstrap-datetimepicker-widget a {
	padding: 0;
	width: 30px;
	height: 0px;
	background-color: white;
	color: #424242;
}

.timepicker-picker span {
	left: -14px;
	top: -29px;
	color: black;
}

.guide-submenu {
	margin-top: -6px !important;
	/* left: -160px !important; */
	margin-left: -107.672px !important;
}

.guide-submenu1 {
	margin-top: -6px !important;
	/* left: -160px !important; */
	margin-left: -89.67px !important;
}

.ui-draggable-handle {
	cursor: move
}

* {
	text-decoration-skip-ink: none;
}

.input-group.date .dropdown-menu {
	display: block;
}