﻿/* Layout CSS ST */
/* Trip Expense ST */
/* MUI Tabs ST */
.trip_expense_cont .material-form {
  width: 100%;
  display: flex;
}

.trip_expense_cont .material-form .form-row {
  display: flex;
  width: 100%;
  flex: 1;
  margin: 0 -9px;
}

.trip_expense_cont .material-form .form-row > div {
  flex: 1;
  padding: 0 9px;
}

.trip_expense_cont .material-form .form-row > div:first-child,
.trip_expense_cont .material-form .form-row > div:last-child {
  flex: 0 0 260px;
}

.trip_expense_cont .material-form .form-group label {
  top: 9px;
}

.trip_expense_cont .material-form .form-row.form-submit > div:first-child {
  flex: 0 0 680px;
  width: 680px;
}

.trip_expense_cont .material-form .form-row.form-submit > div:last-child {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.trip_expense_cont .MuiTab-root {
  color: #000;
  padding: 5px 20px;
  font-size: 15px;
  font-family: Poppins, Arial, "sans-serif";
  font-weight: normal;
  line-height: 1.2;
  margin-right: 10px;
  text-transform: none;
  min-height: auto;
  min-width: auto;
  opacity: 1;
}

.trip_expense_cont .MuiTab-root:hover,
.trip_expense_cont .MuiTab-root.Mui-selected {
  background: none;
  color: #31a8dc;
}

.trip_expense_cont .MuiTabs-indicator {
  border: 1px solid #31A8DC !important;
  border-radius: 15px !important;
  background-color: transparent !important;
  height: 27px !important;
  position: absolute !important;
  bottom: 21px !important;
}

/* MUI Tabs EN */
/* Checkbox ST */
.te_selection {
  display: flex;
  padding: 18px 0;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.te_selection > div {
  padding: 0 10px 0 0;
  margin: 0 10px 0 0;
  border-right: 1px solid #c1c1c1;
}
.te_selection > div:last-child {
  border: none;
}
.te_selection label {
  display: block;
  position: relative;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 90px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}
.te_selection label::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0;
  margin: 0 auto;
  width: 47px;
  height: 30px;
  background: url("/app_themes/tripeasy/assets/images/trip-expense-sprite.svg") no-repeat;
  background-size: 500px 500px;
  background-position: 0px 1px;
}
.te_selection label.active {
  background: #0a5d9b;
  color: #fff;
}
.te_selection label#tab4::before {
  background-position: 7px -171px;
}
.te_selection label.active#tab4::before {
  background-position: 7px -218px;
}
.te_selection label#tab2::before {
  background-position: -50px -173px;
}
.te_selection label.active#tab2::before {
  background-position: -50px -217px;
}
.te_selection label#tab3::before {
  background-position: -124px -173px;
}
.te_selection label.active#tab3::before {
  background-position: -124px -218px;
}
.te_selection label#tab1::before {
  background-position: -184px -173px;
}
.te_selection label.active#tab1::before {
  background-position: -184px -218px;
}
.te_selection label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.te_selection label .checkmark {
  position: absolute;
  top: 13px;
  left: 10px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #336699;
  display: block;
  visibility: hidden;
}
.te_selection label div {
  font-size: 12px;
  left: 0;
  right: 0;
  bottom: 3px;
  position: absolute;
  display: flex;
  justify-content: center;
}
.te_selection label:hover input ~ .checkmark {
  background-color: #fff;
}
.te_selection label input:checked ~ .checkmark {
  background-color: #fff;
}
.te_selection .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.te_selection label input:checked ~ .checkmark:after {
  display: block;
}
.te_selection label .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #0a5d9b;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.search-widget-master input[type=text] .trip_expense_cont {
  display: flex;
  flex-direction: column;
}

.trip_expense_cont .react-mform .mform-row.form-submit > div:last-child, .trip_expense_cont .te-addExpense .mform-row.form-submit > div:last-child {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.receipt_tags .tag {
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  border-radius: 24px;
  background: #edf1f2;
  display: table;
}
.receipt_tags .tag > img {
  border-radius: 50%;
  height: 46px;
  width: 46px;
  display: inline-block !important;
  vertical-align: middle;
}
.receipt_tags .tag > span {
  padding: 0 5px 0 10px;
  display: table-cell;
}
.receipt_tags .tag > a {
  color: #2084ce;
  margin-right: 8px;
  padding: 0 10px;
  outline: none;
}
.receipt_tags .owl-stage-outer {
  left: 11px;
}
.receipt_tags .owl-nav {
  position: relative;
  margin: 0 !important;
}
.receipt_tags .owl-nav button {
  padding: 0 5px;
  margin: 0 !important;
}
.receipt_tags .owl-nav button span {
  font-size: 35px;
}
.receipt_tags .owl-nav .owl-prev {
  left: 0px;
  top: -50px;
  position: absolute;
  z-index: 8;
}
.receipt_tags .owl-nav .owl-next {
  right: -24px;
  top: -50px;
  position: absolute;
  z-index: 8;
}

/* Button ST */
.btn-te {
  height: 40px;
  line-height: 40px;
  width: 162px;
  text-align: center;
  background: #2084ce;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  border-radius: 20px;
  margin: 0;
  padding: 0;
}

.btn-te:hover, .btn-te:active {
  background: #0a5d9b;
}

.btn-te.email::before {
  content: "";
  position: relative;
  vertical-align: middle;
  height: 30px;
  width: 43px;
  margin-right: 5px;
  display: inline-block;
  background: url("/app_themes/tripeasy/assets/images/trip-expense-sprite.svg") no-repeat;
  background-size: 500px 500px;
  background-position: -162px -43px;
}

.btn-camera.MuiButton-root, .btn-camera.MuiButton-root:hover, .btn-camera.MuiButton-root:focus {
  font-size: 16px;
  font-weight: normal;
  background: #fff;
  color: #2084ce;
  position: relative;
  padding: 10px 10px 10px 45px !important;
  margin: 0;
  border: unset;
  border-radius: 20px;
  outline: 0;
  box-shadow: unset;
}

.btn-camera::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  height: 37px;
  width: 37px;
  background: url("/app_themes/tripeasy/assets/images/trip-expense-sprite.svg") no-repeat;
  background-size: 500px 500px;
  background-position: -222px 1px;
}

.btn-camera span.MuiButton-label {
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1.2;
  color: #2084ce;
}

/* Trip EXP - Search Widget - Tab 2 ST */
.TakeUploadPic {
  display: flex;
  flex-direction: column;
  height: 155px;
}
.TakeUploadPic > div:nth-child(1) {
  font-size: 26px;
  line-height: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 25px;
}
.TakeUploadPic > .btn-take-upload {
  display: flex;
  justify-content: center;
}
.TakeUploadPic > .btn-take-upload > .btn-te {
  display: inline-block;
  background: #fff;
  color: #2084ce;
  font-size: 26px;
  line-height: 1.4;
  outline: none;
  margin-right: 75px;
  height: auto;
  width: auto;
}
.TakeUploadPic > .btn-take-upload > .btn-te::before {
  content: "";
  display: block;
  width: 54px;
  height: 44px;
  margin: 0 auto;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 500px 500px !important;
  background-position: -357px -81px;
}
.TakeUploadPic > .btn-take-upload > .upload-image .btn-camera.MuiButton-root {
  display: block;
  padding: 0 !important;
}
.TakeUploadPic > .btn-take-upload > .upload-image .btn-camera.MuiButton-root::before {
  position: static;
  display: block;
  width: 54px;
  height: 44px;
  margin: 0 auto;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 500px 500px !important;
  background-position: -426px -81px;
}
.TakeUploadPic > .btn-take-upload > .upload-image .MuiButton-label {
  font-size: 26px;
}

/* Tab 3 */
.tabData3.car_reading .mform-row > .upload_pic {
  position: relative;
}
.tabData3.car_reading .mform-row > .upload_pic .upload-image {
  position: absolute;
  right: 5px;
  top: 4px;
}
.tabData3.car_reading .mform-row > .upload_pic .upload-image label .MuiButton-label {
  display: none;
}
.tabData3.car_reading .mform-row > .upload_pic .upload-image label > span {
  min-width: 36px;
  height: 40px;
  padding: 0 !important;
}

/* Web Cam Popup ST */
.webcam-popup .MuiDialogContent-root {
  padding-top: 0;
}
.webcam-popup .webcam_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 0;
}
.webcam-popup .webcam_btn > button {
  margin: 10px 10px 15px 10px;
}

#date-picker-dialog {
  padding-left: 35px;
}

#date-picker-icon-calendar {
  position: absolute;
  padding-left: 8px;
  padding-top: 10px;
  z-index: 1;
  cursor: auto;
}

.MuiIconButton-label {
  cursor: auto;
}

.trip_expense_cont > .react-mform > .MuiFormLabel-root .Mui-focused, .trip_expense_cont > .te-addExpense > .MuiFormLabel-root .Mui-focused {
  color: #2084ce !important;
}

#add-client-icon-option {
  position: absolute;
  z-index: 1;
  margin-left: 205px;
  top: 10px;
  padding: 0px !important;
}

#add-client-icon-option.MuiIconButton-root {
  flex: 0 0 auto;
  color: rgba(0, 0, 0, 0.54);
  padding: 12px;
  overflow: visible;
  font-size: 1.5rem;
  text-align: center;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
}

#add-client-icon-option.MuiIconButton-root:hover {
  background-color: rgba(0, 0, 0, 0.08);
  color: #fff;
}

/* Receipt TripExp ST */
.MuiBox-root {
  padding: 0 0 10px 0;
}

.receipt_list {
  width: 100%;
  height: 215px;
  overflow: auto;
  white-space: nowrap;
  margin-bottom: 10px;
  /* Scrollbar Custom ST */
  /* Scrollbar Custom EN */
}
.receipt_list::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
.receipt_list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 12px;
}
.receipt_list::-webkit-scrollbar-thumb {
  background: #31A8DC;
  border-radius: 12px;
}
.receipt_list::-webkit-scrollbar-thumb:hover {
  background: #31A8DC;
}

