/* global.css */
.uppercase{
	text-transform: uppercase;
}
.lowercase{
	text-transform: lowercase;
}
.text-right{
	text-align: right !important;
}
.text-left{
	text-align: left !important;
}
.text-center{
	text-align: center !important;
}
.text-justify{
	text-align: justify;
}
.invisible{
	display: none;
}
.block{
	display: block;
}
.inline-block{
	display: inline-block !important;
}
.relative{
	position: relative;
}
.absolute{
	position: absolute;
}
.middle{
	vertical-align: middle;
}
.m-l{margin-left: 15px !important;}
.m-l-none{margin-left: 0 !important;}
.m-l-mini{margin-left: 5px !important;}
.m-l-small{margin-left: 10px !important;}
.m-l-large{margin-left: 20px !important;}
.m-l-n{margin-left: -15px !important;}
.m-l-n-mini{margin-left: -5px !important;}
.m-l-n-small{margin-left: -10px !important;}
.m-l-n-large{margin-left: -20px !important;}

.m-t{margin-top: 15px !important;}
.m-t-none{margin-top:0 !important;}
.m-t-mini{margin-top: 5px !important;}
.m-t-small{margin-top: 10px !important;}
.m-t-large{margin-top: 20px !important;}
.m-t-n{margin-top: -15px !important;}
.m-t-n-xmini{margin-top: -1px !important;}
.m-t-n-mini{margin-top: -5px !important;}
.m-t-n-small{margin-top: -10px !important;}
.m-t-n-large{margin-top: -20px !important;}

.m-r{margin-right: 15px !important;}
.m-r-none{margin-right: 0 !important;}
.m-r-mini{margin-right: 5px !important;}
.m-r-small{margin-right: 10px !important;}
.m-r-large{margin-right: 20px !important;}
.m-r-n{margin-right: -15px !important;}
.m-r-n-mini{margin-right: -5px !important;}
.m-r-n-small{margin-right: -10px !important;}
.m-r-n-large{margin-right: -20px !important;}

.m-b{margin-bottom: 15px !important;}
.m-b-none{margin-bottom: 0 !important;}
.m-b-mini{margin-bottom: 5px !important;}
.m-b-small{margin-bottom: 10px !important;}
.m-b-large{margin-bottom: 20px !important;}
.m-b-n{margin-bottom: -15px !important;}
.m-b-n-mini{margin-bottom: -5px !important;}
.m-b-n-small{margin-bottom: -10px !important;}
.m-b-n-large{margin-bottom: -20px !important;}

.p-l{padding-left: 15px !important;}
.p-l-none{padding-left: 0 !important;}
.p-l-mini{padding-left: 5px !important;}
.p-l-small{padding-left: 10px !important;}
.p-l-large{padding-left: 20px !important;}
.p-l-n{padding-left: -15px !important;}
.p-l-n-mini{padding-left: -5px !important;}
.p-l-n-small{padding-left: -10px !important;}
.p-l-n-large{padding-left: -20px !important;}

.p-t{padding-top: 15px !important;}
.p-t-none{padding-top:0 !important;}
.p-t-mini{padding-top: 5px !important;}
.p-t-small{padding-top: 10px !important;}
.p-t-large{padding-top: 20px !important;}
.p-t-n{padding-top: -15px !important;}
.p-t-n-xmini{padding-top: -1px !important;}
.p-t-n-mini{padding-top: -5px !important;}
.p-t-n-small{padding-top: -10px !important;}
.p-t-n-large{padding-top: -20px !important;}

.p-r{padding-right: 15px !important;}
.p-r-none{padding-right: 0 !important;}
.p-r-mini{padding-right: 5px !important;}
.p-r-small{padding-right: 10px !important;}
.p-r-large{padding-right: 20px !important;}
.p-r-n{padding-right: -15px !important;}
.p-r-n-mini{padding-right: -5px !important;}
.p-r-n-small{padding-right: -10px !important;}
.p-r-n-large{padding-right: -20px !important;}

.p-b{padding-bottom: 15px !important;}
.p-b-none{padding-bottom: 0 !important;}
.p-b-mini{padding-bottom: 5px !important;}
.p-b-small{padding-bottom: 10px !important;}
.p-b-large{padding-bottom: 20px !important;}
.p-b-n{padding-bottom: -15px !important;}
.p-b-n-mini{padding-bottom: -5px !important;}
.p-b-n-small{padding-bottom: -10px !important;}
.p-b-n-large{padding-bottom: -20px !important;}

