@import url('jquery-ui-1.13.2.min.css');
@import url('lightbox.min.css');

:root {
  --bs-primary: #3963af;
  --bs-primary2: #254070;

  --bs-secondary: #384656;
  --bs-secondary-50: rgba(56,70,86,.5);
  --bs-secondary-25: rgba(56,70,86,.25);

  --bs-secondary2: #14191f;
  --bs-secondary2-50: rgba(20,25,31,.50);
  --bs-secondary2-25: rgba(20,25,31,.25);

  --bs-white: #ffffff; 
  --bs-white-50: rgba(255,255,255,.50); 
  --bs-white-25: rgba(255,255,255,.25); 

  --sidebar-width: 315px;
  --sidebar-width-revers: -315px;
}

html, body {
  color: var(--bs-secondary);
  background-color: #f5f5f5;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
  height: 100%;
}
body.backend {
  padding-left: calc(var(--sidebar-width));
}

/* TYPOGRAPHY */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 300;
  color: var(--bs-secondary);
  margin: 0 0 30px 0;
}
h1, .h1 {
  color: var(--bs-primary);
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  font-weight: 300;
  display: block;
  font-size: 65%;
  color: var(--bs-secondary);
  margin-top: 15px;
  margin-left: 30px;
}

p {
  text-align: justify;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin: 15px 0;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
}
a:hover {
  color: var(--bs-primary2);
  text-decoration: none;
}

small {
  display: block;
  font-size: 65%;
}

hr {
  margin: 45px 30px;
  background-color: var(--bs-secondary2);
  height: 2px;
  opacity: .05;
}

.text-center small {
  margin-left: 0;
}
.text-right small {
  margin-left: 0;
  margin-right: 30px;
}

strong, .fw-bold {
  font-weight: 600;
}

/* UTILITIES */
.h-line::after {
  content: '';
  display: block;
  width: 180px;
  height: 2px;
  background-color: var(--bs-secondary2);
  opacity: .05;
  margin: 15px 0;
}
.text-center.h-line::after {
  margin: 15px auto !important;
}
.text-end.h-line::after {
  margin: 15px 0 15px auto !important;
}

/* STATE-POINT */
.state-point {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--bs-secondary);
  border-radius: 50%;
}
.state-point.new {
  background-color: var(--bs-info);
}
.state-point.active {
  background-color: var(--bs-warning);
}
.state-point.final {
  background-color: var(--bs-primary);
}
.state-point.finished {
  background-color: var(--bs-success);
}
.state-point.canceled,
.state-point.unfinished {
  background-color: var(--bs-danger);
}

/* IMAGE */
.img-content {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* COPYAREA */
.copyarea {
  display: block;
  position: relative;
  padding: 15px;
  background-color: #eee;
  border-radius: 7.5px;
  box-shadow: inset 2px 2px 5px 0 rgba(0,0,0,.25);
  cursor: pointer;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23666" class="bi bi-clipboard" viewBox="0 0 16 16"><path d="M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z"/><path d="M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z"/></svg>');
  background-position: center right 15px;
  background-repeat: no-repeat;
  background-size: 20px;
}
.copyarea strong {
  display: inline-block;
  width: auto;
}

/* LIST */
.ul {
  list-style-image: url('../img/ul.png');
}
.ul li {
  margin-bottom: 15px;
}
.ul li:last-child {
  margin-bottom: 0;
}

/* ALERT */
.alert {
  border: none;
  border-radius: 0;
  font-weight: 600;
}
.alert-danger {
  background-color: var(--bs-danger);
  color: var(--bs-white);
}

/* TEXT */
.text-primary {
  color: var(--bs-primary) !important;
}
.text-secondary {
  color: var(--bs-secondary) !important;
}

/* BACKGROUND */
.bg-primary {
  background-color: var(--bs-primary) !important;
}
.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

/* TEXT COLOR */
.text-bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}
.text-bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
}