.receipt_thumb {
  position: relative;
  display: inline-block;
  margin: 44px 20px 0 0;
}
.receipt_thumb > label {
  display: block;
  height: 144px;
  width: 160px;
  border: 2px solid #efefef;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.receipt_thumb > label:hover {
  border: 2px solid #31A8DC;
}
.receipt_thumb .receipt-info {
  position: absolute;
  top: -46px;
  left: 0;
  z-index: 2;
  width: 98%;
  font-size: 14px;
}
.receipt_thumb .receipt-info > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.receipt_thumb .receipt-info > div:last-child {
  font-size: 12px;
}
.receipt_thumb .img_box {
  position: absolute;
  border-radius: 15px;
  overflow: hidden;
  display: contents;
}
.receipt_thumb .img_box embed {
  height: 160px;
  max-width: 160px;
  object-fit: scale-down;
  position: absolute;
  z-index: 2;
  padding: 0px 0px;
  padding: 3px;
  margin: -3px;
}
.receipt_thumb .img_box img {
  object-fit: cover;
  height: 165px;
  width: 165px;
}
.receipt_thumb .buttons {
  display: flex;
  flex: 1;
  flex-direction: column;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.receipt_thumb .buttons > button {
  background: #fff;
  color: #31A8DC;
  border-radius: 19px;
  border: 1px solid #31A8DC;
  width: fit-content;
  height: 30px;
  padding: 0 20px;
  margin: 15px auto 0 auto;
  font-weight: 400;
  z-index: 100;
  cursor: pointer;
}
.receipt_thumb .buttons > button:hover {
  color: #336699;
  border: 1px solid #336699;
}
.receipt_thumb .buttons > button.red {
  border: 1px solid #F92121;
  color: #F92121;
}
.receipt_thumb .buttons > button.red:hover {
  border: 1px solid #9b242c;
  color: #9b242c;
}
.receipt_thumb .custom_cb {
  position: absolute;
  bottom: 10px;
  right: 20px;
  visibility: hidden;
  height: 22px;
  width: 22px;
  z-index: 2;
  /* Checkbox Custom ST */
  /* Checkbox Custom EN */
}
.receipt_thumb .custom_cb input[type=checkbox] {
  cursor: pointer;
  width: 10px;
}
.receipt_thumb .custom_cb input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 21px;
  height: 21px;
  top: 0;
  left: 0;
  background-color: #fff;
  border: 1px solid #7e7f81;
  border-radius: 5px;
}
.receipt_thumb .custom_cb input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  width: 21px;
  height: 21px;
  top: 0;
  left: 0;
  background-color: #31a8dc;
  border-radius: 5px;
  border: 1px solid #31a8dc;
}
.receipt_thumb .custom_cb input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  left: 8px;
}

.receipt_thumb:hover .buttons,
.receipt_thumb:hover .custom_cb,
.receipt_thumb .custom_cb input:checked {
  visibility: visible;
  cursor: pointer;
}

/* New tab ST */
.new_tab {
  display: flex;
  margin: 0 0 0 5px;
}
.new_tab > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.new_tab .block_new {
  border: 2px dashed #B2B2B2;
  border-radius: 20px;
  display: flex;
  width: 274px;
  cursor: pointer;
  position: relative;
}
.new_tab .block_new > div:nth-child(1) {
  display: inline-block;
  width: 110px;
  height: 82px;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 900px 900px;
  background-position: 4px -480px;
  margin: 20px 0 5px 0;
}
.new_tab .block_new > div.img_camera {
  background-position: -161px -476px;
}
.new_tab .block_new > div.img_email {
  background-position: -326px -473px;
}
.new_tab .block_new .new_tab_cont {
  text-align: center;
  margin: 0 0 10px 0;
}
.new_tab .block_new .new_tab_cont p {
  font: 18px/1.4 "Poppins", arial;
}
.new_tab .block_new .new_tab_cont p:nth-child(2) {
  font-size: 14px;
  color: #31a8dc;
}
.new_tab .block_new .new_tab_cont p:nth-child(2) a {
  color: #31a8dc;
  text-decoration: underline;
}
.new_tab .block_new .new_tab_cont p:nth-child(2) a:hover {
  color: #336799;
  text-decoration: underline;
}
.new_tab .seperator {
  width: 87px;
  color: #336699;
}
.new_tab .mileageFields {
  display: flex;
  justify-content: space-between;
}

.trip_expense_cont .MuiSwitch-root {
  width: 67px !important;
  height: 48px !important;
}
.trip_expense_cont .MuiSwitch-root .MuiSwitch-track {
  background-color: #C1C1C1 !important;
  border-radius: 15px !important;
  opacity: 1 !important;
}
.trip_expense_cont .MuiSwitch-root.Mui-checked,
.trip_expense_cont .MuiSwitch-switchBase.MuiSwitch-colorPrimary.Mui-checked,
.trip_expense_cont .MuiIconButton-root {
  color: #fff;
}
.trip_expense_cont .MuiSwitch-switchBase {
  top: 5px !important;
  left: 4px !important;
}
.trip_expense_cont .MuiSwitch-switchBase.MuiSwitch-colorPrimary.Mui-checked + .MuiSwitch-track {
  background-color: #0A5D9B !important;
}

.block_upload .MuiDropzoneArea-root {
  position: absolute;
  left: 0;
  top: 0;
  min-height: auto !important;
  height: 100%;
  background: transparent;
  border: 0 !important;
}

.block_upload .MuiDropzoneArea-textContainer {
  visibility: hidden;
}

.autocomplete_address {
  position: absolute;
  width: 375px;
  box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
  border-radius: 14px;
  background: #fff;
  overflow-x: auto;
  max-height: 240px;
  z-index: 2;
}

.autocomplete_address > div {
  display: flex;
  flex-direction: row;
  flex: 0 0 100%;
  margin: 10px 10px 0 30px;
  position: relative;
  font-size: 14px;
  line-height: 1.3;
  padding: 1px;
}

.autocomplete_address > div:hover {
  background: #d6e6f6;
  color: #548bf9;
}

.autocomplete_address > div::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 22px;
  position: absolute;
  left: -21px;
  top: 1px;
  background: url(/app_themes/tripeasy/images/search-widget-icon-sprite.png);
  background-repeat: no-repeat;
  background-position: -48px 0px;
}

/* Receipt TripExp EN */
/*custom css starts here*/
.tabManual #divCategorySelectOption span {
  display: flex;
  height: 45px;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 1.2;
  width: 200px;
}
.tabManual .popup-te .mform-row .LHS {
  flex: none !important;
}
.tabManual .popup-te .mform-row .LHS .te_switch {
  justify-content: flex-end;
}

#categoryGridExpense .MuiIconButton-root {
  color: rgba(0, 0, 0, 0.54) !important;
}

.homepage .PrivateNotchedOutline-legendLabelled-3 {
  font-size: 0.8em;
}
.homepage #categoryGridExpense {
  top: 38px;
}
.homepage .reimbursable label {
  color: #000;
  font-size: 14px;
  cursor: pointer;
}
.homepage .react-mform .mform-row, .homepage .te-addExpense .mform-row {
  margin-bottom: 22px;
}
.homepage .react-mform .mform-row > div, .homepage .te-addExpense .mform-row > div {
  margin-bottom: 0px;
}
.homepage .tabManual .switch-box label:first-child, .homepage .tabMileage .switch-box label:first-child {
  margin-left: -12px;
}
.homepage div.tabData2 > div.mform-row > div, .homepage div.tabData1 > div.mform-row > div {
  margin-right: 10px;
}
.homepage div.tabData2 > div.mform-row > div:last-child, .homepage div.tabData1 > div.mform-row > div:last-child {
  margin-right: 0px;
}
.homepage .HasPurpose:not(.HasCostCenter):not(.HasBillable) > div:nth-child(1), .homepage .HasCostCenter:not(.HasBillable) > div:nth-child(2) {
  margin-right: 0px;
}
.homepage .mform-row:nth-child(1) > .date-field .MuiFormControl-root {
  width: auto !important;
}

/*custom css ends here*/
.popup-te.embed-pdf .MuiDialogContent-root {
  min-height: 450px;
  display: flex;
  justify-content: center;
}
.popup-te.embed-pdf .MuiDialogContent-root img {
  object-fit: contain;
}
.popup-te.embed-pdf .MuiDialogContent-root embed {
  min-width: 550px;
  min-height: 400px;
}

/* Layout CSS EN */
/* Button */
.btn-te-main {
  height: 40px;
  line-height: 40px;
  /*width: 162px;*/
  text-align: center;
  background: #31A8DC;
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  border-radius: 20px;
  margin: 0;
  padding: 0 25px;
  border: 1px solid #31A8DC;
  outline: none;
  text-shadow: none;
  transition: background-color 0.3s ease-out;
}
.btn-te-main.sm {
  width: 127px;
  padding: 0;
  font-size: 14px;
}
.btn-te-main:hover {
  background: #336699;
  border: 1px solid #336699;
  outline: none;
  color: #fff;
}