.padder{padding: 15px !important;}
.padder-none{padding: 0 !important;}
.padder-mini{padding: 5px !important;}
.padder-small{padding: 10px !important;}
.padder-large{padding: 20px !important;}

.bordered{
	border: 1px solid;
}
.border-soft{
	border-color: #CCC;
}
.border-medium{
	border-color: #DBDBDB;
}
.border-light{
	border-color: #FFF;
}
.border-radius{
	border-radius: 6px;
}
.border-radius-small{
	border-radius: 4px;
}
.border-circle{
	border-radius: 100%;
}
.no-border{
	border: 0 none;
}

.text-success{
	color: #14cc1b;
}
.text-warning{
	color: #FF9800;
}
.text-danger{
	color: #f44336;
}
.text-info{
	color: #4fa0c7;
}

.line{
	border-bottom: 1px solid #ccc;
}
.line.line-dashed{
	border-bottom-style: dashed;
}
.line.line-dotted{
	border-bottom-style: dotted;
}



.modal {
  top:50%;
  margin-top: -152px;
  text-align: center;
}
.modal-content {
  border: 1px solid #e5e5e5;
  -webkit-box-shadow:none;
  box-shadow:none;
}
.modal-header .close {
  margin-top: -8px;
  background: #d13030;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-right: -8px;
  font-size: 21px;
  color: #fff;
  opacity: 1;
  text-shadow:none;
}

.modal-backdrop {
  background-color: #fff;
}
.modal-backdrop.in {
  opacity: 0.9;
}
.modal-header {
  min-height:auto;
  padding: 0;
  border-bottom: none;
}
.modal-body {
  padding: 0 0 10px 0;
}
.modal .consultant {margin: 20px 0; text-align: center;}
.modal .consultant .img-circle {border:4px solid #9fb3cf;}
.modal .consultant .h4 {font-size: 15px; background: #f6f6f6; padding: 10px 0; font-weight: bold;}
.modal .consultant .tmail {display: block; font-weight: normal; font-size: 15px; color: #4e5f6f;}
.modal .consultant .tara {display:inline-block; padding: 10px 35px 10px 55px; border-radius: 30px; font-size: 18px; font-weight: bold; color: #FFF; background: #00af43 url("../img/icons/phone.png") left 30px center no-repeat; }









html{
	min-height: 100%;
	position: relative;
}
html, body{
	font-family: Helvetica, Sans-Serif;
	font-size: 14px;
	font-weight: normal;
}
body{
	background: #e0e0e0;
}

header#header{
	background: url(../img/header-bg.png) no-repeat center top transparent;
	background-size: cover;
}

header#header #hello_customer {
	background: rgba(255, 255, 255, .35);
	display: block;
	padding: 15px 5px 15px 5px;
	border-radius: 5px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin: 10px 0 10px -15px;
}

#customer_badge{
	background: #FFF;
	color: #899ac5;
	border-radius: 10px;
	padding: 10px;
}

header#header #hello_customer .inline-block{
	font-size: 16px;
	padding: 2px 0;
}
header#header #hello_customer .inline-block #hello{
	
	color: #aeb7c9;
}
header#header #hello_customer .inline-block #customer-name{
	color: #FFF;
}

header#header #consultant{
  position: relative;
	display: inline-block;
	text-align: center;
}
header#header #consultant img.img-circle{
	border: 4px solid rgba(255, 255, 255, .5);
}
header#header #consultant .consultant-text{
	font-weight: 300;
	color: #FFF;
	font-size: 14px;
	margin-top: 10px;
}
header#header #consultant #consultant-name{
	font-weight: 300;
	color: #FFF;
	font-size: 14px;
	margin-top: 3px;
  text-decoration: none;
}

header#header #consultant .consultant-call {
  position: absolute;
  text-align: center;
  background: #00af43;
  color: #FFF;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  padding: 3px;
  font-weight: bold;
  right: 10px;
  top: 40px;
}

header#header #consultant a#contact-us-btn{
	border-radius: 10px;
	background: #00af43;
	color: #fff;
	padding: 4px 10px;
	display: inline;
	font-weight: 300;
	font-size: 14px;
}
header#header #consultant a#contact-us-btn b{
	font-weight: 600;
}

