@charset "UTF-8";
@font-face {
  font-family: 'Font_Regular';
  src: url('/assets/fonts/Montserrat-Regular.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Font_Bold';
  src: url('/assets/fonts/Montserrat-Bold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Font_Light';
  src: url('/assets/fonts/Montserrat-Light.ttf') format('truetype');
  font-style: normal;
}
@font-face {
  font-family: 'Font_Medium';
  src: url('/assets/fonts/Montserrat-Medium.ttf') format('truetype');
  font-style: normal;
}
.splash-screen {
  /* background-color: #1496A7; */
  background-color: #366ccc;
}

.splash-screen-loader {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 150px;
  height: 150px;
}

.splash-screen-loader > div {
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 150px;
  height: 150px;
  -webkit-animation: splash-screen-anim 1s 0s linear infinite;
  animation: splash-screen-anim 1s 0s linear infinite;
}

.splash-screen-loader > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

.splash-screen-loader > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes splash-screen-anim {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes splash-screen-anim {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

html {
  height: 100%;
}

body {
  font-family: "Font_Regular";
  font-size: 16px;
  color: #757575;
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin: 0;
  height: 100%;
  background-color: #ffffff;
}

.layout-wrapper .topbar {
  position: fixed;
  width: calc(100vw - 20px);
  left: 0;
  top: 0;
  color: #757575;
  height: 70px;
  padding: 0px;
  z-index: 100;
  background-color: #ffffff;
  margin-left: 10px;
  margin-right: 0.5%;
  margin-top: 10px;
  /* background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#366ccc),
    to(#366ccc)
  );
  background-image: -webkit-linear-gradient(left, #366ccc, #366ccc);
  background-image: -moz-linear-gradient(left, #366ccc, #366ccc);
  background-image: -ms-linear-gradient(left, #366ccc, #366ccc);
  background-image: -o-linear-gradient(left, #366ccc, #366ccc);
  background-image: linear-gradient(left, #366ccc, #366ccc); */
  filter: progid: DXImageTransform.Microsoft.gradient(start-colorStr='#366CCC', end-colorStr='#366CCC', gradientType='1');
}

body,
h1,
input,
textarea,
button,
.p-component,
.p-inputtext,
.button {
    font-family: "Font_Regular" !important;
}