.btn-outlined-te {
  height: 40px;
  line-height: 40px;
  width: 162px;
  text-align: center;
  color: #31A8DC;
  background-color: #fff;
  font-size: 18px;
  font-weight: normal;
  border-radius: 20px;
  margin: 0;
  padding: 0;
  border: 1px solid #31A8DC;
  outline: none;
  text-shadow: none;
}
.btn-outlined-te:hover, .btn-outlined-te:active, .btn-outlined-te:focus {
  border: 1px solid #336699;
  outline: none;
  color: #336699;
  background: #fff;
}
.btn-outlined-te.sm {
  width: 127px;
  font-size: 14px;
}
.btn-outlined-te.active {
  background: #31A8DC;
  color: #fff;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

/*custom css starts here*/
.MuiSelect-outlined.MuiSelect-outlined, label.MuiInputLabel-outlined, .MuiTypography-body1, .MuiTypography-caption, .MuiButton-root {
  font-family: "Poppins", sans-serif !important;
  text-shadow: none;
}

.MuiPopover-root .MuiMenuItem-root, .MuiPopover-root legend, .MuiPopover-root .MuiSelect-root {
  font-family: "Poppins", sans-serif;
}

.te-addExpense .MuiCheckbox-colorPrimary.Mui-checked {
  color: #31a8dc;
}
.te-addExpense h6, .te-addExpense .MuiInputBase-root input, .te-addExpense .MuiSelect-outlined {
  font-family: "Poppins", sans-serif;
}
.te-addExpense .mform-row > div {
  flex: 1;
}
.te-addExpense .mform-row > fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.te-addExpense .HasPurpose:not(.HasCostCenter):not(.HasBillable) > div:nth-child(1), .te-addExpense .HasCostCenter:not(.HasBillable) > div:nth-child(2) {
  margin-right: 0px;
}

.switch-box .labeltext {
  font-size: 14px;
  color: #000;
  cursor: pointer;
}
.switch-box label:first-child {
  margin-left: -12px;
}

.te-addExpense .MuiDialog-paperWidthLg {
  min-height: 382px;
  max-width: 1058px;
}

.te-addExpense .trip_expense_cont {
  align-items: flex-start;
  margin: 0 !important;
}
.te-addExpense .MuiTypography-body1 {
  font-size: 14px;
  color: #000;
}
.te-addExpense button.alert.left {
  background-color: #31a8dc;
  border-color: #31a8dc;
  color: #fff;
  transition: background-color 300ms ease-out 0s;
  border-radius: 20px;
  line-height: normal;
}
.te-addExpense button.alert.left:hover {
  background-color: #336699;
  border-color: #336699;
}

/*custom css ends here*/
/* Float Label with Icon ST */
.react-mform, .te-addExpense {
  /* Icons In React Material UI */
}
.react-mform .mform-row, .te-addExpense .mform-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 22px;
}
.react-mform .mform-row > div, .te-addExpense .mform-row > div {
  margin: 0 10px 5px 0;
}
.react-mform .mform-row > div:first-child, .te-addExpense .mform-row > div:first-child {
  margin-left: 0;
}
.react-mform .mform-row > div:last-child, .te-addExpense .mform-row > div:last-child {
  margin-right: 0;
  padding: 0;
}
.react-mform .mform-row .date-field .MuiFormControl-root, .te-addExpense .mform-row .date-field .MuiFormControl-root,
.react-mform .mform-row .date-field .MuiOutlinedInput-adornedEnd,
.te-addExpense .mform-row .date-field .MuiOutlinedInput-adornedEnd,
.react-mform .mform-row .date-field .MuiButtonBase-root,
.te-addExpense .mform-row .date-field .MuiButtonBase-root {
  padding: 0;
  margin: 0;
}
.react-mform .mform-row input.MuiOutlinedInput-input, .te-addExpense .mform-row input.MuiOutlinedInput-input {
  height: 45px !important;
  font-size: 18px !important;
  line-height: 1 !important;
  padding: 0px 4px 0px 14px;
  margin-bottom: 0;
  color: #333;
  box-shadow: none;
  border: none;
}
.react-mform .mform-row .date-field .MuiOutlinedInput-adornedStart > input.MuiOutlinedInput-input, .te-addExpense .mform-row .date-field .MuiOutlinedInput-adornedStart > input.MuiOutlinedInput-input {
  padding-left: 0px !important;
}
.react-mform .mform-row .date-field button:hover, .te-addExpense .mform-row .date-field button:hover,
.react-mform .mform-row .date-field button:focus,
.te-addExpense .mform-row .date-field button:focus,
.react-mform .mform-row .date-field .button:hover,
.te-addExpense .mform-row .date-field .button:hover,
.react-mform .mform-row .date-field .button:focus,
.te-addExpense .mform-row .date-field .button:focus {
  background: #fff;
  color: rgba(0, 0, 0, 0.54);
}
.react-mform .mform-row .MuiSelect-outlined.MuiSelect-outlined, .te-addExpense .mform-row .MuiSelect-outlined.MuiSelect-outlined {
  font-size: 18px;
  line-height: 1.5;
  padding: 10px 32px 10px 14px;
}
.react-mform .mform-row .MuiInputLabel-outlined, .te-addExpense .mform-row .MuiInputLabel-outlined {
  z-index: 1;
  transform: translate(14px, 15px) scale(1);
  pointer-events: none;
}
.react-mform .mform-row .MuiInputLabel-outlined.MuiInputLabel-shrink, .te-addExpense .mform-row .MuiInputLabel-outlined.MuiInputLabel-shrink {
  transform: translate(12px, -6px) scale(0.75);
}
.react-mform .mform-row .MuiOutlinedInput-root, .te-addExpense .mform-row .MuiOutlinedInput-root,
.react-mform .mform-row .MuiOutlinedInput-root input,
.te-addExpense .mform-row .MuiOutlinedInput-root input {
  border-radius: 13px;
  height: 45px;
  font-family: "Poppins", sans-serif;
}
.react-mform .mform-row .icon-field, .te-addExpense .mform-row .icon-field {
  position: relative;
}
.react-mform .mform-row .icon-field::before, .te-addExpense .mform-row .icon-field::before {
  content: "";
  width: 25px;
  height: 25px;
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 10px;
  background: url("/app_themes/tripeasy/assets/images/trip-expense-sprite.svg") no-repeat;
  background-size: 500px 500px;
  z-index: 2;
}
.react-mform .mform-row .icon-field label.MuiInputLabel-outlined, .te-addExpense .mform-row .icon-field label.MuiInputLabel-outlined {
  transform: translate(40px, 15px) scale(1);
}
.react-mform .mform-row .icon-field label.MuiInputLabel-outlined.MuiInputLabel-shrink, .te-addExpense .mform-row .icon-field label.MuiInputLabel-outlined.MuiInputLabel-shrink {
  transform: translate(14px, -6px) scale(0.75);
}
.react-mform .mform-row .icon-field input, .te-addExpense .mform-row .icon-field input {
  padding-left: 40px;
}
.react-mform .mform-row .icon-field .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root], .te-addExpense .mform-row .icon-field .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] {
  padding: 0 65px 0 40px;
}
.react-mform .mform-row .icon-field .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] input, .te-addExpense .mform-row .icon-field .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] input {
  padding: 0;
}
.react-mform .mform-row .icon-field.icon-merchant::before, .te-addExpense .mform-row .icon-field.icon-merchant::before {
  background-position: -36px -133px;
}
.react-mform .mform-row .icon-field.icon-date::before, .te-addExpense .mform-row .icon-field.icon-date::before {
  background-position: -37px -89px;
}
.react-mform .mform-row .icon-field.icon-dollar::before, .te-addExpense .mform-row .icon-field.icon-dollar::before {
  background-position: -74px -92px;
}
.react-mform .mform-row .icon-field.icon-user::before, .te-addExpense .mform-row .icon-field.icon-user::before {
  background-position: -149px -92px;
}
.react-mform .mform-row .icon-field.icon-purpose::before, .te-addExpense .mform-row .icon-field.icon-purpose::before {
  background-position: -143px -132px;
}

.trip_expense_cont .MuiTextField-root,
.trip_expense_cont .MuiInputBase-root {
  display: flex;
  flex: 1;
  height: 45px;
}

/* Float Label with Icon EN */
/* Trip Expense - Reports ST */
.trip-exp-report .body-container {
  width: 100%;
  max-width: 1400px;
  padding: 0 16px;
}

#trip_expense_report {
  /*width: 1190px;*/
  width: 100%;
  margin: 40px 0 120px 0;
  /*margin: 40px 0 0 -22.5px;*/
}

.badge-te {
  display: inline-flex;
  background: #0a5d9b;
  color: #fff;
  font-size: 14px;
  height: 23px;
  padding: 2px 22px;
  justify-content: center;
  align-items: center;
  border-radius: 11px;
  text-transform: capitalize;
}
.badge-te.Pending {
  background: #0A5D9B;
}
.badge-te.Unsubmitted {
  background: #E49030;
}
.badge-te.circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.badge-te.Submitted {
  background: #666666;
}
.badge-te.Approved {
  background: #00A99D;
}
.badge-te.Denied {
  background: #C1282D;
}