header#header #header-dynamic{
	margin-left: -10px;
}
header#header #header-dynamic a.white{
	font-size: 14px;
	color: #FFF;
	text-decoration: none;
}



main#content{
	padding: 10px 0 0 0;
}
main#content .container{
	padding-left: 5px;
	padding-right: 5px;
}




footer#footer{
	bottom: 0;
	width: 100%;
}
footer#footer #choose_device_mode{
	background: #FFF;
	position: relative;
	margin-top: 20px;
	padding: 10px 0;
	border-top: 1px solid #e8e9e9;
}
footer#footer #choose_device_mode #choose_device_mode_buble{
	position: absolute;
	width: 10px;
	height: 10px;
	background: #FFF;
	transform: rotate(45deg);
	left: calc(50% - 5px);
	top: -6px;
	border-left: 1px solid #e8e9e9;
	border-top: 1px solid #e8e9e9;
}
footer#footer #choose_device_mode .row .col-xs-12 a{
	color: #4e5f6f;
	text-decoration: none;
}
footer#footer #choose_device_mode .row .col-xs-12 small{
	border-top: 1px solid #e8e8e8;
	display: block;
	padding-top: 5px;
	margin-top: 5px;
}
footer#footer #choose_device_mode .row .col-xs-12 small.no-border{
	border-top: 0 none !important;
	padding-top: 0 !important;
	margin-top: 0 !important;
}

footer#footer #choose_device_mode .desktop_mobile_version a.continue-mobile-version::before{
	content: "";
	margin-left: 5px;
	margin-right: 17px;
	border-left: 1px solid #e8e8e8;
}


















.panel-group.custom-panel-group{
	*border-radius: 10px;
	overflow: hidden;
}
.panel-group.custom-panel-group .panel{
	border-radius: 0;
	border: 0;
}
.panel-group.custom-panel-group .panel+.panel{
	margin-top: 0;
}

.panel-group.custom-panel-group .panel .panel-heading{
	border-bottom: 1px solid #e0e0e0;
	background: #f8f9f9;
	padding: 15px 20px;
}
.panel-group.custom-panel-group .panel:last-child .panel-heading{
	border-bottom: 0 none;
}

.panel-group.custom-panel-group .panel-heading+.panel-collapse>.list-group,
.panel-group.custom-panel-group .panel-heading+.panel-collapse>.panel-body{
	border-top: 0 none;
}
.panel-group.custom-panel-group .panel .panel-heading .panel-title{
  font-family: Helvetica, Sans-Serif;
  font-size: 14px;
  font-weight: normal;
	color: #000 !important;
}
.panel-group.custom-panel-group .panel .panel-heading .panel-title a{
	display: block;
	text-decoration: none;
}
.panel-group.custom-panel-group .panel .panel-heading .panel-title a i.panel-icon{
	background: #eeefef;
	width: 36px;
	border-right: 1px solid #e0e0e0;
	display: inline-block;
	height: 44px;
	float: left;
	margin-left: -20px;
	margin-top: -15px;
	margin-right: 10px;
}

.panel-group.custom-panel-group .panel .panel-heading .panel-title a i.caretx{
	float: right;
	display: block;
	background: #f1f2f2;
  font-size: 14px;
	padding: 15px 20px;
	margin-right: -20px;
	margin-top: -15px;
	border-left: 1px solid #e0e0e0;
}


.panel-group.custom-panel-group .panel .panel-heading .panel-title .dropdown {
	padding: 15px 10px;
	margin-top: -15px;
	margin-right: -20px;
	margin-left: 20px;
	border-left: 1px solid #e0e0e0;
	display: none;
}
.panel-group.custom-panel-group .panel .panel-heading .panel-title .dropdown a {
  color: #000;
  text-decoration: none;
}

.panel-group.custom-panel-group .panel .panel-body{
	padding: 0;
}

