/***************************** General Css Start Here **********************************************/
@font-face {
  font-family: 'MontserratRegular';
  src: url('../fonts/MontserratRegular.eot');
  src: url('../fonts/MontserratRegular.eot') format('embedded-opentype'),
    url('../fonts/MontserratRegular.woff2') format('woff2'),
    url('../fonts/MontserratRegular.woff') format('woff'),
    url('../fonts/MontserratRegular.ttf') format('truetype'),
    url('../fonts/MontserratRegular.svg#MontserratRegular') format('svg');
}

@font-face {
  font-family: 'MontserratMedium';
  src: url('../fonts/MontserratMedium.eot');
  src: url('../fonts/MontserratMedium.eot') format('embedded-opentype'),
    url('../fonts/MontserratMedium.woff2') format('woff2'),
    url('../fonts/MontserratMedium.woff') format('woff'),
    url('../fonts/MontserratMedium.ttf') format('truetype'),
    url('../fonts/MontserratMedium.svg#MontserratMedium') format('svg');
}

@font-face {
  font-family: 'MontserratSemiBold';
  src: url('../fonts/MontserratSemiBold.eot');
  src: url('../fonts/MontserratSemiBold.eot') format('embedded-opentype'),
    url('../fonts/MontserratSemiBold.woff2') format('woff2'),
    url('../fonts/MontserratSemiBold.woff') format('woff'),
    url('../fonts/MontserratSemiBold.ttf') format('truetype'),
    url('../fonts/MontserratSemiBold.svg#MontserratSemiBold') format('svg');
}

@font-face {
  font-family: 'MontserratBold';
  src: url('../fonts/MontserratBold.eot');
  src: url('../fonts/MontserratBold.eot') format('embedded-opentype'),
    url('../fonts/MontserratBold.woff2') format('woff2'),
    url('../fonts/MontserratBold.woff') format('woff'),
    url('../fonts/MontserratBold.ttf') format('truetype'),
    url('../fonts/MontserratBold.svg#MontserratBold') format('svg');
}

body {
  font-family: 'MontserratSemiBold' !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 0;
  color: #000;
  line-height: normal !important;
}

* {
  margin: 0;
  padding: 0;
}

.d_block {
  display: block;
}

a:hover {
  text-decoration: none
}

.blue-link {
  color: #0492de;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: #38528e;
  cursor: pointer
}

.btn {
  border: none;
  border-radius: 0;
}

.btn:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

select.form-control {
  background: url("../images/select_aero.png") no-repeat right center #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input_bx,
.field {
  position: relative;
}

.input_bx .icon,
.field .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 21px;
  width: 21px;
  height: 0;
  margin: auto;
}

.btn.btn-primary {
  background: #004063;
  color: #f9b42b;
  border: none;
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:not(:disabled):not(.disabled).active,
.btn.btn-primary:not(:disabled):not(.disabled):active,
.btn.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
  color: #004063;
  background: #f9b42b;
}

/*************************** Check Box Css Start Here ****************************/
.checkbox-container {
  float: left;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
}

.input-title {
  padding: 2px 4px;
  color: rgb(0, 64, 99);
  float: left;
}




/* Styling Checkbox Starts */
.checkbox-label {
  display: block;
  position: relative;
  margin: auto;
  cursor: pointer;
  font-size: 22px;
  line-height: 24px;
  height: 24px;
  width: 24px;
  float: left;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-label .checkbox-custom {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 20px;
  width: 20px;
  overflow: hidden;
  background-color: transparent;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  border: 2px solid #004063;
}


.checkbox-label input:checked~.checkbox-custom {
  background-color: #fff;
  -webkit-transform: rotate(0deg) scale(1);
  -ms-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  opacity: 1;
  border: 2px solid #004063;
}


.checkbox-label .checkbox-custom::after {
  position: absolute;
  content: "";
  left: 12px;
  top: 12px;
  height: 0px;
  width: 0px;
  border-radius: 5px;
  border: solid #009BFF;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(0deg) scale(0);
  -ms-transform: rotate(0deg) scale(0);
  transform: rotate(0deg) scale(0);
  opacity: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}


.checkbox-label input:checked~.checkbox-custom::after {
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
  opacity: 1;
  left: 6px;
  top: 0;
  width: 6px;
  height: 12px;
  border: solid #004063;
  border-width: 0 2px 2px 0;
  background-color: transparent;
  border-radius: 0;
}



/* For Ripple Effect */
.checkbox-label .checkbox-custom::before {
  position: absolute;
  content: "";
  left: 10px;
  top: 10px;
  width: 0px;
  height: 0px;
  border-radius: 5px;
  border: 2px solid #FFFFFF;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.checkbox-label input:checked~.checkbox-custom::before {
  left: -3px;
  top: -3px;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  -webkit-transform: scale(3);
  -ms-transform: scale(3);
  transform: scale(3);
  opacity: 0;
  z-index: 999;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

th .checkbox-label .checkbox-custom {
  border: 2px solid;
  background: #fff;
  top: 4px;
}

th .checkbox-label input:checked~.checkbox-custom::after,
th .checkbox-label input:checked~.checkbox-custom {
  border-color: #f9b42b;
}

.tabs_panel .nav-item a.active::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  margin: auto;
  width: 30px;
  height: 13px;
  background: url("../images/tab_active_icon.png");
  z-index: 9;
}

.page_content {
  background: #f4f4f4;
}

.page_title {
  font-size: 18.61px;
  color: #000101;
  margin: 0 0 20px;
}

.add_edit_title {
  background: #004063;
  color: #f9b42b;
  text-align: center;
  padding: 17px 0;
}

table th,
table td {
  font-family: 'MontserratMedium';
}

table td .btn {
  border-radius: 30px;
  font-size: 14px;
  min-width: 98px;
  padding: 3px;
  text-transform: capitalize;
}

.table th {
  padding: 17px 9px;
  font-weight: normal;
  border: none;
}

.table td {
  padding: 8px 9px;
  border: none;
}

.table tbody tr:hover {
  background-color: #fff;
  box-shadow: 0 0 8px #eeee;
}

/***************************** General Css End Here **********************************************/

/***************************** Header Footer Sidebar Start Here **********************************************/
#header {
  background: #fff;
  ;
  height: 69px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  z-index: 1030;
  border-bottom: 1px solid #F9B529;
}

#sidebar {
  position: fixed;
  background: #004063;
  top: 69px;
  bottom: 0;
  left: 0;
  padding-top: 24px;
  width: 200px;
  overflow: auto;
  z-index: 10;
  transition: 0.3s ease all;
  border-radius: 0 60px 0 0;
  height: 100%;
  padding-bottom: 130px;
}

#sidebar li.submenu li {
  margin: 0;
}

#sidebar li.submenu li a {
  padding: 10px 0px 10px 20px;
}

#wrapper {
  min-height: calc(88vh - 32px);
  margin-top: 0;
  padding: 15px 20px 45px;
  -webkit-transition: margin-left .3s ease;
  -o-transition: margin-left .3s ease;
  transition: margin-left .3s ease
}

.logo_panel {
  float: left;
  height: 100%;
}

.logo {
  float: left;
  width: 240px;
  padding: 0 11px;
}

.logo span {
  font-size: 30px;
  margin: 15.5px 0;
  display: block;
  color: #F9B42C;
  text-transform: uppercase;
  font-family: 'MontserratBold';
}

.logo span em {
  font-style: normal;
  color: #004063;
}

#header .logo img {
  width: 100%
}

.header_actions {
  float: right;
  margin: 20px 15px 0 0;
}

.header_actions ul li {
  display: inline-block;
}

.header_actions ul li a.link-page {
  font-size: 14px;
  border-radius: 30px;
  padding: 14px 34px;
  text-transform: uppercase;
}

.header_actions ul li a.link-page {
  background: #004063;
  color: #f9b42c !important;
}

.header_actions ul li a.link-page.active {
  background: #f9b42b;
  color: #004063 !important;
}

.user_box img {
  width: 100%;
}

#sidebar li {
  margin: 5px 0;
  float: left;
  width: 100%;
}

