@font-face {
  font-family: "SourceSansPro";
  src: url(fonts/SourceSansPro-Light.ttf);
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SourceSansPro";
  src: url(fonts/SourceSansPro-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SourceSansPro";
  src: url(fonts/SourceSansPro-SemiBold.ttf);
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "SourceSansPro";
  src: url(fonts/SourceSansPro-Italic.ttf);
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "SourceSansPro";
  src: url(fonts/SourceSansPro-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "SourceSansPro";
  src: url(fonts/SourceSansPro-Black.ttf);
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "NotoSans";
  src: url(fonts/NotoSans-Light.ttf);
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "NotoSans";
  src: url(fonts/NotoSans-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "NotoSans";
  src: url(fonts/NotoSans-SemiBold.ttf);
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "NotoSans";
  src: url(fonts/NotoSans-Italic.ttf);
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "NotoSans";
  src: url(fonts/NotoSans-Medium.ttf);
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "NotoSans";
  src: url(fonts/NotoSans-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "NotoSans";
  src: url(fonts/NotoSans-Black.ttf);
  font-weight: 900;
  font-style: normal;
}

body {
  box-sizing: border-box;
  font-family: "SourceSansPro", sans-serif !important;
  overflow: hidden;
}

html {
  font-size: 14px !important;
}

.border-left {
  border-left: 1px solid #4d4d4d;
}

:focus-visible {
  outline: unset;
}

.k-input-solid.k-focus,
.k-input-solid:focus,
.k-button-solid-base.k-focus,
.k-button-solid-base:focus {
  box-shadow: unset;
}

.container-fluid {
  padding: 25px 1.5rem 6rem 1.5rem !important;
}

.btn-blue-transparent {
  height: 34px;
  padding: 7px 17px;
  border: solid 1px #59A9F2;
  color: #59A9F2;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  min-width: 12rem;
}

.k-picker-solid {
  height: 34px;
}

button:focus {
  outline: unset;
}

@media screen and (min-width: 1400px) {
  html {
      font-size: 16px !important;
  }
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff !important;
}

.loader-div {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  z-index: 999999999;
  opacity: 0.9;
  justify-content: center;
  background-color: #fff;
  align-items: center;
}

.loader {
  position: relative;
  width: 75px;
  height: 100px;
}

.loader__bar {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 50%;
  background: #0066ff;
  transform-origin: center bottom;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.loader__bar:nth-child(1) {
  left: 0px;
  transform: scale(1, 0.2);
  animation: barUp1 4s infinite;
}

.loader__bar:nth-child(2) {
  left: 15px;
  transform: scale(1, 0.4);
  animation: barUp2 4s infinite;
}

.loader__bar:nth-child(3) {
  left: 30px;
  transform: scale(1, 0.6);
  animation: barUp3 4s infinite;
}

.loader__bar:nth-child(4) {
  left: 45px;
  transform: scale(1, 0.8);
  animation: barUp4 4s infinite;
}

.loader__bar:nth-child(5) {
  left: 60px;
  transform: scale(1, 1);
  animation: barUp5 4s infinite;
}

.loader__ball {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #0066ff;
  border-radius: 50%;
  animation: ball 4s infinite;
}

@keyframes ball {
  0% {
      transform: translate(0, 0);
  }

  5% {
      transform: translate(8px, -14px);
  }

  10% {
      transform: translate(15px, -10px);
  }

  17% {
      transform: translate(23px, -24px);
  }

  20% {
      transform: translate(30px, -20px);
  }

  27% {
      transform: translate(38px, -34px);
  }

  30% {
      transform: translate(45px, -30px);
  }

  37% {
      transform: translate(53px, -44px);
  }

  40% {
      transform: translate(60px, -40px);
  }

  50% {
      transform: translate(60px, 0);
  }

  57% {
      transform: translate(53px, -14px);
  }

  60% {
      transform: translate(45px, -10px);
  }

  67% {
      transform: translate(37px, -24px);
  }

  70% {
      transform: translate(30px, -20px);
  }

  77% {
      transform: translate(22px, -34px);
  }

  80% {
      transform: translate(15px, -30px);
  }

  87% {
      transform: translate(7px, -44px);
  }

  90% {
      transform: translate(0, -40px);
  }

  100% {
      transform: translate(0, 0);
  }
}

@keyframes barUp1 {
  0% {
      transform: scale(1, 0.2);
  }

  40% {
      transform: scale(1, 0.2);
  }

  50% {
      transform: scale(1, 1);
  }

  90% {
      transform: scale(1, 1);
  }

  100% {
      transform: scale(1, 0.2);
  }
}

@keyframes barUp2 {
  0% {
      transform: scale(1, 0.4);
  }

  40% {
      transform: scale(1, 0.4);
  }

  50% {
      transform: scale(1, 0.8);
  }

  90% {
      transform: scale(1, 0.8);
  }

  100% {
      transform: scale(1, 0.4);
  }
}

@keyframes barUp3 {
  0% {
      transform: scale(1, 0.6);
  }

  100% {
      transform: scale(1, 0.6);
  }
}

@keyframes barUp4 {
  0% {
      transform: scale(1, 0.8);
  }

  40% {
      transform: scale(1, 0.8);
  }

  50% {
      transform: scale(1, 0.4);
  }

  90% {
      transform: scale(1, 0.4);
  }

  100% {
      transform: scale(1, 0.8);
  }
}

@keyframes barUp5 {
  0% {
      transform: scale(1, 1);
  }

  40% {
      transform: scale(1, 1);
  }

  50% {
      transform: scale(1, 0.2);
  }

  90% {
      transform: scale(1, 0.2);
  }

  100% {
      transform: scale(1, 1);
  }
}

.mw-30 {
  min-width: 30rem !important;
}

.navbar {
  font-family: "NotoSans", sans-serif;
  height: 61px;
  padding: 1rem 0;
  background-color: #fff !important;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 67, 101, 0.08);
  -moz-box-shadow: 0 4px 12px 0 rgba(0, 67, 101, 0.08);
  box-shadow: 0 4px 12px 0 rgba(0, 67, 101, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.navbar .navbar-brand img:first-child {
  width: 100px;
  border-right: 1px solid #4d4d4d;
  padding-right: 10px;
}

.navbar .navbar-brand img:last-child {
  width: 75px;
  padding-left: 5px;
}

.navbar .form-control {
  height: 2.572rem;
  padding: 9px;
  border: solid 1px #E6E6E6;
  color: #999;
  border-radius: 0;
  border-left: unset;
  border-right: unset;
}

.navbar .input-group-text {
  background-color: transparent;
  border-radius: 0;
  border: solid 1px #e6e6e6;
}

.navbar input.form-control:focus {
  box-shadow: unset;
  border-top: solid 1px #E6E6E6;
  border-bottom: solid 1px #E6E6E6;
}

.navbar .k-i-user::before {
  content: '';
  background: url("../img/svg/time-calendar.svg");
}

.navbar .k-icon {
  margin-top: -3px;
  margin-left: -3px;
  font-size: large !important;
}

.navbar .k-i-calendar {
  margin-top: 0px;
}

.navbar .navbar-toggler {
  border-color: transparent;
  width: 6rem;
}

.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: unset;
}

.navbar .navbar-toggler .dropdown-toggle,
.navbar .navbar-toggler .btn-secondary:not(:disabled):not(.disabled):active {
  background-color: transparent;
  border: unset;
}

.navbar .navbar-toggler .btn-secondary:not(:disabled):not(.disabled):active:focus {
  box-shadow: unset;
}

.navbar .navbar-toggler .dropdown-toggle::after {
  display: none;
}

.navbar .k-form-field .k-label {
  width: 29% !important;
}

.dateTimeContainer {
  padding: 4px 6px;
  border: solid 1px rgba(187, 199, 219, 0.56);
  margin-top: 6px;
  height: 2.572rem;
  margin: 0 2rem;
}

.dateTimeContainer span {
  color: #1A1A1A;
  font-size: 1rem;
  font-family: "NotoSans", sans-serif;
  padding-left: 0.3rem;
}

.dateTimeContainer .col {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.dateTimeContainer .col:first-child {
  border-right: 1px solid #d9e0eb;
}

.dateTimeContainer .k-input-solid {
  border-color: transparent;
  width: 120px;
}

.dateTimeContainer .k-input-md .k-input-inner {
  padding: 0;
  text-align: left;
  font-size: 1rem;
  color: #1A1A1A;
  font-family: "NotoSans", sans-serif;
}

.dateTimeContainer .k-button-md.k-icon-button>.k-button-icon {
  color: #59A9F2;
}

.mobile-nav {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9;
  display: none;
  height: 100vh;
  left: 0;
}

.mobile-nav .dateTimeContainer {
  border: unset;
  margin: 0;
  padding: 0.8rem 0.2rem;
  height: 50px;
  align-items: center;
  border-bottom: 1px solid #E6E6E6;
}

.mobile-nav .profile-data div.align-items-stretch {
  padding: 1.5rem 1rem 0px 1rem;
  background-color: #eef6fe;
}

.mobile-nav .profile-data .span2 {
  width: 15%;
}

.mobile-nav .profile-data .span10 {
  width: 85%;
}

.mobile-nav .k-picker.k-dropdownlist {
  width: 100%;
}

.mobile-nav .dropdown-item {
  padding: 0.65rem 1rem;
}

.mobile-nav .profile-data,
.mobile-nav .notification {
  display: none;
}

.mobile-nav .notification ul {
  list-style: none;
  padding: 0;
}

.mobile-nav .notification ul .card {
  box-shadow: unset;
  padding: 0;
}

.mobile-nav .notification ul li {
  padding: 1rem;
}

.mobile-nav .notification ul li:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}

.mobile-nav .notification ul li p {
  margin-bottom: 0;
}

#iconCssButton_buttonmenu {
  min-width: 12.9rem;
}

.menu .menu-icon {
  padding: 0.5rem 1rem 0.1rem 1rem;
  height: 8rem;
  width: 8rem;
}

.menu .menu-icon svg {
  width: 2.8rem;
}

.menu .menu-icon p {
  color: #464b53 !important;
  font-size: 1rem;
}

.menu .menu-icon:hover {
  background-color: #eef6fe;
  cursor: pointer;
}

.menu .menu-icon:hover svg path {
  stroke: #59a9f2;
}

.menu .menu-icon:hover svg rect {
  stroke: #59a9f2;
}

.navbar-toggler.x {
  border: none;
}

.navbar-toggler.x:focus {
  outline: none;
}

.navbar-toggler.x .icon-bar {
  width: 22px;
  display: block;
  height: 2px;
  background-color: #000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.navbar-toggler.x .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.navbar-toggler.x .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggler.x .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.navbar-toggler.x .icon-bar+.icon-bar {
  margin-top: 4px;
}

.navbar-toggler.x[aria-expanded="true"] .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}

.navbar-toggler.x[aria-expanded="true"] .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler.x[aria-expanded="true"] .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}

a.navbar-brand {
  width: 20%;
}

.navbar-collapse {
  justify-content: flex-end;
}

.navbar-collapse .navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-collapse .navbar-nav li .nav-link::after {
  border: 0;
}

.navbar-collapse .navbar-nav li .notification {
  display: block;
}

.navbar-collapse .navbar-nav li .dropdown-menu {
  min-width: 15rem;
  padding: 1rem 0;
}

.navbar-collapse .navbar-nav li .dropdown-menu div p {
  color: #999999;
  font-family: "SourceSansPro", sans-serif;
}

.navbar-collapse .navbar-nav li .dropdown-menu div:nth-child(2) .span2,
.navbar-collapse .navbar-nav li .dropdown-menu div:nth-child(3) .span2 {
  width: 25%;
}

.navbar-collapse .navbar-nav li .dropdown-menu div:nth-child(2) .span10,
.navbar-collapse .navbar-nav li .dropdown-menu div:nth-child(3) .span10 {
  width: 75%;
}

.navbar-collapse .navbar-nav li .dropdown-menu div .k-picker.k-dropdownlist {
  width: 100%;
}

.navbar-collapse .navbar-nav li .dropdown-menu label {
  color: #000;
  margin: 0;
}

.navbar-collapse .navbar-nav li .dropdown-menu .k-input-value-text {
  font-size: 1rem;
  color: #4D4D4D;
}

.navbar-collapse .navbar-nav li .dropdown-menu div.align-items-stretch {
  padding: 0 1rem;
}

.navbar-collapse .navbar-nav li .dropdown-menu .dropdown-item {
  color: #000;
  padding: 0.6rem 1rem;
}

.navbar-collapse .navbar-nav li .dropdown-menu.profile-dropdown {
  min-width: 18rem;
  padding: 1.5rem 0;
}

.navbar-collapse .navbar-nav li hr {
  width: 1px;
  height: 20px;
  display: inline-block;
  background-color: #999999;
  margin-bottom: 0;
}

.navbar-collapse .navbar-nav li.top {
  position: absolute;
  top: -13px;
  right: 8%;
}

.notification+.dropdown-menu {
  min-width: 22rem !important;
  max-height: 25rem;
  overflow: auto;
}

.notification+.dropdown-menu ul {
  list-style: none;
  padding: 0;
}

.notification+.dropdown-menu ul li {
  padding: 0.5rem 1rem;
}

.notification+.dropdown-menu ul li:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}

.notification+.dropdown-menu ul li p {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  font-family: "SourceSansPro", sans-serif;
  color: #202427;
}

.notification+.dropdown-menu ul li p:not(.timer) {
  font-weight: 500;
}

.notification+.dropdown-menu ul li p.timer {
  color: #4D4D4D;
}

.notification+.dropdown-menu ul li .card {
  box-shadow: none;
  padding: 0;
}

.profile-avatar {
  width: 30px;
  height: 30px;
  padding: 0.3rem 0.5rem;
  background-color: #0066ff;
  color: #fff;
  margin-left: 1rem;
  display: inline-block;
  font-weight: 600;
  text-align: center;
}

.k-picker-solid.k-focus,
.k-picker-solid:focus {
  box-shadow: unset;
}

.navbar-collapse.show {
  background-color: #fff;
  z-index: 9;
  box-shadow: 0 5px 20px -1px rgba(0, 67, 101, 0.08);
}

.navbar-collapse.show .navbar-nav {
  margin-left: 0;
  padding: 1rem 1rem;
}

.navbar-collapse.show .navbar-nav li .nav-link {
  padding: 1.3rem 0rem;
}

.navbar-collapse.show .navbar-nav li .notification {
  padding-left: 0;
}

.navbar-collapse.show .dateTimeContainer {
  margin: 0;
}

.k-input-solid {
  border-radius: 0 !important;
  font-size: 1rem;
}

.k-button-solid-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 17px;
  box-shadow: 0 1px 5px 0 #0000001f, 0 2px 2px 0 #00000024, 0 3px 1px -2px #00000033;
  border: solid 1px #203764;
  background-color: #203764;
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

#new-file-btn.dropdown-menu {
  min-width: 32.5rem;
  box-shadow: 0 3px 6px 0 #00000029;
  padding: 15px 20px 20px 15px;
  margin-top: 8px;
  top: -0.5rem;
  border-radius: 0;
}

#new-file-btn.dropdown-menu form label {
  font-family: "SourceSansPro", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  align-items: flex-start;
  text-align: left;
}