i.panel-icon.panel-icon-adwords{
	background: url(../img/icons/adwords.png) no-repeat center center #eeefef !important;
}
i.panel-icon.panel-icon-fbads{
	background: url(../img/icons/facebook.png) no-repeat center center #eeefef !important;
}
i.panel-icon.panel-icon-services{
	background: url(../img/icons/services.png) no-repeat center center #eeefef !important;
}
i.panel-icon.panel-icon-invoice-services-dashboard{
	background: url(../img/icons/invoices_dashboard.png) no-repeat center center #eeefef !important;
}
i.panel-icon.panel-icon-invoice-services{
	background: url(../img/icons/invoices.png) no-repeat center center #eeefef !important;
}
i.panel-icon.panel-icon-user-information{
	background: url(../img/icons/user.png) no-repeat center center #eeefef !important;
}
i.panel-icon.panel-icon-passwd-change{
	background: url(../img/icons/passwd-change.png) no-repeat center center #eeefef !important;
}
i.panel-icon.panel-icon-contacts{
	background: url(../img/icons/contacts.png) no-repeat center center #eeefef !important;
}
i.panel-icon.panel-icon-invoice-settings{
	background: url(../img/icons/invoice-settings.png) no-repeat center center #eeefef !important;
}
i.panel-icon.panel-icon-notification-settings{
	background: url(../img/icons/notification-settings.png) no-repeat center center #eeefef !important;
}
i.panel-icon.panel-icon-payment{
	background: url(../img/icons/payment.png) no-repeat center center #eeefef !important;
}


ul.adwords-account-details,
ul.fbads-account-details{
	padding: 0;
	margin: 0;
	list-style: none;
}
ul.adwords-account-details li,
ul.fbads-account-details li{
	padding: 15px 5px;
	border-bottom: 1px solid #f8f8f8;
	font-size: 14px;
	color: #000;
}





.btn.btn-login-account{
  width: 49%;
	background: #00ae44;
	color: #FFF;
	border-bottom: 3px solid rgba(0, 0, 0, .2);
  padding: 8px 0;
}
/*.btn.btn-login-account::before{*/
	/*content: "";*/
	/*width: 24px;*/
	/*height: 24px;*/
	/*display: inline-block;*/
	/*vertical-align: middle;*/
	/*background: url(../img/icons/login.png) no-repeat center center transparent;*/
	/*margin-right: 3px;*/
/*}*/
.btn.btn-login-account:active{
	border-bottom: 0;
	margin-top: 3px;
}

.btn.btn-save{
	background: #4e5f6f;
	color: #FFF;
	border-radius: 10px;
	border-bottom: 3px solid rgba(0, 0, 0, .2);
	padding: 5px 10px;
}
.btn.btn-save::before{
	content: "";
	width: 24px;
	height: 24px;
	display: inline-block;
	vertical-align: middle;
	background: url(../img/icons/save.png) no-repeat center center transparent;
	margin-right: 3px;
}
.btn.btn-save:active{
	border-bottom: 0;
	margin-top: 3px;
}

.btn.btn-login-account.no-icon::before{
	display: none;
}




.btn.btn-load-budget{
  width: 49%;
	background: #FF0000;
	color: #FFF;
	border-bottom: 3px solid rgba(0, 0, 0, .1);
  padding: 8px 0;
}
/*.btn.btn-load-budget::before{*/
	/*content: "";*/
	/*width: 24px;*/
	/*height: 24px;*/
	/*display: inline-block;*/
	/*vertical-align: middle;*/
	/*background: url(../img/icons/wallet.png) no-repeat center center transparent;*/
	/*margin-right: 3px;*/
/*}*/
.btn.btn-load-budget:active{
	border-bottom: 0;
	margin-top: 3px;
}


.btn.btn-approve{
	background: #4e5f6f;
	color: #FFF;
	border-radius: 10px;
	border-bottom: 3px solid rgba(0, 0, 0, .2);
	padding: 5px 10px;
}
.btn.btn-approve::before{
	content: "";
	width: 24px;
	height: 24px;
	display: inline-block;
	vertical-align: middle;
	background: url(../img/icons/approve.png) no-repeat center center transparent;
	margin-right: 3px;
}
.btn.btn-approve:active{
	border-bottom: 0;
	margin-top: 3px;
}


.btn.btn-continue {
  width: 100%;
	background: #349041;
	color: #FFF;
	border-radius: 5px;
	border-bottom: 3px solid rgba(0, 0, 0, .2);
	padding: 10px 20px;
	font-weight: 300;
}
.btn.btn-continue:active{
	border-bottom: 0;
	margin-top: 3px;
}



