@charset "UTF-8";
.primary-color {
  color: #4b4b5a;
}

.secondary-color {
  color: #4b4b5a;
}

.graydark-color {
  color: #3a3b3f;
}

.graydark-color2 {
  color: #212b36;
}

.white-color {
  color: #ffffff;
}

.white-bg-color {
  background-color: #ffffff;
}

.green-bg-color {
  background-color: #176be8;
}

.green-color {
  color: #176be8;
}

.green-color2 {
  color: #229e71;
}

.link-color {
  color: #1a87ff;
}

.red-color {
  color: #ff0000;
}

.form-group {
  margin-bottom: 22px;
}
.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #4b4b5a;
  margin-bottom: 4px;
  font-weight: normal;
}
.form-group .form-control {
  border: 1px solid #e4e7eb;
  border-radius: 4px;
  background-color: #ffffff;
  height: 44px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 8px 16px;
  color: #4b4b5a;
  font-size: 14px;
  font-weight: 400;
}
.form-group .form-control:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #333438;
}
.form-group textarea.form-control {
  height: 70px;
  resize: none;
}

.bsSelect {
  width: auto !important;
}
.bsSelect .btn {
  font-size: 14px;
  letter-spacing: -0.05px;
  background-color: transparent !important;
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bsSelect .btn:active,
.bsSelect .btn:focus {
  background-color: transparent !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.bsSelect .dropdown-toggle::after {
  border-top: 5px solid #9ea0a5;
  border-bottom: none;
  margin-left: 12px;
}
.bsSelect .dropdown-menu li a {
  font-size: 14px;
  letter-spacing: -0.05px;
}
.bsSelect .dropdown-menu li a:active,
.bsSelect .dropdown-menu li a:focus {
  background-color: transparent !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.bsSelect .dropdown-item.active,
.bsSelect .dropdown-item:active {
  color: #3a3b3f;
  text-decoration: none;
  background-color: #007bff;
  background-color: #f8fffd;
}

.form-group .bsSelect {
  width: 100% !important;
}
.form-group .bsSelect .dropdown-toggle:after {
  content: url("../img/arrow-down.svg");
  border: none;
}
.form-group .bsSelect .btn {
  margin-top: 3px;
  color: #495057;
  font-size: 14px;
}
.form-group .dropdown-menu {
  left: -12px !important;
}
.form-group .bootstrap-select > select {
  z-index: -1 !important;
}

.upload-file {
  text-align: center;
}
.upload-file input[type="file"] {
  width: 100%;
  border: 1px dashed #e4e7eb;
  outline: none;
  height: 50px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  text-indent: -999px;
  font-size: 0;
}
.upload-file .upload-icon {
  text-align: center;
  /*position: absolute;*/
  left: 0;
  right: 0;
  width: 100%;
  top: 18px;
}
.upload-file .upload-icon .icon-upload {
  font-size: 20px;
  color: #4b4b5a;
}
.upload-file .upload-icon .uloadTxt {
  color: #4b4b5a;
  font-size: 14px;
  font-weight: 500;
  margin-left: 7px;
}
.upload-file .p12 {
  display: block;
  margin-top: 8px;
  color: #4b4b5a;
  font-size: 12px;
  font-weight: 300;
}

.drop-wrapper .dropzone {
  border: 1px dashed #e4e7eb;
  border-radius: 4px;
  padding: 9px 0;
  cursor: pointer;
}

/*custom radio button css start*/
.radio-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.radio-btn-group .custom-label {
  color: #4b4b5a;
  font-size: 14px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .radio-btn-group .custom-label {
    width: 100%;
  }
}
.radio-btn-group .custom-radio-btn {
  display: block;
  position: relative;
  padding-left: 32px;
  margin-right: 40px;
  cursor: pointer;
  font-size: 15px;
  color: #333438;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-btn-group .custom-radio-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-btn-group .custom-radio-btn .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 1px solid #e4e7eb;
  border-radius: 50%;
}
.radio-btn-group .custom-radio-btn .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #176be8;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: solid 3px #ffffff;
}
.radio-btn-group .custom-radio-btn input:checked ~ .checkmark {
  background-color: #229e71;
}
.radio-btn-group .custom-radio-btn input:checked ~ .checkmark:after {
  display: block;
}

/*custom radio button css end*/
.error {
  color: #ff0000;
  font-size: 11px;
}
.error:empty {
  display: none;
}

.btn-primary {
  background-color: #176be8;
  border-color: #176be8;
  color: #ffffff;
  padding: 15px 16px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.7px;
}
.btn-primary:before {
  border-color: #176be8 !important;
}
.btn-primary:hover {
  background-color: #176be8;
  border-color: #176be8;
}
.btn-primary:focus {
  background-color: #176be8 !important;
  border-color: #176be8 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.btn-primary:active {
  background-color: #176be8;
  border-color: #176be8;
}

.btn-link {
  color: #1a87ff;
}

.form-btn-group {
  text-align: right;
  margin-top: 48px;
}
.form-btn-group .btn-primary {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-transform: none;
  padding: 8px 23px;
  margin-left: 7px;
}
.form-btn-group .btn-secondary {
  border: 1px solid #d8dde2;
  border-radius: 4px;
  color: #5c6c81;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  padding: 8px 23px;
  margin-right: 7px;
}
.form-btn-group .btn-secondary:active,
.form-btn-group .btn-secondary:focus {
  background-color: transparent !important;
  border: 1px solid #d8dde2 !important;
  color: #5c6c81 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn-filter {
  border: 1px solid #e7ecef;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.34px;
  color: #4b4b5a;
  padding: 8px 12px;
  background-color: #e7ecef;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-filter.collapsed {
  border: 1px solid #d8dde2;
  background-color: #ffffff;
}

.btn-add {
  border: 1px solid #229e71;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.34px;
  color: #229e71;
  padding: 8px 13px;
  background-color: #ffffff;
}
.btn-add .icon-plus-icon:before {
  font-size: 17px;
  position: relative;
  top: 2px;
}

.btn-loader {
  position: relative;
}
.btn-loader:after {
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn-loader:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.btn-loader.btn-primary:before {
  background-color: #176be8;
}

.btn-loader.btn-secondary:before {
  background-color: #ffffff;
}

.btn-clear {
  border-radius: 4px;
  background-color: #f0f0f0;
  color: #666d76;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
}

.paddingL18 {
  padding-left: 18px !important;
}

.paddingR18 {
  padding-right: 18px !important;
}

.padding32 {
  padding: 32px !important;
}

.marginT40 {
  margin-top: 40px !important;
}

.marginB42 {
  margin-bottom: 42px !important;
}

* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #f9fafc;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span {
  font-family: "Roboto", sans-serif;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a,
button,
input[type="button"] {
  background-color: transparent;
  border-color: transparent;
  outline: none !important;
}

ul,
ol {
  /*list-style-type: none;
  margin: 0;
  padding: 0;*/
}

a:hover {
  text-decoration: none !important;
  color: #176be8 !important;
}

.fw-normal {
  font-weight: normal !important;
}

.dropdown-toggle.icon-arrow-down:before {
  display: none;
}
.dropdown-toggle.icon-arrow-down:after {
  content: "";
  color: #475f7b;
  border: none;
  font-size: 7px;
}

.dropdown .dropdown-menu {
  -webkit-box-shadow: 0 12px 24px 0 rgba(25, 42, 70, 0.13);
  box-shadow: 0 12px 24px 0 rgba(25, 42, 70, 0.13);
  border: none;
  border-radius: 4px !important;
  overflow: hidden;
}
.dropdown .dropdown-menu .dropdown-item:active,
.dropdown .dropdown-menu .dropdown-item:focus {
  background-color: #f8fefd !important;
}

.custScroll:hover .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #4b4b5a;
}
.custScroll .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: transparent;
}
.custScroll .mCSB_scrollTools .mCSB_draggerRail {
  display: none;
}
.custScroll .mCSB_inside > .mCSB_container {
  margin-right: 12px;
}

.formBg {
  border-radius: 4px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05),
    0 1px 3px 0 rgba(63, 63, 68, 0.15);
  box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05),
    0 1px 3px 0 rgba(63, 63, 68, 0.15);
  padding: 40px;
}
@media (max-width: 767px) {
  .formBg {
    padding: 24px;
  }
}