#sidebar ul li a .img-fluid {
  max-width: 30px;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

#sidebar ul li .img-fluid,
#sidebar ul ul em img {
  filter: brightness(0) invert(1);
}

.side_menu {
  padding-right: 10px;
}

.submenu .fa-angle-down {
  float: right;
  line-height: 22px;
}

.submenu a[aria-expanded=true] i {
  transform: rotate(180deg);
}

#sidebar ul li.active a .img-fluid,
#sidebar ul li a:hover .img-fluid,
#sidebar ul ul li a:hover img,
#sidebar ul ul li.active a img {
  filter: inherit;
}

#sidebar ul li a:hover,
#sidebar ul li.active a {
  color: #004063;
  background: #F9B42C;
  border-radius: 0 30px 30px 0;
}

#sidebar ul li a {
  color: #fff;
  padding: 10px 5px 10px 50px;
  display: block;
  position: relative;
  font-size: 15px;
}

.app-sidebar__toggle {
  padding: 0 15px;
  line-height: 57px;
  -webkit-transition: background-color .3s ease;
  -o-transition: background-color .3s ease;
  transition: background-color .3s ease;
  float: left;
  width: 47px;
  height: 60px
}

#sidebar li.nav-item.submenu ul li a {
  font-family: 'MontserratRegular';
  /* font-weight: 600; */
}

#sidebar li.nav-item.submenu ul li a:hover,
#sidebar li.nav-item.submenu ul li.active a {
  background: none;
  color: #f9b42b;
}

.submenu ul li a em {
  min-width: 20px;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
}

.app-sidebar__toggle svg rect {
  fill: #F9B529;
  -webkit-transition: .3s ease all;
  -o-transition: .3s ease all;
  transition: .3s ease all
}

.app-sidebar__toggle svg rect:nth-child(4),
.app-sidebar__toggle svg rect:nth-child(5) {
  opacity: 0
}

.app-sidebar__toggle svg {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.app-sidebar__toggle svg rect:nth-child(2) {
  -webkit-transform: scaleX(.8);
  -ms-transform: scaleX(.8);
  transform: scaleX(.8)
}

.app-sidebar__toggle:hover svg rect:nth-child(2) {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1)
}

.header_actions em {
  background: #e2504c;
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
  font-style: normal;
  overflow: hidden;
  vertical-align: middle;
  margin-left: 5px;
}

.header_actions .dropdown-toggle:after {
  display: none;
}

.header_actions ul li {
  position: relative;
  margin: 0 0 0 30px;
}

.header_actions ul li a {
  color: #262626 !important;
}

.badge_notify {
  position: absolute;
  top: -10px;
  font-size: 11px;
  background: #e2504c;
  border-radius: 50%;
  width: 20px;
  color: #fff;
  height: 20px;
  text-align: center;
  line-height: 20px;
  right: -12px;
}

.main_wrapper .dropdown-menu {
  right: 0 !important;
  padding: 0;
  top: 15px !important;
  left: inherit !important;
  transform: inherit !important;
}

.header_actions ul {
  margin: 0;
  padding: 0;
}

.logOut_btn {
  position: fixed;
  bottom: 0;
  z-index: 9;
  left: 64px;
  width: 51px;
  height: 66px;
  margin: auto;
}

.footer {
  border-top: 1px solid #F9B529;
  padding: 10px 0;
  color: #004063;
}

.footer p {
  font-size: 14px;
  margin: 0;
}

.footer a {
  color: #F9B529;
}

/******************************************** Header Footer Sidebar End Here **************************************************/

/********************* Login, Signup, Forgot Css Start Here *********************/
.StartUp_panel {
  padding: 15px;
}

.login_forgot {
  max-width: 940px;
  margin: 0 auto;
  box-shadow: 0 0 8px #eee;
}

.StartUp_panel .card {
  border: none;
  border-radius: 0;
}

.sign_login_left,
.sign_login_left .card {
  background: #eff0f1;
}

.sign_login_left::before {
  background: #f9b42b;
  width: 60px;
  height: 60px;
  position: absolute;
  content: '';
  right: 80px;
  bottom: -15px;
  border-radius: 50%;
}

.sign_login_fields h3 {
  font-family: 'MontserratBold';
  font-size: 43px;
  color: #004063;
  text-transform: uppercase;
  text-align: center;
}

.sign_login_fields h3 span {
  display: block;
  font-size: 25px;
  color: #5b5b5b;
}

.sign_login_fields h3 em {
  color: #f9b42b;
  font-style: normal;
}

.forgot_link a {
  color: #5b5b5b;
  font-size: 18px;
}

.field {
  display: flex;
  flex-flow: column-reverse;
}

.field label,
.field input {
  transition: all 0.2s;
  touch-action: manipulation;
}

.field input {
  border: 0;
  border-left: 10px solid transparent;
  -webkit-appearance: none;
  border-radius: 0;
  cursor: text;
  color: #5b5b5b;
}

.field input:focus {
  outline: 0;
  border-left: 10px solid #f9b42b;
}

.field label {
  text-transform: uppercase;
  color: #5b5b5b;
  font-size: 13px;
}

.field input:placeholder-shown+label {
  cursor: text;
  max-width: 66.66%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  transform: translate(1rem, 3rem) scale(1.2);
  padding-left: 12px;
}

::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
}

.field input:focus::-webkit-input-placeholder {
  opacity: 1;
}

.field input:not(:placeholder-shown)+label,
.field input:focus+label {
  transform: translate(1rem, 2rem) scale(1);
  cursor: pointer;
  padding-left: 12px;
}

.login_forgot_fields .field input {
  background: #fff;
  box-shadow: 0 0 8px #eee;
  height: 60px;
  padding-left: 18px;
}

.login_forgot_fields .btn {
  height: 60px;
  border: none;
  border-radius: 0;
}

.Account_link {
  font-size: 18px;
  text-align: center;
  color: #5b5b5b;
  font-family: 'MontserratRegular';
}

.Account_link a {
  color: #f9b42b;
  font-family: 'MontserratSemiBold';
}

.forgot_link {
  margin: 20px 0 0;
  display: block;
}

.circle_bx {
  height: 0.5px;
  background: #5b5b5b;
  position: relative;
  float: left;
  width: 100%;
  margin: 10px 0 15px;
}

.circle_bx::before {
  height: 1px;
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #5b5b5b;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

.card.sign_login_fields .card-text {
  padding: 10px 35px;
}

.login_forgot_fields .field {
  margin-bottom: -10px;
}

.SignUp .sign_login_left img {
  margin-top: 75px;
}

/********************* Login, Signup, Forgot Css End Here *********************/

/********************* Expense Page CSS Start Here ****************************/
#Expenses table th {
  white-space: nowrap;
}

.primary_content {
  border-bottom: 2px solid #f9b42b;
}

.nav-tabs .nav-item {
  position: relative;
}

.tabs_panel .nav-item a {
  background: #004063;
  color: #f9b42b;
  border-radius: 0;
  border: none;
  padding: 16px 0;
  font-size: 16px;
  text-transform: uppercase;
}

.tabs_panel .nav-item a:hover,
.tabs_panel .nav-item a.active {
  background: #f9b42b;
  color: #004063;
}

.tabs_panel .nav-item {
  margin-right: 4px;
  width: 33%;
  text-align: center;
}

.tabs_panel .nav-item:last-child {
  margin-right: 0;
}

.tab-content {
  min-height: 50px;
}

.filter_panel {
  padding: 15px 0;
}

.filter_btn {
  float: left;
  padding-left: 15px;
}

.filter_btn a {
  border-radius: 6px;
  color: #004063;
  background: #f9b42b;
  padding: 10px;
  min-width: 122px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'MontserratBold';
}

.filter_btn img {
  margin-right: 10px;
}

.filter_options {
  float: left;
  width: 100%;
  margin: 15px 0px 0px 0px;
}

.edit_selected {
  float: right;
  padding-right: 15px;
}

.edit_selected a {
  background: #004063;
  border-radius: 20px;
  color: #f9b42b;
  display: inline-block;
  padding: 10px;
  min-width: 150px;
  font-size: 14px;
  text-align: center;
}

