a {
  text-decoration: none;
}

@font-face {
  font-family: "Poppins";
  src: url(../../packages/fonts/Poppins-Thin.ttf);
  font-weight: 100;
}
@font-face {
  font-family: "Poppins";
  src: url(../../packages/fonts/Poppins-ExtraLight.ttf);
  font-weight: 200;
}
@font-face {
  font-family: "Poppins";
  src: url(../../packages/fonts/Poppins-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url(../../packages/fonts/Poppins-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url(../../packages/fonts/Poppins-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url(../../packages/fonts/Poppins-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url(../../packages/fonts/Poppins-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url(../../packages/fonts/Poppins-ExtraBold.ttf);
  font-weight: 800;
}
@font-face {
  font-family: "Poppins";
  src: url(../../packages/fonts/Poppins-Black.ttf);
  font-weight: 900;
}
body {
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
}

#app {
  overflow: hidden;
  height: 100vh;
  display: flex;
}

.panel {
  width: calc(100% - 220px);
  padding: 30px 30px 0;
}

#contentDiv {
  overflow: hidden;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: #ffffff;
}

#contentDiv.cleanContentDiv {
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}

.box-offset {
  margin: 0 -15px 0 -15px;
  padding: 15px 15px 0 15px;
}

h1, .h1 {
  font-size: 20px;
}

.btn {
  --bs-btn-padding-x: 1.5625rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 30px;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  border-radius: var(--bs-btn-border-radius);
  min-width: 115px;
}

.btn-success {
  --bs-btn-bg: #3EA90C;
  --bs-btn-border-color: #3EA90C;
  --bs-btn-hover-bg: #349009;
  --bs-btn-hover-border-color: #389b0a;
  --bs-btn-active-bg: #349009;
  --bs-btn-active-border-color: #389b0a;
  --bs-btn-disabled-bg: #3EA90C;
  --bs-btn-disabled-border-color: #3EA90C;
}

.nav-link a {
  color: #000000;
}

.action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-buttons .edit-row,
.action-buttons .delete-row {
  height: 22px;
  width: 22px;
}

.action-buttons .edit-row svg,
.action-buttons .delete-row svg {
  width: 100%;
  stroke-width: 2.5px;
}

.action-buttons .edit-row {
  color: #2697fa;
}

.action-buttons .delete-row {
  color: #F32013;
}

.form {
  padding: 10px 0;
}

.col-form-label {
  font-size: 14px;
  text-align: right;
  padding-top: calc(0.4375rem + var(--bs-border-width));
  padding-bottom: calc(0.4375rem + var(--bs-border-width));
}

.form-label {
  margin-bottom: 13px;
  font-size: 14px;
  font-weight: 500;
}

.form-control {
  font-size: 14px;
  border-color: #cccccc;
  max-width: 470px;
}

.form-control:focus, .form-select:focus {
  border-color: #C9014A;
  outline: 0;
  box-shadow: none;
}

textarea.form-control {
  max-height: 130px;
}

a {
  color: #C9014A;
}

a:hover {
  color: #C9014A;
}

.section-header {
  padding: 15px 0;
}

.header-with-line {
  display: flex;
  align-items: center;
}

.header-with-line .line {
  flex: 1;
  border-top: 1px solid #000;
}

.header-with-line .text {
  padding: 0 15px;
  font-weight: 500;
  color: #C9014A;
}

.progress {
  height: 18px;
  border-radius: 20px;
}

.progress-bar {
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background-color: #3EA90C !important;
}

.sidebar {
  width: 220px;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  overflow-y: scroll;
}

.menu .navbar li {
  width: 100%;
}

.menu .nav a {
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #000000;
}

.menu .nav a svg {
  margin-right: 10px;
}

.menu .nav .submenu-icon {
  float: right;
}

.menu .nav .submenu-icon svg {
  margin-right: 0 !important;
  width: 20px;
  height: 20px;
}

.menu .nav .nav-label {
  padding: 1px 0 0px;
  display: inline-block;
}

.panel .header {
  margin-bottom: 30px;
}

.page-name .h1 {
  margin-bottom: 0;
  margin-top: 6px;
}

.menuright {
  display: flex;
  float: right;
}

.search-bar {
  position: relative;
  margin-right: 10px;
}

.search-bar input {
  width: 300px;
  border: 0;
  font-size: 15px;
}

.search-bar span {
  position: absolute;
  top: 4px;
  right: 15px;
}

.menuright .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 12px;
  color: #000000;
}

.menuright .item.profile {
  margin-left: 12px;
}

.menuright .item.profile .profile-icon {
  width: 35px;
  height: 35px;
  background: #d9d9d9;
  border-radius: 30px;
}

nav.sub-menu-tab {
  background: #ffffff;
  border-radius: 8px !important;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
  overflow: hidden;
}

.nav-link a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#nav-tabContent {
  height: 100%;
}