ul.services{
	padding: 0;
	margin: 0;
	list-style: none;
	list-style-type: none;
}
ul.services li{
	border-bottom: 1px solid #e9eaea;
	line-height: 40px;
	padding-left: 5px;
	position: relative;
}
ul.services li:last-child{
	border-bottom: 0 none;
}

ul.services li .service-apply-or-get-info{
	position: absolute;
	top: 0;
	right: 0;
}

ul.services li .service-apply-or-get-info button.service-apply-btn,
ul.services li .service-apply-or-get-info button.service-get-info-btn
{
	position: relative;
	padding: 10px;
	float: left;
	border-radius: 0;
	color: #4e5f6f;
	font-size: 12px;
	outline:none;
}
ul.services li .service-apply-or-get-info button.service-apply-btn::-moz-focus-inner,
ul.services li .service-apply-or-get-info button.service-get-info-btn::-moz-focus-inner{
	border: 0;
}


ul.services li .service-apply-or-get-info button.service-apply-btn{
	background: #f7f7f7;
	font-weight: bold;
}
ul.services li .service-apply-or-get-info button.service-get-info-btn{
	background: #f0f0f0;
	border-left: 1px solid #e8e9e9;
}

ul.services li .service-apply-or-get-info button.service-apply-btn.active,
ul.services li .service-apply-or-get-info button.service-get-info-btn.active{
	background: #349041;
	color: #FFF;
}

ul.services li .service-apply-or-get-info button.service-apply-btn.active::after,
ul.services li .service-apply-or-get-info button.service-get-info-btn.active::after{
	content: "";
	width: 10px;
	height: 10px;
	position: absolute;
	background: #349041;
    bottom: -5px;
    left: calc(50% - 5px);
    transform: rotate(45deg);
}
.service-toggle-content{
	line-height: normal;
}
.service-toggle-content > div{
	display: none;
	padding: 10px 0;
}
.service-toggle-content > div.show{
	display: block;
}

ul.services li .service_is_exists{
	font-size: 12px;
}




