@charset "UTF-8";

/* CSS Document */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ul,
li {
  list-style-type: none;
}
a,
button,
input[type="submit"] {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
a,
img,
a:hover,
button {
  text-decoration: none;
  outline: none !important;
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
}
img {
  max-width: 100%;
  height: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
:focus,
:hover,
:active {
  outline: none !important;
  box-shadow: none !important;
}

.main {
  width: calc(100% - 260px);
  padding: 0 40px;
  margin-left: auto;
  transition: width 0.3s;
}
.main.reduced {
  width: calc(100% - 90px);
}
.tooltip {
  z-index: 9999;
}

/* PRÉ LOADING ICONS */

body::after {
  content: "";
  display: none;
  background-image: url(../images/menu-home-active.svg),
    url(../images/menu-users-active.svg), url(../images/menu-box-active.svg),
    url(../images/menu-type-box-active.svg),
    url(../images/menu-truck-loading-active.svg),
    url(../images/menu-users-active.svg), url(../images/menu-file-check.svg),
    url(../images/menu-chart-active.svg), url(../images/menu-company-active.svg),
    url(../images/menu-briefcase-active.svg),
    url(../images/menu-truck-active.svg), url(../images/menu-user-md-active.svg),
    url(../images/menu-clipboard-active.svg),
    url(../images/menu-clipboard-notes-active.svg),
    url(../images/icon-edit-active.svg), url(../images/menu-setting-active.svg);
}

/* --- FONTS --- */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff"),
    url("../fonts/Montserrat-Regular.svg#Montserrat-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Black";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"),
    url("../fonts/Montserrat-Black.woff") format("woff"),
    url("../fonts/Montserrat-Black.svg#Montserrat-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Bold";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff"),
    url("../fonts/Montserrat-Bold.svg#Montserrat-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat SemiBold";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/Montserrat-SemiBold.woff") format("woff"),
    url("../fonts/Montserrat-SemiBold.svg#Montserrat-Bold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Light";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"),
    url("../fonts/Montserrat-Light.woff") format("woff"),
    url("../fonts/Montserrat-Light.svg#Montserrat-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat ExtraLight";
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"),
    url("../fonts/Montserrat-ExtraLight.woff") format("woff"),
    url("../fonts/Montserrat-ExtraLight.svg#Montserrat-ExtraLight")
      format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nexa";
  src: url("../fonts/Nexa-Light.woff2") format("woff2"),
    url("../fonts/Nexa-Light.woff") format("woff"),
    url("../fonts/Nexa-Light.svg#Nexa-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nexa Heavy";
  src: url("../fonts/NexaHeavy.woff2") format("woff2"),
    url("../fonts/NexaHeavy.woff") format("woff"),
    url("../fonts/NexaHeavy.svg#NexaHeavy") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- END FONTS --- */

/* --- TEXTS & TITLES --- */

/* TITLES */

.title {
  font-family: "Nexa";
  line-height: 120%;
}
.title.strong,
.title strong {
  font-family: "Nexa Heavy";
}
.title.double-extra-large {
  font-size: 40px;
}
.title.extra-large {
  font-size: 32px;
}
.title.large {
  font-size: 24px;
}
.title.medium {
  font-size: 18px;
}
.title.small {
  font-size: 16px;
}
.title.mini {
  font-size: 14px;
}

/* TEXTS */

.text {
  font-family: "Montserrat Light";
}
.text.regular {
  font-family: "Montserrat";
}
.text.strong,
.text strong {
  font-family: "Montserrat Bold";
}
.text.medium {
  font-size: 16px;
}
.text.small {
  font-size: 14px;
}
.text.mini {
  font-size: 12px;
}

/* --- ENDS TEXTS & TITLES --- */

/* --- COLORS --- */

/* TEXT */

.text-color.primary {
  color: #6d66d0;
}
.text-color.secondary {
  color: #202020;
}
.text-color.magenta {
  color: #ff004d;
}
.text-color.gray {
  color: #676767;
}
.text-color.light-gray {
  color: #f8f8f8;
}
.text-color.soft-gray {
  color: #dddddd;
}
.text-color.off-white {
  color: #efefef;
}
.text-color.white {
  color: #ffffff;
}

/* BORDERS */

.border-color.primary {
  border-color: #6d66d0;
}
.border-color.secondary {
  border-color: #202020;
}
.border-color.magenta {
  border-color: #ff004d;
}
.border-color.gray {
  border-color: #676767;
}
.border-color.light-gray {
  border-color: #f8f8f8;
}
.border-color.soft-gray {
  border-color: #dddddd;
}
.border-color.off-white {
  border-color: #efefef;
}
.border-color.white {
  border-color: #ffffff;
}

/* BACKGROUNDS */

.background-color.primary {
  background-color: #6d66d0;
}
.background-color.secondary {
  background-color: #202020;
}
.background-color.magenta {
  background-color: #ff004d;
}
.background-color.gray {
  background-color: #676767;
}
.background-color.light-gray {
  background-color: #f8f8f8;
}
.background-color.soft-gray {
  background-color: #dddddd;
}
.background-color.off-white {
  background-color: #efefef;
}
.background-color.white {
  background-color: #ffffff;
}

/* --- END COLORS --- */

/* --- LOGIN --- */

.login {
  background-image: url(../images/login/background-login.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* LOGO */

.content-login header .logo {
  width: fit-content;
}
.content-login header .logo a {
  width: 100%;
  max-width: 335px;
  display: block;
}

/* TITLE */

.content-login .content-title {
  max-width: 680px;
}

/* IMAGE */

.content-login .image {
  max-width: 700px;
}
.content-login.forgot-password .image {
  max-width: 540px;
}

/* ASIDE */

.login aside {
  background: #fff;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* FORM LOGIN */

.login .content-form.mobile {
  display: none;
}
.login .content-form.web {
  display: block;
}
.login .content-form .custom-form ::placeholder {
  color: #6d66d0;
  font-size: 16px;
  font-family: "Montserrat";
  line-height: 100%;
}
.login .content-form .custom-form :focus {
  box-shadow: none !important;
}
.login .content-form .custom-form input.form-control {
  height: 51px;
  line-height: 100%;
  padding: 15px 15px 15px 50px;
  border-radius: 14px;
  background-color: transparent;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  border: 1px solid #6d66d0;
}
.login .content-form .custom-form input[type="email"] {
  background-image: url(../images/icon-mail.svg);
}

/* PASSWORD */

.login .content-form .custom-form .senha-input {
  background-image: url(../images/icon-pass.svg);
  appearance: none;
  -webkit-appearance: none;
}
.login .content-form .custom-form .password-toggle {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  cursor: pointer;
  display: block;
}
.login .content-form .custom-form .hide-password {
  display: none;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-clear-button,
input[type="password"]::-webkit-inner-spin-button,
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-password-toggle-button {
  display: none !important;
  appearance: none;
}

/* FEEDBACK */

.login .content-form .custom-form.was-validated input.form-control:valid {
  border-color: #6d66d0;
}
.login .content-form .custom-form.was-validated input.form-control:invalid,
.login .content-form .custom-form.was-validated input.form-control.invalid,
.login
  .content-form
  .custom-form.was-validated
  input.form-control:invalid::placeholder,
.login
  .content-form
  .custom-form.was-validated
  input.form-control.invalid::placeholder {
  border-color: #ff004d;
}
.login .content-form .custom-form.was-validated input.form-control:invalid,
.login
  .content-form
  .custom-form.was-validated
  input.form-control:invalid::placeholder {
  color: #ff004d;
}
.login
  .content-form
  .custom-form.was-validated
  input[type="email"].form-control:valid {
  background-image: url(../images/icon-mail.svg);
}
.login
  .content-form
  .custom-form.was-validated
  input[type="email"].form-control:invalid,
.login
  .content-form
  .custom-form.was-validated
  input[type="email"].form-control.invalid {
  background-image: url(../images/icon-mail-secondary.svg);
}
.login
  .content-form
  .custom-form.was-validated
  .senha-input.form-control:invalid,
.login
  .content-form
  .custom-form.was-validated
  .senha-input.form-control.invalid {
  background-image: url(../images/icon-pass-secondary.svg);
}
.login .content-form .custom-form.was-validated .password-toggle.validated {
  top: calc(50% - 11px);
}
.login .content-form .custom-form.was-validated .password-toggle.validated img {
  display: none;
}
.login
  .content-form
  .custom-form.was-validated
  .password-toggle.validated::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
}
.login
  .content-form
  .custom-form.was-validated
  .show-password.password-toggle.validated::before {
  background-image: url(../images/icon-eye-secondary.svg);
}
.login
  .content-form
  .custom-form.was-validated
  .hide-password.password-toggle.validated::before {
  background-image: url(../images/icon-eye-slash-secondary.svg);
}

/* ACTIONS */

.login .custom-form .button .btn {
  color: #ffffff;
  line-height: 100%;
  height: 60px;
  border: 0;
  border-radius: 14px;
  background-color: #6d66d0;
}
.login .custom-form .button .btn:hover {
  background-color: #202020;
}
.login .custom-form .forgot-password a:hover {
  color: #6d66d0;
}

/* --- END LOGIN --- */

/* --- HEADER --- */

.header {
  padding: 25px;
}

/* NAVBAR */

.navbar {
  width: calc(100% - 260px);
  height: 100%;
  padding: 0;
  margin-left: auto;
  transition: width 0.3s;
}
.navbar.reduced {
  width: calc(100% - 90px);
}
.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.navbar-nav li {
  width: auto;
  display: flex;
  align-items: center;
}
.navbar-nav li.dropdown .dropdown-menu {
  background-color: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1) !important;
  border: 0;
  border-radius: 10px;
  right: 0;
  left: initial;
  position: absolute;
  gap: 10px;
  padding: 15px;
}
.navbar-nav li.dropdown .dropdown-menu.show {
  display: flex;
  flex-direction: column;
}
.navbar-nav li.dropdown .dropdown-menu li {
  border-bottom: 1px solid #f8f8f8;
  padding-bottom: 10px;
}
.navbar-nav li.dropdown .dropdown-menu li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.navbar-nav li.dropdown .dropdown-menu li .dropdown-item {
  padding: 0;
}
.navbar-nav li.dropdown .dropdown-menu li a:hover {
  color: #6d66d0;
  background-color: transparent;
}
.navbar-nav li.dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
}
.navbar-nav li.dropdown .dropdown-toggle.show {
  color: #676767;
}
.navbar-nav li.dropdown .dropdown-toggle:hover {
  color: #6d66d0;
}
.navbar-nav li.dropdown .dropdown-toggle::after {
  content: "";
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
  background-image: url(../images/icon-down.svg);
  border: 0;
}
.navbar-nav li.only-icon .nav-link {
  width: 20px;
  height: 20px;
  position: relative;
  padding: 0;
}
.navbar-nav li.dropdown.only-icon .dropdown-toggle::after {
  display: none;
}
.navbar-nav li.dropdown.notifications .dropdown-menu {
  min-width: 250px;
}
.navbar-nav li.dropdown.notifications.new .dropdown-toggle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ff004d;
  position: absolute;
  right: 1px;
  top: 2px;
  z-index: 1;
}
.navbar-nav li.account {
  margin-left: 25px;
}
.navbar-nav li.account .avatar {
  width: 46px;
  height: 46px;
  background-color: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 50%;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-nav li.account .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MENU */

.btn-menu {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: inline-block;
  background-color: transparent;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/icon-menu.svg);
  margin-right: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-menu:hover {
  background-image: url(../images/icon-menu-gray.svg);
}

/* --- END HEADER --- */

/* --- ICONS HEADER --- */

.navbar-nav li.only-icon .nav-link .icon {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease-in;
}
.navbar-nav li.dropdown .nav-link .icon,
.navbar-nav li.dropdown .nav-link span {
  transition: all 0.2s ease-in;
}
.icon.bell {
  background-image: url(../images/icon-bell.svg);
}
.navbar-nav li.only-icon .nav-link:hover .icon.bell,
.icon.bell.active {
  background-image: url(../images/icon-bell-active.svg);
}
.icon.search {
  background-image: url(../images/icon-search.svg);
}
.navbar-nav li.only-icon .nav-link:hover .icon.search,
.icon.search.active {
  background-image: url(../images/icon-search-active.svg);
}
.navbar-nav li.search .nav-link.active .icon {
  background-image: url(../images/icon-close.svg);
}
.navbar-nav li.search .nav-link.active:hover .icon.search {
  background-image: url(../images/icon-close-active.svg);
}

/* --- END ICONS HEADER --- */

/* --- ASIDE --- */

.aside {
  width: 270px;
  height: 100vh;
  padding: 30px 20px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9998;
  position: fixed;
  left: 0;
  top: 0;
}
.aside.reduced {
  width: 100px;
}

/* LOGO */

.aside .logo,
.aside .logo a,
.aside .logo a img {
  width: 155px;
  height: 34px;
}
.aside .logo {
  margin-bottom: 50px;
  overflow: hidden;
  transform: translateX(0);
  transition: all 0.2s ease-in;
}
.aside .logo a {
  display: inline-block;
}
.aside .logo a img {
  object-fit: contain;
  position: relative;
}
.aside.reduced .logo.reduced {
  width: 34px;
}

/* MENU */

.aside-nav {
  padding: 0 5px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 80vh;
}
.aside-nav::-webkit-scrollbar {
  width: 5px;
}
.aside-nav::-webkit-scrollbar-track {
  background-color: #f8f8f8;
  border-radius: 999px;
}
.aside-nav::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  border-radius: 999px;
  border: 2px solid #dddddd;
}
.aside-nav .nav {
  flex-wrap: wrap;
  gap: 25px;
}
.aside-nav .nav .nav-item {
  position: relative;
}
.aside-nav .nav .nav-item:last-child {
  margin-bottom: 0;
}
.aside-nav .nav .nav-item .nav-link {
  height: auto;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.2s ease-in;
}
.aside-nav .nav .nav-item .nav-link:hover,
.aside-nav .nav .nav-item.active > .nav-link,
.aside-nav .nav .nav-item .nav-link:hover span,
.aside-nav .nav .nav-item.active .nav-link span {
  color: #6d66d0;
}
.aside-nav .nav .nav-item .nav-link .icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease-in;
}
.aside-nav .nav .nav-item .nav-link .icon,
.aside-nav .nav .nav-item .nav-link span {
  transition: all 0.2s ease-in;
}
.aside-nav .nav .nav-item .nav-link:hover .icon::before {
  opacity: 1;
}

/* SUBMENU OPEN */

.aside-nav .nav .nav-item .dropdown-toggle::after {
  content: "";
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 6px;
  background-image: url(../images/icon-right.svg);
  border: 0;
  position: absolute;
  right: 0;
  transform: translateX(0);
  transition: all 0.2s ease-in;
}
.aside-nav .size-menu::-webkit-scrollbar {
  width: 5px;
  height: 100%;
}
.aside-nav .size-menu {
  overflow: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.aside-nav .dropdown-menu,
.aside-nav .dropdown-menu .dropdown-submenu {
  display: block !important;
  top: 0 !important;
  left: 260px !important;
  position: fixed !important;
  width: 260px;
  height: 100%;
  border: 0;
  border-radius: 0;
  transform: translate(-20px, 0) !important;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in;
}
.aside-nav .dropdown-menu .dropdown-submenu {
  left: 260px !important;
}
.aside-nav .dropdown-menu.show,
.aside-nav .dropdown-menu .dropdown-submenu.show {
  transform: translate(0, 0) !important;
  opacity: 1;
  pointer-events: initial;
  background-color: #ffffff;
  border-left: 1px solid #eee;
  box-shadow: 60px 0px 140px -120px #000 !important;
}
.aside-nav .dropdown-menu .sidebar-heading {
  display: none;
}
.aside-nav .dropdown-menu li:last-of-type {
  padding-bottom: 0px;
}
.aside-nav .dropdown-menu .dropdown-item:hover .icon::before {
  opacity: 1;
}
.aside-nav .dropdown-menu .dropdown-item {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  background-color: transparent;
  position: relative;
}
.aside-nav .dropdown-menu .active > .dropdown-item span,
.aside-nav .dropdown-menu .dropdown-item:hover span {
  transition: all 0.2s ease-in;
}
.aside-nav .dropdown-menu .active > .dropdown-item,
.aside-nav .dropdown-menu .dropdown-item:hover,
.aside-nav .dropdown-menu .active > .dropdown-item span,
.aside-nav .dropdown-menu .dropdown-item:hover span {
  color: #6d66d0;
}

/* MENU REDUCED */

.aside.reduced .aside-nav .nav .nav-item .nav-link {
  width: 20px;
  min-width: 20px;
  height: 21px;
  min-height: 21px;
  transition: all 0.2s ease-in;
}
.aside.reduced .aside-nav .nav .nav-item .dropdown-toggle::after {
  transform: translateY(0);
  transition: all 0.2s ease-in;
}
.aside.reduced .aside-nav .dropdown-menu,
.aside-nav .dropdown-menu .dropdown-submenu {
  left: 100px !important;
}

/* --- END ASIDE --- */

/* --- ICONS MENU --- */

.icon.home {
  background-image: url(../images/menu-home.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.home,
.icon.home.active {
  background-image: url(../images/menu-home-active.svg);
}
.icon.users {
  background-image: url(../images/menu-users.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.users,
.icon.users.active {
  background-image: url(../images/menu-users-active.svg);
}
.icon.company {
  background-image: url(../images/menu-company.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.company,
.icon.company.active {
  background-image: url(../images/menu-company-active.svg);
}
.icon.briefcase {
  background-image: url(../images/menu-briefcase.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.briefcase,
.icon.briefcase.active {
  background-image: url(../images/menu-briefcase-active.svg);
}
.icon.truck {
  background-image: url(../images/menu-truck.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.truck,
.icon.truck.active {
  background-image: url(../images/menu-truck-active.svg);
}
.icon.user-md {
  background-image: url(../images/menu-user-md.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.user-md,
.icon.user-md.active {
  background-image: url(../images/menu-user-md-active.svg);
}
.icon.box {
  background-image: url(../images/menu-box.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.box,
.icon.box.active {
  background-image: url(../images/menu-box-active.svg);
}
.icon.type-box {
  background-image: url(../images/menu-type-box.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.type-box,
.icon.type-box.active {
  background-image: url(../images/menu-type-box-active.svg);
}
.icon.truck-loading {
  background-image: url(../images/menu-truck-loading.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.truck-loading,
.icon.truck-loading.active {
  background-image: url(../images/menu-truck-loading-active.svg);
}
.icon.file-check {
  background-image: url(../images/menu-file-check.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.file-check,
.icon.file-check.active {
  background-image: url(../images/menu-file-check-active.svg);
}
.icon.clipboard {
  background-image: url(../images/menu-clipboard.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.clipboard,
.icon.clipboard.active {
  background-image: url(../images/menu-clipboard-active.svg);
}
.icon.clipboard-notes {
  background-image: url(../images/menu-clipboard-notes.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.clipboard-notes,
.icon.clipboard-notes.active {
  background-image: url(../images/menu-clipboard-notes-active.svg);
}
.icon.chart {
  background-image: url(../images/menu-chart.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.chart,
.icon.chart.active {
  background-image: url(../images/menu-chart-active.svg);
}
.icon.setting {
  background-image: url(../images/menu-setting.svg);
}
.aside-nav .nav .nav-item .nav-link:hover .icon.setting,
.icon.setting.active {
  background-image: url(../images/menu-setting-active.svg);
}

/* --- END ICONS MENU --- */

/* --- SCAN GLOBAL --- */

.scan-global {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
}
.scan-global .nav-item .nav-link {
  background-color: #6d66d0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.scan-global .nav-item .nav-link:hover {
  transform: scale(0.95);
}
.scan-global .nav-item .nav-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.scan-global .nav-item.dropdown .dropdown-toggle::after {
  display: none;
}
.scan-global .nav-item.dropdown .dropdown-menu {
  margin-bottom: 15px !important;
}

.scan-global .nav-item.dropdown .dropdown-menu::after {
  content: "";
  position: absolute;
  bottom: -17px;
  right: 30px;
  border-width: 9px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  z-index: -1; /* fica atrás para parecer sombra */
}

/* --- END SCAN GLOBAL --- */

/* --- CARDS --- */

.cards .card {
  height: 100%;
  padding: 25px;
  border: 0;
  border-radius: 30px;
  transition: all 0.2s ease-in;
}
.cards .card .title {
  padding-right: 10px;
}
.cards .card .content-card.charts,
.cards .card .content-card.charts > div {
  height: 100%;
}
.cards .card .view-more:hover {
  color: #202020;
}

/* CARD MENU */

.cards .card .navbar-nav li.dropdown {
  align-items: flex-start;
}
.cards .card .navbar-nav li.dropdown .nav-link .icon.more {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  background-image: url(../images/icon-more.svg);
}
.cards .card .navbar-nav li.dropdown .nav-link:hover .icon.more {
  transform: scale(0.95);
}
.cards .card .navbar-nav li.dropdown .nav-link .icon.more-hor {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  background-image: url(../images/icon-more-hor.svg);
}
.cards .card .navbar-nav li.dropdown .nav-link:hover .icon.more-hor {
  transform: scale(0.95);
}
.cards .card .navbar-nav li.dropdown .dropdown-toggle::after {
  display: none;
}

/* --- END CARDS --- */

/* --- FILTER SEARCH --- */

.content-filter-search form {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.content-filter-search input {
  width: 100%;
  height: 40px;
  font-family: "Montserrat";
  font-size: 14px;
  color: #202020;
  border: 0;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding-right: 50px;
}
.content-filter-search input:focus {
  box-shadow: none;
  background-color: #f8f8f8;
}
.content-filter-searchinput::placeholder {
  font-family: "Montserrat";
  font-size: 14px;
  color: #676767;
}
.content-filter-search .btn {
  width: 24px;
  height: 24px;
  text-indent: -9999px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/icon-search.svg);
  position: absolute;
  right: 10px;
  top: 8px;
  transition: all 0.2s ease-in;
}
.content-filter-search .btn:hover {
  background-image: url(../images/icon-search-active.svg);
}
.content-filter-search .btn:active,
.search .btn:focus {
  border: 0;
}

/* --- END FILTER SEARCH --- */

/* --- FILTER ACTIONS --- */

.content-filter-actions .actions .btn.filter.active {
  color: #6d66d0;
  border-color: #6d66d0 !important;
  background-color: transparent;
}

/* --- END FILTER ACTIONS --- */

/* --- FILTER OPEN --- */

.content-filter-open {
  height: 0px;
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
  transition: all 0.2s ease;
}
.content-filter-open.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: initial;
  transition: all 0.2s ease;
}
.content-filter-open form {
  border-top: 1px solid #dddddd;
  padding-top: 30px;
  margin-top: 30px;
}

/* --- END FILTER OPEN --- */

/* --- TABS --- */

.custom-form .tab-content {
  height: 100%;
}
.custom-form .tab-content .tab-pane {
  height: calc(100% - 18px);
}
.custom-form .tab-content .tab-pane:focus {
  background-color: transparent;
}
.custom-form .tab-content .subtitle a:hover {
  color: #6d66d0;
}
.custom-tabs .nav-tabs {
  border-bottom: 0;
  gap: 10px;
}
.custom-tabs .nav-tabs .nav-link.active {
  width: fit-content;
  color: #ffffff;
  font-size: 14px;
  font-family: "Montserrat";
  background-color: #6d66d0;
  line-height: 100%;
  height: 40px;
  border: 1px solid #6d66d0;
  border-radius: 10px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
}
.custom-tabs .nav-tabs .nav-link {
  width: fit-content;
  font-size: 14px;
  font-family: "Montserrat";
  color: #676767;
  background-color: transparent;
  line-height: 100%;
  height: 40px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-tabs .nav-tabs .nav-link:hover {
  color: #6d66d0;
  border: 1px solid #6d66d0;
}
.custom-tabs .nav-tabs .nav-link.active:hover {
  color: #ffffff;
  border: 1px solid #6d66d0;
}

/* --- END TABS --- */

/* --- CUSTOM FORM --- */

.custom-form {
  width: 100%;
}
.custom-form .content-form {
  min-height: 54vh;
}
.custom-form .content-form.report {
  min-height: initial;
}

/* INPUTS */

.custom-form.was-validated .form-control:valid:focus,
.custom-form .form-control.is-invalid,
.custom-form.was-validated .form-control:invalid {
  box-shadow: none;
  border: none;
  background-image: none;
  background-color: #f8f8f8;
}
.custom-form input[type="text"],
.custom-form input[type="tel"],
.custom-form input[type="date"],
.custom-form input[type="datetime-local"],
.custom-form input[type="time"],
.custom-form input[type="email"],
.custom-form input[type="number"],
.custom-form input[type="file"],
.custom-form input[type="search"],
.custom-form input[type="password"],
.custom-form textarea,
.custom-form select,
.custom-form .bootstrap-select button {
  width: 100%;
  height: 46px;
  font-family: "Montserrat";
  font-size: 16px;
  color: #676767;
  background-color: #f8f8f8 !important;
  border: 0;
  border-radius: 10px;
  padding: 0 15px;
  appearance: none;
  background-image: none;
}
.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: none;
}
.custom-form.was-validated .content-form input.form-control.invalid {
  border: 1px solid #ff004d;
}

/* NUMBER */

.custom-form input[type="number"],
.custom-form input[type="number"]:hover,
.custom-form input[type="number"]:active,
.custom-form input[type="number"]:focus {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
}

/* TEXTAREA */

.custom-form textarea {
  height: 120px;
  resize: none;
  padding: 15px;
}
.custom-form textarea.code {
  height: 350px;
  white-space: pre;
  font-family: monospace;
  font-size: 14px;
}

/* SELECT */

.custom-form select,
.custom-form .bootstrap-select button {
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  background-size: 24px;
  background-image: url(../images/icon-down.svg);
  padding-right: 40px;
  padding-left: 15px;
}
.custom-form .bootstrap-select button:focus,
.custom-form .bootstrap-select button:active {
  border: 0 !important;
  box-shadow: none !important;
  background-color: #f8f8f8;
  outline: 0 !important;
}
.custom-form .bootstrap-select .bs-actionsbox .btn-group {
  display: flex;
}
.custom-form .bootstrap-select .actions-btn {
  width: 49%;
  background-image: none;
  cursor: pointer;
  padding: 10px;
  font-size: 11px;
  height: auto;
  border-radius: 5px !important;
}
.custom-form .bootstrap-select .actions-btn.bs-select-all {
  margin-right: 0.5%;
}
.custom-form .bootstrap-select .actions-btn.bs-deselect-all {
  margin-left: 0.5%;
}
.custom-form .bootstrap-select {
  width: 100% !important;
}
.custom-form .bootstrap-select > .dropdown-toggle:after {
  display: none;
}
.custom-form .bootstrap-select .dropdown-toggle .filter-option {
  align-items: center;
  display: flex;
}
.custom-form .bootstrap-select .dropdown-menu {
  background-color: #f8f8f8;
  border-radius: 10px;
  border: 0;
  padding: 10px 5px;
}
.custom-form .bootstrap-select .dropdown-menu input[type="search"] {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border-radius: 5px;
  border: 0;
  background-image: none;
  padding: 0 10px;
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 100%;
}
.custom-form .bootstrap-select .dropdown-menu input[type="search"]:focus {
  box-shadow: none;
}
.custom-form
  .bootstrap-select
  .dropdown-menu
  input[type="search"]::placeholder {
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 100%;
}
.custom-form .bootstrap-select .dropdown-menu .dropdown-menu {
  padding: 0 10px;
}
.custom-form .bootstrap-select .dropdown-menu li {
  width: 100%;
  margin: 10px 0;
}
.custom-form .bootstrap-select .dropdown-menu li.no-results {
  background-color: transparent;
  font-family: "Montserrat";
  font-size: 14px;
}
.custom-form .bootstrap-select .dropdown-menu .dropdown-item {
  font-family: "Montserrat";
  font-size: 16px;
  padding: 0;
}
.custom-form .bootstrap-select .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #6d66d0;
}
.custom-form .bootstrap-select .dropdown-menu .dropdown-item.active {
  border-radius: 0;
  background-color: transparent;
  color: #6d66d0;
  font-family: "Montserrat SemiBold";
}
.custom-form
  .bootstrap-select.show-tick
  .dropdown-menu
  .selected
  span.check-mark {
  right: 5px;
  top: 4px;
}
.custom-form .bootstrap-select .bs-ok-default:after {
  width: 6px;
  height: 9px;
  border-width: 0 2px 2px 0;
}

/* DATE */

.custom-form input[type="date"],
.custom-form input[type="datetime-local"] {
  background-position: calc(100% - 14px) center;
  background-repeat: no-repeat;
  background-size: 18px;
  background-image: url(../images/icon-calendar.svg) !important;
  line-height: 34px;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

/* TIME */

.custom-form input[type="time"] {
  background-position: calc(100% - 14px) center;
  background-repeat: no-repeat;
  background-size: 18px;
  background-image: url(../images/icon-clock.svg) !important;
  line-height: 34px;
}
input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

/* SWITCH */

.form-switch {
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.form-switch .form-check-input {
  cursor: pointer;
  width: 35px;
  height: 20px;
  margin-top: 2px;
  background-color: #eeeeee !important;
  border-color: #eeeeee;
}
.form-switch .form-check-input,
.form-switch .form-check-input:checked,
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url(../images/toogle-switch-circle.svg);
  box-shadow: none;
}
.form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url(../images/toogle-switch-circle-gray.svg);
}
.form-switch .form-check-label {
  font-family: "Montserrat";
  font-size: 16px;
  color: #676767;
  width: auto;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 10px);
  left: 45px;
  opacity: 0 !important;
  pointer-events: none;
  transition: all 0.2s ease;
}
.form-switch .form-check-label.active {
  opacity: 1 !important;
}

/* ADD & REMOVE */

.content-btn-add .btn-add,
.content-itens-add .btn-remove {
  display: inline-block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  transition: all 0.2s ease;
}
.content-btn-add .btn-add img,
.content-itens-add .btn-remove img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.2s ease;
}
.content-itens-add {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.content-itens-add .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 10px 15px 8px;
}
.content-itens-add .item .with-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* INPUT PLUS BUTTON */

.input-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.input-btn .actions {
  flex: 40%;
}
.input-btn .actions .btn {
  height: 46px;
}

.input-btn.scan input[type="text"] {
  width: fit-content;
  flex: 38%;
}
.input-btn.scan .actions {
  flex: 28%;
  justify-content: flex-start !important;
}

/* BUTTONS WITH ICON */

.select-itens .row > div .items .item .with-icon.btn-add,
.content-btn-add .with-icon.btn-add {
  background-image: url(../images/icon-plus-circle.svg);
}
.select-itens .row > div .items .item .with-icon.btn-add:hover,
.content-btn-add .with-icon.btn-add:hover {
  background-image: url(../images/icon-plus-circle-active.svg);
}
.select-itens .row > div .items .item .with-icon.btn-remove,
.content-itens-add .item .with-icon.btn-remove {
  background-image: url(../images/icon-minus-circle.svg);
}
.select-itens .row > div .items .item .with-icon.btn-remove:hover,
.content-itens-add .item .with-icon.btn-remove:hover {
  background-image: url(../images/icon-minus-circle-active.svg);
}
.content-itens-add.files .item .with-icon.btn-view {
  background-image: url(../images/icon-download.svg);
}
.content-itens-add.files .item .with-icon.btn-view:hover {
  background-image: url(../images/icon-download-active.svg);
}
.select-itens .row > div .items .item .with-icon.btn-edit {
  background-image: url(../images/icon-edit.svg);
}
.select-itens .row > div .items .item .with-icon.btn-edit:hover {
  background-image: url(../images/icon-edit-active.svg);
}

/* VIEW FILE */

.content-itens-add.files .item {
  width: 100%;
}

/* SELECT ITEMS */

.select-itens {
  width: 100%;
}
.select-itens .row {
  width: 100%;
}
.select-itens .row > div > a {
  float: right;
}
.select-itens .row > div > a:hover {
  color: #6d66d0;
}
.select-itens .row > div .items {
  width: 100%;
  height: auto;
  border: 1px solid #dddddd;
  border-radius: 25px;
  padding: 30px 15px;
}
.select-itens .row > div .items .scroll {
  height: 270px;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 10px;
}
.select-itens .row > div .items .scroll::-webkit-scrollbar {
  width: 5px;
}
.select-itens .row > div .items .scroll::-webkit-scrollbar-track {
  background-color: #f8f8f8;
  border-radius: 999px;
}
.select-itens .row > div .items .scroll::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  border-radius: 999px;
  border: 2px solid #dddddd;
}
.select-itens .row > div .items .scroll .item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 10px 15px 8px;
  flex: 0 0 auto;
}
.select-itens .row > div .items .item .with-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* LOCK FIELD */

.custom-form .lock {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  display: block;
}
.custom-form .lock img {
  width: 20px;
  height: 20px;
}
.custom-form .lock-field {
  display: block;
}

/* UNITS */

.custom-form .unidades {
  margin-bottom: 10px;
}
.custom-form .unidades ::placeholder {
  color: #999;
}
.custom-form .unidades,
.custom-form .unidade-item {
  gap: 20px;
  align-items: center;
}
.custom-form .unidades input,
.custom-form .unidade-item input {
  flex: 75%;
  border-radius: 10px !important;
}
.custom-form #lista-unidades {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.custom-form .unidades .btn,
.custom-form #lista-unidades .btn {
  width: 22px;
  height: 22px;
  font-size: 0.1px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
}
.custom-form .unidades #btn-add {
  background-image: url(../images/icon-plus-circle.svg);
}
.custom-form .unidades #btn-add:hover {
  background-image: url(../images/icon-plus-circle-active.svg);
}
.custom-form #lista-unidades .btn-remove {
  background-image: url(../images/icon-minus-circle.svg);
}
.custom-form #lista-unidades .btn-remove:hover {
  background-image: url(../images/icon-minus-circle-active.svg);
}

/* --- END CUSTOM FORM --- */

/* --- FORM ACTIONS --- */

.actions {
  gap: 15px;
}
.actions .btn {
  width: fit-content;
  color: #ffffff;
  line-height: 100%;
  height: 36px;
  border: 0;
  border-radius: 10px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.actions .btn:focus {
  background-color: #6d66d0;
}
.actions .btn.disabled {
  background-color: #676767;
  pointer-events: none;
  opacity: 1;
}
.actions .btn:active {
  color: #ffffff;
  background-color: #202020;
}
.actions .btn:hover {
  background-color: #202020;
  color: #ffffff !important;
}
.actions .btn.border {
  color: #202020;
  border-width: 1px;
  border-style: solid;
}
.actions .btn.border:hover {
  color: #6d66d0 !important;
  border-color: #6d66d0 !important;
  background-color: transparent;
}
.actions .btn.border:focus {
  color: #202020;
  border-color: #dddddd !important;
  background-color: transparent;
}

/* ICONS */

.actions .btn.with-icon {
  padding: 0 15px 0 40px;
  background-position: 14px center;
  background-repeat: no-repeat;
  background-size: 16px;
}
.actions .btn.with-icon.scan {
  background-image: url(../images/icon-scan.svg);
}
.actions .btn.with-icon.plus {
  background-image: url(../images/icon-plus.svg);
}
.actions .btn.with-icon.filter {
  background-image: url(../images/icon-filter.svg);
}
.actions .btn.with-icon.filter:hover,
.actions .btn.with-icon.filter.active {
  background-image: url(../images/icon-filter-active.svg);
}

/* --- END FORM ACTIONS --- */

/* --- QUICK ACCESS --- */

.quick-access .card {
  height: 100%;
  background-color: transparent;
  border: 0;
}
.quick-access .card a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 25px 45px 25px 25px;
  border-radius: 20px;
  position: relative;
}
.quick-access .card a::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-right-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 7px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.quick-access .card a:hover {
  transform: scale(0.97);
}
.quick-access .card.one a {
  background: linear-gradient(94deg, #6d66d0 0.7%, #555aec 99.57%);
}
.quick-access .card.two a {
  background: linear-gradient(94deg, #6d66d0 0.7%, #d855ec 99.57%);
}
.quick-access .card.three a {
  background: linear-gradient(94deg, #6d66d0 0.7%, #559eec 99.57%);
}
.quick-access .card.four a {
  background: linear-gradient(94deg, #6d66d0 0.7%, #8455ec 99.57%);
}

/* --- END QUICK ACCESS --- */

/* --- CONTAINER PAGE --- */

.container-page {
  width: 100%;
  height: auto;
  min-height: 82vh;
  background-color: #f8f8f8;
  border-radius: 50px;
  padding: 40px;
}

/* --- END CONTAINER PAGE --- */

/* --- TABLES --- */

.table-responsive {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
.table-responsive::-webkit-scrollbar {
  width: 100%;
  height: 4px;
}
.table-responsive::-webkit-scrollbar-track {
  background-color: #f8f8f8;
}
.table-responsive::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  border-radius: 30px;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
  background-color: #676767;
}

.table th {
  font-family: "Montserrat SemiBold";
  font-size: 14px;
  color: #202020;
  background-color: transparent;
  vertical-align: middle;
  border-bottom: 2px solid #dddddd;
  padding: 10px 15px !important;
}
.table th:first-of-type,
.table td:first-of-type {
  padding-left: 0 !important;
}
.table td {
  font-family: "Montserrat";
  font-size: 14px;
  color: #676767;
  background-color: transparent;
  vertical-align: middle;
  border-bottom: 1px solid #dddddd;
  padding: 10px 15px !important;
}
.table th:last-of-type,
.table td:last-of-type {
  padding-right: 0 !important;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
}

/* SORT */

.table.dataTable thead .sorting-disabled {
  cursor: default;
  pointer-events: none;
}
.table.dataTable thead .sorting-disabled:after {
  display: none !important;
}
.table.dataTable thead th::after {
  width: 11px;
  height: 11px;
  opacity: 1 !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  right: initial !important;
  transform: translateY(-50%);
  display: inline-block !important;
  margin-left: 10px;
}
.table.dataTable thead .sorting:after {
  content: "";
  background-image: url(../images/icon-sort.svg);
}
.table.dataTable thead .sorting_desc:after {
  content: "";
  background-image: url(../images/icon-sort-down.svg);
}
.table.dataTable thead .sorting_asc:after {
  content: "";
  background-image: url(../images/icon-sort-up.svg);
}

/* REGISTERS */

div.dataTables_wrapper div.dataTables_info {
  float: left;
  padding-top: 10px;
  font-size: 14px;
  font-family: "Montserrat Light";
  color: #676767;
}

.table-responsive .dataTables_wrapper .dataTables_length {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.table-responsive .dataTables_wrapper .dataTables_length select {
  width: fit-content;
  min-width: 65px;
  height: 36px;
  background-color: #f8f8f8;
  border: 0;
  font-size: 14px;
  color: #676767;
  appearance: none;
  background-image: url(../images/icon-down.svg);
  background-size: 14px;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 0 15px;
}

/* PAGINATION */

div.dataTables_wrapper div.dataTables_paginate {
  margin-top: 30px !important;
}
div.dataTables_wrapper div.dataTables_paginate > span {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 5px;
}
div.dataTables_wrapper div.dataTables_paginate a {
  width: 26px;
  height: 26px;
  font-family: "Montserrat";
  font-size: 12px;
  color: #676767;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 1px solid #dddddd;
  border-radius: 5px;
}
div.dataTables_wrapper div.dataTables_paginate a.current {
  font-family: "Montserrat SemiBold";
  color: #ffffff;
  background-color: #6d66d0;
  border: 1px solid #6d66d0;
}

/* --- END TABLES --- */

/* --- BREADCRUMB --- */

.breadcrumb {
  padding-bottom: 0;
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
  font-family: "Montserrat";
  font-size: 12px;
  color: #676767;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #6d66d0;
}
.breadcrumb .breadcrumb-item.active {
  font-family: "Montserrat SemiBold";
  color: #202020;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #dddddd;
  border-radius: 50%;
  padding: 0;
  margin: 0 10px 0 2px;
}

/* --- END BREADCRUMB --- */

/* --- TOAST --- */

.custom-toast {
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
}
.custom-toast .toast {
  width: fit-content;
  padding: 10px 50px 10px 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1) !important;
}
.custom-toast.error .toast {
  background-color: rgb(255 0 77 / 90%) !important;
}
.custom-toast.success .toast {
  background-color: rgb(109 102 208 / 90%) !important;
}
.custom-toast .toast .toast-body .message {
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-toast .toast .btn-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
}

/* --- END TOAST --- */

/* --- GALLERY --- */

.content-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.content-gallery .item-gallery {
  width: 110px;
  height: 110px;
  border-radius: 15px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  position: relative;
}
.content-gallery .item-gallery a.remove {
  width: 30px;
  height: 30px;
  background-image: url(../images/button-remove.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 10px;
}
.content-gallery .item-gallery a.remove:hover {
  transform: scale(0.9);
}
.content-gallery .item-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GALLERY UPLOAD */

.custom-gallery-upload .gallery.active {
  margin-bottom: 25px;
}
.custom-gallery-upload .gallery,
.custom-gallery-upload .gallery .content-gallery-scan {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.custom-gallery-upload .gallery .content-gallery-scan {
  width: 48%;
}
.custom-gallery-upload #gallery .content-gallery-scan {
  width: auto;
}
.custom-gallery-upload .gallery .content-gallery-scan > div:nth-child(2) {
  flex: 60%;
}
.custom-gallery-upload .gallery .content-gallery-scan .thumb-container {
  width: 155px;
  height: 155px;
  border-radius: 15px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  position: relative;
}
.custom-gallery-upload .gallery .content-gallery-scan .thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-gallery-upload
  .gallery
  .content-gallery-scan
  .thumb-container
  a.remove {
  width: 30px;
  height: 30px;
  background-image: url(../images/button-remove.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 10px;
}
.custom-gallery-upload
  .gallery
  .content-gallery-scan
  .thumb-container
  a.remove:hover {
  transform: scale(0.9);
}

/* GALLERY UPLOAD - MODEL 2 */

.custom-gallery-upload #galleryModel2 .content-gallery-scan {
  width: auto;
}

/* ACTION */

.custom-gallery-upload .select .custom-file-label {
  width: fit-content;
  color: #ffffff;
  line-height: 100%;
  height: 36px;
  border: 0;
  border-radius: 10px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.custom-gallery-upload .select .custom-file-label:hover {
  background-color: #202020;
}

/* --- END GALLERY --- */

/* --- MODAL --- */

.modal {
  z-index: 99999;
}
.modal .modal-header {
  padding: 0;
  border: 0;
  position: absolute;
  right: 35px;
  top: 35px;
}
.modal-header .btn-close {
  font-size: 14px;
  opacity: 1;
}
.modal-header .btn-close:focus,
.modal-header .btn-close:active {
  box-shadow: none;
}
.modal-header .btn-close:hover {
  transform: scale(0.95);
}
.modal .modal-content {
  border: 0;
  padding: 50px;
  border-radius: 30px;
}
.modal .modal-content.medium {
  max-width: 725px;
  margin: auto;
}
.modal .modal-body {
  padding: 0;
}
.modal-backdrop {
  z-index: 99998;
}
.modal .modal-body .content-title {
  max-width: 760px;
  margin: auto;
}
.modal .modal-body .content-title .title {
  width: 100%;
  font-size: 20px;
  line-height: 115%;
  padding: 0;
}

/* DETALHE PACOTE */

.modal .modal-body.package-details .content-title {
  max-width: 100%;
}

/* NOVO PACOTE */

.modal .modal-body.new-package form .content-title {
  max-width: 100%;
}
.modal .modal-body.new-package .info a {
  text-decoration: underline;
}
.modal .modal-body.new-package .info a:hover {
  color: #6d66d0;
}
.modal .modal-body.new-package.bar-code .image-scan .frame-scan {
  max-width: 510px;
}
.modal .modal-body.new-package .image-scan .frame-scan {
  position: relative;
  padding: 10px;
  max-width: 610px;
  margin: auto;
}
.modal .modal-body.new-package .image-scan .frame-scan .frame-left {
  width: 20%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.modal .modal-body.new-package .image-scan .frame-scan .frame-left::before {
  content: "";
  width: 70px;
  height: 75px;
  background-image: url(../images/frame-top-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.success
  .frame-left::before {
  background-image: url(../images/frame-top-left-purple.svg);
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.error
  .frame-left::before {
  background-image: url(../images/frame-top-left-magenta.svg);
}
.modal .modal-body.new-package .image-scan .frame-scan .frame-left::after {
  content: "";
  width: 70px;
  height: 75px;
  background-image: url(../images/frame-bottom-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.success
  .frame-left::after {
  background-image: url(../images/frame-bottom-left-purple.svg);
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.error
  .frame-left::after {
  background-image: url(../images/frame-bottom-left-magenta.svg);
}
.modal .modal-body.new-package .image-scan .frame-scan .frame-right {
  width: 20%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.modal .modal-body.new-package .image-scan .frame-scan .frame-right::before {
  content: "";
  width: 70px;
  height: 75px;
  background-image: url(../images/frame-top-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.success
  .frame-right::before {
  background-image: url(../images/frame-top-right-purple.svg);
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.error
  .frame-right::before {
  background-image: url(../images/frame-top-right-magenta.svg);
}
.modal .modal-body.new-package .image-scan .frame-scan .frame-right::after {
  content: "";
  width: 70px;
  height: 75px;
  background-image: url(../images/frame-bottom-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.success
  .frame-right::after {
  background-image: url(../images/frame-bottom-right-purple.svg);
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.error
  .frame-right::after {
  background-image: url(../images/frame-bottom-right-magenta.svg);
}
.modal .modal-body.new-package.bar-code .image-scan .frame-scan .content-frame {
  max-width: 495px;
  max-height: 200px;
}
.modal .modal-body.new-package .image-scan .frame-scan .content-frame {
  width: 100%;
  height: 100%;
  max-width: 610px;
  max-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
}
.modal .modal-body.new-package .image-scan .frame-scan .content-frame::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s ease;
  pointer-events: none;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.success
  .content-frame::before {
  background-color: #6d66d0;
  opacity: 0.8;
  pointer-events: initial;
  z-index: 1;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.error
  .content-frame::before {
  background-color: #ff004d;
  opacity: 0.8;
  pointer-events: initial;
  z-index: 1;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan
  .content-frame
  .feedback {
  max-width: 90%;
  margin: auto;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: all 0.2s ease;
  position: absolute;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan
  .content-frame
  .feedback
  img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan
  .content-frame
  .feedback
  a {
  color: #ffffff;
  text-decoration: underline;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan
  .content-frame
  .feedback
  a:hover {
  color: #efefef;
}
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.error
  .content-frame
  .feedback.error,
.modal
  .modal-body.new-package
  .image-scan
  .frame-scan.success
  .content-frame
  .feedback.success {
  opacity: 1;
  pointer-events: initial;
}
.modal .modal-body.new-package .image-scan .frame-scan .content-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LABEL */

.modal.label .modal-dialog {
  max-width: 1320px;
  width: 90%;
  margin: auto;
}
.modal.label .modal-body .logo {
  max-width: 265px;
}
.modal.label .modal-body .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal.label .modal-body .barcode {
  max-width: 400px;
}
.modal.label .modal-body .content-title {
  max-width: 100%;
}

/* FORM */

.modal .modal-body.form .content-title {
  max-width: 100%;
  margin: auto;
}
.modal .modal-body.form .cards .card {
  padding: 0;
}

/* --- END MODAL --- */

/* --- RESPONSIVE --- */

@media (max-width: 1600px) {
}

@media (max-width: 1366px) {
  /* --- TABLES --- */

  .table th,
  .table td {
    font-size: 13px;
  }

  /* --- END TABLES --- */
}

@media (max-width: 1280px) {
  /* --- TEXTS & TITLES --- */

  /* TITLES */

  .title.double-extra-large {
    font-size: 32px;
  }

  .title.extra-large {
    font-size: 28px;
  }

  .title.large {
    font-size: 22px;
  }

  .title.medium {
    font-size: 18px;
  }

  .title.small {
    font-size: 16px;
  }

  .title.mini {
    font-size: 12px;
  }

  /* --- ENDS TEXTS & TITLES --- */

  /* --- MODAL --- */

  .modal .modal-header {
    right: 25px;
    top: 25px;
  }

  /* PACOTES */

  .modal .modal-body .content-title .title {
    font-size: 20px;
  }

  /* --- END MODAL --- */
}

@media (max-width: 1200px) {
  /* --- CARDS --- */

  .cards.dashboards > div {
    margin-bottom: 20px;
  }

  .cards.dashboards > div:last-child {
    margin-bottom: 0;
  }

  /* --- END CARDS --- */

  /* --- FILTER SEARCH --- */

  .content-filter-search form {
    width: auto;
  }

  /* --- END FILTER SEARCH --- */

  /* --- QUICK ACCESS --- */

  .quick-access > div {
    margin-bottom: 20px;
  }
  .quick-access > div:nth-child(3),
  .quick-access > div:nth-child(4) {
    margin-bottom: 0;
  }

  /* --- END QUICK ACCESS --- */

  /* --- TABLES --- */

  .table-responsive {
    overflow-x: auto;
  }

  /* --- END TABLES --- */
}

@media (max-width: 1100px) {
}

@media (max-width: 991.98px) {
  .main {
    width: 100%;
  }

  .overlay {
    display: none;
    opacity: 0.01;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 9997;
  }
  .overlay.active {
    display: block;
  }

  /* --- HEADER --- */

  /* NAVBAR */

  .navbar {
    width: 100%;
  }

  /* --- END HEADER --- */

  /* --- TEXTS & TITLES --- */

  /* TITLES */

  .title.double-extra-large {
    font-size: 28px;
  }

  .title.extra-large {
    font-size: 22px;
  }

  .title.large {
    font-size: 18px;
  }

  .title.medium {
    font-size: 16px;
  }

  .title.small {
    font-size: 14px;
  }

  /* --- ENDS TEXTS & TITLES --- */

  /* --- LOGIN --- */

  .login aside {
    display: none;
  }
  .login .content-login .container {
    justify-content: flex-start !important;
    padding: 25px !important;
  }

  /* LOGO */

  .login .content-login header .logo a {
    max-width: 250px;
  }

  /* IMAGE */

  .login .content-login .image {
    display: none;
  }

  /* FOOTER */

  .login .copy {
    margin-top: auto;
    text-align: center;
  }

  /* FORM LOGIN */

  .login .content-form.mobile {
    display: block;
    background-color: #fff;
    padding: 35px;
    border-radius: 40px;
    box-shadow: 0px 30px 80px -60px #b0b0b0;
  }
  .login .content-form.web {
    display: none;
  }

  /* --- END LOGIN --- */

  /* --- ASIDE --- */

  .aside {
    width: 250px;
    left: -250px;
    padding: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  }
  .aside.active {
    left: 0;
  }

  /* LOGO */

  .aside .logo,
  .aside .logo a,
  .aside .logo a img {
    width: 140px;
    height: 30px;
  }
  .aside .logo {
    width: 100%;
    overflow: initial;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .close-menu,
  .close-submenu {
    display: inline-block;
    width: 12px !important;
    min-width: 12px;
    height: 12px;
    background-color: transparent;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/icon-double-arrow-left.svg);
    transition: all 0.2s ease-in;
  }
  .close-submenu {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 9;
  }

  /* MENU */

  .aside-nav .dropdown-menu,
  .aside-nav .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    width: 250px;
    padding: 20px;
  }
  .aside-nav .dropdown-menu.show,
  .aside-nav .dropdown-menu .dropdown-submenu.show {
    background-color: #ffffff;
  }
  .aside-nav .dropdown-menu .sidebar-heading {
    display: block;
  }
  .aside-nav .nav .nav-item .nav-link,
  .aside-nav .nav .nav-item .nav-link span,
  .aside-nav .dropdown-menu .dropdown-item,
  .aside-nav .dropdown-menu .dropdown-item span {
    font-size: 13px;
  }

  /* --- END ASIDE --- */

  /* --- MODAL --- */

  .modal .modal-dialog {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* NOVO PACOTE */

  .modal .modal-body.new-package .image-scan .frame-scan .frame-left::after,
  .modal .modal-body.new-package .image-scan .frame-scan .frame-left::before,
  .modal .modal-body.new-package .image-scan .frame-scan .frame-right::after,
  .modal .modal-body.new-package .image-scan .frame-scan .frame-right::before {
    width: 70px;
    height: 70px;
  }

  /* --- END MODAL --- */
}

@media (max-width: 768px) {
  .main {
    padding: 0 15px;
  }

  /* --- HEADER --- */

  .header {
    padding: 10px;
  }

  .btn-menu {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  /* WELCOME */

  .welcome .text {
    display: none;
  }

  /* SEARCH */

  .content-search {
    width: 100%;
    max-width: 100%;
    bottom: -90px;
    right: 0;
  }

  /* ACCOUNT */

  .navbar-nav li.account {
    margin-left: 5px;
  }

  .navbar .navbar-nav li.account > a {
    text-indent: -9999px;
    gap: 5px;
  }

  /* --- END HEADER --- */

  /* --- FILTER SEARCH --- */

  .content-filter-search {
    margin-bottom: 20px;
  }
  .content-filter-search form {
    width: 100%;
    max-width: 100%;
  }

  /* --- END FILTER SEARCH --- */

  /* --- FILTER ACTIONS --- */

  .content-filter-actions {
    justify-content: flex-start !important;
  }

  /* --- END FILTER ACTIONS --- */

  /* --- TABS --- */

  .custom-tabs .nav-tabs .nav-link {
    width: 100% !important;
    font-size: 14px !important;
  }

  .custom-form .tab-content,
  .custom-form .tab-content .tab-pane {
    height: auto;
  }

  /* --- END TABS --- */

  /* --- CUSTOM FORM --- */

  /* INPUT PLUS BUTTON */

  .input-btn {
    flex-direction: column;
  }

  /* SELECT ITEMS */

  .select-itens {
    padding: 0;
  }
  .select-itens .row {
    margin: 0;
    padding: 0;
    gap: 25px;
  }
  .select-itens .row > div > a {
    float: left;
  }
  .select-itens .row > div .items {
    padding: 20px 10px;
  }
  .select-itens .row > div .items .scroll .item {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 5px;
  }
  .select-itens .row > div .items .scroll .item p {
    width: fit-content;
    max-width: 80%;
  }

  /* --- END CUSTOM FORM --- */

  /* --- QUICK ACCESS --- */

  .quick-access > div:nth-child(3) {
    margin-bottom: 20px;
  }

  /* --- END QUICK ACCESS --- */

  /* --- CONTAINER PAGE --- */

  .container-page {
    border-radius: 25px;
    padding: 20px;
  }

  /* --- END CONTAINER PAGE --- */

  /* --- GALLERY --- */

  /* GALLERY UPLOAD */

  .custom-gallery-upload .gallery .content-gallery-scan {
    width: 100%;
  }

  /* ACTION */

  .custom-gallery-upload .select .custom-file-label {
    width: 100%;
  }

  /* --- END GALLERY --- */

  /* --- TABLES --- */

  .table-responsive {
    overflow: initial;
  }

  .table {
    border: 0;
    display: flex;
    flex-direction: column;
  }
  .table thead {
    display: none;
  }
  .table tbody {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .table tr {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    border: 1px solid #efefef;
    border-radius: 15px;
    padding: 15px;
    gap: 15px;
    position: relative;
  }
  .table td {
    width: 100%;
    font-size: 13px;
    color: #202020;
    font-family: "Montserrat Bold";
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 0 !important;
    border: none;
  }
  .table td::before {
    content: attr(data-label);
    font-family: "Montserrat";
    font-size: 12px;
    margin-right: 10px;
    color: #676767;
    flex: 1;
  }
  .table td:last-child {
    position: absolute;
    right: 20px;
  }
  .table td .navbar-nav li.dropdown {
    justify-content: flex-end;
  }

  /* REGISTERS */

  .table-responsive .dataTables_wrapper .dataTables_length {
    justify-content: flex-start;
  }

  /* PAGINATION */

  div.dataTables_wrapper div.dataTables_paginate {
    margin-top: 0px !important;
  }
  div.dataTables_wrapper div.dataTables_paginate > span {
    justify-content: center;
  }

  /* --- END TABLES --- */

  /* --- BREADCRUMB --- */

  .content-title-breadcrumb .row > div {
    justify-content: flex-start !important;
  }
  .content-title-breadcrumb .row > div:nth-child(1) {
    margin-bottom: 10px;
  }

  /* --- END BREADCRUMB --- */

  /* --- CARDS --- */

  .cards .card {
    padding: 20px;
    border-radius: 20px;
  }

  /* --- END CARDS --- */

  /* --- FORM ACTIONS --- */

  .actions {
    width: 100%;
    flex-direction: column;
  }
  .actions .btn {
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  .actions .btn.with-icon {
    padding: 15px;
    background-size: 14px;
    background-position: 10px center;
  }

  /* --- END FORM ACTIONS --- */

  /* --- MODAL --- */

  .modal
    .modal-body.new-package
    .image-scan.gallery-scan
    .content-no-image
    .form-info
    .group {
    width: 100%;
  }

  .modal
    .modal-body.new-package
    .image-scan.gallery-scan
    .content-no-image
    .form-info
    > div {
    flex-direction: column;
  }

  /* --- END MODAL --- */
}

@media (max-width: 650px) {
  /* GALLERY UPLOAD WITH PREVIEW */

  .custom-gallery-upload .gallery .thumb-container {
    width: 46.7%;
    height: 120px;
  }

  /* END GALLERY UPLOAD WITH PREVIEW */

  /* --- MODAL --- */

  .modal .modal-header {
    right: 20px;
    top: 20px;
  }

  /* PACOTES */

  .modal .modal-body .content-title .title {
    font-size: 16px;
    line-height: 115%;
  }

  /* --- END MODAL --- */
}

@media (max-width: 480px) {
  /* --- HEADER --- */

  /* WELCOME */

  .welcome .title {
    display: none;
  }

  /* --- END HEADER --- */

  /* --- BREADCRUMB --- */

  .content-title-breadcrumb .row > div:nth-child(1) {
    margin-bottom: -7px;
  }
  .breadcrumb {
    display: none;
  }

  /* --- END BREADCRUMB --- */

  /* --- TABLES --- */

  /* REGISTERS */

  .table-responsive .dataTables_wrapper .dataTables_length .dt-total {
    display: none;
  }

  /* --- END TABLES --- */

  /* --- GALLERY --- */

  .custom-gallery-upload .gallery,
  .custom-gallery-upload .gallery .content-gallery-scan {
    align-items: center;
    justify-content: center;
  }

  /* --- END GALLERY --- */

  /* --- MODAL --- */

  .modal .modal-content {
    padding: 30px;
    border-radius: 30px;
  }

  /* --- END MODAL --- */
}

@media (max-width: 380px) {
  /* GALLERY UPLOAD WITH PREVIEW */

  .custom-gallery-upload .gallery .thumb-container {
    width: 100%;
    height: 120px;
  }

  /* END GALLERY UPLOAD WITH PREVIEW */

  /* UPLOAD WITH PREVIEW */

  .custom-upload .preview {
    margin-bottom: 20px;
  }

  /* END UPLOAD WITH PREVIEW */
}

/* --- END RESPONSIVE --- */