.edit_selected a:hover {
  background: #f9b42b;
  color: #004063;
}

.edit_selected a:hover img {
  filter: invert(1);
}

.edit_selected img {
  vertical-align: top;
  margin-right: 4px;
}

thead {
  background: #004063;
  color: #f9b42b;
}

.select_option {
  border: 2px solid #004063;
  width: 100%;
  display: block;
  padding: 5px;
}

.dropdown-toggle::after {
  display: none !important;
}

.drop_icon {
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  line-height: 30px;
  border-left: 2px solid #004063;
  width: 17px;
  text-align: center;
  background: #f4f4f4;
}

.filter_options .dropdown-menu li a {
  color: #004063;
  font-size: 13px;
  padding: 4px;
  display: block;
}

.filter_options .dropdown-menu {
  left: 0 !important;
  top: 31px !important;
  width: auto;
  min-width: inherit;
  border-right: 2px solid;
  border-left: 2px solid;
  border-bottom: 2px solid;
  border-radius: 0;
  border-top: none;
}

.cross_icon {
  margin-right: 4px;
}

.search_field {
  border: 2px solid #004063;
  background: none;
  height: 33px;
  text-align: center;
  width: 90px;
  color: #004063;
}

input.form-control.filter_datepicker {
  cursor: pointer;
}

.to {
  text-align: center;
  max-width: 90px;
}

.title_btn {
  padding: 15px;
}

.title_btn h4 {
  font-size: 18px;
  margin: 0;
  line-height: 34px;
  color: #004063;
  font-family: 'MontserratBold';
}

.create_btn {
  background: #004063;
  color: #f9b42b;
}

.create_btn:hover {
  background: #f9b42b;
  color: #004063;
}

.edit_del_icon a {
  margin: 0 5px;
}

.add_edit_panel {
  padding: 0 25px;
}

.RuleName input,
.border_input {
  height: 42px;
  border-radius: 8px;
  background: none;
  font-size: 14px;
  font-family: 'MontserratRegular';
  color: #010101;
  max-width: 240px;
}

.if_panel h4 {
  font-size: 18px;
  color: #f9b42b;
}

.if_panel.then h4 {
  color: #004063;
  padding-left: 25px;
}

.shadow_box {
  background: #fff;
  float: left;
  width: 100%;
  padding: 25px 20px;
  border-radius: 6px;
  box-shadow: 0 0 8px #dfdedf;
  margin: 3px 0 15px;
}

.selection_box {
  border-left: 8px solid #f9b42b;
  padding: 10px 15px;
  float: left;
  width: 100%;
  box-shadow: 0 0 8px #eae8e8;
}

.selection_box.blue {
  background: #004063;
}

.selection_box label {
  text-transform: uppercase;
  color: #f9b42b;
  font-size: 14px;
}

.selection_box em {
  float: right;
}

.selection_box span {
  float: left;
  color: #000;
  width: 100%;
  font-family: 'MontserratMedium';
}

.selection_box.blue span {
  color: #fff;
}

.selection_box ul.dropdown-menu.show {
  left: -24px !important;
  right: -16px !important;
  background: #f5f5f5;
}

.selection_box ul.dropdown-menu.show li {
  padding: 7px 15px;
  font-size: 14px;
  color: #000;
}

.selection_box ul.dropdown-menu {
  left: -24px !important;
  right: -16px !important;
  border: none;
  top: 27px !important;
  background: #f5f5f5;
  border-radius: 0;
}

.dropdown {
  cursor: pointer;
}

.remove_row {
  background: #f9b42b;
  height: 35px;
  width: 35px;
  display: inline-block;
  line-height: 35px;
  font-size: 34.14px;
  color: #004063;
  border-radius: 50%;
}

.remove_row:hover {
  background: #f5ac1a;
  color: #004063;
}

.round_btn {
  min-width: 150px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 16px;
  text-align: center;
}

.Or_btn {
  background: #f9b42b;
  color: #004063;
  margin: 15px 0 0;
}

.Or_btn:hover {
  color: #004063;
  background: #f5ac1a;
}

.And_btn {
  background: #004063;
  color: #fff;
  margin: 0 0 15px;
}

.And_btn:hover {
  color: #fff;
  background: #023754;
}

.both_btn_panel {
  text-align: center;
  padding: 25px 0;
}

.both_btn_panel .btn {
  min-width: 150px;
  height: 42px;
  text-align: center;
  padding: 0 5px;
  line-height: 42px;
  border-radius: 6px;
  border: none;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0 5px;
}

.btn-default {
  background: #fff;
  box-shadow: 0 0 8px #ded9d9;
  color: #004063;
}

.btn-default:hover {
  background: #e2dfdf;
  color: #004063;
}

.table .table {
  background: none;
  margin: 0;
}

.table thead th {
  vertical-align: middle;
  border-bottom: none;
}

.table .table tbody tr:hover {
  background: none;
  box-shadow: none;
}

.table .table th.in_head {
  color: #fff;
  padding: 0 5px;
  font-size: 12px;
}

span.gray_bg {
  background: #a7a5a5;
  padding: 2px 7px 5px;
}

span.blue_bg {
  background: #004063;
  padding: 2px 7px 5px;
}

#IntegrationStatus .table td {
  font-size: 13px;
}

#IntegrationStatus .table .table td {
  padding: 0 5px;
}

/********************* Expense Page CSS End Here ******************************/

/********************* Clients Page CSS Start Here ******************************/
.page_title.clients {
  background: #fff;
  box-shadow: 0 0 8px #eee;
  padding: 15px;
  margin: 0;
}

.green-text {
  color: #329401;
}

.red-text {
  color: rgba(255, 0, 0, 0.658);
}

/********************* Clients Page CSS End Here ******************************/

/********************* Receipts Page CSS Start Here ******************************/
.Receipts_Panel {
  padding: 0 20px 40px;
}

.Receipts_Panel .selection_box {
  background: #fff;
}

.Receipts_Panel .selection_box label {
  display: block;
  margin: 0;
  color: #004063;
  line-height: 50px;
  font-size: 18px;
  text-transform: inherit;
}

.arrowUp {
  float: left;
  width: 191px;
  height: 121px;
  background: #004063;
  text-align: center;
  line-height: 121px;
  margin: 20px 0;
}

.Receipts_box {
  margin-bottom: 15px;
}

.ReceiptsReport {
  border: 2px solid #fff;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}

.ReceiptsReport img {
  width: 100%;
}

.ReceiptsReport.active {
  border-color: #f9b42b;
}

.Receipts_box h4 {
  font-size: 16px;
  color: #004063;
}

/********************* Receipts Page CSS End Here ******************************/

/********************* Reports Page CSS Start Here ******************************/
.page_title.reports {
  background: #fff;
  box-shadow: 0 0 8px #eee;
  padding: 15px;
  margin: 10px 0 0;
}

.tabs_panel ul.nav.nav-tabs {
  border: none;
  background: #fff;
}

.reportsDashboard th {
  width: 33%;
}

#Reports th {
  min-width: 122px;
  white-space: nowrap;
}

#Reports .checkbox-container {
  text-align: left;
}

#Reports .checkbox-label {
  display: inline-block;
  float: none;
  vertical-align: middle;
  margin-left: 5px;
}

#Reports .checkbox-label input:checked~.checkbox-custom {
  background: #004063;
}

#Reports .checkbox-label input:checked~.checkbox-custom::after {
  border-color: #f9b42b;
}

#Reports .checkbox-label .checkbox-custom {
  background: #004063;
}

.light_blue {
  color: #00b2d6;
  font-style: normal;
}

.link_text {
  color: rgb(0, 64, 99);
  cursor: pointer;
}

.link_text:hover {
  color: #29608e;
}

.page_title.All_report img {
  margin-right: 10px;
}

/********************* Reports Page CSS End Here ******************************/

/********************* Reports Detail Page CSS Start Here ******************************/
.Reports_detail_box {
  background: #fff;
}

.Reports_detail .selection_box {
  background: #fff;
  margin: 0 0 15px;
  padding: 18px 12px;
  min-height: 74px;
}

