* {
  /* font-family: "Open Sans"; */
  font-style: normal;
}

.modal-dialog {
  max-height: 80vh; /* Set a maximum height for the modal dialog */
  margin: 30px auto; /* Center the modal dialog */
}
.modal-content {
  max-height: 100%; /* Ensure modal content doesn't exceed the dialog height */
  overflow-y: auto; /* Enable vertical scrolling if content exceeds the height */
}
.modal-body {
  max-height: calc(80vh - 150px); /* Adjust based on your header and footer height */
  overflow-y: auto; /* Enable vertical scrolling in the body */
}

#some_div {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 12px;
}
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.circleInitals {
  width: 60px;
  height: 60px;

  background-color: #FFE6BF;

}

/* Logo  */
.image {
  width: 150px;
  height: 48px;
  object-fit: contain;
  margin: 1% auto;
  border: none;
}

.AppName {
  margin-top: 16px;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
}

.errorBox {
  width: 330px;
  min-height: 32px;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  background-color: #fee5e4;
  border-radius: 3px;
  /* padding: 2px 4px 2px 4px; */
  padding: 0.4rem;
  margin: 0% auto;

  color: #F64E4B;
  display: flex;
  align-items: center;
  justify-content: center;

}

.images {
  width: 100px;
  height: 100px;
}

.button-like-box {
  display: inline-block;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  width: -webkit-fill-available;
  transition: box-shadow 0.3s ease;
  /* Add a smooth transition effect for the shadow */
}

.radio-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected {
  border: 1.4px solid #06867b;
}

#cid-label {
  margin-left: 8px;
}


/* Remove hover effect */
.submitBtn:hover {
  border-color: #06867b;
  background-color: #06867b;
  color: white;

}

.cancelBtn:hover {
  border-color: darkgrey;
}

.submitBtn {
  border-color: #06867b;
  background-color: #06867b;
  color: white;
  width: 155px;

}

.cancelBtn {
  width: 155px;
  border-color: lightgrey;
  border-radius: 8px;
}

/* Hide the default radio button */

/* Style the custom radio button container */
.custom-radio {
  display: inline-block;
  width: 19px;
  /* Adjust as needed */
  height: 19px;
  /* Adjust as needed */
  position: relative;
  /* Position relative for absolute positioning of inner circle */
}

/* Style the outer circle of the custom radio button */
.custom-radio::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 50%;
  /* Makes it a circle */
  border: 1.4px solid #06867b;
  /* Matching border color */
  box-sizing: border-box;
  /* Include border in element's total width and height */
}

/* Style the inner circle of the custom radio button when selected */
input[type="radio"]:checked+.custom-radio::after {
  content: "";
  position: absolute;
  /* Position absolute to position inner circle relative to its container */
  top: 50%;
  /* Position at the vertical center */
  left: 50%;
  /* Position at the horizontal center */
  transform: translate(-50%, -50%);
  /* Center the circle precisely */
  width: 9px;
  /* Adjust as needed */
  height: 9px;
  /* Adjust as needed */
  background-color: #06867b;
  border-radius: 50%;
  /* Makes it a circle */
}

.container1 {

  position: relative;

  right: 0;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container1 input {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0;
  cursor: pointer;

}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 10;
  right: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */

/* When the radio button is checked, add a blue background */
.container1 input:checked~.checkmark {
  background-color: #07877B;
  width: 20px;
  height: 20px;

}

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

/* Show the indicator (dot/circle) when checked */
.container1 input:checked~.checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container1 .checkmark:after {

  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/*  */




.custom-link-style {
  position: relative;
  top: -20px;
  font-weight: 750;
  font-size: 12px;
  text-decoration: none;
  float: right;
  color: #219b90 !important;
  /* Text color */

  border: none;
  background: none;
}

form {
  width: 390px;
  padding: 18px;
}

form label {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;

}

#toast-container>div {
  opacity: 1;
}



.did-floating-label-content {
  position: relative;
  margin-top: 16px;
}

#username-error,
#password-error {
  position: absolute;
  font-size: 13px;
  bottom: -24px;
}