#new-file-btn.dropdown-menu form .k-label {
  width: 30% !important;
}

#new-file-btn.dropdown-menu .k-form-clear {
  display: none;
}

.expandContainer {
  cursor: pointer;
}

li.dropstart {
  position: relative;
}

.dropstart ul.dropdown-menu {
  left: -100%;
  margin: -0.25rem -1.35rem;
  top: 0;
}

@media screen and (max-width: 992px) {
  body .container-fluid {
      padding: 4.285rem 1rem 4rem 1rem !important;
  }

  .navbar {
      box-shadow: none;
      align-content: normal;
      padding: 0.2rem 0;
  }

  .navbar .navbar-brand {
      padding-left: 1rem;
  }

  .navbar .custom-mobile-nav {
      display: none;
  }

  .navbar .navbar-nav li:first-child {
      width: 100% !important;
  }

  .navbar .navbar-nav li:first-child .input-group-text.k-cursor-pointer img {
      display: none;
  }
}

.small-header {
  font-family: "SourceSansPro", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.k-menu-popup {
  margin-left: -0.5rem !important;
  margin-top: 0.5rem;
}

.footer {
  width: 100%;
  background-color: #e5f0ff;
  border: solid 1px #f1f3f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "NotoSans", sans-serif;
  margin-top: 1.5rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0.1rem 1rem;
  z-index: 9;
}

.footer ul {
  margin-bottom: 0rem;
}

.footer ul li a {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.43;
  color: #0066ff;
  text-transform: uppercase;
}

.footer p {
  font-size: 11px;
  margin-bottom: 0;
  color: #767f8a;
}

html {
  height: 100%;
}

body {
  height: 100%;
}

a.custom-logo {
  position: absolute;
  z-index: 10;
  margin-left: 30px;
  margin-top: 30px;
}

.custom-login-bg {
  background-image: url(https://uat-atomicdesign.rrd.com/go-it/m3/img/png/login_bg.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  position: relative;
}

.c-he-100 {
  height: 100%;
}

div#scrollView {
  height: 100%;
  border-width: 0;
}

.k-widget * {
  box-sizing: border-box;
}

div.k-scrollview .k-scrollview-wrap {
  height: 100% !important;
  transform: translate3d(0px, 0px, 0px) scale(1) !important;
}

div.k-scrollview .k-scrollview-wrap.transitioneffect {
  transition: all 0.2s;
}

div.k-scrollview .k-scrollview-wrap .scroll_slider_0 {
  transform: translate3d(0px, 0px, 0px) !important;
}

div.k-scrollview .k-scrollview-wrap .scroll_slider_1 {
  transform: translate3d(-100%, 0px, 0px) !important;
}

div.k-scrollview .k-scrollview-wrap .scroll_slider_1 {
  transform: translate3d(-100%, 0px, 0px) !important;
}

div.k-scrollview .k-scrollview-wrap .scroll_slider_2 {
  transform: translate3d(-200%, 0px, 0px) !important;
}

div.k-scrollview .k-scrollview-wrap .scroll_slider_3 {
  transform: translate3d(-300%, 0px, 0px) !important;
}

.custom-login-txt h1 {
  color: #fff;
  font-family: "SourceSansPro", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}

.custom-login-txt p {
  color: #fff;
  white-space: initial;
  font-family: "NotoSans", sans-serif;
  font-size: 1.2rem;
  text-transform: capitalize;
}

.custom-login-txt span {
  color: #fff;
  font-size: 1.01rem;
  font-family: "NotoSans", sans-serif;
}

a.k-scrollview-prev {
  display: none !important;
}

a.k-scrollview-next {
  display: none !important;
}

.custom-login-txt {
  width: 77%;
  height: 106px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.custom-login-footer {
  position: absolute;
  bottom: 0;
  right: 30px;
  text-align: right;
  z-index: 10;
}

.custom-login-footer ul {
  margin: 0 0 5px 0;
  padding: 0;
  display: flex;
}

.custom-login-footer ul li {
  list-style: none;
}

.custom-login-footer ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-family: "NotoSans", sans-serif;
  border-right: 1px solid #fff;
  height: 18px;
  line-height: 15px;
  padding: 0px 7px 0 0;
  margin: 0 7px 0 0;
  font-size: 0.9rem;
}

.custom-login-footer ul li:last-child a {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.custom-login-footer p {
  color: #99c2ff;
  font-size: 0.8rem;
  font-family: "NotoSans", sans-serif;
  margin-bottom: 22px;
}

.custom-login-form {
  padding: 0 30px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.custom-login-form label {
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  font-family: "SourceSansPro", sans-serif;
}

.custom-login-form h3 {
  font-family: "SourceSansPro", sans-serif;
  margin: 10px 0 30px 0;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}

/*commom class for input*/
input.form-control {
  border-color: #8c8c8c;
  border-radius: 0;
  font-family: "NotoSans", sans-serif;
}

input.form-control:focus {
  box-shadow: 0 0 2px #0000004d;
  border-color: #8c8c8c;
}

.custom-login-btn.btn {
  background-color: #f1f3f4;
  color: #a8adb4;
  border-radius: 0;
  padding: 7px 17px;
  font-weight: 500;
  width: 100%;
  font-family: "NotoSans", sans-serif;
  text-transform: uppercase;
}

.custom-login-btn.btn:focus {
  box-shadow: none;
}

p.custom-phone-txt {
  color: #4d4d4d;
  margin-bottom: 10px;
  font-weight: bold;
}

span.custom-phone-desc {
  display: block;
  width: 79%;
  color: #4d4d4d;
  font-weight: 500;
}

.custom-slider {
  height: 100%;
}

.custom-slider .owl-carousel {
  height: 100%;
}

.custom-slider .owl-carousel .owl-stage-outer {
  height: 100%;
}

.custom-slider .owl-stage {
  height: 100%;
}

.custom-slider .owl-item {
  height: 100%;
}

.custom-slider .owl-item .item {
  height: 100%;
}

.owl-stage .owl-item:first-child .item {
  background-image: url(https://uat-atomicdesign.rrd.com/go-it/m3/img/png/login_bg.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.owl-stage .owl-item:nth-child(2) {
  background-color: #59a9f2;
}

.owl-stage .owl-item:nth-child(3) {
  background-color: #59a9f2;
}

.owl-stage .owl-item:nth-child(4) {
  background-color: #59a9f2;
}

.custom-slider .owl-dots {
  position: absolute;
  z-index: 10;
  bottom: 25px;
  left: 30px;
}

.custom-slider .owl-dots button.owl-dot span {
  width: 30px;
  height: 4px;
  display: block;
  background-color: #8bc9f7;
  margin-right: 10px;
}

.k-scrollview .k-scrollview-nav {
  display: flex;
  justify-content: start;
  overflow-x: hidden;
}

.k-scrollview .k-scrollview-nav>.k-link {
  width: 30px;
  height: 4px;
  display: block;
  background-color: #4d94ff;
  margin-right: 10px;
  border-radius: 0;
}

.k-scrollview .k-scrollview-nav>.k-link[aria-pressed="true"] {
  background-color: #fff;
}

.k-scrollview .k-scrollview-nav>.k-link.k-primary {
  background-color: #fff !important;
}

.k-scrollview .k-scrollview-nav>.k-link:nth-child(5) {
  display: none;
}

.k-scrollview .k-scrollview-nav>.k-link {
  box-shadow: none;
}

.custom-slider-text {
  padding: 30px 30px 30px 0px;
  position: relative;
  margin-top: 80px;
}

.custom-slider-text h1 {
  color: #fff;
  font-family: "SourceSansPro", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}

.custom-slider-text>p {
  color: #fff;
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: 55px;
  white-space: initial;
  font-family: "NotoSans", sans-serif;
  margin-top: 10px;
  text-transform: capitalize;
}

.custom-slider-content {
  background-color: #4d94ff;
  height: 100%;
}

.slider-pa1 {
  padding: 33px 25px 26px 25px;
}

.slider-pa2 {
  padding: 20px;
}

.custom-slider-content img {
  width: 45px !important;
  display: inline-block !important;
}

.custom-slider-content p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
  margin-top: 6px;
  font-family: "SourceSansPro", sans-serif;
}

.custom-slider-content span {
  color: #f1f3f4;
  white-space: pre-wrap;
  font-family: "NotoSans", sans-serif;
}

ul.custom-login-list {
  margin: 0;
  padding: 0;
}

.custom-login-list li {
  list-style: none;
  margin-top: 10px;
  display: flex;
}

.custom-login-list li img {
  width: 35px !important;
}

.custom-login-list li span {
  margin-left: 12px;
}

a.custom-forgot-text {
  color: #3385ff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: "NotoSans", sans-serif;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 25px;
  display: block;
  text-align: center;
}

label.custom-remember-text {
  color: #4d4d4d;
}

.container-fluid.c-he-100 {
  padding-right: 15px !important;
  padding-left: 15px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.custom-slider .owl-dots button.owl-dot.active span {
  background-color: #fff !important;
}

.custom-login-checkbox {
  border-radius: 0 !important;
  border-color: #999999 !important;
}

.custom-input-group span.input-group-text {
  background-color: #fff;
  border-radius: 0;
  border-color: #8c8c8c;
  cursor: pointer;
  border-left: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.custom-input-group input.form-control {
  border-right: 0;
}

input.custom-form-check-input.form-check-input {
  border-radius: 0;
  border-color: #999;
}

.item {
  width: 100% !important;
  height: 100% !important;
  background-color: #59a9f2;
}

.custom-mobile-banner {
  display: none;
}

.custom-error-border {
  border-color: #f35838 !important;
}

.custom-focus-border {
  border-color: #0066ff !important;
}

span.username-conatiner,
span.password-conatiner {
  position: absolute;
  color: #f35838;
  top: 0;
  right: 0;
}

.login-btn-bg {
  background-color: #0066ff !important;
  color: #fff !important;
}

.custom-login-form form .mb-3 {
  position: relative;
}

span#label_ErrorMsg {
  color: #f35838;
  display: block;
  text-align: center;
  margin-top: 10px;
}

div.loginmodal {
  position: absolute;
  width: 490px;
  height: 190px;
  top: 0;
  bottom: 0;
  left: -10%;
  right: 0;
  margin: auto;
}

.loginmodal .alert {
  background: #fff;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0;
}

.job-create .modal-header {
  padding: 10px 0 0 0 !important;
  border: 0 !important;
}

input#button_LoginAs {
  border-radius: 0;
  padding: 3px 10px !important;
  margin-left: 8px;
}

.loginmodal .modal-footer {
  border: 0;
  padding-top: 0;
}

.custom-scroll-item1 {
  transform: translate3d(0px, 0px, 0px) scale(1);
}

.custom-scroll-item2 {
  transform: translate3d(-100%, 0px, 0px) scale(1) !important;
}

.custom-scroll-item3 {
  transform: translate3d(-200%, 0px, 0px) scale(1) !important;
}

.custom-scroll-item4 {
  transform: translate3d(-300%, 0px, 0px) scale(1) !important;
}

.custom-height150 {
  height: 170px;
}

@media only screen and (max-width: 1100px) {
  .custom-slider-text {
      padding: 0;
  }

  .custom-slider-text>p {
      margin-bottom: 20px;
  }

  .custom-height150 {
      height: auto;
  }

  .custom-slider-text .col-md-6.mb-3 {
      display: flex;
  }

  .custom-login-txt h1 {
      white-space: normal;
  }
}

@media only screen and (max-width: 1024px) {

  .custom-slider .k-scrollview .k-scrollview-nav-wrap,
  .custom-slider .kendo-scrollview.k-scrollview-wrap kendo-scrollview-pager {
      bottom: 60px !important;
  }
}

@media only screen and (max-width: 900px) {
  .custom-slider-text {
      margin-top: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .custom-login-txt1 {
    position: relative;
    top: 58%;
    transform: translate(0, -50%);
}
  .custom-mobile-banner h1 {
      text-transform: capitalize;
      font-size: 20px;
  }

  .custom-mobile-banner p {
      text-transform: capitalize;
  }

  .custom-height150 {
      height: auto;
  }

  .c-he-100>.col-md-4 {
      flex: 0 0 100%;
      max-width: 100%;
  }

  .c-he-100 .col-md-8 {
      max-width: 100%;
      flex: 0 0 100%;
      order: 13;
  }

  a.custom-mobile-logo {
    position: absolute;
    z-index: 3;
    top: 20px;
  }

  a.custom-mobile-logo+img {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 32px;
  }

  .custom-mobile-banner {
      display: block;
      background-image: url(https://uat-atomicdesign.rrd.com/go-it/m3/img/png/login_bg.png);
      background-position: 0 0;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      left: 0;
      padding: 44px 30px;
      z-index: 1;
      color: #fff;
      height: 235px;
        right: 0;
        margin-left: -30px;
        margin-right: -30px;
        top: 0;
  }

  .custom-slider .owl-carousel {
      display: block !important;
  }

  .custom-slider .custom-slider-text {
      transform: translate(0);
      top: 0;
      padding-bottom: 0;
  }

  a.custom-logo {
      display: none;
  }

  .custom-login-txt h1 {
      color: #000;
  }

  .custom-login-txt p {
      color: #000;
  }

  .custom-login-txt {
      position: static;
      width: auto;
      box-shadow: 0 5px 20px -1px #0066ff14;
      padding: 8px;
  }

  .custom-login-bg {
      background-image: none;
  }

  .custom-slider-text h1 {
      color: #000;
      padding: 0 30px;
  }

  .custom-slider-text>p {
      color: #000;
      margin-bottom: 10px;
      padding: 0 30px;
  }

  .custom-slider-content p {
      color: #000;
  }

  .custom-slider-content span {
      color: #000;
  }

  .premier-bpm-olution-svg path {
      stroke: #000;
  }

  .product-guide-svg rect {
      stroke: #000;
  }

  .premier-bpm-olution-svg circle {
      stroke: #000;
  }

  .agile-svg path {
      fill: #000;
  }

  .premier-bpm-olution-svg rect {
      stroke: #000;
  }

  .Secure-svg path {
      stroke: #000;
  }

  .product-guide-svg path {
      stroke: #000;
  }

  .phone-svg circle {
      stroke: #000;
  }

  .phone-svg path {
      stroke: #000;
  }

  .support-svg path {
      stroke: #000;
  }

  .home-svg rect {
      stroke: #000;
  }

  .c-he-100 {
      height: auto;
  }

  .home-svg path {
      stroke: #000;
  }

  .home-svg circle {
      stroke: #000;
  }

  .mail-svg path {
      stroke: #000;
  }

  .mail-svg rect {
      stroke: #000;
  }

  .mail-svg circle {
      stroke: #000;
  }

  .custom-login-form {
      padding: 0 15px;
      top: 0;
      transform: translate(0);
  }

  .custom-login-form h3 {
    margin: 0;
    visibility: hidden;
  }

  p.custom-phone-txt {
      text-align: left !important;
      margin-top: 8px;
      margin-bottom: 3px;
  }

  span.custom-phone-desc {
      text-align: left !important;
  }

  .custom-slider-content.text-center {
      background-color: #fff;
      text-align: left !important;
      box-shadow: 0 5px 20px -1px #0066ff14;
      padding: 15px;
  }

  .custom-slider-content {
      width: 100%;
      margin: 0 30px;
      padding: 15px 10px !important;
  }

  .custom-slider-content {
      background-color: #fff;
      text-align: left !important;
      box-shadow: 0 5px 20px -1px #0066ff14;
      padding: 15px;
  }

  .custom-slider {
      height: auto;
      display: none;
  }

  .custom-login-footer {
      position: static;
      text-align: left;
  }

  .custom-login-footer ul {
      flex-direction: column;
      position: relative;
      padding: 0 30px;
      margin-top: 13px;
  }

  .custom-login-footer ul li a {
      color: #0066ff;
      font-weight: 500;
      text-transform: capitalize;
      margin-bottom: 3px;
      padding-right: 0;
      margin-right: 0;
  }

  .custom-login-footer ul li:last-child {
      position: absolute;
      right: 30px;
      top: 30px;
  }

  .custom-login-footer ul li:nth-child(4) {
      position: absolute;
      right: 30px;
  }

  .custom-login-footer p {
      color: #8d979f;
      padding: 0 30px;
      text-align: center;
      font-size: 1rem;
      margin-bottom: 0;
  }

  .item {
      background-color: transparent;
      padding: 0;
  }

  a.custom-mobile-logo img {
      width: 100%;
  }
  body{
    overflow: auto;
  }
}

@media only screen and (max-width: 360px) {
  .custom-mobile-banner {
      padding-top: 0;
      padding-bottom: 0;
  }

  .custom-login-txt1 {
      position: relative;
      top: 58%;
      transform: translate(0, -50%);
  }
}

footer.footer {
  display: none;
}

p.custom-loginsupport-text {
  display: flex;
  margin-top: 30px;
}

p.custom-loginsupport-text span:nth-child(2) {
  font-weight: bold;
  margin-top: 2px;
  margin-left: 5px;
}

.custom-slider .k-scrollview .k-scrollview-nav-wrap,
.custom-slider .kendo-scrollview.k-scrollview-wrap kendo-scrollview-pager {
  bottom: 23px;
}

.custom-slider-icon p {
  margin-left: 10px;
}

.custom-slider-content.slider-pa1 span,
.custom-slider-content.slider-pa1 span {
  display: block;
  margin-top: 10px;
}

.custom-login-list li svg.mail-svg {
  width: 53px;
  margin-top: 6px;
}

span.custom-learn-about-core {
  display: block;
  margin: 15px 0 20px 0px;
}

.custom-login-list li span a {
  color: #fff;
  text-decoration: underline;
}

.nav-tabs {
  font-family: "NotoSans", sans-serif;
  border-bottom: unset;
}

.nav-tabs .nav-item.show .nav-link {
  border-bottom: 2px solid #59A9F2;
}

.nav-tabs .nav-link.active {
  border: transparent;
  border-bottom: 2px solid #59A9F2;
  font-weight: 600;
}

.nav-tabs .nav-link {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.38;
}

.nav-tabs .nav-link:focus {
  border-color: #59A9F2;
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
}

.smallHeader {
  font-family: "SourceSansPro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1A1A1A;
}

.smallHeader a {
  font-size: 14px;
  padding-left: 5px;
  color: #59A9F2;
}

#sortable {
  list-style: none;
  padding: 10px 0;
}

#sortable .sortable {
  padding: 20px;
  box-shadow: 0 5px 20px -1px rgba(0, 67, 101, 0.08);
  background-color: #FFFFFF;
  min-height: 400px;
  margin: 10px 0;
}

#sortable .sortable.expandFull {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9;
  left: 0;
  top: 0;
  margin: 0;
}

label {
  color: #999999;
  padding-right: 1rem;
}

label span {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 5px;
}

label span.info {
  background-color: #0085FF;
}

label span.success {
  background-color: #7CCA62;
}

label span.warning {
  background-color: #F0A22E;
}

label span.danger {
  background-color: #F35838;
}

.card {
  padding: 15px;
  box-shadow: 0 5px 20px -1px rgba(0, 67, 101, 0.08);
  background-color: #FFFFFF;
  margin: 2px 0;
  border: unset;
}

.card .timer {
  font-size: 11px;
  color: #8d979f;
}

.card .timer span {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
}

.card .timer span.info {
  background-color: #0085FF;
}

.card .timer span.success {
  background-color: #7CCA62;
}

.card .timer span.warning {
  background-color: #F0A22E;
}

.card .timer span.danger {
  background-color: #F35838;
}

.card p {
  margin-bottom: 0.2rem;
}

.card p:nth-of-type(2) {
  color: #4D4D4D;
}

.card p:nth-of-type(3) {
  color: #1A1A1A;
}

.card .info {
  padding: 4px 8px;
  background-color: #d9dbdd;
  border-radius: 0;
  font-size: 12px !important;
  color: #616972;
  display: inline-block;
}

.card label {
  font-size: 11px;
}

.card label span {
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.card.statusCard {
  background-color: #fff;
}

.card.statusCard p {
  font-size: 16px;
  font-weight: 600;
}

.mediumHeader {
  font-size: 20px;
  color: #4D4D4D;
  font-weight: 600;
  text-transform: capitalize;
}

.shrinkContainer {
  cursor: pointer;
}

.k-tilelayout {
  background-color: transparent;
  padding: 20px 0 !important;
}

.k-tilelayout .k-card {
  box-shadow: 0 5px 20px -1px rgba(0, 67, 101, 0.08);
  background-color: #FFFFFF;
  border-radius: 0;
  border: unset;
}

.k-tilelayout .k-card .k-card-title {
  font-family: "SourceSansPro", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.k-tilelayout .k-card .k-card-title svg {
  float: right;
  cursor: pointer;
}

.k-tilelayout .k-card .k-card-header {
  border-color: transparent;
}

.k-tilelayout.non-editable .k-card {
  pointer-events: none;
}

.editView,
svg.reduce,
svg.expand {
  display: none;
}

@media screen and (min-width: 992px) {
  .dashboard .col-lg-9 {
      flex: 0 0 70%;
      max-width: 70%;
  }
}

@media screen and (min-width: 992px) {
  .dashboard .col-lg-3 {
      flex: 0 0 30%;
      max-width: 30%;
  }
}

.operatorDashboard .k-card .kendo-dropdown {
  margin: 0 1rem;
}

.operatorDashboard .k-card .k-card-body svg text {
  font-family: "NotoSans", sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}

span.k-picker.k-dropdownlist.selectWidget {
  width: 280px;
  max-width: 280px;
}

select.monthDorpdown,
select.selectWidget {
  display: none !important;
}

tr.k-filter-row {
  display: none;
}

.d-auto {
  display: unset;
}

li.k-item.k-menu-item.k-columns-item,
li.k-separator.k-menu-separator.k-item {
  display: none;
}

.gridCheckbox .form-check.dropdown-item {
  padding-left: 2rem;
}

form.k-filter-menu {
  width: 240px !important;
}

form.k-filter-menu .k-button-solid-primary {
  padding: 4px 13px;
}

.creatdropDown .k-icon:before {
  height: .8em;
}

span.k-multiselect.selectWidget {
  max-width: 400px;
}

@media screen and (max-width: 957px) {

  .scrollabletab,
  .rigthSideIcons {
      width: 100% !important;
  }

  .rigthSideIcons {
      margin-top: 1rem !important;
  }
}

#treeview .k-sprite {
  background-image: url("../img/png/coloricons-sprite.png");
}

#treeview .rootfolder {
  background-position: 0 0;
}

#treeview .folder {
  background-position: 0 -16px;
}

#treeview .pdf {
  background-position: 0 -32px;
}