.forDesktopOnly {
  display: block !important;
}
@media (max-width: 767px) {
  .forDesktopOnly {
    display: none !important;
  }
}

.forMobOnly {
  display: none !important;
}
@media (max-width: 767px) {
  .forMobOnly {
    display: block !important;
  }
}

.breadcrumb {
  background-color: transparent !important;
  padding-left: 0;
  padding-bottom: 0;
}
.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item {
  color: #4b4b5a;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.breadcrumb .active.breadcrumb-item {
  color: #afaeb7;
}

.attached-doc {
  background-image: url(../img/attachment.svg);
  background-repeat: no-repeat;
  padding-left: 22px;
}

h5.h5 {
  color: #3a3b3f;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.06px;
}

p {
  color: #4b4b5a;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e4e7eb;
  padding: 14px 0;
  position: fixed;
  width: 100%;
  right: 0;
  left: 0;
  z-index: 2;
}

header #topNav .form-group {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  header #topNav {
    margin-right: 55px;
  }
}
header #topNav .navbar .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
header #topNav .navbar .navbar-nav .nav-item {
  margin-left: 72px;
}
@media (max-width: 767px) {
  header #topNav .navbar .navbar-nav .nav-item {
    margin-left: 16px;
  }
}

@media (max-width: 767px) {
  .logo {
    max-width: 46px;
    overflow: hidden;
    display: block;
  }
}
.notifications > a {
  position: relative;
  display: block;
  margin-top: 8px;
}
.notifications .icon-notification {
  color: #475f7b;
  font-size: 18px;
}
.notifications .badge {
  background-color: #ff5b5c;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: normal;
  padding-top: 1px;
  position: absolute;
  top: -6px;
  right: -6px;
}
.notifications .dropdown-menu {
  margin-top: 15px;
  min-width: 300px;
  left: auto;
  right: 0;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .notifications .dropdown-menu {
    position: absolute;
    right: -120px;
  }
}
@media (max-width: 320px) {
  .notifications .dropdown-menu {
    min-width: 280px;
  }
}
.notifications .notification-title {
  background-color: #f8fffd;
  padding: 12px 16px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, 0.15);
  box-shadow: 0 1px 3px 0 rgba(63, 63, 68, 0.15);
}
.notifications .load-more-ui {
  background-color: #f8fffd;
  padding: 12px 16px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, 0.15);
  box-shadow: 0 1px 3px 0 rgba(63, 63, 68, 0.15);
  text-align: center;
}
.notifications .load-more-ui a.load_more_notifications {
  color: #176be8;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px 16px;
}
.notifications .notification-listing {
  background-color: #ffffff;
  padding: 12px 16px;
  height: 228px;
}
.notifications .notification-listing li {
  border-bottom: 1px solid #e4e7eb;
  margin-left: -16px;
  padding-left: 16px;
  margin-right: -16px;
  padding-right: 16px;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.notifications .notification-listing li a {
  color: #3a3b3f;
  font-size: 13px;
  line-height: 18px;
  display: block;
  margin-bottom: 4px;
}
.notifications .notification-listing li .time-ui {
  display: block;
  opacity: 0.54;
  color: #000000;
  font-size: 12px;
}

.profile-dropdown {
  display: block;
}
@media (max-width: 767px) {
  .profile-dropdown .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
  }
}
@media (max-width: 767px) {
  .profile-dropdown .dropdown-toggle span {
    display: none;
  }
}