#nav-tabContent.tab-content .tab-pane {
  height: 100%;
}

.sub-menu-tab #nav-tab {
  border: 0;
}

.sub-menu-tab .nav-tabs .nav-link {
  font-size: 14px;
  padding: 12px 32px;
  border: 0;
  background: #ffffff;
  color: #000000;
  border-radius: 0;
  position: relative;
}

.sub-menu-tab .nav-tabs .nav-link.active {
  background: #C9014A;
  color: #ffffff;
}

.card {
  border: 0;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 1rem 20px;
  border-radius: 10px 10px 0 0 !important;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
}

.card-header .title {
  font-weight: 600;
}

.card-header .action-center {
  display: flex;
}

.card-header .action-center .item a {
  margin: 0 11px;
  color: #000000;
}

.card-body {
  padding: 1rem 20px;
  height: 100%;
  overflow-y: scroll;
}

.table {
  border: 1px solid #CCCCCC;
  border-radius: 8px;
}

.table th, .table td {
  font-size: 14px;
}

.table th {
  padding: 15px;
  font-weight: 600 !important;
}

.table thead tr th:first-child {
  border-top-left-radius: 8px;
}

.table thead tr th:last-child {
  border-top-right-radius: 8px;
}

.table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.table td {
  padding: 15px;
}

.table tbody tr:last-child td {
  border: 0;
}

.table.dataTable.wingsDataTable {
  margin: 16px 0 !important;
}

div.dataTables_wrapper div.dataTables_length label, div.dataTables_wrapper div.dataTables_filter label, div.dataTables_wrapper div.dataTables_info, .page-link {
  font-size: 14px;
}

div.dataTables_wrapper div.dataTables_length select, div.dataTables_wrapper div.dataTables_filter input {
  border-radius: 10px;
  border-color: #CCCCCC;
  margin: 0 5px;
}

div.dataTables_wrapper div.dataTables_filter input {
  min-width: 220px;
  margin: 0 0 0 8px;
}

.pagination .page-link {
  border: 0;
  border-radius: 25px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px !important;
  color: #000000;
}

.page-link:focus {
  box-shadow: none;
}

.pagination .previous.disabled, .pagination .next.disabled {
  opacity: 0.5;
}

.pagination .previous a, .pagination .next a {
  padding: 0;
  margin: 0 6px 0 0 !important;
  background: no-repeat;
  border: 0;
  width: 24px;
}

.pagination .next a {
  margin: 0 0 0 6px !important;
}

.active > .page-link, .page-link.active {
  background-color: #C9014A;
  color: #ffffff;
  font-weight: 600;
}

#profile,
#profile > *,
#profile > * > * {
  height: 100%;
}

#profile .form-control {
  background: #E3F2FF !important;
  border-color: #55B0FF !important;
  resize: none;
}

#profile .left-section,
#profile .right-section {
  position: relative;
  height: 100%;
  overflow-y: scroll;
}

#profile .block-value.non-editable {
  padding: 0 12px;
}

#profile .block {
  position: relative;
  padding: 22px 10px;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

#profile .block.profile-info {
  text-align: center;
}

#profile .profile-icon-large {
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto 15px;
  border-radius: 50px;
  background: #d9d9d9;
}

.profile-info .name {
  margin-bottom: 7px;
}

.profile-info .name .form-control {
  font-weight: 600;
  color: #C9014A;
  text-align: center;
}

.profile-info .profile-id {
  font-style: italic;
  font-weight: 200;
}

#profile .form-control:-moz-read-only {
  border-color: transparent !important;
  background: transparent !important;
}

#profile .form-control:read-only {
  border-color: transparent !important;
  background: transparent !important;
}