#treeview .html {
  background-position: 0 -48px;
}

#treeview .image {
  background-position: 0 -64px;
}

ul#parent-list {
  display: flex;
}

ul#parent-list>li {
  width: 20%;
}

.k-grid {
  border-color: #E6E6E6;
  background-color: #fff;
}

.k-grid .k-header-column-menu {
  display: none;
}

.k-grid .k-column-title {
  font-family: "NotoSans", sans-serif;
  font-size: 12px;
  color: #202427;
  font-weight: 600;
  line-height: 1.5rem;
}

.k-grid .k-grid-header-locked {
  border-color: rgba(0, 0, 0, 0.08);
}

.k-grid .k-grid-header-locked .k-header {
  border-color: rgba(0, 0, 0, 0.08);
}

.k-grid .k-grid-content-locked {
  border-color: rgba(0, 0, 0, 0.08);
}

.k-grid .k-grid-content-locked td {
  border-color: rgba(0, 0, 0, 0.08);
}

.k-grid .k-grid-header .k-link {
  font-family: "NotoSans", sans-serif;
  font-size: 12px;
  color: #202427;
  font-weight: 600;
  line-height: 1.5rem;
}

.k-grid tbody td {
  font-family: "NotoSans", sans-serif;
  color: #202427;
  font-size: 0.86rem !important;
  height: 2.5rem;
  padding: 0.09rem 1.142rem;
}

