/* Copyright (c) 2024 Shanghai United Imaging Meta Healthcare Co., Ltd. */
html {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-size: cover;
  background-color: #fff;
  font-family: "MicrosoftYaHei";
  min-height: 700px;
  min-width: 400px
}

/* 解决浏览器自动填充默认样式问题 */
/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: color 99999s ease-out 99999s, background-color 99999s ease-out 99999s;
} */

/* body {
  display: flex;
  flex-direction: column;
  height:100%;
  width:100%;
  background-color:#fff;
} */
#language_select {
  float: left;
  height: 32px;
  padding-left: 10px;
  border: 0;
  outline: 0;
  appearance: none;
  -moz-appearance: none;
  /* -webkit-appearance: none; */
  background: unset;
  background-position-x: 100px;
  background-position-y: center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  font-family: MicrosoftYaHei;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
}

.zh_CN #language_select {
  width: 76px;
}

.en_US #language_select {
  width: 120px;
}

#language {
  position: absolute;
  top: 4vh;
  left: 4vw;
  display: flex;
  align-items: center;
  visibility: hidden;
}

#language img {
  height: 20px;
}

.h5 #language .language2_select {
   color: #000 !important;
}

#language .language2_select {
  color: #dadadc;
  background: none;
  appearance: auto;
}

.input-val {
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  margin-right: 5px;
  padding-left: 8px;
}

input:focus {
  border-color: #7687cf !important;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(80, 99, 194, 0.2);
}

#canvas {
  vertical-align: middle;
  box-sizing: border-box;
  background: #a5919124;
  cursor: pointer;
}

#msg {
  width: 100%;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
}

.block {
  position: absolute;
  left: 0;
  top: 0;
}

.sliderContainer {
  position: relative;
  text-align: center;
  width: 330px;
  height: 30px;
  line-height: 30px;
  margin-top: 8px;
  background: #f7f9fa;
  color: #999999;
  border: 1px solid #e4e7eb;
  border-radius: 40px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
}

.sliderContainer_active .slider {
  height: 40px;
  top: -6px;
  border: 1px solid #5063c2;
}

.sliderContainer_active .sliderMask {
  height: 28px;
  border-width: 1px;
  border-bottom-left-radius: 40px;
  -moz-border-bottom-left-radius: 40px;
  -webkit-border-bottom-left-radius: 40px;
  border-top-left-radius: 40px;
  -moz-border-top-left-radius: 40px;
  -webkit-border-top-left-radius: 40px;
}

.sliderContainer_success .slider {
  height: 40px;
  top: -6px;
  border: 1px solid #52ccba;
  background-color: #52ccba !important;
}

.sliderContainer_success .sliderMask {
  height: 28px;
  border: 1px solid #52ccba;
  background-color: #d2f4ef;
  border-bottom-left-radius: 40px;
  -moz-border-bottom-left-radius: 40px;
  -webkit-border-bottom-left-radius: 40px;
  border-top-left-radius: 40px;
  -moz-border-top-left-radius: 40px;
  -webkit-border-top-left-radius: 40px;
}

.sliderContainer_success .sliderIcon {
  background-position: 0 0 !important;
}

.sliderContainer_fail .slider {
  height: 40px;
  top: -6px;
  border: 1px solid #f57a7a;
  background-color: #f57a7a !important;
}

.sliderContainer_fail .sliderMask {
  height: 28px;
  border: 1px solid #f57a7a;
  background-color: #fce1e1;
  border-bottom-left-radius: 40px;
  -moz-border-bottom-left-radius: 40px;
  -webkit-border-bottom-left-radius: 40px;
  border-top-left-radius: 40px;
  -moz-border-top-left-radius: 40px;
  -webkit-border-top-left-radius: 40px;
}

.sliderContainer_fail .sliderIcon {
  background-position: 0 -83px !important;
}

.sliderContainer_active .sliderText,
.sliderContainer_success .sliderText,
.sliderContainer_fail .sliderText {
  display: none;
}

.sliderMask {
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  border: 0 solid #5063c2;
  background: #d1e9fe;
}

.slider {
  position: absolute;
  top: -6px;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.2s linear;
}

.slider:hover {
  background: #5063c2;
}

.slider:hover .sliderIcon {
  background-position: 0 -13px;
}

