/* width */
::-webkit-scrollbar {
  width: 10px;
  display: none;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  background: url('../images/Background.png');
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  font-family: 'Barlow', sans-serif;
  --var-gradient-primary: linear-gradient(#0056a1d0, #141f32cb);
  --var-gradient-bg: linear-gradient(#0056a1, #141f32);
  overflow-x: hidden;
  min-height: 100vh;
  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main {
  max-width: 1820px;
  display: block;
  margin: 0 2rem;
}

.main .row {
  margin: 0;
}

.action {
  display: block;
  margin: 100px auto;
  width: 100%;
  text-align: center;
}

.action a {
  display: inline-block;
  padding: 5px 10px;
  background: #f30;
  color: #fff;
  text-decoration: none;
}

.action a:hover {
  background: #000;
}

.logo {
  height: 70px;
}

.logo-2 {
  height: 63px;
  margin-left: 20px;
}

header {
  display: flex;
  align-items: center;
  max-width: 1799px;
  width: 100%;
  margin: 35px auto;
}

.nav {
  width: inherit;
  margin: 0 10px;
}

.nav .nav-item a {
  color: white;
  font-size: 18px;
}

.accordion {
  font-size: 20px;
}

.nav .nav-item a:hover,
.nav .nav-item a.active {
  color: #609fd4;
  /* font-weight: 700; */
}

.nav-link {
  padding: 20px;
}

a,
.accordion-item {
  cursor: pointer;
  color: white;
}

.language {
  font-size: 18px;
  color: white;
}

.language img {
  width: 39px;
  height: 39px;
  margin: 0 10px;
}

.breadcrumb {
  background-color: unset;
  padding: 0;
  margin: 30px 0;
}

.breadcrumb li {
  margin-right: 10px;
  align-self: self-end;
}

.breadcrumb li a h1 {
  font-size: 28px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

.breadcrumb i {
  font-size: 30px;
  margin-bottom: 4px;
  font-weight: 100;
}

.card {
  background: var(--var-gradient-primary);
  display: flex;
  border: none;
  flex-direction: row;
  align-items: center;
  place-content: center;
  /* margin: 10px; */
  /* height: fit-content; */
}

.card img {
  max-height: 130px;
  width: 100%;
  max-width: -webkit-fill-available;
  margin: 5px;
}

p {
  color: white;
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 18px;
}

.slick-initialized .slick-slide {
  display: flex;
}

.card.slick-slide {
  margin: 10px;
  margin-left: 0;
  padding: 10px;
  cursor: pointer;
}

.slick-prev {
  right: 0;
  left: unset;
  z-index: 1;
}

.listing-grid-module .slick-prev {
  left: -25px;
}

hr {
  border-top: 1px solid white
}

.list {
  max-height: 44vh;
  overflow-y: auto;
  margin-left: 0;
}

.list .card {
  display: block;
  text-align: center;
  cursor: pointer;

}

.draggable {
  padding: 0 !important;
}

.card img.icon-edit-card {
  width: 45px;
  height: auto;
  position: absolute;
  right: 0px;
  top: 0px;
  margin: 0;
  display: none;
}

.card img.icon-delete-card {
  width: 20px;
  height: auto;
  position: absolute;
  right: 11px;
  top: 45px;
  margin: 0;
  display: none;
}

.card:hover img.icon-edit-card,
.card:hover img.icon-delete-card {
  display: block;
}

.card .img-model {
  margin: 5px;
  height: 122px;
  display: flex;
  align-items: center;
  place-content: center;
}

.card .img-model img {
  width: auto;
  height: fit-content;
}

.btn-creer {
  background: var(--var-gradient-primary);
  color: white;
  width: 100%;
  /* padding: 15px; */
  text-transform: uppercase;
  border-radius: 5px;
  max-width: 235px;
  height: 54px;
  font-size: 18px;
  padding: 13px 0;
}

h3 {
  color: white;
  font-weight: bold;
  font-size: 36px;
}

h6 {
  font-size: 24px;
  color: white;
  font-weight: 300;
}

.footer {
  position: fixed;
  right: 30px;
  bottom: 50px;
}

.container .footer {
  position: absolute;
  right: 35px;
  bottom: unset;
  text-align: end;
  z-index: -1;
}

.footer img {
  max-height: 90px;
  width: 7vw;
}

/* 
.modal {
  top: 20vw;
} */
.modal .modal-dialog.container-md {
  max-width: 1041px;
}

.modal .modal-content {
  background: var(--var-gradient-bg);
  color: white;
}

.modal .modal-body {
  padding: 20px 50px;
  max-height: 90vh;
  overflow: auto;
}

.modal h3 {
  font-weight: 300;
  font-size: 40px;
  text-transform: uppercase;
}

.modal .form-row-modal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 20px;
  row-gap: 20px;
}
.modal .form-row-modal .row .col-4{
  flex: 0 0 30%;
}
.modal .form-row-modal .row .col-3{
  flex: 0 0 23%;
}
.form-group {
  margin-bottom: 0;
}

.modal .form-row-modal .form-group {
  flex: 48%;
}

select.form-control::-ms-expand {
  border-left: 1px solid grey;
}

.place-content-center {
  place-content: center;
  column-gap: 20px;
  margin-top: 20px;
}

.nav-tabs {
  border: unset;
}

.content-card {
  display: flex;
  align-items: center;
}

.content-card>div:first-child {
  height: 129px;
  align-items: center;
  display: flex;
}

.tab-content {
  row-gap: 10px;
  display: flex;
  flex-direction: column;
}

.tab-content .tab-pane.active.row {
  display: flex;
  column-gap: 10px;
  row-gap: 10px;
}

/* .slick-next {
  right: 50px;
} */

/* Page Login */
.form-signin {
  max-width: 577px;
  padding: 15px;
  padding-top: 10vh;
}

.form-signin h2 {
  font-size: 40px;
  font-weight: 300;
}

.form-signin form {
  background: var(--var-gradient-primary);
  color: white;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin {
  font-size: 18px;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;

}

.form-signin input[type="password"] {
  margin-bottom: 10px;
}

.form-signin .btn-creer {
  width: 100%;
  /* padding: 15px 40px; */
  margin-top: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.486);
  font-size: 18px;
}

.form-signin p {
  font-size: 18px;
}

.form-signin p a {
  font-size: 25px;
}

.form-signin input {
  font-size: 18px;
}

.form-floating {
  margin-top: 18px;
}

.is-invalid~.invalid-feedback {
  display: block;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border: solid 2px #FF7A00;
  background-image: unset;
}

.invalid-feedback {
  color: #FF7A00;
  font-size: 15px;
  line-height: 1.2rem;
}

.listing-grid,
.listing-grid-module {
  margin-top: 10vw;
  max-width: 1440px;
  padding: 20px;
}

.listing-grid-module .row {
  column-gap: 0;
  row-gap: 10px;

}

.listing-grid-module .row .card {
  background: unset;
  align-items: stretch;
}

.listing-grid-module .row .card-body {
  background: var(--var-gradient-primary);
  border-radius: 5px;
  /* min-height: 350px; */
  padding-top: 0;
}

.listing-grid-module p {
  color: #FFF;
  font-size: 35px;
  text-transform: uppercase;
}

.listing-grid-module .img-model,
.listing-grid-module img {
  height: 184px;
}

.listing-grid .card {
  display: inline-block;
  text-align: center;
  margin: 10px 0;
  background: none;
  cursor: pointer;
}

.listing-grid .card .card-body {
  background: var(--var-gradient-primary);
  padding: 10px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 50%);
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.listing-grid .card .card-body:hover {
  background: var(--var-gradient-bg);
}

.listing-grid .card .card-body img {
  width: 100%;
  height: auto;
}

.listing-grid .card .card-body .icon-edit-card {
  right: 15px;
  width: 45px;
  display: none;
}

/* Page Account */
.title-account {
  font-size: 50px;
  text-transform: uppercase;
  width: 60vw;
  margin-left: 3vw;
}

.title-account span {
  font-size: 28px;
  padding: 0 5px;
  font-weight: 100;
}

header.mt-5 .nav-link {
  padding-top: 0;
}

.nav-item a.dropdown-item {
  color: #212529;
}

.language .dropdown-menu .dropdown-item {
  color: white;
}

.dropdown-menu .dropdown-item:hover {
  color: #212529;
}

.language a.dropdown-toggle {
  font-weight: 600
}

.language .dropdown-menu.show {
  background: var(--var-gradient-bg);
  top: 80px !important;
  right: 50px;
  left: unset !important;
  width: 100px;
  max-width: 100px;
  will-change: unset !important;
  transform: unset !important;
}

.nav-item .language img {
  width: 36px;
  margin-top: -5px;
}

.header-no-image .nav .nav-item a {
  font-size: 20px;
}

.col-60 {
  width: 68px;
}

.smart-filter {
  display: flex;
  column-gap: 25px;
}

/* .smart-filter > *{
max-width: 50%;
} */
select.hide-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-left: 33px;
}

select.hide-arrow option {
  padding-left: 5px;
}

select::-ms-expand {
  display: none;
}

.smart-filter i.fa-sort-amount-desc {
  position: absolute;
  top: 17px;
  left: 24px;
}

.smart-filter i.fa-search {
  position: relative;
  right: 10px;
  font-size: 20px;
  float: right;
  margin-top: -38px;
}

.smart-filter .menu-user {
  display: flex;
  color: white;
}
.smart-filter .menu-user a{
  width: max-content;
}
.smart-filter .form-control {
  height: 54px;
  font-size: 18px;
}

.smart-filter .form-group {
  margin-bottom: 0;
}

.main-no-logo {
  display: block;
  margin: auto;
  margin-top: 40px;
  max-width: 1841px;
}

.w-50 {
  max-width: 50%;
  width: -webkit-fill-available;
}

.menu-user {
  text-transform: uppercase;
  align-self: self-end;
  font-size: 18px;
}

.menu-user a {
  padding: 0 10px;
  font-weight: 700;
}

.menu-user a:hover,
.menu-user a.active,
a:not([href]):not([tabindex]):hover {
  color: #609fd4;
  /* font-weight: 700; */
}

.has-border-left {
  border-right: 2px solid white;
}

.table-account {
  display: table;
}

.table-account thead tr {
  border: unset;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 87, 161) 0%, rgba(20, 31, 50) 100%);

  /* Shadow_Button */
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.30);
  font-weight: 300;
  text-transform: uppercase;
}