#sideNav {
  position: fixed;
  left: 0;
  padding-top: 10px;
  top: 98px;
  height: 100vh;
  background-color: #ffffff;
  border-right: 1px solid #e4e7eb;
  width: 272px;
}
@media (max-width: 767px) {
  #sideNav {
    height: auto;
    width: 100px;
    border: none;
    background-color: transparent;
    right: 0;
    left: auto;
    top: 6px;
  }
}
#sideNav .navbar {
  padding: 0;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  #sideNav .navbar .navbar-collapse {
    -webkit-box-shadow: 0px 0px 5px #eff5f2;
    box-shadow: 0px 0px 5px #eff5f2;
    border-radius: 4px;
    background-color: #ffffff;
    position: fixed;
    right: 0;
    width: 230px;
    top: 0;
    z-index: 2;
    height: 100vh;
    display: block;
    -webkit-transform: translateX(230px);
    -ms-transform: translateX(230px);
    transform: translateX(230px);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}
#sideNav .navbar .navbar-collapse .navbar-nav {
  height: 88vh;
  padding-bottom: 42px;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  width: 100%;
}
#sideNav .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  margin: 6px 0;
  padding: 12.5px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#sideNav .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .icon {
  color: #4b4b5a;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  width: 22px;
}
#sideNav .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .nav-txt {
  display: inline-block;
  margin-left: 20px;
  font-size: 14px;
  letter-spacing: -0.05px;
  color: #4b4b5a;
}
#sideNav .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  -webkit-box-shadow: inset 4px 0 0 0 #176be8;
  box-shadow: inset 4px 0 0 0 #176be8;
  background-color: #f9fafc;
}
#sideNav
  .navbar
  .navbar-collapse
  .navbar-nav
  .nav-item
  .nav-link:hover
  .icon:before {
  color: #176be8;
}
#sideNav
  .navbar
  .navbar-collapse
  .navbar-nav
  .nav-item
  .nav-link:hover
  .nav-txt {
  color: #176be8;
}
#sideNav .navbar .navbar-collapse .navbar-nav .active .nav-link {
  -webkit-box-shadow: inset 4px 0 0 0 #176be8;
  box-shadow: inset 4px 0 0 0 #176be8;
  background-color: #f9fafc;
}
#sideNav .navbar .navbar-collapse .navbar-nav .active .nav-link .icon:before {
  color: #176be8;
}
#sideNav .navbar .navbar-collapse .navbar-nav .active .nav-link .nav-txt {
  color: #176be8;
}
@media (max-width: 767px) {
  #sideNav .navbar .collapse.show {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  #sideNav .navbar .collapse.show .icon-close-1:before {
    -webkit-animation: rotation 0.3s 1 linear;
  }
  @-webkit-keyframes rotation {
    from {
      -webkit-transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(-180deg);
    }
  }
}
#sideNav .collapsible .collapse-dropdown {
  position: relative;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#sideNav .collapsible .collapse-dropdown .dropdown-item {
  font-size: 13px;
  letter-spacing: -0.05px;
  color: #6d6d73;
  padding-bottom: 8px;
  padding-top: 8px;
  padding-left: 69px;
}
#sideNav .collapsible .collapse-dropdown .dropdown-item:hover,
#sideNav .collapsible .collapse-dropdown .dropdown-item:focus,
#sideNav .collapsible .collapse-dropdown .dropdown-item:active {
  -webkit-box-shadow: inset 4px 0 0 0 #08aa83;
  box-shadow: inset 4px 0 0 0 #08aa83;
  background-color: #f9fafc;
}
#sideNav .collapsible .dropdown-toggle.icon-arrow-down {
  position: relative;
}
#sideNav .collapsible .dropdown-toggle.icon-arrow-down:after {
  top: 17px;
  right: 17px;
  position: absolute;
  content: "";
}
#sideNav .collapsible .dropdown-toggle.icon-arrow-down.collapsed:after {
  content: "";
}
#sideNav .mCSB_inside > .mCSB_container {
  margin-right: 0;
}
@media (max-width: 767px) {
  #sideNav .navbar {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  #sideNav .navbar .navbar-toggler {
    padding: 0;
    border: none;
    margin-right: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #sideNav .navbar .navbar-toggler .icon-close-1 {
    margin-right: 16px;
    margin-top: 5px;
    width: 38px;
    display: block;
    position: relative;
  }
  #sideNav .navbar .navbar-toggler .icon-close-1:before {
    color: #a7afad;
    position: absolute;
  }
  #sideNav .navbar .navbar-toggler .navbar-toggler-icon:before {
    content: "";
    position: fixed;
    /*background-color: rgba(255, 255, 255, 0.8);*/
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 0;
  }
}
#sideNav .navbar-toggler.collapsed .navbar-toggler-icon:before {
  display: none;
}
#sideNav .forMobOnly .navbar-toggler {
  margin: 16px;
}