/* TEXT LIST */
.text-list {
  padding-top: 30px;
}
.text-list .text-list-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin: 0 0 10px 0;
}
.text-list .text-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin: 0;
}
.text-list .text-list-item strong {
  display: inline-block;
  width: 200px;
}
.text-list .text-list-item .input-group {
  display: inline-flex;
  width: calc(100% - 205px);
}
.text-list .text-list-item .input-group .form-select,
.text-list .text-list-item .input-group .btn {
  padding: 5px 10px;
  font-size: 14px;
}
.text-list .fileitem-file {
  margin-bottom: 10px;
  margin-top: 0;
}

/* BUTTONS */
.btn {
  border-radius: 0px;
  border: none;
  font-size: 18px;
  padding: 15px 25px;
  line-height: 1.25;
}
.btn:focus {
  box-shadow: none !important;
}

.btn-lg {
  font-size: 20px;
  padding: 15px 25px;
}
.btn-sm {
  font-size: 14px;
  padding: 7.5px 12.5px;
}

.btn-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--bs-primary2) !important;
  color: var(--bs-white) !important;
}

.btn-secondary {
  background-color: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--bs-secondary2) !important;
  color: var(--bs-white) !important;
}

/* NAV */
.nav-pills .nav-link {
  border-radius: 0;
  color: var(--bs-primary);
}
.nav-pills .nav-link.active {
  background-color: var(--bs-primary);
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 0;
  padding: 0;
  box-shadow: 0 15px 15px -10px rgba(0,0,0,.25);
  width: 280px;
  border: none;
}
.dropdown-item {
  font-size: 14px !important;
  color: var(--bs-secondary);
  padding: 10px 15px;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--bs-white);
  color: var(--bs-primary);
}
.dropdown-item i {
  display: inline-block;
  width: 22px;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-item-text {
  font-size: 16px;
  background-color: var(--bs-secondary2);
  color: var(--bs-white);
  padding: 10px 15px;
}
.dropdown-header {
  padding: 10px 15px;
  color: var(--bs-secondary);
  font-weight: 600;
}

/* CONTAINER / CONTENT */
.custom-container {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.content-box {
  display: block;
  position: relative;
  padding: 45px;
  background-color: var(--bs-white);
  box-shadow: 0 15px 15px -10px rgba(0,0,0,.25);
}
.content-box.content-box-p30 {
  padding: 30px;
}
.content-box.content-box-p15 {
  padding: 15px;
}
.row-content {
  min-height: calc(100% - 100px);
}
.content-box.content-box-details {
  width: 100%;
  min-width: 520px;
  max-width: 520px;
}

/* LOGIN */
.login-screen {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	min-height: 100%;
	background-image: url('../img/login-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.login-inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: end;
	width: 100%;
	max-width: 1100px;
	padding: 30px;
}
.login-screen .content-box {
  width: 100%;
  max-width: 480px;
}

/* HEADER */
.header {
  display: block;
  position: relative;
  background-color: var(--bs-white);
  color: var(--bs-secondary);
  line-height: 1.25;
  padding: 0 30px;
}
.frontend .header {
  padding: 0;
}
.header-inner {
  display: block;
  position: relative;
  padding: 15px 0;
}
.frontend .header-inner {
  padding: 15px 30px;
}
.header-company {
  display: flex;
  align-items: center;
  position: relative;
  width: var(--sidebar-width);
  height: 100px;
  padding: 15px 30px;
  background-color: var(--bs-secondary2);
  color: var(--bs-white);
}
.header-company-name {
  font-size: 20px;
  font-weight: 300;
  text-align: start;
  color: var(--bs-white);
  width: 100%;
  max-width: 100%;
  text-overflow: '...';
  overflow: hidden;
  white-space: nowrap;
}
.header-company-name small {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--bs-white);
  opacity: .50;
}
.header-company-name img {
  display: block;
  max-width: 255px;
}
.header-info {
  font-size: 14px;
}
.header-info a {
  color: var(--bs-secondary);
}
.header-info strong {
  font-size: 18px;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: -15px;
}
.frontend .header-nav {
  margin-right: 0;
}
.header-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 15px;
  height: 100px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--bs-secondary);
  border-right: 1px solid var(--bs-secondary-25);
}
.header-nav-item i {
  display: inline-block;
  width: 25px;
  text-align: start;
}
.header-nav-item:last-child {
  border-right: 0;
}
.header-nav-user {
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--bs-secondary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
}
.header-nav-user-infos {
  display: inline-block;
  vertical-align: middle;
}
.header-nav-user-infos small {
  font-weight: 600;
}
.header .btn-back {
  display: block;
  padding: 15px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  margin-right: 15px;
}
.header .btn-menu {
  font-size: 25px;
  padding: 5px 10px;
}