ul.invoice-services{
	list-style: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

ul.invoice-services > li{
	border-bottom: 1px solid #e8e9e9;
	line-height: 45px;
	padding: 0 0 0 10px;
}
ul.invoice-services > li:last-child{
	border-bottom: 0 none;
}
ul.invoice-services li .btn-bubble{
	background: #f7f7f7;
	color: #4e5f6f;
	padding: 14px 20px;
	display: block;
	float: right;
	text-decoration: none;
	position: relative;
	line-height: normal;
	min-width: 100px;
	text-align: center;
	border: 0 none;
}

ul.invoice-services li .btn-bubble .text{
	display: block;
}
ul.invoice-services li .btn-bubble .text-active{
	display: none;
}

ul.invoice-services li .btn-bubble.active .text{
	display: none;
}
ul.invoice-services li .btn-bubble.active .text-active{
	display: block;
}

ul.invoice-services li .btn-bubble.active,
ul.invoice-services li .btn-bubble:focus{
	background: #4e5f6f;
	color: #FFF; 
}
ul.invoice-services li .btn-bubble::after{
	content: "";
	width: 10px;
	height: 10px;
	background: #f7f7f7;
	transform: rotate(45deg);
	display: block;
	position: absolute;
	display: none;
}

ul.invoice-services li .btn-bubble.btn-bubble-left::after{
	display: block;
	left: -5px;
	top: calc(50% - 5px);
}
ul.invoice-services li .btn-bubble.btn-bubble-bottom::after{
	display: block;
	left: calc(50% - 5px);
	bottom: -5px;
}

ul.invoice-services li .btn-bubble.active::after,
ul.invoice-services li .btn-bubble:focus::after{
	background: #4e5f6f;
}

ul.invoice-services > li ul{
	padding: 0;
	margin: 0;
	list-style: none;
	display: none;
}

ul.invoice-services > li ul li{
	padding: 0 0 0 10px;
	line-height: 30px;
}

ul.invoice-services > li ul li.border{
	padding: 0;
	border-bottom: 1px solid #e8e9e9;
}






ol.breadcrumb{
	border-radius: 0px;
	background: #FFF;
	padding: 10px 15px;
  margin-bottom: 10px;
}
ol.breadcrumb li{
	color: #4e5f6f;
	font-size: 14px;
}
ol.breadcrumb li.active{
	color: #4e5f6f;
}
ol.breadcrumb li.goback{
	float: right;
}
ol.breadcrumb li.goback::before{
	padding: 0;
	color: transparent;
	content: "";
	display: none;
}
ol.breadcrumb li.goback a{
	display: inline-block;
}
ol.breadcrumb li a{
	color: #4e5f6f;
}



ul.pagination.custom-pagination{
	margin: 0;
}
ul.pagination.custom-pagination li{

}
ul.pagination.custom-pagination li.active{
	
}
ul.pagination.custom-pagination li.disabled{
	
}
ul.pagination.custom-pagination li a{

}

ul.pagination.custom-pagination > li:first-child > a,
ul.pagination.custom-pagination > li:first-child > span,
ul.pagination.custom-pagination > li:last-child > a,
ul.pagination.custom-pagination > li:last-child > span{
	border-radius: 0;
}
ul.pagination.custom-pagination > li > a,
ul.pagination.custom-pagination > li > span{
	color: #4e5f6f;
	background-color: transparent;
	border: 0 none;
	padding: 3px 8px;
	border-radius: 3px;
	font-size: 14px;
}

ul.pagination.custom-pagination > .active > a,
ul.pagination.custom-pagination > .active > a:focus,
ul.pagination.custom-pagination > .active > a:hover,
ul.pagination.custom-pagination > .active > span,
ul.pagination.custom-pagination > .active > span:focus,
ul.pagination.custom-pagination > .active > span:hover{
	background-color: #4e5f6f;
	color: #FFF;
}

ul.pagination.custom-pagination > .disabled > a,
ul.pagination.custom-pagination > .disabled > a:focus,
ul.pagination.custom-pagination > .disabled > a:hover,
ul.pagination.custom-pagination > .disabled > span,
ul.pagination.custom-pagination > .disabled > span:focus,
ul.pagination.custom-pagination > .disabled > span:hover{
	background: transparent;
}


ul.pager.custom-pager{
	display: block;
	position: relative;
	margin: 0;
	clear: both;
}
ul.pager.custom-pager li:first-child{
	float: left;
}
ul.pager.custom-pager li:last-child{
	float: right;
}
ul.pager.custom-pager li a{
	font-size: 13px;
	font-weight: lighter;
	border-radius: 6px;
	background-color: #4e5f6f;
	color: #FFF;
}
ul.pager.custom-pager li.disabled a,
ul.pager.custom-pager li.disabled a:focus,
ul.pager.custom-pager li.disabled a:hover,
ul.pager.custom-pager li.disabled a:active{
	opacity: .5;
	background-color: #4e5f6f;
	color: #FFF;
}


.form-control.input-inline{
	width: auto;
	display: inline-block;
	min-width: 0;
}

.btn.btn-invoice-detail,
.btn.btn-order-detail,
.btn-payment-detail,
.btn-agreement-detail{
	margin: -8px;
	border: 0 none;
	border-radius: 0;
	min-height: 48px;
	background: #f1eded;
	border-left: 1px solid #DDD;
	width: 80px;
}
.btn.btn-order-detail{
	min-height: 38px;
	width: auto;
	line-height: 28px;
	color: #4e5f6f;
	font-weight: bold;
}
.btn-payment-detail{
	min-height: 0;
	width: auto;
	min-height: 32px;
}
.btn-agreement-detail{
	min-height: 51px;
	width: auto;
	line-height: 51px;
	background: #f7f7f7;
	color: #4e5f6f;
}
.btn-payment-detail.Pending span{
	color: #FF9800;
	font-weight: bold;
}
.btn-payment-detail.Canceled span{
	color: #f44336;
	font-weight: bold;
}
.btn-payment-detail.Paid span{
	color: #14cc1b;
	font-weight: bold;
}



#snap-content{
	overflow-x: hidden;
}

.snap-drawer {
  background: #ffffff;
  color: #000;
}
.snap-drawer-menu .h3 {
	font-size: 20px;
	padding: 16px 0;
	margin: 0;
	text-align: center;
}
.snap-drawer-menu ul{
	list-style: none;
	padding: 0;
}
.snap-drawer-menu ul li{
	border-top: 1px solid #f1f1f1;
	font-size: 14px;
}