.Reports_detail .selection_box h4 {
  font-size: 12px;
  text-transform: uppercase;
}

.Reports_detail .selection_box h4 span {
  color: #5b5b5b;
  font-family: 'MontserratMedium';
  display: block;
  margin: 8px 0 0;
  text-transform: initial;
}

.Reports_detail .selection_box:hover h4 span {
  color: #000;
}

.card_panel .lbl {
  display: block;
  padding: 10px 0;
}

.lbl b {
  min-width: 200px;
  display: inline-block;
}

.lbl em {
  display: inline-block;
  vertical-align: text-bottom;
  font-style: normal;
  color: #5b5b5b;
}

.Report_links {
  text-align: right;
  margin-top: 15px;
}

.Report_links ul li {
  display: inline-block;
  border-right: 1px solid #bfbfbf;
  padding: 0 15px;
}

.Report_links ul li:last-child {
  border-right: none;
}

.Report_links ul li a {
  color: #f9b42b;
  font-size: 14px;
  font-family: 'MontserratMedium';
  text-decoration: underline;
}

.reportDetail_Table td {
  vertical-align: middle;
}

.reportDetail_Table .form-control {
  border-color: #c2c2c2;
  border-radius: inherit;
  font-size: 14px;
  font-family: 'MontserratMedium';
  color: #000;
}

.reportDetail_Table th .checkbox-container {
  float: none;
}

.reportDetail_Table .checkbox-label .checkbox-custom {
  height: 16px;
  width: 16px;
}

.reportDetail_Table .checkbox-label input:checked~.checkbox-custom::after {
  left: 4px;
  width: 5px;
  height: 10px;
}

.reportDetail_Table th .checkbox-label .checkbox-custom {
  border: 1px solid #ffff;
  background: none;
  top: 2px;
}

.reportDetail_Table td .checkbox-container {
  float: none;
  display: inline-block;
  width: auto;
}

.reportDetail_Table td .checkbox-label .checkbox-custom {
  top: 6px;
}

.reportDetail_Table .checkbox-label {
  width: 18px;
  margin-right: 3px;
}

.shadow_box.card_panel {
  border-radius: inherit;
}

.Report_receipt .page_title.add_edit_title {
  text-align: left;
  margin: 0;
  padding-left: 15px;
}

.Report_receipt {
  padding: 15px 0;
  background: #fff;
}

.Report_receipt .Receipts_Panel {
  padding-top: 20px;
  background: #f5f5f5;
}

.page_title span.Up_angle {
  float: right;
  padding: 0 15px;
  cursor: pointer;
}

/********************* Reports Page CSS End Here ******************************/

/********************* Policy Page CSS Start Here ******************************/
.policy_top {
  padding: 0 0 20px;
  background: #fff;
}

.policy_top .selection_box {
  padding: 15px;
}

.policy_top .selection_box label {
  font-size: 14px;
  color: #010000;
}

.policy_top .selection_box span {
  color: #5b5b5b;
  font-size: 14px;
}

.policy_top .selection_box.blue label {
  color: #f9b42b;
}

.policy_top .selection_box.blue span {
  color: #fff;
}

.PolicyTabs li.nav-item {
  width: 24.64%;
}

.connect {
  min-width: 165px;
  border-radius: 30px;
  font-size: 15px;
  color: #fff;
  padding: 5px 20px;
}

.connect:hover {
  color: #fff;
}

.xero_btn {
  background: #00b7e3;
}

.QuickBooks_btn {
  background: #2D9F1B;
}

#QuickBooks_link .btn {
  color: #2D9F1B;
}

button.btn.btn-link {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: left;
}

.img_bx {
  position: absolute;
  width: 56px;
  left: 17px;
}

.accordionBx {
  padding: 15px 0 15px 90px;
  position: relative;
}

.accordion-body {
  padding: 20px 10px;
}

.accordionBx::before {
  position: absolute;
  content: '';
  height: 1px;
  background: #ccc;
  width: 100%;
  max-width: 350px;
  bottom: 0;
  left: 100px;
}

#accordion {
  padding-bottom: 50px;
}

.angle {
  margin-right: 10px;
}

button.btn.btn-link.collapsed img.angle {
  transform: rotate(180deg);
}

.bankName_setting {
  padding: 15px;
  float: left;
  width: 100%;
}

.blue_circle_icon {
  width: 43px;
  height: 43px;
  display: inline-block;
  background: #004063;
  border-radius: 50%;
  border: 3px solid #f9b42b;
  line-height: 34px;
  text-align: center;
}

.title_btn.card_detail_head {
  background: #fff;
  box-shadow: 0px 6px 10px #eee;
}

.newCard {
  font-size: 18px;
  color: #004063;
  font-family: 'MontserratBold';
}

.card_detail_head h4 {
  line-height: 42px;
}

.card_details table td em {
  color: #00b2d5;
  font-style: normal;
  margin-right: 2px;
}

select.tb_select {
  border: none;
  background: none;
}

.card_details .checkbox-label input:checked~.checkbox-custom {
  background: none;
}

.card_details table th {
  min-width: 84px;
}

.setting_admin_check {
  padding: 15px;
}

.setting_admin_check label {
  margin-right: 8px;
}

.setting_admin_check>label {
  font-size: 18px;
  margin-right: 15px;
  cursor: pointer;
}

.setting_admin_check em {
  font-style: normal;
  color: #f9b42b;
}

.team_member_table th span {
  float: left;
  margin-right: 10px;
}

.team_member_table th a {
  margin-top: 6px;
  display: inline-block;
}

.team_member_table span.select_option {
  min-height: 24px;
  display: inline-block;
  padding-right: 25px;
}

.team_member_table td .dropdown-menu {
  left: 0 !important;
  top: 31px !important;
  padding: 7px 0;
  min-width: inherit;
  border-right: 2px solid;
  border-left: 2px solid;
  border-bottom: 2px solid;
  border-radius: 0;
  border-top: none;
}

.team_member_table li {
  padding: 2px 8px;
  float: left;
  width: 100%;
}

.team_member_table li .input-title {
  font-size: 12px;
}

.card_th {
  min-width: 194px;
}

.modal-header {
  background: #004063;
}

h5.modal-title {
  float: left;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
}

h5.modal-title span {
  display: block;
  color: #f9b42b;
  font-size: 14px;
}

.modal-body .selection_box {
  margin-bottom: 20px;
  padding: 15px;
}

.modal-body .selection_box.red {
  border-color: #e50505;
}

.modal-body .selection_box.red span {
  color: #e50505;
}

.modal-body .selection_box label {
  color: #000;
  text-transform: capitalize;
}

.modal-content {
  min-height: 350px;
}

.modal-header .close {
  /* background: #b50000;
  opacity: inherit;
  color: #fff;
  font-style: normal;
  border-radius: 50%;
  width: 57px;
  text-shadow: inherit;
  font-weight: normal;
  padding: 0;
  height: 57px;
  display: inline-block;
  line-height: 57px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0; */

  background: #b50000;
  opacity: inherit;
  color: #fff;
  font-style: normal;
  border-radius: 50%;
  width: 40px;
  text-shadow: inherit;
  font-weight: normal;
  padding: 0 !important;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.confirmModal .modal-footer {
  justify-content: center;
}

.confirmModal .modal-body {
  padding: 40px 30px;
  text-align: center;
  font-size: 18px;
}

.confirmModal .modal-content {
  min-height: inherit;
}

.confirmModal .modal-header {
  padding: 15px !important;
}


.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 1;
  color: #fff;
  outline: none;
}


.my_account_tabs .btn.btn-primary {
  background: #004063;
  border-color: #004063;
}

.modal-header .modal-title {
  color: #F9B42C;
  font-size: 20px;
}

.modal-header .close span {
  font-size: 40px;
  font-family: 'MontserratRegular';
}

.modal-content .selection_box ul.dropdown-menu {
  top: 14px !important;
}

.billng_panel {
  padding: 15px;
}

.plan_title {
  font-size: 23px;
  color: #004063;
  font-family: 'MontserratBold';
  margin: 0 0 10px;
}