.block-title {
  color: #999999;
  margin-bottom: 11px;
  padding-left: 11px;
}

.profile-download-btn {
  width: calc(100% - 24px);
  margin: 0 12px;
  background: #EBEBF5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  border-radius: 10px;
  color: #696CF5;
  font-weight: 700;
  flex-direction: column;
}

.profile-download-btn svg {
  margin-bottom: 3px;
  display: block;
}

#profile .last-updated {
  padding: 8px 12px 0;
  color: #6f6f6f;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
}

#profile .certificate-verification svg {
  display: block;
  padding: 5px;
  stroke-width: 5;
  border-radius: 25px;
  background: #3EA90C;
  color: #ffffff;
}

#profile .profile-edit {
  position: absolute;
  top: 22px;
  right: 22px;
}

#profile .profile-edit svg {
  stroke-width: 2.5;
  opacity: 0.5;
}

#profile .profile-edit:hover svg {
  opacity: 0.8;
  cursor: pointer;
  color: #C9014A;
}

.tasks-list thead tr th:first-child, .tasks-list tbody tr td:first-child {
  text-align: center;
}

.tasks-list .attachment, .tasks-list .comments, .tasks-list .priority {
  position: relative;
  display: block;
  text-align: center;
}

.tasks-list .attachment .icon, .tasks-list .comments .icon, .tasks-list .priority .icon {
  position: relative;
  color: #000000;
  display: inline-block;
}

.tasks-list .attachment .icon:hover, .tasks-list .comments .icon:hover {
  color: #C9014A;
}

.tasks-list .attachment.active .icon:before, .tasks-list .comments.active .icon:before {
  content: "";
  position: absolute;
  top: 0px;
  right: -2px;
  background: #C9014A;
  width: 10px;
  height: 10px;
  border-radius: 20px;
}

.tasks-list .attachment.active .icon:before {
  top: 2px;
  right: -4px;
}

.tasks-list .attachment .feather-paperclip, .tasks-list .comments .feather-message-square, .tasks-list .priority .feather-flag {
  stroke-width: 1.5;
  width: 20px;
}

.tasks-list .priority .feather-flag {
  stroke-width: 2;
}

.tasks-list .priority.high .feather-flag {
  color: #F32013;
}

.tasks-list .priority.medium .feather-flag {
  color: #EE9F27;
}

.tasks-list .priority.low .feather-flag {
  color: #999999;
}

.tasks-list .priority.default .feather-flag {
  color: #999999;
}

#interactionBar {
  margin-top: 25px;
  height: 50px;
  background: #ffffff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.new-record {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#interactionBar .btn {
  margin: 0 6px;
}

.popup-container {
  width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.popup-shadow {
  box-shadow: 0 0rem 50px rgba(0, 0, 0, 0.16) !important;
}

.login .right-section {
  padding: 30px;
  height: 100%;
}

.login .right-section .content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.logo-section {
  text-align: center;
  margin-bottom: 10px;
}

.logo-section img {
  width: auto;
  height: 65px;
}

.login .content .header .quick-links {
  text-align: right;
}

.login .content .header .quick-links a {
  font-size: 14px;
  color: #000000;
  border-right: 1px solid #000000;
  padding: 0 6px 0 2px;
}

.login .content .header .quick-links a:hover {
  color: #C9014A;
}

.login .content .header .quick-links a:last-child {
  padding-right: 0;
  border: 0;
}

.login .content .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.login .content-heading .title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 6px 0;
}

.login .content .content-inner {
  padding: 35px 60px 0px;
}

.login .content-inner .form-group {
  margin-bottom: 18px;
}

.login .content-inner .form-label {
  font-size: 14px;
  margin-bottom: 12px;
}

.login .content-inner .form-control {
  font-size: 14px !important;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  padding: 11px 20px 10px;
}

.login .form-action {
  margin: 23px 0 15px;
}

.login .form-action .link a {
  font-size: 12px;
  color: #000000;
}

.login .form-action .link a:hover {
  color: #C9014A;
}

.login .form-action .btn-primary {
  background: #C9014A;
  border-color: #C9014A;
  padding: 10px 49px;
  margin-top: 6px;
}

.login .form-action .btn-primary:hover, .login .form-action .btn-primary:focus {
  background: #B50042;
  border-color: #B50042;
}/*# sourceMappingURL=wings.css.map */