.loginView {
  max-width: 870px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .loginView {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .loginView {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 20px;
  }
}
.loginView .logoSec {
  height: 100%;
  min-height: 700px;
  background-color: #176be8;
  margin-right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .loginView .logoSec {
    min-height: 550px;
  }
}
@media (max-width: 767px) {
  .loginView .logoSec {
    min-height: auto;
    margin-right: 0;
    padding: 16px;
  }
  .loginView .logoSec a img {
    max-width: 150px;
  }
}
.loginView .loginForm {
  background-color: #ffffff;
  margin-left: -15px;
  padding: 35px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 767px) {
  .loginView .loginForm {
    margin-left: 0;
  }
}
.loginView .loginForm h4 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: #3a3b3f;
}
.loginView .loginForm p {
  font-size: 18px;
  letter-spacing: -0.06px;
}

#wrapper {
  margin-left: 272px;
  padding-top: 90px;
  padding-left: 35px;
  padding-right: 35px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  #wrapper {
    padding: 100px 0 0;
    margin-left: 0;
    overflow-x: hidden;
  }
}

.dbBlk {
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 20px -15px rgba(25, 42, 70, 0.06);
  box-shadow: 0 8px 20px -15px rgba(25, 42, 70, 0.06);
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 22px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
}
.dbBlk .dbBlkTxt p {
  font-size: 15px;
  margin-bottom: 6px;
  color: #95959d;
}
.dbBlk .dbBlkTxt h3 {
  color: #4b4b5a;
  font-size: 28px;
  font-weight: 700;
}
.dbBlk .dbBlkIcn .icon-ic-Invoices {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background-color: #e2ecff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.dbBlk .dbBlkIcn .icon-ic-Invoices:before {
  color: #5d8fee;
  font-size: 36px;
}
.dbBlk .dbBlkIcn .icon-truck {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background-color: #d7ffef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.dbBlk .dbBlkIcn .icon-truck:before {
  color: #18c770;
  font-size: 28px;
}
.dbBlk .dbBlkIcn .icon-user {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background-color: #d5fafb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.dbBlk .dbBlkIcn .icon-user:before {
  color: #02c3d0;
  font-size: 30px;
}
@media (max-width: 1024px) {
  .dbBlk {
    margin-bottom: 24px;
    background-color: trasparent;
  }
}