.k-grid tbody td:first-child {
  text-align: center;
  text-overflow: clip;
}

.k-grid tbody td p.bg {
  padding: 1.5px 10px;
  margin: 0;
  text-decoration: underline;
}

.k-grid tbody td p.bg span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.4rem;
}

.k-grid .k-grid-header th.k-header {
  font-family: "NotoSans", sans-serif;
  background-color: #fff;
  color: #202427;
  font-size: 1rem;
  font-weight: 500;
  height: 1.285rem;
  padding: 0.571rem 1.142rem;
  text-overflow: clip;
}

.k-grid .k-grid-header th.k-header:first-child {
  text-align: center;
}

.k-grid tr.k-alt {
  background-color: #faf9fb;
}

.k-grid tr:hover {
  background-color: #e5f0ff !important;
}

.k-grid .k-link .k-icon.k-i-sort-asc-sm,
.k-grid .k-link .k-icon.k-i-sort-desc-sm {
  display: inline-block;
  float: right;
}

.k-grid .k-checkbox {
  width: 14px;
  height: 14px;
  border: solid 1.5px #66a3ff;
  background-color: #fff;
  border-radius: 0 !important;
  margin-top: 3px;
}

.k-grid .k-checkbox:checked {
  background-color: #0066ff !important;
  border: solid 2px #66a3ff;
}

.k-grid .k-checkbox:checked:focus {
  box-shadow: unset;
}

.k-grid .k-checkbox::before {
  content: "" !important;
}

.k-grid tr.k-selected td {
  background-color: #e5f0ff !important;
}

.k-grid .k-i-arrow-60-right::before {
  content: "";
  background-image: url(../../img/svg/arrow-right-pg.svg);
  background-size: contain;
}