.snap-drawer-menu ul li a {
	color: #000;
	text-decoration: none;
	display: block;
  padding: 10px 0 10px 20px;
}

.snap-drawer-menu ul li ul {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.snap-drawer-menu ul li ul li a {
  padding: 10px 0 10px 30px;
}

.snap-drawer-menu ul li.hasChild > a::after{
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0d7";
}
.snap-drawer-menu ul li.hasChild.active > a::after{
	content: "\f0d8";
}
.snap-drawer-menu ul li > ul{
	border-bottom: 0 none;
	margin-top: 12px;
	margin-bottom: -12px;
	display: none;
}
.snap-drawer-menu ul li > ul > li:last-child{
	border-bottom: 0 none;
}





.dropdown.account-settings{
	position: initial;
}

.dropdown.account-settings .dropdown-menu{
	width: 96%;
	margin: 0 2%;
	margin-top: 10px;
	box-shadow: 0px 5px 5px 2px rgba(0,0,0,0.25);
	padding: 10px 0;
}

/*
.dropdown.account-settings .dropdown-menu > li > a {
    color:#428bca;
}
*/

.dropdown.account-settings .dropdown-menu::before {
    content: "";
    border-bottom: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    top: -10px;
    left: 48px;
    z-index: 10;
}
.dropdown.account-settings .dropdown-menu::after {
    content: "";
    border-bottom: 12px solid #ccc;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    position: absolute;
    top: -12px;
    left: 46px;
    z-index: 9;
}


table > thead > tr > th{
	font-weight: 600;
	color: #4b5f70;
}


table.table > thead > tr > th.orderable a{
	color: #4b5f70;
	text-decoration: none;
	display: block;
	display: flex;
}
table.table > thead > tr > th.orderable a::after{
	font: normal normal normal 14px/1 FontAwesome;
	display: inline-flex;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-left: 5px;
}

table.table > thead > tr > th.orderable a.order-asc::after{
	content: "\f0de";
}
table.table > thead > tr > th.orderable a.order-desc::after{
	content: "\f0dd";
}
table.table > thead > tr > th.orderable a.order-null::after{
	content: "\f0dc";
	opacity: .5;
}

.btn-link.btn-link-custom{
	padding: 0;
	text-decoration: none;
}
.btn-link.btn-link-custom .filter-option{
	font-weight: bold;
	color: #1c81b5;
}
.btn-link.btn-link-custom .bs-caret{
	display: none;
}


/***** benim yaptıklarım ****/


.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
  vertical-align: middle;
}


.services-new {
  padding: 0;
  margin: 0;
}

.services-new li.first-list {
  position: relative;
  padding: 10px 10px;
  border-bottom: 1px solid #f2f2f2;
}

.services-new li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: #000;
}

.services-new li a .services-title {
  font-weight: 700;
  margin-bottom: 5px;
}


.services-new li a ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.services-new li a ul li {
  float: left;
  width: 50%;
  font-weight: 300;
  font-size: 13px;
  color: #929292;
}

.services-new li a .notes {
  display: inline-block;
  margin-top: 5px;
  padding-top: 5px;
  margin-right: 40px;
  font-weight: 300;
  font-size: 12px;
  color: red;
}

.services-new li a i {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -9px;
  font-size: 18px;
  color: #5c6b7a;
}

.services-new li.first-list .btn-refresh-pay {
  width: 100%;
  padding: 5px 0;
  margin-top: 10px;
  background: #00ae44 !important;
  color: #FFF !important;
  text-decoration: none;
}

.invoice-services-new {
  padding: 0;
  margin: 0;
}

.invoice-services-new li {
  padding: 10px 10px;
  border-bottom: 1px solid #f2f2f2;
}

.invoice-services-new li:first-child span {
  line-height: 34px;
}

.invoice-services-new li .btn-pay {
  background: #FF0000 !important;
  color: #FFF !important;
  float: right;
}

.invoice-services-new li a {
  display: block;
  text-decoration: none;
  color: #000;
}



.invoice-services-new li a i.fa-angle-right {
  float: right;
  margin-right: 10px;
  font-size: 18px;
  color: #5c6b7a;
}


.account-settings {
  padding: 0;
  margin: 0;
}

.account-settings li {
  padding: 10px 10px;
  border-bottom: 1px solid #f2f2f2;
}

.account-settings li:first-child span {
  line-height: 34px;
}