.sliderIcon {
  position: absolute;
  top: 15px;
  left: 13px;
  width: 14px;
  height: 10px;
  background-size: 34px 471px;
}
.refreshIcon {
  position: absolute;
  right: 0;
  top: 0;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background-size: 34px 471px;
}

/* 内容区域 */

.contentWrap {
  flex: 1 0 auto;
}

.loginWrap {
  display: flex;
  align-items: center;
  margin: 0 100px;
}

/* 验证区域 */
.h5 {
  height: 100%;
  width: 100%;
}


.h5 .oauth_wrap {
height: 100% !important;
box-shadow: none !important;
padding: 0 !important;
margin-top: 70px;
}

.oauth_wrap {
  position: relative;
  width: 100%;
  text-align: center;
  min-height: 430px;
  background: #ffffff;
  box-shadow: 0 2px 32px 8px rgba(0, 0, 0, 0.38);
  border-radius: 4px;
  padding: 30px 40px;
  box-sizing: border-box;
}

.oauth_wrap .oauth_title {
  font-size: 32px;
  color: #1f2127;
  font-weight: bold;
  font-family: "MicrosoftYaHei";
  text-align: center;
  margin:0;
  word-break: break-word;
}
.en_US .oauth_wrap .oauth_title {
  font-size: 28px;
}

.formWrap {
  margin-top: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 162px;
}

.formWrap input {
  border: 1px solid #CED0D9;
  border-radius: 2px;
  width: 100%;
}

.formWrap .form_item {
  position: relative;
  width: 100%;
}

.formWrap .label_parent {
  text-align: left;
}

.formWrap .label_name {
  font-size: 14px;
  color: #5c6280;
}

.formWrap .login_name {
  box-sizing: border-box;
  height: 38px;
  /* width: 360px; */
  font-size: 14px;
  padding-left: 36px;
  box-shadow: none;
}
.formWrap .login_name:hover {
  border: 1px solid #a7aab5;
}
.formWrap .login_name:focus {
  border: 1px solid #4e6cdb;
}

.formWrap .login_img {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 11px;
  left: 10px;
}

.form_container {
  position: relative;
}

.formWrap .label_password {
  position: absolute;
  top: -18px;
  left: 0px;
  font-size: 14px;
  color: #5c6280;
}

.formWrap .login_password {
  box-sizing: border-box;
  height: 38px;
  /* width: 360px; */
  font-size: 14px;
  padding: 0 40px;
  box-shadow: none;
}
.formWrap .login_password:hover {
  border: 1px solid #a7aab5;
}
.formWrap .login_password:focus {
  border: 1px solid #4e6cdb;
}

.formWrap .password_icon {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 11px;
  left: 10px;
}

.formWrap .demo_img {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 11px;
  right: 10px;
  cursor: pointer;
}

.formWrap .codeLabel {
  position: absolute;
  top: -26px;
  left: 60px;
  font-size: 14px;
  color: #5c6280;
}

.formWrap .codeLoginCode {
  box-sizing: border-box;
  height: 38px;
  /* width: 360px; */
  font-size: 14px;
  padding-left: 40px;
  padding-right: 115px;
  border: 1px solid #dadce6;
  border-radius: 2px;
  box-shadow: none;
}

.formWrap .codeLoginCode:hover {
  border: 1px solid #a7aab5;
}

.formWrap .codeLoginCode:focus {
  border: 1px solid #4e6cdb;
}

.formWrap .codeImg {
  position: absolute;
  top: 11px;
  left: 10px;
  width: 16px;
  height: 16px;
}

.formWrap .codeButton {
  cursor: pointer;
  opacity: 1;
  position: absolute;
  top: -38px;
  right: 0px;
  width: 113px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  padding: auto 4px auto 4px;
  text-align: center;
  height: 38px;
  background-color: transparent;
  color: #5063c2;
  border: none;
  border-radius: 2px;
}

.formWrap .codeButton:before {
  content: '';
  height: 20px;
  border-left: 1px solid #a7aab5;
  position: absolute;
  right: 113px;
}

.formWrap .capitalShow {
  display: none;
  position: absolute;
  top: 42px;
  left: 170px;
  width: 120px;
  height: 20px;
  background: #ffffad;
  border-radius: 5px;
}

.formWrap .capitalShow .capital_icon {
  position: absolute;
  top: -15px;
  left: 10px;
  width: 0;
  height: 0;
  font-size: 0;
  border: solid 8px;
  border-color: transparent transparent #ffffad transparent;
}