.k-grid .k-i-arrow-60-left::before {
  content: "";
  background-image: url(../../img/svg/arrow-left.svg);
  background-size: contain;
}

.k-grid .k-i-arrow-end-right::before,
.k-grid .k-i-arrow-end-left::before {
  color: #0066ff;
}

.k-grid .k-pager-numbers .k-link {
  color: #8d979f;
  font-size: 1rem;
  font-weight: 500;
}

.k-grid .k-pager-numbers .k-link:hover {
  background-color: #e5f4e0;
}

.k-grid .k-pager-numbers .k-link.k-selected {
  background-color: #e5f0ff;
}

.k-grid .k-pager-info {
  flex: unset !important;
  justify-content: flex-end;
}

.k-grid .k-pager-sizes {
  flex: 1 1 0% !important;
  justify-content: flex-end;
}

.bg-gray {
  background-color: #f4f2f6;
}

.bg-gray span {
  background-color: #957ea8;
}

.bg-orange {
  background-color: #fcecd5;
}

.bg-orange span {
  background-color: #f0a22e;
}

.bg-red {
  background-color: #feeeeb;
}

.bg-red span {
  background-color: #f35838;
}

.bg-green {
  background-color: #e5f4e0;
}

.bg-green span {
  background-color: #7cca62;
}

span.k-picker.k-dropdownlist.k-dropdown-operator.k-picker-solid.k-picker-md.k-rounded-md {
  display: none;
}

@media screen and (max-width: 992px) {
  .k-grid .k-column-title {
      font-size: 12px;
  }
}

.jobDetails span {
  font-size: 14px;
  color: #999;
  font-weight: 500;
}

.card h6 {
  font-size: 20px;
  color: #4D4D4D;
  font-weight: 600;
  text-transform: capitalize;
}

.card p {
  font-size: 14px;
  color: #4D4D4D;
}

.card img {
  width: 20px;
  height: 20px;
}

.scrollView.k-widget * {
  box-sizing: inherit;
}

.scrollView.k-widget .k-icon:before {
  top: -35px;
  font-size: 18px;
  margin: inherit;
}

div.k-scrollview {
  border-color: transparent;
  min-height: 170px;
}

div.k-scrollview .k-i-arrowhead-w::before {
  left: 297px;
  right: 0;
}

div.k-scrollview .k-i-arrowhead-e::before {
  right: 20px;
  left: auto;
}

#jobCreationModal .modal-dialog {
  max-width: 950px;
  font-family: "SourceSansPro", sans-serif;
}

#jobCreationModal .modal-content {
  padding: 1rem;
}

#jobCreationModal .modal-header {
  border-bottom: unset;
  font-family: "SourceSansPro", sans-serif;
}

#jobCreationModal .modal-footer {
  border-top: unset;
}

#jobCreationModal .modal-footer .btn-secondary {
  background-color: transparent;
  color: #f35838;
  font-size: 14px;
  border: unset;
  line-height: 1.43;
  letter-spacing: 1.25px;
}

#jobCreationModal .modal-footer .btn-primary {
  background-color: #203764;
  color: #fff;
  border: unset;
  padding: 9px 17px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  border: solid 1px #203764;
  line-height: 1.43;
  letter-spacing: 1.25px;
}

#jobCreationModal ul.lisoflables {
  padding: 20px;
  box-shadow: 0 5px 20px -1px rgba(0, 67, 101, 0.08);
  background-color: #fff;
}

#jobCreationModal .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  row-gap: 50px;
  padding: 20px;
  box-shadow: 0 5px 20px -1px rgba(0, 67, 101, 0.08);
  background-color: #fff;
}

#jobCreationModal .grid-container>div {
  background-color: rgba(255, 255, 255, 0.8);
  border-right: 1px solid #e6e6e6;
  text-align: left;
  color: #999999;
  font-size: 16px;
}

#jobCreationModal .grid-container>div:last-child {
  border-right: unset;
}

#jobCreationModal p {
  font-size: 1rem;
  color: #202427;
  margin-bottom: 0;
}

#jobCreationModal p:first-child {
  font-weight: 600;
  color: #202427;
}

@media only screen and (max-width: 600px) {
  #jobCreationModal .grid-container>div {
      border-right: unset;
  }
}

#mailBody {
  border: unset;
}

#mailBody .modal-dialog {
  box-shadow: 0 2px 6px -1px rgba(0, 102, 255, 0.06);
  background-color: #fff;
  max-width: 800px;
  width: 800px;
  padding: 2rem;
  border: unset;
}

#mailBody .modal-content {
  border: unset;
}

#mailBody .modal-header {
  border: unset;
  border-bottom: 1px solid #d9dbdd !important;
  margin: 0px 10px;
  padding: 10px 0;
}

#mailBody .modal-header h5.modal-title {
  font-family: "SourceSansPro", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #202427;
}

#ConfirmationPopup h5.modal-title {
  font-family: "SourceSansPro", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #202427;
}

#ConfirmationPopup .confirmationPara p {
  font-family: "SourceSansPro", sans-serif;
  font-size: 1rem;
  color: #464b53;
}

#ConfirmationPopup .modal-footer .btn-secondary {
  border: solid 1px #99c2ff !important;
  font-family: "NotoSans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #3385ff;
  background: transparent !important;
}

#ConfirmationPopup .modal-dialog {
  margin: 150px auto !important;
  max-width: 600px;
}

#ConfirmationPopup button.close {
  opacity: 1;
}

.border-radius-unset {
  border-radius: unset !important;
}

button.close {
  opacity: 1;
}

.modal .modal-title {
  font-family: "SourceSansPro", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.modal .form-group label {
  font-family: "SourceSansPro", sans-serif;
  font-size: 14px;
  color: #202427;
  line-height: 1.43;
}

.modal .form-group .form-control {
  font-family: "NotoSans", sans-serif;
  border: solid 1px #d9dbdd;
  background-color: #fff;
  color: #464b53 !important;
  border-radius: 0 !important;
}

.modal .form-group .form-control:not(textarea) {
  height: 40px;
}

#notifySettingPopup {
  /* Rounded sliders */
}

#notifySettingPopup h5.modal-title {
  font-family: "SourceSansPro", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #202427;
}

#notifySettingPopup .notifySttinglabel {
  background-color: #e5f0ff;
}

#notifySettingPopup .notifySttinglabel p {
  margin-bottom: unset;
}

#notifySettingPopup .notifySttinglabel p:first-child {
  font-family: "SourceSansPro", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #464b53;
}

#notifySettingPopup .notifySttinglabel p:nth-child(2) {
  font-family: "NotoSans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #06f;
}

#notifySettingPopup .switch {
  position: relative;
  display: inline-block;
  width: 31.1px;
  height: 14px;
}

#notifySettingPopup .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

#notifySettingPopup .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #bfc5c8;
  -webkit-transition: .4s;
  transition: .4s;
}

#notifySettingPopup .slider:before {
  position: absolute;
  content: "";
  width: 19.4px;
  height: 20px;
  box-shadow: 0 5px 20px -1px rgba(0, 102, 255, 0.08);
  background-color: #a8adb4;
  left: -4px;
  bottom: -3px;
  -webkit-transition: .4s;
  transition: .4s;
}

#notifySettingPopup input:checked+.slider {
  background-color: #99c2ff;
}

#notifySettingPopup input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

#notifySettingPopup input:checked+.slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
  box-shadow: 0 5px 20px -1px rgba(0, 102, 255, 0.08);
  background-color: #06f;
}

#notifySettingPopup .slider.round {
  border-radius: 34px;
}

#notifySettingPopup .slider.round:before {
  border-radius: 50%;
}

#notifySettingPopup label span {
  width: auto;
  height: auto;
  display: unset;
  margin-right: unset;
}

#notifySettingPopup .borderBottom {
  border-bottom: solid 1px #e6e6e6 !important;
}

#notifySettingPopup .notificationswitchBtn h4 {
  font-family: "NotoSans", sans-serif;
  font-size: 14px;
  color: #32383d;
}

#notifySettingPopup .notificationswitchBtn P {
  font-family: "NotoSans", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #464b53;
  padding-right: 3rem;
  margin-bottom: 0;
}

#notifySettingPopup .modal-footer .btn-secondary {
  border: solid 1px #99c2ff !important;
  font-family: "NotoSans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #3385ff;
  background: transparent !important;
}

#notifySettingPopup .modal-dialog {
  margin: 100px auto !important;
}

p.popupSubHeader {
  font-size: 18px;
  font-weight: 600;
  color: #202427;
}

#quickAllocate .labelColor {
  color: #1a1a1a;
}

#quickAllocate .emialDropdown label {
  font-family: "SourceSansPro", sans-serif;
  font-size: 14px;
  color: #202427;
}

#quickAllocate .emialDropdown label::after {
  content: "*";
  color: red;
}

#quickAllocate .emialDropdown .form-select {
  font-weight: normal;
  font-family: "NotoSans", sans-serif;
  font-size: 16px;
  color: #32383d;
  border: solid 1px #e6e6e6;
  background: url(../../img/svg/dropdown.svg) no-repeat right;
  z-index: 9;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

#quickAllocate option {
  font-family: "NotoSans", sans-serif;
  font-size: 16px;
  color: #8d979f;
}

#quickAllocate option.resourcejobId {
  color: #000;
}

#mergePopup .modal-content {
  padding: .5rem 0;
}

#mergePopup .modal-dialog {
  max-width: 930px;
  margin: 1rem auto;
}

#mergePopup .left p {
  white-space: nowrap;
  font-family: "NotoSans", sans-serif;
  font-size: 14px;
  color: #464b53;
}

#mergePopup .right .form-control {
  min-width: 550px;
  max-width: 100%;
  padding: 8px;
  border: solid 1px #d9dbdd;
  background: #fff url(../../img/svg/search.svg) no-repeat 10px center;
  font-family: "NotoSans", sans-serif;
  font-size: 14px;
  color: #767f8a;
}

#mergePopup .k-pager-sm .k-pager-numbers-wrap select.k-dropdown,
#mergePopup .k-pager-sm .k-pager-numbers-wrap select.k-dropdown-list,
#mergePopup .k-pager-sm .k-pager-numbers-wrap select.k-dropdownlist {
  display: none !important;
}

