.blinking{
	animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
	0%{     color: #fff;    }
	49%{    color: #fff; }
	60%{    color: transparent; }
	99%{    color:transparent;  }
	100%{   color: #fff;    }
}

.myselect{
	width:15% !important;
}

/***************15-5-2020 START************/

.card-title, .form-check-label{
	font-weight: bold;
}
.nav-link.active{
	background-color: #26a69a !important;
	color: #fff !important;
}
.getcost span{
	padding-top: 5px;
}
.Menu-Links{
	color: #324148 !important;
}
.form-group-feedback-left .form-control-feedback {
	left: unset !important;
}
/*.form-check-label {*/
/*	margin-left: 10px;*/
/*}*/
.fancybox-close:after{
	display: none !important;
}
/***************15-5-2020 END************/
.form-check-inline .form-check-input {
	margin-top: 3px !important;
	margin-right: 8px !important;
}
.card-title, .form-check-label{
	font-weight: normal !important;
}


.rating {
	border: none;
	float: left;
}

.rating > label {
	color: #90A0A3;
	float: right;
}

.rating > label:before {
	margin: 1px;
	font-size: 15px;
	font-family: FontAwesome;
	content: "\f005";
	display: inline-block;
}

.rating > input {
	display: none;
}

.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
	color: #26a69a;
}

.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
	color: #26a69a;
}


.select2-container .select2-selection--single{
	height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
	color: inherit;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
	height: 38px;
}
.select2-selection--single{
	padding: 5px 0 !important;
}
/***** RADIO BUTTON STYLES *****/
.rdio {
	position: relative;
}
.rdio input[type="radio"] {
	opacity: 0;
}
.rdio label {
	padding-left: 10px;
	cursor: pointer;
	margin-bottom: 7px !important;
}
.rdio label:before {
	width: 18px;
	height: 18px;
	position: absolute;
	top: 1px;
	left: 0;
	content: "";
	display: inline-block;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	border: 2px solid #ffffff;
	background: transparent;
}
.rdio input[type="radio"] {
	margin: 0px;
}
.rdio input[type="radio"]:disabled + label {
	color: #999;
}
.rdio input[type="radio"]:disabled + label:before {
	background-color: #fbc52d;
}
.rdio input[type="radio"]:checked + label::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 4px;
	display: inline-block;
	font-size: 11px;
	width: 10px;
	height: 10px;
	background-color: #fbc52d;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.rdio-default input[type="radio"]:checked + label:before {
	border-color: #fbc52d;
}

.rdio-primary input[type="radio"]:checked + label:before {
	border-color: #ffffff;
}
.rdio-primary input[type="radio"]:checked + label::after {
	background-color: #ffffff;
}

.custom-checkbox > [type="checkbox"],
.custom-checkbox label {
	/*margin-bottom:0px !important;*/
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.custom-checkbox > [type="checkbox"]:not(:checked), .custom-checkbox > [type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}
.custom-checkbox > [type="checkbox"]:not(:checked) + label, .custom-checkbox > [type="checkbox"]:checked + label {
	position: relative;
	padding-left: 22px;
	cursor: pointer;
}
.custom-checkbox > [type="checkbox"]:not(:checked) + label:before, .custom-checkbox > [type="checkbox"]:checked + label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -9px;
	width: 17px;
	height: 17px;
	border: 1px solid #fbc52d;
	background: #ffffff;
	border-radius: 2px;
}
.custom-checkbox > [type="checkbox"]:not(:checked) + label:after, .custom-checkbox > [type="checkbox"]:checked + label:after {
	font: normal normal normal 12px/1 "Glyphicons Halflings";
	content: "\e013";
	position: absolute;
	top: 50%;
	margin-top: -7px;
	left: 2px;
	color: #fbc52d;
	xtransition: all 0.2s;
}
.custom-checkbox > [type="checkbox"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}
.custom-checkbox > [type="checkbox"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}
.custom-checkbox > [type="checkbox"][data-indeterminate] + label:after {
	content: "\2212";
	left: 2px;
	opacity: 1;
	transform: scale(1);
}
.custom-checkbox > [type="checkbox"]:disabled:not(:checked) + label:before {
	box-shadow: none;
	background-color: #eeeeee;
	border-color: #eeeeee;
	cursor: not-allowed;
	opacity: 1;
	color: #dadada;
}
.custom-checkbox > [type="checkbox"]:disabled:checked + label:before {
	box-shadow: none;
	background-color: #eeeeee;
	border-color: #eeeeee;
	cursor: not-allowed;
	opacity: 1;
	color: #fbc52d;
}
.custom-checkbox > [type="checkbox"]:disabled:checked + label:after {
	color: #fbc52d;
	cursor: not-allowed;
}
.custom-checkbox > [type="checkbox"]:disabled + label {
	color: #aaa;
	cursor: not-allowed;
}
.custom-checkbox > [type="checkbox"]:checked:focus + label:before, .custom-checkbox > [type="checkbox"]:not(:checked):focus + label:before {
	border: 1px solid #fbc52d;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.custom-checkbox label:hover:before {
	border: 1px solid #fbc52d !important;
}
.custom-checkbox [type="checkbox"]:disabled:not(:checked) + label:hover:before, .custom-checkbox [type="checkbox"]:disabled:checked + label:hover:before {
	border: 1px solid #fbc52d !important;
}