.te_report .action_box {
  display: flex;
  flex-direction: row;
}
.te_report .action_box > div:nth-child(1) {
  flex-basis: 10%;
  margin-right: 18px;
}
.te_report .action_box > div:nth-child(2) {
  flex: auto;
}
.te_report .action_box > div:nth-child(2) .filter-label .MuiInputLabel-outlined {
  font-size: 18px;
  color: #212121;
  transform: translate(14px, 13px) scale(1);
  text-overflow: ellipsis;
  overflow: hidden;
  width: 90%;
  white-space: nowrap;
}
.te_report .action_box > div:nth-child(2) .filter-label .MuiInputLabel-outlined.MuiInputLabel-shrink {
  font-size: 16px;
  color: #757575;
  transform: translate(12px, -6px) scale(0.75);
  background: #fff;
  padding-right: 5px;
  width: auto;
}
.te_report .action_box > div:nth-child(2) .MuiOutlinedInput-root {
  position: relative;
}
.te_report .action_box > div:nth-child(2) .MuiOutlinedInput-root::before {
  content: "";
  width: 18px;
  height: 22px;
  display: inline-block;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 500px 500px;
  background-position: -312px -1px;
  position: absolute;
  right: 16px;
  top: 14px;
}
.te_report .action_box > div:nth-child(3) {
  flex: 1;
  text-align: right;
  column-gap: 15px;
  display: flex;
  justify-content: flex-end;
  margin: 0 10px 0 0;
}
.te_report .accordin_box {
  /*.MuiSvgIcon-root {
  	border: 1px solid #2084ce;
  	border-radius: 50%;
  	color: #2084ce;
  }*/
}
.te_report .accordin_box .MuiAccordionSummary-root {
  padding: 0 24px;
}
.te_report .accordin_box .accordian-one .table-structure {
  padding: 0;
}
.te_report .accordin_box .MuiPaper-elevation1 {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
  border-radius: 6px;
}
.te_report .accordin_box .MuiPaper-elevation1:hover {
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.5);
}
.te_report .accordin_box .MuiAccordionSummary-expandIcon .MuiIconButton-label {
  border: 2px solid #2084CE;
  border-radius: 50%;
  height: 23px;
  width: 23px;
}
.te_report .accordin_box .MuiAccordionSummary-expandIcon .MuiIconButton-label > svg {
  color: #2084CE;
}
.te_report .accordin_box .MuiAccordionSummary-content {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.te_report .accordin_box .MuiAccordionSummary-content :before {
  content: unset;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part {
  display: flex;
  flex: 1;
  flex-direction: row;
  margin: 0;
  font-size: 16px;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part > div:nth-child(1) {
  flex-basis: 40%;
  justify-content: flex-start;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part > div:nth-child(1) input[type=radio] {
  display: inline-grid;
  height: 0;
  width: 0;
  margin-right: 0px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part > div:nth-child(1) input[type=radio]:hover, .te_report .accordin_box .MuiAccordionSummary-content .top-part > div:nth-child(1) input[type=radio].slide_show {
  display: block;
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part > div:nth-child(2) {
  flex-basis: 13%;
  justify-content: flex-start;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part > div:nth-child(2) > a {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 0 0 20px;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 500px 500px;
  background-position: -276px -4px;
  position: relative;
  cursor: pointer;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part > div:nth-child(3) {
  flex-basis: 30%;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part > div:nth-child(4) {
  flex: 1;
  justify-content: flex-end;
  font-size: 26px;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part > div:nth-child(5) {
  flex: 1;
}
.te_report .accordin_box .items .accordian-two:before {
  display: none;
}
.te_report .accordin_box .items .accordian-two .MuiButtonBase-root:hover {
  background-color: #F4FBFD;
}
.te_report .accordin_box .items .accordian-two .MuiButtonBase-root.Mui-expanded {
  background-color: #EAF6FB;
  min-height: auto;
}
.te_report .accordin_box .items .accordian-two .MuiCollapse-entered .MuiCollapse-wrapper {
  box-shadow: 0 22px 18px -20px rgba(0, 0, 0, 0.25) inset, 0 -22px 18px -20px rgba(0, 0, 0, 0.25) inset;
}
.te_report .accordin_box .items .top-part, .te_report .accordin_box .items .content-part {
  margin: 10px 0px;
  display: flex;
  flex: 1;
  flex-direction: row;
  font-size: 16px;
}
.te_report .accordin_box .items .top-part > div, .te_report .accordin_box .items .content-part > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.te_report .accordin_box .items .top-part > div:nth-child(1), .te_report .accordin_box .items .content-part > div:nth-child(1) {
  flex: 0 0 25%;
  justify-content: flex-start;
}
.te_report .accordin_box .items .top-part > div:nth-child(2), .te_report .accordin_box .items .content-part > div:nth-child(2) {
  flex: 0 0 15%;
  justify-content: flex-start;
}
.te_report .accordin_box .items .top-part > div:nth-child(3), .te_report .accordin_box .items .top-part > div:nth-child(4), .te_report .accordin_box .items .top-part > div:nth-child(5), .te_report .accordin_box .items .top-part > div:nth-child(6), .te_report .accordin_box .items .content-part > div:nth-child(3), .te_report .accordin_box .items .content-part > div:nth-child(4), .te_report .accordin_box .items .content-part > div:nth-child(5), .te_report .accordin_box .items .content-part > div:nth-child(6) {
  flex: 0 0 10%;
}
.te_report .accordin_box .items .top-part > div:nth-child(7), .te_report .accordin_box .items .content-part > div:nth-child(7) {
  flex: auto;
  padding: 0 12px;
}
.te_report .accordin_box .items .top-part > div:nth-child(8), .te_report .accordin_box .items .content-part > div:nth-child(8) {
  flex: 0 0 10%;
  justify-content: flex-end;
}
.te_report .accordin_box .items .top-part > div:nth-child(7) {
  justify-content: center;
  padding: 0;
}
.te_report .accordin_box .items .content-part {
  font-size: 14px;
  color: #6D6E70;
  margin: 10px 0 0;
}
.te_report .accordin_box .items .content-part:hover {
  background-color: #f3f3f3;
}
.te_report .accordin_box .items .content-part > div:nth-child(1) .checkbox a {
  color: #2084CE;
  text-decoration: none;
}
.te_report .accordin_box .items .content-part > div:nth-child(1) .checkbox input[type=checkbox] {
  border-radius: 50%;
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
.te_report .accordin_box .items .content-part > div:nth-child(1) .thumb img {
  margin-right: 10px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.te_report .accordin_box .items .content-part > div:nth-child(7) {
  justify-content: center;
}
.te_report .accordin_box .MuiAccordionSummary-content {
  cursor: default;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part {
  margin: 25px 0;
  font-size: 20px;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part > div:nth-child(5) {
  font-size: 26px;
}
.te_report .accordin_box .MuiAccordionSummary-content .top-part .report-title > a {
  width: 21px;
  height: 21px;
  display: inline-block;
  background: url("/app_themes/tripeasy/assets/images/trip-expense-sprite.svg") no-repeat;
  background-size: 370px 370px;
  vertical-align: middle;
  margin: 0 0 0 8px;
}
.te_report .accordin_box .MuiAccordionDetails-root {
  flex-direction: column;
}
.te_report .accordin_box .MuiAccordionDetails-root .items {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.te_report .accordin_box .MuiAccordionDetails-root .items .top-part {
  padding: 3px 24px;
  /*&:hover {
  	background: rgba(32, 132, 206, 0.05);
  }*/
}
.te_report .accordin_box .MuiAccordionDetails-root .items .top-part .thumb span {
  height: 33px;
  width: 33px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  background: url("/app_themes/tripeasy/assets/images/trip-expense-sprite.svg") no-repeat;
  background-size: 500px 500px;
  background-position: -223px -42px;
}
.te_report .accordin_box .MuiAccordionDetails-root .items .top-part .thumb span img {
  max-width: 32px;
}
.te_report .accordin_box .MuiAccordionDetails-root .items .top-part > div {
  /*
  &:nth-child(5) {
  	padding-right: 38px;
  }*/
}
.te_report .accordin_box .MuiAccordionDetails-root .items .top-part > div.checkbox input[type=checkbox] {
  border-radius: 50%;
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
.te_report .accordin_box .MuiAccordionDetails-root .items .top-part > div:nth-child(1) > div {
  display: flex;
}
.te_report .accordin_box .MuiAccordionDetails-root .items .top-part > div:nth-child(1) > div:nth-child(1) {
  flex-basis: 400px;
}
.te_report .accordin_box .MuiAccordionDetails-root .items .top-part > div:nth-child(1) > div:nth-child(2) {
  flex: 1;
}
.te_report .accordin_box .bottom-part {
  border-top: 1px solid #666;
  padding: 30px 25px 0 25px;
  margin: 20px 0 30px 0;
}
.te_report .accordin_box .bottom-part > div {
  display: flex;
  flex: 1;
  margin: 10px 0 0;
}
.te_report .accordin_box .bottom-part > div > div {
  display: flex;
  align-items: center;
}
.te_report .accordin_box .bottom-part > div > div:nth-child(1) {
  flex: 0 0 35%;
}
.te_report .accordin_box .bottom-part > div > div:nth-child(2) {
  flex: 1;
  justify-content: flex-end;
}
.te_report .accordin_box .bottom-part > div > div .btn-outlined-te {
  margin-right: 15px;
}
.te_report .accordin_box .bottom-part .submit-title {
  font-size: 18px;
  margin: 0 0 25px 0px;
}
.currencyExpenseFormList > div > div > svg {
  border: none !important;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.54) !important;
}

/* Popup ST */
.popup-te {
  /*.MuiDialog-paper {*/
  border-radius: 12px;
  /*}
  .MuiDialogTitle-root {*/
  padding: 10px 16px 0 16px;
  /*}
  .MuiDialogContent-root {*/
  padding: 16px 16px 24px 16px;
  /* Popup EN */
}
.popup-te h6 {
  text-align: center;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}
.popup-te .mform-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
}
.popup-te .mform-row .LHS {
  display: flex;
  flex-direction: column;
  flex: auto;
  margin-bottom: 0;
}
.popup-te .mform-row .LHS > div {
  display: flex;
  margin-bottom: 22px;
}
.popup-te .mform-row .LHS > div > div {
  margin-right: 10px;
}
.popup-te .mform-row .LHS > div > div:last-child {
  margin-right: 0;
}
.popup-te .mform-row .LHS > div.te_switch, .popup-te .mform-row .LHS > div.submit-box {
  margin-top: 5px;
  justify-content: flex-end;
}
.popup-te .mform-row .LHS > div.te_switch > div.reimbursable label, .popup-te .mform-row .LHS > div.submit-box > div.reimbursable label {
  margin-right: 0;
}
.popup-te .mform-row .LHS > div.te_switch > div label, .popup-te .mform-row .LHS > div.submit-box > div label {
  margin: 0 18px 0 0;
}
.popup-te .mform-row .LHS > div.te_switch > div:nth-child(2), .popup-te .mform-row .LHS > div.submit-box > div:nth-child(2) {
  display: flex;
  flex: auto;
  justify-content: flex-end;
}
.popup-te .mform-row .LHS .trip_expense_cont.edit label .MuiSwitch-switchBase:hover {
  background-color: transparent;
}
.popup-te .mform-row .LHS .trip_expense_cont.edit label:first-child {
  margin-left: -12px;
}
.popup-te .mform-row .LHS .report-cat-loc > div {
  display: flex;
  flex: auto;
}
.popup-te .mform-row .LHS .report-cat-loc .report-category {
  flex: 0 0 200px;
}
.popup-te .mform-row .LHS .report-cat-loc .report-category #divCategorySelectOption {
  display: flex;
  align-items: center;
}
.popup-te .mform-row .LHS .report-cat-loc .report-category #divCategorySelectOption label {
  width: 200px;
  margin-bottom: 0;
}
.popup-te .mform-row .LHS .report-cat-loc .report-category #divCategorySelectOption label span {
  display: flex;
  height: 45px;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 1.2;
}
.popup-te .mform-row .LHS .report-cat-loc .icon-merchant-b {
  flex: auto;
}
.popup-te .mform-row .LHS .switch-tabs {
  display: flex;
  flex: 1;
  column-gap: 10px;
}
.popup-te .mform-row .LHS .switch-tabs > div {
  display: flex;
  flex: auto;
}
.popup-te .mform-row .LHS .switch-tabs > div:nth-child(2), .popup-te .mform-row .LHS .switch-tabs > div:nth-child(3) {
  flex: auto;
}
.popup-te .mform-row .RHS {
  display: flex;
  flex: 0 0 260px;
  margin: 0 25px 0 0;
}
.popup-te .mform-row .RHS .upload-image {
  background: #e6e6e6;
  display: flex;
  height: 350px;
  max-width: 260px;
  flex-basis: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
.popup-te .mform-row > fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.popup-te .submit-box {
  display: flex;
  flex-direction: row;
  margin-right: 0;
}
.popup-te .submit-box > div:nth-child(2) {
  justify-content: flex-end;
  align-items: center;
}
.popup-te .submit-box .delete_move {
  display: flex;
  flex: 1;
  justify-content: space-evenly;
}
.popup-te .submit-box .delete_move > button {
  padding: 0;
  outline: none;
  border: none;
  background: none;
  font-size: 13px;
}
.popup-te .submit-box .delete_move > button::before {
  content: "";
  width: 42px;
  height: 42px;
  display: block;
  vertical-align: middle;
  padding: 0 0 0 45px;
  margin: 0 0 5px 0;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 550px 550px;
}
.popup-te .submit-box .delete_move .delete {
  color: #c1282d;
  margin-right: 10px;
}
.popup-te .submit-box .delete_move .delete::before {
  background-position: -253px -140px;
}
.popup-te .submit-box .delete_move .delete_popup {
  color: #c1282d;
}
.popup-te .submit-box .delete_move .delete_popup::before {
  background-position: -645px -633px;
  width: 95px;
  height: 95px;
  background-size: 1200px;
}
.popup-te .submit-box .delete_move .move {
  color: #31a8dc;
}
.popup-te .submit-box .delete_move .move::before {
  background-position: -198px -140px;
}
.popup-te .upload-image .btn-camera {
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 1200px 1200px;
  background-position: -536px -102px;
  display: block;
  height: 78px;
  width: 78px;
  box-shadow: none;
  background-color: unset !important;
}
.popup-te .upload-image .btn-camera .MuiButton-label {
  display: none;
}
.popup-te.te-popup-sm {
  max-width: auto;
  font-size: 20px;
  position: fixed;
  justify-content: center;
  display: flex;
  width: auto;
  /*.MuiDialog-paperWidthXs {
  	max-width: 406px;
  }

  .MuiDialogContent-root {
  	font-size: 20px;
  }*/
}
.popup-te.te-popup-sm .submit-box button {
  width: 100%;
}
.popup-te.changeName-popup .mid-section {
  display: block;
}
.popup-te.changeName-popup .mid-section > div {
  margin-bottom: 25px;
}
.popup-te.changeName-popup .mid-section > div:nth-child(1) > div:nth-child(2) {
  margin-top: 5px;
  color: #64696d;
  font-size: 16px;
}
.popup-te.changeName-popup .mid-section .changeName-field {
  display: flex;
  align-items: center;
}
.popup-te.changeName-popup .mid-section .changeName-field > div:nth-child(1) {
  flex-basis: 60%;
}
.popup-te.changeName-popup .mid-section .changeName-field > div:nth-child(2) {
  flex-basis: 40%;
  padding-left: 3px;
}
.popup-te.reportSubmitted-popup .MuiDialogTitle-root h6 {
  color: #31a8dc;
  font-size: 25px;
  margin-top: 20px;
  font-weight: normal;
}
.popup-te.reportSubmitted-popup .MuiDialogTitle-root h6::before {
  content: "";
  display: flex;
  height: 75px;
  width: 75px;
  /* border: 1px solid red; */
  align-items: center;
  margin: 0 auto 10px auto;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 900px 900px;
  background-position: -491px -64px;
}
.popup-te.reportSubmitted-popup h6 {
  color: #31a8dc;
  font-size: 25px;
  margin-top: 20px;
}
.popup-te.reportSubmitted-popup h6::before {
  content: "";
  display: flex;
  height: 75px;
  width: 75px;
  /* border: 1px solid red; */
  align-items: center;
  margin: 0 auto 10px auto;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 1000px 1000px;
  background-position: -551px -74px;
}
.popup-te.reportSubmitted-popup .mid-section {
  margin: 0;
}
.popup-te.reportSubmitted-popup .mid-section > div {
  font-size: 16px;
  text-align: center;
}
.popup-te.reportSubmitted-popup .mid-section > div:nth-child(1) {
  color: #64696d;
  font-size: 20px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #e6e6e6;
  margin: 0 0 20px 0;
}
.popup-te.reportSubmitted-popup .mid-section > div:nth-child(3) {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}
.popup-te.reportSubmitted-popup .mid-section > div:nth-child(3) div {
  flex: 1;
}
.popup-te.reportFormat-popup .MuiDialogTitle-root h6 {
  color: #31a8dc;
  font-size: 32px;
  margin-top: 20px;
}
.popup-te.reportFormat-popup .MuiDialogTitle-root h6::before {
  content: "";
  display: flex;
  width: 75px;
  align-items: center;
  margin: 0 auto 10px auto;
}
.popup-te.reportFormat-popup .mid-section {
  margin: 0;
}
.popup-te.reportFormat-popup .mid-section > div {
  font-size: 19px;
  text-align: center;
}
.popup-te.reportFormat-popup .mid-section:nth-child(1) {
  color: #64696d;
  font-size: 18px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #e6e6e6;
  margin: 0 0 20px 0;
}
.popup-te.reportFormat-popup .mid-section:nth-child(3) {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}
.popup-te.reportFormat-popup .mid-section:nth-child(3) div {
  flex: 1;
}
.popup-te.moveReceipt-popup .mform-row {
  padding: 0 10px 0 0;
}
.popup-te.moveReceipt-popup .mid-section {
  margin: 0;
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
}
.popup-te.moveReceipt-popup .mid-section label {
  display: flex;
  align-items: center;
}
.popup-te.moveReceipt-popup .mid-section label > div:nth-child(1) {
  flex: 0;
  font-size: 20px;
}
.popup-te.moveReceipt-popup .mid-section label > div:nth-child(2) {
  flex: 1;
}
.popup-te.moveReceipt-popup .mid-section label > div:nth-child(2) > div.main {
  display: flex;
  font-size: 26px;
}
.popup-te.moveReceipt-popup .mid-section label > div:nth-child(2) > div.main > div {
  display: flex;
  flex: 1;
  align-items: center;
}
.popup-te.moveReceipt-popup .mid-section label > div:nth-child(2) > div.main > div:nth-child(2) {
  justify-content: flex-end;
}
.popup-te.moveReceipt-popup .mid-section label > div:nth-child(2) > div.main .badge-te {
  font-size: 14px;
  margin-left: 10px;
}
.popup-te.moveReceipt-popup .mid-section label > div:nth-child(2) > div:nth-child(3) {
  color: #64696d;
}

.popup-te.reportSubmitted-popup #missing-fields-error-icon-title.MuiDialogTitle-root h6::before {
  content: "";
  display: flex;
  height: 75px;
  width: 75px;
  /* border: 1px solid red; */
  align-items: center;
  margin: 0 auto 10px auto;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 900px 900px;
  background-position: -429px -146px;
}

.react-mform .icon-field, .te-addExpense .icon-field {
  position: relative;
}
.react-mform .icon-field::before, .te-addExpense .icon-field::before {
  content: "";
  width: 25px;
  height: 25px;
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 10px;
  background: url("/app_themes/tripeasy/assets/images/trip-expense-sprite.svg") no-repeat;
  background-size: 500px 500px;
  z-index: 2;
}
.react-mform .icon-field.icon-dollar-b::before, .te-addExpense .icon-field.icon-dollar-b::before {
  background-position: -111px -133px;
  left: 7px;
}
.react-mform .icon-field.icon-date-b::before, .te-addExpense .icon-field.icon-date-b::before {
  background: none;
}
.react-mform .icon-field.icon-merchant::before, .te-addExpense .icon-field.icon-merchant::before {
  background-position: -36px -133px;
}
.react-mform .icon-field.icon-merchant-b::before, .te-addExpense .icon-field.icon-merchant-b::before {
  background-position: -38px -133px;
}
.react-mform .icon-field.icon-merchant-c::before, .te-addExpense .icon-field.icon-merchant-c::before {
  background-position: -36px -133px;
}
.react-mform .icon-field.icon-participants::before, .te-addExpense .icon-field.icon-participants::before {
  background-position: -284px -135px;
}
.react-mform .icon-field.icon-add-participants::before, .te-addExpense .icon-field.icon-add-participants::before {
  background-position: -1px -132px;
  width: 27px;
}
.react-mform .icon-field.icon-purpose::before, .te-addExpense .icon-field.icon-purpose::before {
  background-position: -145px -132px;
}
.react-mform .icon-field.icon-date::before, .te-addExpense .icon-field.icon-date::before {
  background-position: -37px -89px;
}
.react-mform .icon-field.icon-dollar::before, .te-addExpense .icon-field.icon-dollar::before {
  background-position: -74px -92px;
}
.react-mform .icon-field.icon-user::before, .te-addExpense .icon-field.icon-user::before {
  background-position: -149px -92px;
}
.react-mform .icon-field .icon-field.icon-result::before, .te-addExpense .icon-field .icon-field.icon-result::before {
  background: url(https://d30mh6y4ve06xe.cloudfront.net/app_themes/tripeasy/images/sprite-search-widget.svg) no-repeat;
  background-position: -327px -67px;
}
.react-mform .icon-field .icon-field.icon-quantity::before, .te-addExpense .icon-field .icon-field.icon-quantity::before {
  background: url(https://d30mh6y4ve06xe.cloudfront.net/app_themes/tripeasy/images/sprite-search-widget.svg) no-repeat;
  background-position: -472px -6px;
}
.react-mform .icon-field label.MuiInputLabel-outlined, .te-addExpense .icon-field label.MuiInputLabel-outlined {
  transform: translate(36px, 15px) scale(1);
}
.react-mform .icon-field label.MuiInputLabel-outlined.MuiInputLabel-shrink, .te-addExpense .icon-field label.MuiInputLabel-outlined.MuiInputLabel-shrink {
  transform: translate(14px, -6px) scale(0.75);
}
.react-mform .icon-field input, .te-addExpense .icon-field input {
  padding-left: 36px;
}
.react-mform .icon-field .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root], .te-addExpense .icon-field .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] {
  padding: 0 65px 0 40px;
}
.react-mform .icon-field .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] input, .te-addExpense .icon-field .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] input {
  padding: 0;
}

/* Web Cam Popup ST */
.webcam-popup .MuiDialogContent-root {
  padding-top: 0;
}
.webcam-popup .webcam_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 0;
}
.webcam-popup .webcam_btn > button {
  margin: 10px 10px 15px 10px;
}

.react-mform .mform-row .icon-field.icon-merchant::before, .te-addExpense .mform-row .icon-field.icon-merchant::before {
  background-position: -36px -133px;
}
.react-mform .mform-row .icon-field.icon-purpose::before, .te-addExpense .mform-row .icon-field.icon-purpose::before {
  background-position: -143px -132px;
}

/* Web Cam EN */
#date-picker-dialog {
  padding-left: 35px;
}

.MuiIconButton-label {
  cursor: auto;
}

.trip_expense_cont > .react-mform > .MuiFormLabel-root .Mui-focused, .trip_expense_cont > .te-addExpense > .MuiFormLabel-root .Mui-focused {
  color: #2084ce !important;
}

#add-client-icon-option {
  position: absolute;
  z-index: 1;
  margin-left: 205px;
  top: 12px;
  padding: 0px !important;
}

#add-client-icon-option.MuiIconButton-root {
  flex: 0 0 auto;
  color: rgba(0, 0, 0, 0.54);
  padding: 12px;
  overflow: visible;
  font-size: 1.5rem;
  text-align: center;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
}

#add-client-icon-option.MuiIconButton-root:hover {
  background-color: rgba(0, 0, 0, 0.08);
  color: #fff;
}

/* .MuiAutocomplete-inputRoot[class*="MuiOutlinedInput-root"] .MuiAutocomplete-input {
padding: 9.5px 20px 9.5px 4px !important;
} */
.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #2084ce !important;
}

.MuiFormLabel-root.Mui-focused {
  color: #2084ce !important;
}

.MuiSelect-select:focus {
  border-radius: 13px !important;
}

.MuiButton-textPrimary {
  color: #2084ce !important;
}

.MuiButtonBase-root.MuiButton-root.MuiButton-text.MuiButton-textPrimary.button,
.MuiButtonBase-root.MuiButton-root.MuiButton-text.MuiButton-textPrimary.button:focus,
.MuiButtonBase-root.MuiButton-root.MuiButton-text.MuiButton-textPrimary.button:hover {
  color: #2084ce !important;
}

.MuiPickersDay-daySelected {
  background-color: #2084ce !important;
}

.MuiPickersDay-daySelected:hover {
  background-color: #0a5d9b !important;
}

button:focus {
  outline: none !important;
}

.MuiSwitch-colorPrimary.Mui-checked {
  color: #2084ce !important;
}

.MuiSwitch-colorPrimary.Mui-checked + .MuiSwitch-track {
  background-color: #31a8dc !important;
}

.itemCategoryList {
  background: #fff;
  color: #2084ce;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  padding: 0 5px;
  margin: 0;
  text-align: left;
  display: block;
  cursor: pointer;
}

.control {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  margin-right: 0 !important;
  line-height: 24px;
}

.control--checkbox.home-search input ~ span {
  border: 1px solid transparent;
  padding: 3px 8px;
  border-radius: 30px;
}

.control--checkbox.home-search input:checked ~ span {
  border: 1px solid #31a8dc;
  padding: 3px 8px;
  border-radius: 30px;
  color: #31a8dc;
}

.control--checkbox.home-search .rounded {
  display: none;
}

input[type=radio]:before {
  content: "";
  display: none;
  width: 40%;
  height: 40%;
  margin: 27%;
  border-radius: 100%;
}
input[type=radio]:checked:before {
  background: #31a8dc;
  display: none;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

.currencyValuesHotelLodging {
  background-color: #c7c7c7;
  border-radius: 0 13px 13px 0 !important;
}
.currencyValuesHotelLodging > div {
  border-radius: 0 13px 13px 0 !important;
  height: 45px;
}
.currencyValuesHotelLodging > div > div {
  width: 36px;
  overflow: unset;
  height: 26px;
  line-height: 1.6;
  color: white;
}
.currencyValuesHotelLodging > div.MuiSelect-select {
  border-radius: 0 13px 13px 0 !important;
  height: 25px;
}
.currencyValuesHotelLodging > div.MuiSelect-select:focus {
  background-color: #008cba;
  min-width: 0px;
}
.currencyValuesHotelLodging > div > svg {
  visibility: hidden;
}

.decimalValuesHotelLodging > div {
  border-radius: 13px 0 0 13px !important;
}

.icon-field.icon-currency::before {
  background-position: -73px -200px !important;
}

.icon-field.icon-location::before {
  background: url(https://d30mh6y4ve06xe.cloudfront.net/app_themes/tripeasy/images/sprite-search-widget.svg) no-repeat !important;
  background-position: -472px -74px !important;
}

.icon-field.icon-participants ::before {
  background: url(https://d30mh6y4ve06xe.cloudfront.net/app_themes/tripeasy/images/sprite-search-widget.svg) no-repeat !important;
  background-position: -393px -6px !important;
}

.icon-field.icon-add-participants ::before {
  background: url(https://d30mh6y4ve06xe.cloudfront.net/app_themes/tripeasy/images/sprite-search-widget.svg) no-repeat !important;
  background-position: -423px -6px !important;
}

.icon-field.icon-add-participants > div > label {
  padding-left: 10px;
}

.icon-field.icon-add-participants > div > div > input {
  padding-left: 45px !important;
}

/* Trip Expense - Reports EN */
#tabs-trip-exp {
  position: relative;
}
#tabs-trip-exp > ul {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 0;
  padding: 0;
  background: unset;
  border: 1px solid #b5b5b5;
  border-radius: 20px;
  list-style-type: none;
  display: flex;
}
#tabs-trip-exp > ul > li {
  background: #fff;
  color: #2084ce;
  border-radius: 20px;
  font-size: 18px;
  line-height: 33px;
  height: 33px;
  width: 100px;
  padding: 0;
  margin: 0;
  text-align: center;
  display: block;
  cursor: pointer;
}
#tabs-trip-exp > ul > li.active {
  background: #2084ce;
  color: #fff;
}

/* MUI Tabs ST */
.MuiTab-root {
  color: #000;
  padding: 5px 20px;
  font-size: 15px;
  font-family: Poppins, Arial, "sans-serif";
  font-weight: normal;
  line-height: 1.2;
  margin-right: 10px;
  text-transform: none;
  min-height: auto;
  min-width: auto;
  opacity: 1;
}

.MuiTab-root:hover, .MuiTab-root.Mui-selected {
  background: none;
  color: #31a8dc;
}

.MuiTabs-indicator {
  border: 1px solid #31A8DC !important;
  border-radius: 15px !important;
  background-color: transparent !important;
  height: 27px !important;
  position: absolute !important;
  bottom: 21px !important;
  /*min-width: 73.44px;*/
}

/* MUI Tabs EN */
/* Checkbox ST */
.te_selection {
  display: flex;
  padding: 18px 0;
}
.te_selection > div {
  padding: 0;
  margin: 0;
  border-right: 1px solid #c1c1c1;
}
.te_selection > div:last-child {
  border: none;
}
.te_selection label {
  display: block;
  position: relative;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}
.te_selection label::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0;
  margin: 0 auto;
  width: 47px;
  height: 30px;
  background: url("/app_themes/tripeasy/assets/images/trip-expense-sprite.svg") no-repeat;
  background-size: 500px 500px;
  background-position: 0px 1px;
}
.te_selection label.active {
  background: #0a5d9b;
  color: #fff;
}

.te_selection label#tab1::before {
  background-position: 7px -171px;
}

.te_selection label.active#tab1::before {
  background-position: 7px -218px;
}