.account-settings li .btn-pay {
  background: #00ae44 !important;
  color: #FFF !important;
  float: right;
}

.account-settings li a {
  display: block;
  text-decoration: none;
  color: #000;
}

.account-settings li a i.fa-angle-right {
  float: right;
  margin-right: 10px;
  font-size: 18px;
  color: #5c6b7a;
}

/** header **/

@font-face {
  font-family: Museo-300;
  src: url(../fonts/museo/Museo-300.otf);
}
@font-face {
  font-family: Museo-700;
  src: url(../fonts/museo/Museo-700.otf);
}

#top-header {
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#top-header .top-left {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 5px;
  padding-bottom: 5px;
}

#top-header .top-left .logo-font {
  font-family: 'Museo-300', Sans-Serif;
  color: #FFF;
  font-size: 30px;
  letter-spacing: -2px;
  text-decoration: none;
}

#top-header .top-left .logo-font b {
  font-family: 'Museo-700', Sans-Serif;
}

#top-header .top-left .logo-font span{
  font-size: 12px;
  letter-spacing: 0;
}

#top-header .top-right {
  text-align: center;
}

#top-header .top-right a {
  display: inline-block;
  color: #FFF;
  padding-top: 13px;
}

#notification.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 0 !important;
}

.creditcard-form .table>tbody>tr>td,
.bankwire-form .table>tbody>tr>td {
  padding: 0;
  border-top: 0;
}


.siparis-content {
  text-align: center;
  background: #FFF;
  border-radius: 0px;
  padding: 10px;
  margin-bottom: 10px;
}

.siparis-content .number h3 {
  margin: 0 0 2px;
  padding: 0;
  font-size: 22px;
  font-weight: 400;
}

.font-red-haze {
  color: #f36a5a!important;
}
.font-dark {
  color: #2f353b!important;
}
.font-green-haze {
  color: #44b6ae!important;
}

.btn-paynow,
.btn-paynow:focus,
.btn-paynow:hover,
.btn-paynow:active {
  display: block;
  margin-bottom: 10px;
  background: #FF0000;
  color: #FFF;
}

.btn-select-pay,
.btn-select-pay:focus,
.btn-select-pay:hover,
.btn-select-pay:active {
  background: #FF0000;
  color: #FFF;
  white-space: normal;
}


table.dataTable thead th,
table.dataTable thead td {
  padding: 0;
}


#dateranges .titler{
  padding:7px !important;;
}
#dateranges .datepick{
  height:34px !important;
}


.sweet-alert h2 {
	font-size: 20px;
}

.sweet-alert .btn-group-lg>.btn, .btn-lg {
	padding: 5px 8px;
	font-size: 14px;
	margin-bottom: 3px;
}

.sweet-alert .lead {
	font-size: 13px;
}


.go-back-site {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 10px;
	color: #000;
	text-decoration: none;
}

@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px)
and (orientation : landscape) {
	.go-back-site {
		position: relative;
	}
}


#loader-wrapperdiv {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}
#loaderDiv{
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50% !important;
	border: 5px solid transparent;
	border-top-color: #3498db;
	-webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
	z-index: 1001;
}
.cur{
	cursor:pointer;
}
#loaderDiv:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 5px solid transparent;
	border-top-color: #e74c3c;
	-webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loaderDiv:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 5px solid transparent;
	border-top-color: #f9c922;

	-webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
	0%   {
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
@keyframes spin {
	0%   {
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}

#loader-wrapperdiv .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: #364150;
	z-index: 1000;
	-webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateX(0);  /* IE 9 */
	transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapperdiv .loader-section.section-left {
	left: 0;
}

#loader-wrapperdiv .loader-section.section-right {
	right: 0;
}

/* Loaded */
.loaded #loader-wrapperdiv .loader-section.section-left {
	-webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateX(-100%);  /* IE 9 */
	transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapperdiv .loader-section.section-right {
	-webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateX(100%);  /* IE 9 */
	transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loaderDiv ,
.loaded #loaderText {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.loaded #loader-wrapperdiv {
	visibility: hidden;

	-webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateY(-100%);  /* IE 9 */
	transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

	-webkit-transition: all 0.3s 1s ease-out;
	transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapperdiv {
	display: none;
}

.input-mini {
	width: 80px;
}