.payment_panel .add_edit_title {
  text-align: left;
  padding-left: 15px;
  margin: 0;
}

.billng_card {
  padding: 15px;
  background: #fff;
}

.billing_bank {
  background: #004063;
  padding: 25px 15px;
  border-radius: 6px;
  color: #f9b42b;
  font-size: 14px;
  max-width: 260px;
}

.billing_bank span {
  display: block;
  text-align: center;
  padding: 25px 0;
}

.billng_card h5 {
  font-size: 15px;
  color: #004063;
  margin: 15px 0 10px;
}

.billng_card .selection_box {
  margin: 15px 0 10px;
}

.billng_card .selection_box span {
  text-transform: capitalize;
  font-family: 'MontserratRegular';
  color: #555555;
  font-size: 15px;
  margin: 5px 0 7px;
  font-weight: 600;
}

.billng_card .selection_box h4 {
  font-size: 14px;
  font-family: 'MontserratBold';
}

.Billing_note {
  background: #ccd9e0;
  padding: 12px;
  font-family: 'MontserratRegular';
  font-style: italic;
  font-size: 14px;
  margin: 15px 0;
}

.Billing_note a {
  color: #f9b42b;
}

.billing_history {
  padding: 20px 0 0;
}

.billing_history .table-responsive {
  padding-bottom: 150px;
  background: #fff;
}

.billing_history table .dropdown-menu {
  background: #004063;
  top: 34px !important;
  min-width: 220px;
}

.billing_history table .dropdown-menu::before {
  position: absolute;
  content: '';
  background: url(../images/drop_top_icon.png);
  width: 22px;
  height: 16px;
  top: -16px;
  right: 8px;
}

.billing_history table .dropdown-menu a {
  color: #fff;
  padding: 12px 10px;
  float: left;
  width: 100%;
  font-size: 14px;
}

.billing_history table .dropdown-menu a img {
  margin-right: 10px;
}

.billing_history table .dropdown-menu a:hover {
  background: #f9b42b;
}

.billing_history h4 {
  font-size: 18px;
  font-family: 'MontserratBold';
}

.xero_panel th .checkbox-label .checkbox-custom {
  top: 0;
}

.xero_panel .checkbox-container {
  text-align: left;
}

.box_head h4 {
  font-size: 18px;
  color: #004063;
  font-family: 'MontserratBold';
  margin: 0;
}

.box_head h4 span {
  font-size: 15px;
  font-style: italic;
  display: block;
  font-family: 'MontserratMedium';
  margin: 4px 0 0;
}

.box_head {
  padding: 15px;
}

.last_sync {
  text-align: right;
  font-family: 'MontserratBold';
}

.last_sync a {
  font-family: 'MontserratMedium';
  background: #004063;
  color: #fff;
  border-radius: 30px;
  padding: 5px 10px;
  display: inline-block;
  min-width: 130px;
  text-align: center;
}

.last_sync h6 {
  font-size: 13px;
  color: #004063;
}

.white_height {
  float: left;
  width: 100%;
  background: #fff;
  height: 15px;
}

.TrackingCategory,
.MerchantCategory {
  float: left;
  width: 100%;
}

.chartAccounts,
.TrackingCategory {
  border-bottom: 2px solid #f9b42b;
}

.scrollable {
  max-height: 350px;
  overflow-y: scroll;
}

.MerchantCategory.category-select-div .table-responsive {
  overflow: initial !important;
}

.MerchantCategory.category-select-div .table-responsive tbody {
  max-height: inherit !important;
  overflow: inherit !important;
}


.MerchantCategory .dropdown {
  max-width: 230px;
}

.MerchantCategory .dropdown-menu {
  left: 0 !important;
  top: 31px !important;
  width: auto;
  min-width: inherit;
  border-right: 2px solid;
  border-left: 2px solid;
  border-bottom: 2px solid;
  border-radius: 0;
  border-top: none;
}

.MerchantCategory .dropdown-menu li a {
  color: #004063;
  font-size: 13px;
  padding: 4px;
  display: block;
}

.NewCardPanel {
  padding: 0 25px;
}

.SelectCard {
  max-width: 286px;
  background: #fff;
  margin: 25px 15px;
  vertical-align: top;
  border-radius: 10px;
  box-shadow: 0 0 8px #eee;
  width: 100%;
  display: inline-block;
}

.card_title {
  background: #004063;
  padding: 15px;
  font-family: 'MontserratBold';
  color: #f9b42b;
  border-radius: 10px 10px 0 0;
  font-size: 16px;
  position: relative;
}

.Icon_close {
  position: absolute;
  top: -10px;
  cursor: pointer;
  right: -10px;
}

.bank_card li {
  display: block;
  float: left;
  width: 46%;
  margin: 0 2% 3%;
  text-align: center;
  border: 1px solid #ddd;
  min-height: 60px;
  line-height: 60px;
}

.bank_card li:hover,
.bank_card li.active {
  border: 1px solid #f9b42b;
  box-shadow: 0 0 8px #eee;
}

.card_listing {
  padding: 0 15px;
}

.card_search {
  margin: 10px 9px;
  font-family: 'MontserratMedium';
  position: relative;
}

.card_search input {
  border-radius: inherit;
}

.search_ico {
  position: absolute;
  top: 7px;
  right: 12px;
}

.credentials .card_title {
  text-align: center;
  font-family: 'MontserratRegular';
  color: #fff;
}

.credentials .back_link {
  float: left;
}

.SelectCard.credentials {
  background: #007cc3;
}

.bank_fields_box {
  padding: 20px 40px;
}

.bank_fields_box h4 {
  font-size: 16px;
  margin: 23px 0;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  line-height: 24px;
}

.bank_fields_box .form-group {
  position: relative;
}

.bank_fields_box .icon {
  position: absolute;
  top: 0;
  right: 10px;
  width: 11px;
  height: 19px;
  bottom: 0;
  margin: auto;
}

.bank_fields_box .form-control {
  height: 43px;
}

.btn.btn-submit {
  height: 43px;
  font-family: 'MontserratMedium';
  background: #1e8bc9;
  box-shadow: 0 0 8px #264d63;
  border-radius: 6px;
  color: #fff;
}

.reset_link_text {
  font-size: 12px;
  color: #46bcff;
  font-family: 'MontserratMedium';
  text-align: center;
  display: block;
}

.reset_link_text:hover {
  color: #fff;
}

/********************* Policy Page CSS End Here ******************************/


/********************* Add Member Page CSS Start Here ******************************/
.member_Panel {
  padding: 0 20px 20px;
}

.member_Panel .selection_box {
  padding: 15px;
  background: #fff;
}

.member_Panel .selection_box h4 {
  font-size: 14px;
  color: #f9b42b;
  text-transform: uppercase;
}

.member_Panel .selection_box h4 span {
  /* color: #064163; */
  text-transform: initial;
  margin-top: 5px;
}

.checkPanel {
  padding: 10px 0 0;
}

.checkPanel>label {
  min-width: 400px;
}

.checkPanel .checkbox-container {
  text-align: left;
  font-size: 14px;
  color: #004063;
}

.checkPanel>label {
  min-width: 285px;
  cursor: pointer;
  margin-bottom: 15px;
}

.checkPanel .checkbox-label {
  margin-right: 12px;
}

/********************* Add Member Page CSS Start Here ******************************/

/********************* Plans Page CSS End Here ******************************/
.page_title.Plans {
  background: #fff;
  box-shadow: 0 0 8px #eee;
  padding: 15px;
  margin: 0;
}

.page_title.Plans span {
  line-height: 38px;
}

.create_plan {
  background: #004063;
  border-radius: 30px;
  color: #f9b42b;
}

.create_plan:hover {
  background: #f9b42b;
  color: #004063;
}

.create_panel_fields {
  padding: 15px;
  font-family: 'MontserratMedium';
  background: #fff;
  box-shadow: 0 0 8px #ddd;
}

.create_panel_fields .input-group-append span.input-group-text {
  border-radius: inherit;
  background: #004063;
  color: #fff;
}