.te_selection label#tab2::before {
  background-position: -50px -173px;
}

.te_selection label.active#tab2::before {
  background-position: -50px -217px;
}

.te_selection label#tab4::before {
  background-position: -124px -173px;
}

.te_selection label.active#tab4::before {
  background-position: -124px -218px;
}

.te_selection label#tab3::before {
  background-position: -184px -173px;
}

.te_selection label.active#tab3::before {
  background-position: -184px -218px;
}

/* Hide the browser's default checkbox */
.te_selection label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.te_selection label .checkmark {
  position: absolute;
  top: 13px;
  left: 10px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #336699;
  display: block;
  visibility: hidden;
}

.te_selection label div {
  font-size: 12px;
  left: 0;
  right: 0;
  bottom: 3px;
  position: absolute;
  display: flex;
  justify-content: center;
}

/* On mouse-over, add a grey background color */
.te_selection label:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.te_selection label input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.te_selection label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.te_selection label .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #0a5d9b;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.search-widget-master input[type=text] .trip_expense_cont {
  display: flex;
  flex-direction: column;
}

/* Language Option ST */
.homepage #css3menu1 .language-dropdown {
  display: inline-block !important;
}

.homepage #css3menu1 .language-dropdown {
  display: inline-block !important;
}

/* Language Option EN */
/* Float Label with Icon ST */
.react-mform .mform-row, .te-addExpense .mform-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 22px;
}

