.white_bg {
  background-color: #fff;
}

.tranlist_row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px 0px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  outline: 0px solid #d0d2d2;
  cursor: pointer;
}

.tranlist_row:after {
  clear: both;
}

.tranlist_row:after,
.tranlist_row:before {
  display: table;
  content: " ";
}

.tranlist_row:hover {
  border-radius: 4px;
  box-shadow: inset 0px 0px 0px 1px #00c1d5;
}

.tranlist_header:hover {
  box-shadow: 0px 0px 0px 0px #d0d2d2;
}

.tranlist_header {
  border: none !important;
  border-bottom: 1px solid #dedede !important;
  margin: 0px 0px;
  padding: 15px 0px;
}

.tranlist_cell {
  font-size: 14px;
  color: #454545;
  padding: 10px 20px;
  white-space: nowrap;
  position: relative;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-transform: none;
  min-width: 23%;
}

.tranlist_header .tranlist_cell {
  text-transform: uppercase;
  padding-top: 0px;
  padding-bottom: 0px;
}

.tranlist_cell:first-child {
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.tranlist_cell:last-child {
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 40px;
}

.tranlist_cell:first-child {
  min-width: 27%;
  padding-right: 0;
}

.tranlist_cell:last-child {
  min-width: 27%;
  padding-left: 0;
}

.five_col_row .tranlist_cell {
  min-width: 19.33%;
}

.five_col_row .tranlist_cell:first-child {
  min-width: 24%;
}

.five_col_row .tranlist_cell:last-child {
  min-width: 18%;
}

.tranlist_header .tranlist_cell:first-child {
  /* padding-left: 40px; */
  padding-left: 0px;
}

/* .tranlist_header .tranlist_cell:last-child {
    padding-right: 30px;
} */

.tranlist_mobile_data {
  display: none;
  opacity: 0.6;
  font-size: 80% !important;
  line-height: 100%;
  white-space: nowrap;
}

.mrk_badge {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 0;
  text-align: center;
}

.mrk_badge:after {
  content: "";
  position: absolute;
  /* top: -25px; */
  /*top: -40px;*/
  top: -20px;
  left: 20px;
  border-left: 1px dotted #dedede;
  height: calc(100% + 50px);
  z-index: -1;
}

.tranlist_row:last-child .mrk_badge:after {
  height: calc(100% + 25px);
}

.tranlist_cell_txt {
  display: inline-block;
  vertical-align: middle;
  max-width: 138px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#budget_modal .tranlist_cell_txt {
  overflow: visible;
}

.cst_tranlist_single_container {
  margin-bottom: 25px;
  padding-left: 1px;
  padding-right: 1px;
}

.Redeem_bg_btn,
.see_detail_btn {
  border: 0px;
  float: left;
  height: 100%;
  width: 50%;
  text-align: center;
  white-space: normal;
  -webkit-transition: width 0.3s ease-in;
  -moz-transition: width 0.3s ease-in;
  -ms-transition: width 0.3s ease-in;
  transition: width 0.3s ease-in;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  line-height: 13px;
  width: 100px;
  padding: 6px;
  margin: 0px;
  -webkit-transition: width 0.3s ease-out;
  -moz-transition: width 0.3s ease-out;
  -ms-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}

.Redeem_bg_btn {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #fff;
  background: #00c1d5;
  background: -moz-linear-gradient(top, #52d4e3 0%, #00afc2 100%);
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, #52d4e3),
    color-stop(100%, #00afc2)
  );
  background: -webkit-linear-gradient(top, #52d4e3 0%, #00afc2 100%);
  background: -o-linear-gradient(top, #52d4e3 0%, #00afc2 100%);
  background: -ms-linear-gradient(top, #52d4e3 0%, #00afc2 100%);
  background: linear-gradient(to bottom, #52d4e3 0%, #00afc2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52d4e3', endColorstr='#00afc2', GradientType=0);
}

.see_detail_btn {
  color: #454545;
  background: #e5f9fb;
}

.Redeem_bg_box_gray {
  background: #d1d1d1;
  background: -moz-linear-gradient(left, #d1d1d1 0%, #ededed 100%);
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, #d1d1d1),
    color-stop(100%, #ededed)
  );
  background: -webkit-linear-gradient(left, #d1d1d1 0%, #ededed 100%);
  background: -o-linear-gradient(left, #d1d1d1 0%, #ededed 100%);
  background: -ms-linear-gradient(left, #d1d1d1 0%, #ededed 100%);
  background: linear-gradient(to right, #d1d1d1 0%, #ededed 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d1d1d1', endColorstr='#ededed', GradientType=1);
  color: #454545 !important;
}

.Redeem_bg_box_green {
  background: #03daaf;
  background: -moz-linear-gradient(left, #03daaf 0%, #00af8c 100%);
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, #03daaf),
    color-stop(100%, #00af8c)
  );
  background: -webkit-linear-gradient(left, #03daaf 0%, #00af8c 100%);
  background: -o-linear-gradient(left, #03daaf 0%, #00af8c 100%);
  background: -ms-linear-gradient(left, #03daaf 0%, #00af8c 100%);
  background: linear-gradient(to right, #03daaf 0%, #00af8c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#03daaf', endColorstr='#00af8c', GradientType=1);
}

.gray_border_Redeem {
  border-left: 5px solid #a2a2a2;
}

.green_border_Redeem {
  border-left: 5px solid #50e3c2;
}

.blue_border_Redeem {
  border-left: 5px solid #00c1d5;
}

.cell_expand {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  height: auto;
  z-index: 5;
  display: inline-block;
  padding-right: 15px;
}

.do_redeemed {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f2fcfd;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  font-weight: 900;
}

.do_redeemed em,
.do_redeemed i {
  font-style: normal;
}

.cell_expand.active .do_redeemed em,
.cell_expand .do_redeemed i {
  display: none;
}

.cell_expand.active .do_redeemed i {
  display: block;
}

.gray_do_redeemed {
  background-color: #a2a2a2;
  color: #fff;
}

.lt_gray_do_redeemed {
  background-color: #f3f3f3;
}

.green_do_redeemed {
  background-color: #50e3c2;
  color: #fff;
}

.blue_do_redeemed {
  background-color: #00c1d5;
  color: #fff;
}

.redem_btn_box {
  height: 100%;
  width: 0px;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.cell_expand.active .redem_btn_box {
  width: auto;
}

.cell_expand .Redeem_bg_btn,
.cell_expand .see_detail_btn {
  width: 0px;
}

.cell_expand.active .Redeem_bg_btn,
.cell_expand.active .see_detail_btn {
  width: 100px;
}

.sm_tip {
  height: 22px;
  width: 22px;
  margin-left: 3px;
}

/*--tooltips--*/

.new_info_tip {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.info_tip_link {
  display: inline-block;
  vertical-align: middle;
}

.info_tip {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  /*#F7F7F7;*/
  -webkit-border-radius: 5px;
  border-radius: 3px;
  min-width: 150px;
  padding: 10px 10px 4px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  color: #fff;
  /* #414042; */
  box-shadow: 2px 3px 1px 0px rgba(0, 0, 0, 0.09);
  margin-bottom: 10px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
  text-align: center;
}

.info_tip:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(0, 0, 0, 0.7);
}

.info_tip * {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.info_tip p {
  margin: 0 0 4px;
}

.tip_close {
  position: absolute;
  right: 4px;
  top: 9px;
  background-color: #e3e2e2;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  font-size: 7px;
  text-transform: uppercase;
  text-align: center;
  width: 13px;
  height: 13px;
  line-height: 15px;
  cursor: pointer;
}

.tip_close:hover {
  background-color: #000;
}

/*--end--*/

.sub_txt {
  font-family: "Axiforma-Medium";
  color: #454545;
}

.strike_text {
  text-decoration: line-through;
  margin-left: 3px;
  margin-right: 3px;
  opacity: 0.6;
  color: #a2a2a2;
  margin-right: 20px;
}

.single_select_item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flx_lft_align {
  margin-right: 20px;
  float: left;
}

.flx_rt_align {
  margin-left: 20px;
  float: right;
}

.single_select_item .btn-group.bootstrap-select {
  width: 170px !important;
}
.single_select_item_new .btn-group.bootstrap-select {
  width: 195px !important;
}

.single_select_item.download_btn > ul {
  width: 100%;
}

.single_select_item.download_btn .dropdown a.dropdown-toggle {
  padding-right: 40px;
  border: 1px solid #ccc;
  line-height: 38px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single_select_item .dropdown-menu > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
}

.single_select_item .bootstrap-select.btn-group .dropdown-menu li a {
  font-size: 13px;
}

.single_select_item .bootstrap-select.btn-group .dropdown-menu li a:hover,
.single_select_item .bootstrap-select.btn-group .dropdown-menu li a:focus,
.single_select_item .bootstrap-select.btn-group .dropdown-menu li a {
  background-color: transparent;
}

.single_select_item .bootstrap-select.btn-group .dropdown-menu li a:hover,
.single_select_item .bootstrap-select.btn-group .dropdown-menu li a:focus {
  color: #00c1d5;
}

.single_select_item .new-on-off {
  margin: 0;
}

.single_select_item .selectpicker {
  background-color: transparent !important;
}

.single_select_item .bootstrap-select.btn-group .btn .caret {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  border: 0;
  height: 15px;
  width: 16px;
  margin-top: 0px;
  vertical-align: middle;
  background: url(../images/arow.png) no-repeat;
  background-position: center;
  background-size: contain;
}

.single_select_item .bootstrap-select > .btn {
  padding-right: 40px;
}

.tab_search {
  position: relative;
}

.tab_search,
.inline_tab_menu {
  display: inline-block;
  vertical-align: middle;
}

.inline_tab_menu {
  font-family: "Axiforma_Regular";
}

.tab_search {
  margin-left: 35px;
}

.search_toggle_btn {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.search_toggle_btn svg {
  height: 100%;
  width: 100%;
  stroke: none;
  stroke-width: 1px;
  fill: none;
  color: #00c1d5;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.search_toggle_btn svg:hover {
  color: #21dbef;
}

.tab_search_inner {
  margin-left: -25px;
  padding-left: 25px;
  padding-right: 25px;
  display: block;
  position: absolute;
  top: -8px;
  left: 100%;
  width: 0px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: #fff;
  z-index: 100;
}

.tab_search_inner.open {
  width: 300px;
  border-bottom: 2px solid #00c1d5;
}

.tab_search .form-control {
  height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  box-shadow: none;
  line-height: 40px;
  font-size: 14px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
  border: 0px;
  box-shadow: none !important;
  outline: 0 !important;
  font-family: "Axiforma_Light";
}

.pg_srch_close {
  color: #cccccc;
  display: none;
  vertical-align: middle;
  height: 13px;
  width: 13px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0px;
  box-shadow: none !important;
  outline: 0 !important;
}

.pg_srch_close svg {
  fill: currentColor;
  height: 100%;
  width: auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pg_srch_close:hover {
  color: #ff8c6c;
}

.tab_search_inner.open .pg_srch_close {
  display: inline-block;
}

.dropdown_function_outer {
  padding-top: 0px;
}

.new_dg_modal .modal-dialog {
  width: 640px;
}

.new_dg_modal .modal-content {
  box-shadow: none !important;
  border: 1px solid #d0d2d2 !important;
  border-radius: 6px !important;
}

.new_dg_modal .modal-header .close {
  position: absolute;
  right: 0;
  top: 0;
  margin: 25px 20px;
}

.new_dg_modal .modal-header .close:hover {
  background-color: #00c1d5;
}

.new_dg_modal .modal-header {
  padding-top: 20px;
  padding-bottom: 20px;
}

.new_dg_modal .modal-title {
  margin-top: 5px;
}

.small_point_tag {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 8px 0px 0px;
  height: 20px;
  width: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/brim_point.png");
}

.transDate span {
  display: inline-block !important;
  vertical-align: middle;
}

.transDateDetails span {
  display: inline-block !important;
  vertical-align: middle;
}

.new_dg_modal .balance_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.new_dg_modal .balance_area .transaction_pic {
  margin-right: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
}

.new_dg_modal .balance_area .balance_area_cell {
  margin-left: auto;
}

/* .muted_txt {
    opacity: .7;
} */
.muted_txt {
  color: #454545;
}
.muted_txt_new {
  color: #9e9e9e;
}

.new_dg_modal .merNameNew label {
  margin: 5px auto 7px;
}

.new_dg_modal .merNameNewdetails label {
  /*margin: 5px auto 7px;*/
  margin: 1px auto 4px;
  font-size: 25px;
  color: #414042;
  font-family: "Axiforma-Book";
}

.new_dg_modal .icon_content .transDate {
  letter-spacing: 1.2px;
}

.new_dg_modal .icon_content .transDateDetails {
  letter-spacing: 1.2px;
  font-size: 14px;
  font-family: "Axiforma_light";
}

.mb0 {
  margin-bottom: 0;
}

.mt0 {
  margin-top: 0;
}

.px40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.gray_bg {
  background-color: #f7f7f7;
}

.modal_block-section {
  font-size: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #454545;
}

.modal_block-section .bold_txt {
  font-family: "Axiforma-Book";
}

.modal_block-section .Xtra_bold_txt {
  font-family: "Axiforma_Bold";
}

.new_continue_area_outer span {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  color: #414042;
  margin-top: -10px;
}

#Activity_Past_Instal_Modal .new_continue_area_outer span {
  margin-top: 0px;
}

.inner_continue_area_row {
  padding: 3px 0px;
}

.continue_new_area_row {
  color: #414042;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.continue_new_area_row:last-child {
  border-bottom: 0px;
}

.lft_new_continue_area,
.rt_new_continue_area {
  margin-bottom: 5px;
}

.lft_new_continue_area {
  width: 70%;
  float: left;
  text-align: left;
}

.rt_new_continue_area {
  width: 30%;
  float: right;
  text-align: right;
}

.bold_txt {
  font-family: "Source Sans Pro", sans-serif;
}

.title_continue_area {
  margin-bottom: 5px;
  width: 100%;
}

.inline_progress {
  display: inline-block;
  vertical-align: middle;
  float: none;
  clear: both;
  margin-right: 10px;
}

.sm_pic {
  height: 22px;
  width: 22px;
  margin-right: 5px;
  display: inline-block;
  margin-top: -4px;
}

.blue_txt {
  color: #004070 !important;
  text-decoration: underline !important;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
}
.blue_txt:hover {
  font-weight: 700 !important;
}
.close_txt_btn {
  background-color: transparent !important;
  color: #454545 !important;
  text-decoration: underline !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.close_txt_btn:hover {
  color: #004070 !important;
  font-weight: 700;
}

.brim_points_box {
  font-size: 12px;
  margin-top: 6px;
  line-height: normal;
  color: #414042;
}

.brim_points_box span {
  color: #414042 !important;
  font-size: 16px !important;
  letter-spacing: normal !important;
  line-height: normal;
}

.modal_white_backdrop {
  background: #fff !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.right_activity_tag {
  float: left;
  margin-top: 3px;
  max-width: 95px;
  text-transform: uppercase;
  text-align: right;
}

.sm_text {
  font-size: 11px;
}

.right_activity_panel_lt,
.right_activity_panel_rt {
  float: left;
  min-width: 185px;
}

.right_activity_panel_rt {
  margin-left: 0px;
}

.right_activity_panel_lt:nth-child(2n) {
  margin-left: 20px;
}

.right_activity_panel_lt span {
  color: #454545;
  font-size: 11px;
  letter-spacing: 1px;
  display: inline-block;
  vertical-align: middle;
}

.search_toggle_btn {
  border-radius: 50%;
  height: 16px;
  width: 16px;
  background-color: transparent;
  line-height: 20px;
  text-align: center;
  position: relative;
  z-index: 150;
}

.installment_Uppersection .merNameNew label {
  color: #414042;
  font-weight: 400;
}

.installment_Uppersection .cell_amount {
  color: #414042;
  font-size: 24px;
}

.installment_Uppersection .cell_amount small {
  font-size: 13px;
  display: block;
  text-transform: capitalize;
}

.radio_right_new {
  float: right;
  width: 65%;
  font-size: 12px;
  color: #4a4a4a;
  text-align: right;
  font-weight: 400;
}

.radio_data_row {
  margin: 0;
  margin-bottom: 10px;
}

.radio_data_row:last-child {
  margin-bottom: 0px;
}

.lft_points {
  width: 60%;
  float: left;
}

.rt_points {
  width: 40%;
  float: right;
}

.radio_right_new strong {
  font-family: "Axiforma_regular";
  font-weight: 400;
  margin: 0;
  font-size: 13px;
}

.new_amount_cell:after {
  clear: both;
}

.new_amount_cell:after,
.new_amount_cell:before {
  display: table;
  content: " ";
}

.new_amount_cell {
  height: auto;
  padding: 0px;
  margin: 0px;
  background-color: transparent;
  border: 0px;
}

.fake_radio {
  height: 0px !important;
  width: 0px !important;
  box-shadow: none !important;
  padding: 0px !important;
  margin: 0px !important;
}

.fake_radio:before {
  left: 20px !important;
  height: 19px !important;
  width: 19px !important;
}

.setup_install .new_amount_cell span {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

.amount_cell:hover span {
  color: inherit !important;
}

.big_radio_inner {
  position: relative;
  border: 1px solid #e3e4e5;
  padding: 13px 20px 13px 60px;
  background: #fbfbfb;
  margin-bottom: 20px;
  border-radius: 5px;
}

.new_dg_modal .instalmentmessage {
  font-size: 14px;
  color: #414042;
  margin: 15px auto;
}

.new_dg_modal .continue_btn {
  min-width: 175px;
  padding: 13px 20px;
}

.custom_continue_area {
  color: #414042;
}

.custom_continue_area .continue_area_row {
  border-bottom: 0px;
  padding: 6px 0px;
}

.instalmentmessage p {
  line-height: normal;
}

.new_dg_modal .sl_separator {
  margin-left: 3px;
  margin-right: 3px;
}

.setupinstallmentsuccess .continue_area_row {
  border-bottom: 0px;
}

.setupinstallmentsuccess .after_continue_area {
  margin: 40px auto 20px;
  max-width: 400px;
}

.mp_success .setupawsome h4 {
  color: #00e39d;
  font-size: 28px;
  font-family: "Axiforma_regular";
}

.new_dg_modal .setupinstallamountpay {
  font-size: 36px;
  color: #000;
}

.new_dg_modal .setupinstallamountpay sub {
  color: #454545;
  font-size: 13px;
  bottom: 2px;
}

.setuppaying_top {
  color: #454545;
  font-size: 14px;
  margin-bottom: 6px;
}

.cur_bal {
  vertical-align: top !important;
  margin-top: 16px;
}

.dots_chk {
  display: inline-block;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  vertical-align: middle;
  line-height: 22px;
  background-color: #d0d2d2;
}

.blue_dots_chk {
  background-color: #00c1d5;
}

.statement_align_col .mrk_badge {
  width: auto;
  height: auto;
}

.statement_align_col .mrk_badge:after {
  content: none;
  display: none;
}

.statement_align_col .tranlist_cell_txt {
  max-width: 150px;
}

.statement_align_col .tranlist_header .tranlist_cell {
  white-space: normal;
  font-size: 12px;
}

.statement_align_col .tranlist_header .tranlist_cell:first-child {
  padding-left: 55px;
}

.statement_align_col .gray_do_redeemed {
  background-color: #efefef;
  color: #414042;
}

.statement_align_col .tranlist_row .tranlist_cell,
.statement_align_col .tranlist_header .tranlist_cell {
  min-width: 28%;
}

.statement_align_col .tranlist_header .tranlist_cell:first-child,
.statement_align_col .tranlist_row .tranlist_cell:first-child {
  min-width: 35%;
}

.statement_align_col .tranlist_header .tranlist_cell:last-child,
.statement_align_col .tranlist_row .tranlist_cell:last-child {
  min-width: 22%;
}

.statement_align_col .tranlist_row .tranlist_cell:nth-last-child(2),
.statement_align_col .tranlist_header .tranlist_cell:nth-last-child(2) {
  min-width: 15%;
}

.custom_breadcrumb {
  padding: 0;
  margin-bottom: 30px;
  background-color: transparent;
  border-radius: 0px;
}

.custom_breadcrumb .breadcrumb-item {
  color: #454545;
  font-size: 13px;
  line-height: 18px;
  line-height: 100%;
}

.custom_breadcrumb > li + li:before {
  padding: 0 8px;
  color: #00c1d5;
  content: "\f105";
  font-family: "FontAwesome" !important;
  font-size: 14px;
  line-height: 18px;
}

.custom_breadcrumb .breadcrumb-item a {
  line-height: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  display: inline-block;
  vertical-align: middle;
}

.custom_breadcrumb .breadcrumb-item.active {
  font-family: "Axiforma-Book";
}

.lft_state_data_inf {
  float: left;
}

.rt_state_data_inf {
  float: right;
}

.state_data_cap {
  font-size: 24px;
  color: #00c1d5;
  display: inline-block;
  vertical-align: middle;
}

.state_data_txt {
  font-size: 16px;
  color: #414042;
  font-family: "Axiforma-Book";
  display: inline-block;
  vertical-align: middle;
}

.state_data_detail_sec {
  margin-bottom: 30px;
}

.statement_detail_data_container {
  padding-bottom: 25px;
  border-bottom: 1px solid #efefef;
}

.statement_detail_data_container .left_activity {
  max-width: 70%;
}

.statement_detail_data_container .right_activity {
  max-width: initial;
}

.statement_detail_data_container .left_activity h3 {
  margin-top: 6px;
}

.statement_detail_data_container .make_btn {
  background-color: transparent;
  border: 1px solid #00c1d5;
  color: #00c1d5;
  font-size: 12px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.statement_detail_data_container .make_btn:hover {
  background-color: transparent;
  border: 1px solid #00c1d5;
  color: #00c1d5;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.statement_detail_data_container .make_btn img {
  height: 13px;
}

.statement_tg {
  color: #414042;
  font-size: 12px;
}

.viewStatement_align_col .five_col_row .tranlist_cell:last-child {
  padding-right: 0px !important;
}

.mt60 {
  margin-top: 60px;
}

.statement-back .make_btn {
  min-width: 175px;
  display: inline-block;
  max-width: 175px;
  float: none !important;
  margin: 0px;
}

.statement_detail_data_container .continue_new_area_row {
  padding: 0px;
  margin-top: 30px;
}

.statement_detail_data_container .right_activity_panel_rt {
  margin-top: 30px;
}

.brim_embs_card {
  border-radius: 20px;
  position: relative;
  font-size: 0;
  overflow: hidden;
}

.card_usr_name_area {
  margin-top: 5px;
}
.lock_card_overlay {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  /* background-color: rgba(0, 0, 0, 0.67); */
  background-color: rgba(69, 69, 69, 0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 45px 45px;
  z-index: 10;
}

.brim_lock_card .lock_card_overlay {
  display: block;
}

.hidden_txt_btn span {
  display: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

.card_top_sec {
  background-color: #f7f7f7;
  padding: 40px 25px;
}

.card_bottom_sec {
  background-color: #fff;
  padding: 30px 0px;
}

.card_top_lft_sec h3 {
  font-weight: 400;
  font-size: 24px;
  color: #454545;
}

.card_top_rt_sec .right_activity_panel_rt {
  margin-top: 22px;
}

.dashboard_row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.brim_left_flex {
  margin-right: auto;
  width: 400px;
  padding: 0px 20px;
  overflow: hidden;
  position: relative;
}

.brim_card_slider .slick-arrow {
  background-color: transparent;
  border: 0px;
  padding: 0px;
  margin: 0px;
  font-size: 25px;
  color: #454545;
  opacity: 0.6;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.card_nxt {
  right: -20px;
}

.card_prev {
  left: -20px;
}

.brim_right_flex {
  margin-left: auto;
}

.brim_left_flex,
.brim_right_flex,
.brim_center_flex {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.brim_center_flex {
  padding: 0px 25px;
  margin-top: -22px;
}

.brim_card_option {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  text-align: center;
  position: relative;
  width: 310px;
}

.brim_card_single_option {
  width: 33.33%;
  float: left;
  font-size: 14px;
  color: #454545;
  padding: 0px 10px;
  position: relative;
  z-index: 2;
}

.card_option_img {
  width: 52px;
  height: 55px;
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
  background-color: #a2a2a2;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: none;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.card_option_img:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.lock_crd {
  background-image: url("../images/crd_lock_off.png");
  background-size: 26px 28px;
}

.lock_online {
  background-image: url("../images/lock_online_off.png");
  background-size: 40px 40px;
}

.lock_foreign {
  background-image: url("../images/lock_foreign_off.png");
  background-size: 40px 40px;
}

.brim_card_single_option.active .lock_crd {
  background-image: url("../images/lock_crd.png");
  background-size: 25px 28px;
}

.brim_card_single_option.active .lock_online {
  background-image: url("../images/lock_online.png");
  background-size: 28px 28px;
}

.brim_card_single_option.active .lock_foreign {
  background-image: url("../images/lock_foreign.png");
  background-size: 28px 28px;
}

.card_option_label {
  margin: 8px auto 0px;
  white-space: nowrap;
  font-weight: 400;
  color: #454545;
  font-size: 11px;
}

.brim_card_single_option.active .card_option_img {
  background-color: #00c1d5;
}

.brim_card_option .ctrl_anchor {
  position: absolute;
  right: 0px;
  top: 0px;
  margin-right: 6px;
  margin-top: 6px;
}

.brim_card_option .lft_cTooltip {
  max-width: 150px;
}

.brim_make_pay .other_value_cell {
  float: none;
  width: 100%;
  padding: 0px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #414042;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.brim_make_pay .other_value_cell:last-child {
  margin-bottom: 0px;
}

.lft_list_value_cell {
  width: 220px;
  float: left;
  text-align: left;
}

.rt_list_value_cell {
  overflow: hidden;
}

.card_top_rt_sec .currency {
  font-weight: 400;
  font-size: 32px;
  margin-left: 0px;
}

.sub_txt {
  font-size: 11px;
}

.brim_make_pay {
  /* margin-top: 10px; */
  padding-bottom: 10px;
}

.brim_right_flex .brim_make_pay {
  padding-bottom: 0px;
}

.dashboard_row .brim_right_flex_align .brim_make_pay {
  margin-top: 0px;
}

.transation_head {
  background-color: #f7f7f7;
  padding: 10px 0px;
  color: #414042;
}

.left_text {
  line-height: 25px;
}

.left_text .blue_txt {
  margin-left: 5px;
}

.left_text .muted_txt {
  letter-spacing: 1.08px;
  display: inline-block;
  vertical-align: middle;
}

.on_of_label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  color: #808080;
}

.on_of_label .onoff_area {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.on_of_label label {
  color: #414042;
  font-size: 13px;
  margin-right: 35px;
  margin-bottom: 0;
  font-weight: 400;
}

.on_of_label .onoff_area .switch {
  margin-bottom: 0px;
  margin-right: 0px;
}

.on_of_label .on,
.on_of_label .off {
  margin-right: 10px;
}

.tranlistcontent_dashboard {
  padding: 15px 0px 0px;
}

.dashboard_card .card_top_sec {
  padding-left: 0;
  padding-right: 0;
}

.card_top_lft_sec,
.left_text {
  /* margin-left: 40px; */
  margin-left: 0px;
}

.brim_left_flex {
  margin-left: 20px;
}

.brim_left_flex .slick-disabled {
  display: none !important;
}

.relative_section {
  position: relative;
}

.dashboard_overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(255, 255, 255, 0.81);
  z-index: 99;
  display: none;
}

.dashboard_overlay.active {
  display: block;
}

.brim_modal_panel {
  padding: 22px 0px;
  border-bottom: 1px solid #efefef;
  font-size: 14px;
  color: #454545;
  position: relative;
}

.brim_modal_panel figure,
.brim_modal_panel span,
.brim_modal_panel a {
  display: inline-block;
  vertical-align: middle;
}

.nowrap {
  white-space: nowrap;
}

.img_fig {
  height: 24px;
  width: 24px;
  margin: 0px 15px 0px 0px;
  padding: 0px;
}

.brim_modal_panel a {
  margin-left: 10px;
}

.brim_modal_panel .flex_row {
  position: relative;
  padding-right: 50px;
}

.flex-left {
  margin-right: auto;
}

.flex-right {
  margin-left: auto;
}

.brim_modal_panel .flex-right {
  position: absolute;
  right: 0px;
  top: 0px;
}

.brim_close_btn {
  width: 24px;
  height: 24px;
  background-color: #454545;
  opacity: 0.6;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 29px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.brim_close_btn:hover {
  opacity: 1;
  color: #fff;
}

.brim_msg_success {
  background-color: #f6feee;
}

.brim_msg_error {
  background-color: #fef2ee;
}

.reload_loader {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 60px;
  width: 60px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(../images/Rolling-loader.gif);
  pointer-events: none;
}

.dashboard_card .card_top_sec {
  padding-top: 36px;
  padding-bottom: 36px;
}

.dashboard_card .card_top_lft_sec h3 {
  font-size: 30px;
  font-family: "Axiforma-Book";
}

.dashboard_card .brim_points_box {
  margin-top: 4px;
}

.dashboard_card .small_point_tag {
  height: 28px;
  width: 28px;
  float: left;
  margin-top: 0;
}

.dashboard_card .brim_points_box span {
  font-size: 20px !important;
  vertical-align: middle;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dashboard_card .brim_points_box span {
    line-height: 45px;
  }
}

.dashboard_card .card_top_rt_sec .right_activity_panel_rt {
  margin-top: 10px;
}

.cst_tranlist_single_container .tranlist_row:last-of-type .mrk_badge:after {
  height: calc(100% + 18px);
}

.cst_tranlist_single_container
  .tranlist_row:last-of-type:hover
  .mrk_badge:after {
  height: calc(100% + 29px) !important;
}

#notificationModal6 .setupinstallmentsuccess .notify_top {
  margin-left: auto;
  margin-right: auto;
}

.contact_box_help {
  background-color: #f7f7f7;
  padding: 15px;
  border-radius: 5px;
  font-size: 18px;
  color: #00c1d5;
  font-family: "Axiforma_Regular";
  margin-bottom: 30px;
}

.contact_p p {
  font-family: "Axiforma_Regular";
  color: #414042;
  font-size: 14px;
}

.tranlist_header {
  font-family: "Axiforma-Medium";
}

.tranlist_row:hover .mrk_badge:after {
  height: calc(100% + 30px) !important;
}

.installment.tab_menu {
  padding-bottom: 0px;
  text-align: left;
  border-bottom: 0px;
}

.installment.tab_menu ul {
  display: inline-block;
  vertical-align: middle;
}

.installment.tab_menu ul > li {
  margin-right: 22px;
}

.installment.tab_menu li > a,
.installment.tab_menu li > a:hover,
.installment.tab_menu li > a:focus,
.installment.tab_menu li.active > a,
.installment.tab_menu li.active a:focus,
.installment.tab_menu li.active a:hover {
  padding: 13px 8px;
  min-width: 170px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  text-transform: unset;
  line-height: 100%;
  text-align: center;
  color: #454545;
  border: 1px solid #efefef;
}

.installment.tab_menu li.active > a,
.installment.tab_menu li.active a:focus,
.installment.tab_menu li.active a:hover {
  border: 1px solid #00c1d5;
  color: #00c1d5;
}

.flex_activity_outer,
.flex_dashboard_outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  /* align-content: flex-start; */
  min-height: 76px;
}

.flex_activity_outer .left_activity,
.flex_dashboard_outer .left_activity {
  margin-right: auto;
}

.flex_activity_outer .right_activity,
.flex_dashboard_outer .right_activity {
  margin-left: auto;
}

.activity_flex_end,
.dashboard_flex_end {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.right_activity_panel_lt .brim_points_box {
  margin-top: 4px;
}

.right_activity_panel_lt .brim_points_box span {
  font-size: 24px !important;
  line-height: 30px;
}

.auto_width_right_activity_panel_rt {
  min-width: auto;
}

.tranlist_cell_lbl {
  display: none;
}

.cell_expand_view_mobile {
  display: none;
}

.inline_flex_activity_outer {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -25px;
  margin-right: -25px;
}

.inline_flex_activity_list {
  display: inline-block;
  vertical-align: middle;
  padding: 0px 25px;
}

.left_activity .inline_flex_activity_list .currency h3 {
  font-weight: normal;
  font-size: 36px !important;
}

.inline_flex_activity_list .brim_points_box span {
  font-size: 24px !important;
}

.inline_flex_activity_list .brim_points_box .small_point_tag {
  height: 27px;
  width: 27px;
}

.inline_flex_activity_list .statement_tg {
  font-size: 10px;
}

.statement_detail_data_container .make_btn {
  min-width: 165px;
  text-align: center;
}

.make_btn {
  font-family: "Axiforma-Book";
}

.brim_center_flex .brim_card_single_option {
  font-family: "Axiforma-Medium";
}

.dashboard_row.dashboard_row_single .brim_left_flex {
  padding: 0px !important;
  width: auto !important;
}

.dashboard_row.dashboard_row_single .brim_right_flex {
  width: calc(100% - 700px);
}

.dashboard_row_single .brim_right_flex_align_single .brim_card_headline {
  display: none !important;
}

.mobile_tranlist_header {
  display: none !important;
}

.current_cst_tranlist_container .tranlist_row {
  margin: 0px 0px 5px;
}

.current_cst_tranlist_container .cst_tranlist_single_container {
  margin-bottom: 0px;
}

.current_cst_tranlist_container .desktop_tranlist_header {
  margin-top: 0px;
  margin-bottom: 22px;
}

.current_cst_tranlist_container .tranlist_row:hover .mrk_badge:after {
  height: 100% !important;
}

.tranlist_cell_mobile_hidden {
  display: none !important;
  min-width: initial;
}

.current_cst_tranlist_container
  .new_progress.progress-circle
  label
  div:last-child {
  font-size: 11px;
}

#Activity_Cur_Instal_Modal .border_new_line .bold_txt {
  font-family: "Axiforma-Medium";
}

#Activity_Cur_Instal_Modal .new_continue_area_outer .onetimeTranCurInstal {
  color: #454545;
}

#Activity_Cur_Instal_Modal .modal_block-section .border_new_line {
  font-family: "Axiforma_Bold";
}

.blank_container {
  color: #454545;
  padding: 30px 0px;
  border-bottom: 1px solid #d0d2d2;
}

.round_blnk_img {
  height: 120px;
  width: 120px;
  padding: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f2fcfd;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 50%;
}

.round_blnk_img img {
  max-height: 100%;
}

.blank_container h5 {
  font-size: 20px;
  font-family: "Axiforma-Medium";
  line-height: 24px;
  margin: 0px auto 12px;
  text-transform: initial;
  color: inherit;
}

.blank_container p {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 5px;
  font-family: "Axiforma_Regular";
  color: inherit;
}

.basic_btn {
  background-color: #00c1d5;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  font-family: "Axiforma-Medium";
  padding: 10px 20px;
  min-width: 180px;
  margin-top: 15px;
  display: inline-block;
  border-radius: 8px;
  letter-spacing: 1px;
}

.basic_btn:hover {
  color: #fff;
  opacity: 0.7;
}

.statement_detail_data_container .small_point_tag {
  margin-top: -11px;
}

.dashboard_row .slick-slide img {
  max-height: 170px;
  margin: 0px auto;
  display: block;
}

.familyCard_user_item .brim_card_slider_user_item {
  width: auto !important;
  margin: 0px 3px;
}

.familyCard_user_item
  .slick-current.brim_card_slider_user_item
  .brim_card_slider_user_inner {
  margin-right: 5px;
}

/* 6 item */

/* .brim_card_slider_user.familyCard6 {
    padding: 0px 8px;
} */

.brim_card_slider_user.familyCard6
  .slick-current.brim_card_slider_user_item
  .brim_card_slider_user_inner,
.brim_card_slider_user.familyCard6
  .brim_card_slider_user_item
  .brim_card_slider_user_inner {
  margin-right: auto;
  margin-left: auto;
}

.brim_card_slider_user.familyCard6 .slick-list {
  padding-left: 5px;
  padding-right: 5px;
}

/* 5 item */

.brim_card_slider_user.familyCard5.slick-slider {
  width: 200px !important;
  margin: 0 auto;
}

/* 4 item */

.brim_card_slider_user.familyCard4.slick-slider {
  width: 160px !important;
  margin: 0 auto;
}

/* 3 item*/

.brim_card_slider_user.familyCard3.slick-slider {
  width: 120px !important;
  margin: 0 auto;
}

/*--end--*/

/*--30.8.2018--*/

.xs_info_tip {
  margin-left: 10px;
  margin-bottom: 0px !important;
}

.color_tip {
  height: 12px;
  width: 12px;
  line-height: 12px;
  color: #00c1d5;
  background: #fff;
  margin-left: 0px;
}

.lg_info_tip {
  width: 220px;
  white-space: normal;
}

.transation_details {
  overflow: visible;
}

.more_offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  height: 240px;
}

.more_offer span {
  font-size: 22px;
  color: #00c1d5;
  text-align: center;
  font-family: "Axiforma_Bold";
}

.add_offer:hover {
  box-shadow: none !important;
}

.brim_card_headline {
  margin-bottom: 6px;
}

.brim_card_option {
  padding: 15px 6px 12px 5px !important;
}

.right_activity .dropdown_download .dropdown-menu li {
  width: 100%;
  display: block;
  margin: 0px;
}

.single_select_item.download_btn .dropdown.dropdown_download a.dropdown-toggle {
  border: 1px solid #00c1d5;
  color: #00c1d5;
}

.download_btn .dropdown.dropdown_download > a {
  background-image: url(../images/arow_blue.png) !important;
}

.dropdown_download .dropdown-menu {
  margin-top: -5px !important;
  width: 100%;
}

.download_btn .dropdown_download .dropdown-menu li a {
  width: 100%;
  text-align: left;
}

.desktop_pdf_btn {
  display: none !important;
}

/*--end--*/

.stella_select li.dropdown a figure.avatar_prof_img,
.browse_btn {
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 16px !important;
  color: #fff;
  text-align: center;
  line-height: 18px;
  background-color: #00c1d5;
  font-family: "Axiforma-Medium";
  text-transform: uppercase;
  letter-spacing: 1px;
}

.no_bg {
  background-image: none !important;
}

#noEligibleInstallment .blank_container,
#noCurrentInstallment .blank_container {
  border-bottom: 0px;
}

.full_width {
  width: 100% !important;
}

.single_select_item.download_btn {
  max-width: 230px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.single_select_item.download_btn .btn-group.bootstrap-select {
  width: 100% !important;
}

.downloadTransactionPicker {
  margin-bottom: 8px;
}

.download_btn .dropdown-menu li a {
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
}

.single_select_item.download_btn .bootstrap-select > .btn {
  padding-right: 30px;
  padding-left: 30px;
  background-image: url(../images/download_brn.png);
  background-position: left 9px center;
  background-repeat: no-repeat;
  background-size: 14px 18px;
}

.single_select_item .bootstrap-select > .btn,
.dropdown_function_outer .new-on-off label {
  color: #454545;
  font-family: "Axiforma-Medium";
}

.selectFileFormat .dropdown-menu {
  width: 100%;
}

.single_select_item .bootstrap-select > .btn:hover,
.single_select_item .dropdown a.dropdown-toggle:hover,
.single_select_item .bootstrap-select > .btn:focus,
.single_select_item .dropdown a.dropdown-toggle:focus,
.single_select_item .bootstrap-select.open > .btn {
  border-color: #00c1d5;
  color: #333;
  box-shadow: 0px 0px 5px 0px rgba(0, 193, 213, 0.2);
}

.img {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  min-width: 22px;
}

.lang_title {
  color: #454545;
}

.accout_area h2 {
  margin-bottom: 4px;
  font-family: "Axiforma_Bold";
  font-size: 18px;
}

.accout_area p {
  font-size: 16px;
  color: inherit;
  line-height: 22px;
  letter-spacing: 0.3px;
  font-family: "Axiforma_Light";
  margin-bottom: 0;
  min-height: 22px;
}

.accout_area p a {
  font-family: "Axiforma_Bold";
  color: #00c1d5;
}

.lang_select {
  margin-top: 55px;
}

.referal_box .lang_select {
  margin-top: 20px;
}

.brim_btn {
  text-align: center;
  font-size: 13px;
  background-color: #a2a2a2;
  color: #fff;
  border-radius: 4px;
  line-height: 20px;
  padding: 10px 20px;
  min-width: 165px;
  border: 0px;
  font-family: "Axiforma_SemiBold";
}

.brim_btn.active,
.brim_btn:hover {
  background-color: #00c1d5;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.lang_select .brim_btn {
  margin-right: 20px;
  background-color: transparent;
  border: 1px solid #a9a9a9;
  color: #a9a9a9;
}

.lang_select .brim_btn.active {
  border: 1px solid #00c1d5;
  color: #00c1d5;
}

.lang_select .brim_btn:last-child {
  margin-right: 0px;
}

.lang_select .brim_btn:hover {
  box-shadow: none;
  border-color: #00c1d5;
  color: #454545;
}

.account_height {
  min-height: 750px;
}

.account_height .management_bar {
  bottom: auto;
}

.five_col_row.dashboard_tranlist_row .tranlist_cell:nth-last-child(2) {
  min-width: 12%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/*--new success modal--*/

.newSuccess .modal-header h4 {
  font-family: "Axiforma-Book";
  font-size: 24px;
  color: #00c1d5;
}

.newSuccess .modal-header {
  border-bottom: 1px solid #efefef;
}

.newSuccess .all_detail_container {
  padding: 20px 40px 40px;
}
.newSuccess .all_detail_container .go_grn.addmember {
  margin-top: 20px;
}
.newSuccess .setupawsome_icon {
  margin-bottom: 12px;
}

.newSuccess .setupawsome_icon img {
  max-width: 60px;
}

.newSuccess .setupawsome h4 {
  font-family: "Axiforma_SemiBold";
  font-size: 22px;
  color: #00c1d5;
  margin-bottom: 18px;
}

.newSuccess .setuppaying_top {
  font-size: 16px;
  font-family: "Axiforma-Book";
  margin: 0px 0px 30px;
  line-height: 24px;
  color: #454545;
}
#newredeemcashbacksuccessmodal .setuppaying_top span {
  display: block;
}

.newSuccess .modal-footer {
  padding: 30px 40px 30px;
  border-top: 1px solid #efefef;
}

.newSuccess .modal-footer [data-dismiss="modal"] {
  color: #292525;
  min-width: 175px;
  padding: 0 !important;
  color: #454545;
  font-size: 12px;
}

.newSuccess_btn {
  background-color: #00c1d5 !important;
  color: #fff;
}

.newSuccess_btn:hover {
  opacity: 0.7;
  color: #fff;
}

.newSuccess .modal-header .close {
  margin-top: 10px;
}

/*--12.10.2018--*/

.new_progress.progress-circle label img {
  max-width: 26px;
}

.new_progress.progress-circle.progress_lg label img {
  max-width: 50px;
}

.area_progress_label .blue_txt {
  text-decoration: none !important;
  white-space: nowrap;
}

.five_col_row.dashboard_tranlist_row .tranlist_cell {
  min-width: 16%;
}

.five_col_row.dashboard_tranlist_row .tranlist_cell:first-child {
  /* min-width: 27%; */
  min-width: 32%;
}

.five_col_row.dashboard_tranlist_row .tranlist_cell:last-child {
  /* min-width: 22%; */
  min-width: 20%;
}

.five_col_row.dashboard_tranlist_row .tranlist_cell:nth-last-child(2) {
  /* min-width: 20%; */
  min-width: 14%;
}

#Activity_trans_Modal .continue_new_area_row {
  position: relative;
}

#Activity_trans_Modal .continue_new_area_row:after {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #fff;
  content: "";
}

/*--end--*/

/*--redeem modal new design--*/
.redeem_modal_new .modal-header {
  padding: 20px 40px;
  border-bottom: 1px solid #dedede;
}

.redeem_modal_new .modal-header .close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 25px 22px;
}

.redeem_modal_new .modal-body {
  padding: 22px 0px 0px;
}

.redeem_modal_new .modal-dialog {
  max-width: 540px;
  width: 100%;
}

.border_head .border_outline {
  border-bottom: 1px solid #f1f1f1;
  color: #414042;
  font-family: "Axiforma-Book";
  margin-bottom: 10px;
}

.border_outline {
  padding-left: 20px;
}

.border_body {
  margin-bottom: 12px;
}

.border_body .inner_continue_area_row {
  position: relative;
}

.border_body .border_outline {
  padding-left: 35px;
}

.border_body .inner_continue_area_row:after {
  content: "";
  position: absolute;
  display: block;
  top: -14px;
  left: 57px;
  opacity: 0.4;
  height: calc(100% - 4px);
  width: 0px;
  border: 1px dashed #a2a2a2;
}

.border_body .inner_continue_area_row:last-of-type:after {
  height: calc(50% + 4px);
}

.border_body .inner_continue_area_row:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 55px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #a2a2a2;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  background-color: #a2a2a2;
}

.red_dot {
  background-color: #ff8c6c;
}

.redeem_points_box_sec {
  padding-bottom: 20px;
}

.redeem_points_info_sec {
  font-size: 13px;
  padding-top: 15px;
  color: #414042;
}

.redeem_points_info_sec strong {
  font-family: "Axiforma-Medium";
}

.redeem_points_btn_sec {
  padding-top: 15px;
}

.white_rdm_btn {
  font-family: "Axiforma_SemiBold";
  font-size: 14px;
  color: #454545;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #a9a9a9;
  text-align: center;
  min-width: 160px;
  padding: 10px 12px;
  line-height: 18px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.white_rdm_btn:hover,
.white_rdm_btn.active {
  border: 1px solid #00c1d5;
  color: #00c1d5;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.redeem_points_btn_sec .col-xs-6 {
  padding: 0px 11px;
}

.redeem_points_btn_sec .row {
  margin-left: -11px;
  margin-right: -11px;
}

.lft_rdm_col,
.rt_rdm_col {
  background-color: #f7f7f7;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.active_rdm {
  background-color: #e4f8fa;
  -webkit-pointer-events: all;
  -moz-pointer-events: all;
  -ms-pointer-events: all;
  pointer-events: all;
}

.rdm_inner {
  padding: 18px 0px;
  width: 100%;
  text-align: center !important;
}

.rdm_inner {
  font-family: "Axiforma_Regular";
  font-size: 13px;
  line-height: 13px;
  color: #454545;
  /* max-width: 160px; */
  display: inline-block;
  vertical-align: middle;
}

.rdm_inner label {
  margin-bottom: 4px;
  font-weight: normal;
  font-family: "Axiforma_SemiBold";
}

.disable_rdm {
  -webkit-pointer-events: none;
  pointer-events: none;
}

.disable_rdm .rdm_inner {
  color: #a2a2a2;
}

.active_rdm {
  background-color: #e4f8fa;
}

.transfr_ico {
  position: absolute;
  left: 50%;
  top: 0px;
  bottom: 0px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  width: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}

.transfr_ico_img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.transfr_ico:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  bottom: 0px;
  height: 100%;
  width: 2px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #a9a9a9;
}

.redeem_action_sec .row {
  margin: 0px;
  position: relative;
}

.redeem_action_sec {
  margin-top: 20px;
}

.rdm_input {
  position: relative;
  font-size: 18px;
  line-height: 18px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.rdm_txt_inp {
  border: 0px !important;
  outline: 0px !important;
  box-shadow: none !important;
  background-color: transparent !important;
  padding: 0px;
  text-align: inherit;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  color: #454545;
  width: 100%;
  padding: 0px 7px;
}

.rdm_input {
  font-size: 18px;
  line-height: 22px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.input_rdm_ico {
  display: inline-block;
  vertical-align: middle;
}

.active_rdm .rdm_txt_inp {
  color: #00c1d5;
}

.error_rdm {
  background-color: #fff1f1;
}

.error_rdm .rdm_txt_inp {
  color: #ff0000;
}

/*--end--*/

.cell_expand_new {
  padding-right: 0px;
  font-size: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cell_expand_new .do_redeemed {
  /*position: static;*/
  font-family: "Axiforma-Medium";
  font-size: 14px;
  line-height: 22px;
}

.cell_expand_new.active .Redeem_bg_btn,
.cell_expand_new.active .see_detail_btn {
  width: 152px;
}

.cell_expand_new .redem_btn_box {
  border-radius: 0px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.cell_expand_new .see_detail_btn,
.cell_expand_new .Redeem_bg_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 20px;
  font-size: 14px;
  font-family: "Source Sans Pro", sans-serif;
  border-radius: 0px;
}

.see_detail_btn span,
.Redeem_bg_btn span {
  display: block;
  width: 100%;
}

.see_detail_btn span strong,
.Redeem_bg_btn span strong {
  font-family: "Axiforma_Bold";
}

.small_txt_see_detail_btn {
  font-size: 12px !important;
  line-height: 18px !important;
}

.rdm_rate_badge {
  height: 12px;
  width: 12px;
  position: absolute;
  top: 0px;
  left: -2px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.orange_rdm_badge {
  background-color: #ff8c6c;
}

.gray_cell_expand .do_redeemed {
  background-color: #ededed;
  color: #454545;
  right: 0;
}

.gray_cell_expand.active .do_redeemed {
  background-color: #a2a2a2;
  color: #fff;
}

.gray_cell_expand .see_detail_btn,
.gray_cell_expand .Redeem_bg_btn,
.gray_grd_btn {
  color: #838383;
  background: #f2f2f2;
  background: -moz-linear-gradient(-45deg, #f2f2f2 0%, #cfcfcf 100%);
  background: -webkit-gradient(
    left top,
    right bottom,
    color-stop(0%, #f2f2f2),
    color-stop(100%, #cfcfcf)
  );
  background: -webkit-linear-gradient(-45deg, #f2f2f2 0%, #cfcfcf 100%);
  background: -o-linear-gradient(-45deg, #f2f2f2 0%, #cfcfcf 100%);
  background: -ms-linear-gradient(-45deg, #f2f2f2 0%, #cfcfcf 100%);
  background: linear-gradient(135deg, #f2f2f2 0%, #cfcfcf 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#cfcfcf', GradientType=1);
}

.blue_cell_expand .do_redeemed {
  background-color: #00c1d5;
  color: #fff;
}

.blue_cell_expand.active .do_redeemed {
  background-color: #00c1d5;
  color: #fff;
}

.blue_cell_expand .see_detail_btn,
.blue_cell_expand .Redeem_bg_btn,
.blue_grd_btn {
  color: #fff;
  background: #50d4e2;
  background: -moz-linear-gradient(-45deg, #51d6e2 0%, #01b0c4 100%);
  background: -webkit-gradient(
    left top,
    right bottom,
    color-stop(0%, #51d6e2),
    color-stop(100%, #01b0c4)
  );
  background: -webkit-linear-gradient(-45deg, #51d6e2 0%, #01b0c4 100%);
  background: -o-linear-gradient(-45deg, #51d6e2 0%, #01b0c4 100%);
  background: -ms-linear-gradient(-45deg, #51d6e2 0%, #01b0c4 100%);
  background: linear-gradient(135deg, #51d6e2 0%, #01b0c4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#51d6e2', endColorstr='#01b0c4', GradientType=1);
}

.orange_cell_expand .do_redeemed {
  background-color: #ff8c6c;
  color: #fff;
}

.orange_cell_expand.active .do_redeemed {
  background-color: #ff8c6c;
  color: #fff;
}

.orange_cell_expand .see_detail_btn,
.orange_cell_expand .Redeem_bg_btn,
.orange_grd_btn {
  color: #fff;
  background: #fbad97;
  background: -moz-linear-gradient(-45deg, #ffbaa7 0%, #e0795d 100%);
  background: -webkit-gradient(
    left top,
    right bottom,
    color-stop(0%, #ffbaa7),
    color-stop(100%, #e0795d)
  );
  background: -webkit-linear-gradient(-45deg, #ffbaa7 0%, #e0795d 100%);
  background: -o-linear-gradient(-45deg, #ffbaa7 0%, #e0795d 100%);
  background: -ms-linear-gradient(-45deg, #ffbaa7 0%, #e0795d 100%);
  background: linear-gradient(135deg, #ffbaa7 0%, #e0795d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbaa7', endColorstr='#e0795d', GradientType=1);
}

.green_cell_expand .do_redeemed {
  background-color: #01b993;
  color: #fff;
}

.green_cell_expand.active .do_redeemed {
  background-color: #01b993;
  color: #fff;
}

.green_cell_expand .see_detail_btn,
.green_cell_expand .Redeem_bg_btn,
.green_grd_btn {
  color: #fff;
  background: #5be6ca;
  background: -moz-linear-gradient(-45deg, #5be6ca 0%, #19b898 100%);
  background: -webkit-gradient(
    left top,
    right bottom,
    color-stop(0%, #5be6ca),
    color-stop(100%, #19b898)
  );
  background: -webkit-linear-gradient(-45deg, #5be6ca 0%, #19b898 100%);
  background: -o-linear-gradient(-45deg, #5be6ca 0%, #19b898 100%);
  background: -ms-linear-gradient(-45deg, #5be6ca 0%, #19b898 100%);
  background: linear-gradient(135deg, #5be6ca 0%, #19b898 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5be6ca', endColorstr='#19b898', GradientType=1);
}

.label_txt {
  font-size: 12px;
  color: #414042;
}

.label_txt .dot {
  margin-top: -4px;
  margin-left: 3px;
}

.grd_color_btn {
  color: #fff !important;
  border-radius: 4px;
  font-size: 13px;
  line-height: 21px;
  font-family: "Axiforma-Medium";
  min-width: 135px;
  padding: 4px 10px 7px;
  border: 0px !important;
  display: block;
  text-align: center;
}

.grd_color_btn:hover {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.lft_new_continue_area .title_continue_area {
  margin-bottom: 0px;
}

.rt_new_continue_area {
  margin-top: 2px;
}

.cell_amount.re_amount .small_point_tag.small_point_tag_float {
  margin: 2px 5px 0px 0px;
}

.white_rdm_btn.disabled,
.white_rdm_btn.disabled:hover {
  border: 1px solid #a9a9a9;
  color: #454545;
  box-shadow: none;
  opacity: 0.4;
}

.rdm_error_sec {
  text-align: center;
}

.rdm_error_sec .material_inf_tip {
  position: relative;
  padding-left: 21px;
  margin-top: 8px;
  line-height: 15px;
  display: inline-block;
  text-align: left;
}

.material_inf_tip_ico {
  position: absolute;
  top: 1px;
  left: 0;
}

.white_info_tip {
  background-color: #f7f7f7;
  color: #454545;
  min-height: 80px;
  margin-bottom: 15px;
  width: 230px;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  transform: unset;
  right: -55px;
  left: auto;
}

.white_info_tip .tip_close {
  background-color: #d2d2d2;
}

.white_info_tip:after {
  border-left: 0 solid transparent;
  border-top: 15px solid #f7f7f7;
  border-right: 20px solid transparent;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  transform: unset;
  left: auto;
  right: 40px;
}

.tranlist_cell_txt .sm_pic {
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
}

.tranlist_cell .color_tip {
  margin-top: -5px;
}

.cst_tranlist_single_container .tranlist_cell {
  min-width: 18%;
}

.cst_tranlist_single_container .tranlist_cell:first-child {
  min-width: 39%;
}

.cst_tranlist_single_container .tranlist_cell:last-child {
  min-width: 25%;
}

.cst_tranlist_single_container .tranlist_cell:first-child {
  min-width: 35%;
}

.cst_tranlist_single_container .tranlist_cell:nth-last-child(2) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/*--END--*/
.message_outer {
  padding-top: 20px;
  padding-bottom: 20px;
}

.message_outer .continue_new_area_row {
  border: 0;
}

.message_outer .inner_continue_area_row {
  padding-top: 0;
  padding-bottom: 0;
}

.message_outer .continue_new_area_row:after {
  content: none !important;
}

.autowidth_btn {
  line-height: 20px;
  padding: 10px 18px 12px;
  border-radius: 3px;
  font-size: 13px;
  border: none;
  background: #00c1d5;
  color: #fff;
  font-family: "Axiforma-Medium";
}

.autowidth_btn:hover {
  opacity: 0.7;
  color: #fff;
}

.six_col_row .tranlist_cell {
  min-width: 16.75%;
}

.six_col_row .tranlist_cell:first-child {
  min-width: 21%;
}

.six_col_row .tranlist_cell:nth-last-child(2) {
  min-width: 11%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.six_col_row .tranlist_cell:last-child {
  min-width: 18.75%;
}

.book_txt {
  font-family: "Axiforma-Book";
}

#budget_modal .modal-title {
  font-family: "Axiforma-Book";
  margin-top: 0px;
}

#budget_modal .icon_content span {
  font-family: "Axiforma_Light";
}

#budget_modal .icon_content span.descriptionTran {
  font-size: 20px;
  color: #454545;
  font-family: "Axiforma-Medium";
}

#budget_modal .transDateDetails .dateTran {
  color: #838383;
  font-size: 14px;
}

#budget_modal .balance_area_cell .cell_amount.re_amount em {
  font-family: "Axiforma-Medium";
  text-transform: uppercase;
}

#budget_modal .balance_area_cell .pointsTran span {
  font-size: 32px;
  color: #454545;
  margin-bottom: 6px;
  margin-top: 6px;
}

#budget_modal .tranlist_row {
  padding-left: 6px;
}

.large_progress {
  float: none !important;
  margin: 0 !important;
  width: 100% !important;
}

.large_progress .prgrs_bar_back {
  height: 30px;
}

.only_progress {
  overflow: hidden;
  border-radius: 20px;
  font-size: 0;
}

.all_progress_data .p_left_text {
  position: absolute;
  top: 27px;
  left: 25px;
  font-size: 15px;
  font-family: "Axiforma_SemiBold";
  color: #fff;
  z-index: 2;
  width: auto;
  text-transform: uppercase;
  text-shadow: 0px 0px 4px rgba(69, 69, 69, 0.7);
}

.all_progress_data .p_right_text {
  font-family: "Axiforma-Medium";
  font-size: 11px;
  color: #454545;
  line-height: 16px;
  float: right;
  width: auto;
  text-transform: uppercase;
  margin-right: 10px;
  margin-bottom: 6px;
}

.triangle_svg {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
}

.triangle_svg1 {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
}

.b-btm0 {
  border-bottom: 0px !important;
}

.budget_progress_area .progress_outer {
  position: relative;
}

.budget_search_area {
  padding-top: 25px;
  padding-bottom: 25px;
}

#budget_modal .modal-footer {
  border-top: 1px solid #dedede;
  margin-top: 20px;
}

.budget_transaction_area .tranlist_cell:first-child {
  padding-left: 0px;
}

.budget_transaction_area .tranlist_header .tranlist_cell:first-child {
  padding-left: 10px;
}

.budget_transaction_area .cst_tranlist_single_container .tranlist_cell {
  min-width: 19%;
  padding-left: 0;
}

#budget_modal
  .budget_transaction_area
  .cst_tranlist_single_container
  .tranlist_cell:first-child {
  min-width: 29%;
}

.budget_transaction_area
  .cst_tranlist_single_container
  .tranlist_cell:nth-last-child(2) {
  padding-left: 0px;
  min-width: 14%;
}

.budget_transaction_area
  .cst_tranlist_single_container
  .tranlist_cell:last-child {
  min-width: 19%;
}

#budget_modal .icon_content_budget span {
  line-height: 26px;
}

.cst_share_box_ico a img {
  display: block;
}

.error_new {
  background-color: #fdeeee;
  padding: 12px 13px;
  border-radius: 5px;
  font-size: 10px;
  font-family: "Axiforma_SemiBold";
  line-height: 30px;
  color: #454545;
  margin-top: 5px;
  overflow: hidden;
}

.error_new img {
  margin-right: 10px;
  float: left;
}

.error_new a {
  color: #454545;
  text-decoration: underline;
}

#budget_modal .search_bar {
  position: relative;
  width: 356px;
}

.search_bar .new_search_btm {
  background-color: #7fe0ea;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-top-left-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 96px;
  font-size: 13px;
  font-family: "Axiforma_SemiBold";
  letter-spacing: 0.19px;
  padding: 10px 0 9px;
  color: #fff;
}

.search_bar .new_search_btm.active_btn {
  background-color: #00c1d5;
}

/*remove the below section it breaks modal button in many modal 05.06.2019*/
/*.modal-footer .btn {
    padding: 0;
}*/
@-moz-document url-prefix() {
  .see_invite_btn {
    padding: 10px 12px 10px;
  }
}

/*-====================-responsive-==============================-*/

@media (max-width: 1199px) {
  /*--Activity page--*/
  .tranlist_cell {
    font-size: 11px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .tranlist_cell:first-child {
    padding-left: 0px;
  }

  .tranlist_cell:last-child,
  .tranlist_header .tranlist_cell:last-child {
    padding-right: 25px;
  }

  .tranlist_header .tranlist_cell:first-child {
    padding-left: 20px;
  }

  .single_select_item .btn-group.bootstrap-select {
    width: 140px !important;
  }

  .flx_lft_align {
    margin-right: 10px;
  }

  .flx_rt_align {
    margin-left: 10px;
  }

  /*--Activity page-end--*/
  /*--dashboard page--*/
  .brim_dashboard_card {
    -webkit-transform: scale(0.765);
    -moz-transform: scale(0.765);
    -ms-transform: scale(0.765);
    transform: scale(0.765);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  /* .dashboard_row .brim_dashboard_card {
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        transform-origin: 0 0;
    } */

  .brim_left_flex {
    width: 295px;
    height: 225px;
    padding: 0px 10px;
  }

  .dashboard_row .brim_left_flex {
    height: auto;
  }

  .card_nxt {
    right: -10px;
  }

  .card_prev {
    left: -10px;
  }

  .brim_left_flex .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .brim_center_flex {
    padding: 0px 15px;
  }

  .brim_card_option {
    margin-right: 0px;
  }

  .brim_make_pay {
    margin: 0px;
  }

  .brim_make_pay .other_value_cell {
    font-size: 13px;
  }

  .lft_list_value_cell {
    width: 170px;
  }

  .brim_make_pay {
    padding: 0px;
  }

  .card_top_lft_sec,
  .brim_left_flex,
  .left_text {
    margin-left: 0;
  }

  /*--dashboard page-end--*/
  .inline_flex_activity_outer {
    margin-left: -12px;
    margin-right: -12px;
  }

  .inline_flex_activity_list {
    padding: 0px 12px;
  }

  .inline_flex_activity_list .brim_points_box span {
    font-size: 18px !important;
  }

  .left_activity .inline_flex_activity_list .currency h3 {
    font-size: 30px !important;
  }

  .familyCardData {
    margin-bottom: 20px;
  }

  .dashboard_row.dashboard_row_single .brim_right_flex {
    width: calc(100% - 660px);
  }

  .dashboard_row_single.dashboard_row
    .brim_right_flex_align_single
    .other_value_cell_each {
    width: 50%;
    min-width: auto;
  }

  .current_cst_tranlist_container .tranlist_cell:last-child,
  .current_cst_tranlist_container .tranlist_header .tranlist_cell:last-child {
    padding-right: 15px;
  }

  .current_cst_tranlist_container .tranlist_cell:first-child,
  .current_cst_tranlist_container .tranlist_header .tranlist_cell:first-child {
    padding-left: 15px;
  }

  .dashboard_row .brim_right_flex_align .primaryCardData {
    max-width: 33.33%;
  }

  .brim_right_flex .brim_make_pay {
    margin-top: -22px;
  }

  .dropdown_function_outer .single_select_item .btn-group.bootstrap-select {
    width: 100% !important;
  }

  .dropdown_function_outer
    .single_select_item.download_btn
    .btn-group.bootstrap-select {
    width: 100% !important;
  }

  .dashboard_row .brim_right_flex {
    width: calc(100% - 695px);
  }

  .dashboard_row .brim_right_flex_align {
    width: calc(100% - 385px);
  }

  .statement_align_col .tranlist_header .tranlist_cell:first-child {
    padding-left: 35px;
  }

  .new_info_tip .info_tip_link {
    margin-top: 0px;
  }
}

@media (max-width: 991px) {
  .account_height {
    min-height: auto;
  }

  .lang_title p {
    font-size: 15px;
  }

  .lang_title h4 {
    margin-bottom: 4px;
  }

  .lang_select .brim_btn {
    min-width: 135px;
    font-size: 12px;
    padding: 12px 15px;
  }

  .lang_select {
    margin-top: 25px;
  }

  .lang_select .brim_btn {
    margin-right: 8px;
  }

  /*--Activity page--*/
  .mrk_badge {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }

  .mrk_badge:after {
    left: 17px;
    top: -30px;
    height: calc(100% + 40px);
  }

  .tranlist_row:last-child .mrk_badge:after {
    top: -25px;
  }

  .tranlist_row {
    /* padding: 10px 0px; */
    margin: 20px 0px 0px -10px;
    padding: 0px 0px 0 10px;
  }

  .cst_tranlist_single_container {
    padding-left: 11px;
    margin-bottom: 30px;
  }

  .tranlist_row:hover .mrk_badge:after {
    height: calc(100% + -15px) !important;
  }

  .five_col_row .tranlist_cell {
    min-width: 16%;
  }

  .five_col_row .tranlist_cell:first-child,
  .five_col_row .tranlist_cell:last-child {
    min-width: 26%;
  }

  .tranlist_cell:first-child .tranlist_cell_txt {
    max-width: calc(100% - 45px);
  }

  .tranlist_cell .new_info_tip {
    /*display: none;*/
    margin-bottom: 8px;
  }

  .flx_rt_align {
    float: left;
  }

  .flx_rt_align .new-on-off {
    margin-top: 10px;
    margin-left: -10px;
  }

  .single_select_item .btn-group.bootstrap-select {
    width: 100% !important;
  }

  .flx_lft_align,
  .flx_rt_align.download_btn {
    width: 31.6%;
  }

  .activity_outer .right_activity_tag,
  .activity_outer .right_activity .currency {
    float: none;
    display: block;
    text-align: left;
    margin-left: 0px;
  }

  .activity_outer .brim_points_box {
    margin-top: 6px;
  }

  .activity_outer .right_activity_tag {
    margin-bottom: 5px;
    max-width: initial;
  }

  .cur_bal {
    margin-top: 0px;
  }

  /*--Activity page-end--*/
  .flx_rt_align.statement_download_btn {
    margin-left: 0px;
  }

  /*--dashboard page--*/
  .dashboard_card .card_top_sec {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .card_top_rt_sec .currency {
    font-size: 24px;
    line-height: 100%;
  }

  .hidden_txt_btn {
    font-size: 0px !important;
    margin: 0px;
  }

  .hidden_txt_btn span {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
  }

  .dashboard_row .brim_left_flex {
    margin: 0 auto;
  }

  .dashboard_row .brim_right_flex_align,
  .dashboard_row .brim_right_flex {
    width: 100%;
    text-align: center;
  }

  .other_value_cell_each,
  .brim_right_flex .other_value_cell {
    text-align: center;
  }

  .brim_right_flex.brim_right_flex_align {
    margin-top: 30px;
    overflow: hidden;
  }

  .other_value_cell_each h4 {
    font-size: 18px;
  }

  .other_value_cell_each .sub_txt {
    font-size: 10px;
  }

  .other_value_cell_each.primaryCardData,
  .other_value_cell_each.familyCardData,
  .other_value_cell_each.familyCardDataYourcard,
  .other_value_cell_each.familyCardDataOthercard {
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .other_value_cell_each.primaryCardData {
    width: 32.33%;
  }

  .other_value_cell_each.familyCardData,
  .other_value_cell_each.familyCardDataYourcard,
  .other_value_cell_each.familyCardDataOthercard {
    width: 49%;
  }

  .dashboard_row .brim_left_flex {
    width: 320px;
    padding: 0px 25px;
    position: relative;
  }

  .dashboard_row .brim_right_flex .brim_card_headline {
    margin-bottom: 0px;
  }

  .dashboard_row .brim_center_flex {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .dashboard_row .brim_card_option {
    margin: 0px auto;
  }

  .card_option_img {
    width: 40px;
    height: 40px;
    background-size: 21px 21px;
  }

  .lock_crd {
    background-size: 21px 21px;
  }

  .lock_online {
    background-size: 30px 30px;
  }

  .lock_foreign {
    background-size: 30px 30px;
  }

  .brim_card_single_option.active .lock_crd {
    background-size: 21px 21px;
  }

  .brim_card_single_option.active .lock_online {
    background-size: 21px 21px;
  }

  .brim_card_single_option.active .lock_foreign {
    background-size: 21px 21px;
  }

  .brim_card_option {
    padding: 12px 10px;
  }

  .brim_card_single_option {
    font-size: 12px;
  }

  .card_option_label {
    margin: 10px auto 0px;
  }

  .tranlist_header {
    padding: 15px 0px;
  }

  .statement_detail_data_container .left_activity,
  .statement_detail_data_container .right_activity {
    float: none;
    width: auto;
    max-width: inherit;
  }

  .state_data_detail_sec {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #efefef;
  }

  .statement_detail_data_container .right_activity {
    margin-top: 30px;
  }

  .statement_detail_data_container {
    border-bottom: 0px;
  }

  .statement_detail_data_container .make_btn {
    margin-left: 0px;
    margin-right: 30px;
  }

  .dashboard_row.dashboard_row_single .brim_right_flex {
    width: 100%;
  }

  .dashboard_row.dashboard_row_single .brim_right_flex_align_single {
    margin-top: 20px;
  }

  .current_cst_tranlist_container .tranlist_cell {
    padding: 5px 10px;
  }

  .current_cst_tranlist_container .tranlist_header .tranlist_cell {
    padding: 10px 5px;
    font-size: 10px;
  }

  .current_cst_tranlist_container .tranlist_cell:last-child,
  .current_cst_tranlist_container .tranlist_header .tranlist_cell:last-child {
    padding-right: 10px;
  }

  .current_cst_tranlist_container .tranlist_cell:first-child,
  .current_cst_tranlist_container .tranlist_header .tranlist_cell:first-child {
    padding-left: 10px;
  }

  .current_cst_tranlist_container .mrk_badge:after {
    height: 100%;
  }

  .current_cst_tranlist_container .tranlist_row:last-child .mrk_badge:after {
    top: -35px;
  }

  .current_cst_tranlist_container .tranlist_row {
    padding: 0px;
  }

  .current_cst_tranlist_container .cst_tranlist_single_container {
    padding-left: 1px;
  }

  .tab_search_inner.open {
    width: 230px;
  }

  /*--30.8.2018--*/
  .lg_info_tip {
    width: 180px;
    left: auto;
    right: -15px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    text-align: left;
  }

  .lg_info_tip:after {
    left: auto;
    right: 10px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
  }

  /*--end---*/
  .brim_right_flex .brim_make_pay {
    margin-top: 0px;
  }

  .five_col_row.dashboard_tranlist_row .tranlist_cell {
    min-width: 19%;
  }

  .five_col_row.dashboard_tranlist_row .tranlist_cell:first-child {
    min-width: 29%;
  }

  .five_col_row.dashboard_tranlist_row .tranlist_cell:last-child {
    min-width: 19%;
  }

  .five_col_row.dashboard_tranlist_row .tranlist_cell:nth-last-child(2) {
    min-width: 14%;
  }

  .single_select_item.download_btn {
    max-width: 100%;
  }

  .other_value_cell_each_inner {
    display: inline-block;
    vertical-align: middle;
  }

  .dashboard_row .brim_right_flex_align {
    margin-left: 0px !important;
  }

  .statement_align_col .tranlist_header .tranlist_cell:first-child {
    padding-left: 42px;
  }

  /* .go_grn {
        padding: 20px 0px 30px;
    } */

  .modal-body.go_grn {
    padding: 10px 25px 20px !important;
  }

  .new_info_tip .white_info_tip {
    right: -25px;
  }

  .accout_area h2 {
    margin-bottom: 30px;
  }
  .eshoppending_mobile {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /*--Activity page--*/
  .five_col_row .tranlist_cell,
  .five_col_row .tranlist_cell:last-child {
    min-width: 17.5%;
  }

  .five_col_row .tranlist_cell:first-child {
    min-width: 30%;
  }

  .tranlist_cell {
    padding-left: 5px;
    padding-right: 5px;
  }

  .statement_detail_data_container .left_activity,
  .statement_detail_data_container .right_activity {
    max-width: 100%;
    width: 100%;
  }

  .statement_detail_data_container .left_activity {
    margin-bottom: 15px;
  }

  .statement_detail_data_container .make_btn {
    margin-right: 10px;
  }

  .statement_detail_data_container .right_activity_panel_lt {
    float: left;
  }

  .statement_detail_data_container .right_activity_panel_rt {
    float: right;
    margin-top: 30px;
  }

  .lft_state_data_inf,
  .rt_state_data_inf {
    float: none;
  }

  .lft_state_data_inf {
    margin-bottom: 10px;
  }

  .state_data_cap {
    font-size: 20px;
  }

  .statement_detail_data_container .continue_new_area_row {
    margin-top: 0px;
  }

  .new_dg_modal .modal-dialog {
    width: 90%;
  }

  .setupinstallmentsuccess .after_continue_area {
    margin: 20px auto 20px;
    max-width: 390px;
  }

  /*--Activity page-end--*/
  /*--25.7.2018--*/
  #Activity_trans_Modal .modal-header {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  #Activity_trans_Modal .px40 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .modal-dialog {
    margin: 20px auto;
  }

  /*--end--*/
  .left_activity .inline_flex_activity_list .currency h3 {
    font-size: 18px !important;
    font-family: "Axiforma_light";
  }

  .inline_flex_activity_list .brim_points_box span {
    font-size: 16px !important;
  }

  .inline_flex_activity_list .brim_points_box .small_point_tag {
    height: 22px;
    width: 22px;
  }

  .statement_detail_data_container .make_btn {
    float: none;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }

  .statement_detail_data_container .make_btn:last-child {
    display: none;
  }

  .statement_detail_data_container .small_point_tag {
    margin-top: -3px;
  }

  .statement_download_btn {
    display: none;
  }

  .desktop_pdf_btn {
    display: block !important;
  }

  .lang_title h4 {
    font-size: 16px;
  }

  /*--12.10.18--*/
  .mobile_hidden {
    display: none;
  }

  .installment.tab_menu li > a,
  .installment.tab_menu li > a:hover,
  .installment.tab_menu li > a:focus,
  .installment.tab_menu li.active > a,
  .installment.tab_menu li.active a:focus,
  .installment.tab_menu li.active a:hover {
    min-width: 98px;
  }

  /*--end--*/
  .tab_menu .inline_tab_menu li a {
    padding: 15px 5px !important;
  }

  .grd_color_btn {
    min-width: auto;
  }

  .border_body .inner_continue_area_row:after {
    left: 40px;
  }

  .border_body .inner_continue_area_row:before {
    left: 38px;
  }
}

@media (max-width: 640px) {
  /*--Activity page--*/
  .tranlist_cell {
    display: none !important;
  }

  .tranlist_mobile_data {
    display: block;
  }

  .tranlist_cell:first-child,
  .tranlist_cell:last-child {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .tranlist_cell:first-child {
    min-width: 60% !important;
  }

  .tranlist_cell:last-child {
    min-width: 40% !important;
  }

  .tranlist_row {
    margin-left: 15px;
    margin-right: 15px;
    padding: 0px;
    padding-left: 5px;
  }

  .tranlist_header {
    margin-left: 0px;
    margin-right: 0px;
    padding: 10px 15px;
  }

  .cst_tranlist_single_container {
    padding: 0px;
    margin-bottom: 25px;
  }

  .dropdown_function_outer {
    margin: 0px -6px;
  }

  .flx_lft_align,
  .flx_rt_align {
    width: 50% !important;
    padding: 0px 6px;
    margin: 0px 0px 10px;
  }

  .flx_lft_align,
  .flx_rt_align,
  .flx_lft_align .btn,
  .flx_rt_align .btn {
    font-size: 12px;
  }

  .flx_rt_align .new-on-off {
    margin-top: 0px;
    margin-left: 0px;
  }

  .flx_rt_align .new-on-off > label {
    margin-top: 5px;
  }

  .flx_rt_align.primaryuser,
  .flx_rt_align.hasfamilycard {
    width: 100% !important;
  }

  .activity_outer .right_activity_tag,
  .activity_outer .right_activity .currency {
    text-align: right;
  }

  .activity_outer .make_btn {
    margin-top: 5px;
  }

  .activity_outer .right_activity .currency {
    margin-top: 0px;
  }

  .activity_outer .right_activity_tag {
    margin-bottom: 0px;
    line-height: normal;
  }

  .select_outer {
    padding-top: 0px;
  }

  .right_activity {
    max-width: 60%;
  }

  .left_activity {
    max-width: 40%;
  }

  .right_activity .currency {
    line-height: 24px;
  }

  .dashboard_row {
    padding-left: 15px;
    padding-right: 15px;
    min-height: initial;
  }

  .brim_left_flex,
  .brim_center_flex {
    position: static;
    margin: 0px auto;
  }

  .brim_center_flex {
    margin-top: 20px;
    width: 100%;
  }

  .brim_right_flex {
    margin-top: 10px;
    width: 100%;
  }

  .dashboard_row .brim_center_flex .dashboard_row .brim_right_flex {
    margin-top: 8px;
  }

  .brim_left_flex {
    padding: 0px 20px;
    width: 315px;
  }

  .card_nxt {
    right: -20px;
  }

  .card_prev {
    left: -20px;
  }

  .brim_card_option .lft_cTooltip {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    right: -10px;
    left: auto;
  }

  .brim_card_option .lft_cTooltip:after {
    margin-left: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    right: 12px;
    left: auto;
  }

  .transation_head .left_text {
    padding: 10px 15px;
    float: none !important;
  }

  .transation_head .right_text {
    background-color: #fff;
    padding: 10px 30px;
    margin: 0px -15px;
    float: none !important;
    margin-bottom: 2px;
  }

  .transation_head {
    padding: 0px;
  }

  .on_of_label {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .tranlistcontent_dashboard {
    padding: 0px !important;
  }

  .left_text .muted_txt {
    float: left;
  }

  .left_text .blue_txt {
    float: right;
  }

  .left_activity h3,
  .right_activity .currency {
    font-size: 24px !important;
    font-weight: normal;
    margin-top: 0 !important;
  }

  .left_activity h3 {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .brim_points_box span {
    font-size: 13px !important;
  }

  .left_activity h3 span {
    margin-right: 4px;
    margin-left: -4px;
  }

  .brim_points_box {
    margin-top: 6px;
  }

  .right_activity .currency {
    margin-top: 6px;
  }

  .card_top_rt_sec .right_activity_panel_rt {
    margin-top: 5px;
    margin-left: 0px;
  }

  .dashboard_card .card_top_sec {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .card_top_lft_sec {
    margin-top: 5px;
    max-width: 120px;
  }

  .brim_modal_panel {
    padding: 12px 0px;
    font-size: 12px;
  }

  .img_fig {
    height: 18px;
    width: 18px;
    margin: 0px 6px 0px 0px;
  }

  .brim_close_btn {
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 25px;
  }

  /*--25.6.2018--*/
  .dashboard_card .card_top_lft_sec {
    max-width: 155px;
  }

  .dashboard_card .card_top_rt_sec {
    margin-top: 0px;
  }

  .new_statement_align .tranlist_header,
  .statement_align_col .tranlist_header {
    display: none;
  }

  .new_statement_align #transaction .tranlist_row,
  .statement_align_col .tranlist_row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .new_statement_align #transaction .five_col_row .tranlist_cell:first-child,
  .new_statement_align #transaction .five_col_row .tranlist_cell,
  .new_statement_align #transaction .five_col_row .tranlist_cell:last-child,
  .statement_align_col .tranlist_row .tranlist_cell,
  .statement_align_col .tranlist_row .tranlist_cell:first-child,
  .statement_align_col .tranlist_row .tranlist_cell:last-child,
  .statement_align_col .tranlist_row .tranlist_cell:nth-last-child(2) {
    min-width: 100% !important;
    width: 100%;
  }

  .new_statement_align #transaction .tranlist_mobile_data {
    display: none !important;
  }

  .new_statement_align #transaction .five_col_row .tranlist_cell,
  .statement_align_col .tranlist_row .tranlist_cell {
    display: block !important;
  }

  .tranlist_cell_lbl {
    display: block;
    float: left;
  }

  .tranlist_cell_txt {
    float: right;
  }

  .tranlist_cell_lbl,
  .tranlist_cell_txt {
    font-size: 12px;
    color: #454545;
  }

  .new_statement_align #transaction .five_col_row,
  .statement_align_col .tranlist_row {
    margin-top: 40px;
  }

  .new_statement_align #transaction .five_col_row:first-child,
  .statement_align_col .tranlist_row:first-child {
    margin-top: 20px;
  }

  .new_statement_align
    #transaction
    .five_col_row
    .tranlist_cell:first-child
    .tranlist_cell_txt,
  .statement_align_col
    .tranlist_row
    .tranlist_cell:first-child
    .tranlist_cell_txt {
    float: none;
  }

  .new_statement_align #transaction .five_col_row .tranlist_cell,
  .new_statement_align #transaction .five_col_row .tranlist_cell:last-child,
  .statement_align_col .tranlist_row .tranlist_cell,
  .statement_align_col .tranlist_row .tranlist_cell:last-child {
    padding-left: 35px;
    padding-right: 35px;
  }

  .new_statement_align #transaction .five_col_row .tranlist_cell:first-child,
  .new_statement_align
    #transaction
    .five_col_row
    .tranlist_header
    .tranlist_cell:last-child,
  .statement_align_col .tranlist_row .tranlist_cell:first-child {
    padding-left: 0px;
    padding-right: 0px;
  }

  .new_statement_align #transaction .five_col_row .tranlist_cell:first-child,
  .statement_align_col .tranlist_row .tranlist_cell:first-child {
    position: relative;
    margin-bottom: 20px;
    font-family: "Axiforma_Regular";
  }

  .new_statement_align
    #transaction
    .five_col_row
    .tranlist_cell:first-child:after,
  .statement_align_col .tranlist_row .tranlist_cell:first-child:after {
    position: absolute;
    bottom: -1px;
    left: -30px;
    right: -30px;
    content: "";
    height: 1px;
    background-color: #d0d2d2;
  }

  .new_statement_align #transaction .five_col_row.tranlist_row:hover,
  .statement_align_col .tranlist_row:hover {
    box-shadow: none;
  }

  .cell_expand_view_mobile {
    display: block;
    float: right;
  }

  .cell_expand_view_desktop {
    display: none !important;
  }

  .inline_flex_activity_list {
    width: 50%;
    padding-bottom: 25px;
  }

  .statement_detail_data_container .right_activity {
    margin-top: 0px;
  }

  .state_data_detail_sec {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .statement_detail_data_container {
    padding-bottom: 0px;
  }

  .new_statement_align #transaction .five_col_row,
  .statement_align_col .tranlist_row {
    padding-left: 0px;
  }

  .statement_detail_data_container .left_activity {
    margin-bottom: 0px;
  }

  .mob_sm_txt {
    display: block !important;
    font-size: 10px;
    color: #414042;
    font-family: "Axiforma_Regular";
  }

  #Activity_Cur_Instal_Modal .px40 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .continue_area_progress {
    padding: 0px 0px 20px;
  }

  .continue_area_border .lft_new_continue_area,
  .continue_area_border .rt_new_continue_area {
    margin-bottom: 10px;
  }

  .continue_area_border .inner_continue_area_row {
    padding: 10px 0px 0;
  }

  .dashboard_row .brim_card_option {
    width: 100%;
    border-radius: 0px;
  }

  .brim_card_headline {
    font-size: 16px;
  }

  .other_value_cell_each {
    min-width: auto;
  }

  .other_value_cell_each.primaryCardData,
  .brim_right_flex .other_value_cell {
    text-align: left;
  }

  .brim_right_flex.brim_right_flex_align,
  .dashboard_row .brim_center_flex {
    margin-top: 20px;
    padding: 0;
    margin-left: 0px;
    margin-right: 0px;
  }

  .brim_right_flex.brim_right_flex_align {
    padding-top: 20px;
    position: relative;
  }

  .brim_right_flex.brim_right_flex_align:after {
    height: 3px;
    background-color: #f7f7f7;
    position: absolute;
    top: 0px;
    left: -30px;
    right: -30px;
    content: "";
  }

  .dashboard_row .brim_left_flex {
    margin-top: 15px;
  }

  .dashboard_row .brim_card_option:after,
  .dashboard_row .brim_card_option:before {
    content: "";
    position: absolute;
    background-color: #f7f7f7;
    top: 0px;
    bottom: 0px;
    height: 100%;
    width: 100px;
    z-index: 1;
  }

  .dashboard_row .brim_card_option:after {
    left: -30px;
  }

  .dashboard_row .brim_card_option:before {
    right: -30px;
  }

  .dashboard_row_single .other_value_cell_each.primaryCardData {
    text-align: center;
  }

  .desktop_tranlist_header {
    display: none !important;
  }

  .mobile_tranlist_header {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-bottom: 15px !important;
  }

  .tranlist_cell_mobile_hidden {
    display: inline-block !important;
    padding-right: 20px;
    font-size: 13px;
    font-family: "Axiforma-Book";
    color: #414042;
  }

  .tranlist_cell_mobile_hidden .muted_txt {
    font-family: "Axiforma_Regular";
    font-size: 10px;
    margin-top: 4px;
  }

  .six_col_row .tranlist_cell:first-child {
    min-width: 40% !important;
  }

  .six_col_row .tranlist_cell:last-child {
    min-width: 60% !important;
  }

  .current_cst_tranlist_container .tranlist_row {
    width: calc(100% - 30px);
    margin-top: 0px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .current_cst_tranlist_container .tranlist_header .tranlist_cell {
    font-size: 12px;
  }

  .current_cst_tranlist_container .tranlist_header {
    width: 100%;
  }

  .current_cst_tranlist_container .tranlist_header .tranlist_cell:first-child {
    padding-left: 30px;
    padding-right: 30px;
    min-width: 100% !important;
  }

  .current_cst_tranlist_container .tranlist_header .tranlist_cell:last-child {
    padding-right: 30px;
    display: none;
  }

  .cst_tranlist_single_container .tranlist_row:last-of-type .mrk_badge:after {
    height: calc(100% + 25px);
  }

  .current_cst_tranlist_container .tranlist_row:last-child .mrk_badge:after {
    top: -30px;
  }

  .activity_content .tab_menu li a {
    font-size: 12px;
  }

  /*--28.8.2018--*/
  .blank_container .col-xs-12 {
    max-width: 380px;
    float: none;
    margin: 0px auto;
  }

  .round_blnk_img {
    height: 80px;
    width: 80px;
    margin-bottom: 16px;
  }

  .blank_container h5 {
    font-size: 16px;
    margin: 0px auto 4px;
  }

  .blank_container p {
    font-size: 13px;
    line-height: 17px;
    margin: 0px auto 2px;
  }

  .blank_container p small {
    font-size: 10px;
    line-height: 16px;
  }

  .blank_container {
    padding: 25px 0px;
  }

  .other_value_cell_each.primaryCardData,
  .other_value_cell_each.familyCardData,
  .other_value_cell_each.familyCardDataYourcard,
  .other_value_cell_each.familyCardDataOthercard {
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .card_top_sec .card_top_rt_sec .right_activity_panel_lt .mob_right .currency,
  .activity_outer
    .right_activity
    .right_activity_panel_lt
    .mob_right
    .currency {
    font-size: 16px !important;
  }

  /*--end--*/
  .brim_make_pay .other_value_cell_each,
  .brim_make_pay .brim_right_flex .other_value_cell,
  .brim_make_pay .other_value_cell_each_inner {
    text-align: left;
  }

  .brim_make_pay .other_value_cell_each {
    text-align: center;
  }

  .newSuccess .modal-header {
    padding-bottom: 20px;
  }

  .newSuccess .modal-header h4 {
    font-size: 18px;
  }

  .newSuccess .setupawsome h4 {
    font-size: 18px;
  }

  .newSuccess .setupawsome_icon img {
    max-width: 40px;
  }

  .newSuccess .setuppaying_top {
    font-size: 14px;
    margin: 0px 0px 30px;
    line-height: 22px;
  }

  .newSuccess .modal-footer {
    padding: 20px 20px 20px;
  }

  /* .newSuccess .all_detail_container {
        margin-top: 25px;
    } */

  .newSuccess .modal-header .close {
    margin-top: 0px;
  }

  .statement_align_col .tranlist_header .tranlist_cell {
    min-width: 100% !important;
  }

  .statement_align_col {
    overflow: hidden;
  }

  .activity_outer .left_activity {
    max-width: 60%;
  }

  .redeem_modal_new .modal-header .close {
    margin: 17px 22px;
  }

  .tranlist_cell .color_tip {
    margin-top: -10px;
  }

  .white_info_tip {
    margin-bottom: 20px;
    right: -25px;
    padding: 10px;
    width: 230px;
    text-align: center;
  }

  #budget_modal .modal-title {
    font-size: 18px;
  }

  #budget_modal .modal-header {
    padding-bottom: 18px;
    padding-top: 18px;
  }

  #budget_modal .modal-header .close {
    margin: 18px 20px;
  }

  #budget_modal .icon_content span.descriptionTran {
    font-size: 16px;
  }

  #budget_modal .setup_install .transaction_pic > img {
    width: 40px;
    margin-right: 10px;
  }

  #budget_modal .balance_area_cell .cell_amount.re_amount em {
    font-size: 10px;
  }

  #budget_modal .balance_area_cell .pointsTran span {
    font-size: 18px;
  }

  #budget_modal .px40 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .only_progress .large_progress {
    width: 100% !important;
  }

  .all_progress_data .p_left_text {
    font-size: 12px;
    top: 27px;
  }

  .triangle_svg {
    margin-top: 0px;
  }

  .budget_search_area {
    padding-top: 20px;
    padding-bottom: 0px;
  }

  #budget_modal .search_bar {
    width: 100% !important;
    margin-bottom: 12px;
    float: none;
  }

  #budget_modal .select_item {
    width: 100%;
    float: none;
  }

  #budget_modal .transation_area {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
}

@media (max-width: 568px) {
  .flx_rt_align .new-on-off .onoff_area span,
  .flx_rt_align .new-on-off .switch {
    display: inline-block;
  }

  .flx_rt_align.download_btn {
    width: 100% !important;
  }

  /*--Activity page-end--*/
  /*--dashboard page--*/
  .on_of_label .onoff_area span,
  .on_of_label .onoff_area .switch {
    display: inline-block;
  }

  .on_of_label .onoff_area.switch_add .off {
    display: inline-block !important;
  }

  .left_text .blue_txt {
    margin-left: 10px;
  }

  .transation_head .left_text,
  .transation_head .right_text {
    font-size: 10px;
  }

  /*--dashboard page-end--*/
  /*--25.6.2018--*/
  .cont-box-outer .address_box_50 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /*--end--*/

  .all_progress_data .p_left_text {
    font-size: 12px;
    top: 30px;
  }

  .error_new {
    line-height: normal;
  }

  .refl_progress_cell.ref_complete:after {
    width: 45px;
    left: -23px;
  }
}

@media (max-width: 480px) {
  /*--Activity page--*/
  .tabText_content {
    padding-top: 25px;
  }

  .tab_search_inner.open {
    width: 240px;
  }

  .new-on-off > label {
    width: 170px;
  }

  .dashboard_row,
  .transation_head .left_text {
    padding-left: 0px;
    padding-right: 0px;
  }

  .transation_head .right_text {
    padding-left: 15px;
    padding-right: 15px;
  }

  .lft_list_value_cell {
    width: 140px;
  }

  .brim_left_flex {
    width: 284px;
    height: 200px;
  }

  .on_of_label label {
    margin-right: 10px;
  }

  .dashboard_card .brim_points_box span {
    font-size: 16px !important;
  }

  .dashboard_card .brim_points_box span {
    font-size: 16px !important;
  }

  .activity_content .tab_menu li a {
    font-size: 10px;
  }

  .installment.tab_menu li > a,
  .installment.tab_menu li > a:hover,
  .installment.tab_menu li > a:focus,
  .installment.tab_menu li.active > a,
  .installment.tab_menu li.active a:focus,
  .installment.tab_menu li.active a:hover {
    font-size: 10px;
    padding: 11px 6px;
    min-width: 100px;
  }

  .installment.tab_menu ul > li {
    margin-right: 10px;
  }

  .activity_content .tab_pannle .installment.tab_menu {
    margin: 0px -15px;
  }

  .installment.tab_menu li:last-child {
    margin-right: 0px !important;
  }

  .dashboard_row .brim_card_option:before {
    right: -15px;
  }

  .dashboard_row .brim_card_option:after {
    left: -15px;
  }

  .installment.tab_menu li > a,
  .installment.tab_menu li > a:hover,
  .installment.tab_menu li > a:focus,
  .installment.tab_menu li.active > a,
  .installment.tab_menu li.active a:focus,
  .installment.tab_menu li.active a:hover {
    min-width: 82px;
  }

  .activity_outer .right_activity.activity_flex_end {
    max-width: 40%;
  }

  .activity_outer .full_width_right_activity .right_activity_panel_lt {
    width: 44%;
  }

  .white_rdm_btn {
    font-size: 11px;
    min-width: 122px;
    line-height: 12px;
    padding: 10px 6px 7px;
  }

  .redeem_points_btn_sec .col-xs-6 {
    padding: 0px 6px;
  }

  .redeem_points_btn_sec .row {
    margin-left: -6px;
    margin-right: -6px;
  }

  /* .dashboard_card .card_top_sec .card_top_rt_sec {
        max-width: 130px !important;
    } */

  /* .dashboard_card .card_top_sec .card_top_lft_sec {
        max-width: calc(100% - 130px) !important;
    } */
  .dashboard_card .card_top_sec .card_top_rt_sec {
    max-width: 148px !important;
  }
  .dashboard_card .card_top_sec .card_top_lft_sec {
    max-width: calc(100% - 165px) !important;
  }

  .dashboard_card .card_top_sec .card_top_lft_sec h3 {
    font-size: 17px !important;
  }

  .dashboard_card .card_top_sec .mobile_brim_points_box {
    margin-top: 15px;
  }

  .dashboard_card .card_top_rt_sec {
    margin-top: 8px !important;
  }

  .dashboard_row_single.dashboard_row
    .brim_right_flex_align_single
    .other_value_cell_each {
    width: 49%;
  }

  .lang_select .brim_btn {
    margin-right: 3%;
    width: 48%;
  }
}

@media (max-width: 380px) {
  /*--Activity page--*/
  .right_activity_panel_lt {
    min-width: auto;
  }

  .statement_detail_data_container .make_btn {
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    float: none;
  }

  .statement_detail_data_container .left_activity {
    margin-bottom: 0px;
  }

  .statement_detail_data_container .right_activity_panel_lt {
    margin-bottom: 10px;
  }

  .statement_detail_data_container .right_activity_panel_rt {
    margin-bottom: 0px;
  }

  .state_data_detail_sec {
    margin-bottom: 25px;
  }

  .statement_detail_data_container .continue_new_area_row {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  /*--Activity page-end--*/
  /*--dashboard page-end--*/
  .brim_dashboard_card {
    -webkit-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85);
  }

  .brim_left_flex {
    width: 262px;
    height: 190px;
  }

  .brim_left_flex .slick-dots {
    bottom: 0px;
  }

  .transation_details {
    margin: 0px -15px !important;
  }

  /* .dashboard_row .brim_dashboard_card {
        -webkit-transform: scale(.85) !important;
        -moz-transform: scale(.85) !important;
        -ms-transform: scale(.85) !important;
        transform: scale(.85) !important;
    } */

  .dashboard_row .brim_left_flex {
    width: 280px;
  }

  .brim_card_slider_user_outer {
    margin-top: 0px;
  }

  .other_value_cell_each h4 {
    font-size: 16px;
  }

  .dashboard_row.dashboard_row_single .brim_dashboard_card {
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }

  /*--dashboard page--*/
  .dashboard_card .card_top_sec .right_activity_panel_lt {
    min-width: inherit;
  }

  .brim_card_slider_user_outer {
    padding: 0px 10px;
  }

  .lang_select .brim_btn {
    margin-right: 2%;
    width: 48%;
  }
}

@media (max-width: 340px) {
  .other_value_cell_each h4 {
    font-size: 14px;
  }

  .other_value_cell {
    letter-spacing: 0.5px;
    font-size: 9px;
  }

  .refl_progress_cell.ref_complete:after {
    width: 35px;
    left: -19px;
  }
}

/* add css */

.accout_area_newContact h1 {
  font-size: 32px;
  color: #454545;
  font-weight: bold;
  margin: 0 0 40px;
}

.accout_area_newContact h2 {
  font-size: 18px;
  color: #454545;
  font-weight: bold;
  margin-bottom: 4px;
}

.email_fld {
  margin: 20px 0 44px;
}

.email_fld a {
  font-size: 18px;
  color: #00c1d5;
}

.email_fld a svg {
  width: 24px;
  height: 17px;
  margin-right: 2px;
  display: inline-block;
  vertical-align: middle;
}

.email_fld a:hover {
  text-decoration: underline;
}

.repeat_wrap label {
  font-size: 15px;
  color: #454545;
  font-family: "Axiforma-Medium";
  text-transform: uppercase;
  margin: 20px 0 30px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8d8d8;
}

.no_cell_new {
  margin-right: 88px;
  float: left;
}

.no_cell_new span {
  font-size: 14px;
  color: #454545;
  font-family: "Axiforma-Medium";
  margin-bottom: 7px;
  display: block;
  padding-left: 37px;
}

.no_cell_new a {
  display: block;
  font-size: 18px;
  color: #00c1d5;
}

/* .no_cell_new a img {
    margin-right: 9px;
    width: 24px;
    margin-top: -3px;
} */

.no_cell_new a svg {
  margin-right: 9px;
  width: 26px;
  height: 27px;
  margin-top: 0;
  display: inline-block;
  vertical-align: bottom;
}

.no_cell_new a:hover {
  text-decoration: underline;
}

.accout_area_newContact .gray_bg {
  width: 538px;
  background: #f7f7f7;
  border-radius: 5px;
  padding: 16px 24px;
  margin: 26px 0 0;
}

.inner_bg_cell {
  float: left;
  width: 50%;
  padding-right: 65px;
}

.accout_area_newContact .gray_bg b {
  font-size: 13px;
  color: #414042;
  font-family: "Axiforma_SemiBold";
  display: block;
  margin-bottom: 8px;
}

.inner_bg_cell span {
  display: block;
  font-size: 14px;
  color: #414042;
  font-family: "Axiforma-Book";
  margin: 0px 0 2px;
}

.accout_area_newContact .gray_bg i {
  font-size: 13px;
  color: #454545;
  font-style: italic;
  font-family: "Axiforma_Light";
  margin-top: 18px;
  display: block;
}

.opentext {
  font-size: 14px;
  color: #414042;
  margin-top: 3px;
}

.social_new_area {
  margin: 16px 0 0;
}

.social_new_area a {
  text-align: center;
  display: inline-block;
  margin-right: 20px;
}

.social_new_area a:hover {
  opacity: 0.8;
}

.topGap {
  margin-top: 40px;
}

.svg-container {
  display: none;
}

.social_new_area a svg {
  width: 49px;
  height: 49px;
}

#home_postal_code,
.updatedPostalCode {
  text-transform: uppercase;
}

.change_pin_button.lang_select .brim_btn {
  color: #454545;
}

/* 27.7.19 */

.new_statement_sec .statement_detail_data_container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 30px;
  border: 0;
}

.new_statement_sec .statement_detail_data_container .make_btn {
  min-width: 140px;
  color: #fff;
  border: 1px solid #00c1d5;
  background-color: #00c1d5;
  font-size: 13px;
  box-shadow: none;
  vertical-align: bottom;
  line-height: 40px;
  padding: 0;
}

.new_statement_sec .state_data_cap {
  font-size: 14px;
  color: #454545;
  font-family: "Axiforma-Medium";
  text-transform: uppercase;
}

.new_statement_sec .state_data_txt {
  font-size: 18px;
  color: #454545;
  font-family: "Axiforma_Bold";
  display: inline-block;
  vertical-align: middle;
}

.new_statement_sec .state_data_detail_sec {
  margin-bottom: 20px;
}

.new_statement_sec .left_activity .inline_flex_activity_list .currency h3 {
  font-family: "Axiforma_light";
  font-size: 24px !important;
}

.new_statement_sec .inline_flex_activity_list .brim_points_box span {
  font-size: 18px !important;
  font-family: "Axiforma-Book";
  line-height: 23px;
}

.new_statement_sec
  .single_select_item.download_btn
  .dropdown.dropdown_download
  a.dropdown-toggle {
  border: 1px solid #a2a2a2;
  color: #414042;
  font-family: "Axiforma-Medium";
  font-size: 12px;
  text-align: center;
}

.new_statement_sec .statement_detail_data_container .left_activity {
  max-width: 70%;
  width: 70%;
}

.statemnt_tab {
  padding: 0;
}

.new_statement_sec {
  padding: 30px 0;
}

.new_statement_sec .download_btn .dropdown a {
  background-image: url(../images/arow.png) !important;
  background-position: right 15px top 50%;
  background-color: transparent;
}

.new_statement_sec .download_btn .dropdown-menu {
  min-width: auto;
  margin-top: 2px !important;
}

.new_statement_sec .download_btn .dropdown-menu li a {
  padding-left: 6px;
  padding-right: 6px;
  background-image: none !important;
}

.new_statement_sec .dropdown {
  width: 140px;
}

.statement_dtls_box .panel-default > .panel-heading {
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.statement_dtls_box .panel-default .panel-heading a {
  background: url(../images/top_arow.png) right center no-repeat;
  width: 20px;
  background-size: 20px;
}

.statement_dtls_box .panel-default.collapsed .panel-heading a {
  background: url(../images/arow.png) right center no-repeat;
  width: 20px;
  background-size: 20px;
  pointer-events: none;
}

.statement_dtls_box .statement_detail_data_container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 0 0;
  border: 0;
}

.statement_dtls_box .left_activity .inline_flex_activity_list .currency h3 {
  font-family: "Axiforma_light";
  font-size: 24px !important;
}

.statement_dtls_box .inline_flex_activity_list .brim_points_box span {
  font-size: 18px !important;
  font-family: "Axiforma-Book";
  line-height: 23px;
}

.statement_dtls_box .statement_detail_data_container .make_btn {
  min-width: 140px;
  color: #fff;
  border: 1px solid #00c1d5;
  background-color: #00c1d5;
  font-size: 13px;
  box-shadow: none;
  vertical-align: bottom;
  line-height: 40px;
  padding: 0;
}

.statement_dtls_box
  .single_select_item.download_btn
  .dropdown.dropdown_download
  a.dropdown-toggle {
  border: 1px solid #a2a2a2;
  color: #414042;
  font-family: "Axiforma-Medium";
  font-size: 12px;
  text-align: center;
}

.statement_dtls_box .download_btn .dropdown-menu {
  min-width: auto;
  margin-top: 2px !important;
}

.statement_dtls_box .dropdown {
  width: 140px;
}

.statement_dtls_box .download_btn .dropdown-menu li a {
  padding-left: 6px;
  padding-right: 6px;
  background-image: none !important;
}

.statement_dtls_box
  .panel-default
  > .panel-heading
  + .panel-collapse
  > .panel-body {
  border: 0;
  padding: 0;
}

.statement_dtls_box .download_btn .dropdown a {
  background-image: url(../images/arow.png) !important;
  background-position: right 15px top 50%;
  background-color: transparent;
}

.statement_dtls_box .panel-group .panel + .panel {
  margin-top: 20px;
}

.statement_dtls_box .panel {
  padding: 30px;
  border: 1px solid #efefef;
  border-radius: 8px;
  cursor: pointer;
}

.statement_dtls_box .statement_detail_data_container .left_activity {
  float: none;
  width: 70%;
}

.statement_dtls_box .panel-title {
  font-size: 18px;
  color: #454545;
  font-family: "Axiforma_Bold";
}

.new_statement_details {
  padding: 30px 0;
}

.ecommerce_flag_text {
  line-height: 16px;
}

.ecommerce_flag_text b {
  display: block;
  margin-bottom: 10px;
}

.incard_flag_text {
  line-height: 16px;
}
.incard_flag_text b {
  display: block;
}

.new_statement_sec .single_select_item.download_btn,
.statement_dtls_box .single_select_item.download_btn {
  padding-left: 15px;
}

.new_statement_sec .single_select_item.download_btn .dropdown a.dropdown-toggle,
.statement_dtls_box
  .single_select_item.download_btn
  .dropdown
  a.dropdown-toggle {
  line-height: 40px;
  vertical-align: bottom;
}

.new_statement_sec .inline_flex_activity_list .brim_points_box .small_point_tag,
.statement_dtls_box
  .inline_flex_activity_list
  .brim_points_box
  .small_point_tag {
  height: 22px;
  width: 22px;
}

.new_statement_sec .statement_detail_data_container .small_point_tag,
.statement_dtls_box .statement_detail_data_container .small_point_tag {
  margin-top: -8px;
}

.innercell_click {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.new_info_tip_align {
  position: absolute !important;
  right: 5px;
}

.new_info_tip_align .white_info_tip {
  right: -15px;
}

.white_info_tip:after {
  border-right: 15px solid transparent;
  right: 8px;
}

.psn_rltv {
  position: relative;
}

.new_top_tooltip {
  margin-left: 1px;
}

.new_top_tooltip .color_tip {
  background: transparent;
  font-size: 16px;
  height: 16px;
  width: 16px;
}

.new_top_tooltip .white_info_tip {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-bottom: 0;
  text-align: left;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #00c1d5;
  margin-top: 15px;
  bottom: auto;
  font-family: "Axiforma-Book";
  text-transform: initial !important;
  min-height: auto;
  padding: 12px 22px 10px 15px;
}

.new_top_tooltip .tip_close {
  font-size: 0 !important;
  width: 16px !important;
  height: 16px !important;
  text-align: center;
  line-height: 16px;
  background-color: transparent;
  background-image: url(../images/icon-dismiss_new.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.other_value_cell_each_inner .info_tip_link {
  vertical-align: top;
}

.other_value_cell_each_inner .new_info_tip {
  vertical-align: top;
}

.new_top_tooltip .white_info_tip:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 19px 14px;
  border-color: transparent transparent #00c0d5 transparent;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  top: -19px;
}

.new_top_tooltip .white_info_tip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 13px 17px 13px;
  border-color: transparent transparent #f7f7f7 transparent;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  top: -19px;
  top: -16px;
  z-index: 1;
}

.new_top_tooltip .info_tip p {
  line-height: 17px;
}

.right_tip .white_info_tip:before {
  left: auto;
  right: 12px;
  transform: none;
}

.right_tip .white_info_tip {
  right: -20px;
  left: auto;
  transform: none;
  margin-top: 15px;
  bottom: auto;
}

.right_tip .white_info_tip:after {
  left: auto;
  right: 11px;
  transform: none;
}

.dashboard_row_single .right_tip .white_info_tip {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.dashboard_row_single .right_tip .white_info_tip:before {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.dashboard_row_single .right_tip .white_info_tip:after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.new_top_tooltip .color_tip:hover,
.new_top_tooltip .color_tip:focus {
  color: #005962;
}

.new_info_tip_hover {
  position: relative;
}

.eshoppending {
  line-height: 22px;
  padding: 0 8px;
  height: 20px;
  font-size: 12px;
  color: #454545;
  border-radius: 0 4px 4px 0;
  background-color: #eaf4f6;
  font-family: "Axiforma_Regular";
  text-align: center;
  margin-right: 13px;
  position: relative;
}

.eshoppending:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 10px 0;
  border-color: transparent #eaf4f6 transparent transparent;
  content: "";
  position: absolute;
  right: -7px;
  transform: rotate(180deg);
}
.brdr_nil {
  box-shadow: none !important;
  background-color: #fff;
  margin-top: 20px;
}
.wd100 {
  width: 100%;
}
.msg_tip {
  background-color: #eefdff;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
}
.msg_inner {
  position: relative;
  display: inline-block;
}
.msg_tip p {
  font-size: 14px;
  color: #454545;
  margin: 0;
  font-family: "Axiforma-Book";
  position: relative;
  display: inline-block;
  white-space: normal;
}
.msg_tip p strong {
  font-family: "Axiforma_Bold";
}
.msg_inner .new_info_tip {
  left: 100%;
  top: 7px;
  right: auto;
}

.eshoppending_mobile {
  margin-left: 10px;
  margin-right: 0;
  display: none;
}
.eshoppending_mobile:after {
  left: -7px;
  transform: none;
}

.other_value_cell_acdtls .brim_card_headline {
  width: 100%;
  margin-bottom: -10px;
  font-size: 16px;
}
.other_value_cell_acdtls .other_value_cell_each {
  margin-bottom: 20px;
}
.other_value_cell_acdtls {
  padding-top: 30px;
}

@media all and (-ms-high-contrast: none) {
  .icon_content span {
    line-height: normal !important;
  }
  .new_info_tip_align {
    top: 50%;
    transform: translateY(-50%);
  }
  .tranlist_cell_txt {
    line-height: normal;
  }
}
.tranlist_cell:first-child .tranlist_cell_txt {
  max-width: calc(100% - 60px);
}

.debit_portion .flex_dashboard_outer {
  padding-left: 230px;
}
.debit_portion .dashboard_card .card_top_lft_sec h3 {
  font-size: 32px;
}
.debit_portion .dashboard_row .brim_left_flex {
  width: 200px;
  padding: 0 15px;
}
.pepaid_crd_holder {
  margin-top: -115px;
  position: relative;
}
.debit_portion .card_bottom_sec {
  padding: 30px 0px 50px;
}
.debit_portion .brim_center_flex {
  padding: 0px 30px;
  margin-top: 0;
}
.debit_portion .dashboard_row .brim_right_flex {
  width: calc(100% - 769px);
}
.debit_portion .make_btn {
  font-family: "Axiforma_Bold";
  font-size: 12px;
  min-width: 167px;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 42px;
  height: 39px;
}
.debit_portion .make_btn img {
  width: 18px;
}
.brdrd_btn {
  border: 2px solid #00c1d5;
  color: #00c1d5;
  background-color: transparent;
  padding: 0px 15px;
  line-height: 38px !important;
}
.brdrd_btn:hover {
  color: #00c1d5;
}
.debit_portion .brim_left_flex {
  overflow: visible;
}
.debit_portion .other_value_cell span {
  margin: 0;
}
.debit_portion .small_point_tag {
  height: 22px;
  width: 22px;
}
.debit_portion .brim_points_box span {
  font-size: 24px !important;
  vertical-align: top;
  line-height: 100%;
}
.debit_portion .brim_make_pay .other_value_cell {
  align-items: center;
}
.debit_portion .other_value_cell_each h4 {
  font-size: 32px;
}
.prepaid_acvty_rt .make_btn {
  font-family: "Axiforma_Bold";
  min-width: 167px;
  font-size: 12px;
  margin-left: 45px;
  text-align: center;
}
.debit_portion .lock_card_overlay span {
  color: #fff;
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  text-align: center;
  left: 0;
  right: 0;
}
.debit_portion .lock_card_overlay {
  border-radius: 8px;
}
.debit_portion .brdrd_btn img {
  width: 20px;
}
.prepaid_acvty_rt .make_btn img {
  width: 22px;
}
#budget_modal
  .budget_transaction_area
  .cst_tranlist_single_container
  .tranlist_cell:nth-last-child(2) {
  min-width: 17%;
}
#budget_modal
  .budget_transaction_area
  .cst_tranlist_single_container
  .tranlist_cell {
  min-width: 16%;
}

#newredeemcashbacksuccessmodal .mp_success {
  padding: 30px 30px 0;
}
#newredeemcashbacksuccessmodal .newSuccess_btn {
  padding: 13px 15px;
}
.go_to_actvty {
  text-align: center;
  padding-bottom: 30px;
}
#newredeemcashbacksuccessmodal .all_detail_container {
  padding: 0;
}
#make_payment_new .material_inf_tip {
  text-align: center;
  display: block;
}
#make_payment_new .material_inf_tip_ico {
  position: static;
}
.modal-open {
  overflow: hidden !important;
}
.lkdimgdiv {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.lock_online_new {
  height: 40px;
  width: 40px;
  background-size: 30px;
  background-position: center center;
  background-image: url(../images/cross_monitor.png);
  background-color: rgba(69, 69, 69, 0.7);
}
.lock_foreign_new {
  background-image: url(../images/cross_globe.png);
  height: 40px;
  width: 40px;
  background-size: 30px;
  background-color: rgba(69, 69, 69, 0.7);
  border-radius: 10px;
  background-position: center center;
  margin-left: 5px;
}
.Card_Lock_Modal_body {
  padding: 30px 75px;
  text-align: center;
}
.Card_Lock_Modal_body p {
  font-size: 16px;
  color: #454545;
  margin: 0;
  letter-spacing: 1px;
  line-height: 20px;
  font-family: "Axiforma_Regular";
}
.Card_Lock_Modal_body p span {
  display: inline-block;
  font-family: "Axiforma_bold";
}
.carp_body .card_option_img {
  height: 80px;
  width: 80px;
  padding: 44px 10px 0;
  font-family: "Axiforma_bold";
  color: #fff;
  font-size: 14px;
  line-height: 15px;
  background-position: top 10px center;
}
.carp_body .card_option_label {
  margin: 0;
  white-space: normal;
  font-family: "Axiforma_bold";
  color: #fff;
  font-size: 14px;
}
.carp_body .lock_online {
  background-position: top 3px center !important;
}
.carp_body .lock_foreign {
  background-position: top 3px center !important;
}
.carp_body .brim_card_single_option.active .card_option_img {
  background-color: #009eae;
  background-position: top 10px center !important;
}
.carp_body .lock_online_new {
  height: 40px;
  width: 40px;
  background-size: 30px;
  background-position: center center;
  background-image: url(../images/cross_monitor.png);
  background-color: rgba(69, 69, 69, 0.7);
}
.carp_body .lock_foreign_new {
  background-image: url(../images/cross_globe.png);
  height: 40px;
  width: 40px;
  background-size: 30px;
  background-color: rgba(69, 69, 69, 0.7);
  border-radius: 10px;
  background-position: center center;
  margin-left: 5px;
}

.no_result_activity .top_typo_box {
  margin-bottom: 0;
}
.no_result_activity .top_typo_box ul li {
  font-size: 16px;
  font-family: "Axiforma-Book";
}
.no_result_activity .top_typo_box h4 {
  margin-bottom: 35px;
}
.no_result_activity.tab_ecommerce {
  box-shadow: none;
}
.no_result_activity .top_typo_box h4 span {
  color: #00c1d5;
}
.no_result_activity .top_typo_box ul {
  padding-top: 20px;
}
.searchtextac {
  color: #00c1d5;
  font-style: normal;
}
.dashboard_carp .card_bottom_sec {
  padding: 45px 0px 25px;
}
.carp_body .my_cards .card_top_rt_sec .right_activity_panel_rt {
  margin-top: 0;
}
.carp_body .sub_txt {
  font-family: "Axiforma_Bold";
  font-size: 13px;
}
.activity_content .tab_ecommerce {
  box-shadow: none;
  margin-bottom: 0;
  min-height: 42px;
}
.activity_content .top_typo_box {
  margin-bottom: 0;
}
.activity_content .single_select_item.active .btn {
  background-color: #077c88 !important;
  color: #fff;
}

.activity_content
  .single_select_item.active
  .bootstrap-select.btn-group
  .btn
  .caret {
  background: url(../images/arow_whtt.png) no-repeat;
}
.inner_bg_cell_new {
  padding-right: 30px;
}

/* css hack for ie 11 */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .carp_body .card_bottom_sec .sub_txt {
    font-size: 12px;
  }
  .carp_body .right_activity_panel_lt .brim_points_box {
    margin-top: 10px;
  }
  .dashboard_card .card_top_rt_sec .right_activity_panel_rt {
    margin-top: 0;
  }
  .carp_body .dashboard_card .small_point_tag {
    margin-top: -12px;
  }
  .carp_body .mob_right {
    padding-top: 6px;
  }
  .carp_body .left_activity h3 {
    line-height: 53px;
  }
  .ActivityPage .small_point_tag {
    margin-top: -10px;
  }
  .ActivityPage .pointTo {
    padding-top: 12px;
  }
  .carp_body .pagination_wrap li a {
    line-height: 42px;
  }
  .authuser_body .dashboard_carp .brim_center_flex {
    margin-top: 0;
  }
  .piedrp .bootstrap-select > .btn {
    padding-top: 0;
    line-height: 35px;
  }
  .clearSearch {
    padding-top: 11px;
  }
  .tranlist_cell_txt {
    padding-top: 9px;
  }
  .tranlist_cell .color_tip {
    margin-top: 4px;
  }
  .do_redeemed em,
  .do_redeemed i {
    padding-top: 10px;
  }
  .carp_body .ActivityPage .bootstrap-select > .btn {
    line-height: 48px;
  }
  .activity_content .single_select_item .bootstrap-select > .btn {
    line-height: 48px;
  }
  .activity_content .dropdown_function_outer .new-on-off label {
    padding-top: 8px;
  }

  .activity_content .tab_ecommerce {
    min-height: 39px;
  }
  .transation_head_carp .left_text .muted_txt {
    vertical-align: inherit !important;
  }
}

/* css hack for ie 11 */


/* start 26.07.22 */
.four_col_row .tranlist_cell:first-child {
    /* min-width: 27%; */
    min-width: 32%;
}
.four_col_row .tranlist_cell:nth-child(3) {
  justify-content: flex-end;
  min-width: 24%;
}
.four_col_row .tranlist_cell:last-child {
    min-width: 23%;
    padding-left: 0;
}
.tranlist_row.tranlist_header.dashboard_tranlist_row.four_col_row.transaction_dtls_header_menu:hover {
  box-shadow: none;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-radius: 0px;
  background: transparent;
}
.dash_trans_lst.four_col_row .tranlist_cell:first-child {
    /* min-width: 27%; */
    min-width: 35%;
}
.dash_trans_lst.four_col_row .tranlist_cell:nth-child(3) {
    justify-content: flex-end;
    min-width: 14%;
}
.dash_trans_lst.four_col_row .tranlist_cell:last-child {
    min-width: 23%;
    padding-left: 0;
    padding-right: 20px;
}
/* end 26.07.22 */
/* start 10.03.23 */
.five_col_row.dashboard_tranlist_row .tranlist_cell:nth-last-child(2){
  min-width: 4%;
  padding-left: 0;
}
.dash_trans_lst.four_col_row .tranlist_cell:last-child{
  padding-right: 45px;
}
.dash_trans_lst.four_col_row .tranlist_cell:nth-child(2){
  padding-left: 0;
}
.lbcbiz_flow .four_col_row .tranlist_cell:nth-child(3){
  min-width: 14%;
  padding-right: 0;
}
.lbcbiz_flow .transdashboard .four_col_row .tranlist_cell:nth-child(3){
  padding-right: 15px;
}
/* end 10.03.23 */

/* start 11.04.23 */
#addemployeemodal p, #addadminmodal p {
  text-align: center;
}
/* end 11.04.23 */