.did-floating-label {
  color: #1e4c82;
  font-size: 13px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 5px;
  padding: 0 5px;
  background: #fff;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.sucessModel {
  width: 90%;
  display: block;
  margin: 0% 5%;

}

.sucessModel1 {
  width: 85%;
  display: block;
  margin: 0% 5%;

}

.scrollHide {
  height: 220px;
  overflow-y: scroll;
}

.scrollHide::-webkit-scrollbar {
  display: none;
}

@media only screen and (min-width: 600px) {

  .sucessModel {
    width: 300px;
    display: block;
    margin: 0% 5%;


  }
}

.modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.did-floating-input,
.did-floating-select {
  font-size: 12px;
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  background: #fff;
  color: #323840;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
}

.did-floating-input:focus,
.did-floating-select:focus {
  outline: none;
}

.did-floating-input:focus~.did-floating-label,
.did-floating-select:focus~.did-floating-label {
  top: -14px;
  font-size: 13px;
}

select.did-floating-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.did-floating-select::-ms-expand {
  display: none;
}

.did-floating-input:not(:placeholder-shown)~.did-floating-label {
  top: -14px;
  font-size: 13px;
}

.did-floating-select:not([value=""]):valid~.did-floating-label {
  top: -14px;
  font-size: 13px;
}

.did-floating-select[value=""]:focus~.did-floating-label {
  top: -14px;
  font-size: 13px;
}


.did-error-input .did-floating-input,
.did-error-input .did-floating-select {
  border: 2px solid #9d3b3b;
  color: #9d3b3b;
}

.did-error-input .did-floating-label {
  font-weight: 600;
  color: #9d3b3b;
}


.input-group {
  display: flex;
}

.input-group .did-floating-input {
  border-radius: 0 4px 4px 0;
  border-left: 0;
  padding-left: 0;
}

.input-group-append {
  display: flex;
  align-items: center;
  /*   margin-left:-1px; */
}

.input-group-text {
  display: flex;
  align-items: center;
  font-weight: 400;
  height: 34px;
  color: #323840;
  padding: 0 5px 0 20px;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #3d85d8;
  border-radius: 4px 0 0 4px;
  border-right: none;
}


#myForm {
  margin: 0% auto;
  padding: 0%;
  width: 330px;
}

.card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  transition: all 0.2s ease-in-out;
  line-height: 24px;
  border: none;

}

.headingDiv {
  display: flex;
  justify-content: center;
}

.borderinfo {
  display: flex;
  justify-content: center;
  align-items: center;

}

.borderinfo a {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: #06867b;
  text-align: center;
  padding: 0%;
}





/*
.footer{
bottom:0px

}
*/


/*footer*/


/* Other style */
/*
    .container-full-width{
        padding-left: 2%;
        padding-right: 2%;
        width: 100% !important;
    }
    */