.react-mform .date-field .MuiIconButton-label, .te-addExpense .date-field .MuiIconButton-label {
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 500px 500px;
  background-position: -72px -132px;
}
.react-mform .date-field .MuiIconButton-label svg, .te-addExpense .date-field .MuiIconButton-label svg {
  visibility: hidden;
}

.react-mform .date-field .MuiFormControl-root, .te-addExpense .date-field .MuiFormControl-root,
.react-mform .date-field .MuiOutlinedInput-adornedEnd,
.te-addExpense .date-field .MuiOutlinedInput-adornedEnd,
.react-mform .date-field .MuiButtonBase-root,
.te-addExpense .date-field .MuiButtonBase-root {
  padding: 0;
  margin: 0;
}

.react-mform .mform-row.form-submit, .te-addExpense .mform-row.form-submit {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
}

.react-mform .tabData11 .mform-row > div, .te-addExpense .tabData11 .mform-row > div {
  flex: 1;
  padding: 0;
}

.react-mform .tabData11 .mform-row > div:first-child, .te-addExpense .tabData11 .mform-row > div:first-child,
.react-mform .tabData11 .mform-row > div:last-child,
.te-addExpense .tabData11 .mform-row > div:last-child {
  flex: 0 0 290px;
}

.react-mform .tabData11 .mform-row > div:nth-child(2), .te-addExpense .tabData11 .mform-row > div:nth-child(2) {
  display: flex;
  flex-direction: row;
  padding: 0 10px;
}

.react-mform .tabData11 .mform-row.form-submit > div:nth-child(2), .te-addExpense .tabData11 .mform-row.form-submit > div:nth-child(2) {
  padding: 0;
}

.react-mform .tabData11 .mform-row > div:nth-child(2) > div, .te-addExpense .tabData11 .mform-row > div:nth-child(2) > div {
  flex: 1;
}

.react-mform .tabData11 .mform-row > div:nth-child(2) > div:nth-child(2), .te-addExpense .tabData11 .mform-row > div:nth-child(2) > div:nth-child(2) {
  margin: 0 10px;
}

.react-mform .mform-row > div:nth-child(2) .date-field, .te-addExpense .mform-row > div:nth-child(2) .date-field {
  width: 200px;
}

.react-mform input.MuiOutlinedInput-input, .te-addExpense input.MuiOutlinedInput-input {
  height: auto !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  padding: 12px 14px;
  margin-bottom: 0;
  color: #333;
  box-shadow: none;
  border: none;
}

.react-mform .date-field .MuiOutlinedInput-adornedStart > input.MuiOutlinedInput-input, .te-addExpense .date-field .MuiOutlinedInput-adornedStart > input.MuiOutlinedInput-input {
  padding-left: 0px !important;
}

.date-field button:hover,
.date-field button:focus,
.date-field .button:hover,
.date-field .button:focus {
  background: #fff;
  color: rgba(0, 0, 0, 0.54);
}

.react-mform .MuiSelect-outlined.MuiSelect-outlined, .te-addExpense .MuiSelect-outlined.MuiSelect-outlined {
  font-size: 18px;
  line-height: 1.5;
  padding: 10px 32px 10px 14px;
}

.react-mform .MuiInputLabel-outlined, .te-addExpense .MuiInputLabel-outlined {
  z-index: 1;
  transform: translate(14px, 15px) scale(1);
  pointer-events: none;
}

.react-mform .MuiFormControl-root, .te-addExpense .MuiFormControl-root {
  display: flex;
  width: 100%;
}

.react-mform .MuiOutlinedInput-root, .te-addExpense .MuiOutlinedInput-root,
.react-mform .MuiOutlinedInput-root input,
.te-addExpense .MuiOutlinedInput-root input {
  border-radius: 13px;
}

/* Icons In React Material UI */
.react-mform .icon-field, .te-addExpense .icon-field {
  position: relative;
}

.react-mform .icon-field label.MuiInputLabel-outlined, .te-addExpense .icon-field label.MuiInputLabel-outlined {
  transform: translate(40px, 15px) scale(1);
}

.react-mform .icon-field label.MuiInputLabel-outlined.MuiInputLabel-shrink, .te-addExpense .icon-field label.MuiInputLabel-outlined.MuiInputLabel-shrink {
  transform: translate(14px, -6px) scale(0.75);
}

.react-mform .icon-field input, .te-addExpense .icon-field input {
  padding-left: 40px;
}

.react-mform .icon-field.multi-select-chips input, .te-addExpense .icon-field.multi-select-chips input {
  padding-left: 4px !important;
}

.icon-field.icon-merchant::before {
  background-position: -36px -133px;
}

.icon-field.icon-date::before {
  background-position: -37px -89px;
}

.icon-field.icon-dollar::before {
  background-position: -74px -92px;
}

.icon-field.icon-user::before {
  background-position: -149px -92px;
}

.icon-field.icon-user .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] {
  padding: 4px 65px 1px 40px;
}

/* Float Label with Icon ST */
.mform-report-name {
  align-items: center;
}

.mform-report-name > label {
  margin-bottom: 0;
  cursor: default;
}

