@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
[x-cloak] {
  display: none !important;
}
.center-align {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
body {
  font-family: 'Roboto';
  color: #29406E;
  background: #f4f9ff;
}
.body--main-login {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/login-bg.jpeg');
  background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url('../images/login-bg.jpeg');
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr min-content 1fr;
}
.body--main-login::before,
.body--main-login::after {
  content: '';
}
main {
  padding-top: 30px;
  padding-bottom: 30px;
}
main.main-login {
  padding-top: 0;
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 2rem;
  }
}
h2,
.h2 {
  font-weight: 300;
}
::placeholder {
  color: #29406E;
  opacity: 1;
}
.bg-dark {
  background-color: #29406E !important;
}
.bg-lightblue {
  background-color: #297FCA !important;
}
.bg-white {
  background-color: white !important;
}
.box-shadow {
  box-shadow: rgba(41,127,202,0.2) 0 3px 8px;
}
.bottom-shadow {
  box-shadow: rgba(41,127,202,0.2) 0 2px 4px;
}
.min-h-80 {
  min-height: 80vh;
}
.list-item {
  margin-bottom: 10px;
  padding: 5px 15px;
  cursor: pointer;
  text-transform: uppercase;
  background: white;
  border-right: 5px solid transparent;
}
.list-item .username {
  font-weight: 400;
  font-size: 0.8em;
}
.list-item .timestamp {
  position: absolute;
  right: 2px;
  bottom: 0;
  font-size: small;
}
.list-item.active,
.list-item:hover {
  border-color: #29406E;
}
.list-item.active .list-item__check,
.list-item:hover .list-item__check {
  opacity: 1;
}
.list-item.unread {
  background: #e5f0f8;
}
.list-item.unread:after {
  content: " ";
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 15px;
}
.list-item--check {
  border-right: 0;
}
.list-item.active .list-item__check {
  background-image: url('../images/checked-lightblue.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 12px;
}
.list-item__check {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 2px solid #297FCA;
  opacity: .5;
  transition: .2s ease all;
}
.not-set {
  color: #c55;
  font-style: italic;
}
.hint-block {
  display: block;
  margin-top: 5px;
  color: #999;
}
.error-summary {
  color: #a94442;
  background: #fdf7f7;
  border-left: 5px solid #eed3d7;
  padding: 10px 20px;
  margin: 0 0 15px 0;
}
.custom-control.custom-checkbox {
  padding-left: 0;
}
label {
  padding-left: 10px;
  color: #297FCA;
  margin-bottom: 0;
}
label.custom-control-label {
  position: relative;
  padding-right: 1.5rem;
  padding-left: 0px;
  text-transform: uppercase;
  color: #29406E;
}
label.custom-control-label:before,
label.custom-control-label:after {
  right: 0;
  left: auto;
  outline: none !important;
  box-shadow: none !important;
}
.alert-light {
  position: absolute;
  top: 0;
  width: 60%;
  background: #03033eb0;
  top: 20%;
  left: 20%;
  color: white;
  border-radius: 0;
}
.alert-light .close {
  color: white;
  right: 10px;
  top: 5px;
  position: absolute;
  opacity: 1;
  text-shadow: none;
}
.alert-white {
  position: absolute;
  top: 0;
  width: 60%;
  background: white;
  top: 20%;
  left: 20%;
  border-radius: 0;
}
.alert-white .close {
  color: #29406E;
  right: 10px;
  top: 5px;
  position: absolute;
  opacity: 1;
  text-shadow: none;
}
.chat-header {
  padding: 10px;
  background: #29406E;
  color: white;
  text-transform: uppercase;
}
.chat-get-more {
  background: #e4effb;
  text-align: center;
  padding-top: 0;
  text-transform: uppercase;
  font-size: small;
  float: left;
  width: 100%;
}
.chat-get-more a {
  cursor: pointer;
  background: #b1b7c5;
  color: white !important;
  padding: 1px;
  border-radius: 5px;
  float: left;
  width: 100%;
  font-size: 12px;
}
.chatContainerRef {
  overflow: auto;
  background: #e4effb;
  margin-bottom: 2px;
  padding-top: 10px;
}
.chatContainerRef .message-content {
  width: 100%;
  float: left;
  text-align: right;
}
.chatContainerRef .message-content .message-item {
  width: 60%;
  padding: 0;
  background: transparent;
  margin: 5px;
  float: right;
  text-align: left;
}
.chatContainerRef .message-content .message-item .message-item-header {
  padding: 0 5px;
  font-size: small;
  text-transform: uppercase;
}
.chatContainerRef .message-content .message-item .message-item-content {
  background: white;
  padding: 10px 10px;
  border-radius: 10px 0px 10px 10px;
  box-shadow: rgba(41,127,202,0.2) 0 2px 4px;
}
.chatContainerRef .message-content .message-item .new-message-flag {
  color: red;
  font-size: xx-small;
}
.chatContainerRef .message-content.recieved {
  text-align: left;
}
.chatContainerRef .message-content.recieved .message-item {
  float: left;
  text-align: left;
}
.chatContainerRef .message-content.recieved .message-item .message-item-content {
  border-radius: 0px 10px 10px 10px;
}
.search-dropdown-container {
  position: relative;
  margin: 0 0 20px 0;
}
.search-dropdown-container .search-dropdown {
  position: absolute;
  z-index: 2;
  background: white;
  max-height: 225px;
  overflow-y: scroll;
  width: 97%;
  border: 1px solid;
  border-top: none;
}
.newMessageSelectedUsers {
  background: #e4effb;
}
.newMessageContainer {
  background: #e4effb;
  padding-top: 5px;
}
.newMessageContainer label {
  margin-bottom: 10px;
  padding: 5px 0px;
  text-transform: uppercase;
  color: #29406E;
}
.back-btn {
  cursor: pointer;
  padding: 0 10px;
  border-bottom: 1px solid transparent;
}
.back-btn:hover {
  border-bottom: 1px solid white;
}
.custom-checkbox {
  margin-right: 3px;
  margin-bottom: 0.5rem;
}
.custom-checkbox__input {
  display: none;
}
.custom-checkbox__input:checked + .custom-checkbox__label::after {
  opacity: 1;
}
.custom-checkbox__label {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  padding-right: 50px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  min-height: 40px;
  height: 100%;
  line-height: normal;
}
.custom-checkbox__label::before,
.custom-checkbox__label::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #297FCA;
  border-radius: 0;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.custom-checkbox__label::after {
  content: '';
  border: 0;
  opacity: 0;
  transition: .2s ease opacity;
  background-image: url('../images/checked-lightblue.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 10px;
}
.custom-checkbox--radio .custom-checkbox__label {
  padding-right: 45px;
}
.custom-checkbox--radio .custom-checkbox__label::before,
.custom-checkbox--radio .custom-checkbox__label::after {
  border-radius: 50%;
}
.custom-checkbox--radio .custom-checkbox__label::before {
  width: 15px;
  height: 15px;
}
.custom-checkbox--radio .custom-checkbox__label::after {
  width: 7px;
  height: 7px;
  right: 16px;
  background-image: none;
  background-color: #297FCA;
}
.custom-checkbox--radio.custom-checkbox--left .custom-checkbox__label {
  padding-left: 40px;
  padding-right: 10px;
}
.custom-checkbox--radio.custom-checkbox--left .custom-checkbox__label::before,
.custom-checkbox--radio.custom-checkbox--left .custom-checkbox__label::after {
  right: auto;
}
.custom-checkbox--radio.custom-checkbox--left .custom-checkbox__label::before {
  left: 12px;
}
.custom-checkbox--radio.custom-checkbox--left .custom-checkbox__label::after {
  left: 16px;
}
.filter-item {
  background-color: white;
  cursor: pointer;
  padding: 0.5rem;
  padding-right: 2rem;
  padding-left: 2rem !important;
  margin-right: 3px;
}
.filter-item label {
  cursor: pointer;
}
.filter-item.nopaddingleft {
  padding-left: 0 !important;
}
.filter-item img {
  width: 22px;
  height: auto;
}
.filter-item--toggler {
  min-width: 40px;
  min-height: 40px;
  padding: 5px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.filters-block {
  display: flex;
}
.filters-block .filter-item {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .filters-block {
    display: block;
    padding-top: 15px;
  }
  .filters-block .filter-item {
    width: 100%;
  }
}
.goto a {
  border-bottom: 1px solid #29406E;
  color: #29406E;
  font-weight: 300;
  text-decoration: none !important;
  cursor: pointer;
}
.goto a:hover {
  color: #297FCA;
  border-bottom: 1px solid #297FCA;
}
.downloadall span,
.goto span {
  text-transform: uppercase;
  border-bottom: 1px solid #29406E;
  color: #29406E;
  font-weight: 300;
  text-decoration: none !important;
  cursor: pointer;
}
.downloadall span:hover,
.goto span:hover {
  color: #297FCA;
  border-bottom: 1px solid #297FCA;
}
.success-icon,
.failure-icon {
  margin-top: 10px;
}
.success-icon img,
.failure-icon img {
  background: #42FF00;
  padding: 10px;
  border-radius: 100%;
  height: 35px;
  width: 36px;
}
.failure-icon img {
  background: #FF0000;
}
table {
  border-spacing: 0 5px;
  color: inherit !important;
  text-transform: uppercase;
}
table th {
  font-weight: normal;
  text-transform: none;
  background: #29406E;
  color: white;
}
.date-filter-box {
  bottom: auto;
  top: 45px;
  position: absolute;
  right: 0;
  z-index: 1;
  background: white;
  padding: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .date-filter-box {
    width: 500px;
  }
}
.date-filter-box .clear-filter-date {
  position: absolute;
  right: 15px;
  top: 25%;
  cursor: pointer;
  font-size: 1em;
  color: #297FCA;
}
.download-icon {
  position: absolute;
  right: 15px;
  top: 35%;
}
.download-icon img {
  max-width: 22px;
}
.info-row {
  cursor: pointer;
  position: relative;
}
.info-row .document-name {
  text-transform: uppercase;
}
.info-row .short-info {
  font-size: 0.9em;
}
.info-row .arrow-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  float: left;
  position: absolute;
  right: 15px;
  top: 35%;
  background-repeat: no-repeat;
}
.info-row .arrow-icon.arrow-up {
  background-image: url('../images/arrow-up.png');
}
.info-row .arrow-icon.arrow-down {
  background-image: url('../images/arrow-down.png');
}
.info-box .title {
  font-weight: 300;
  color: #297FCA;
}
.form-control {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #29406E;
  border-radius: 0;
  box-shadow: none !important;
  color: #29406E !important;
  padding-top: 0;
}
.form-control:placeholder {
  color: #29406E;
  opacity: 1;
}
.form-control.chat-input {
  background-color: white !important;
  padding: 10px;
  border-radius: 0px 10px 10px 10px;
}
.main-login__container {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.main-login__content {
  width: 100%;
  max-width: 480px;
}
.site-login a {
  color: white !important;
  border-bottom: 1px solid white;
  text-decoration: none;
}
.site-login form#login-form label {
  color: white !important;
}
.site-login form#login-form .form-control {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0;
  box-shadow: none !important;
  color: white !important;
  padding-top: 0;
}
.site-login form#login-form .form-control:placeholder {
  color: white;
  opacity: 1;
}
.btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: .3em;
  background-color: #29406E;
  color: white;
  border: none;
  padding: 18px 30px;
}
.btn.mr-cyan {
  border-right: 5px solid #42FF00;
}
.btn.mr-red {
  border-right: 5px solid #FF0000;
}
.btn--shadow {
  box-shadow: 0px 8px 8px rgba(0,0,0,0.5);
}
.btn:hover {
  background-color: #297FCA;
  color: white;
}
.main-login .login-box {
  color: white;
}
.main-login .login-box h1 {
  font-weight: 300;
  letter-spacing: -2px;
}
.main-login .login-box p {
  font-weight: 300;
  letter-spacing: -1px;
  font-size: 1.5em;
}
.main-login .login-box img.login-mobile-image {
  position: absolute;
  left: -500px;
  bottom: -35%;
}
@media (max-width: 768px) {
  .main-login .login-box {
    right: 0;
    top: 15%;
    bottom: initial;
  }
}
.document-type-select-btn {
  border-bottom: 5px solid transparent;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  color: #297FCA;
  background: white;
}
.document-type-select-btn:hover,
.document-type-select-btn.active {
  color: #29406E;
  border-bottom: 5px solid #29406E;
}
.document-type-select-btn.active {
  font-weight: 500;
}
.document-type-select-btn:last-child {
  box-shadow: #1351863d -10px 0px 10px -11px;
}
.send-selected-result {
  float: left;
  width: auto;
  background: white;
  padding: 10px;
  margin: 0 5px;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 10px;
}
.send-selected-result__label {
  padding-right: 5px;
}
.send-selected-result__delete {
  border: 0;
  background: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
  padding: 4px;
}
.send-selected-result__delete-icon {
  width: 100%;
  vertical-align: top;
}
div#loader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d434a6b;
  z-index: 9999;
  text-align: center;
}
.dropzone {
  border: none;
  box-shadow: rgba(41,127,202,0.2) 0 3px 8px;
}
.dropzone .dz-preview .dz-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.custom-control-label {
  cursor: pointer;
}
.custom-control-label.checked::before {
  color: #fff;
}
.custom-control-label.checked::after {
  background-image: url('../images/checked.svg');
}
.user-buttons-box {
  display: flex;
}
@media (max-width: 768px) {
  .user-buttons-box {
    display: block;
  }
  .user-buttons-box .btn {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1400px !important;
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 15px;
  }
  .xs-p15 {
    padding: 15px;
  }
  .navbar.navbar-dark {
    padding: 5px 15px;
  }
  .min-h-80 {
    min-height: 50px;
  }
  .xs-pt-pb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .alert-light {
    width: 100%;
    left: 0;
  }
  #chat-sidebar[data-open="true"] {
    display: none;
  }
}
@media (max-width: 767px) {
  .xs-pl-pr-0 {
    padding-left: 0;
    padding-right: 0;
  }
}
