/*------------------------------------*\
#FONTS
\*------------------------------------*/
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-Regular-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/OpenSans-Regular-webfont.woff) format("woff"),
    url(../fonts/OpenSans-Regular-webfont.ttf) format("truetype"),
    url(../fonts/OpenSans-Regular-webfont.svg#open_sansregular) format("svg");
  font-weight: normal;
  font-style: normal;
}

/**
* Firefox specific rule
*/
@-moz-document url-prefix() {
  body {
    font-weight: normal !important;
  }
}

/*------------------------------------*\
#COMMON
\*------------------------------------*/
tr,
td,
th {
  padding: 4px;
  height: 16px;
}

/* hides reveal password button from input type=password */
input::-ms-reveal,
input::-ms-clear {
  display: none;
}

/* removes glow effect from focused elements */
:focus {
  outline-color: transparent;
  outline-style: none;
}

.form--label {
  color: gray;
}

.nowrap {
  white-space: nowrap;
}

.left {
  float: left;
}

.right {
  float: right;
}

.ft--buttons {
  margin-top: 10px;
  text-align: right;
  width: 100%;
}

.fullWidth {
  width: 100%;
}

.bold {
  font-weight: bold;
}

.hideMe {
  visibility: hidden;
  display: none;
  margin: 0;
  padding: 0;
}

.login__outer {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ECF3F8;
}

.login__container {
  display: table-cell;
  vertical-align: middle;
}

.login__footer {
  margin-top: 80px;
  width: 100%;
  text-align: center;
  bottom: 30px;
  color: #999999;
  font: 11px "Open Sans";
}

.login__footer p {
  padding: 0px 30px;
  line-height: 20px;
}

.lvform__table {
  display: table;
  width: 100%;
  border-spacing: 5px;
}

.lvform__row {
  display: table-row;
}

.lvform__cell--left,
.lvform__cell--right,
.lvform__cell--center {
  display: table-cell;
}

.lvform__label {
  font-size: 13px;
  color: #333333;
  font-family: "Open Sans", sans-serif;
}

.lvform__cell--left {
  padding: 5px;
  height: auto;
}

.lvform__cell--right {
  height: auto;
}

.lvform__cell--description {
  font-size: 11px;
  color: #808080;
  font-family: "Open Sans", sans-serif;
}

.lvform__cell_desc--below {
  margin-top: 3px;
}

/* Custom Checkbox */

.lvcheckbox__container {
  display: block;
  position: relative;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 16px;
  width: 16px;
  margin-right: 6px;
}

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

.lvcheckbox__label--right {
  padding-left: 0px !important;
}

.lvcheckbox__container-disabled {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 0px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.lvcheckbox__container input,
.lvcheckbox__container-disabled input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.lvcheckbox__checkmark {
  position: absolute;
  top: 15%;
  left: unset;
  height: 16px;
  width: 16px;
  background-color: #FFFFFF;
  border: 2px solid #767676;
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.lvcheckbox__container:hover input~.lvcheckbox__checkmark {
  background-color: #E1EAF2;
}

/* When the checkbox is checked, add a blue background */
.lvcheckbox__container input:checked~.lvcheckbox__checkmark {
  background-color: #007AB8;
  border: 2px solid #007AB8;
}

.lvcheckbox__container input:checked~.lvcheckbox__checkmark:hover {
  background-color: #003F7B;
  border: 2px solid #003F7B;
}

/* Create the checkmark/indicator (hidden when not checked) */
.lvcheckbox__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.lvcheckbox__container input:checked~.lvcheckbox__checkmark:after {
  display: flex;
}

.lvcheckbox__container-disabled input:checked~.lvcheckbox__checkmark:after {
  display: flex;
}

/* Style the checkmark/indicator */
.lvcheckbox__container .lvcheckbox__checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.lvcheckbox__container-disabled .lvcheckbox__checkmark:after {
  left: 7px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid #d7d9db;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.lvcheckbox__container-disabled .lvcheckbox__checkmark {
  background-color: #f2f2f2;
}

.lvcheckbox__clickable {
  cursor: pointer;
}

.lvcheckbox__label {
  font-size: 12px;
  position: relative;
  top: 4px;
}

.lvcheckbox__vertical_align {
  vertical-align: top;
}

.lvcheckbox__fixed_size {
  width: 20px;
}

/* Custom Checkbox */
.radio-group {
  height: 40px;
}

.input__cell--right {
  margin-left: 5px;
}

.radio-button-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 13px;
  color: gray;
}

.radio-button-container-disabled {
  display: inline-flex;
  position: relative;
  padding-left: 35px;
  margin-bottom: 0px;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 23px;
  color: gray;
}

/* Hide the browser's default checkbox */
.radio-button-container input,
.radio-button-container-disabled input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 20px;
  width: 20px;
  left: 20%;
  z-index: 100;
}

/* Create a custom checkbox */
.radio-button-checkmark {
  position: absolute;
  top: -3px;
  left: 5%;
  height: 22px;
  width: 22px;
  background-color: #D7D9DB;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-button-container:hover input~.radio-button-checkmark {
  background-color: #808080;
}