#mergePopup .k-pager-md .k-pager-info,
#mergePopup .k-pager-sm .k-pager-info,
#mergePopup .k-pager-sm .k-pager-numbers,
#mergePopup .k-pager-sm .k-pager-sizes {
  display: inline-flex;
}

#mergePopup .k-pager-sm .k-pager-numbers-wrap {
  width: unset;
}

#mergePopup .k-grid tbody td {
  height: 2rem;
}

select.form-select {
  background: #203764;
  color: #fff;
  padding: 0.4rem;
}

select.form-select.forjobupload {
  background: #fff;
  color: #000;
  padding: 0.4rem;
  border: solid 1px #59a9f2;
  color: #59a9f2;
  text-transform: uppercase;
}

select.form-select option {
  background-color: #fff;
  color: #000;
  text-transform: initial;
}

.greyColor {
  color: #999999;
}

#tgrid thead th {
  color: #4d4d4d;
  font-size: 14px;
}

.boxShadow {
  padding: 20px;
  padding-bottom: 3px;
  box-shadow: 0 5px 20px -1px rgba(0, 67, 101, 0.08);
  background-color: #fff;
}

.dropZoneElement {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 45px;
  border: unset !important;
  background: transparent;
}

.k-button-solid-base {
  background: #fff;
  color: #59a9f2;
  border-radius: 0 !important;
}

.k-split-button .k-button-solid-base {
  height: 2.43rem !important;
}

.form-group label {
  font-size: 14px;
  color: #1a1a1a;
  font-family: 'roboto';
}

p.dropImageHereText.mb-0 {
  text-transform: initial;
}

.k-upload .k-dropzone {
  background-color: #fff;
}

.box span.k-multiselect.k-input.k-multiselect-clearable.k-input-solid.k-input-md.k-rounded-md {
  visibility: hidden;
}

p.required-field label::after {
  content: "*";
  color: red;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f3f4;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #a8adb4;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a8adb4;
}

.borderTopforjobuploadfooter {
  background-color: #fff;
  padding: 10px 40px;
  box-shadow: 0 5px 20px 9px rgba(0, 67, 101, 0.08);
}

.borderTopforjobuploadfooter .btn-primary {
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  border: solid 1px #203764;
  background-color: #203764;
}

.borderTopforjobuploadfooter .btn-secondary {
  color: #f35838;
  font-size: 14px;
  letter-spacing: 1.25px;
  background-color: transparent;
  border: unset;
}

.pageHeader {
  font-size: 22px;
  color: #1a1a1a;
  font-family: 'roboto';
}

.headerforjobUpload img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.jobUpload_footer .btn-primary {
  padding: 7px 16px;
  background-color: #06f;
  font-family: 'NotoSans';
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  border-radius: unset;
  text-transform: uppercase;
}

.jobUpload_footer .btn-secondary {
  font-family: 'NotoSans';
  font-size: 14px;
  padding: 7px 0;
  font-weight: 500;
  text-align: center;
  color: #f35838;
  background-color: transparent;
  border: unset;
  text-transform: uppercase;
}

.emailJob .form-select {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  border: solid 1px #e6e6e6;
  background: url(../../img/svg/dropdown.svg) no-repeat right;
  z-index: 9;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.emialDropdown label {
  font-size: 14px;
  color: #1a1a1a;
  font-family: Roboto;
  font-weight: 500;
}

.emialDropdown .form-select {
  font-size: 16px;
  font-weight: normal;
  color: #999;
  border: solid 1px #e6e6e6;
  background: url(../../img/svg/dropdown.svg) no-repeat right;
  z-index: 9;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.custom-queue-tab li:first-child a {
  font-weight: 500 !important;
  color: #59a9f2 !important;
  color: #59a9f2 !important;
}

img.iconSizes {
  width: 24px !important;
  height: 24px !important;
}

.cursor-pointer {
  cursor: pointer;
}

.f-14 {
  font-size: 14px !important;
}

.colorBule {
  color: #59a9f2 !important;
}

.boxShadow {
  padding: 20px;
  padding-bottom: 3px;
  box-shadow: 0 5px 20px -1px rgba(0, 67, 101, 0.08);
  background-color: #fff;
  overflow: hidden;
}

.border-bottom-grey {
  border-bottom: solid 1px #e6e6e6;
}

.Scrollable {
  height: calc(100vh - 400px);
  overflow: auto;
}

.mailtabContent .active {
  background-color: #eef6fe;
}

.circleRound {
  background-color: #4d4d4d;
  width: 32px;
  height: 32px;
  font-family: Roboto;
  font-size: 14px;
  color: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagesubHeader {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  font-stretch: condensed;
  color: #1a1a1a;
}

.greyContent {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  font-stretch: condensed;
  color: #999;
}

.f-16 {
  font-size: 16px;
}

.mail_boxContent p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 6rem;
}

.font-weight-normal {
  font-weight: normal !important;
}

.mailBodyContent {
  height: calc(16vh - -150px);
  overflow: auto;
}

.mailBodyContent p {
  font-size: 16px;
  font-weight: normal;
  color: #4d4d4d;
  color: #4d4d4d;
}

.mailBodyContent .font-weight-500 {
  font-weight: 500;
}

footer.fixed-bottom {
  height: 61px;
  padding: 1rem 0;
  background-color: #fff !important;
  box-shadow: 0 27px 29px 31px rgba(0, 67, 101, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.z-index-4 {
  z-index: 9999;
}

.fixed-bottom.jobEmail .btn-primary {
  padding: 9px 17px;
  border: solid 1px #0066ff;
  background-color: #0066ff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.25px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  border-radius: unset;
}

.fixed-bottom.jobEmail .btn-secondary {
  padding: 9px 17px;
  border: solid 1px #59a9f2;
  background-color: transparent;
  color: #3385ff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.25px;
  text-align: center;
  color: #59a9f2;
  text-transform: uppercase;
  border-radius: unset;
}

.mailsearch .form-control {
  background: url("../../img/svg/search.svg") no-repeat 1% center;
  padding-left: 2rem;
  border: solid 1px #e6e6e6;
  background-color: #fff;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  color: #999;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f3f4;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #a8adb4;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a8adb4;
}

.bg-404 {
  background: url("https://uat-atomicdesign.rrd.com/go-it/m3/img/svg/404.svg") no-repeat;
  width: 530px;
  max-width: 530px;
  background-size: cover;
  text-align: center;
  height: 530px;
  margin: auto;
}

.text-404 {
  font-family: "SourceSansPro", sans-serif;
  font-size: 190px;
  color: #06f;
  margin: 0;
  max-height: 200px;
}

.pageNotFound {
  font-family: "SourceSansPro", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #06f;
  margin: 0;
}

.notfoundSubcontent {
  font-family: "NotoSans", sans-serif;
  font-size: 14px;
  color: #464b53;
  margin: 0;
  padding: 15px 65px;
}

.goBack {
  font-family: "NotoSans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border-radius: unset;
}

.border-radius-0 {
  border-radius: unset !important;
}

.changePswdtitle {
  font-family: "SourceSansPro", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #202427;
}

p.titleright {
  font-family: "NotoSans", sans-serif;
  font-size: 14px !important;
  color: #8d979f !important;
  margin: unset;
}

.changePswd .form-group label {
  font-family: "SourceSansPro", sans-serif !important;
  font-size: 14px !important;
  color: #202427 !important;
}

.changePswd .form-group .form-control {
  padding: 9px;
  border: solid 1px #d9dbdd;
}

.f-14 {
  font-size: 14px;
}

.fillerspopupbg {
  background: transparent;
  border: unset;
}

#shareFeedbackModal h5.modal-title {
  font-size: 22px;
}

#shareFeedbackModal .modal-dialog {
  max-width: 800px;
  font-family: 'Roboto';
}

#shareFeedbackModal .modal-content {
  padding: 1rem;
}

#shareFeedbackModal .modal-header {
  border-bottom: unset;
}

#shareFeedbackModal .modal-footer {
  border-top: unset;
}

#shareFeedbackModal .modal-footer .btn-secondary {
  border: solid 1px #59a9f2;
  background-color: #fff;
  line-height: 1.43;
  letter-spacing: 1.25px;
  text-align: center;
  color: #59a9f2;
  font-size: 14px;
  padding: 9px 17px;
}

#shareFeedbackModal .modal-footer .btn-primary {
  background-color: #203764;
  color: #fff;
  border: unset;
  padding: 9px 17px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  border: solid 1px #203764;
  line-height: 1.43;
  letter-spacing: 1.25px;
}

#shareFeedbackModal ul.lisoflables {
  padding: 20px;
  box-shadow: 0 5px 20px -1px rgba(0, 67, 101, 0.08);
  background-color: #fff;
}

#shareFeedbackModal .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  padding: 20px 0;
  box-shadow: unset;
  box-shadow: 0 5px 20px -1px rgba(0, 67, 101, 0.08);
  background-color: #fff;
  align-items: center;
}

#shareFeedbackModal .grid-container>div {
  background-color: rgba(255, 255, 255, 0.8);
  border-right: 1px solid #e6e6e6;
  text-align: left;
  padding: 0 1.5rem;
  color: #999999;
  font-size: 16px;
}

#shareFeedbackModal .grid-container>div:last-child {
  border-right: unset;
}

#shareFeedbackModal .bgLightBlue {
  background-color: #eef6fe;
}

#shareFeedbackModal .colorlighDrak {
  color: #1a1a1a;
}

#shareFeedbackModal .font-bold {
  font-weight: 500;
}

#shareFeedbackModal .position-absoulte {
  position: absolute;
}

#shareFeedbackModal .left-8 {
  left: 8px;
}

#shareFeedbackModal .bottom-12 {
  bottom: 12px;
}

#shareFeedbackModal .position-realtive {
  position: relative;
}

#shareFeedbackModal .f-14 {
  font-size: 14px;
}

#shareFeedbackModal p {
  color: #999999;
  margin-bottom: 0;
  font-size: 16px;
}

#shareFeedbackModal .plforcard p:first-child {
  font-weight: 500;
}

#shareFeedbackModal .darkgreycolorRate {
  color: #4d4d4d;
}

#shareFeedbackModal .cursor-pointer {
  cursor: pointer;
}

#shareFeedbackModal .textwrap {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

#shareFeedbackModal .feedbackformjobID label {
  font-size: 14px;
  color: #1a1a1a;
  font-family: Roboto;
  font-weight: 500;
}

