@charset "UTF-8";
.asdf {
  border: 1px solid green; }

body, html {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #f3f3f3; }

.container-fill {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; }

.content {
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto; }

/* 當屏幕寬度大於高度的16/9時，限制內容的高度，並根據高度計算寬度 */
@media (min-aspect-ratio: 16 / 9) {
  .content {
    height: 100vh;
    /* 這裡設定為90vh，留出一些空間 */
    width: calc(90vh * 16 / 9);
    /* 寬度根據高度和16:9比例計算 */ } }

/* 當屏幕高度大於寬度的9/16時，限制內容的寬度，並根據寬度計算高度 */
@media (max-aspect-ratio: 16 / 9) {
  .content {
    width: 100vw;
    /* 寬度為視口的100% */
    height: calc(100vw * 9 / 16);
    /* 高度根據寬度和16:9比例計算 */ } }

h1 {
  color: #30506c;
  font-weight: bolder; }

.home-menu a {
  padding: 1rem;
  height: 20vh;
  border: 1px solid rgba(128, 128, 128, 0.646);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #30506c;
  text-decoration: none;
  font-size: 26px;
  font-weight: bolder;
  transition: color 0.3s ease, background-color 0.3s ease; }

.home-menu a:hover {
  color: #ffffff;
  background: #1977cc;
  transition: color 0.3s ease, background-color 0.3s ease; }

:root {
  --background-light: #EDEDEF;
  --text-light: #000000;
  --background-dark: #363537;
  --text-dark: #fafafa;
  --background-gray: #7c7c7c; }

* {
  transition: background-color 0.3s, color 0.3s; }

.ward-card-text header {
  height: 12vh;
  background-color: var(--background-light);
  color: var(--text-light); }
  .ward-card-text header .header-logo {
    display: flex;
    align-items: center; }
    .ward-card-text header .header-logo h3 {
      font-size: 1.09rem;
      transform: scale(1, 1.9) translate(10px, -1px); }
  .ward-card-text header img {
    width: 100%;
    height: 3.5rem;
    object-fit: contain; }
  .ward-card-text header .date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 12vh; }
    .ward-card-text header .date .date1 {
      font-size: 2rem;
      font-weight: bolder;
      padding: 0px;
      margin: 0px; }
    .ward-card-text header .date .date2 {
      font-size: 1.4rem;
      font-weight: bolder;
      padding: 0px;
      margin: 0px; }
  .ward-card-text header .modal-button {
    color: #fff;
    border-radius: 0.5rem;
    height: 7vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .ward-card-text header .modal-button h3 {
      margin: auto;
      font-weight: bolder;
      font-size: 1.19rem;
      letter-spacing: 1px; }
  .ward-card-text header .color-1 {
    background-color: #E95613; }
  .ward-card-text header .color-2 {
    background-color: #F19601; }

.ward-card-text .modal h2 {
  text-align: center;
  width: 100%;
  margin-right: -32px; }

.ward-card-text .modal .qrcode-row {
  display: flex;
  flex-wrap: wrap; }
  .ward-card-text .modal .qrcode-row div {
    flex: 1 1 15%;
    margin: 11px; }
  .ward-card-text .modal .qrcode-row .qrcode1 {
    border-radius: 5px;
    border: 5px solid #ff9224; }
    .ward-card-text .modal .qrcode-row .qrcode1 h3 {
      margin: 0px;
      color: #ff9224; }
  .ward-card-text .modal .qrcode-row .qrcode2 {
    border-radius: 5px;
    border: 5px solid #18a3eb; }
    .ward-card-text .modal .qrcode-row .qrcode2 h3 {
      margin: 0px;
      color: #18a3eb; }
  .ward-card-text .modal .qrcode-row .qrcode3 {
    border-radius: 5px;
    border: 5px solid #000; }
    .ward-card-text .modal .qrcode-row .qrcode3 h3 {
      margin: 0px;
      color: #000; }
  .ward-card-text .modal .qrcode-row img {
    height: 16.4vh;
    object-fit: cover; }

.ward-card-text .modal .medicine {
  display: flex;
  flex-wrap: wrap; }
  .ward-card-text .modal .medicine .medicine-personal {
    border-radius: 5px;
    border: 5px solid #5e879c;
    flex: 1 1 30%;
    margin: 15px; }
    .ward-card-text .modal .medicine .medicine-personal h3 {
      margin: 0.4vh;
      font-size: 1rem;
      font-weight: bolder; }
  .ward-card-text .modal .medicine img {
    height: 17vh;
    object-fit: cover; }

.ward-card-text .modal .call-service {
  margin: 15vh 0px; }
  .ward-card-text .modal .call-service h3 {
    font-weight: bolder; }
  .ward-card-text .modal .call-service img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; }
  .ward-card-text .modal .call-service img:active {
    transform: scale(1.2); }

.ward-card-text .modal .special-notes h3 {
  font-weight: bolder; }

.ward-card-text .modal .special-notes img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 1rem;
  margin-bottom: 1rem; }

.ward-card-text section > div:nth-child(1) {
  border-bottom: 1px solid black;
  background-color: #FFFFFF; }
  .ward-card-text section > div:nth-child(1) .patient {
    display: flex;
    align-items: center;
    height: 25vh; }
    .ward-card-text section > div:nth-child(1) .patient .name {
      font-size: 6rem;
      font-weight: bolder;
      margin-left: 1rem; }
    .ward-card-text section > div:nth-child(1) .patient .describe {
      font-size: 2rem;
      margin-left: 6rem; }
      .ward-card-text section > div:nth-child(1) .patient .describe .icon {
        color: red; }

.ward-card-text section > div:nth-child(2) {
  background: #FEEDDD; }

.ward-card-text section .medical {
  height: 100%;
  display: flex;
  align-items: center; }
  .ward-card-text section .medical .row > div:nth-child(1) {
    align-items: center; }
    .ward-card-text section .medical .row > div:nth-child(1) div {
      background-color: #009845; }
  .ward-card-text section .medical .row > div:nth-child(2) {
    align-items: center;
    font-size: 1.5rem;
    padding-left: 0.5rem;
    font-weight: bolder; }
  .ward-card-text section .medical .row > div:nth-child(3) {
    margin-top: 2vh;
    align-items: center; }
    .ward-card-text section .medical .row > div:nth-child(3) div {
      background-color: #1FA93A; }
  .ward-card-text section .medical .row > div:nth-child(4) {
    margin-top: 2vh;
    align-items: center;
    font-size: 1.5rem;
    padding-left: 0.5rem;
    font-weight: bolder; }

.ward-card-text section .notice .row > div:nth-child(1) {
  padding-left: 1rem;
  align-items: center; }
  .ward-card-text section .notice .row > div:nth-child(1) div {
    background-color: #E95613; }

.ward-card-text section .notice .row > div:nth-child(2) {
  align-items: center;
  font-size: 1.5rem;
  padding-left: 0.5rem;
  padding-bottom: 3vh;
  font-weight: bolder; }

.ward-card-text section .notice .row > div:nth-child(3) {
  padding-left: 1rem;
  margin-top: 2vh;
  align-items: center; }
  .ward-card-text section .notice .row > div:nth-child(3) div {
    background-color: #F19601; }

.ward-card-text section .notice .row > div:nth-child(4) {
  margin-top: 2vh;
  align-items: center;
  font-size: 1.5rem;
  padding-left: 0.5rem;
  font-weight: bolder; }

.ward-card-text section .notice .row > div:nth-child(5) {
  padding-left: 1rem;
  margin-top: 2vh;
  align-items: center; }
  .ward-card-text section .notice .row > div:nth-child(5) div {
    background-color: #E95613; }

.ward-card-text section .notice .row > div:nth-child(6) {
  margin-top: 2vh;
  align-items: center;
  font-size: 1.5rem;
  padding-left: 0.5rem;
  font-weight: bolder; }
  .ward-card-text section .notice .row > div:nth-child(6) span:nth-child(1) {
    margin-left: 0.5rem; }
  .ward-card-text section .notice .row > div:nth-child(6) span:nth-child(2) {
    margin-left: 0.5rem; }
  .ward-card-text section .notice .row > div:nth-child(6) img:nth-child(3) {
    margin-left: 0.5rem;
    width: 6vw;
    transform: scale(1.7, 1.7) translate(10px, 0px); }

.ward-card-text section .case-code-date-1 > div:nth-child(1) div {
  background-color: #013DBF; }

.ward-card-text section .case-code-date-1 > div:nth-child(2) {
  font-size: 1.5rem;
  font-weight: bolder; }
  .ward-card-text section .case-code-date-1 > div:nth-child(2) div {
    margin-left: 0.5rem; }

.ward-card-text section .case-code-date-1 > div:nth-child(3) {
  margin-top: 2.53vh; }
  .ward-card-text section .case-code-date-1 > div:nth-child(3) div {
    background-color: #0044EF; }

.ward-card-text section .case-code-date-1 > div:nth-child(4) {
  margin-top: 2.53vh;
  font-size: 1.5rem;
  font-weight: bolder; }
  .ward-card-text section .case-code-date-1 > div:nth-child(4) div {
    margin-left: 0.5rem; }

.ward-card-text section .case-code-date-1 > div:nth-child(5) {
  margin-top: 2.53vh; }
  .ward-card-text section .case-code-date-1 > div:nth-child(5) div {
    background-color: #013DBF; }

.ward-card-text section .case-code-date-1 > div:nth-child(6) {
  margin-top: 2.53vh;
  font-size: 1.5rem;
  font-weight: bolder; }
  .ward-card-text section .case-code-date-1 > div:nth-child(6) div {
    margin-left: 0.5rem; }

.ward-card-text section .case-code-date-2 > div:nth-child(1) div {
  background-color: #013DBF; }

.ward-card-text section .case-code-date-2 > div:nth-child(2) {
  font-size: 1.5rem;
  font-weight: bolder; }
  .ward-card-text section .case-code-date-2 > div:nth-child(2) div {
    margin-left: 0.5rem; }

.ward-card-text section .case-code-date-2 > div:nth-child(3) {
  margin-top: 2.53vh; }
  .ward-card-text section .case-code-date-2 > div:nth-child(3) div {
    background-color: #0044EF; }

.ward-card-text section .case-code-date-2 > div:nth-child(4) {
  margin-top: 2.53vh;
  font-size: 1.5rem;
  font-weight: bolder; }
  .ward-card-text section .case-code-date-2 > div:nth-child(4) div {
    margin-left: 0.5rem; }

.ward-card-text section .label {
  background-color: #18a3eb;
  border-radius: 1rch;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bolder;
  margin-right: 1rem;
  text-align-last: justify;
  align-items: center;
  height: 5.7vh;
  width: 100%;
  padding: 0.6vh 1vw 0vh 1vw; }

.ward-card-text .card-carousel {
  background: #FEEDDD; }
  .ward-card-text .card-carousel .item {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25), inset -3px -3px 5px 5px rgba(0, 0, 0, 0.1);
    height: 25.65vh;
    border-radius: 1.2rch;
    margin: 15px; }
    .ward-card-text .card-carousel .item p {
      color: #fff;
      font-size: 1.5rem;
      font-weight: bolder;
      border-bottom: 2px solid #fff; }
  .ward-card-text .card-carousel .owl-dots {
    display: none; }

.ward-card-picture > div:nth-child(1) {
  height: 18vh; }
  .ward-card-picture > div:nth-child(1) > div:nth-child(1) {
    display: flex;
    align-items: center;
    font-size: 3rem;
    font-weight: bolder;
    color: #2340C2;
    padding-left: 0.5rem; }
  .ward-card-picture > div:nth-child(1) > div:nth-child(2) {
    display: flex;
    align-items: center;
    font-size: 4rem;
    font-weight: bolder;
    padding-left: 1rem; }
  .ward-card-picture > div:nth-child(1) > div:nth-child(3) {
    display: flex;
    align-items: center; }
    .ward-card-picture > div:nth-child(1) > div:nth-child(3) .row {
      width: 100%; }
      .ward-card-picture > div:nth-child(1) > div:nth-child(3) .row > div:nth-child(1) div:nth-child(1) {
        color: #6C7CBA;
        font-size: 1rem;
        font-weight: bolder;
        margin-bottom: 1vh; }
      .ward-card-picture > div:nth-child(1) > div:nth-child(3) .row > div:nth-child(1) div:nth-child(2) {
        font-size: 2rem;
        font-weight: bolder; }
      .ward-card-picture > div:nth-child(1) > div:nth-child(3) .row > div:nth-child(2) div:nth-child(1) {
        color: #6C7CBA;
        font-size: 1rem;
        font-weight: bolder;
        margin-bottom: 1vh; }
      .ward-card-picture > div:nth-child(1) > div:nth-child(3) .row > div:nth-child(2) div:nth-child(2) {
        font-size: 2rem;
        font-weight: bolder; }
      .ward-card-picture > div:nth-child(1) > div:nth-child(3) .row > div:nth-child(3) div:nth-child(1) {
        color: #6C7CBA;
        font-size: 1rem;
        font-weight: bolder;
        margin-bottom: 1vh; }
      .ward-card-picture > div:nth-child(1) > div:nth-child(3) .row > div:nth-child(3) div:nth-child(2) {
        font-size: 2rem;
        font-weight: bolder; }

.ward-card-picture > div:nth-child(2) {
  height: 18vh; }
  .ward-card-picture > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
    color: #6C7CBA;
    font-size: 1.3rem;
    font-weight: bolder; }
  .ward-card-picture > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
    font-size: 3.3rem;
    font-weight: bolder; }
  .ward-card-picture > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) {
    color: #6C7CBA;
    font-size: 1.3rem;
    font-weight: bolder; }
  .ward-card-picture > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) {
    font-size: 3.3rem;
    font-weight: bolder; }
  .ward-card-picture > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) {
    color: #6C7CBA;
    font-size: 1.3rem;
    font-weight: bolder; }
  .ward-card-picture > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) {
    font-size: 3.3rem;
    font-weight: bolder; }
  .ward-card-picture > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) {
    color: #6C7CBA;
    font-size: 1.3rem;
    font-weight: bolder; }
  .ward-card-picture > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) {
    font-size: 3.3rem;
    font-weight: bolder; }

.ward-card-picture > div:nth-child(3) {
  height: 52vh; }
  .ward-card-picture > div:nth-child(3) .swiper {
    width: 100%;
    height: 52vh;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem; }
    .ward-card-picture > div:nth-child(3) .swiper .swiper-wrapper {
      width: 1; }
      .ward-card-picture > div:nth-child(3) .swiper .swiper-wrapper .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        height: calc((100% - 30px) / 2);
        display: flex;
        justify-content: center;
        align-items: center; }
        .ward-card-picture > div:nth-child(3) .swiper .swiper-wrapper .swiper-slide img {
          width: 100%; }
  .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
    text-align: center;
    background-color: #E7F0FF;
    border-radius: 0.5rem;
    margin: 5px 3px 0 3px;
    height: 50vh;
    padding-top: 1vh; }
    .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
      color: #6C7CBA;
      font-size: 1.5rem;
      font-weight: bolder; }
    .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > img:nth-child(2) {
      height: 17vh; }
    .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) {
      font-size: 1.3rem;
      font-weight: bolder; }
    .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > img:nth-child(4) {
      height: 17vh; }
    .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(5) {
      font-size: 1.3rem;
      font-weight: bolder; }
  .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) {
    text-align: center;
    background-color: #E7F0FF;
    border-radius: 0.5rem;
    margin: 5px 3px 0 3px;
    height: 50vh;
    padding-top: 1vh; }
    .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) {
      color: #6C7CBA;
      font-size: 1.5rem;
      font-weight: bolder; }
    .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) {
      font-size: 1.5rem;
      font-weight: bolder; }
    .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > img:nth-child(3) {
      width: 90%;
      margin: 1vh 0; }
    .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(4) {
      font-size: 1.5rem;
      font-weight: bolder; }
    .ward-card-picture > div:nth-child(3) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(5) {
      font-size: 1.5rem;
      font-weight: bolder; }

.ward-card-picture > div:nth-child(4) {
  height: 11.7vh;
  background-color: #5584F0; }
  .ward-card-picture > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
    color: #fff;
    font-weight: bolder;
    font-size: 3rem;
    text-align: center; }
  .ward-card-picture > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
    color: #fff;
    font-weight: bolder;
    font-size: 1.8rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; }
  .ward-card-picture > div:nth-child(4) > div:nth-child(2) > div:nth-child(1) > .col-3 > div:nth-child(1) {
    height: 11.7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FC6078;
    border-radius: 10px 10px 0 0;
    margin-left: 5px;
    color: #fff;
    font-weight: bolder;
    font-size: 1.3rem; }

.ward-card-picture .modal h2 {
  text-align: center;
  width: 100%;
  margin-right: -32px; }

.ward-card-picture .modal .qrcode-row {
  display: flex;
  flex-wrap: wrap; }
  .ward-card-picture .modal .qrcode-row div {
    flex: 1 1 15%;
    margin: 11px; }
  .ward-card-picture .modal .qrcode-row .qrcode1 {
    border-radius: 5px;
    border: 5px solid #ff9224; }
    .ward-card-picture .modal .qrcode-row .qrcode1 h3 {
      margin: 0px;
      color: #ff9224; }
  .ward-card-picture .modal .qrcode-row .qrcode2 {
    border-radius: 5px;
    border: 5px solid #18a3eb; }
    .ward-card-picture .modal .qrcode-row .qrcode2 h3 {
      margin: 0px;
      color: #18a3eb; }
  .ward-card-picture .modal .qrcode-row .qrcode3 {
    border-radius: 5px;
    border: 5px solid #000; }
    .ward-card-picture .modal .qrcode-row .qrcode3 h3 {
      margin: 0px;
      color: #000; }
  .ward-card-picture .modal .qrcode-row img {
    height: 16.4vh;
    object-fit: cover; }

.ward-card-picture .modal .medicine {
  display: flex;
  flex-wrap: wrap; }
  .ward-card-picture .modal .medicine .medicine-personal {
    border-radius: 5px;
    border: 5px solid #5e879c;
    flex: 1 1 30%;
    margin: 15px; }
    .ward-card-picture .modal .medicine .medicine-personal h3 {
      margin: 0.4vh;
      font-size: 1rem;
      font-weight: bolder; }
  .ward-card-picture .modal .medicine img {
    height: 17vh;
    object-fit: cover; }

.ward-card-picture .modal .call-service {
  margin: 15vh 0px; }
  .ward-card-picture .modal .call-service h3 {
    font-weight: bolder; }
  .ward-card-picture .modal .call-service img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; }
  .ward-card-picture .modal .call-service img:active {
    transform: scale(1.2); }

.ward-card-picture .modal .special-notes h3 {
  font-weight: bolder; }

.ward-card-picture .modal .special-notes img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  margin-bottom: 1rem; }

.bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
  border: 1px solid red;
  height: 35vh;
  border-radius: 10px; }
  .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
    height: calc(100%/3); }
  .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
    height: calc(100%/3); }
  .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) {
    height: calc(100%/3); }

.bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
  border: 1px solid green;
  height: 35vh; }
  .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(n) {
    border: 1px solid green;
    background-color: #e012be;
    height: calc(35vh/3); }
    @media (min-width: 576px) {
      .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(n) {
        background-color: #f8a8ae; } }
    @media (min-width: 768px) {
      .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(n) {
        background-color: #ebc36e; } }
    @media (min-width: 992px) {
      .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(n) {
        background-color: #d2d45f; } }
    @media (min-width: 1200px) {
      .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(n) {
        background-color: #58f16c; } }
    @media (min-width: 1400px) {
      .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(n) {
        background-color: #36b5f5; } }
    .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > div:nth-child(n) img {
      width: 100%;
      height: 100%; }

.bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) {
  border: 1px solid blue;
  height: 65vh; }
  .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(n) {
    border: 1px solid green;
    background-color: #f386e1;
    height: calc(35vh/3 - 0.38rem); }
    @media (min-width: 576px) {
      .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(n) {
        background-color: #f0b3b7; } }
    @media (min-width: 768px) {
      .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(n) {
        background-color: #ebd29c; } }
    @media (min-width: 992px) {
      .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(n) {
        background-color: #d7d885; } }
    @media (min-width: 1200px) {
      .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(n) {
        background-color: #8ff09c; } }
    @media (min-width: 1400px) {
      .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(n) {
        background-color: #62c0f0; } }
    .bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > div:nth-child(n) img {
      width: 100%;
      height: 100%; }

.bedside-card > div:nth-child(1) > div:nth-child(1) > div:nth-child(4) i {
  background-color: red;
  opacity: 0.5;
  position: fixed;
  top: 5px;
  right: 5px;
  width: 48px;
  height: 48px;
  font-size: 36px;
  border-radius: 40px;
  padding-top: 6px;
  color: #fff; }

.target-div {
  background-color: #686868; }
  @media (min-width: 576px) {
    .target-div {
      background-color: #f8a8ae; } }
  @media (min-width: 768px) {
    .target-div {
      background-color: #ebc36e; } }
  @media (min-width: 992px) {
    .target-div {
      background-color: #d2d45f; } }
  @media (min-width: 1200px) {
    .target-div {
      background-color: #58f16c; } }
  @media (min-width: 1400px) {
    .target-div {
      background-color: #36b5f5; } }

.bedside-card2 .patient-info {
  height: 224px; }
  .bedside-card2 .patient-info > div:nth-child(1) {
    height: 95%;
    border-radius: 10px; }
    .bedside-card2 .patient-info > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
      background-color: #fff;
      border-radius: 10px 0 0 0;
      border-right: 1px solid #f3f3f3;
      border-bottom: 1px solid #f3f3f3; }
    .bedside-card2 .patient-info > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
      background-color: #fff;
      border-radius: 0 10px 0 0;
      border-left: 1px solid #f3f3f3;
      border-bottom: 1px solid #f3f3f3; }
    .bedside-card2 .patient-info > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) {
      background-color: #fff;
      border-top: 1px solid #f3f3f3;
      border-bottom: 1px solid #f3f3f3; }
    .bedside-card2 .patient-info > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) {
      background-color: #fff;
      border-radius: 0 0 0 10px;
      border-top: 1px solid #f3f3f3;
      border-right: 1px solid #f3f3f3; }
    .bedside-card2 .patient-info > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) {
      background-color: #fff;
      border-top: 1px solid #f3f3f3;
      border-left: 1px solid #f3f3f3;
      border-right: 1px solid #f3f3f3; }
    .bedside-card2 .patient-info > div:nth-child(1) > div:nth-child(3) > div:nth-child(3) {
      background-color: #fff;
      border-radius: 0 0 10px 0;
      border-top: 1px solid #f3f3f3;
      border-left: 1px solid #f3f3f3; }
    .bedside-card2 .patient-info > div:nth-child(1) .patient {
      font-weight: bolder;
      font-size: 32px;
      line-height: 42.3px;
      text-align: center; }
    .bedside-card2 .patient-info > div:nth-child(1) .bed {
      font-weight: bolder;
      font-size: 32px;
      line-height: 42.3px;
      text-align: center; }
    .bedside-card2 .patient-info > div:nth-child(1) .diagnosis {
      font-weight: bolder;
      font-size: 32px;
      line-height: 42.3px;
      text-align: center; }
    .bedside-card2 .patient-info > div:nth-child(1) .Medical {
      font-weight: bolder;
      font-size: 32px;
      line-height: 42.3px;
      text-align: center; }
    .bedside-card2 .patient-info > div:nth-child(1) .label {
      color: #135fa1;
      font-weight: bolder; }

.bedside-card2 .things-to-note {
  height: 224px; }
  .bedside-card2 .things-to-note > div:nth-child(1) {
    background-color: #fff;
    height: 95%;
    border-radius: 10px; }
  .bedside-card2 .things-to-note .swiper {
    width: 100%;
    height: 0px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem; }
    .bedside-card2 .things-to-note .swiper .swiper-wrapper {
      width: 1; }
      .bedside-card2 .things-to-note .swiper .swiper-wrapper .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        height: calc((100% - 30px) / 2);
        display: flex;
        justify-content: center;
        align-items: center; }
        .bedside-card2 .things-to-note .swiper .swiper-wrapper .swiper-slide img {
          height: 100%; }

.bedside-card2 .use-app {
  height: 490px; }
  .bedside-card2 .use-app > div:nth-child(1) {
    background: #fff;
    height: 98%;
    border-radius: 10px; }
  .bedside-card2 .use-app i {
    font-size: 36px;
    color: #fff; }
    @media (min-width: 1200px) {
      .bedside-card2 .use-app i {
        font-size: 48px; } }
  .bedside-card2 .use-app .label {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    background-color: #ccc;
    color: #fff;
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (min-width: 1200px) {
      .bedside-card2 .use-app .label {
        width: 90px;
        height: 90px; } }
  .bedside-card2 .use-app .label-1 {
    background-color: #be6e6e; }
  .bedside-card2 .use-app .label-2 {
    background-color: #DBB272; }
  .bedside-card2 .use-app .label-3 {
    background-color: #DB9233; }
  .bedside-card2 .use-app .label-4 {
    background-color: #8f935d; }
  .bedside-card2 .use-app .label-5 {
    background-color: #80A480; }
  .bedside-card2 .use-app .label-6 {
    background-color: #A2BDD9; }
  .bedside-card2 .use-app .label-7 {
    background-color: #8BA3C7; }
  .bedside-card2 .use-app .label-8 {
    background-color: #36b5f5; }
  .bedside-card2 .use-app .label-9 {
    background-color: #135fa1; }
  .bedside-card2 .use-app .text {
    font-weight: bolder; }

.bedside-card2 .service-bell {
  background-color: red;
  opacity: 0.5;
  position: fixed;
  top: 5px;
  right: 5px;
  width: 48px;
  height: 48px;
  font-size: 36px;
  border-radius: 40px;
  padding-top: 6px;
  color: #fff;
  z-index: 1; }

.bedside-card2 .modal .modal-body {
  background: #F0F0F0; }

.bedside-card2 .modal .modal-footer {
  background: #F0F0F0; }

.bedside-card2 .modal .call-service {
  margin: 15vh 0px; }
  .bedside-card2 .modal .call-service h3 {
    font-weight: bolder; }
  .bedside-card2 .modal .call-service img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; }
  .bedside-card2 .modal .call-service img:active {
    transform: scale(1.2); }

.bedside-card2 .modal .special-notes h3 {
  font-weight: bolder; }

.bedside-card2 .modal .special-notes img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  margin-bottom: 1rem; }

.bedside-card2 .modal .in-hospital-services .label {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  background-color: #ccc;
  color: #fff;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center; }

.bedside-card2 .modal .in-hospital-services .label-1 {
  background: #be6e6e; }

.bedside-card2 .modal .in-hospital-services .label-2 {
  background: #DBB272; }

.bedside-card2 .modal .in-hospital-services .label-3 {
  background: #DB9233; }

.bedside-card2 .modal .in-hospital-services .label-4 {
  background: #80A480; }

.bedside-card2 .modal .in-hospital-services .label-5 {
  background: #68935D; }

.bedside-card2 .modal .in-hospital-services .label-6 {
  background: #8f935d; }

.bedside-card2 .modal .in-hospital-services .label-7 {
  background: #A2BDD9; }

.bedside-card2 .modal .in-hospital-services .label-8 {
  background: #8BA3C7; }

.bedside-card2 .modal .in-hospital-services .label-9 {
  background: #36b5f5; }

.bedside-card2 .modal .in-hospital-services .label-10 {
  background: #135fa1; }

.bedside-card2 .modal .in-hospital-services .label-11 {
  background: #B69DC5; }

.bedside-card2 .modal .in-hospital-services .text {
  font-weight: bolder;
  margin-bottom: 40px; }

.bedside-card2 .modal .in-hospital-services i {
  font-size: 36px;
  color: #fff; }

.bedside-card2 .modal .personal-service .label {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  background-color: #ccc;
  color: #fff;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center; }

.bedside-card2 .modal .personal-service .label-1 {
  background: #FFBD9D; }

.bedside-card2 .modal .personal-service .label-2 {
  background: #FF5151; }

.bedside-card2 .modal .personal-service .label-3 {
  background: #D94600; }

.bedside-card2 .modal .personal-service .label-4 {
  background: #ebdb8a; }

.bedside-card2 .modal .personal-service .label-5 {
  background: #FFE153; }

.bedside-card2 .modal .personal-service .label-6 {
  background: #AE8F00; }

.bedside-card2 .modal .personal-service .label-7 {
  background: #109e61a1; }

.bedside-card2 .modal .personal-service .label-8 {
  background: #00DB00; }

.bedside-card2 .modal .personal-service .label-9 {
  background: #019858; }

.bedside-card2 .modal .personal-service .label-10 {
  background: #A2BDD9; }

.bedside-card2 .modal .personal-service .label-11 {
  background: #36b5f5; }

.bedside-card2 .modal .personal-service .label-12 {
  background: #135fa1; }

.bedside-card2 .modal .personal-service .label-13 {
  background: #B69DC5; }

.bedside-card2 .modal .personal-service .label-14 {
  background: #B15BFF; }

.bedside-card2 .modal .personal-service .label-15 {
  background: #6a02ccea; }

.bedside-card2 .modal .personal-service .text {
  font-weight: bolder;
  margin-bottom: 40px; }

.bedside-card2 .modal .personal-service i {
  font-size: 36px;
  color: #fff; }

.bedside-card2 .modal .life-info .label {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  background-color: #ccc;
  color: #fff;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center; }
  .bedside-card2 .modal .life-info .label img {
    width: 100%;
    border-radius: 10px; }

.bedside-card2 .modal .order-shopping .label {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 15px;
  width: 60px;
  height: 60px;
  background-color: #ccc;
  color: #fff;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center; }
  .bedside-card2 .modal .order-shopping .label img {
    width: 100%;
    border-radius: 10px; }

.bedside-card2 .modal .internet .label {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  background-color: #ccc;
  color: #fff;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center; }
  .bedside-card2 .modal .internet .label img {
    width: 100%;
    border-radius: 10px; }

.bedside-card2 .modal .game .label {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  background-color: #ccc;
  color: #fff;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center; }
  .bedside-card2 .modal .game .label img {
    width: 100%;
    border-radius: 10px; }

.bedside-card2 .modal .download .label {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  background-color: #ccc;
  color: #fff;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center; }
  .bedside-card2 .modal .download .label img {
    width: 100%;
    border-radius: 10px; }

.bedside-card2 .modal .operate .label {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  background-color: #ccc;
  color: #fff;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center; }

.bedside-card2 .modal .operate .label-1 {
  background: #36b5f5; }

.bedside-card2 .modal .operate .text {
  font-weight: bolder;
  margin-bottom: 40px; }

.bedside-card2 .modal .operate i {
  font-size: 36px;
  color: #fff; }

.bedside-card2 .modal .settings .label {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  background-color: #ccc;
  color: #fff;
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center; }

.bedside-card2 .modal .settings .label-1 {
  background: #36b5f5; }

.bedside-card2 .modal .settings .label-2 {
  background: #79cf63; }

.bedside-card2 .modal .settings .label-3 {
  background: #A2BDD9; }

.bedside-card2 .modal .settings .text {
  font-weight: bolder;
  margin-bottom: 40px; }

.bedside-card2 .modal .settings i {
  font-size: 36px;
  color: #fff; }

.bedside-card2 .modal-title {
  margin-left: auto; }

:root {
  --background-light: #EDEDEF;
  --text-light: #000000;
  --background-dark: #363537;
  --text-dark: #fafafa;
  --background-gray: #7c7c7c; }

* {
  transition: background-color 0.3s, color 0.3s; }

.ward-card-icu .basic-info {
  height: 27.5vh;
  padding: 0.5rem; }
  .ward-card-icu .basic-info > div:nth-child(1) {
    height: 100%;
    background-color: #fff;
    border-radius: 5px; }
    .ward-card-icu .basic-info > div:nth-child(1) .info {
      height: 19vh; }
      .ward-card-icu .basic-info > div:nth-child(1) .info .bed-no {
        font-size: 3.2rem;
        line-height: 1;
        margin-top: 0.5rem;
        font-weight: bolder; }
      .ward-card-icu .basic-info > div:nth-child(1) .info .dnr {
        display: inline-block;
        background-color: #05af05;
        width: 36px;
        height: 36px;
        border-radius: 50px;
        margin-left: 1.2rem; }
      .ward-card-icu .basic-info > div:nth-child(1) .info .name {
        font-size: 4.1rem;
        line-height: 1;
        margin-top: 0.5rem;
        font-weight: bolder;
        color: #3047C3; }
      .ward-card-icu .basic-info > div:nth-child(1) .info .container {
        display: flex;
        padding: 0; }
      .ward-card-icu .basic-info > div:nth-child(1) .info .item1 {
        width: 10%; }
      .ward-card-icu .basic-info > div:nth-child(1) .info .item2 {
        width: 18%; }
      .ward-card-icu .basic-info > div:nth-child(1) .info .label {
        font-weight: bolder;
        color: #3047C3; }
      .ward-card-icu .basic-info > div:nth-child(1) .info .text {
        font-weight: bolder;
        font-size: 1.85rem; }
      .ward-card-icu .basic-info > div:nth-child(1) .info .small {
        font-size: 1.2rem;
        margin-inline: 5px; }
    .ward-card-icu .basic-info > div:nth-child(1) .diagnosis {
      height: 6.2vh;
      font-size: 28px;
      font-weight: bolder; }
      .ward-card-icu .basic-info > div:nth-child(1) .diagnosis span {
        color: #3047C3; }

.ward-card-icu .catheter-info {
  height: 49vh;
  padding: 0 0.5rem 0.5rem 0.5rem; }
  .ward-card-icu .catheter-info > div:nth-child(1) {
    height: 100%;
    background-color: #fff;
    border-radius: 5px; }
    .ward-card-icu .catheter-info > div:nth-child(1) .swiper {
      width: 100%;
      height: 100%;
      margin-left: auto;
      margin-right: auto; }
    .ward-card-icu .catheter-info > div:nth-child(1) .swiper-slide {
      font-size: 18px;
      background: #b9d8e7;
      height: calc((100% - 5px) / 2) !important;
      border-radius: 7px;
      /* Center slide text vertically */
      color: #fff;
      padding-left: 5px; }
      .ward-card-icu .catheter-info > div:nth-child(1) .swiper-slide h3 {
        margin: 0;
        padding: 0;
        color: #000000;
        font-weight: bolder; }
      .ward-card-icu .catheter-info > div:nth-child(1) .swiper-slide p {
        margin: 0;
        padding: 0;
        font-weight: bolder;
        color: #ffffff; }
        .ward-card-icu .catheter-info > div:nth-child(1) .swiper-slide p .color {
          color: #0e64bb; }
    .ward-card-icu .catheter-info > div:nth-child(1) .swiper-pagination {
      text-align: end;
      color: white;
      padding-right: 0.8vw; }
    .ward-card-icu .catheter-info > div:nth-child(1) .swiper-pagination-background {
      display: inline-block;
      background-color: rgba(7, 170, 170, 0.705);
      width: 3.4vw;
      height: 3.5vh;
      border-radius: 7px;
      position: absolute;
      right: 0.35vw;
      bottom: 1vh;
      z-index: 1; }

.ward-card-icu .treatment-info {
  height: 49vh;
  padding: 0 0.5rem 0.5rem 0; }
  .ward-card-icu .treatment-info > div:nth-child(1) {
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    text-align: center; }
    .ward-card-icu .treatment-info > div:nth-child(1) img {
      height: 100%;
      margin: auto; }

.ward-card-icu .special-notes {
  height: 16vh;
  padding: 0 0.5rem 0.5rem 0.5rem; }
  .ward-card-icu .special-notes > div:nth-child(1) {
    height: 100%;
    background-color: #fff;
    border-radius: 5px; }
    .ward-card-icu .special-notes > div:nth-child(1) .swiper {
      width: 100%;
      height: 100%; }
    .ward-card-icu .special-notes > div:nth-child(1) .swiper-slide {
      text-align: center;
      font-size: 18px;
      border-radius: 10px; }
      .ward-card-icu .special-notes > div:nth-child(1) .swiper-slide h3 {
        margin: 0.5rem 0 0 0;
        padding: 0;
        font-size: 1.3rem;
        color: #fff; }
      .ward-card-icu .special-notes > div:nth-child(1) .swiper-slide img {
        display: block;
        width: 100%;
        height: 4.5rem;
        object-fit: fill; }
    .ward-card-icu .special-notes > div:nth-child(1) .swiper-pagination {
      text-align: end;
      color: white;
      padding-right: 0.8vw; }
    .ward-card-icu .special-notes > div:nth-child(1) .swiper-pagination-background {
      display: inline-block;
      background-color: rgba(7, 170, 170, 0.705);
      width: 4.75vw;
      height: 3.5vh;
      border-radius: 7px;
      position: absolute;
      right: 0.35vw;
      bottom: 1vh;
      z-index: 1; }

.ward-card-icu .marquee {
  height: 7.5vh;
  padding: 0 0.5rem 0.5rem 0.5rem; }

.ward-card-icu .marquee > div {
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden; }
  .ward-card-icu .marquee > div p {
    margin: 0;
    padding: 0;
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    animation: marquee 100s linear infinite;
    font-size: 2rem;
    font-weight: bolder; }

@keyframes marquee {
  from {
    transform: translateX(0%); }
  to {
    transform: translateX(-100%); } }

:root {
  --background-light: #EDEDEF;
  --text-light: #000000;
  --background-dark: #363537;
  --text-dark: #fafafa;
  --background-gray: #7c7c7c; }

.bg {
  background-color: #FEE3FF; }

.bis-board .logo {
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid black; }
  .bis-board .logo img {
    width: 9rem; }

.bis-board .room {
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-size: 7.5rem;
  font-weight: bolder;
  border-bottom: 1px solid black; }

.bis-board .bed {
  background-color: #FEE3FF;
  padding: 0.55rem 1.2rem 0 1.2rem; }
  .bis-board .bed .bed-number {
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px 0 0 10px;
    color: #D6879C;
    font-weight: bolder;
    font-size: 7rem; }
    .bis-board .bed .bed-number .bed-text {
      font-size: 2rem;
      padding: 3rem 0 0 1rem; }
  .bis-board .bed .medical-person {
    height: 15vh;
    background-color: #FDA7BE;
    color: #feedff;
    font-weight: bolder;
    font-size: 4rem; }
    .bis-board .bed .medical-person .doctor {
      height: 50%;
      padding-left: 5%; }
    .bis-board .bed .medical-person .nurse {
      height: 50%;
      padding-left: 5%; }
    .bis-board .bed .medical-person span {
      font-size: 2rem;
      padding-left: 9%; }
  .bis-board .bed .special-notes {
    height: 15vh;
    background-color: #D6879C;
    border-radius: 0 10px 10px 0; }
    .bis-board .bed .special-notes .note div {
      width: 48px;
      height: 48px;
      background-color: #e7e6e6;
      border-radius: 10px;
      margin-top: 9px;
      margin-left: -2px; }
      .bis-board .bed .special-notes .note div img {
        width: 100%; }