.react-mform .mform-row.form-submit > div:last-child, .te-addExpense .mform-row.form-submit > div:last-child {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.receipt_tags .tag {
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  border-radius: 24px;
  background: #edf1f2;
  display: table;
}

.receipt_tags .tag > img {
  border-radius: 50%;
  height: 46px;
  width: 46px;
  display: inline-block !important;
  vertical-align: middle;
}

.receipt_tags .tag > span {
  padding: 0 5px 0 10px;
  display: table-cell;
}

.receipt_tags .tag > a {
  color: #2084ce;
  margin-right: 8px;
  padding: 0 10px;
  outline: none;
}

/* Button */
.btn-te {
  height: 40px;
  line-height: 40px;
  width: 162px;
  text-align: center;
  background: #2084ce;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  border-radius: 20px;
  margin: 0;
  padding: 0;
}

.btn-te:hover, .btn-te:active {
  background: #0a5d9b;
}

.disable {
  background: #A7A7A7;
  color: #fff;
}
.disable:hover, .disable:active {
  background: #666666;
  color: #fff;
}

.btn-te.email::before {
  content: "";
  position: relative;
  vertical-align: middle;
  height: 30px;
  width: 43px;
  margin-right: 5px;
  display: inline-block;
  background: url("/app_themes/tripeasy/assets/images/trip-expense-sprite.svg") no-repeat;
  background-size: 500px 500px;
  background-position: -162px -43px;
}

/*.btn-camera.MuiButton-root, .btn-camera.MuiButton-root:hover, .btn-camera.MuiButton-root:focus {
	font-size: 16px;
	font-weight: normal;
	background: #fff;
	color: #2084ce;
	position: relative;
	padding: 10px 10px 10px 45px !important;
	margin: 0;
	border: unset;
	border-radius: 20px;
	outline: 0;
	box-shadow: unset;
}*/
/*.btn-camera::before:hover {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	height: 37px;
	width: 37px;
	background: url('/app_themes/tripeasy/assets/images/trip-expense-sprite.svg') no-repeat;
	background-size: 500px 500px;
	background-position: -222px 1px;
}*/
.btn-camera span.MuiButton-label {
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1.2;
  color: #2084ce;
}

.receipt_tags .owl-stage-outer {
  left: 11px;
}

.receipt_tags .owl-nav {
  position: relative;
  margin: 0 !important;
}

.receipt_tags .owl-nav button {
  padding: 0 5px;
  margin: 0 !important;
}

.receipt_tags .owl-nav button span {
  font-size: 35px;
}

.receipt_tags .owl-nav .owl-prev {
  left: 0px;
  top: -50px;
  position: absolute;
  z-index: 8;
}

.receipt_tags .owl-nav .owl-next {
  right: -24px;
  top: -50px;
  position: absolute;
  z-index: 8;
}

/* Email Copy ST */
.email_copy > div:first-child {
  line-height: 36px;
  text-align: center;
  height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.email_copy > div:first-child > div:nth-child(1) {
  font-size: 26px;
}

.email_copy > div:first-child > div:nth-child(2) {
  font-size: 18px;
  color: #6d6e70;
}

.email_copy > div:first-child > div:nth-child(3) {
  font-size: 26px;
  color: #2084ce;
}

.email_copy > div:last-child {
  text-align: right;
}

/* Car Reading ST */
.car_reading .mform-row > div {
  flex-basis: 130px;
  margin-right: 10px;
}

.car_reading .mform-row > div:last-child {
  margin: 0;
}

.car_reading .mform-row:nth-child(1) > div:nth-child(1),
.car_reading .mform-row:nth-child(1) > div:nth-child(2) {
  flex-basis: 215px;
}

.car_reading .mform-row:nth-child(1) > .date-field .MuiFormControl-root {
  width: 130px;
}

.car_reading .mform-row:nth-child(1) > div:nth-child(5) {
  flex: 1;
}

.car_reading .mform-row:nth-child(2) > div {
  flex-basis: 102.5px;
}

.car_reading .mform-row:nth-child(2) > div:last-child {
  flex: 1;
}

.car_reading .form-submit {
  text-align: right;
}

.DNONE {
  display: none;
}

.icon-field.multi-select-chips .MuiInputBase-root {
  padding: 0 65px 0 40px !important;
}

.RHS .upload-image {
  display: inline-block;
}

/* Trip EXP - Search Widget - Tab 2 ST */
.TakeUploadPic {
  display: flex;
  flex-direction: column;
  height: 155px;
}

.TakeUploadPic > div:nth-child(1) {
  font-size: 26px;
  line-height: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 25px;
}

.TakeUploadPic > .btn-take-upload {
  display: flex;
  justify-content: center;
}

.btn-take-upload > .btn-te {
  display: inline-block;
  background: #fff;
  color: #2084ce;
  font-size: 26px;
  line-height: 1.4;
  outline: none;
  margin-right: 75px;
  height: auto;
  width: auto;
}

.btn-take-upload > .btn-te::before {
  content: "";
  display: block;
  width: 54px;
  height: 44px;
  margin: 0 auto;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 500px 500px !important;
  background-position: -357px -81px;
}

.btn-take-upload > .upload-image .btn-camera.MuiButton-root {
  display: block;
  padding: 0 !important;
}

.btn-take-upload > .upload-image .btn-camera.MuiButton-root::before {
  position: static;
  display: block;
  width: 54px;
  height: 44px;
  margin: 0 auto;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 500px 500px !important;
  background-position: -426px -81px;
}

.btn-take-upload > .upload-image .MuiButton-label {
  font-size: 26px;
}

/* Tab 3 */
.tabData3.car_reading .mform-row > .upload_pic {
  position: relative;
}

.tabData3.car_reading .mform-row > .upload_pic .upload-image {
  position: absolute;
  right: 5px;
  top: 4px;
}

.tabData3.car_reading .mform-row > .upload_pic .upload-image label .MuiButton-label {
  display: none;
}

.tabData3.car_reading .mform-row > .upload_pic .upload-image label > span {
  min-width: 36px;
  height: 40px;
  padding: 0 !important;
}

/* Web Cam Popup ST */
.webcam-popup .MuiDialogContent-root {
  padding-top: 0;
}

.webcam-popup .webcam_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 0;
}

.webcam-popup .webcam_btn > button {
  margin: 10px 10px 15px 10px;
}

#date-picker-dialog {
  padding-left: 35px;
}

#date-picker-icon-calendar {
  position: absolute;
  padding-left: 8px;
  padding-top: 22px;
  z-index: 1;
  cursor: auto;
}

.MuiIconButton-label {
  cursor: auto;
}

.trip_expense_cont > .react-mform > .MuiFormLabel-root .Mui-focused, .trip_expense_cont > .te-addExpense > .MuiFormLabel-root .Mui-focused {
  color: #2084ce !important;
}

#add-client-icon-option {
  position: absolute;
  z-index: 1;
  margin-left: 205px;
  top: 10px;
  padding: 0px !important;
}

#add-client-icon-option.MuiIconButton-root {
  flex: 0 0 auto;
  color: rgba(0, 0, 0, 0.54);
  padding: 12px;
  overflow: visible;
  font-size: 1.5rem;
  text-align: center;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
}

#add-client-icon-option.MuiIconButton-root:hover {
  background-color: rgba(0, 0, 0, 0.08);
  color: #fff;
}

.MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] .MuiAutocomplete-input {
  padding: 9.5px 20px 9.5px 4px !important;
}

.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #2084ce !important;
}

.MuiFormLabel-root.Mui-focused {
  color: #2084ce !important;
}

.MuiSelect-select:focus {
  border-radius: 13px !important;
}

.MuiButton-textPrimary {
  color: #2084ce !important;
}

.MuiButtonBase-root.MuiButton-root.MuiButton-text.MuiButton-textPrimary.button,
.MuiButtonBase-root.MuiButton-root.MuiButton-text.MuiButton-textPrimary.button:focus,
.MuiButtonBase-root.MuiButton-root.MuiButton-text.MuiButton-textPrimary.button:hover {
  color: #2084ce !important;
}

.MuiPickersDay-daySelected {
  background-color: #2084ce !important;
}

.MuiPickersDay-daySelected:hover {
  background-color: #0a5d9b !important;
}

button:focus {
  outline: none !important;
}

.MuiSwitch-colorPrimary.Mui-checked {
  color: #2084ce !important;
}

.MuiSwitch-colorPrimary.Mui-checked + .MuiSwitch-track {
  background-color: #31a8dc !important;
}

/* Trip Expense EN */
/* About Pg ST */
.goal .goal-box .goal-content {
  padding-bottom: 0px;
}

/* About Pg EN */
/* Slider IMG to Text ST */
.flip-items .slider-item {
  display: inline-block;
  width: 248px;
  height: 402px;
  margin: 26px 23px;
  background: #fff;
  /*border: 1px solid #ccc;*/
  border-radius: 6px;
  box-shadow: 5px 2px 9px 2px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
}

.global-slide-img .slider-item .slider-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.slider-item .slider-title, .slider-item .slider-title2 {
  font: 22px/1.2 "Poppins", Arial, sans-serif;
  margin: 0 0 5px 0;
}

.global-slide-img .slider-item .slider-content {
  font: 20px/1.4 "Poppins", Arial, sans-serif;
  color: #8A8B8C;
}

/* Get Started Slider ST */
.gst-tripeasy .flip-items .slider-item {
  margin: 26px 40px;
}

.slider-amount {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 55px;
  width: 55px;
  padding: 10px;
  margin: 20px auto 10px auto;
  background: #31A8DC;
  border-radius: 50%;
  font-size: 27px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
}

.slider-amount.free {
  height: 135px;
  width: 135px;
  padding-top: 15px;
}

.slider-amount.free span {
  font-size: 24px;
  display: block;
}

.check-green p {
  text-align: left;
  margin: 0 20px 10px 20px;
  padding: 0px 0 0 30px;
  font-size: 14px;
  line-height: 1.2;
  color: #585859;
  background: url(/app_themes/tripeasy/images/check-features.gif) no-repeat;
  background-position: 6px 4px;
  background-size: 15px;
}

.plus-blue p {
  background: url(/app_themes/tripeasy/images/plus-blue.gif) no-repeat;
  background-position: 6px 2px;
  background-size: 14px;
}

.gst-tripeasy .slider-item .slider-title {
  margin-bottom: 12px;
  font-size: 22px;
}

.slider-item .slider-title2 {
  color: #81C32C;
  line-height: 1;
}

.slider-item .arrow-green {
  position: absolute;
  bottom: 18px;
  left: 46%;
}

.benefits-slide-img .slider-item .slider-img {
  margin: 46px 0 15px 0;
}

.benefits-slide-img .slider-item .slider-title {
  color: #50B4E0;
}

.benefits-slide-img .slider-item .slider-content {
  padding: 20px;
}

.products-slide-img .slider-item .slider-img {
  margin: 22px 0;
}

.products-slide-img .slider-item .slider-title {
  color: #31A7DB;
  margin: 0 20px 20px;
}

.products-slide-img .slider-item .slider-content {
  padding: 0 20px;
}

.products-slide-img .slider-item .check-green {
  margin: 20px 0 0 0;
}

.products-slide-img .slider-item .check-green p {
  margin: 0 5px 10px;
}

/* Slider IMG to Text EN */
/* Receipt TripExp ST */
.MuiBox-root {
  padding: 0 0 7px 0 !important;
}

/* Scrollbar Custom ST */
.receipt_list::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

.receipt_list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 12px;
}

.receipt_list::-webkit-scrollbar-thumb {
  background: #31A8DC;
  border-radius: 12px;
}

.receipt_list::-webkit-scrollbar-thumb:hover {
  background: #31A8DC;
}

#chargesExpenseTable::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

#chargesExpenseTable::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 12px;
}

#chargesExpenseTable::-webkit-scrollbar-thumb {
  background: #31A8DC;
  border-radius: 12px;
}

#chargesExpenseTable::-webkit-scrollbar-thumb:hover {
  background: #31A8DC;
}

/* Scrollbar Custom EN */
/* New tab ST */
button.large, .button.large {
  font-size: 20px;
  font-weight: normal;
  padding: 10px 0;
  text-align: center;
}

.icon-exclaim-r {
  height: 31px;
  width: 31px;
  display: inline-block;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 500px 500px;
  background-position: -245px -173px;
}

.icon-check-b {
  height: 31px;
  width: 31px;
  display: inline-block;
  background: url(/app_themes/tripeasy/assets/images/trip-expense-sprite.svg) no-repeat;
  background-size: 500px 500px;
  background-position: -295px -171px;
}

#simple-tabpanel-1 .new_tab {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

#ReceiptCarousel .carousel-inner > .carousel-item {
  border-radius: 14px;
  overflow: hidden;
  font-size: 18px;
}
#ReceiptCarousel .carousel-inner > .carousel-item img, #ReceiptCarousel .carousel-inner > .carousel-item embed {
  min-width: 260px;
  max-width: 260px;
  min-height: 360px;
  max-height: 360px;
  object-fit: cover;
}
#ReceiptCarousel .carousel-inner > .carousel-item .slider-buttons {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.5s, opacity 0.5s;
  display: flex;
  z-index: 2;
}
#ReceiptCarousel .carousel-inner > .carousel-item .slider-buttons > button {
  padding: 20px 0;
  text-align: center;
  flex: 1;
  border: 0;
  color: #fff;
}
#ReceiptCarousel .carousel-inner > .carousel-item .slider-buttons > button:nth-child(1) {
  border-top-left-radius: 12px;
  background: #31A8DC;
}
#ReceiptCarousel .carousel-inner > .carousel-item .slider-buttons > button:nth-child(2) {
  border-top-right-radius: 12px;
  background: #C1282D;
}
#ReceiptCarousel .carousel-inner > .carousel-item .carousel-caption {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s, opacity 0.5s;
  background: rgba(10, 93, 155, 0.8);
  left: 0;
  right: 0;
  bottom: 0;
}
#ReceiptCarousel .carousel-inner > .carousel-item:hover .carousel-caption {
  opacity: 1;
  transform: translateY(0);
}
#ReceiptCarousel .carousel-inner > .carousel-item:hover .slider-buttons {
  opacity: 1;
  transform: translateY(0);
}
#ReceiptCarousel .carousel-inner .carousel-control-next-icon,
#ReceiptCarousel .carousel-inner .carousel-control-prev-icon {
  width: 26px;
  height: 26px;
}