/* MENU */
.menu {
  display: block;
  min-height: 100%;
  width: var(--sidebar-width);
  background-color: var(--bs-secondary2);
  color: var(--bs-white);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 500;
}
.menu-inner {
  display: block;
  position: relative;
  overflow: auto;
  min-height: calc(100% - 100px);
  max-height: calc(100% - 100px);
}
.menu-company {
  display: flex;
  align-items: center;
  position: relative;
  width: var(--sidebar-width);
  height: 100px;
  padding: 15px 30px;
  background-color: var(--bs-secondary2);
  color: var(--bs-white);
  line-height: 1.2;
}
.menu-company-name {
  font-size: 20px;
  font-weight: 300;
  text-align: start;
  color: var(--bs-white);
  width: 100%;
  max-width: 100%;
  text-overflow: '...';
  overflow: hidden;
  white-space: nowrap;
}
.menu-company-name small {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--bs-white);
  opacity: .50;
}
.menu-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bs-white-50);
  padding: 15px 30px;
  letter-spacing: 2px;
}
.menu-info {
  display: block;
  position: relative;
  margin-top: 15px;
  padding: 30px;
  font-size: 16px;
  color: var(--bs-white-50);
  border-top: 1px solid var(--bs-white-25);
}
.menu-info strong {
  font-size: 14px;
}
.menu-item {
  display: block;
  position: relative;
  padding: 7.5px 30px;
  color: var(--bs-white-50);
}
.menu-item:hover,
.menu-item:focus,
.menu-item.active {
  color: var(--bs-white);
  opacity: 1;
}
.menu-item.disabled {
  cursor: default;
  pointer-events: none;
}
.menu-item i {
  display: inline-block;
  width: 25px;
  color: var(--bs-primary);
}
.menu-item .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0;
  font-size: 13px;
  padding: 7.5px 10px;
}
.menu-item-btn {
  display: block;
  position: relative;
  padding: 7.5px 30px;
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  margin-top: 5px;
}
.menu-item-btn:hover,
.menu-item-btn:focus,
.menu-item-btn.active {
  background-color: var(--bs-secondary-50);
  color: var(--bs-white);
}
.menu-item-btn i {
  display: inline-block;
  width: 25px;
  color: var(--bs-white);
}
.menu-backdrop {
  position: fixed;
  z-index: 499;
  background-color: var(--bs-secondary2-50);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

/* DROPDOWN */
.dropdown-item:hover, 
.dropdown-item.active, 
.dropdown-item:active {
  background-color: var(--bs-primary);
  color: var(--bs-white) !important;
}
.dropdown-item.text-muted {
  font-size: 12px !important;
}
.dropdown-item.text-muted:hover,
.dropdown-item.text-muted.active,
.dropdown-item.text-muted:active {
  background-color: var(--bs-white);
  color: var(--bs-secondary) !important;
}

/* MAIN */
.main {
  display: block;
  position: relative;
  padding: 30px 30px;
}
.frontend .main {
  padding: 60px 0;
}

/* FOOTER */
.footer {
  display: block;
  position: relative;
  padding: 30px;
  background-color: var(--bs-white);
  color: #666;
  font-size: 16px;
}
.footer a {
  color: var(--bs-secondary);
}

/* FORM */
.form {
  display: block;
  position: relative;
  margin: 15px 0;
}
.form-group {
  margin-bottom: 15px;
  position: relative;
}
.form-control,
.form-select {
  border-radius: 0px;
  border-color: var(--bs-secondary);
  color: var(--bs-secondary);
}
.form-control:focus,
.form-select:focus {
  box-shadow: none !important;
  border-color: var(--bs-secondary);
  color: var(--bs-secondary);
}

.form-check-input {
  box-shadow: none !important;
  border-color: var(--bs-secondary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23374655'/%3e%3c/svg%3e") !important;
}
.form-check-input:focus:checked,
.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-secondary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") !important;
}
.form-check-input:focus {
  border-color: var(--bs-secondary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23374655'/%3e%3c/svg%3e") !important;
}

.form-text {
  font-size: 16px;
}

.form-user-image {
	display: block;
	position: relative;
	height: 280px;
	width: 280px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 1px solid var(--bs-secondary);
	z-index: 100;
  border-radius: 50%;
  margin: 0 auto;
}
.form-user-image-input {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: var(--bs-secondary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-around;
	font-size: 42px;
	color:var(--bs-white);
	transition: all .25s;
	opacity: 0.25;
  border-radius: 50%;
}
.form-user-image:hover .form-user-image-input {
	opacity: 0.75;
}

.has-error .form-control,
.has-error .form-select {
  color: var(--bs-secondary);
  border-color: var(--bs-form-invalid-border-color);
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.has-success .form-control,
.has-success .form-select {
  color: var(--bs-success);
  border-color: var(--bs-form-valid-border-color);
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.has-error .form-check-label {
  color: var(--bs-danger);
}

.has-success .form-check-label {
  color: var(--bs-success);
}

.authentification .form-control {
  text-align: center;
  padding: 15px;
}

.pswd_info {
  position:absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width:350px;
  padding:15px;
  background:#ffffff;
  font-size:.875em;
  box-shadow: 0 15px 15px -10px rgba(0,0,0,.25);
  border: 1px solid var(--bs-secondary);
  z-index: 50;
 }
 .pswd_info ul, 
 .pswd_info li {
  margin:0;
  padding:0;
  list-style-type:none;
 }
 .pswd_info h4 {
  margin: 0 0 10px 0;
  padding: 0;
  font-weight: normal;
  font-size: 16px;
 }
.pswd_info::after {
  content: "\25BC";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  line-height: 14px;
  color:  var(--bs-secondary);
  text-shadow: none;
  display: block;
 }
 .invalid {
  line-height: 24px;
  color: var(--bs-danger);
 }
 .valid {
  line-height:24px;
  color:var(--bs-success);
 }

/* TOAST */
.toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 2000;
	background-color: var(--bs-white);
	border-color: none;
  border-radius: 0;
	box-shadow: 2px 2px 5px 0 rgba(0,0,0,.25);
}
.toast .btn-close {
  box-shadow: none;
}
.toast .btn-group,
.toast .btn-group .btn {
	width: 100%;
}

/* TIMELINE */
.timeline {
  display: block;
  position: relative;
  padding: 0 0 0 45px;
  margin: 30px 0;
}
.timeline::after {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  left: 45px;
  top: 0;
  bottom: 0;
  background-color: var(--bs-secondary2);
  opacity: .05;
}
.timeline-item {
  display: block;
  position: relative;
  padding: 30px 30px 30px 45px;
  border-top: 2px solid rgba(0,0,0,.05);
  margin-left: 2px;
}
.timeline-item:first-child {
  border-top: none;
}
.timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  left: -32px;
  width: 60px;
  height: 60px;
  background-color: var(--bs-white);
  box-shadow: 2px 2px 5px 0 rgba(0,0,0,.25);
  border-radius: 50%;
  font-size: 25px;
  z-index: 1;
  color: var(--bs-primary);
  line-height: 1;
}
.timeline-icon.icon-user {
  width: 35px;
  height: 35px;
  font-size: 16px;
  z-index: 2;
  top: 20px;
  left: -40px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.timeline-timestamp {
  font-size: 16px;
  color: #666;
}
.timeline-title {
  font-size: 18px;
  font-weight: 600;
}
.timeline-text {
  font-size: 18px;
  font-style: italic;
  margin-left: 15px;
}

.timeline-item-alert {
  background-color: rgba(220,53,69,0.15);
}
.timeline-item-alert .timeline-title {
  color: var(--bs-danger);
}
.timeline-item-alert .timeline-icon {
  color: var(--bs-danger);
}
.timeline-item-alert .timeline-icon.icon-user {
  background-color: var(--bs-danger);
  color: var(--bs-white);
}

.timeline-2 {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0;
}
.timeline-2::after {
  content: '';
  position: absolute;
  top: 30px;
  width: 100%;
  height: 5px;
  background-color: var(--bs-secondary2-25);
  border-radius: 5px;
}
.timeline-2 .timeline-item {
  display: block;
  position: relative;
  padding: 0;
  margin-left: 0;
  border: none;
  text-align: center;
}
.timeline-2 .timeline-icon {
  position: relative;
  top: auto;
  left: auto;
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  margin: 0 auto;
}
.timeline-2 .timeline-caption {
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

.timeline-2.active .timeline-item:nth-child(1) .timeline-icon {
  background-color: var(--bs-success);
}
.timeline-2.final .timeline-item:nth-child(1) .timeline-icon,
.timeline-2.final .timeline-item:nth-child(2) .timeline-icon,
.timeline-2.final .timeline-item:nth-child(3) .timeline-icon {
  background-color: var(--bs-success);
}
.timeline-2.finished .timeline-item .timeline-icon {
  background-color: var(--bs-success);
}
.timeline-2.unfinished .timeline-item .timeline-icon,
.timeline-2.canceled .timeline-item .timeline-icon {
  background-color: var(--bs-danger);
}

.timeline-3 {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.timeline-3::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 5px;
  height: 100%;
  background-color: var(--bs-secondary2-25);
  border-radius: 5px;
}
.timeline-3 .timeline-inner {
  display: block;
  position: relative;
  padding: 0 0 45px 0;
}
.timeline-3 .timeline-inner::before {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--bs-secondary);
  border: 5px solid #f5f5f5;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-3 .timeline-inner::after {
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--bs-secondary);
  border: 5px solid #f5f5f5;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-3 .timeline-item.timeline-header {
  color: var(--bs-secondary2);
  width: 100%;
  margin: 0;
  padding: 15px 0;
  margin-bottom: 30px !important;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  border-bottom: 5px solid var(--bs-secondary2-25);
}
.timeline-3 .timeline-item {
  padding: 15px 15px;
  margin: 0 0 30px 0;
  background-color: #f5f5f5;
  z-index: 1;
  border: none;
  width: calc(50% - 3px);
  text-align: start;
}
.timeline-3 .timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-3 .timeline-item.company,
.timeline-3 .timeline-item.system {
  background-color: #f0f0f0;
}
.timeline-3.company .timeline-item.company,
.timeline-3.company .timeline-item.system {
  margin-left: auto;
}
.timeline-3 .timeline-item.whistleblower {
  background-color: #e2e6ec;
}
.timeline-3.whistleblower .timeline-item.whistleblower {
  margin-left: auto;
}
.timeline-3 .timeline-icon {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  height: auto;
  width: auto;
  background-color: transparent;
  box-shadow: none;
  border: 0;
  font-size: 32px;
  margin-bottom: 5px;
}
.timeline-3 .timeline-item.text-start .timeline-icon {
  text-align: start;
  left: 0;
}
.timeline-3.timeline-item.text-end .timeline-icon {
  text-align: end;
  left: auto;
  right: 0;
}
.timeline-3 .timeline-title {
  font-size: 16px;
}
.timeline-3 .timeline-title small {
  font-size: 12px;
}
.timeline-3 .timeline-text {
  font-size: 14px;
  line-height: 1.25;
  margin-top: 15px;
  margin-left: 0;
}

/* CARD */
.card {
  border-radius: 0;
  border: none;
  margin: 15px 0;
}
a.card:hover {
  box-shadow: 0 15px 15px -10px rgba(0,0,0,.25);
}
.card-body {
  padding: 30px;
}
.card-icon {
  font-size: 50px;
  color: var(--bs-primary);
  line-height: .8;
  position: absolute;
  top: 30px;
  left: 30px;
}
.card-title {
  font-size: 20px;
  font-weight: 300;
  text-align: end;
  line-height: 1.2;
}
.card-title small {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.card-info .card-title {
  font-size: 45px;
}

/* LIST */
.list-empty {
  display: block;
  position: relative;
  text-align: center;
}
.list-empty-title {
  text-align: center;
  font-size: 32px;
}

/* TABLE */
.table {
  font-size: 16px;
  font-weight: 400;
}
.table thead {
  border-collapse: separate;
  border-spacing: 0 15px;
}
.table thead th {
  padding: 10px 15px;
  background-color: transparent;
  border: none;
  font-weight: 600;
  color: var(--bs-secondary2-50);
}
.table tbody:before {
  content: "@";
  display: block;
  line-height: 5px;
  text-indent: -99999px;
}
.table tbody tr {
  background-color: #f2f2f2;
}
.table tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}
.table tbody td {
  padding: 10px 15px;
  background-color: transparent;
  border: none;
  font-size: 14px;
}
.table-actions {
  width: 140px;
  text-align: start;
}
.table-actions a {
  font-size: 20px;
  margin-left: 7.5px;
  line-height: 1;
}
.table-actions a:first-child {
  margin-left: 0;
}

/* MODAL */
.modal-backdrop {
  background-color: var(--bs-secondary2);
  opacity: 0.75 !important;
}
.modal-content {
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.modal-header {
  padding: 30px;
}
.modal-title {
  font-size: 22px;
}
.modal-body {
  padding: 30px;
}

/* FILEITEM */
.fileitem-img {
  display: block;
  width: 100%;
  min-height: 125px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 15px 0;
  border: 1px solid var(--bs-secondary);
}
.fileitem-file {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 15px;
  margin-top: 15px;
  border: 1px solid var(--bs-secondary);
  color: var(--bs-secondary);
  font-size: 13px;
  line-height: 1.25;
  cursor: pointer;
  transition: all .25s;
}
.fileitem-file i.bi {
  display: inline-block;
  font-size: 28px;
  width: 35px;
}
.fileitem-file:hover {
  background-color: var(--bs-secondary-25);
}
.fileitem-file .fileitem-title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.fileitem-file .fileitem-title span {
  display: flex;
  flex-direction: column;
}
.fileitem-file .fileitem-caption {
  text-align: end;
}

/* ACCORDION */
.accordion-item {
  border: none;
  margin-bottom: 30px;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-header {
  background-color: var(--bs-white) !important;
  box-shadow: none !important;
}
.accordion-button {
  padding: 0;
  background-color: var(--bs-white) !important;
  color: var(--bs-secondary);
  font-size: 20px;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background-color: var(--bs-white) !important;
  color: var(--bs-primary);
}
.accordion-button.collapsed::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23374655" class="bi bi-plus-lg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2"/></svg>');
}
.accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%232f73ab" class="bi bi-dash-lg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8"/></svg>');
}

/* laoding */
.loading {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2500;
	background-color: var(--bs-secondary2-50);
  color: var(--bs-white);
	display: none;
	align-items: center;
	justify-content: space-around;
	font-size: 16px;
	text-align: center;
}

/* LOGS */
.logs {
  display: block;
  position: relative;
  max-height: 500px; 
  overflow: auto;
  margin: 0;
  width: 100%;
}
.logs span.timestamp {
  width: 160px;
  margin-right: 0;
}
.logs span.exception {
  padding-left: 235px;
  color: var(--bs-danger);
  margin-right: 0;
}
.logs span {
  display: inline-block;
  width: 60px;
  margin-right: 15px;
}
.logs span.bg-error {
  background-color: var(--bs-danger);
}

/* TAB */
.tab-content {
  width: 100%;
}

/* PROGRESS */
.progress {
  border-radius: 0;
  background-color: var(--bs-secondary);
  height: 25px;
}
.progress-bar {
  background-color: var(--bs-primary);
}

/* MOBILE */
@media (max-width: 1919.98px) {
  /* FILEITEM */
  .fileitem-img {
    min-height: 90px;
  }
}
@media (max-width: 1669.98px) {
  /* CONTENT */
  .content-box.content-box-details {
    width: 100%;
    min-width: 350px;
    max-width: 350px;
  }

  /* TEXT LIST */
  .text-list .text-list-item strong {
    display: block;
    width: 100%;
  }
  .text-list .text-list-item .input-group {
    display: flex;
    width: 100%;
    margin-top: 5px;
  }

  /* FILEITEM */
  .fileitem-img {
    min-height: 100px;
  }
}
@media (max-width: 1399.98px) {
  :root {
    --sidebar-width: 275px;
    --sidebar-width-revers: -275px;
  }

  .header-company {
    width: 100%;
    text-align: center;
  }
  .header-company img {
    margin: 0 auto;
    display: block;
  }

  /* CONTENT */
  .content-box.content-box-details {
    margin-bottom: 30px;
    min-width: 100%;
    max-width: 100%;
  }

  /* FILEITEM */
  .fileitem-img {
    min-height: 110px;
  }
}
@media (max-width: 1199.98px) {
  /* HEADER */
  .frontend .header-nav-item {
    font-size: 14px;
    height: auto;
    padding: 10px 20px;
  }

  /* TABLE */
  table thead {
    display: none;
  }
  table tr {
    display: inline-block;
    width: 50%;
  }
  table td {
    display: flex;
    align-items: start;
    flex-direction: row;
    text-align: left;
  }
  table td::before {
    content: attr(data-label);
    color: var(--bs-secondary2-50);
    display: block;
    font-weight: bold;
    width: 150px;
  }
  .table-actions {
    width: 100%;
    text-align: left;
  }
  .table tbody td {
    display: block;
  }
}
@media (max-width: 991.98px) { 
  /* HEADER */
  .header-nav {
    justify-content: center;
  }
  .header-nav-item {
    font-size: 13px;
    height: auto;
    flex-direction: column;
    height: auto;
  }
  .frontend .header-inner {
    text-align: center;
  }
  .frontend .header-nav-item i {
    width: auto;
    font-size: 18px;
    margin-bottom: 5px;
  }

  /* MENU */
  body.backend {
    padding-left: 0px;
  }
  .menu {
    left: var(--sidebar-width-revers);
    transition: all .25s;
  }

  /* TIMELINE */
  .timeline-icon {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
  .timeline-3 .timeline-inner {
    padding-top: 75px;
  }
  .timeline-3 .timeline-item {
    margin: 0 0 30px 0 !important;
    width: 100% !important;
    text-align: center !important;
  }
  .timeline-3 .timeline-header-row {
    display: none;
  }
}
@media (min-width: 992px) { 
  /* MENU */
  body.backend {
    padding-left: var(--sidebar-width) !important;
  }
  .menu {
    left: 0 !important;
  }
  .menu-backdrop {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  /* BUTTONS */
  .btn {
    font-size: 16px;
    padding: 10px 15px;
  }

  /* HEADER */
  .header-inner {
    padding: 15px 15px 15px 30px;
  }
  .header-nav-user {
    margin-right: 0;
    width: 45px;
    height: 45px;
  }
  .header-nav-user-infos {
    display: none;
  }
  .header-info {
    font-size: 12px;
  }
  .header-info strong {
    font-size: 16px;
  }
  .header .btn-menu {
    font-size: 18px;
    padding: 5px 10px;
    width: 100%;
    font-weight: 300;
  }
  .header .btn-menu i {
    font-size: 25px;
    vertical-align: middle;
  }

  /* TABLE */
  table tr {
    display: block;
    width: 100%;
  }
  .table tbody td {
    display: block;
  }
}
@media (max-width: 575.98px) { 
  /* HEADER */
  .header .btn-menu {
    margin-bottom: 15px;
  }

  /* CONTENT */
  .frontend .main {
    padding: 15px 0;
  }
  .content-box {
    padding: 30px;
  }

  /* FILEITEM */
  .fileitem-img {
    min-height: 90px;
  }
}