.custom-table {
  background-color: #ffffff;
  border: solid 1px #ebecee;
  border-radius: 6px;
}
.custom-table .table tr th,
.custom-table .table tr td {
  font-size: 15px;
  letter-spacing: -0.05px;
  color: #3a3b3f;
  font-weight: normal;
  border-bottom: 1px solid #e4e7eb;
  padding: 13px 16px 9px;
  vertical-align: middle;
}
.custom-table .table tr th:first-child,
.custom-table .table tr td:first-child {
  padding-left: 24px;
}
.custom-table .table tr th strong,
.custom-table .table tr td strong {
  font-weight: 500;
}
.custom-table .table tr th {
  border-top: 0;
  background-color: #ebeff7;
  color: #5d748a;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.72px;
}
.custom-table .table tr:hover td {
  background-color: #f8fffd;
  cursor: pointer;
}
.custom-table .table tr:last-child td {
  border: none;
}

.table-sort {
  float: right;
  padding: 24px;
}
@media (max-width: 767px) {
  .table-sort {
    float: left;
    padding: 0 24px 24px;
  }
}
.table-sort label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.05px;
  color: #3a3b3f;
  margin-bottom: 0;
}

.table-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 0;
}
.table-msg .p12 {
  color: #9ea0a5;
  font-size: 12px;
  padding-left: 13px;
}

