@font-face {
  font-family: "km-n";
  src: url("/Content/Assets/Fonts/battambang/Battambang-Regular.ttf");
}
@font-face {
  font-family: "km-b";
  src: url("/Content/Assets/Fonts/battambang/battambang_bold.ttf");
}
/*Roboto Font*/
@font-face {
  font-family: "en-400";
  src: url("/Content/Assets/Fonts/roboto/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "en-500";
  src: url("/Content/Assets/Fonts/roboto/Roboto-Bold.ttf") format("truetype");
}
:root {
  --font: "en-400", "km-n", -apple-system, sans-serif;
  --font-3: "en-400", "km-n", -apple-system, sans-serif;
  --font-4: "en-400", "km-n", -apple-system, sans-serif;
  --font-5: "en-500", "km-b", -apple-system, sans-serif;
  --font-6: "en-500", "km-b", -apple-system, sans-serif;
  --font-7: "en-500", "km-b", -apple-system, sans-serif;
  --font-9: "en-500", "km-b", -apple-system, sans-serif;
  --nav-background-color: #051e34;
  --header-background-color: #189c9b;
  --header-shadow: 0px 1px 2px 0px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);
  --ocs-primary-rgb-color: 24, 156, 155;
}

* {
  font-family: var(--font-4);
  letter-spacing: 0.5px;
}