.table-account thead tr td {
  background: unset;
  text-wrap: nowrap;
}

.table-account thead td i.fa-sort-desc,
.table-account thead td i.fa-sort-asc {
  margin: 0 5px;
  position: absolute;
  cursor: pointer;
  top: 35%;
}

i.fa-sort,.icon-add-new {
  cursor: pointer;
  margin: 0 5px;
}

.table-account thead td:has(.sort) {
  display: flex;
  align-items: center;
}

.table-account thead img.sort {
  /* margin-top: -3px; */
  margin-left: 5px;
  width: 11px;
  height: 10px;
}

.table-account tbody .sort img {
  margin-right: 5px;
}

.table input[type=checkbox],
input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.container-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border: solid 2px white;
}

.fa-check {
  display: none;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

input:checked~.checkmark .fa-check {
  display: block;
  font-size: 11px;
}

.checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.table-account tbody td.image-avt {
  justify-content: center;
  padding: 7px;
}

.table-account .avt,
.avt {
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: auto;
  background-color: #FFCC18;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 25px;
  font-family: 'Barlow';
  font-weight: 600;
}

.table-account td {
  font-size: 18px;
  vertical-align: middle;
}

.table-account thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.table-account thead td {
  border: 0;
  padding: 14px 16px;
}

.table-default thead td {
  padding: 14px 15px;
}

.table-account tbody td {
  padding: 10px 16px;
}

.table-account thead td:first-child {
  border-radius: 5px 0 0 5px;
}

.table-account thead td:last-child {
  border-radius: 0 5px 5px 0;
}

.table-account tbody td {
  border-bottom: 1px solid #dee2e680;
  border-top: none;
}

.table-account tfoot td {
  border: none;
}

.table-account tfoot input {
  width: 40px;
  height: 25px;
  margin-right: 10px;
}

.table-account .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

label {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

label+input.form-control,
label+select.form-control {
  height: 55px;
}

.label textarea {
  min-height: 125px;
}

.table-list {
  height: 540px;
  display: block;
  width: 100%;
  overflow: auto;
  margin-top: 20px;
}

.table-list::-webkit-scrollbar {
  display: none;
}

.table-list .table-account {
  margin: 0;
}

.table-list .table-account {
  text-transform: uppercase;
}
.table-list .table-account.text-normal{
  text-transform:capitalize ;
}
.btn-creer:hover,
.update {
  color: #FFB800;
}

.sucessful {
  color: #00FF29;
}

.error {
  color: #FF0000;
}

.icon-list-group {
  position: absolute;
  right: 26px;
  top: 25px;
}

.list-group .btn-creer {
  max-width: 200px;
}

.list-group {
  flex-direction: row;
  margin: 0 20px;
}

.list-group .form-group {
  width: 100%;
  display: contents;
}

.table-account .ico-action {
  padding: 0 15px;
  min-width:210px;
}

/* .table-account .ico-action {
  font-size: 22px;
} */

.ico-action i {
  margin-top: 8px;
  /* position: absolute; */
  margin-right: 5px;
}

.ico-action img,
.ico-action i {
  /* padding: 3px; */
  display: none;
  margin-right: 10px;
  cursor: pointer;
}

.filter-left {
  margin-top: -15px;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #609FD4;

  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #609FD4;

}

.table tbody tr:hover {
  background-color: rgb(0, 87, 161, .5);
}

.table tbody tr.line td {
  padding: 0;
}

.table tbody tr.line:hover {
  background-color: unset;
}

.table-account tbody tr.child-tr td {
  border: none;
  padding: 16px;
}

.table-account tbody tr.parent-tr td {
  border: none;
  padding: 16px;
}

.table tr:hover .ico-action img,
.table tr:hover .ico-action i {
  display: inline-block;
  /* margin-right: 5px; */
}

.code-input-verify {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.code-input-verify div.input-verify {
  width: 55px;
  height: 55px;
  border-radius: 5px;
  border-width: 0;
  text-align: center;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5px;
}

.code-input-verify input {
  border-width: 0;
  text-align: center;
  border-bottom: 1px solid black;
}

.code-input-verify input:focus {
  outline: none;
}

.code-input-verify input[type=number] {
  -moz-appearance: textfield;
}

.code-input-verify input[type=number]::-webkit-outer-spin-button,
.code-input-verify input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.listing-grid-module .img-model {
  place-content: center;
}

.listing-grid-module .img-model img {
  width: auto;
}

.title-role-detail {
  margin: 35px 0;
}

.accordion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
}

.accordion-title {
  color: #FFF;
  font-size: 20px;
  font-family: Barlow;
  font-weight: 700;
  text-transform: uppercase;
}

.accordion .checkmark {
  top: 7px;
}

.accordion .panel {
  display: none;
  padding-bottom: 30px;
}

.accordion-item .check {
  color: #609FD4;
  margin: 0 5px;
}

.accordion-item .check:hover {
  color: white;
}

.accordion input[type="checkbox"] {
  display: none;
}

.accordion-item .fa {
  margin: 5px;
}

.accordion-item .fa-caret-down,
.accordion-item.active .fa-caret-up {
  display: none;
}

.accordion-item.active .fa-caret-down,
.accordion-item .fa-caret-up {
  display: inline;
}

.name-role-manager {
  margin: 0;
  padding: 0;
}

.role-manager input {
  max-width: 460px;
}

.title-role-detail {
  color: #609FD4;
  font-size: 20px;
  font-family: Barlow;
  font-weight: 700;
  text-transform: uppercase;
}

.pagination .current-page {
  padding: 0px 10px;
  margin: 5px;
  border: 2px solid white;
  border-radius: 5px;
}

.pagination .btn.btn-step {
  padding: 5px;
  color: white;
  margin: 0;
  font-size: 18px;
}
.pagination .btn.btn-creer{
  height: 30px;
  padding: 0;
  width: 60px;
}
.pagination .btn.btn-step.disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.pagination input[type="number"] {
  width: 30px;
  height: 23px;
}
.pagination input[type=number]::-webkit-outer-spin-button,
.pagination input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pagination input[type=number] {
    -moz-appearance:textfield;
}
.content-table {
  height: 660px;
  max-height: 660px;
  overflow: auto;
  margin-top: 20px;
}

.content-table::-webkit-scrollbar {
  display: none;
}

.container-dashboard {
  max-width: 1460px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 15px;
  margin-bottom: 20px;
  min-height: 600px;
  align-content: space-around;
  align-items: stretch;
}

.container-dashboard.row-3 {
  max-width: 1140px;
}

.container-dashboard .card-module {
  max-width: 350px;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 87, 161, 0.8) 0%, rgba(20, 31, 50, 0.8) 100%);
  border-radius: 5px;
  padding: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 350px;
}