#shareFeedbackModal .feedbackformjobID .form-select {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  border: solid 1px #e6e6e6;
  background: url(../../img/svg/dropdown.svg) no-repeat right;
  z-index: 9;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

#shareFeedbackModal .dropZoneElement {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 45px;
  border: unset !important;
  background: transparent;
}

#shareFeedbackModal .k-button-solid-base {
  background: #fff;
  border: solid 1px #59a9f2;
  color: #59a9f2;
  border-radius: 0 !important;
}

#shareFeedbackModal .form-group label {
  font-size: 14px;
  color: #1a1a1a;
  font-family: 'roboto';
}

#shareFeedbackModal p.dropImageHereText.mb-0 {
  text-transform: initial;
  text-align: right;
  padding-right: 10px;
}

#shareFeedbackModal .k-upload .k-dropzone {
  background-color: #fff;
}

#shareFeedbackModal span.k-multiselect.k-input.k-multiselect-clearable.k-input-solid.k-input-md.k-rounded-md {
  visibility: hidden;
}

#shareFeedbackModal .borderColorforHR {
  border-top: 1px solid #e6e6e6;
}

#shareFeedbackModal .feedbackformLabel label,
#shareFeedbackModal .cc label {
  font-size: 14px;
  color: #1a1a1a;
  font-family: Roboto;
  font-weight: 500;
}

#shareFeedbackModal .feedbackformLabel .form-select,
#shareFeedbackModal .cc .form-select {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  border: solid 1px #e6e6e6;
  background: url(../../img/svg/dropdown.svg) no-repeat right;
  z-index: 9;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

@media only screen and (max-width: 600px) {
  #shareFeedbackModal .grid-container>div {
      border-right: unset;
  }
}

.border-unset {
  border: unset !important;
}

.custom-queue-row {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

ul.custom-queue-tab {
  margin: 0;
  padding: 0;
  display: inline-flex;
}

ul.custom-queue-tab li {
  list-style: none;
}

ul.custom-queue-tab li a.queuelink {
  display: block;
  text-transform: uppercase;
  color: #999999;
  font-size: 0.9rem;
  border: 1px solid #d9dbdd;
  padding: 0.5rem 1.9rem 0.5rem 0.9rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

ul.custom-queue-tab li a.queuelink span.custom-queue-name {
  white-space: nowrap;
  font-family: "NotoSans", sans-serif;
  font-weight: 500;
}

ul.custom-queue-tab li a.queuelink span.custom-queue-count {
  margin-left: 5px;
}

ul.custom-queue-tab li a.activequeuelink {
  color: #0066ff !important;
  border-bottom-color: #0066ff !important;
  border-bottom-width: 2px;
}

ul.custom-queue-tab li a.queuelink:hover {
  color: #0066ff !important;
  border-bottom-color: #0066ff;
}

ul.custom-queue-tab .custom-subdropdown li a {
  display: block;
  text-transform: uppercase;
  color: #999999;
  font-size: 0.9rem;
  padding: 0.2rem 0.9rem;
  text-decoration: none;
  cursor: pointer;
}

.custom-queue-list {
  display: inline-flex;
}

span.pin-icon {
  background-image: url(../img/png/pin-icon.png);
  background-repeat: no-repeat;
  background-position: 0px -16px;
  display: inline-block;
  width: 14px;
  height: 1.7rem;
  margin-top: 4px;
  position: absolute;
  right: 5px;
  opacity: 0;
}

span.pin-icon:hover {
  opacity: 1;
}

span.pin-icon.un-pin {
  background-position: 0px 5px;
  opacity: 1 !important;
  height: 1.7rem;
  margin-top: 0;
}

ul.custom-sub-menu {
  margin: 0;
  padding: 0;
}

ul.custom-sub-menu li {
  list-style: none;
}

ul.custom-sub-menu a {
  display: block;
  text-transform: uppercase;
  color: #999999;
  font-size: 1rem;
  padding: 0.2rem 0.9rem;
  text-decoration: none;
  white-space: revert;
  cursor: pointer;
}

ul.custom-sub-menu a:hover {
  color: #59a9f2;
}

ul.custom-sub-menu .custom-last-dots {
  border: 0;
  font-size: 2.5rem;
  line-height: 0;
  color: #999999;
  text-decoration: none;
  margin-left: 2px;
  display: block;
  margin-top: 2px;
}

ul.custom-sub-menu .custom-last-dots::after {
  border: none;
}

ul.custom-sub-menu .custom-subdropdown {
  top: 20px !important;
}

.creat-job-drop {
  min-width: auto !important;
  width: 108px;
  left: -5px !important;
}

.creat-job-drop li {
  display: block;
  color: #999999;
  font-size: 1rem;
  padding: 0;
  text-decoration: none;
  white-space: revert;
  cursor: pointer;
  margin: 0 10px;
}

a.queuelink:hover {
  color: #59a9f2;
}

.horizontalScrollableMenu li {
  border: 1px solid #d9dbdd;
}

.horizontalScrollableMenu li a.nav-link,
.horizontalScrollableMenu li a.k-link {
  font-family: "NotoSans", sans-serif;
  text-transform: uppercase !important;
  color: #8d979f !important;
  font-size: 11px !important;
  padding: 0.5rem 1.9rem 0.5rem 0.9rem;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  border: transparent;
  height: 32px;
}

.horizontalScrollableMenu li a.nav-link:hover,
.horizontalScrollableMenu li a.k-link:hover {
  border-bottom: solid 1px #0066ff;
  color: #0066ff !important;
}

.horizontalScrollableMenu li a.active {
  border-bottom: solid 2px #0066ff;
  color: #0066ff !important;
}

.dropZoneElement {
  position: relative;
  display: inline-block;
  background-color: #f8f8f8;
  border: 1px solid #c7c7c7;
  width: 350px;
  height: 200px;
  text-align: center;
}

.textWrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  font-size: 18px;
  line-height: 1.2em;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}

.dropImageHereText {
  color: #c7c7c7;
  text-transform: uppercase;
  font-size: 12px;
}

.wrapper:after {
  content: ".";
  display: inline-block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.or {
  margin: auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -45%);
}

.fieldlist {
  margin: 0 0 -1em;
  padding: 0;
}

.fieldlist li {
  list-style: none;
  padding-bottom: 1em;
}

.fieldlist {
  margin: 0 0 -1em;
  padding: 0;
}

.fieldlist li {
  list-style: none;
  padding-bottom: 1em;
}

.custom-legend {
  margin: 0;
  padding: 0;
  display: flex;
}

.custom-legend li {
  list-style: none;
  display: inline-flex;
  padding: 0 9px;
}

.custom-legend span.custom-legend-circle {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-top: 4px;
}

.custom-legend span.custom-legend-txt {
  display: inline-block;
  margin: 0 3px 0 7px;
  font-size: 12px;
  color: #4d4d4d;
}

.custom-legend span.custom-legend-count {
  font-size: 12px;
}

.custom-legend .legendColor1 {
  background-color: #f35838;
}

.custom-legend .legendColor2 {
  background-color: #f0a22e;
}

.custom-legend .legendColor3 {
  background-color: #7cca62;
}

.custom-legend .legendColor4 {
  background-color: #0085ff;
}

.custom-legend .legendColor5 {
  background-color: #999999;
}

@media screen and (max-width: 992px) {
  .custom-legend {
      flex-direction: column;
  }
}

.custom-form-input {
  border-radius: 0;
}

.custom-form-label {
  font-family: "SourceSansPro", sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.43;
}

.k-button-solid-base {
  background-color: #eef6fe;
  height: 100%;
  background-image: none;
}

span.k-icon.k-i-calendar.k-button-icon {
  color: #59a9f2;
}

span.k-datepicker {
  border-radius: 0 !important;
}

.k-dropdownlist {
  border-radius: 0 !important;
  background-color: transparent !important;
  background-image: none !important;
}

.k-dropdownlist .k-input-button {
  background-color: #eef6fe !important;
  height: 100% !important;
  background-image: none !important;
}

span.k-i-arrow-s,
span.k-i-arrow-n {
  color: #59a9f2 !important;
}

.k-picker-md {
  border-radius: 0 !important;
  background-color: transparent;
}

ul.custom-filter-option {
  margin: 0;
  display: inline-flex;
}

ul.custom-filter-option li {
  list-style: none;
  margin-left: 20px;
}

ul.custom-filter-option li a {
  display: block;
}

ul.custom-filter-option li span img {
  margin: 0.5rem 0.2rem;
  width: 1.5rem;
}

ul.custom-filter-option li a.custom-createjob-btn {
  background-color: #0066ff;
  border-radius: 0;
  color: #fff;
  padding: 4px 15px;
}

ul.custom-filter-option li span {
  display: block;
  padding: 0px 5px;
  cursor: pointer;
}

ul.custom-filter-option li span:hover {
  background-color: #E6E6E6;
  border-radius: 0.3rem;
}

ul.custom-filter-option li span:last-child {
  display: flex;
}

ul.custom-filter-option li ul.custom-filter-option li span.kendo-dropdown:hover {
  background-color: transparent !important;
}

ul.custom-filter-option li span.active {
  background-color: #eef6fe;
}

.filter-box {
  box-shadow: 0 5px 20px -1px rgba(0, 102, 255, 0.08);
  border: solid 1px #06f;
  margin-top: 1.5rem;
  padding: 1.5rem;
  display: none;
}

.filter-box .k-picker.k-dropdownlist {
  width: 100% !important;
}

button.btn.custom-clear-btn {
  color: #59a9f2;
  text-transform: uppercase;
  font-weight: 500;
}

button.btn.custom-filter-btn {
  color: #59a9f2;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #59a9f2;
  border-radius: 0;
  padding: 5px 17px;
}

.k-taskboard-column {
  background-color: #eef6fe !important;
}

.template-container {
  padding: 10px 10px 0px 10px;
}

.template-container img {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: -10px;
}

.column-status {
  padding-top: 5px;
}

.column-text {
  padding-left: 10px;
}

.column-template-container {
  width: 100%;
  display: flex;
}

.template-header {
  width: 100%;
  display: flex;
}

.column-buttons {
  margin-left: auto;
  margin-right: 0;
  padding-right: 5px;
}

.template-menu {
  margin-left: auto;
  margin-right: 0;
}

.template-title {
  color: red;
  word-wrap: break-word;
}

.k-taskboard-drag-hint {
  font: 400 14px Arial, Helvetica, sans-serif;
}

#container {
  display: flex;
  justify-content: space-between;
}