.create_panel_fields .input-group-append span.input-group-text.currency_control {
  padding: 0;
}

.create_panel_fields .input-group-text select {
  border: none;
  padding: 0px 20px 0 13px;
}

.create_panel_fields select {
  background: url("../images/select_aero_yellow.png") no-repeat right center #004063;
  color: #fff;
}

.create_panel_fields .form-control {
  height: 42px !important;
  border-radius: inherit;
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  cursor: inherit;
  display: block;
}

span.btn.btn-primary.btn-file {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
}

.create_panel_fields .both_btn_panel .btn {
  border-radius: 30px;
}

/********************* Plans Page CSS End Here ******************************/

/********************* My Accouunt Page CSS Start Here *********************/
.MyAccountPage {
  padding: 44px;
}

.my_account_left_info {
  text-align: center;
  margin-bottom: 15px;
  background: url(../images/my_account_left_top.png) no-repeat center top #fff;
  padding-top: 160px;
  box-shadow: 0 0 8px #eee;
  border-radius: 12px;
  overflow: hidden;
  background-size: 100%;
}

.left_info_image {
  display: inline-block;
  width: 104px;
  height: 104px;
  border: 2px solid #f9b42b;
  position: relative;
  background: #004063;
  border-radius: 50%;
  text-align: center;
}

.left_info_image img {
  max-height: 60px;
  max-width: 40px;
  position: absolute;
  width: 40px;
  height: 48px;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.circle_ico {
  position: absolute;
  bottom: 4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background: #f9b42b;
  border-radius: 50%;
  border: 2px solid #fff;
}

.my_account_left_info h5 {
  font-size: 18px;
  color: #f9b42b;
  font-family: 'MontserratBold';
  margin: 15px 0;
}

.my_account_left_info h5 span {
  display: block;
  font-size: 13px;
  color: #4c4c4c;
  font-family: 'MontserratRegular';
  margin: 5px 0;
}

.info {
  padding: 10px 30px;
}

.info label {
  display: block;
  font-size: 14px;
  color: #000101;
  text-align: left;
}

.info label span {
  font-size: 13px;
  color: #4c4c4c;
  font-family: 'MontserratRegular';
  min-width: 73px;
  text-transform: uppercase;
  display: inline-block;
}

.info label em {
  font-size: 13px;
  color: #4c4c4c;
  min-width: 30px;
  font-style: normal;
  display: inline-block;
}

.my_account_tabs {
  border-radius: 12px;
  overflow: hidden;
}

.my_account_tabs li.nav-item {
  position: relative;
  width: 50%;
}

.my_account_tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 14px;
  background: #004063;
  color: #f9b42b;
  font-size: 16px;
  font-size: 16px;
  font-family: 'MontserratMedium';
  text-align: center;
}

.my_account_tabs .nav-tabs .nav-link:hover,
.my_account_tabs .nav-tabs .nav-link.active {
  background: #f9b42b;
  color: #004063;
}

.my_account_tabs .both_btn_panel .btn {
  border-radius: 30px;
}

.user_img {
  width: 126px;
  height: 116px;
  position: relative;
  border-radius: 10px;
  border: 1px solid #000;
}

.personal_informations,
.UpdatePass {
  background: #fff;
  padding: 20px;
}

.person_desc {
  padding: 0 15px;
}

.person_desc h4 {
  font-family: 'MontserratMedium';
  font-size: 18px;
  color: #000;
  margin: 20px 0;
}

.my_account_tabs .nav-tabs .nav-link.active::before {
  position: absolute;
  content: '';
  background: url("../images/active_tab.png") no-repeat;
  width: 19px;
  height: 11px;
  margin: auto;
  bottom: -9px;
  left: 0;
  right: 0;
}

.myAccountFields {
  font-family: 'MontserratRegular';
}

.myAccountFields .form-control {
  font-size: 14px;
  height: 44px;
}

.user_img span {
  position: absolute;
  bottom: 4px;
  right: -14px;
  width: 28px;
  height: 28px;
  background: #004063;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
}

.user_img>img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main_wrapper.active .submenu .fa-angle-down {
  margin-top: -12px;
}

.main_wrapper.active #sidebar .logOut_btn {
  left: 4px;
}

/********************* My Accouunt Page CSS End Here *********************/

@media (min-width:1025px) {
  .footer {
    padding-left: 200px;
  }
}

@media (min-width:769px) {
  #wrapper {
    margin-left: 200px
  }

  .main_wrapper.active #wrapper {
    margin-left: 0;
    /* margin-left: 60px; */
  }

  .main_wrapper.active #sidebar {
    transform: translateX(-200px);
    /* width: 60px; */
    transition: 0.3s ease all;
  }

  /* .main_wrapper.active #sidebar span.nav-label {
    display: none;
  } */

  .main_wrapper.active .footer {
    margin-left: 0;
    /* margin-left: 60px; */
  }
}

@media (max-width:768px) {
  .main_wrapper.active #sidebar {
    transform: translateX(0);
    display: none;
  }

  .main_wrapper #sidebar {
    transition: 0.3s ease all;
  }

  /* .main_wrapper #sidebar span.nav-label {
    display: none;
  } */

  #header {
    padding-right: 0
  }

  .header_actions ul li:first-child {
    margin-right: 10px;
    padding: 0 10px;
  }
}

/* input.ng-pristine {
  background-color: yellow;
} */

/* input.ng-touched.ng-invalid {
  border-color: #fd397a;
  color: #fd397a;
} */

.ng-invalid.ng-dirty:not(:focus),
.ng-invalid.ng-touched:not(:focus) {
  /* border-color: #e74c3c; */
  border-color: #fd397a;
  /* color: #fd397a; */
}

label.ng-error {
  color: #fd397a !important;
}

/* input.ng-error{
  border-color: #fd397a;
} */

span.ng-error {
  color: #fd397a;
  margin-top: 5px;
}

/* input.ng-touched.ng-valid {
  background-color: green;
} */

.new-card-button {
  background: none !important;
  position: absolute !important;
  right: 0 !important;
  box-shadow: none !important;
  opacity: 0 !important;
}

a.newCard {
  position: relative;
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none !important;
}

.search-result {
  padding: 0 15px;
}

.search-result select#itemsBox {
  border: 1px solid #ccc;
  padding: 6px;
  border-radius: 4px;
  background: #fff;
}

.search-result input {
  border-radius: 4px;
  padding: 0 10px;
  border: 1px solid #ccc;
  height: 35px;
}

.page-item.active .page-link {
  background-color: #004063 !important;
  border-color: #004063 !important;
  color: #f9b42b !important;
}

.page-item .page-link {
  color: #004063;
}

.status-flag {
  cursor: pointer;
}

.sortImage {
  cursor: pointer;
}

.receiptModal .modal-dialog {
  max-width: 90%;
}

.receiptPreviewModal .modal-dialog {
  max-width: 90%;
}

/* Pagination */
.pagination_section {
  padding: 10px 15px;
}

.pagination_section .total_entries {
  margin-top: 7px;
}

.pagination_section .page_numbers {
  float: right;
}

/* Filters */

.filter_options ng-select {
  border: 2px solid #004063;
  padding: 0;
}

.filter_options .ng-select {
  min-height: 28px;
}

.filter_options .ng-select .ng-select-container {
  min-height: 28px;
}

.filter_options .ng-select .ng-select-container:after {
  display: none;
}

.filter_options .ng-select .ng-arrow-wrapper .ng-arrow {
  margin: -6px 2px;
  color: #164063;
}

.filter_options input,
select.form-control {
  height: 32px;
  border-radius: none;
}

.filter_options .ng-dropdown-panel {
  top: 31px !important;
  width: auto;
  background-color: #F4F4F4;
}



.ng-value-container {
  border-top: 0 !important;
  padding: 0 !important;
}

.filter_options .ng-select.ng-select-single .ng-select-container .ng-clear-wrapper {
  bottom: 2px !important;
}

.filter_options .ngb-dp-arrow.right .btn {
  min-width: inherit;
}

.filter_options .datepicker_section .dropdown-menu.show {
  min-width: 236px;
  border: none;
}