.formWrap .capitalShow .capital_text {
  padding: 0px 10px;
  font-size: 14px;
}

.action_wrap {
  position: relative;
}

.action_wrap .rememberMeInput {
  position: absolute;
  left: 60px;
  width: 16px;
  height: 16px;
  opacity: 1;
  border: none;
  background: #fff;
  margin: 11.5px 0 0 0;
  box-shadow: none;
}

.rememberMeInput:hover {
  cursor: pointer;
}

.action_wrap .rememberMeInput_text {
  font-family: MicrosoftYaHei;
  font-size: 14px;
  color: #5c6280;
}

.action_wrap .codeLoginPage {
  position: absolute;
  left: 300px;
  color: #5063c2;
  cursor: pointer;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  text-decoration: underline;
}

.otherMode {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: 20px;
  min-height: 29px;
}

.otherModeItem {
  font-size: 14px;
  color: #5063c2;
  margin: 0px 20px 0 0px;
  cursor: pointer;
display: flex;
justify-content: center;
margin-top: 10px;
}

.forgetPassword {
  /* position: absolute;
  right: 60px; */
  color: #5063c2;
  cursor: pointer;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  text-decoration: none;
  /* flex: 1; */
  text-align: right;
  /* margin-top: 10px; */
}

/* logo */

.logo {
  position: absolute;
  top: 4vh;
  height: 6vh;
}

.logo img {
  height: 100%;
  max-width: 100%;
}

/* 底部 Copyright */
.copyright {
  font-family: MicrosoftYaHei;
  font-size: 14px;
  color: #989cb3;
  text-align: center;
  line-height: 28px;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  z-index: 9;
  /* text-decoration: underline;
  cursor: pointer; */
}

.copyright-en {
  display: none;
}
.copyright-cn {
  display: flex;
  justify-content: center;
}

.h5 .copy-div {
  flex-wrap: wrap;
}

.h5 .copyright-cn {
  flex-wrap: wrap;
}

.copy-div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* 错误提示 */

#errorTipContanier {
  min-height: 20px;
  width: 100%;
}

#errorTip, .errorTipByName, .errorTip_onModal {
  display: none;
  overflow: hidden;
  border-radius: 2px;

}

.errorTipByName {
  padding-bottom: 25px;
}

#errorTip .stop_img, .errorTipByName  .stop_img {
  width: 20px;
  position: absolute;
  top: 16px;
  left: 20px;
}

#errorTip .error_tip_text_wrap, .errorTipByName .error_tip_text_wrap, .errorTip_onModal .error_tip_text_wrap {
  /* position: absolute;
  display: table;
  left: 60px; */
  min-height: 20px;
  width: 100%;
}

#errorTip .error_tip_text_wrap #errorTipText, .errorTipByName .error_tip_text_wrap .errorTipTextByName, #errorTipText_onModal {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  color: #F14C1B;
  font-weight: 400;
  /* word-break: break-all; */
}

.textCenter {
  text-align: center !important;
  display: block !important;
}

.errorHeight {
  height: 35px;
  width: 362px;
}

.errorText {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  line-height: 15px;
  color: #F14C1B;
  /* word-break: break-all; */
}

.errorWrapper {
  display: none;
  position: static !important;
  overflow: hidden;
  height: 35px !important;
  width: 364px;
  padding-top: 5px;
  background-color: transparent !important;
}

.passwordTips {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #9298b3;
}

.passwordTipsIcon {
  height: 16px;
  margin-right: 5px;
}

.box {
  padding-top: 30px;
  padding-bottom: 10px;
  /* width: 360px; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.line {
  height: 1px;
  flex-grow: 1;
  background-color: #B3B6C7;
}

.text {
  margin: 0 16.5px;
  font-size: 14px;
  color: #b3b6c7;
}

.domainLoginPage {
  height: 44px;
  width: 44px;
  border-radius: 22px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #5063c2;
  margin: 0 15px;
  cursor: pointer;
}


#loginButton,#agreeLoginBtn {
  cursor: pointer;
  /* width: 360px; */
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 2px;
  color: #ffff;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  background-image: linear-gradient(225deg, #7996fa 0%, #3c5bcf 100%);
  border: 1px solid rgba(57, 88, 230, 0.8);
  border-radius: 2px;
  margin-bottom: 8px;
}