/********************************** On / Off Button **********************************************/


/*------------------------------------------------------------------
[Inputs - Switcher]
*/
.switch-button {
	display: inline-block;
	border-radius: 50px;
	background-color: rgb(38 50 56);
	width: 60px;
	height: 27px;
	padding: 4px;
	position: relative;
	overflow: hidden;
	vertical-align: middle;
}
.switch-button input[type="checkbox"] {
	display: none;
}
.switch-button label {
	border-radius: 50%;
	-webkit-box-shadow: 0 0 1px 1px #fff inset;
	box-shadow: 0 0 1px 1px #FFF inset;
	background-color: #ffffff;
	margin: 0;
	height: 19px;
	width: 19px;
	z-index: 1;
	display: inline-block;
	cursor: pointer;
	background-clip: padding-box;
}
.switch-button label:before {
	position: absolute;
	font-size: .8462rem;
	font-weight: 600;
	z-index: 0;
	content: "OFF";
	right: 0;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 27px;
	top: 0;
	text-align: right;
	padding-right: 10px;
	color: #ffffff;
}
.switch-button input[type="checkbox"]:checked + span {
	background-color: #26a69a;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 4px;
}
.switch-button input[type="checkbox"]:checked + span label {
	float: right;
	border-color: #2196f3;
}
.switch-button input[type="checkbox"]:checked + span label:before {
	position: absolute;
	font-size: .8462rem;
	font-weight: 600;
	z-index: 0;
	content: "ON";
	color: #ffffff;
	left: 0;
	text-align: left;
	padding-left: 10px;
}
.switch-button.switch-button-yesno label:before {
	content: "NO";
}
.switch-button.switch-button-yesno input[type="checkbox"]:checked + span label:before {
	content: "YES";
}
.switch-button.switch-button-xs {
	height: 20px;
	width: 53px;
	line-height: 16px;
	width: 50px;
}
.switch-button.switch-button-xs label {
	height: 12px;
	width: 12px;
}
.switch-button.switch-button-xs label:before {
	line-height: 21px;
}
.switch-button.switch-button-sm {
	height: 24px;
	width: 57px;
	line-height: 20px;
}
.switch-button.switch-button-sm label {
	height: 16px;
	width: 16px;
}
.switch-button.switch-button-sm label:before {
	line-height: 25px;
}
.switch-button.switch-button-lg {
	height: 30px;
	width: 63px;
	line-height: 26px;
	width: 65px;
}
.switch-button.switch-button-lg label {
	height: 22px;
	width: 22px;
}
.switch-button.switch-button-lg label:before {
	line-height: 31px;
}
.switch-button.switch-button-success {
	background-color: #b3b3b3;
}
.switch-button.switch-button-success label {
	border-color: #ababab;
}
.switch-button.switch-button-success input[type="checkbox"]:checked + span {
	background-color: #34a853;
}
.switch-button.switch-button-success input[type="checkbox"]:checked + span label {
	border-color: #2e9549;
}
.switch-button.switch-button-warning {
	background-color: #b3b3b3;
}
.switch-button.switch-button-warning label {
	border-color: #ababab;
}
.switch-button.switch-button-warning input[type="checkbox"]:checked + span {
	background-color: #fbbc05;
}
.switch-button.switch-button-warning input[type="checkbox"]:checked + span label {
	border-color: #e3aa04;
}
.switch-button.switch-button-danger {
	background-color: #b3b3b3;
}
.switch-button.switch-button-danger label {
	border-color: #ababab;
}
.switch-button.switch-button-danger input[type="checkbox"]:checked + span {
	background-color: #ea4335;
}
.switch-button.switch-button-danger input[type="checkbox"]:checked + span label {
	border-color: #e82e1e;
}
.select2 {
	width: 100% !important;
}
.DisplayInlineTab{
	display: inline-table !important;
}
.active{
	background-color: rgba(255,255,255,.3) !important;
}
.table-striped tbody tr:nth-of-type(odd) {
	background-color: #f9f9f9;
}
.btn-primary, .btn-danger, .btn-warning{
	background-color: #dadada !important;
	color: #000000 !important;
}