.ngb-dp-weekday {
  color: rgba(22, 64, 99, 0.91) !important;
}

.datepicker_section .btn-link {
  color: #164063;
}

.filter_options .input-group-append {
  position: absolute;
  top: 0;
  height: 28px;
}

.filter_options .datepicker_section .filter_datepicker {
  min-width: 136px;
  text-align: left;
  font-size: 14px;
  padding-right: 31px;
}

.filter_options .input-group-append {
  position: absolute;
  top: 0;
  height: 32px;
  right: 0;
  width: 28px;
  border-left: 2px solid #164063;
  z-index: 9;
}

.filter_options .input-group-append .btn {
  min-width: inherit;
  border-radius: 0;
  background: none;
  border: none;
  margin: 4px 4px 0;
}

.filter_options input.form-control.filter_datepicker,
.filter_options select.form-control {
  border: 2px solid #164063;
  border-radius: 0;
}

button.btn.btn-outline-secondary.calendar:hover {
  color: #164063;
}

.ng-dropdown-panel-items.scroll-host {
  background: #fff !important;
}

.ngb-dp-navigation-chevron {
  width: .75em !important;
  color: #164063 !important;
}

.ngb-dp-day .bg-primary {
  background-color: #004063 !important;
}

.label_form label {
  background: #164063;
  padding: 5px 10px;
  display: block;
  color: #f7b42d;
  margin-bottom: 0;
}

.label_form input {
  border: none;
  border-bottom: 0.5px solid #757575;
  border-radius: 0;
  align-items: baseline;
  min-height: 51.5px;
}

.label_form input:focus,
.label_form select:focus,
.label_form .ng-select-focused {
  box-shadow: none;
  border-bottom: 1px solid #f7b42d;
  outline: none;
}

.label_form .ng-dropdown-panel.ng-select-bottom {
  top: 51px;
}

.report_details .ng-dropdown-panel {
  top: 32px !important;
  width: auto !important;
  bottom: inherit;
}

.report_details .ng-select-container {
  min-height: 36px !important;
}

.ng-dropdown-panel {
  min-width: 130px;
}

.report_details .ng-select.ng-select-single .ng-select-container .ng-clear-wrapper {
  bottom: 10px !important;
  margin-left: 4px !important;
}


.category-select .ng-select-container::after {
  border-bottom: thin solid rgba(0, 0, 0, 0.42);
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  transition: border-color 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
}

.category-select .ng-arrow-wrapper .ng-arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid;
  margin: 0 4px;
  color: rgba(0, 0, 0, 0.54);
}

.category-select .ng-value {
  padding: 5px;
  background: #004063;
  margin: 0 5px 10px;
  border-radius: 7px;
  color: #f9b42b;
}

.category-select .ng-value-icon.left {
  font-size: 20px;
  line-height: 21px;
  margin: 2px 5px;
  background: whitesmoke;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 22px;
  color: firebrick;
}

.category-select .ng-value-label {
  font-size: 14px;
  vertical-align: 3px;
}

.category-select .ng-option {
  padding: 5px 0px 5px 15px;
  border-bottom: 1px solid #ccc;
}

.Receipts_Panel ul li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.log-user-name {
  color: #004063;
}

.log-new-value {
  color: #715726;
}

.log-expense-name {
  color: #8e2227eb;
}



.log-previous-value {
  color: #004063;
}

.category-select .ng-option.ng-option-selected {
  background: rgba(0, 64, 99, 0.25);
}

.category-select .ng-dropdown-panel-items.scroll-host {
  border: 1px solid #ccc;
}

.ng-dropdown-header {
  background: #004063;
  padding: 10px 0 10px 220px;
}

.ng-dropdown-footer {
  background: #f9b42b;
  padding-left: 10px;
}

ng-dropdown-panel .ng-dropdown-header {
  padding-left: 10px;
}

ng-dropdown-panel .ng-dropdown-header button.btn.btn-sm.btn-success {
  margin-right: 5px;
}

.fa.fa-star.checked {
  color: #e9b433;
}



.plan_details_panel label {
  background: #004063;
  display: block;
  padding: 10px;
  color: #fff;
}

.plan_details_panel span {
  font-size: 18px;
  padding: 0 0 0 15px;
  color: #000;
}

.plan_details_panel ul {
  margin: 10px 0 0;
}

.plan_details_panel li {
  display: block;
  border-bottom: 1px solid #ccc;
  padding: 6px 15px;
}

.plan_panel {
  background: #eee;
}

.CardField.CardField--ltr {
  top: 4px !important;
}


#sidebar li.nav-item.submenu ul li a:hover {
  background: #f9b42b;
  color: #004063;
}

#sidebar li.nav-item.submenu ul li a:hover img.img-fluid {
  filter: invert(1);
}

#sidebar li.nav-item.submenu ul li a:hover em img {
  filter: none;
}

#sidebar li.nav-item.submenu.privacy-menu a {
  padding-right: 15px;
}

.save-card-table a {
  color: #004063;
}

.save-card-table a:hover {
  color: #0e2e47;
}

.save-card-table span.expire-bx {
  font-size: 12px;
}

.save-card-table i:hover {
  color: #144063;
}

.save-card-table span.badge.badge-success {
  background: #004063;
  padding: 5px 10px;
}

.plan_panel em {
  background: #f8b42c;
  padding: 5px 10px;
  color: #000;
  border-radius: 4px;
}

.tooltip-inner {
  background-color: #004063 !important;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #004063 !important;
}

.card_details select.tb_select.form-control {
  background: url("/assets/images/select_aero.png") no-repeat right 15px !important;
  /* padding-right: 24px; */
  min-width: 104px;
}

.card_details a.btn {

  padding: 5px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 4px;
  margin: 8px 0 0;
  min-width: 60px;
}

.card_details a.btn.btn-danger {
  color: #fff !important;
}

.card_details .table thead th {
  vertical-align: top;
}

.card_details .table td:nth-child(2) {
  position: relative;
}

.card_details .table td:nth-child(2) span i.fa.fa-times-circle {
  position: absolute;
  right: -5px;
}

.card_details .ng-select .ng-select-container {

  min-height: auto;
}

.card_details input {
  height: 32px;
}

.card_details input::placeholder {
  font-size: 12px;
}

.card_details table th:nth-child(6) {
  width: 130px;
}

.card_details label.checkbox-label {
  float: none;
}

.profile-picdropdown button.dropdown-toggle {
  border: none;
  background: transparent;
}

.profile-picdropdown button.dropdown-toggle:focus {
  outline: none;
}

.profile-picdropdown .dropdown-menu.show {
  top: 35px !important;
}

.profile-picdropdown .dropdown-menu.show a.dropdown-item {
  border-bottom: 1px solid #ccc;
}

.profile-picdropdown .dropdown-menu.show a.dropdown-item:last-child {
  border-bottom: none;
}

.tooltip.show {
  opacity: 1 !important;
}

i.fa.fa-info-circle {
  color: #f9b42b;
}

.ngx-progress-bar.ngx-progress-bar-ltr {
  color: #F7B42B !important;
}

.team_member_table li .input-title {
  font-size: 12px;
  padding-left: 24px;
  line-height: 18px;
}

#sidebar ul li.policies_list a {
  font-size: 16px;
}

#sidebar ul li.policies_list #submenu2 li a {
  font-size: 14px;
}

#sidebar ul ul li.active a img {
  filter: invert(1);
}

.active_policy {
  font-size: 18px;
  color: #F7B42B;
  text-align: center;
}

span.trial_days {
  padding: 6px;
}

span.trial_value {
  padding: 0px;
}

h2,
.h2 {
  font-size: 22px !important;
}

.redirectionMessageModal p {
  font-weight: normal !important;
  font-family: arial;
  margin-top: 15px;
}

.checkbox-label input:checked~.checkbox-custom:disabled {
  background-color: rgba(255, 255, 255, 0.349);
  border: 2px solid #aaadafab;
}

.ng-dropdown-panel.ng-select-top {
  bottom: auto !important;
}