#container div {
  margin: 0 auto;
}

.k-picker.k-dropdownlist {
  width: 140px;
  height: 2.371rem;
}

.k-expander-content {
  max-width: 600px;
}

.k-list-horizontal {
  margin-top: 5px;
}

ul.custom-total-hours {
  margin: 0;
  padding: 0;
  display: flex;
}

ul.custom-total-hours li {
  list-style: none;
}

ul.custom-total-hours li input.form-control {
  border-color: #e6e6e6;
  width: 114px;
  margin-left: 10px;
  color: #999999;
  height: 33px;
  font-size: 14px;
  background-color: transparent;
}

ul.custom-total-hours li span {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
  display: inline-block;
}

ul.custom-total-hours li a {
  display: block;
  margin-left: 10px;
}

.custom-accodian-panel {
  display: flex;
  justify-content: space-between;
  background-color: #eef6fe;
  padding-top: 15px;
  padding-bottom: 10px;
}

.custom-accodian-panel p {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.custom-slider-panel {
  transition: all 0.4s ease-in-out;
  display: block;
  height: 0;
  overflow: hidden;
}

.custom-slider-panel.open {
  height: 700px;
  overflow: auto;
}

.img-rotate {
  transform: rotate(180deg);
}

.k-i-collapse::before {
  content: "";
}

.bottomBar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  height: 4.4rem;
  width: 100%;
  padding: 1rem 0;
  background-color: #fff !important;
  box-shadow: 0 27px 29px 31px #00436514;
  padding: 1rem 2.857rem;
}

.bottomBar .BottomBarRow {
  display: none;
}

.btn {
  font-family: "NotoSans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.83;
  text-align: center;
  height: 2.714rem;
  text-transform: uppercase;
  border-radius: 0;
  padding-left: 1.14rem !important;
  padding-right: 1.14rem !important;
}

.btn-cancel {
  color: #f35838;
}

.btn-blue-border {
  color: #3385ff;
  border: solid 1px #99c2ff;
}

.btn-blue-fill {
  color: #fff;
  background-color: #0066ff;
}

.custom-last-dots.dropdown-toggle::after {
  display: none;
}

.custom-last-dots+ul {
  background-color: #fff;
  border-radius: 0;
  padding: 0;
  box-shadow: 0 2px 6px -1px #0066ff0f;
  border: unset;
  min-width: auto;
}

.custom-last-dots+ul li {
  padding: 1rem;
}

.custom-last-dots+ul li:hover {
  background-color: #e5f0ff;
}

.custom-last-dots+ul li:hover a {
  text-decoration: none;
}

#changePswd .modal-content .modal-body {
  width: 1300px;
  max-width: 1300px;
}

@media screen and (max-width: 992px) {
  .bottomBar {
      height: auto;
      padding: 1rem;
  }
}

.btn {
  font-family: "NotoSans", sans-serif;
  padding: 0.571rem 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-align: center;
  height: 2.371rem;
  font-weight: 600;
  font-size: 0.85rem !important;
  text-transform: uppercase;
}

.primary-btn {
  box-shadow: 0 5px 20px -1px rgba(0, 102, 255, 0.08);
  background-color: #0066ff;
  color: #fff !important;
}

.btn-secondary-warning {
  border: solid 1px #e0e0e0 !important;
  background-color: transparent !important;
  font-family: "NotoSans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ff4825;
}

.btn-secondary-warning:hover {
  border: solid 1px #e0e0e0 !important;
  background-color: transparent !important;
  font-family: "NotoSans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ff4825;
}

.btn-secondary-warning:focus {
  border: solid 1px #e0e0e0 !important;
  background-color: transparent !important;
  font-family: "NotoSans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ff4825;
}

.btn-secondary-warning:active {
  border: solid 1px #e0e0e0 !important;
  background-color: transparent !important;
  font-family: "NotoSans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #ff4825;
}

.primary-btn:hover {
  box-shadow: 2px 2px 12px 0 rgba(0, 102, 255, 0.08);
  background-color: #4d94ff;
  color: #fff;
}

.primary-btn:active,
.primary-btn:focus {
  box-shadow: inset 2px 2px 6px 0 rgba(99, 91, 255, 0.1);
  border: solid 1px #99c2ff;
  background-color: #0066ff;
}

.secondary-btn {
  border: solid 1px #99c2ff;
  color: #3385ff !important;
}

.secondary-btn:hover {
  box-shadow: 2px 2px 12px 0 rgba(0, 102, 255, 0.08);
  border: solid 1px #99c2ff;
  background-color: #f2f7ff;
  color: #3385ff;
}

.secondary-btn:focus,
.secondary-btn:active {
  box-shadow: inset 2px 2px 6px 0 rgba(99, 91, 255, 0.1);
  border: solid 1px #99c2ff;
  background-color: #e5f0ff;
  color: #3385ff;
}

.text-btn,
.text-btn:hover {
  color: #0066ff !important;
}

.text-btn:focus,
.text-btn:active {
  border: solid 1px #99c2ff;
  box-shadow: unset;
}

.btn img {
  padding-right: 0.2rem;
  margin-top: -0.2rem;
}

.btn.text-danger {
  color: #f35838 !important;
}

.k-clear-selected {
  font-family: "NotoSans", sans-serif;
  padding: 0.571rem 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-align: center;
  height: 2.371rem;
  font-weight: 600;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  border: solid 1px #99c2ff;
  background-color: #f2f7ff;
  color: #3385ff !important;
}

.k-clear-selected:hover {
  box-shadow: inset 2px 2px 6px 0 rgba(99, 91, 255, 0.1);
  border: solid 1px #99c2ff;
  background-color: #f2f7ff;
  color: #3385ff;
}

.k-clear-selected:active {
  box-shadow: inset 2px 2px 6px 0 rgba(99, 91, 255, 0.1);
  border: solid 1px #99c2ff;
  background-color: #e5f0ff;
  color: #3385ff;
}

.k-clear-selected:focus {
  box-shadow: inset 2px 2px 6px 0 rgba(99, 91, 255, 0.1);
  border: solid 1px #99c2ff;
  background-color: #e5f0ff;
  color: #3385ff;
}

.k-button-solid-primary {
  font-family: "NotoSans", sans-serif;
  padding: 0.571rem 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-align: center;
  height: 2.371rem;
  font-weight: 600;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  box-shadow: 0 5px 20px -1px rgba(0, 102, 255, 0.08);
  background-color: #0066ff;
  color: #fff;
}

.k-button-solid-primary:hover {
  font-family: "NotoSans", sans-serif;
  padding: 0.571rem 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-align: center;
  height: 2.371rem;
  font-weight: 600;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  box-shadow: 0 5px 20px -1px rgba(0, 102, 255, 0.08);
  background-color: #0066ff;
  color: #fff;
}

.k-button-solid-primary:focus {
  font-family: "NotoSans", sans-serif;
  padding: 0.571rem 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-align: center;
  height: 2.371rem;
  font-weight: 600;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  box-shadow: 0 5px 20px -1px rgba(0, 102, 255, 0.08);
  background-color: #0066ff;
  color: #fff;
}

.k-button-solid-primary:active {
  font-family: "NotoSans", sans-serif;
  padding: 0.571rem 16px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-align: center;
  height: 2.371rem;
  font-weight: 600;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  box-shadow: 0 5px 20px -1px rgba(0, 102, 255, 0.08);
  background-color: #0066ff;
  color: #fff;
}

/* Material Theme padding adjustment*/
.k-readonly {
  color: gray;
}

.selected-value {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background-size: 100%;
  margin-right: 5px;
  border-radius: 50%;
}

#categories-list .k-list-item-text {
  line-height: 1em;
  min-width: 300px;
}

#categories-list .k-list-item-text>span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
  display: table-cell;
  vertical-align: central;
  margin: 10px 10px 10px 5px;
}

#categories-list .k-list-item-text>span:first-child {
  -moz-box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
  margin: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

#categories-list h3 {
  font-size: 1.2em;
  font-weight: normal;
  margin: 0 0 1px 0;
  padding: 0;
}

#categories-list p {
  margin: 0;
  padding: 0;
  font-size: .8em;
}

.k-material #categories-list .k-list-item-text {
  padding-left: 5px;
  border-left: 0;
}

.k-material #categories-list .k-list-item-text.k-hover {
  padding-left: 5px;
  border-left: 0;
}

.k-materialblack #categories-list .k-list-item-text {
  padding-left: 5px;
  border-left: 0;
}

.k-materialblack #categories-list .k-list-item-text.k-hover {
  padding-left: 5px;
  border-left: 0;
}

#cap {
  width: 242px;
  height: 225px;
  margin: 20px auto;
  background-image: url("../img/png/cap.png");
  background-repeat: no-repeat;
  background-color: transparent;
}

.black-cap {
  background-position: 0 0;
}

.grey-cap {
  background-position: 0 -225px;
}

.orange-cap {
  background-position: 0 -450px;
}

.k-button-md.k-icon-button>.k-button-icon {
  margin: auto !important;
  justify-content: center;
  align-items: center;
}

.k-list-content ul .k-list-item.k-selected:hover {
  background-color: #203764 !important;
}

.btn-primary:disabled {
  padding: 8px 16px;
  background-color: #f1f3f4;
  border: unset;
  font-family: 'NotoSans', sans-serif;
  font-size: 14;
  font-weight: 500;
  color: #a8adb4;
}

.navbar-brand img#ImageLogo {
  height:36px;
}

/* Added by Vijay */

.label-info {
  background-color: #5bc0de;
  color: #fff;
  padding: 3px 5px;
  margin-right: 5px;
  border-radius: 4px;
}

.form-group.without-space span {
  padding: 0;
}

span.option-item {
  justify-content: space-between;
  display: flex;
}

span.k-list-item-text {
  width: 100%;
}

.input-group.mb-3 {
  border-bottom: 1px solid #d9dbdd;
}

.bootstrap-tagsinput {
  border: 0 !important;
}

.custom-popup-border {
  border: 1px solid #d9dbdd;
  border-radius: 3px;
}
span.k-scrollview-prev {
    display: none !important;
}
span.k-scrollview-next {
    display: none !important;
}