.bg-primary {
	background-color: #f5f5f5 !important;
	color: #000000 !important;
}
.nav-sidebar .nav-link {
	padding: .75rem 8px !important;
}
.sidebar-dark .nav-sidebar>.nav-item>.nav-link.active{
	background-color: #26a69a !important;
	color: #fff !important;
}

.table td {
	padding: 10px !important;
}
.table th{
	padding-left:10px !important;
	padding-right:10px !important;
}
.table-bordered td, .table-bordered th{
    border: 1px solid #efefef !important;
}
.table thead th {
    border-bottom: 1px solid #ddd !important;
	background: #ddd;
}

@media (min-width: 768px){
	.sidebar-expand-md:not(.sidebar-component) {
		width: 230px !important;
	}
}

@media (min-width: 768px){
	.navbar-expand-md .navbar-brand {
		min-width: auto !important;
	}
	.sidebar-xs .sidebar-main {
		width: 3.5rem !important;
	}
}
.required_field{
	color: #FF0000;
}
.btn-order:hover
{
	cursor: pointer;
}
.service_top_link a {
	color: #0d638f !important;
}
.page-title {
	padding: 25px 0 15px 0 !important;
}
/*.page-header .form-group {*/
/*	margin-bottom: 0 !important;*/
/*}*/
.dashboard_act_todo td {
	padding: 8px 10px !important;
}
.dashboard_income .active{
	color: #fff !important;
	background-color: #00bcd4 !important;
}
.dashboard_charts{
	margin: 0 auto;
	width: 70%;
}
.dashboard_charts .dropdown-menu {
	padding: 0 0 !important;
	margin: 0 0 0 !important;
}
.dashboard_charts .dropdown-menu .divider{
	background-color: #d8d8d8;
	height: 1px;
}
.dashboard_charts ul.chartDropdown > li > a{
	width: 100%;
}
.Dashboard_Table td{
	padding: 10px 10px !important;
}
.TopNavMenu .dropdown-item {
	padding: .5rem 1rem !important;
}
.SameSizeHeading{
	font-size: 1.3125rem !important;
	font-weight: bold !important;
}
.ThemeColorButton{
	background-color: #324148 !important;
	color: #ffffff !important;
}
.NavTab_Theme{
	background-color: transparent !important;
	border: 0 !important;
}
.TabsH3Style h3{
	background-color: #e8e8e8 !important;
	padding: 5px 15px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #e8e8e8 !important;
	color: #324148 !important;
}
.dropdown-item a, .fa-search-plus, .icon-cog{
	color: #324148 !important;
}
.RemoveBTN{
	padding: 0 5px !important;
	display: unset !important;
	font-size: 8px !important;
}
/*ahmed*/
.ThemeBackButton{
	color: #26a69a !important;
}
table th{
	text-align: center !important;
}
.table thead th{
	border: none !important;
	background-color: #DDD;
}
.fa-download{
	color: #1d943b !important;
}
.fa-share{
	color: #c68419 !important;
}
.fa-check{
	color: #0362fd !important;
}
.fa-ban{
	color: #bb2413  !important;

}
.ThemeGreenBtn{
	background-color: #26a69a !important;
	color: #ffffff !important;
}
.DeleteButton{
	background-color: #bb2413 !important;
	color: #ffffff !important;
}
.icon-eye, .fa-check-square-o{
	color: #324148 !important;
}
/*.inprocess, .pending, .complete{*/
/*	text-align: center;*/
/*}*/
.TH3, .TH7, .TH4, .TH5, .TH8, .TH9, .TH10{
	text-align: left !important;
}
.GreenThemeButton, .PlaceOrderBtn button{
	background-color: #5cb85c !important;
	color: #ffffff !important;
}
.icon-arrow-left52{
	color: #5cb85c !important;
}
.ThemeGreenText{
	color: #26a69a !important;
}
.ThemeBlackText{
	color: #333 !important;
}
a{
	color: #324148 ;
}
a:hover{
	color: #000 ;
}
.icon-pencil{
	color: #26a69a !important;
}
#dynamic_field{
	width: 100%;
}
#dynamic_field td{
	padding: 10px;
}
#dynamic_field td:last-child{
	width: 150px;
}
#dvPrices, #dvSPrices{
	width: 100%;
	padding: 10px;
}
.downloadBtn{
	font-size: 24px !important;
}
.ticketsMenu span.pull-right{
	padding-left: 10px;
}
.services_header{
	margin-top: -27px !important;
}
.services_search{
	padding: 6px !important;
 }