.inProgress {
  border-radius: 4px;
  background-color: rgba(255, 184, 34, 0.1);
  color: #e7a313;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.04px;
  padding: 6px 9px;
}

.threeDots > a {
  padding: 4px 6.5px 7px;
  display: inline-block;
}
.threeDots > a:after {
  display: none;
}
.threeDots > a span {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #176be8;
  display: inline-block;
}
.threeDots .dropdown-menu {
  min-width: 126px;
}
.threeDots .dropdown-menu a.dropdown-item {
  font-size: 14px;
  color: #4b4b5a;
  font-weight: 500;
  letter-spacing: -0.05px;
  padding: 12px 16px;
}
.threeDots .dropdown-menu a.dropdown-item .icon {
  font-size: 22px;
  margin-right: 10px;
}

.threeDots.show > a {
  background-color: #e1f8f2;
}

.custom-table-pagination {
  text-align: right;
  padding: 20px 24px;
}
@media (max-width: 480px) {
  .custom-table-pagination {
    text-align: left;
    padding: 24px 16px !important;
  }
  .custom-table-pagination .prev-next-arrow {
    text-align: center;
    display: block;
    margin-top: 24px;
  }
}
.custom-table-pagination label,
.custom-table-pagination .bsSelect .btn,
.custom-table-pagination .num-pages {
  opacity: 0.54;
  color: #000000;
  font-size: 12px;
}
.custom-table-pagination label {
  margin-right: 44px;
  display: inline-block;
}
@media (max-width: 480px) {
  .custom-table-pagination label {
    margin-right: 8px;
  }
}
.custom-table-pagination .num-pages {
  margin: 0 24px;
}
@media (max-width: 480px) {
  .custom-table-pagination .num-pages {
    float: right;
    margin-top: 4px;
    margin-right: 0;
  }
}
.custom-table-pagination .prev-next-arrow a span:before {
  color: #000000;
  opacity: 0.54;
  font-size: 12px;
}
.custom-table-pagination .prev-next-arrow a span:hover:before {
  color: #176be8;
}
.custom-table-pagination .prev-next-arrow .icon-arrow-left {
  margin-right: 20px;
}
.custom-table-pagination .prev-next-arrow .icon-arrow-right {
  margin-left: 20px;
}
.custom-table-pagination .bsSelect .dropdown-toggle::after {
  border-top: 5px solid #171819;
}

.quick-stats {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .quick-stats {
    overflow-x: scroll;
  }
  .quick-stats .row {
    min-width: 840px;
  }
}