@media (max-width: 420px) {

  .xs-footer-nopadding {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

}

@media (min-width: 1200px) {

  .lg-nopadding {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (min-width: 768px) {


  .sm-padding-left-5 {
    padding-left: 5px !important;
  }

  .sm-padding-right-5 {
    padding-right: 5px !important;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .md-nopadding-left {
    padding-left: 0px;
    padding-right: 10px;
  }

  .md-nopadding-right {
    padding-left: 10px;
    padding-right: 0px;
  }
}

*/

/*
    .navbar-nav>li>a {
        color: inherit;
    }
    .navbar-nav.footer-links>li>a {
        padding: 11px;
    }
    .footer-links-1>li>a {
        color: inherit;
    }
    .footer-links a {
        color: #666;
    }*/
.login-footer {
  /* position: relative; */
}

@media (max-width: 768px) {
  .testText {

    color: violet
  }


  .alert {
    z-index: 2;
    position: fixed;
    top: 230px;
    left: 50%;
    width: 543px;
    font-size: small;
    transform: translate(-50%, -50%);
    background-color: transparent;
    padding: 20px;
    /* border: 1px solid #ccc; */
    border-radius: 4px;
  }

  .login-footer .navbar-fixed-bottom {
    /* position: static; */
  }

  a {
    text-decoration: none;
    color: #9a9a9a
  }
}

.modal-dialog-maxwidth {
  width: 80%;
}

a {
  text-decoration: none;
  color: #9a9a9a;
  margin-end: 10px;
  font-size: 9px;
}

.grey-font {
  color: #9a9a9a
}

/* Styles for desktop view */
@media only screen and (min-width: 1200px) {
  /*
.login-footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;


}
}
*/

  /* Styles for mobile view */
  @media only screen and (max-width: 767px) {

    .login-footer {
      /* position: relative; */

    }

    a {
      font-size: 9px;
      text-decoration: none;
      color: #9a9a9a
    }

    .link-col {
      text: center;
      text-decoration: none;
      color: #9a9a9a;
      margin-end: 10px;
      font-size: small;
    }

    .mobiletxtView {
      display: flex;
      flex-direction: column;
      text-align: justify;
    }

    .initialFooterRow {

      text-align: justify;
    }

    .initialFooterCol {
      text-align: justify;
    }

  }

  @media only screen and (min-width: 767px) and (max-width: 1400px) {

    .login-footer {
      /* position: relative; */

    }

    a {
      text-decoration: none;
      font-size: 9px;
      color: #9a9a9a
    }
  }


  @media only screen and (min-width: 1400px) and (max-width: 4000px) {

    .alert {
      z-index: 2;
      position: fixed;
      top: 40%;
      left: 50%;
      width: 543px;
      font-size: small;
      transform: translate(-50%, -50%);
      background-color: transparent;
      padding: 20px;
      /* border: 1px solid #ccc; */
      border-radius: 4px;
    }



    a {
      text-decoration: none;
      font-size: 9px;
      color: #9a9a9a;

    }

    .login-footer {
      /* position: fixed; */
      /* bottom: 0;
left: 0;
right: 0; */


    }
  }
}



.initialFooterRow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.modallinks {
  text-decoration: none;
  color: black
}

/*modal start */

@media (min-width: 576px) {
  .testText {

    color: grey
  }

  .alert {
    z-index: 2;
    position: fixed;
    top: 230px;
    left: 50%;
    width: 543px;
    font-size: small;
    transform: translate(-50%, -50%);
    background-color: transparent;
    padding: 20px;
    /* border: 1px solid #ccc; */
    border-radius: 4px;
  }





  .modal-dialog {
    max-width: 75%;
    margin: 1.75rem auto;
  }
}

@media (min-width: 992px) {
  .testText {

    color: brown
  }

  .modal-dialog {
    max-width: 75%;
  }
}

@media (min-width: 1200px) {
  .testText {

    color: gold
  }

  .alert {
    z-index: 2;
    position: fixed;
    top: 40%;
    left: 50%;
    width: 543px;
    font-size: small;
    transform: translate(-50%, -50%);
    background-color: transparent;
    padding: 20px;
    /* border: 1px solid #ccc; */
    border-radius: 4px;
  }

  .modal-dialog {
    max-width: 50%;
  }
}

@media screen and (min-width:600px) {

  body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    overflow: auto;
    overflow-x: hidden;
  }

}

#mfaList {
  position: absolute;
  z-index: -2;
}

a:hover {
  cursor: pointer;
}

.alert-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.alert-buttons button {
  margin-left: 10px;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.yesBtn,
.noBtn {
  font-size: small;
}

.btn-outline-success {
  border-color: #06867b;
  color: #06867b;
}

.btn-outline-success:hover {
  background-color: #06867b;
  color: #fff;
  /* Change text color to white when hovering */
}

.custom-dropdown-button {
  background-color: white;
  color: black;
}

.dropdown-menu .dropdown-item a {
  text-align: left !important;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Adjust the opacity as needed */
  backdrop-filter: blur(8px);
  /* Adjust the blur amount as needed */
  z-index: 1;
}

.password-toggle-Parent {
  position: relative;
}

.hidemain {
  display: none;
}

.password-toggle {
  opacity: 0.5;
  font-size: 12px;
  position: absolute;
  /* top: 44%; */
  right: 20px;
  transform: translateY(-165%);
  cursor: pointer;
  z-index: 1;
  /* Ensure the icon is above the input */
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px;
}

select option {
  /* Background color of options */
  color: #07877B;
  /* Text color of options */
  font-size: 14px;
  /* Font size of options */

  /* Adjust the height of each option */
  padding: 10px;

}

/* Style the hover state of options */
select option:hover {
  background-color: green;
  /* Maintain the background color on hover */
  color: white;
  /* Maintain the text color on hover */
}

.arrow-down {
  position: absolute;
  top: calc(50% - 2px);
  /* Adjust the position of the arrow vertically */
  right: 25px;
  /* Adjust the position of the arrow horizontally */
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  /* Adjust the color of the arrow */
}


#password-error,
#username-error,
#oDataError {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* margin-top: 8px; */
  color: #F64E4B;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

.password-toggle i {
  cursor: pointer;
}

/* .password-toggle i.fa-eye-slash:before {
  content: "\f070";

}

.password-toggle i.fa-eye:before {
  content: "\f06e";

} */

.actionButton {
  height: 50px;
  width: 100%;

}

@media only screen and (min-width: 200px) and (max-width: 330px) {

  /* Adjust styles for screens with a maximum width of 330px and maximum height of 612px */
  .did-floating-label,
  did-floating-select {
    font-size: 10px;
    /* Adjust font size for this specific screen size */
  }

  .did-floating-input:focus~.did-floating-label,
  .did-floating-select:focus~.did-floating-label {
    top: -14px;
    font-size: 10px;
  }

  .did-floating-input:not(:placeholder-shown)~.did-floating-label {
    top: -14px;
    font-size: 10px;
  }

  .did-floating-select:not([value=""]):valid~.did-floating-label {
    top: -14px;
    font-size: 10px;
  }

  .did-floating-select[value=""]:focus~.did-floating-label {
    top: -14px;
    font-size: 10px;
  }

  .my-4 {
    font-size: large;
  }
}

@media only screen and (max-width: 330px) and (max-height: 612px) {

  /* Adjust styles for screens with a maximum width of 330px and maximum height of 612px */
  .did-floating-label,
  did-floating-select {
    font-size: 8px;
    /* Adjust font size for this specific screen size */
  }

  .did-floating-input:focus~.did-floating-label,
  .did-floating-select:focus~.did-floating-label {
    top: -14px;
    font-size: 8px;
  }

  .did-floating-input:not(:placeholder-shown)~.did-floating-label {
    top: -14px;
    font-size: 8px;
  }

  .did-floating-select:not([value=""]):valid~.did-floating-label {
    top: -14px;
    font-size: 8px;
  }

  .did-floating-select[value=""]:focus~.did-floating-label {
    top: -14px;
    font-size: 8px;
  }



}

@media only screen and (min-width: 331px) and (max-width: 344px) {
  .my-4 {
    font-size: large;
  }

}

@media only screen and (min-width: 768px) and (max-width: 990px) {
  .submitBtn {
    width: 140px;
  }

  .cancelBtn {
    width: 140px;
  }

  .my-4 {
    font-size: large;
  }

}

@media only screen and (min-width: 991px) and (max-width: 1200px) {

  /* Adjust styles for screens with a maximum width of 330px and maximum height of 612px */
  .did-floating-label,
  did-floating-select {
    font-size: 11px;
    /* Adjust font size for this specific screen size */
  }

  .did-floating-input:focus~.did-floating-label,
  .did-floating-select:focus~.did-floating-label {
    top: -14px;
    font-size: 11px;
  }

  .did-floating-input:not(:placeholder-shown)~.did-floating-label {
    top: -14px;
    font-size: 11px;
  }

  .did-floating-select:not([value=""]):valid~.did-floating-label {
    top: -14px;
    font-size: 11px;
  }

  .did-floating-select[value=""]:focus~.did-floating-label {
    top: -14px;
    font-size: 11px;
  }

  .submitBtn {
    width: 130px;
  }

  .cancelBtn {
    width: 130px;
  }

  .my-4 {
    font-size: large;
  }
}


@media only screen and (min-width: 1201px) and (max-width: 1400px) {
  .my-4 {
    font-size: large;
  }
}