@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    font-family: "Manrope", "Noto Sans HK", "sans-serif";
}
html {
    font-size: 14px;
}
html, body {
    height: 100%;
    padding: 0;
    margin: 0;
}
#root {
    height: 100%;
}
body[data-page="home"] {
    background-image: url('images/login-background.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
img {
    display: block;
}
.topbar {
    background-color: #edf1f3;
}
.sidebar-navigation .p-sidebar-header {
    background-color: #edf1f3;
}
.sidebar-navigation .p-sidebar-content {
    padding-left: 0;
    padding-right: 0;
}
.detail-dialog {
    width: calc(100vw - 100px);
    max-width: 1200px;
}
.item-number-container .field-input button {
    padding: 0.25rem 0;
    width: 2rem;
}
.item-number-container .field-input button span {
    font-size: 0.8rem;
}
.item-number-container .field-input input {
    padding: 0.25rem 0;
    color: #000;
}
.signature-pad-container {
    position: relative;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    background-color: #fafafa;
}
.signature-pad-container canvas {
    display: block;
}
.signature-pad-container .signature-pad-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}




.bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #188ec7 50%, #2fcdfa 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
}
.bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
}
.bg3 {
    animation-duration:5s;
}
@keyframes slide {
    0% {
      transform:translateX(-25%);
    }
    100% {
      transform:translateX(25%);
    }
}
  