* {
  font-smooth: always;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}
body {
  margin: 0;
  background-color: #eff3f6;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.body {
  margin: 0;
  background-color: #eff3f6;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
a {
  color: #666;
}
a:active,
a:visited,
a:focus {
  text-decoration: none;
}
a:hover {
  color: #666;
}
h1 {
  font-size: 1.25em;
  color: #354052;
  font-weight: 500;
}
h2 {
  font-size: 0.75em;
  margin: 0 0 0.5rem;
  color: #354052;
  font-weight: 500;
}
p {
  font-size: 14px;
  line-height: 24px;
}
article {
   /* margin: 0 auto;
   max-width: 650px; */
  padding: 10px;
}
select {
  cursor: pointer;
  background: white;
  border: 1px solid #bdbdbd;
  padding: 5px 10px;
  appearance: none;
}
.subtext {
  color: #7f8fa4;
  font-weight: 300;
}
.error {
  margin: 3px 0px;
  padding: 5px 5px;
  color: red;
}
button {
  align-items: center;
  background-color: #1976d2;
  border: 0;
  color: white;
  display: flex;
  padding: 5px 15px;
  transition: background-color 0.3s;
  cursor: pointer;
}

button.ant-modal-close:hover {
  background: none;
}
button:focus {
  outline: none;
}
.col {
  display: flex;
  flex-direction: column;
}
.row {
  display: flex;
  flex-direction: row;
}
.wrap {
  flex-wrap: wrap;
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}
.cursor-pointer {
  cursor: pointer;
}
.tr-valign-top {
  vertical-align: top;
}
.tr-valign-bottom {
  vertical-align: bottom;
}
.animated {
  tranisition: all 0.3s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;
  /* box-shadow: 0px 1px 2px rgba(255,255,255,0.75); */
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
/* 
#nprogress .peg {
    display: none;
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #29d,0 0 5px #29d;
    opacity: 1;
    -webkit-transform: rotate(3deg) translate(0px,-4px);
    -ms-transform: rotate(3deg) translate(0px,-4px);
    transform: rotate(3deg) translate(0px,-4px)
} */

/* #nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px
}

#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    border: solid 2px transparent;
    border-top-color: #29d;
    border-left-color: #29d;
    border-radius: 50%;
    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite
} */

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.flex-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
}

.flex-col {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}


.ant-drawer-content {
  /* height: 100%; */
  overflow-y: scroll;
}

.service-request-table-even-row {
  border: none;
  background-color: #FFFFFF;
}

.service-request-table-odd-row {
  border: none;
  background-color: #FFFFFF;
}