.test {
}

#checkIn {
  height: 20px;
  font-size: 16px;
  line-height: 20px;
  box-sizing: border-box;
  display: flex;
  color: #5c6280;
  font-size: 14px;
  justify-content: space-between;
}

#checkInText {
  font-family: MicrosoftYaHei;
  color: #5063c2;
  text-decoration: none;
  display: inline-block;
  /* flex:1; */
  text-align: left;
}

.otherType {
  font-size: 14px;
  color: #B3B6C7 !important;
}

.login-container {
  /* visibility: hidden; */
  /* padding-bottom: 6vh; */
}

.asyncImg {
  visibility: hidden;
}

.oauth_login {
  display: none;
}

.ww_container {
  margin: 0 auto;
  margin-top: -26px;
  width: 250px;
  height: 300px;
  overflow: hidden;
}

.ww_container iframe {
  width: 100%;
  transform: translateY(-44px);
}

#mini_container {
  margin: 0 auto;
  margin-top: -20px;
  width: 230px;
  height: 230px;
}

#flybook_container {
  margin-top: -30px;
}

#qrcode_tip {
  text-align: center;
  font-size: 14px;
}

#mini_qrcode_img {
  width: 100%;
  height: 100%;
}

#mini_qrcode_fail {
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
}

#mini_qrcode_fail_mark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  color: #fff;
  box-sizing: border-box;
  line-height: 1.5;
}

#mini_qrcode_fail_icon {
  display: inline-block;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  cursor: pointer;
}

#mini_qrcode_fail_title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 25px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  z-index: 10;
  cursor: pointer;
}

.country {
  position: relative;
  font-size: 14px;
}

.login-container .countryList {
  box-sizing: border-box;
}

.country .countryList {
  display: none;
  position: absolute;
  min-width: 136px;
  z-index: 1000;
  font-size: 12px;
  color: #333;
  display: none;
  height: 367px;
  width: 347px;
  padding: 8px;
  padding-right: 4px;
  background: #ffffff;
  border: 1px solid #ced0d9;
  box-shadow: 0 1px 3px 0 rgba(53, 64, 118, 0.16);
  border-radius: 4px;
}

.login-container .countryContainer {
  padding: 0 !important;
  justify-content: center;
}

.country .flex-col {
  display: flex;
  width: 100%;
}

.country .countryList .title {
  font-size: 12px;
  color: #b3b6c7;
  font-weight: 400;
}

.title-left {
  flex: 1;
  text-align: left;
}

.title-right {
  margin-right: 16px;
}

.country .flex-col .left {
  width: 95%;
  text-align: left;
}

.country .flex-col .right {
  position: absolute;
  top: 25px;
  right: 16px;
}

.country .countryList .list {
  padding: 0;
  overflow: auto;
  height: calc(100% - 15px);
  margin: 0;
  list-style-type: none;
}

.country .countryList .select-item {
  font-size: 14px;
  color: #5c6280;
  font-weight: 400;
  height: 20px;
  margin-bottom: 4px;
}

.country .countryList .select-item .code {
  width: 43px;
  margin-right: 6px;
  display: inline-block;
}

.country .countryList .first-item {
  font-size: 12px;
  color: #b3b6c7;
  font-weight: 400;
  height: 24px;
  line-height: 24px;
}

.country .countryList .dest-item {
  font-size: 9px;
  color: #5c6280;
  text-align: center;
  line-height: 14px;
  font-weight: 400;
  transform: scale(0.8);
  cursor: pointer;
}

.country .countryContainer {
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #dadce6;
  cursor: pointer;
  margin-top: 5px;
  height: 40px;
}

.country .countryContainer .tips {
  flex: 1;
}

.country .countryList.show {
  display: block !important;
}

.country .countryContainer.disabled {
  background: rgba(0, 0, 0, 0.05);
  opacity: 0.5;
  pointer-events: none;
}

.country .select-item {
  display: list-item;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
  cursor: pointer;
}

.country .select-item.selected {
  color: #5264c2;
}



.country .select-item:hover,
.country .select-item:active {
  background: rgba(0, 0, 0, 0.05);
}
.country .searchContainer {
  position: relative;
}