.usersSection{
	margin-bottom: -19px !important;
}
.UsersActionButtons{
	padding: 1px 5px !important;
	border-radius: 0 !important;
}
.UsersActionButtons i{
	color: #FFFFFF !important;
}
.service_top_links a{
	color: #324148 !important;
}
.btn-delete{
	color: #f44336;
}
.ThemeDeleteBg{
	color: #324148;
	background-color: #ff7b74;
}

/* Hassan */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #455a64 !important;
}

.mycustominlinelist {
	display: flex;
	width: 100%;
	align-items: center;
}

.mycustominlinelist > li:not(:last-child) {
	margin-right: 20px;
}

.mycustominlinelist > li > i{
	margin-right: .3125rem !important;
}

.xyz123 .sale-num {
    float: right;
}
.no-bg, .no-bg:hover{
	background:transparent !important;
}
.no-bg i{
  color:#2196f3 !important;
}
.bg_cyan{
	background:#00bcd4 !important;
	color:#fff !important;
}
.clrRed{
	background-color: #f44336 !important;
    color: #ffffff !important;
}
.clrGreen{
	background-color: #26a69a !important;
	color: #ffffff !important;
}
.clrGreen1{
	background-color: #5cb85c !important;
	color: #ffffff !important;
}
.ThemeBlackBg{
	background-color: #455a64 !important;
}
.ThemeGreenBg{
	background-color: #26a69a !important;
}
.ThemeBlackBg .card-title, .ThemeBlackBg .list-icons-item, .ThemeBlackBg .card-title i,
.ThemeGreenBg .card-title, .ThemeGreenBg .list-icons-item, .ThemeGreenBg .card-title i
{
	color: white !important;
}
ul.InvoiceFeeds_{
	padding-top: 20px !important;
	list-style: none !important;
	padding-left: 0 !important;
}
ul.InvoiceFeeds_ li{
	padding-left: 40px;
	margin-bottom: 5px;
}
ul.InvoiceFeeds_ li:nth-child(odd){
	background: url("../assets/global_assets/images/usd_green.png") no-repeat left;
}
ul.InvoiceFeeds_ li:nth-child(even){
	background: url("../assets/global_assets/images/usd_black.png") no-repeat left;
}
.ZeeshanBhais_Request .form-control{
	padding: 0 !important;
	text-align: center !important;
}
.Padding_icon{
	padding: 1px 5px !important;
}
.label-danger{
	background-color: #f44336 !important;
	color: #fff;
	padding: 1px;
}
.label-success{
	background-color: #5cb85c !important;
	color: #fff;
	padding: 1px;
}
.label-warning{
	background-color: #F0AD4E !important;
	color: #fff;
	padding: 1px;
}
.label-info{
	background-color: #00bcd4 !important;
	color: #fff;
	padding: 1px;
}