/* When the checkbox is checked, add a blue background */
.radio-button-container input:checked~.radio-button-checkmark {
  background-color: #426FD9;
}

/* Show the radio-button-checkmark when checked */
.radio-button-container input:checked~.radio-button-checkmark:after {
  display: block;
}

.radio-button-container-disabled input:checked~.radio-button-checkmark:after {
  display: block;
}

/* Style the radio-button-checkmark/indicator */
.radio-button-container .radio-button-checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio-button-container-disabled:hover input~.radio-button-checkmark {
  background-color: #F2F2F2;
}

.radio-button-container-disabled .radio-button-checkmark:after {
  display: block;
  left: 7px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid #D7D9DB;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Create the radio-button-checkmark/indicator (hidden when not checked) */
.radio-button-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-group {
  display: flex;
  justify-content: space-evenly;
}

.input__row {
  display: flex;
  position: relative;
  top: 9px;
  font-size: 12px;
}

/*------------------------------------*\
#LVBUTTON
\*------------------------------------*/

.lv-button__outside {
  display: inline-block;
  border-radius: 4px;
}

.lv-button {
  border: none;
  background: #f2f2f2;
  display: inline-block;
  vertical-align: text-bottom;
  cursor: pointer;
  transition: 0.6s all;
}

.lv-button:focus {
  background-color: #f8f8f8;
}

.lv-button.primary:focus {
  background-color: #005C99;
}

.lv-button.red:focus {
  background-color: #e61a1c;
}

.lv-button.green:focus {
  background-color: #7bda64;
}

.lv-button__outside.block {
  display: block;
}

.lv-button__outside.block>.lv-button {
  display: block;
  width: 100%;
}

.lv-button.small>.lv-button__inside {
  padding: 2px 6px;
  font-size: 11px;
}

.lv-button.medium>.lv-button__inside {
  padding: 6px 16px;
  font-size: 13px;
}

.lv-button.large>.lv-button__inside {
  padding: 7px 26px;
  font-size: 18px;
}

.lv-button:hover,
.lv-button.hover {
  background: #f8f8f8;
}

.lv-button>.lv-button__inside {
  display: block;
  font-family: "Open Sans", arial;
  font-size: 11px;
  line-height: 24px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}

.lv-button>.lv-button__inside>.icon {
  padding: 3px 4px 0px 25px;
  display: inline;
}

.lv-button.primary {
  background-image: none;
  background-color: #007AB8;
  color: #ffffff;
  font-weight: 600;
  border-radius: 4px;
}

.lv-button.primary>.lv-button__inside {
  border-color: #003F7B;
  color: #ffffff;
}

.lv-button.outlined {
  background-image: none;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #005C994D;
}

.lv-button.outlined:hover {
  background-color: #EFEFEF;
}

.lv-button.outlined:focus {
  background-color: #EFEFEF;
}

.lv-button__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lv-button__icon img {
  display: block;
  height: auto;
}

.lv-button__text {
  font-weight: 600;
  font-size: 13px;
  color: #003D7A;
}


.loginBtn {
  margin-top: 10px;
}

.lv-button.primary:hover {
  background-color: #003F7B;
}

.lv-button.red {
  background-image: none;
  background-color: #c20f0e;
  color: #ffffff;
  font-weight: 600;
}

.lv-button.red>.lv-button__inside {
  border-color: #c20f0e;
  color: #ffffff;
}

.lv-button.red:hover {
  background-color: #e61a1c;
}

.lv-button.green {
  background-image: none;
  background-color: #64b351;
  color: #ffffff;
  font-weight: 600;
}

.lv-button.green>.lv-button__inside {
  border-color: #64b351;
  color: #ffffff;
}

.lv-button.green:hover {
  background-color: #7bda64;
}

.lv-button.disabled,
.lv-button.disabled:hover {
  background-color: #ccc;
}

.lv-button.disabled>.lv-button__inside {
  border-color: #ccc;
}

/*------------------------------------*\
  # LV CARD
\*------------------------------------*/

.lv-card {
  box-shadow: 1px 1px 5px #ccc;
  margin: 10px;
  background-color: #f2f2f2;
  font-family: "Open Sans", sans-serif;
  position: relative;
  border-radius: 8px;
}

.lv-card--resize::after {
  color: rgba(0, 0, 0, 0.25);
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -1px;
  right: -2px;
  content: "=";
  font-size: 17px;
  text-align: center;
  vertical-align: middle;
  transform: rotate(135deg);
}

.lv-card.white {
  background-color: #ffffff;
}

.lv-card .content.collapsed {
  padding-bottom: 5px;
}

.lv-card .header {
  padding: 8px 0px;
  color: #6f7684;
  font-size: 18px;
}

.lv-card .header button {
  border: 0;
}

.lv-card__hd__collapse_icon {
  width: 18px;
  height: 20px;
  float: right;
  position: absolute;
  top: 14px;
  right: 10px;
  cursor: pointer;
  transition: all 0.6s;
}

.icon--chevron-down-gray.left {
  transform: rotateZ(-90deg);
  position: absolute;
}

.rn-anchor {
  cursor: move;
}

.full-height {
  height: 100%;
  margin: 0px;
}

/*------------------------------------*\
  # LV INPUT
\*------------------------------------*/

input.lv-input {
  color: #333333;
  font-size: 13px;
  padding: 10px 4px 10px 10px;
  position: relative;
  display: block;
  border: none;
  width: 100%;
  border: 1px solid #AFC1CE;
  border-radius: 4px;
  text-indent: 0px;
}

input.lv-input:disabled {
  background-color: #ffffff;
  color: #c8c7c6;
  border: none;
  border-bottom: 1px solid #ddd;
}

input.lv-input.has-text:read-only {
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.21);
  border: none;
  padding: 5px 0px 0px 0px;
  font-weight: 400;
  font-size: 13px;
}

