* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: #fafafa;
}
.rms-pc-header {
  position: fixed;
  left: 239px;
  right: 0;
  z-index: 1025;
  background-color: rgb(21, 83, 181) !important;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 10px 0px; */
  min-height: 70px;
  color: white;
}
.rms-pc-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  min-height: 70px;
  gap: 15px;
  flex-wrap: wrap;
}
.rms-pch-main-title {
font-size: 16px;
  color:white;
  font-weight: 500;
}
.rms-pch-right-head {
  font-size: 10px;
  color:white;
  font-weight: 500;
}
.rms-sidenavbar {
  width: 240px;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1026;
  background-color:rgb(21, 83, 181) !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.rms-snav-header {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 15px 30px;
}
.rms-snavh-logo {
  width: 150px;
}
.rms-snav-menu-wrapper {
  position: relative;
  height: calc(100vh - 70px);
  padding: 10px 0;
}
.rms-snav-menu-list {
  padding: 15px 10px;
  height: calc(100vh - 70px);
  overflow-y: auto;
      background-color:rgb(21, 83, 181) !important;
    color: white;
}
.rms-snav-menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.rms-snav-item a {
  text-decoration: none;
  color: #353535;
  font-size: 14px;
  padding: 10px 25px;
  border-radius: 6px;
  display: block;
  transition: 0.2s;
}

.rms-smenu-active a {
  background-color: #e6f4ff !important;
  color: #377ec1;
}

.rms-snav-item a:hover {
  background-color: #516e8b;
  color: black;
}
/* width */
.rms-snav-menu-list::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.rms-snav-menu-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.rms-snav-menu-list::-webkit-scrollbar-thumb {
  background: #377ec1;
  border-radius: 10px;
}

/* Handle on hover */
.rms-snav-menu-list::-webkit-scrollbar-thumb:hover {
  background: #0aa1eb;
}
.rms-body-wrapper {
  position: relative;
  top: 70px;
  margin-left: 240px;
  min-height: calc(100vh - 70px);
}
.rms-bodycontents {
  padding: 30px;
}
.login-card-wrapper {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.login-card {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 700px;
  border-radius: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.logincard-content-wrapper {
  padding: 40px 25px;
  width: 55%;
}
.lc-title {
  font-size: 10px;
  margin: 0;
}
.lc-stitle {
  font-size: 10px;
  color: rgb(129, 129, 129);
  margin-top: 5px;
  margin-bottom: 20px;
  line-height: 24px;
}
.lc-input-wrapper {
  margin-bottom: 15px;
}
.lc-input-wrapper label {
  display: block;
  color: rgb(75, 75, 75);
  font-size: 10px;
  margin-bottom: 5px;
}
.lc-input-wrapper input {
  width: 100%;
  padding: 12px 0;
  border-radius: 5px;
  outline: none;
  border: 1px solid #adadad;
  text-indent: 10px;
}
.lc-btn {
  width: 100%;
  background-color: #1777ff;
  padding: 13px;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
}
.lc-input-pass {
  position: relative;
}
.too-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: rgb(75, 75, 75);
}
.logincard-logo-wrapper {
  width: 45%;
  background-image: url(https://www.absolentgroup.com/contentassets/c1c8f001974c41a2bf423875fb3b86b7/simon-lee-zft-w1kvehg-unsplash.jpg?width=1440&quality=80);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 15px 15px 0;
  display: grid;
  place-items: center;
}
.lc-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lc-logo img {
  width: 95px;
  border-radius: 8px;
}
@media only screen and (max-width: 500px) {
  .login-card {
    flex-direction: column-reverse;
  }
  .logincard-content-wrapper {
    width: auto;
    padding: 10px 25px 35px 25px;
  }
  .logincard-logo-wrapper {
    width: 100%;
    border-radius: 15px 15px 0 0;
    height: 190px;
  }
  .login-card-wrapper {
    padding: 25px;
  }
}
.rms-inf-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}
.rms-input-wrapper input {
  padding: 8px 0;
  text-indent: 10px;
  border-radius: 5px;
  outline: none;
  border: 1px solid #adadad;
  width: 300px;
  margin-top: 11px;
}
.rms-input-wrapper select {
  padding: 8px 0;
  text-indent: 10px;
  border-radius: 5px;
  outline: none;
  border: 1px solid #adadad;
  width: 300px;
    margin-top: 11px;

}
.rms-btn-wrapper {
    margin-top: 11px;
  display: flex;
  gap: 10px;
}
.rms-searchbtn {
  border: 1px solid #f0f0f0;
  outline: none;
  background-color: #f0f0f0;
  padding: 8px 20px;
  border-radius: 5px;
  color: #868686;
  cursor: pointer;
  transition: 0.2s;
}
.rms-clearbtn {
  border: 1px solid #929292;
  outline: none;
  background-color: #f4f4f4;
  padding: 8px 20px;
  border-radius: 5px;
  color: #868686;
  cursor: pointer;
  transition: 0.2s;
}
.rms-searchbtn:hover {
  background-color: #1777ff;
  color: #fff;
}
.rms-clearbtn:hover {
  background-color: rgb(206, 41, 41);
  color: #fff;
  border: 1px solid rgb(206, 41, 41);
}
@media only screen and (max-width: 500px) {
  .rms-input-wrapper {
    width: 100%;
  }
  .rms-input-wrapper input {
    width: 100%;
  }
}
.pdf-icon {
  width: 80px;
  display: block;
}
.rms-title {
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e7e7e7;
}
.pdf-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.pdf-preview {
  border: 1px solid #d4d4d4;
  padding: 10px;
  border-radius: 15px;
  max-width: 214px;
  min-width: 214px;
}
.pdf-dwnbtn {
  border: 1px solid #1777ff;
  outline: none;
  background-color: #1777ff;
  padding: 5px 20px;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s;
  font-size: 10px;
}
.pdf-viewbtn {
  border: 1px solid #929292;
  outline: none;
  background-color: #f4f4f4;
  padding: 5px 20px;
  border-radius: 5px;
  color: #868686;
  cursor: pointer;
  transition: 0.2s;
  font-size: 10px;
}
.rms-pdf-filename {
  font-size: 14px;
  margin: 5px 0 10px 0;
  color: #5a5a5a;
  font-family: "Poppins", sans-serif;
  overflow-x: auto;
}
.rms-pdf-filename::-webkit-scrollbar {
  height: 3px;
}

/* Track */
.rms-pdf-filename::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.rms-pdf-filename::-webkit-scrollbar-thumb {
  background: rgb(138, 138, 138);
  border-radius: 10px;
}

/* Handle on hover */
.rms-pdf-filename::-webkit-scrollbar-thumb:hover {
  background: #1777ff;
}