.steps ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
@media (max-width: 767px) {
  .steps ul {
    margin-bottom: 0;
  }
}
.steps ul li {
  margin-right: 32px;
}
@media (max-width: 767px) {
  .steps ul li {
    margin-bottom: 24px;
  }
}
.steps ul li a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.05px;
  color: #4b4b5a;
  position: relative;
  padding-left: 19px;
  padding-bottom: 8px;
  white-space: nowrap;
}
.steps ul li a:after {
  left: 3px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #5c6c81;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  position: absolute;
}
.steps ul .active a {
  color: #333438;
  border-bottom: solid 3px #229e71;
}
.steps ul .active a:after {
  border-color: #2d2e31;
}
.steps ul .select a {
  color: #2c9461;
}
.steps ul .select a:after {
  border-color: #2c9461;
}

.form1 p {
  color: #4b4b5a;
  letter-spacing: 0;
  line-height: 34px;
  font-size: 16px;
}
.form1 .form-footer {
  margin-top: 190px;
}
.form1 input {
  border: none;
  border-bottom: 1px dashed #d5dadf;
  outline: none;
  font-weight: 500;
  color: #4b4b5a;
  font-size: 16px;
  line-height: 19px;
}
.form1 input::-webkit-input-placeholder {
  color: #999;
  font-weight: 400;
}
.form1 input::-moz-placeholder {
  color: #999;
  font-weight: 400;
}
.form1 input:-ms-input-placeholder {
  color: #999;
  font-weight: 400;
}
.form1 input::-ms-input-placeholder {
  color: #999;
  font-weight: 400;
}
.form1 input::placeholder {
  color: #999;
  font-weight: 400;
}

.filter-dropdown {
  border-radius: 4px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(63, 63, 68, 0.15);
  box-shadow: 0 1px 3px 0 rgba(63, 63, 68, 0.15);
  padding: 20px 16px;
  margin-bottom: 16px;
}
.filter-dropdown .row {
  margin-left: -7px;
  margin-right: -7px;
}
.filter-dropdown .row .cust-col {
  padding-left: 7px;
  padding-right: 7px;
  max-width: 20% !important;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
@media (max-width: 768px) {
  .filter-dropdown .row .cust-col {
    max-width: 50% !important;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .filter-dropdown .row .cust-col {
    max-width: 100% !important;
  }
}
.filter-dropdown .btn {
  height: 42px;
  font-size: 16px;
  font-weight: 500;
}

.jobs-act-btns {
  text-align: right;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .jobs-act-btns {
    text-align: left;
  }
}

.job-info {
  border-radius: 4px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05),
    0 1px 3px 0 rgba(63, 63, 68, 0.15);
  box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05),
    0 1px 3px 0 rgba(63, 63, 68, 0.15);
  max-width: 720px;
}
.job-info h6.h6 {
  color: #5d748a;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.92px;
  background-color: #ebeff7;
  text-transform: uppercase;
  padding: 11px 24px;
}
.job-info .txt-info-blk {
  margin-bottom: 24px;
}
.job-info .txt-info-blk label {
  opacity: 0.7;
  color: #4b4b5a;
  margin-bottom: 3px;
}
.job-info .txt-info-blk p {
  color: #4b4b5a;
  font-size: 15px;
  font-weight: 500;
}
.job-info .form-btn-group {
  border-top: 1px solid #ebeff7;
}

.tile {
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 20px -15px rgba(25, 42, 70, 0.06);
  box-shadow: 0 8px 20px -15px rgba(25, 42, 70, 0.06);
  background-color: #ffffff;
  padding: 22px;
  margin-bottom: 30px;
}
.tile h5 {
  font-size: 17px;
  margin-bottom: 16px;
  color: #4b4b5a;
}

.tile-height-1 {
  min-height: 305px;
}

.tile-height-2 {
  min-height: 220px;
}

.ul-list li {
  margin-left: 12px;
}
.ul-list li .t-line {
  color: #4b4b5a;
  font-size: 15px;
  padding: 4px 4px 4px 14px;
  margin-bottom: 2px;
  display: inline-block;
  position: relative;
}
.ul-list li .t-line:before {
  content: ".";
  position: absolute;
  top: -17px;
  left: 0;
  font-size: 30px;
}