.container-dashboard .card-module:hover {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.container-dashboard .card-image {
  min-height: 130px;
  text-align: center;
}

.container-dashboard .card-module h3 {
  font-weight: 400;
  font-size: 36px;
}

.container-dashboard .card-module .content-dashboard {
  font-size: 80px;
  line-height: 96px;
}

.card-module a:hover {
  text-decoration: none;
}

button.slick-arrow::before {
  background: linear-gradient(180deg, rgba(0, 87, 161, 0.8) 0%, rgba(20, 31, 50, 0.8) 100%);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 15px 5px;
  font-size: 18px;
  font-weight: 900;
}

.slick-prev:before {
  content: '<';
}

.slick-next:before {
  content: '>';
}

.card img.icon-edit-card.icon-showmore {
  width: 7px;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.listing-grid-module .card img.icon-edit-card.icon-showmore {
  right: 25px;
}

.dropdown-showmore {
  position: absolute;
  width: 116px;
  background: linear-gradient(180deg, #0057A1 0%, #142033 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  color: white;
  padding: 10px;
  text-align: center;
  top: 10px;
  right: 30px;
  display: none;
}

.dropdown-showmore.active {
  display: block;
}

.dropdown-showmore ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-showmore ul li {
  padding: 8px 0;
  cursor: pointer;
}

table tbody tr:has(input:checked){
  background-color: rgb(0, 87, 161, .5);
}

input:checked+.checkmark {
  background: white;
}

input:checked+.checkmark i {
  color: #000;
}

.no-border {
  border: 0;
}

.btn-select {
  background-color: white;
  border: 1px;
  color: #000;
  width: 100%;
  text-align: left;
  height: 55px;
}

.btn-select::after {
  position: absolute;
  top: 25px;
  right: 5px;
}

.btn-select:hover {
  background-color: white;
  color: #000;
}

.btn-select+.dropdown-menu.show {
  width: 100%;
}

.btn-select:focus {
  background-color: white;
  outline: none;
}

.btn-select+.dropdown-menu.show ul {
  list-style: none;
  padding-left: 15px;
}

.btn-select+.dropdown-menu.show ul li {
  padding: 0;
  cursor: pointer;
}

.btn-select+.dropdown-menu.show ul li:hover {
  font-weight: 700;
  background: unset;
}

.btn-select+.dropdown-menu.show {
  border: 1px solid;
  border-radius: 0;
  padding: 0;
}

.modal .btn-creer {
  max-width: 185px;
}

.w-49 {
  max-width: 49%;
}

.table-account.table-default tbody td {
  padding: 15px;
}

.table-account.table-default .ico-action {
  font-size: unset;
}

.content-table:has(.table-default) {
  max-height: 650px;
}

.action-tooltip {
  cursor: pointer;
}

.industrial-edit {
  display: flex;
  column-gap: 50px;
  margin-bottom: 20px !important;
}

.industrial-edit>div {
  width: 50%;
}

.industrial-edit .container-md {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2vw;
  row-gap: 20px;
  justify-content: space-between;
}

.industrial-edit .container-md .form-group {
  width: 47%;
}

.industrial-edit.small-module .container-md .form-group {
  width: 40%;
}

.industrial-edit.small-module>div {
  width: 60%;
}

.industrial-edit textarea.form-control {
  height: 267px;
}

.parent-tr .avt {
  background-color: unset;
  width: 53px;
  height: 53px;
}

.table .icon-process {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.page-activity {
  margin-bottom: 20px;
}

.item-activity {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dee2e680;
  padding-bottom: 20px;
  margin-top: 20px;
}

.item-activity .avt {
  margin: 0;
  margin-right: 10px;
}

.item-activity .text-bold {
  font-weight: bold;
}

.item-activity .div-process {
  padding-top: 10px;
}

.item-activity .date-time {
  padding-top: 15px;
}

.item-activity .div-process a {
  margin-top: 20px;
  align-items: center;
}

.item-activity .div-process a:hover {
  text-decoration: none;
}

.item-activity .div-process a img {
  width: 19px;
  height: 19px;
  margin-right: 10px;
}

.table-account .child-tr:has(.action-tooltip):hover {
  background: unset;
}

.table-account .child-tr td:has(.action-tooltip) {
 padding-left: 70px;
}

.filter-multi-select .dropdown-item .custom-control-label {
  color: #000;
}

.filter-multi-select>.dropdown-toggle::before {
  display: none;
}

.filter-multi-select>.dropdown-toggle::after {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.filter-multi-select>.viewbar {
  min-height: 55px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between
}

.filter-multi-select>.viewbar span {
  color: #000;
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.filter-multi-select>.viewbar>.selected-items>.item {
  color: #000;
  font-family: Barlow;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  background: #C0C0C0;
}

.filter-multi-select .items .dropdown-item:first-child {
  display: none;
}

.btn-select-multiple {
  width: 100%;
  background: white;
  min-height: 55px;
  text-align: left;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  color: black;
  cursor: pointer;
  row-gap: 5px;
}

.btn-select-multiple p {
  color: #000;
  border-radius: 5px;
  background: #C0C0C0;
  margin: 0 5px;
  padding: 5px;
  font-weight: 400;
  font-size: 18px;
}

.select-content {
  height: 50vh;
  overflow: auto;
  flex-direction: row;
  align-items: flex-start;
  align-content: flex-start;
  margin-top: 20px;
  column-gap: 20px;
}

.select-content input[type='checkbox'] {
  display: none;
}

.select-content label {
  width: 23%;
}

.select-content label>p {
  margin: 0;
  word-wrap: break-word;
}

.select-content label .checkmark {
  top: 6px;
  left: 6px;
}

.modal .form-group input,
.modal .form-group select {
  min-height: 55px;
}

.modal .form-group .fa-search {
  float: right;
  width: 20px;
  position: relative;
  margin-top: -35px;
  margin-right: 10px;
  color: #000;
  cursor: pointer;
}

.item-select i {
  font-size: 12px;
  font-weight: 100;
  cursor: pointer;
  margin-left: 15px;
}

.item-select i:hover {
  color: white;
}
.main-profile{
  min-height: 60vh;
}
.section-profile {
  display: flex;
  max-width: 1800px;
  align-items: center;
  align-content: center;
  column-gap: 80px;
  margin: auto;
  margin-top: 70px;
}

.section-profile div.avt {
  width: 292px;
  height: 292px;
  flex-shrink: 0;
  border-radius: 50%;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-profile div.avt p {
  font-size: 72px;
}

.section-profile p {
  font-size: 25px;
  font-weight: 400;
}

.section-profile .title-name {
  font-size: 55px;
  font-weight: 700;
}
canvas{
  width: 100%!important;
  height: 100%!important;
}
.infor-3d canvas{
  height: 100%!important;
}
.infor-module{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.infor-module .information-module{
  text-align: left;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;

}
.infor-module .information-module .img-module{
width: 212px;
height: 107px;
margin-bottom: 25px;
background-size:contain;
background-repeat: no-repeat;
background-position: center;
}
.infor-module .information-module a{
  margin-left: 50px;
  padding: 5px;
}
.infor-module .information-module a:hover{
  text-decoration: none;
}
.infor-module .information-3d {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.10);
  width: 281px;
}
.infor-module .information-3d >div{
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.infor-module .information-3d div:last-child{
  margin-bottom: 0;
}
.infor-module .information-3d img{
  margin-right: 33px;
  width: 20px;
}
.infor-3d .title-module{
  height: 50px;
  display:flex;
  justify-content: center;
  margin-top: 5px;
}
.infor-3d .title-module p{
  color: #FFF;
text-align: center;
font-size: 18px;
font-weight: 300;
/* margin-bottom: 20px; */
text-transform: capitalize;
margin-right:20px ;
}
.infor-3d .tabs-module{
  display: flex;
  column-gap: 33px;
  align-self: center;
  justify-content: center;
}
.infor-3d .tabs-module img{
  opacity: 0.33;
  cursor: pointer;
  width:30px;
}
.infor-3d .tabs-module img.active{
  opacity: 1;
}
.infor-3d .tabs-module img.disabled{
  cursor: not-allowed;
}
#select-item-3d{
  max-width: 200px;margin: auto;
  height: auto;
}
.mt-70{
  margin-top: 70px;
}
.img-version{
  margin: 20px 0;
  max-height: 300px;
  height: 300px;
}
table a:hover{
  color: #FF7A00;
}
.link-download{
  color: #20F2FF;
  text-decoration: underline;
}
.table-update{
  height: 650px;
}
.symbol-time{
  width: 2px;
  position: relative;
  margin-right: -10px;
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
}
.note-editor.note-airframe, .note-editor.note-frame{
  background: white;
  color: #000;
}
.note-editor.note-airframe p, .note-editor.note-frame p{
  color: #000;
}
.note-editor.note-airframe .note-editing-area, .note-editor.note-frame .note-editing-area{
  border-top: 1px solid;
}
.form-control-texarea{
  background: white;
  color: #000;
  padding: 15px;
  border-radius: 5px;
}
.form-control-texarea strong{
  color: #000;
}
.detail-3d #load-3d{
  height: 65vh!important;
}
.content-version{
  height: 60vh;
  overflow: auto;
  max-width: 605px;
  width: 605px;
}
.content-version::-webkit-scrollbar{
  display: none;
}
.d-flex-version{
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0;
}
.img-kitting{
  max-width: 1137px;
}
.h-300 + .place-content-center,.h-400 + .place-content-center{
  position: absolute;
  bottom: 10px;
  width: 100%;
  max-width: 1800px;
}
.h-300{
  height: 300px;
  overflow: auto;
}
.h-400{
  height: 400px;
  overflow: auto;
}
.h-300::-webkit-scrollbar,.h-400::-webkit-scrollbar{
  display: none;
}
.select-check .check:hover{
  /* color: #20F2FF; */
  cursor: pointer;
}
.open-fullscreen{
  position: absolute;
  top: 5px;
  left: 25px;
  font-size: 24px;
  cursor: pointer;
  /* display: none; */
}
.name-small-module{
  display: flex;
}
.name-small-module input:first-child{
  width: 40%;
  border-radius: 5px 0 0 5px;
  border: 0;
}
.name-small-module input:nth-child(2){
  border-radius:0 5px 5px 0;
  border: 0;
}
.icon-information img{
  margin-right: 10px;
  margin-top: -4px;
}
.form-request-kitting th,.form-request-kitting table thead th,.form-request-kitting table td{
  border: 0;
}
.form-request-kitting table tr:hover{
  background-color: unset;
}
.form-request-kitting table {
  max-height: 200px;
}
.form-request-kitting table thead{
  position: sticky;
  top: 0;
}
.form-request-kitting table th{
  color: #FFCC18;
}
.form-request-kitting table tr td{
  vertical-align: middle;
}
.form-request-kitting table tr td:last-child{
  max-width: 99px;
}
.table-request-kitting{
  height: 400px;
  overflow: auto;
}
.modal .form-request-kitting input,.modal .form-request-kitting select{
  min-height: 30px;
  height: 30px;
}
.table-request-kitting::-webkit-scrollbar{
  display: unset;
}
.mw-100{
  min-width: 100px;
}
.mw-55{
  min-width: 55px;
}
.modal-requestKitting{
  max-width: 768px;
}
.modal-requestKitting .form-row-modal .form-group{
  flex: 50%;
}
@media only screen and (max-height:933px){
  .h-300 + .place-content-center,  .h-400 + .place-content-center{
    position: relative;
    bottom: 10px;
    width: 100%;
    max-width: 1800px;
  }
  .listing-grid, .listing-grid-module{
    padding: 0;
  }
  /* .listing-grid-module .row .card-body{
    min-height: 300px;
  } */
}
@media only screen and (max-width:1800px){
  .row.p-70{
    margin: 0;
  }
  .table-list{
    padding:0 30px;
  }
  .main-no-logo{
    margin:20px 15px ;
  }
  .content-version{
    max-width: unset;
    width: 30%;
  }
  .img-kitting{
    width: 68%;
  }
  .img-kitting img{
    width: 100%;
  }
}
@media only screen and (max-width: 1440px) {

  .main-no-logo,
  header,.main-profile {
    padding: 0 20px;
  }
  .listing-grid-module .img-model img {
    width: 100%;
    height: auto;
}

}

@media only screen and (min-width: 768px) {
  .listing-grid-module .col-md-3 {
    max-width: 350px;
    padding: 5px;
  }

  /* .listing-grid-module .btn-creer{
    margin-left: 10px;
  } */
}

@media only screen and (max-width: 768px) {
  .icon-list-group {
    right: 0;
  }

  .main-no-logo {
    margin-right: 20px;
  }

  .menu-user {
    max-width: 100%;
    width: 100% !important;
    position: unset;
    margin-top: 20px;
    text-align: center !important;
  }

  .modal .modal-body {
    padding: 16px;
  }
  .section-profile{
    display: block;
    margin: 0 20px;
  }
}