.MuiDialog-container .new_tab {
  justify-content: center;
}

.Step2 .mform-row:nth-child(1) > .date-field .MuiFormControl-root {
  width: auto !important;
}

.Step2Charges .te_selection label#tab1::before {
  background-position: -184px -173px !important;
}
.Step2Charges .te_selection label.active#tab1::before {
  background-position: -184px -218px !important;
}
.Step2Charges .mform-row:nth-child(1) > .date-field .MuiFormControl-root {
  width: auto !important;
}

#descriptionSubmitExpenseSection {
  display: flex;
  flex: 1;
}

#imageListContentDescription {
  display: block;
  width: 600px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  position: relative;
  cursor: default;
}
#imageListContentDescription:active {
  cursor: grabbing;
}
#imageListContentDescription > div {
  display: flex;
  flex: 0 0 600px;
  margin-bottom: 0px;
}
#imageListContentDescription > div::-webkit-scrollbar {
  display: none;
}
#imageListContentDescription > div > span {
  display: none;
}
#imageListContentDescription .receipt-chip {
  display: flex;
  height: 36px;
  margin: 0px 10px;
  flex: 0 0 auto;
  background-color: rgb(243, 243, 243);
  border-radius: 36px;
}
#imageListContentDescription .receipt-chip .receipt-thumb {
  border-radius: 36px;
  height: 36px;
  width: 36px;
  overflow: hidden;
  cursor: pointer;
}
#imageListContentDescription .receipt-chip .receipt-thumb img {
  border-radius: 36px;
  height: 36px;
  width: 36px;
  cursor: pointer;
}
#imageListContentDescription .receipt-chip .receipt-thumb embed {
  height: 100%;
  width: 100%;
}
#imageListContentDescription .receipt-chip .receipt-title {
  font-size: 14px;
  margin-left: 5px;
  line-height: 36px;
  text-transform: lowercase;
  cursor: pointer;
}
#imageListContentDescription .receipt-chip .receipt-close {
  margin: 0px 0 0 4px;
  padding: 4px 0;
  line-height: 36px;
  color: rgb(49, 168, 220);
  cursor: pointer;
  flex: 0 0 30px;
}
#imageListContentDescription .receipt-chip .receipt-close svg {
  height: 17px;
  width: 17px;
}

#misc-arrow-icon-edit-report-name {
  background: url("/app_themes/tripeasy/assets/images/trip-expense-sprite.svg") no-repeat;
  display: inline-block;
  vertical-align: middle;
  background-position: -307px 7px !important;
  width: 31px;
  height: 31px;
  background-size: 450px 450px;
  margin: 0;
  cursor: pointer;
}

.MuiInput-underline:after {
  border-bottom-color: #707070;
}

.receipt_thumb > img {
  object-fit: contain;
  min-width: 144px;
  max-width: 165px;
  min-height: 165px;
  max-height: 165px;
}

.receipt_thumb > embed {
  min-width: 144px;
  max-width: 165px;
  min-height: 165px;
  max-height: 165px;
  object-fit: contain;
}

#categoryGridExpense .MuiIconButton-root {
  color: rgba(0, 0, 0, 0.54) !important;
}

.homepage #categoryGridExpense {
  top: 38px;
}

/* Loading Receipt Popup ST */
.LoadingDialog {
  text-align: center;
}
.LoadingDialog .MuiPaper-rounded {
  border-radius: 30px;
  padding: 20px;
}
.LoadingDialog .MuiDialogContent-root > div {
  padding: 20px;
}

.MuiSwitch-thumb {
  color: #fff !important;
}

div.MuiDialog-root.popup-te.te-addExpense.Step2 > div.MuiDialog-container.MuiDialog-scrollPaper > div.MuiDialog-paperWidthLg {
  min-height: 460px;
  max-width: 1280px;
}

div.MuiDialog-root.popup-te.te-editExpense.Step2 > div.MuiDialog-container.MuiDialog-scrollPaper > div.MuiDialog-paperWidthLg {
  min-height: auto;
  max-width: 1370px;
}

.trip-exp-report::-webkit-scrollbar {
  display: none;
}

div.MuiDialog-root.popup-te.te-addExpense.Step2Charges > div.MuiDialog-container.MuiDialog-scrollPaper > div.MuiDialog-paperWidthLg {
  min-height: auto;
  max-width: 1280px;
}

div.MuiDialog-root.popup-te.te-addExpense.Step2Charges.Step2FromAddExpense > div.MuiDialog-container.MuiDialog-scrollPaper > div.MuiDialog-paperWidthLg {
  min-height: auto;
  max-width: 1165px;
}

/* Loading Receipt Popup EN */
.categorySelectItemDropdown > div.MuiOutlinedInput-adornedEnd {
  padding-right: 0px;
}

.categorySelectItemDropdown > div.MuiOutlinedInput-adornedEnd > div.MuiInputAdornment-positionEnd {
  margin-left: 0px;
}

.categorySelectItemDropdown > div.MuiOutlinedInput-adornedEnd > input {
  padding: 12px 0 12px 10px;
}

#ReceiptCarousel > .carousel-control-prev {
  left: 0;
  transition: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.8;
}

#ReceiptCarousel > .carousel-control-prev:hover {
  opacity: 1;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  display: inline-block;
  color: gray;
  width: auto;
  height: auto;
  background: no-repeat 50%/100% 100%;
}

#ReceiptCarousel > .carousel-control-next {
  right: 0;
  transition: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.8;
}

#ReceiptCarousel > .carousel-control-next:hover {
  opacity: 1;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
}

#ReceiptCarousel .carousel-inner > .carousel-item {
  border-radius: 14px;
  overflow: hidden;
  font-size: 18px;
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
  display: block;
}

/* Charges new section*/
#chargesExpenseTable > div > div > table > tbody > tr > td > div.MuiInputBase-root.MuiInput-root.MuiInput-underline {
  width: 140px;
  height: 25px;
  text-align: left;
}

#chargesExpenseTable > div > div > table > tbody > tr > td > div.MuiInputBase-root.MuiInput-root.MuiInput-underline::before {
  border: none;
}

#chargesExpenseTable > div > div > table > tbody > tr > td > div.MuiInputBase-root.MuiInput-root.MuiInput-underline::after {
  border: none;
}

#chargesExpenseTable > div > div > table > tbody > tr > td > div.MuiInputBase-root.MuiInput-root.MuiInput-underline > div#simple-select-outlined {
  padding-left: 10px;
}

#chargesExpenseTable > div > div > table > tbody > tr.MuiTableRow-root.Mui-selected, .MuiTableRow-root.Mui-selected:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.hasChargeToDisplayDropdown > div > div {
  padding-left: 26px;
}

.hasChargeToDisplayDropdown.icon-field.icon-charge::before {
  background-position: 0px -132px !important;
  background-size: 380px 380px !important;
}

/* Charges end section */
/* adding missing styles from fundation */
button.alert.left, .button.alert.left {
  background-color: rgb(49, 169, 221);
  border-color: #31a8dc;
  color: white;
  transition: background-color 300ms ease-out 0s;
  width: 100%;
  border-radius: 20px !important;
  line-height: normal;
}

button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  background-color: #60a000;
  border-color: #60a000;
  color: white;
  transition: background-color 300ms ease-in 0s;
}

button.alert.left:hover, button.alert.left:focus, .button.alert.left:hover, .button.alert.left:focus {
  background-color: rgb(51, 103, 153);
  border-color: rgb(51, 103, 153);
  color: white;
  transition: background-color 300ms ease-in 0s;
  border-radius: 20px !important;
}

.switch-box > label {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

#customized-dialog-title > h6.MuiTypography-root.MuiTypography-h6 {
  font-size: 18px;
  text-align: left;
}
#customized-dialog-title button.MuiIconButton-root svg {
  fill: #56A5D7 !important;
}

#delete-receipt-popup-confirm-message > div > div.MuiPaper-rounded {
  border-radius: 12px;
}

#delete-receipt-popup-confirm-message > div > div > div > div > div.mid-section > div#customized-dialog-title > button > span > svg.MuiSvgIcon-root {
  fill: #56A5D7;
}

#move-delete-expenses-popup-message > div > div > div#customized-dialog-title > button > span > svg.MuiSvgIcon-root {
  fill: #56A5D7;
}

#move-delete-expenses-popup-message > div > div.MuiPaper-rounded {
  border-radius: 12px;
}

.trip-exp-report {
  overflow-x: hidden;
}

#outlined-basic-helper-text {
  margin-top: -20px;
  top: 20px;
  position: relative;
  color: #f44336;
}

.react-mform .mform-row .icon-field2, .te-addExpense .mform-row .icon-field2 {
  position: relative;
}

.react-mform .mform-row .icon-field2::before, .te-addExpense .mform-row .icon-field2::before {
  content: "";
  width: 30px;
  height: 25px;
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 8px;
  background: url("/app_themes/tripeasy/assets/images/sprite-common.svg") no-repeat;
  background-size: 500px 500px;
  z-index: 2;
}

.react-mform .mform-row .icon-field2.icon-ticket::before, .te-addExpense .mform-row .icon-field2.icon-ticket::before {
  background-position: -203px -137px;
}

.react-mform .mform-row .icon-field2 label.MuiInputLabel-outlined, .te-addExpense .mform-row .icon-field2 label.MuiInputLabel-outlined {
  transform: translate(40px, 15px) scale(1);
}

.react-mform .mform-row .icon-field2 label.MuiInputLabel-outlined.MuiInputLabel-shrink, .te-addExpense .mform-row .icon-field2 label.MuiInputLabel-outlined.MuiInputLabel-shrink {
  transform: translate(14px, -6px) scale(0.75);
}

.react-mform .mform-row .icon-field2 input, .te-addExpense .mform-row .icon-field2 input {
  padding-left: 40px;
}

.react-mform .mform-row .icon-field2 .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root], .te-addExpense .mform-row .icon-field2 .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] {
  padding: 0 65px 0 40px;
}

.react-mform .mform-row .icon-field2 .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] input, .te-addExpense .mform-row .icon-field2 .MuiAutocomplete-hasPopupIcon.MuiAutocomplete-hasClearIcon .MuiAutocomplete-inputRoot[class*=MuiOutlinedInput-root] input {
  padding: 0;
}

.select-dropdown-charges > div#simple-select-outlined {
  border: 1px solid;
  border-radius: 13px;
  border-color: rgba(0, 0, 0, 0.23);
}

/* Trip EXP EN */
@media (max-width: 1240px) {
  .action_box.custom {
    flex-direction: column;
    gap: 1rem;
  }
  .action_box.custom > div {
    margin: 0;
    display: flex;
    justify-content: center;
  }
  .action_box.custom > div.radio_select {
    margin-right: 0;
  }
  .action_box.custom > div .btn-outlined-te.sm {
    width: 100%;
  }
}