.update_expense_form .ng-dropdown-panel .ng-dropdown-panel-items .ng-option input {
  margin: -2px 4px 0px 0px !important;
}

.update_expense_form .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
  display: flex !important;
}

.update_expense_form .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value {
  margin: 17px 0.4375em 0.4375em 0 !important;
  height: 26px !important;
}

span.d_block.to img {
  float: right;
  height: 15px;
  margin: 3px;
  cursor: pointer;
}

.integration_status .filter_options .ng-dropdown-panel {
  width: 100% !important;
}

.tracking_category_column .ng-select .ng-select-container {
  min-height: 38.5px !important;
}

.page_content a.resyncbtn:hover {
  color: #F7B42B;
}


/*********************************************/
em span {
  font-style: normal;
}

.header_actions img {
  margin-right: 8px;
}

.table td a.btn.btn-primary {
  font-size: 15px;
  text-transform: capitalize;
  border-color: #004063;
}

.table td a.btn.btn-primary:hover {
  border-color: #f9b42b;
}

.modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - 4rem);
}

.search-result input:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #004063;
}

.footer a:hover,
.Account_link a:hover,
.forgot_link a:hover {
  color: #004063;
}

.formPlaidGroup {
  margin: 15px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 0 8px #eee;
  border: 1px solid #eee;
}

.formPlaidGroup .both_btn_panel {
  padding-top: 0;
}

.header_actions ul li a.link-page:hover {
  background: #f9b42c;
  color: #004063 !important;
}

.header_actions ul li a.link-page:hover img {
  filter: invert(10);
}

.header_actions ul li a.link-page.active:hover {
  background: #004063;
  color: #f9b42c !important;
}

.header_actions ul li a.link-page.active:hover img {
  filter: invert(1);
}

.app-sidebar__toggle {
  position: relative;
}

#Integrations>em,
#Cards>em,
#Admin>em,
#Billing>em {
  font-style: normal;
}

.selection_box .btn {
  font-size: 15px;
  border: none;
  text-transform: capitalize;
  margin: 0 !important;
}

.receipt-input.input-group input,
.receipt-input.input-group span {
  width: 100% !important;
  margin: 0 0 5px;
  padding: 5px;
  border-radius: 5px !important;
  font-size: 14px;
}

.card-input-filds input {
  max-width: 134px;
}

.my_account_tabs .btn.btn-primary:hover {
  background: #f9b42b;
  border-color: #f9b42b;
}

/***************** Responsive for admin ******************/
@media (max-width:768px) {
  .header_actions ul li {
    margin: 0 0 0 8px;
  }

  .header_actions ul li a.link-page {
    padding: 14px 22px;
  }

  .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value {
    white-space: inherit !important;
  }

  .tabs_panel .nav-item {
    width: 19% !important;
  }

  .tabs_panel .nav-item a {
    font-size: 14px;
  }
}

@media (max-width:640px) {
  #header {
    position: static;
    height: auto;
    float: left;
    width: 100%;
    margin-bottom: 15px;
  }

  html body {
    padding-top: 0;
  }

  .header_actions {
    margin: 20px 0;
    float: left;
  }

  .header_actions ul li a.link-page {
    padding: 11px 15px;
  }

  .header_actions ul li {
    margin: 0;
    padding: 0 4px;
  }

  .header_actions ul li:first-child {
    margin-right: 0;
  }

  .MyAccountPage {
    padding: 0;
  }

  .my_account_tabs .nav-tabs .nav-link {
    font-size: 14px;
  }

  .tabs_panel .nav-item {
    width: auto !important;
    margin-right: 1px;
  }

  .tabs_panel .nav-item a {
    font-size: 11.5px;
    padding: 14px 3px;
  }

  .both_btn_panel .btn {
    min-width: 105px;
  }

  .search-result.my-2 {
    margin: 15px 0;
    float: left;
    width: 100%;
    padding: 0;
  }

  .page_title {
    float: left;
    width: 100%;
    padding: 0 15px;
  }

  .search-result input {
    max-width: 133px;
  }

  .ParentGroupTable th,
  .ParentGroupTable td {
    width: auto !important;
  }

  .ng-dropdown-header .btn {
    margin: 5px 0;
  }

  .table-responsive .table td .btn {
    margin-bottom: 5px;
  }

  .tabs_panel .nav-item a.active::before {
    bottom: -6px;
  }
}

@media (max-width:360px) {
  .header_actions ul li a.link-page {
    padding: 11px 10px;
    font-size: 12px;
  }

  .header_actions img {
    margin-right: 0px;
  }

  .tabs_panel .nav-item a {
    font-size: 8.5px;
    padding: 11px 6px;
  }

  .create_plan {
    font-size: 11px;
    min-width: inherit;
  }

  .both_btn_panel .btn {
    min-width: 90px;
  }
}

/***************** Responsive for admin end ******************/


/***************** Responsive for Client ******************/
@media (max-width:1024px) {
  .PolicyTabs li.nav-item {
    width: 24%;
  }

  .Reports_detail.report_details .table-responsive {
    overflow-x: auto;
  }
}

@media (max-width:768px) {
  .tabs_panel.Expenses .nav-item {
    width: 30% !important;
  }

  .info {
    padding: 10px;
  }

  .MyAccountPage {
    padding: 15px;
  }

  .my_account_left_info {
    padding-top: 73px;
  }

  .table-custom {
    overflow-x: auto;
  }

  .table-custom th {
    min-width: 200px;
  }

  .card_details .table thead th {
    min-width: 155px;
  }

  .page_content {
    padding: 15px 0;
  }

  .team_member_panel {
    overflow-x: auto;
  }

  .team_member_table .row {
    flex-wrap: nowrap;
  }
}


@media (max-width:640px) {

  .logo_panel,
  .header_actions {
    width: 100%;
  }

  .modal-header .close {
    right: 11px;
  }

  .app-sidebar__toggle {
    float: right;
  }



  .card {
    margin-bottom: 20px;
  }

  .checkbox-container {
    text-align: left;
  }

  .setting_admin_check>label {
    font-size: 13px;
  }

  .accordionBx::before {
    display: none;
  }

  .policy_top .selection_box {
    margin-bottom: 10px;
  }

  .plan_details_panel span {
    font-size: 16px;
    padding: 0 4px 0 6px !important;
  }
}





::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 8px #f9b42b;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 8px #004063;
}

.tabs_panel.Expenses #Expenses .filter_options .table-responsive {
  overflow: initial;
}

.show.tooltip div {
  color: #f7b42d !important;
}

.p_r_0 {
  padding-right: 0 !important;
}

.Reports_detail .selection_box select {
  font-size: 13px;
  background: #f7b42b;
  color: #164063;
  padding-right: 18px;
  padding-left: 5px;
}

.edit_selected h6 {
  font-size: 14px;
  color: #004063;
}

.Reports_detail .selection_box i {
  position: absolute;
  top: 12px;
  right: 22px;
}

@media (min-width:992px) {
  [aria-labelledby="modal-card"] .modal-dialog {
    max-width: 630px;
  }
}

[aria-labelledby="modal-card"] table td .ngb-dp-arrow .btn {
  min-width: initial;
}

[aria-labelledby="modal-card"] .table-responsive {
  min-height: 280px;
}

i.fas.fa-sort-up,
i.fas.fa-sort-down {
  color: #788C99;
}

i.fas.fa-sort-up.active,
i.fas.fa-sort-down.active {
  color: #F7B42B;
}

th img.img-fluid {
  filter: brightness(0) invert(1);
  min-width: 18px;
}

span.sorting {
  display: inline-block;
  height: 9px;
  position: relative;
  width: 23px;
  vertical-align: 6px;
  text-align: center;
}

span.sorting i {
  position: absolute;
  top: 0;
  height: 11px;
}

span.sorting i.fa-sort-down {
  top: 6px;
}

#Expenses table th {
  vertical-align: middle;
}

.edit_selected h6 {
  display: inline;
}

.edit_selected a {
  margin-left: 5px;

}

.form-group.tp_m {
  margin-top: 27px;
}

button.btn.btn-add {
  border: 1px solid #ccc;
}