.custom_accordion .card-header{
	padding: 0 !important;
	background: transparent;
	border: none;
}
.custom_accordion .card{
	background: transparent;
	border: none;
	box-shadow: none;
}
.custom_accordion .card-body{
	padding: 0px;
}
.custom_accordion a[aria-expanded="true"] h5{
	margin-bottom: 10px !important;
}
.custom_accordion h5{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.custom_padding tr th, .custom_padding tr td{
	padding-top: 10px;
	padding-bottom: 10px;
}
.custom_padding thead th{
	background: rgb(221 221 221 / 42%);
}
.custom_accordion .card{
	margin-bottom: 0px;
}
.dropdown-item button{
	background: none;
	border: none;
}
.news_slider{
	min-height: 200px;
	max-height: 200px;
}
.multichartsClientes{
	top: 145px !important;
	transform: unset !important;
	left: 20% !important;
	right: 20% !important;
}
.Pointer canvas{
	cursor: pointer !important;
}
.navbar-dark{
	align-items: center !important;
}
.navbar-brand{
	padding-top:5px !important;
	padding-bottom: 5px !important;
}
/*.navbar-brand img{
	height:40px !important;
}*/

@media (max-width:1440px){
	.multichartsClientes{
		top: 145px !important;
		transform: unset !important;
		left: 5% !important;
		right: 20% !important;
	}
}
@media (min-width:1199px){
	.navbar-expand-xl .navbar-brand {
		min-width: auto !important;
	}
}
@media (max-width:1199px){
	#navbar-mobile:not(.show){
		display: none !important;
	}
	/*.navbar.navbar-expand-lg {
		justify-content: space-between !important;
	}*/
	.navbar-nav {
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
		padding-left: 0 !important;
		margin-bottom: 0 !important;
		list-style: none !important;
	}
	#navbar-mobile .dropdown-menu{
		background: transparent !important;
		border: none !important;
		box-shadow: none !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	#navbar-mobile .dropdown-menu a{
		color: #ffffff !important;
		border-bottom: 1px solid #47545b;
	}
	#navbar-mobile .dropdown-divider{
		display: none !important;
	}
	.navbar-collapse {
		-ms-flex-preferred-size: 100% !important;
		flex-basis: 100% !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
}
@media (max-width:991px) {
	#empty_section{
		display: none;
	}
}
@media (max-width:767px){
	.chart-container td{
		width: 50% !important;
	}
	.chart-container tr{
		display: flex;
		flex-wrap: wrap;
	}
	.select2-dropdown{
		min-width:200px !important;
	}
}
@media (max-width:420px){
	.chart-container td{
		width: 100% !important;
	}
	.Hide-420 {
		display: none !important;
	}
}

.nav-tabs-bottom .nav-link.active:before {
    background-color: unset !important;
}

/* Marquee - mobile fix and visibility (used when MARQUEE_CODE is set) */
html.sticky-header-active #header .header-body {
    margin: 0;
    padding: 0;
}
#header .header-top.header-top-style-3 {
    margin-top: 0;
}
.marqueewrap {
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.marqueewrap marquee {
    display: block;
}
#marqueeText.marqueewrap {
    width: 100%;
    min-height: 36px;
    line-height: 36px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}
#marqueeText.marqueewrap marquee {
    width: 100% !important;
    height: auto !important;
    min-height: 36px;
    line-height: 36px;
    white-space: nowrap;
}
@media screen and (max-width: 991px) {
    #marqueeText.marqueewrap {
        min-height: 40px;
        line-height: 40px;
        padding: 8px 12px;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
    }
    #marqueeText.marqueewrap marquee {
        min-height: 40px;
        line-height: 40px;
        font-size: 13px;
    }
}