.lv-floating-label {
  color: #3F5C69;
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  pointer-events: none;
  top: -20px;
  line-height: 16.34px;
  transition: 0.2s ease all;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  padding-left: 0px;
  text-transform: uppercase;

}

.lv-input:focus {
  outline: none;
}

/*------------------------------------*\
#LVLOGO
\*------------------------------------*/

.lv-logo--darkblue {
  fill: #243356;
}

.lv-logo--white {
  fill: #ffffff;
}

.lv-toogle-password {
  position: absolute;
  height: 15px;
  top: 6px;
  right: -10px;
}

/*------------------------------------*\
  # LV LOGIN
\*------------------------------------*/

.lv-login {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}

.lv-login .lv-card .header {
  padding: 0px;
}

.lv-login__form-input {
  position: relative;
  margin: 20px 15px 10px 0px;
  padding-bottom: 10px;
}

.lv-login__container {
  padding: 17px 17px 17px 17px;
}

.lv-login__logo {
  text-align: center;
  width: 100%;
  padding: 20px 0px 20px 0px;
  background: linear-gradient(180deg, #007CBE 0%, #00679E 100%);
  border-radius: 8px 8px 0px 0px;
}

.lv-button__inside>span {
  font-weight: 600;
  font-size: 13px;
  color: #FFFFFF;
}

.lv-login__clear-btn {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 5px;
  display: block;
  margin: 0 auto;
  border: 0;
  background: transparent;
}

.lv-login__clear-btn>span {
  font-size: 13px;
  line-height: 15.6px;
  cursor: pointer;
  color: #829AAB;
  /* transition: 0.6s all; */
}


.lv-login__clear-btn.disabled>span {
  color: #829AAB;
}

.changePasswordBtnText {
  padding-bottom: 5px;
}

.remember-me-checkbox {
  max-width: 150px;
  margin: auto;
}

.remember-me-checkbox .lvform__cell--left,
.lvform__cell--right {
  vertical-align: middle;
}

.lv-login__error-msg {
  position: relative;
  top: 10px;
  margin-bottom: 20px;
}

.lv-login__error-msg p {
  color: #C2041A;
  font-size: 14px;
  text-align: center;
}

.lv-otp__container {
  text-align: center;
}

.lv-otp__qr_container>h3 {
  font-size: 1.17em;
  font-weight: bold;
  padding: 0 0 10px;
}

.lv-otp__qr_container {
  text-align: center;
}

#qrcode {
  display: inline-block;
}

.lv-otp__qr_container>p {
  padding: 0 0 10px;
}

.lv-otp__button_div {
  padding: 10px 0 15px;
}

.lv-otp__btn_link {
  background: none !important;
  border: none;
  padding: 0 !important;
  color: #007AB8;
  text-decoration: underline;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
}

.lv-login__form-input__hidden {
  display: none;
  visibility: hidden;
}

.lv-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0px 0px 30px 0px;
  background-color: #ECF3F8;
}


.lv-copyright-text {
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  font-family: "Open Sans", sans-serif;
}

.eye-slash {
  position: absolute;
  height: 15px;
  top: 12px;
  right: -5px
}

.eye {
  position: absolute;
  height: 18px;
  top: 10px;
  right: -5px
}


/**
* Alert Related Styles
*/

.lv-note {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.lv-note__logo {
  text-align: center;
  width: 100%;
  padding: 20px 0px 10px 0px;
}

.lv-note__container {
  text-align: center;
}

.lv-note__title {
  padding-bottom: 5px;
}

.lv-note__title span {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 27.24px;
  text-align: center;
  color: #3F5C69;
}

.lv-note__body {
  padding: 5px 15px;
}

.lv-note__body p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
  color: #829AAB;
  margin-bottom: 10px;
}

.lv-note__footer p {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  text-align: center;
  color: #005C99;
}

.lv-note__footer {
  padding-bottom: 25px;
}


/**
* OTP Related Styles
*/

.lv-otp__title {
  padding: 15px 0px 10px 0px;
}

.lv-otp__title span {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.79px;
  text-align: center;
  color: #333333;
}

.lv-otp__body {
  padding: 5px 15px;
}

.lv-otp__body p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 15.6px;
  text-align: center;
  color: #333333;
  margin-bottom: 10px;
}

.button-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-bottom: 20px;
}

.button-group .lv-button {
  width: 43%;
}