.country .searchContainer input {
  height: 30px;
  padding: 5px 0px;
  padding-right: 40px;
  padding-left: 20px;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.country .cancel {
  position: absolute;
  top: 8px;
  right: 17px;
  cursor: pointer;
  height: 15px;
  width: 15px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*---------------------------scrollbar--------------------------*/
::-webkit-scrollbar {
  width: 4px;
  height: 6px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: #d8d8d8;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:decrement {
  border-width: 0 1px;
  border-color: transparent #d8d8d8;
}

::-webkit-scrollbar-thumb:increment {
  border-width: 1px 0;
  border-color: #d8d8d8 transparent;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(208, 212, 217, 0.8);
}

.policyFooter {
  display:flex;
  justify-content: center;
  bottom: 20px;
  left: 0;
  right: 0;
}

.pc .policyFooter {
  /* position: absolute; */
}

.agreeAction {
  position: relative;
  cursor: pointer;
}

.agreeActionErr input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  border: 1px solid #F14C1B;
  background-color: white;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

/* 取消状态 */
.agreeActionErr input[type="checkbox"]:after {
  width: 12px;
  height: 12px;
  line-height: 12px;
  display: block;
  content: "x";
  color: transparent;
  background-color: transparent;
}

/* 选中状态 */
/* input[type="checkbox"]:checked:after {
  content: "✔";
  color: #F14C1B;
  background-color: yellow;
} */

.error-border {
  border: 1px solid #fabeac !important;
  border-radius: 2px;
}

#multiFactorVerify{
  display: none;
}

#multiFactorVerify .multiFactorVerifyContent {
  z-index: 10;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%, -50%);
  height: 310px;
  width: 310px;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
}

.diaLeft{
  left: 300px;
}

.diaRight{
  right: -50px
}

.diaCenter{
  left:50%
}

#multiFactorVerify #backgroundId{
  z-index: 8;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.45;
}

#multiFactorVerify .multiFactorVerifyContent>div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  /* align-items: center; */
}

#multiFactorVerify .verifyTitle {
  font-size: 20px;
  font-weight: 700;
}

#multiFactorVerify #codeInput {
  box-sizing: border-box;
  height: 38px;
  width: 100%;
  font-size: 14px;
  padding-left: 40px;
  padding-right: 115px;
  border: 1px solid #dadce6;
  border-radius: 2px;
  box-shadow: none;
}

#multiFactorVerify #codeInput:hover {
  border: 1px solid #a7aab5;
}

#multiFactorVerify #codeInput:focus {
  border: 1px solid #4e6cdb;
}

#multiFactorVerify .codeImg {
  position: absolute;
  top: 11px;
  left: 10px;
  width: 16px;
  height: 16px;
}

#multiFactorVerify #codeBtn {
  cursor: pointer;
  opacity: 1;
  position: absolute;
  top: -38px;
  right: 0px;
  width: 113px;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  padding: auto 4px auto 4px;
  text-align: center;
  height: 38px;
  background-color: #5063c2;
  color: #ffffff;
  border: 1px solid #5063c2;
  border-radius: 2px;
}

/* #codeErrTip {
  color: #F14C1B;
} */

.btnWrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.verifyBtn {
  cursor: pointer;
  width: 100px;
  height: 40px;
  border: 0;
  border-radius: 2px;
  color: #ffff;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  background-image: linear-gradient(225deg, #7996fa 0%, #3c5bcf 100%);
  border: 1px solid rgba(57, 88, 230, 0.8);
  border-radius: 2px;
  margin-bottom: 8px;
}

.btnColor {
  background-image: none;
  background-color: #fff;
  color: inherit;
  border: 1px solid #a7aab5;
}

#multiFactorVerify .hidden {
  display: none !important;
}

input[type="password"]::-ms-reveal{
  display: none;
}
input[type="password"]::-ms-clear{
  display: none;
}
input[type="password"]::-o-clear{
  display: none;
}

.search-tenant{
  box-sizing: border-box;
    height: 38px;
    padding-left: 36px;
    font-size: 14px;
    margin-top: 6px;
    box-shadow: none;
    border: 1px solid #CED0D9;
    border-radius: 2px;
    width: 100%;
}

.search-tenant-icon{
  width: 16px;
  height: 16px;
  position: absolute;
  top: 18px;
  left: 10px;
  opacity: 0.5;
}

.highlight {
  background-color: yellow;;
}