.ocs-main-login {
  background: linear-gradient(-45deg, #189c9b, #69f4db) !important;
}

.n-auth-wrapper {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: linear-gradient(108deg, #2D615F 0%, #2D4C62 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  letter-spacing: 0px;
}
@media only screen and (max-width: 720px) {
  .n-auth-wrapper {
    background: #fff;
  }
}
.n-auth-wrapper .column-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 720px) {
  .n-auth-wrapper .logo {
    display: block;
  }
}
.n-auth-wrapper .auth-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  text-transform: uppercase;
  height: 48px;
  border-radius: 14px;
  outline: none;
  border: 0px;
  font-size: 13px;
  line-height: 13px;
  transition: 0.15s ease-in-out;
  color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 720px) {
  .n-auth-wrapper .auth-btn {
    height: 50px;
  }
}
.n-auth-wrapper .auth-btn.auth-btn-login {
  background: var(--ocs-primary-color);
  border-color: var(--ocs-primary-color);
}
.n-auth-wrapper .auth-btn.auth-btn-register {
  background: #d7b952;
  border-color: #d7b952;
}
.n-auth-wrapper .auth-btn.auth-btn-register:active {
  background: #f9d65e !important;
  border-color: #d7b952 !important;
  box-shadow: 0 0 0 3px rgba(215, 185, 82, 0.7215686275) !important;
}
.n-auth-wrapper .auth-btn.auth-btn-register:focus {
  box-shadow: 0 0 0 3px rgba(215, 185, 82, 0.7215686275) !important;
}
.n-auth-wrapper .auth-btn:hover {
  opacity: 0.9;
}
.n-auth-wrapper .event-none {
  pointer-events: none !important;
}
.n-auth-wrapper .main-position-translate-langauge-screen-mobile {
  display: none;
}
.n-auth-wrapper .n-auth-content {
  position: relative;
  display: flex;
  grid-gap: 0px 80px;
  background: #ffffff;
  padding: 60px 80px;
  border-radius: 30px;
}
.n-auth-wrapper .n-auth-content .main-position-translate-langauge {
  position: absolute;
  top: 30px;
  left: 35px;
}
@media only screen and (max-width: 1024px) {
  .n-auth-wrapper .n-auth-content {
    grid-gap: 0px 80px;
  }
}
@media only screen and (max-width: 800px) {
  .n-auth-wrapper .n-auth-content {
    padding: 65px 80px;
  }
}
@media only screen and (max-width: 720px) {
  .n-auth-wrapper .n-auth-content {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 450px;
    padding: 0px;
    border-radius: 0px;
    box-shadow: unset;
    margin-bottom: 30px;
  }
}
.n-auth-wrapper .n-auth-content .border-right {
  border-right: 1px solid #ececec;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side {
  width: 225px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 720px) {
  .n-auth-wrapper .n-auth-content .n-auth-right-side {
    width: 100%;
    padding: 0px 40px;
    padding-bottom: 30px;
  }
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-header .logo img {
  height: 70px;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-header .title {
  color: var(--ocs-primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .form-group-auth {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 4px 0px;
  margin-bottom: 12px;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .form-group-auth .label-auth {
  font-size: 12px;
  color: #707070;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .form-group-auth .form-control-auth {
  width: 100%;
  height: 45px;
  padding: 0px 20px;
  border-radius: 14px;
  border: 1px solid #F2F2F2;
  outline: none;
  font-size: 13px;
  line-height: 13px;
  color: #161616;
  transition: 0.15s ease-in-out;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .form-group-auth .form-control-auth:focus {
  border: 1px solid rgba(24, 156, 155, 0.3215686275);
}
@media only screen and (max-width: 720px) {
  .n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .form-group-auth .form-control-auth {
    height: 50px;
  }
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .input-with-icon {
  position: relative;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .input-with-icon .icon-show-password {
  position: absolute;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  right: 2px;
  cursor: pointer;
  font-size: 14px;
  color: #7f818f;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .input-with-icon .icon-show-password .ocs-btn-show-password {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease-in-out;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .input-with-icon .icon-show-password .ocs-btn-show-password i {
  animation: show_icon_show_password 0.5s ease-in-out;
  pointer-events: none;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .input-with-icon .icon-show-password .ocs-btn-show-password:hover {
  background: rgba(68, 74, 76, 0.0509803922);
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .input-with-icon .icon-show-password .ocs-btn-show-password:active {
  transition: 0.1s ease-in-out;
  transform: scale(0.8);
}
@media only screen and (max-width: 720px) {
  .n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .input-with-icon .icon-show-password .ocs-btn-show-password {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 720px) {
  .n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-body .input-with-icon .icon-show-password {
    width: 50px;
    height: 50px;
  }
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-footer {
  display: flex;
  justify-content: center;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-footer span {
  color: #676767;
  font-size: 13px;
  margin-right: 6px;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-footer .btn-outline {
  all: unset;
  border-radius: 5px;
  height: 35px;
  padding: 0 16px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-footer .btn-outline:hover {
  background: #f1f1f1;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-footer .btn-outline.auth-btn-login {
  color: #2fb5ad;
  border: 1px solid #2fb5ad;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-footer .btn-outline.auth-btn-login:focus {
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.7803921569);
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-footer .btn-outline.auth-btn-register {
  color: #d7b952;
  border: 1px solid #d7b952;
}
.n-auth-wrapper .n-auth-content .n-auth-right-side .n-auth-footer .btn-outline.auth-btn-register:focus {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.6705882353);
}
.n-auth-wrapper .n-auth-content .n-auth-left-side {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 800px) {
  .n-auth-wrapper .n-auth-content .n-auth-left-side {
    display: none;
  }
}
@media only screen and (max-width: 720px) {
  .n-auth-wrapper .n-auth-content .n-auth-left-side {
    display: none;
  }
}
.n-auth-wrapper .n-auth-content .n-auth-left-side .title {
  text-align: center;
  color: #189c9b;
  font-size: 16px;
  font-weight: 400;
}
.n-auth-wrapper .n-auth-content .n-auth-left-side .image {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.n-auth-wrapper .n-auth-content .n-auth-left-side .image img {
  height: 450px;
}
.n-auth-wrapper .auth-forgot-pasword {
  outline: none;
  border: 0px;
  background-color: transparent;
  color: #707070;
  font-size: 12px;
  margin-top: 14px;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}
.n-auth-wrapper .auth-forgot-pasword:hover {
  color: #189c9b;
}

.field-validation-error {
  font-style: normal !important;
  font-size: 11px !important;
  color: #ff3447 !important;
  margin-top: 0px !important;
  letter-spacing: 0px !important;
}

.loader-login {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 44px;
}

.loader-login div {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loader-login div:nth-child(1) {
  left: 3px;
  animation: loader-login1 0.6s infinite;
}

.loader-login div:nth-child(2) {
  left: 3px;
  animation: loader-login2 0.6s infinite;
}

.loader-login div:nth-child(3) {
  left: 12px;
  animation: loader-login2 0.6s infinite;
}

.loader-login div:nth-child(4) {
  left: 21px;
  animation: loader-login3 0.6s infinite;
}

@keyframes loader-login1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loader-login3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes loader-login2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(9px, 0);
  }
}
.clinic-wrrapper {
  height: 100vh;
  width: 100vw;
  background: linear-gradient(-45deg, #189c9b, #54d9f2);
  overflow-x: hidden;
  overflow-y: auto;
}
.clinic-wrrapper > .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 20px;
  background: var(--nav-background-color);
}
.clinic-wrrapper > .header .left,
.clinic-wrrapper > .header .right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clinic-wrrapper .action-btn {
  all: unset;
  margin-right: 5px;
  height: 35px;
  width: 35px;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: white;
  -webkit-text-fill-color: white;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s ease;
}
.clinic-wrrapper .action-btn:hover {
  background: rgba(125, 125, 125, 0.7019607843);
}
.clinic-wrrapper .action-btn:active {
  font-size: 10px !important;
  border: 1px solid rgba(125, 125, 125, 0.7019607843);
}
.clinic-wrrapper .content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
}
.clinic-wrrapper .content .cln-group-card {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 2rem;
  margin-top: 5px;
}
@media only screen and (max-width: 1111px) {
  .clinic-wrrapper .content .cln-group-card {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 850px) {
  .clinic-wrrapper .content .cln-group-card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 570px) {
  .clinic-wrrapper .content .cln-group-card {
    grid-template-columns: repeat(1, 1fr);
  }
}
.clinic-wrrapper .content .cln-group-card .cln-card {
  position: relative;
  background: white;
  border-radius: 5px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  min-width: 250px;
  overflow: hidden;
  transition: all 0.25s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.clinic-wrrapper .content .cln-group-card .cln-card.action-to {
  cursor: pointer;
}
.clinic-wrrapper .content .cln-group-card .cln-card .b-r-icon {
  position: absolute;
  bottom: 0;
  right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #a1a1a1;
}
.clinic-wrrapper .content .cln-group-card .cln-card .b-r-icon > i::before {
  content: "\ee37";
}
.clinic-wrrapper .content .cln-group-card .cln-card:hover {
  background: #f2f2f2;
}
.clinic-wrrapper .content .cln-group-card .cln-card > .header {
  color: white;
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  padding-right: unset;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #d9d9d9;
}
.clinic-wrrapper .content .cln-group-card .cln-card > .header > .left > .title {
  background: transparent;
  display: flex;
  flex-direction: column;
  -webkit-text-fill-color: rgb(82, 82, 82);
  padding-right: 30px;
  min-height: 73px;
}
.clinic-wrrapper .content .cln-group-card .cln-card > .header > .left > .title.active {
  cursor: pointer;
}
.clinic-wrrapper .content .cln-group-card .cln-card > .header > .left > .title.active:hover {
  text-decoration: underline;
}
.clinic-wrrapper .content .cln-group-card .cln-card > .header > .left > .title > div:nth-child(2) {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
}
.clinic-wrrapper .content .cln-group-card .cln-card > .body {
  padding: 16px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clinic-wrrapper .content .cln-group-card .cln-card > .body > .cln-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.clinic-wrrapper .content .cln-group-card .cln-card > .body > .cln-code > :first-child {
  font-size: 20px;
}
.clinic-wrrapper .content .cln-group-card .cln-card > .body > .cln-code > :last-child {
  font-size: 20px;
  color: #adadad;
  cursor: pointer;
}
.clinic-wrrapper .content .cln-group-card .cln-card > .footer {
  border-top: 1px solid #dedfe1;
  padding: 7px 16px;
}
.clinic-wrrapper .my-card {
  position: relative;
  background: white;
  width: 500px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 26px rgba(0, 0, 0, 0.1019607843);
  margin: 0 auto;
}
@media only screen and (max-width: 560px) {
  .clinic-wrrapper .my-card {
    max-width: 100%;
  }
}
.clinic-wrrapper .my-card > .footer {
  display: flex;
  justify-content: space-between;
}
.clinic-wrrapper .my-card > .loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5294117647);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #2196f3;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.clinic-wrrapper .h-title {
  font-size: 26px;
  text-align: left;
  color: #4e4e4e;
}
.clinic-wrrapper .clinic-box {
  background: white;
  padding: 16px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: #4e4e4e;
}
.clinic-wrrapper .clinic-box .leading {
  display: flex;
  align-items: center;
}
.clinic-wrrapper .clinic-box .cln-btn-remove {
  all: unset;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease;
  border-radius: 35px;
  font-size: 20px;
  color: #757575;
}
.clinic-wrrapper .clinic-box .cln-btn-remove:hover {
  background: #ced4da;
}

.column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  margin-bottom: 5px;
}

.input-search {
  position: relative;
  height: 35px;
  width: 200px;
}
.input-search > input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 0 10px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
}
.input-search::after {
  content: "\f002";
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #757575;
}

.auth-error {
  position: relative;
  background: #fff6f6;
  padding: 5px 16px;
  border-radius: 0.25rem;
  border: 1px solid rgba(244, 67, 54, 0.4588235294);
  font-weight: 500;
  margin-bottom: 16px;
  color: #f44336;
}
.auth-error button {
  all: unset;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  cursor: pointer;
  color: #989898;
  transition: all 0.2s ease;
}
.auth-error button:hover {
  color: #444444;
}

.no-data-found {
  background: #f5ffff;
  border: 1px solid rgba(0, 150, 136, 0.3803921569);
  width: 100%;
  border-radius: 0.25rem;
  padding: 10px 20px;
  font-size: 16px;
  color: #4a4a4a;
  display: flex;
  align-items: center;
}
.no-data-found > i {
  color: rgba(0, 150, 136, 0.3803921569);
  margin-right: 20px;
  font-size: 26px;
}

.clinic-contener {
  position: relative;
  min-height: calc(100vh - 235px);
}

.clinic-loader {
  background: rgba(0, 0, 0, 0.1882352941);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  color: white;
}

.clinic-status {
  display: flex;
  align-items: center;
}
.clinic-status.request {
  -webkit-text-fill-color: #03a9f4;
}
.clinic-status.active {
  -webkit-text-fill-color: #4caf50;
}
.clinic-status.reject {
  -webkit-text-fill-color: #f44336;
}
.clinic-status.review {
  -webkit-text-fill-color: #ff9800;
}
.clinic-status.disable {
  -webkit-text-fill-color: #9e9e9e;
}
.clinic-status > i {
  margin-right: 5px;
}/*# sourceMappingURL=Login.css.map */