.heading-small {
  color: #afaeb7;
  font-size: 14px;
}

.map-action-buttons {
  background-color: #243454;
  padding: 8px 22px;
}

.paly-pause-btn {
  width: 44px;
  height: 44px;
  margin-right: 38px;
  border: none;
  background: linear-gradient(180deg, #59d680 0%, #3cab8a 100%);
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  position: relative;
  padding: 4px;
}

.paly-pause-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s ease;
  border: 9px solid transparent;
  border-right-width: 0;
  height: 0;
  width: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.paly-pause-btn:hover {
  border-color: #fff;
}

.paly-pause-btn:before {
  border-left: 13px solid #fff;
}
.paly-pause-btn:hover:before {
  border-left-color: #fff;
}

.paused {
  border-color: #fff;
}
.paused:before {
  border-width: 0;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  height: 16px;
  width: 14px;
}
.paused:hover {
  border-color: #fff;
}
.paused:hover:before {
  border-left-color: #fff;
  border-right-color: #fff;
}

.speedup-btns ul {
  display: flex;
}
.speedup-btns ul li button {
  display: block;
  height: 24px;
  width: 36px;
  border-radius: 12px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.09);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  border: solid 2px #4a5771;
  margin: 0 8px;
  padding: 0 2px;
}

.speedup-btns ul li.active button,
.speedup-btns ul li button:hover {
  background-color: #fff;
  color: #243454 !important;
}

.custom-chkbx {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 0;
  cursor: pointer;
  color: #fefefe;
  font-size: 14px;
  line-height: 26px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-chkbx input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-chkbx .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  border: solid 1px #8690a3;
  border-radius: 4px;
}

.custom-chkbx input:checked ~ .checkmark {
  background: linear-gradient(180deg, #59d680 0%, #3cab8a 100%);
  border-color: #59d680;
}

/* Show the checkmark when checked */
.custom-chkbx input:checked ~ .checkmark:after {
  display: block;
}

.custom-chkbx .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 3px;
  width: 7px;
  height: 14px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.map-check-bx {
  float: right;
}

@media (max-width: 567px) {
  .map-check-bx {
    position: absolute;
    top: -102px;
    right: 0;
    background-color: rgba(36, 52, 84, 0.5);
    padding: 12px;
    left: 0;
    right: 0;
    margin: 0 -7px;
  }
}

.map-video .video {
  width: 100%;
  height: 75vh;
  object-fit: cover;
}

@media (max-width: 1440px) {
  .map-video .video {
    height: 68vh;
  }
}

.custom-map-tooltip {
}

/* .my-pagination ul {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  list-style: none;
  font-size: 1.05rem;
  justify-content: flex-end;
}

.my-pagination ul:hover {
  cursor: pointer;
}

.custom-new-msg-button {
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: none;
  border: 0.2rem solid #176BE8;
  color: #176BE8;
  padding: 0.5rem;
}

.custom-new-msg-button:hover {
  background: none;
  border: 0.2rem solid #2C9461;
  color: #176BE8;
  padding: 0.5rem;
} */

.boatListing-image {
  width: 80px;
  height: 54px;
}

.boatListing-image img {
  width: 100%;
  height: 100%;
}

.boat-images-sort {
  min-width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.boat-images-sort .boat-img-sorted {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.boat-images-sort .delete-btn {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 3px;
  padding: 0;
  width: 96%;
  height: 32px;
  background-color: #ffffff;
}
.boatEaditor {
  flex-wrap: wrap;
}

.boatEaditor .boat-images-sort {
  width: 32%;
}

.boatEaditor > div {
  width: calc(100% / 3 - 11px);
  min-width: 200px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: none !important;


  
}

.boatEaditor .boat-img-sorted {
  width: 100%;
  height: 100%;

}

.boatEaditor .delete-btn {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 3px;
  padding: 0;
  width: 96%;
  height: 32px;
  background-color: #ffffff;

}
