@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.loginView {
  background-image: linear-gradient(270deg, rgba(0, 196, 255, 0.18), transparent);
  background-color: #090C1D;
}
.loginView__container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.loginView__content {
  max-width: 320px;
  width: 100%;
  margin: 20% auto 10% auto;
  position: relative;
  animation: toBottom 1s ease;
}
@media (max-width: 1399px) {
  .loginView__content {
    margin-top: 10%;
  }
}
@media (max-width: 992px) {
  .loginView__content {
    margin: 15% auto;
  }
}
@media (max-width: 767px) {
  .loginView__content {
    max-width: 280px;
  }
}
.loginView__content::before {
  content: url("/media/admin/image.png");
  position: absolute;
  top: -40px;
  right: -215px;
  animation: toTop 1s ease;
  z-index: -1;
}
.loginView__logo {
  position: relative;
  z-index: 1;
  content: url("/media/admin/logo.png");
  max-width: 100%;
  max-height: 100px;
  display: block;
  margin: auto;
}
.loginView__logo img {
  display: none;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .loginView__logo img {
    max-width: 170px;
  }
}
.loginView__icon {
  width: 100px;
  height: 100px;
  background: #fff;
  margin: 0 auto;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .loginView__icon {
    width: 70px;
    height: 70px;
    margin-top: 30px;
  }
}
.loginView__icon i {
  display: block;
  font-size: 50px;
  color: #090C1D;
}
@media (max-width: 767px) {
  .loginView__icon i {
    font-size: 30px;
  }
}
.loginView__icon--small {
  width: 50px;
  height: 50px;
}
.loginView__icon--small i {
  font-size: 20px;
}
.loginView__header {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .loginView__header {
    font-size: 18px;
  }
}
.loginView__status {
  text-align: center;
  margin: 20px 0;
  color: #fff;
  font-size: 16px;
}
.loginView__form {
  margin-top: 30px;
}
.loginView__field {
  margin-bottom: 25px;
  position: relative;
}
.loginView__field input[type="text"], .loginView__field input[type="password"], .loginView__field input[type="email"] {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  height: 45px;
  border: 0;
  margin: 0;
  outline: 0;
  font-size: 16px;
  color: #090C1D;
  font-weight: 300;
  padding-left: 41px;
  padding-top: 5px;
}
.loginView__field input[type="text"]:focus, .loginView__field input[type="password"]:focus, .loginView__field input[type="email"]:focus {
  box-shadow: 0 0 8px 2px #00C4FF;
}
@media (max-width: 767px) {
  .loginView__field input[type="text"], .loginView__field input[type="password"], .loginView__field input[type="email"] {
    font-size: 14px;
  }
}
.loginView__field i {
  position: absolute;
  top: 12px;
  left: 11px;
  font-size: 23px;
}
@media (max-width: 767px) {
  .loginView__field i {
    font-size: 20px;
  }
}
.loginView__button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  height: 50px;
  border: 0;
  margin: 0;
  outline: 0;
  font-size: 20px;
  color: #fff;
  background: #4DA5FD;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (max-width: 767px) {
  .loginView__button {
    font-size: 16px;
  }
}
.loginView__button:hover, .loginView__button:focus {
  background: #1b8bfc;
}
.loginView__row {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  margin-top: 25px;
}
.loginView__row div {
  width: 50%;
}
.loginView__row div:last-child {
  text-align: right;
}
.loginView__row label {
  color: #ccc;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.loginView__row label:hover {
  color: #00C4FF;
}
.loginView__row a {
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.loginView__row a:hover {
  color: #00C4FF;
}
.loginView__error {
  margin-top: 5px;
  font-size: 13px;
  color: #EC7063;
}
.loginView__text {
  margin-top: 5px;
  font-size: 13px;
  color: #fff;
}
.loginView__input--error {
  background: #fad8d5;
}
.loginView__link {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.loginView__link i {
  font-size: 16px;
  margin-right: 7px;
}
.loginView__link:hover {
  color: #00C4FF;
}
.loginView__center {
  display: flex;
  justify-content: center;
}
@keyframes toBottom {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes toTop {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.panel-background {
  background: #f9f9f9;
}
.panel {
  height: 100%;
}
.panel__edit-form-name {
  margin-top: -30px;
  padding-left: 10px;
  color: #000;
  text-decoration: none;
  font-size: 12px;
  position: absolute;
}
.panel__content {
  width: calc(100% - 260px);
  margin-left: 260px;
  transition: margin 0.3s ease-in-out, width 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .panel__content {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .panel__content.full {
    width: calc(100% - 10px);
    margin-left: 10px;
  }
}
.panel__header {
  padding: 15px 20px;
  background: #fff;
  box-shadow: 0 0 25px 0 rgba(80, 60, 120, 0.15);
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: 0;
  z-index: 30;
}
@media (max-width: 767px) {
  .panel__header {
    padding: 10px;
  }
}
.panel__button {
  width: 80px;
  height: 60px;
  padding: 10px 20px;
  box-sizing: border-box;
  background: #fff;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: left 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 1199px) {
  .panel__button {
    height: 50px;
    padding: 10px;
    width: 70px;
  }
  .panel__button.active {
    left: 255px;
  }
}
.panel__button span {
  width: 40px;
  margin: 3px auto;
  height: 5px;
  border-radius: 4px;
  background: #584475;
  transition: background 0.3s;
}
.panel__button:hover span {
  background: #8a72ad;
}
.panel__button:active span {
  background: #271f34;
}
.panel__top {
  display: flex;
  align-items: center;
}
.sidebar {
  box-sizing: border-box;
  width: 260px;
  background-image: linear-gradient(270deg, rgba(51, 148, 225, 0.18), transparent);
  background-color: #584475;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 31;
  transition: left 0.3s ease-in-out;
}
.sidebar__logo {
  content: url("/media/admin/logo.png");
  max-width: 100px;
  max-height: 70px;
  display: block;
  margin: auto;
}
@media (min-width: 1200px) {
  .sidebar.hidden {
    display: block;
    left: -250px;
  }
  .sidebar.hidden:hover {
    left: 0;
  }
}
@media (max-width: 1199px) {
  .sidebar {
    left: -260px;
    box-shadow: none;
  }
  .sidebar.hidden {
    display: block;
    left: 0;
  }
}
.sidebar__name {
  font-size: 14px;
  text-align: center;
  padding-top: 10px;
  color: #FFFF;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sidebar__header {
  padding: 20px 20px 15px 20px;
  box-sizing: border-box;
}
.sidebar__header img {
  display: block;
  max-width: 100%;
  max-height: 30px;
  margin: 0 auto;
}
.sidebar__search {
  background: rgba(39, 31, 52, 0.2);
  padding: 10px 0;
}
.sidebar__search input {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  outline: none;
  padding: 12px 20px;
  box-sizing: border-box;
  min-height: 35px;
  width: 230px;
  margin: 0 auto;
  border: 0;
  display: block;
  transition: box-shadow 0.3s ease-out;
  letter-spacing: 0.6px;
  font-weight: 300;
}
.sidebar__search input:focus {
  box-shadow: 0 0 0 1px #705795 inset;
}
.sidebar__menu {
  overflow-x: hidden;
  height: 100%;
}
.sidebar__list {
  padding-bottom: 200px;
}
.sidebar__list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.sidebar__list ul li.hidden {
  display: none !important;
}
.sidebar__list ul li a {
  color: #cdc3dc;
  display: block;
  padding: 15px 45px 15px 60px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  position: relative;
  transition: background 0.3s, color 0.3s;
}
.sidebar__list ul li a i {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 2px;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 16px;
  display: inline-block;
  color: #a592c0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}
.sidebar__list ul li a i.sidebar__arrow {
  font-size: 10px;
  position: absolute;
  right: 20px;
  left: auto;
  transition: transform 0.3s;
}
.sidebar__list ul li:hover > a {
  color: #fff;
  background-color: rgba(76, 59, 101, 0.6);
}
.sidebar__list ul li.active > a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.04) !important;
  box-shadow: inset 5px 0 0 #a592c0;
}
.sidebar__list ul li ul {
  background-color: rgba(76, 59, 101, 0.6);
  position: relative;
  display: none;
}
.sidebar__list ul li ul.open li {
  display: block !important;
}
.sidebar__list ul li ul::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 37px;
  border-left: 1px solid rgba(112, 87, 149, 0.75);
}
.sidebar__list ul li ul li a {
  padding-left: 60px;
}
.sidebar__list ul li ul li a::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: #b2a2c9;
  position: absolute;
  left: 35.4px;
  top: 0;
  bottom: 2px;
  margin: auto;
  z-index: 1;
  transition: transform 0.3s;
}
.sidebar__list ul li ul li:hover > a {
  background-color: rgba(52, 40, 69, 0.6);
}
.sidebar__list ul li ul li:hover > a::before {
  transform: scale(1.5);
}
.sidebar__list ul li ul li.active > a {
  border: 0;
  background: none;
  box-shadow: none;
}
.sidebar__list ul li ul li.active > a::before {
  transform: scale(1.5);
  background: #fff;
}
.sidebar__list .simplebar-scrollbar::before {
  background: #403155;
}
.sidebar__treeview.open > a {
  color: #fff;
  background-color: rgba(52, 40, 69, 0.6) !important;
}
.sidebar__treeview.open .sidebar__arrow {
  transform: rotate(180deg);
  bottom: 0;
}
.sidebar__showMore {
  display: block;
  margin-top: 20px;
  padding: 15px 30px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  background: none;
  cursor: pointer;
  border: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}
.sidebar__showMore:hover {
  background: rgba(0, 0, 0, 0.3);
}
.defaultHidden.active, .sidebar__menu.showHidden .defaultHidden {
  display: block;
}
.defaultHidden {
  display: none;
  opacity: 0.4;
}
.list {
  position: relative;
  padding-right: 10px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .list {
    margin-left: 10px;
  }
}
.list:hover .list__dropdown {
  opacity: 1;
  visibility: visible;
}
.list:hover .list__link {
  opacity: 0.7;
}
.list__link {
  color: #333;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  min-height: 32px;
}
.list__link span {
  font-size: 14px;
  color: #333;
  margin-right: 5px;
}
.list__link span.upper {
  text-transform: uppercase;
}
.list__link img {
  display: block;
  margin: 0 auto;
  max-width: 32px;
  border-radius: 100%;
}
.list__link img.border {
  border: 1px solid #eee;
}
.list__avatar {
  min-width: 32px;
  min-height: 32px;
  border: 1px solid #eee;
  border-radius: 100%;
  background: url("/media/avatar/default.jpg") no-repeat;
  background-size: cover;
}
.list__avatar--large {
  min-width: 50px;
  min-height: 50px;
  border: 0;
}
@media (max-width: 767px) {
  .list__avatar--large {
    min-width: 30px;
    min-height: 30px;
  }
}
.list__dropdown {
  padding-top: 20px;
  position: absolute;
  right: 0;
  background: rgba(0, 0, 0, 0);
  width: 300px;
  box-sizing: border-box;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .list__dropdown {
    width: 250px;
  }
}
.list__dropdown--small {
  width: 150px;
}
.list__dropdown.active {
  opacity: 1;
  visibility: visible;
}
.list__dropdown ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: #fff;
  box-shadow: 0 5px 15px 0 rgba(80, 60, 120, 0.15);
  border: 1px solid rgba(100, 100, 100, 0.1);
}
.list__dropdown ul li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  padding: 14px 15px;
  box-sizing: border-box;
  transition: color 0.3s, background 0.3s;
}
.list__dropdown ul li a.upper {
  text-transform: uppercase;
}
.list__dropdown ul li a:hover {
  color: #584475;
  background: #f8f8f8;
}
.list__dropdown ul li a.highlight {
  border-top: 1px solid #f3f3f3;
  font-weight: bold;
}
.list__dropdown ul li a img {
  margin-right: 10px;
  max-width: 25px;
}
.list__dropdown ul li a img.border {
  border: 1px solid #eee;
  border-radius: 100%;
  max-width: 25px;
}
.list__top {
  display: flex;
  align-items: center;
  padding: 13px 15px;
  box-sizing: border-box;
  background-image: linear-gradient(250deg, rgba(51, 148, 225, 0.5), transparent);
  background-color: #584475;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  min-height: 60px;
}
.list__name {
  font-size: 13px;
  color: #fff;
}
.list__name span {
  display: block;
  font-size: 15px;
  font-weight: 900;
}
.list__name span.upper {
  text-transform: uppercase;
}
.list__image {
  padding-right: 13px;
  box-sizing: border-box;
}
.list__image img {
  display: block;
  max-width: 50px;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .list__image img {
    max-width: 30px;
  }
}
.primaryColor {
  color: #AF7AC5;
}
.secondaryColor {
  color: #7F8C8D;
}
.successColor {
  color: #52BE80;
}
.infoColor {
  color: #5DADE2;
}
.warningColor {
  color: #F5B041;
}
.dangerColor {
  color: #EC7063;
}
.darkColor {
  color: #212F3D;
}
.lightColor {
  color: #F0F3F4;
}
.dashboard {
  padding: 30px 20px;
  padding-top: 0;
}
.dashboard__resultList {
  margin: 0;
}
.dashboard__resultList li {
  margin: 5px 0;
  font-size: 15px;
}
.dashboard__resultList li span {
  text-transform: uppercase;
  font-weight: bold;
}
.dashboard__resultList li span.danger {
  color: #EC7063;
}
.dashboard__resultList li span.success {
  color: #52BE80;
}
.dashboard__resultList--table {
  margin-top: 0;
  margin-bottom: 10px;
  padding: 5px 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
  list-style-type: none;
}
.dashboard__resultList--table li {
  margin: 8px 0;
  font-weight: 500;
  text-align: left;
}
.dashboard__between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dashboard__row {
  display: flex;
  align-items: center;
}
.dashboard__row--wrap {
  flex-wrap: wrap;
}
.dashboard__row--gap {
  gap: 10px 20px;
}
.dashboard .generateImage {
  max-width: 80px;
}
.dashboard__tableAction {
  display: flex;
  justify-content: center;
}
.dashboard hr {
  border: 0;
  border-top: 1px solid #e8e3ef;
}
@media (max-width: 992px) {
  .dashboard {
    padding: 20px 10px;
    padding-top: 0;
  }
}
.dashboard__header {
  margin: 0;
  font-size: 24px;
  color: #555;
  font-weight: 500;
  margin: 20px -20px;
  padding: 10px 20px;
  background: #f9f9f9;
  position: static;
}
@media (max-width: 1199px) {
  .dashboard__header {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .dashboard__header {
    font-size: 18px;
  }
}
.dashboard__header a {
  color: #AF7AC5;
  text-decoration: none;
}
.dashboard__block {
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(100, 100, 100, 0.1);
  box-shadow: 0 0 15px 0 rgba(60, 40, 90, 0.05);
}
@media (max-width: 992px) {
  .dashboard__block {
    padding: 10px 10px;
  }
}
.dashboard__block--box {
  padding-right: 300px;
  position: relative;
}
@media (max-width: 992px) {
  .dashboard__block--box {
    padding-right: 10px;
    display: flex;
    flex-direction: column-reverse;
  }
}
.dashboard__block h1, .dashboard__block h2, .dashboard__block h3, .dashboard__block h4, .dashboard__block h5, .dashboard__block h6 {
  font-size: 18px;
  color: #555;
  font-weight: 500;
}
.dashboard__block h1.notMargin, .dashboard__block h2.notMargin, .dashboard__block h3.notMargin, .dashboard__block h4.notMargin, .dashboard__block h5.notMargin, .dashboard__block h6.notMargin {
  margin: 0;
}
.dashboard__block--info {
  border-color: #5DADE2;
  border-width: 2px;
}
.dashboard__block--info a:not(.dashboard__button) {
  color: #5DADE2;
  text-decoration: none;
  transition: 0.3s;
}
.dashboard__block--info a:not(.dashboard__button):hover {
  color: #217cb8;
}
.dashboard__block--danger {
  border-color: #EC7063;
  border-width: 2px;
}
.dashboard__block--danger a {
  color: #EC7063;
  text-decoration: none;
  transition: 0.3s;
}
.dashboard__block--danger a:hover {
  color: #d02b19;
}
.dashboard__block--warning {
  border-color: #F5B041;
  border-width: 2px;
}
.dashboard__block--warning a {
  color: #F5B041;
  text-decoration: none;
  transition: 0.3s;
}
.dashboard__block--warning a:hover {
  color: #c67e0a;
}
.dashboard__block--success {
  border-color: #52BE80;
  border-width: 2px;
}
.dashboard__block--success a {
  color: #52BE80;
  text-decoration: none;
  transition: 0.3s;
}
.dashboard__block--success a:hover {
  color: #2e7c4f;
}
.dashboard__name {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
  display: inline-block;
  color: inherit;
}
@media (max-width: 767px) {
  .dashboard__name {
    font-size: 16px;
  }
}
.dashboard__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.dashboard__actions--fixed {
  position: absolute;
  top: 87px;
  right: 20px;
  z-index: 11;
}
@media (max-width: 1199px) {
  .dashboard__actions--fixed {
    top: 75px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .dashboard__actions--fixed {
    position: fixed;
    top: auto;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 5px;
    box-sizing: border-box;
    margin: auto;
    justify-content: center;
    background: #f9f9f9;
  }
}
.dashboard__actions--fixed.active {
  position: fixed;
  top: 3px;
}
@media (max-width: 1199px) {
  .dashboard__actions--fixed.active {
    top: 2px;
  }
}
@media (max-width: 767px) {
  .dashboard__actions--fixed.active {
    top: auto;
  }
}
@media (max-width: 767px) {
  .dashboard__actions--bottom {
    display: none;
  }
}
.dashboard__required {
  color: #EC7063;
  font-size: 13px;
  margin: 5px 0;
  font-weight: bold;
}
.dashboard__button, .modal__button, #userRoles .userOption__option, .fileManager__more, .fileManager__button {
  border-radius: 4px;
  border: 0;
  font-size: 14px;
  color: #fff;
  background: #AF7AC5;
  display: inline-block;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 400 !important;
  text-decoration: none;
  margin: 3px 5px;
  box-shadow: 0 2px 6px 0 rgba(175, 122, 197, 0.5);
  transition: opacity 0.3s, background 0.3s ease-out, color 0.3s ease-out;
  border: 1px solid #AF7AC5;
}
.dashboard__button:hover, .modal__button:hover, #userRoles .userOption__option:hover, .fileManager__more:hover, .fileManager__button:hover {
  background: #9e5eb9;
}
.dashboard__button:active, .modal__button:active, #userRoles .userOption__option:active, .fileManager__more:active, .fileManager__button:active {
  background: #7e4297;
}
.dashboard__button:disabled, .modal__button:disabled, #userRoles .userOption__option:disabled, .fileManager__more:disabled, .fileManager__button:disabled {
  opacity: 0.3;
  cursor: default;
}
.dashboard__button i, .modal__button i, #userRoles .userOption__option i, .fileManager__more i, .fileManager__button i {
  font-size: 12px;
  margin-right: 3px;
}
.dashboard__button i.noMargin, .modal__button i.noMargin, #userRoles .userOption__option i.noMargin, .fileManager__more i.noMargin, .fileManager__button i.noMargin {
  margin-right: 0;
}
.dashboard__button--noMargin {
  margin: 0;
}
.dashboard__button--noMarginLeft {
  margin-left: 0;
}
.dashboard__button--margin {
  margin: 10px 0;
}
.dashboard__button--full {
  display: block;
  width: 100%;
}
.dashboard__button--light, .fileManager__more {
  background: #fff;
  border-color: #617b84;
  color: #617b84;
  box-shadow: 0 2px 6px 0 rgba(152, 172, 179, 0.2);
}
.dashboard__button--light:hover, .fileManager__more:hover {
  background: #617b84;
  color: #fff;
}
.dashboard__button--light:active, .fileManager__more:active, .dashboard__button--light.active, .active.fileManager__more {
  background: #20292c;
  color: #fff;
}
.dashboard__button--secondary {
  background: #7F8C8D;
  border-color: #7F8C8D;
  box-shadow: 0 2px 6px 0 rgba(127, 140, 141, 0.5);
}
.dashboard__button--secondary:hover {
  background: #6b7778;
}
.dashboard__button--secondary:active {
  background: #4e5758;
}
.dashboard__button--info, .modal__button--info {
  background: #5DADE2;
  border-color: #5DADE2;
  box-shadow: 0 2px 6px 0 rgba(93, 173, 226, 0.5);
}
.dashboard__button--info:hover, .modal__button--info:hover {
  background: #3a9bdc;
}
.dashboard__button--info:active, .modal__button--info:active {
  background: #217cb8;
}
.dashboard__button--warning, .modal__button--warning {
  background: #F5B041;
  border-color: #F5B041;
  box-shadow: 0 2px 6px 0 rgba(245, 176, 65, 0.5);
}
.dashboard__button--warning:hover, .modal__button--warning:hover {
  background: #f3a01a;
}
.dashboard__button--warning:active, .modal__button--warning:active {
  background: #c67e0a;
}
.dashboard__button--danger, #userRoles .userOption__option, .fileManager__button--danger {
  background: #EC7063;
  border-color: #EC7063;
  box-shadow: 0 2px 6px 0 rgba(236, 112, 99, 0.5);
}
.dashboard__button--danger:hover, #userRoles .userOption__option:hover, .fileManager__button--danger:hover {
  background: #e84f3f;
}
.dashboard__button--danger:active, #userRoles .userOption__option:active, .fileManager__button--danger:active {
  background: #d02b19;
}
.dashboard__button--success, .modal__button--success, #userRoles .userOption__option.active, .fileManager__button--success {
  background: #52BE80;
  border-color: #52BE80;
  box-shadow: 0 2px 6px 0 rgba(82, 190, 128, 0.5);
}
.dashboard__button--success:hover, .modal__button--success:hover, #userRoles .userOption__option.active:hover, .fileManager__button--success:hover {
  background: #3fa86c;
}
.dashboard__button--success:active, .modal__button--success:active, #userRoles .userOption__option.active:active, .fileManager__button--success:active {
  background: #2e7c4f;
}
.dashboard__button--dark {
  background: #212F3D;
  border-color: #212F3D;
  box-shadow: 0 2px 6px 0 rgba(33, 47, 61, 0.5);
}
.dashboard__button--dark:hover {
  background: #131b23;
}
.dashboard__button--dark:active {
  background: black;
}
.dashboard__button--full {
  margin: 10px 0;
  width: 100%;
}
@media (max-width: 992px) {
  .dashboard__button--mobile i {
    font-size: 16px;
    margin: 0;
  }
  .dashboard__button--mobile span {
    display: none;
  }
}
.dashboard__button--tabList {
  display: none;
}
@media (max-width: 992px) {
  .dashboard__button--tabList {
    display: block;
  }
}
@media (max-width: 767px) {
  .dashboard__button--menu {
    padding: 5px 8px;
    margin: 2px 3px;
  }
  .dashboard__button--menu i {
    font-size: 12px;
  }
}
.dashboard__test {
  font-size: 26px;
  margin-right: 5px;
}
.dashboard__test--true {
  border-color: #52BE80;
  color: #52BE80;
}
.dashboard__test--false {
  border-color: #EC7063;
  color: #EC7063;
}
.dashboard__icon, .dashboard .ui-datepicker-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin: 3px;
  cursor: pointer;
  width: 26px;
  height: 26px;
  text-decoration: none;
  border: 1px solid #AF7AC5;
  color: #AF7AC5;
  border-radius: 4px;
  transition: opacity 0.3s, color 0.3s ease-in-out, background 0.3s ease-in-out;
  box-shadow: 0 1px 3px 0 rgba(175, 122, 197, 0.5);
  background: #fff;
}
.dashboard__icon:disabled, .dashboard .ui-datepicker-trigger:disabled {
  opacity: 0.3;
  cursor: default;
}
.dashboard__icon:hover, .dashboard .ui-datepicker-trigger:hover {
  background: #AF7AC5;
  color: #fff;
}
.dashboard__icon:active, .dashboard .ui-datepicker-trigger:active {
  background: #7e4297;
  color: #fff;
}
.dashboard__icon--light, .dashboard .ui-datepicker-trigger {
  border-color: #617b84;
  color: #617b84;
  box-shadow: 0 1px 3px 0 rgba(122, 149, 158, 0.5);
}
.dashboard__icon--light:hover, .dashboard .ui-datepicker-trigger:hover {
  background: #617b84;
}
.dashboard__icon--light:active, .dashboard .ui-datepicker-trigger:active {
  background: #b5c4c9;
}
.dashboard__icon--secondary {
  border-color: #7F8C8D;
  color: #7F8C8D;
  box-shadow: 0 1px 3px 0 rgba(127, 140, 141, 0.5);
}
.dashboard__icon--secondary:hover {
  background: #7F8C8D;
}
.dashboard__icon--secondary:active {
  background: #4e5758;
}
.dashboard__icon--info {
  border-color: #5DADE2;
  color: #5DADE2;
  box-shadow: 0 1px 3px 0 rgba(93, 173, 226, 0.5);
}
.dashboard__icon--info:hover {
  background: #5DADE2;
}
.dashboard__icon--info:active {
  background: #217cb8;
}
.dashboard__icon--warning {
  border-color: #F5B041;
  color: #F5B041;
  box-shadow: 0 1px 3px 0 rgba(245, 176, 65, 0.5);
}
.dashboard__icon--warning:hover {
  background: #F5B041;
}
.dashboard__icon--warning:active {
  background: #c67e0a;
}
.dashboard__icon--danger {
  border-color: #EC7063;
  color: #EC7063;
  box-shadow: 0 1px 3px 0 rgba(236, 112, 99, 0.5);
}
.dashboard__icon--danger:hover {
  background: #EC7063;
}
.dashboard__icon--danger:active {
  background: #d02b19;
}
.dashboard__icon--success {
  border-color: #52BE80;
  color: #52BE80;
  box-shadow: 0 1px 3px 0 rgba(82, 190, 128, 0.5);
}
.dashboard__icon--success:hover {
  background: #52BE80;
}
.dashboard__icon--success:active {
  background: #2e7c4f;
}
.dashboard__icon--dark {
  border-color: #212F3D;
  color: #212F3D;
  box-shadow: 0 1px 3px 0 rgba(33, 47, 61, 0.5);
}
.dashboard__icon--dark:hover {
  background: #212F3D;
}
.dashboard__icon--dark:active {
  background: black;
}
.dashboard__records {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  margin-top: -30px;
  max-width: 80%;
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .dashboard__records {
    display: none;
  }
}
.dashboard__records > div {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}
@media (max-width: 992px) {
  .dashboard__records > div {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
  }
  .dashboard__records > div:last-child {
    margin-bottom: 0;
  }
}
.dashboard__records > div::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #b5bcbd;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 992px) {
  .dashboard__records > div::after {
    display: none;
  }
}
.dashboard__records > div:last-child::after {
  display: none;
}
.dashboard__massAction {
  position: fixed;
  top: 75px;
  right: 0;
  z-index: 11;
  font-size: 14px;
  color: #333;
  background-image: linear-gradient(250deg, rgba(51, 148, 225, 0.5), transparent);
  background-color: #584475;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 15px;
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  box-shadow: 0 5px 15px 0 rgba(80, 60, 120, 0.15);
  border: 1px solid rgba(100, 100, 100, 0.1);
}
.dashboard__massAction label {
  display: block;
  margin-right: 10px;
}
.dashboard__selectAction {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.dashboard__massActionRow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard__result span {
  font-weight: bold;
}
.dashboard input:not([type="submit"], [type="file"], [type="checkbox"], .vue-treeselect__input), .dashboard select, .dashboard textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 13px;
  color: #333;
  font-family: "Roboto";
  outline: none;
}
.dashboard input:not([type="submit"], [type="file"], [type="checkbox"], .vue-treeselect__input):focus, .dashboard select:focus, .dashboard textarea:focus {
  box-shadow: 0 0 5px 0px rgba(100, 100, 100, 0.2);
  border-color: #c0b2d3 !important;
}
.dashboard select.availability {
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  min-width: auto !important;
  max-width: 200px;
}
.dashboard select.danger {
  background: #fdedeb;
  border-color: #EC7063 !important;
  color: #EC7063;
}
.dashboard select.success {
  background: #e6f6ed;
  border-color: #52BE80 !important;
  color: #52BE80;
}
.dashboard select option {
  color: #000 !important;
}
.dashboard__list {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  margin: 10px 0;
  border-top: 1px solid #ebeded;
}
@media (max-width: 767px) {
  .dashboard__list {
    flex-direction: column;
  }
}
.dashboard__buttons {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.dashboard__buttons--start {
  justify-content: flex-start;
}
.dashboard__text {
  font-size: 15px;
  color: #333;
  line-height: 120%;
  margin-bottom: 10px;
  color: #333;
}
.dashboard__text:last-child {
  margin-bottom: 0;
}
.dashboard__text a:not('.dashboard__button') {
  color: #584475;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.dashboard__text a:not('.dashboard__button'):hover {
  color: #8a72ad;
}
.dashboard__text--large {
  font-size: 18px;
}
.dashboard__text--bold {
  font-weight: bold;
}
.dashboard__text--noMargin {
  margin: 0;
}
.dashboard__text--margin {
  margin: 15px 0;
}
.dashboard__text--block > span {
  display: block;
  margin: 5px 0;
}
.dashboard__text--block span.success {
  color: #52BE80;
  font-weight: bold;
}
.dashboard__text--block span.blocked {
  font-weight: bold;
  color: #EC7063;
}
.dashboard__text--danger {
  color: #EC7063;
}
.dashboard__text--right {
  text-align: right;
}
.dashboard__text p {
  font-size: 16px;
}
.dashboard table {
  border-collapse: collapse;
  border: 1px solid #f0efef;
  width: 100%;
  margin: 10px 0;
}
@media (max-width: 992px) {
  .dashboard table {
    border: 0;
  }
}
.dashboard table.table--separate {
  border: 0;
  border-collapse: separate;
  border-spacing: 5px;
}
.dashboard table.table--separate td {
  border-color: #d0d5d5;
}
.dashboard table.table--separate td.disabled {
  border-color: #f7c3be;
}
.dashboard table caption {
  text-align: left;
  margin: 10px 0;
  font-size: 15px;
  color: #333;
  font-weight: bold;
}
.dashboard table thead {
  background: rgba(88, 68, 117, 0.1);
}
.dashboard table thead th {
  border: 1px solid #fff;
}
.dashboard table thead th, .dashboard table thead td {
  font-weight: bold;
  text-align: center;
  border-color: #fff;
  padding: 10px;
}
.dashboard table th, .dashboard table td {
  font-size: 14px;
}
.dashboard table th input:not([type="checkbox"]), .dashboard table th select, .dashboard table td input:not([type="checkbox"]), .dashboard table td select {
  width: 100%;
}
.dashboard table tbody {
  vertical-align: baseline;
}
.dashboard table tbody input[type="number"] {
  width: 70px !important;
}
.dashboard table td {
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #f0efef;
  text-align: center;
  color: #333;
}
@media (max-width: 992px) {
  .dashboard table td {
    border: 1px solid #f0efef;
    border-top: 0;
  }
  .dashboard table td:first-child {
    border-top: 1px solid #f0efef;
  }
}
.dashboard table td.disabled {
  background: #ffecec !important;
}
.dashboard table td .mobile {
  display: none;
  font-size: 18px;
  padding: 8px;
  margin: 10px 0;
  font-weight: bold;
  background: rgba(88, 68, 117, 0.1);
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .dashboard table td .mobile {
    display: block;
  }
}
.dashboard table td details summary {
  color: #000;
  font-weight: 500;
}
.dashboard table tbody tr:nth-child(even) td {
  background: #fafafa;
}
.dashboard table select {
  min-width: 100% !important;
}
.dashboard table tr.ui-sortable-helper {
  opacity: 0.5;
  cursor: move;
}
.dashboard__table table {
  background: #fff;
}
.dashboard__table td a:not(.dashboard__icon, .dashboard__button) {
  color: #5DADE2;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}
.dashboard__table td a:not(.dashboard__icon, .dashboard__button):hover {
  color: #217cb8;
}
.dashboard__tableName {
  display: none;
  font-weight: bold;
}
@media (max-width: 992px) {
  .dashboard__tableName {
    display: block;
  }
}
@media (max-width: 992px) {
  .dashboard__tableFlex {
    display: flex;
    align-items: center;
  }
  .dashboard__tableFlex > div {
    width: 50%;
    text-align: left;
  }
}
.dashboard__tableRow {
  display: flex;
  justify-content: center;
}
@media (max-width: 1199px) {
  .dashboard__tableRow {
    flex-direction: column;
  }
}
.dashboard__tableRow > div {
  display: flex;
  margin: 0 2px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .dashboard__tableRow > div {
    margin-bottom: 5px;
  }
  .dashboard__tableRow > div:last-child {
    margin-bottom: 0;
  }
}
.dashboard__tableRow > div > * {
  max-width: 80px;
}
.dashboard__tableButton {
  font-size: 14px;
  color: #333;
  border: 0;
  background: none;
  cursor: pointer;
  font-weight: bold;
}
.dashboard__form {
  display: flex;
}
@media (max-width: 992px) {
  .dashboard__form {
    flex-direction: column;
    align-items: baseline;
  }
}
.dashboard__tabs {
  padding-left: 15px;
  width: calc(100% - 200px);
  box-sizing: border-box;
  border-left: 1px solid #e8e3ef;
  margin-left: 15px;
}
.dashboard__tabs--full {
  padding-left: 0;
  width: 100%;
  border-left: 0;
  margin-left: 0;
}
.dashboard__tabs--full {
  padding-left: 0;
  width: 100%;
  border-left: 0;
  margin-left: 0;
}
@media (max-width: 992px) {
  .dashboard__tabs {
    padding: 0;
    margin: 0;
    margin-top: 10px;
    width: 100%;
    border: 0;
  }
}
.dashboard__tab {
  display: none;
}
.dashboard__tab.active {
  display: block;
}
.dashboard__menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 200px;
  margin: -10px;
  margin-right: 0;
  position: sticky;
  top: 10px;
  height: 100%;
}
@media (max-width: 992px) {
  .dashboard__menu {
    width: 200px;
    margin: 0px 0;
    right: -200px;
    position: fixed;
    top: auto;
    bottom: 60px;
    z-index: 30;
    transition: right 0.3s ease-out;
    background: #fff;
    height: auto;
  }
  .dashboard__menu.active {
    right: 0;
  }
}
.dashboard__menu li {
  margin-bottom: 4px;
}
@media (max-width: 992px) {
  .dashboard__menu li {
    margin: 2px;
  }
}
.dashboard__menu li a {
  text-decoration: none;
  padding: 10px 15px;
  box-sizing: border-box;
  display: block;
  font-size: 15px;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
  font-weight: 500;
  color: #584475;
  background: #f5f3f8;
}
.dashboard__menu li a:hover {
  background: #dad3e5;
  color: inherit;
  text-decoration: none;
}
.dashboard__menu li.active > a {
  background: #8a72ad;
  border-bottom: 0;
  color: #fff;
  font-weight: bold;
  box-shadow: inset 5px 0 0 #584475;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media (max-width: 992px) {
  .dashboard__menu li.active > a {
    border-radius: 4px;
    box-shadow: none;
  }
}
.dashboard .dashboard__field {
  margin: 20px 0;
  position: relative;
  font-size: 15px;
  color: #333;
}
.dashboard .dashboard__field--border {
  border: 1px solid #ccc;
  border-radius: 4px;
}
.dashboard .dashboard__field--error input {
  border-color: #EC7063;
}
.dashboard .dashboard__field--small {
  margin-bottom: 10px;
}
.dashboard .dashboard__field .file {
  margin-bottom: 0;
}
.dashboard .dashboard__field > label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 15px;
}
.dashboard .dashboard__field > label.dashboard__button, .dashboard .dashboard__field > label.modal__button, .dashboard #userRoles .dashboard__field > label.userOption__option, #userRoles .dashboard .dashboard__field > label.userOption__option, .dashboard .dashboard__field > label.fileManager__more, .dashboard .dashboard__field > label.fileManager__button {
  display: inline-block;
}
.dashboard .dashboard__field input:not([type="checkbox"], [type="radio"], .vue-treeselect__input) {
  width: 100%;
  height: 35px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 15px;
}
.dashboard .dashboard__field textarea {
  resize: none;
  min-height: 200px;
  width: 100%;
  font-size: 15px;
  padding: 10px;
}
.dashboard .dashboard__field select {
  min-width: 300px;
  width: 100%;
  font-size: 15px;
  height: 35px;
  padding: 0 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .dashboard .dashboard__field select {
    min-width: 100px;
  }
}
.dashboard .dashboard__field .validationInfo {
  font-style: italic;
  font-size: 13px;
  margin-top: 3px;
}
.dashboard .dashboard__label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 15px;
}
.dashboard .dashboard__label.dashboard__button, .dashboard .dashboard__label.modal__button, .dashboard #userRoles .dashboard__label.userOption__option, #userRoles .dashboard .dashboard__label.userOption__option, .dashboard .dashboard__label.fileManager__more, .dashboard .dashboard__label.fileManager__button {
  display: inline-block;
}
.dashboard__image {
  transition: opacity 0.3s;
  border-radius: 4px;
}
.dashboard__image.removeFile {
  opacity: 0.2;
}
.dashboard__image img {
  display: block;
  max-width: 200px;
  max-height: 200px;
  margin: 10px 0;
  padding: 5px;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid #ececec;
}
.dashboard__image span {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  font-style: italic;
}
.dashboard__image--full img {
  max-width: 100%;
  max-height: 100%;
}
.dashboard__image--center img {
  margin: 0 auto;
}
.dashboard__buttonRow {
  display: flex;
  align-items: center;
}
.dashboard__checkbox {
  display: flex;
  align-items: center;
}
.dashboard__checkbox label {
  margin: 0 !important;
  margin-left: 10px !important;
}
.dashboard__checkbox input {
  margin: 0;
  width: 15px;
  height: 15px;
}
.dashboard__filters {
  padding-top: 10px;
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 992px) {
  .dashboard__filters {
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .dashboard__filters {
    margin-bottom: 10px;
  }
  .dashboard__filters:last-child {
    margin-bottom: 0;
  }
  .dashboard__filters label {
    display: block;
    margin: 0;
    margin-bottom: 5px;
  }
}
.dashboard__filters label {
  font-size: 14px;
  margin-right: 5px;
}
.dashboard__filters input {
  max-width: 300px;
  width: 100%;
  font-size: 14px;
  height: 35px;
}
@media (max-width: 767px) {
  .dashboard__filters input {
    max-width: 100%;
  }
}
.dashboard__menuList {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.dashboard__menuList--hidden {
  opacity: 0.4;
}
.dashboard__menuTree {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.dashboard__menuTree ul {
  list-style-type: none;
  width: 100%;
  padding: 0;
}
.dashboard__menuTree ul:first-child {
  display: block;
}
.dashboard__menuTree ul .dashboard__menuList {
  padding: 5px 5px 5px 15px;
  box-sizing: border-box;
  transition: background 0.1s;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .dashboard__menuTree ul .dashboard__menuList {
    padding-left: 0;
    padding-right: 0;
  }
}
.dashboard__menuTree ul .dashboard__menuList:hover {
  background: rgba(170, 170, 170, 0.1);
}
.dashboard__menuTree ul ul .dashboard__menuList {
  padding-right: 0;
}
.dashboard__menuName {
  font-size: 16px;
  color: #333;
  margin-left: 25px;
}
@media (max-width: 767px) {
  .dashboard__menuName {
    font-size: 13px;
    margin-left: 19px;
  }
}
.dashboard__menuName--main {
  opacity: 0.5;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-left: 0;
  color: #584475;
}
@media (max-width: 767px) {
  .dashboard__menuName--main {
    font-size: 15px;
  }
}
.dashboard__menuRight {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 70%;
}
@media (max-width: 767px) {
  .dashboard__menuRight {
    width: 60%;
  }
}
.dashboard__menuLeft {
  width: 30%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .dashboard__menuLeft {
    width: 40%;
  }
}
.dashboard__menuArrow {
  font-size: 12px;
  width: 18px;
  height: 18px;
  margin-left: 0;
  margin-right: 10px;
  border: 0;
  color: #584475;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
}
.dashboard__menuArrow:hover {
  color: #271f34;
}
.dashboard__fieldset {
  background: rgba(170, 170, 170, 0.1);
  border: 1px solid rgba(170, 170, 170, 0.2);
  border-radius: 4px;
  padding: 15px;
  box-sizing: border-box;
  margin: 10px 0;
}
.dashboard__fieldset--margin {
  margin: 10px 0;
}
.dashboard__fieldset label {
  font-weight: bold;
}
.dashboard__selectCategory {
  font-weight: bold;
  font-size: 15px;
  color: #584475;
  position: relative;
  transition: color 0.3s;
}
.dashboard__selectCategory:hover {
  color: #8a72ad;
}
.dashboard__categoryList {
  position: absolute;
  background: #fff;
  min-width: 250px;
  z-index: 1;
  padding: 15px;
  box-sizing: border-box;
  border: 1px solid rgba(100, 100, 100, 0.1);
  box-shadow: 0 0 15px 0 rgba(60, 40, 90, 0.05);
  border-radius: 4px;
}
.dashboard__closeList {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 15px;
  color: #333;
  transition: color 0.3s;
  cursor: pointer;
}
.dashboard__closeList:hover {
  color: #666;
}
.dashboard__categoryRow {
  font-size: 14px;
  margin: 7px 0;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s;
  color: #584475;
}
.dashboard__categoryRow:hover {
  color: #8a72ad;
}
.dashboard__categoryRow:last-child {
  margin-bottom: 0;
}
.dashboard__categoryArrow {
  font-size: 14px;
}
.dashboard__available {
  font-size: 20px;
  color: #7F8C8D;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
}
.dashboard__available:hover {
  opacity: 1;
}
.dashboard__available--checked {
  color: #52BE80;
  opacity: 1;
}
.dashboard__available--checked:hover {
  color: #3ca167;
}
.dashboard__checkboxIcon {
  margin-right: 5px;
}
.dashboard details {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.dashboard details summary {
  margin-bottom: 10px;
  color: #584475;
  cursor: pointer;
  transition: color 0.3s;
}
.dashboard details summary:hover {
  color: #8a72ad;
}
.dashboard details > div {
  padding-left: 15px;
}
.dashboard details > div:nth-child(even) {
  background: #fafafa;
}
.dashboard details ul {
  list-style-type: none;
  padding: 0;
  padding-left: 20px;
  font-size: 14px;
}
.dashboard details form label {
  font-size: 15px;
}
.dashboard__details {
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(100, 100, 100, 0.1);
}
.dashboard__details label {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}
.dashboard__simulations {
  padding-top: 15px;
  font-size: 15px;
  font-weight: 400;
}
.dashboard__previewSimulation {
  margin-top: 10px;
}
.dashboard__colorPicker {
  padding-left: 0px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  padding-left: 15px;
}
.dashboard__colorPicker input {
  background: none;
  padding: 0 !important;
  border: 0 !important;
  height: 50px;
  width: 50px !important;
  margin-right: 10px;
  position: relative;
  bottom: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.dashboard__colorPicker input:hover {
  opacity: 0.7;
}
.dashboard__colorPicker input:focus {
  box-shadow: none;
  border: 0;
  opacity: 0.7;
}
.dashboard__rootTools {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.dashboard__rootTools li {
  margin-bottom: 10px;
}
.dashboard__rootTools a {
  text-decoration: none;
  color: #584475;
  transition: color 0.3s;
}
.dashboard__rootTools a:hover {
  color: #8a72ad;
}
.dashboard__draggable {
  padding: 10px 0;
  box-sizing: border-box;
}
.dashboard__draggableItem {
  padding: 7px 10px;
  margin: 5px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px dashed rgba(100, 100, 100, 0.2);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard__draggableItem > div {
  display: flex;
  align-items: center;
}
.dashboard__draggableItem:hover {
  background: rgba(170, 170, 170, 0.1);
}
.dashboard__draggableItem.sortable-chosen {
  background: rgba(170, 170, 170, 0.2);
}
.dashboard__draggableButton {
  cursor: pointer;
  display: inline-block;
  margin-right: 8px;
}
.dashboard__draggableCheckbox {
  display: none;
}
.dashboard__checkboxItem {
  display: flex;
  align-items: center;
}
.dashboard__simpleText {
  font-size: 14px;
  margin-top: -15px;
}
.dashboard__fileInput {
  display: none;
}
.dashboard__fileName {
  font-style: italic;
  font-size: 14px;
  display: inline-block;
  margin-left: 10px;
}
.dashboard__fileComponent {
  width: 100%;
  height: 200px;
  background: #FFF;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 120px;
  left: 0;
  height: 50px;
}
@media (max-width: 992px) {
  .dashboard table, .dashboard thead, .dashboard tbody, .dashboard th, .dashboard td, .dashboard tr {
    display: block;
  }
  .dashboard tr {
    margin-bottom: 30px;
  }
  .dashboard thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .dashboard td {
    position: relative;
    padding-left: 50%;
  }
  .dashboard td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
}
.dashboard__back {
  color: #5DADE2;
  font-size: 26px;
  margin-right: 5px;
}
.dashboard__taskList {
  padding: 0;
  padding-left: 20px;
}
.dashboard__taskList li {
  margin-bottom: 10px;
}
.dashboard__taskList li input {
  width: 100%;
  box-sizing: border-box;
  font-size: 14px !important;
}
.color-green {
  color: #52BE80;
  font-weight: bold;
}
.color-red {
  color: #EC7063;
  font-weight: bold;
}
.admin-list__mass-operations {
  display: none;
}
.dashboardDropzone__row {
  display: flex;
  margin-bottom: 10px;
  padding: 5px;
  box-sizing: border-box;
  align-items: center;
}
@media (max-width: 767px) {
  .dashboardDropzone__row {
    flex-direction: column;
    padding: 15px;
  }
}
.dashboardDropzone__row:nth-child(even) {
  background: rgba(170, 170, 170, 0.1);
}
.dashboardDropzone__row.ui-sortable-helper {
  background: rgba(170, 170, 170, 0.2);
  opacity: 0.9;
}
.dashboardDropzone__image {
  width: 80px;
}
.dashboardDropzone__form {
  width: calc(100% - 330px);
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .dashboardDropzone__form {
    width: 100%;
    padding: 10px 0;
  }
}
.dashboardDropzone__buttons {
  width: 250px;
}
@media (max-width: 767px) {
  .dashboardDropzone__buttons {
    width: 100%;
  }
}
.dashboardDropzone__buttons > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .dashboardDropzone__buttons > div {
    justify-content: center;
  }
}
.dashboard .clients__orders {
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
  margin-bottom: 15px;
  box-sizing: border-box;
}
.dashboard .clients__orders h3 {
  margin: 0;
}
.dashboard .clients__ordersTop {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .dashboard .clients__ordersTop {
    flex-direction: column;
  }
}
.dashboard .clients__ordersTop > div {
  text-align: center;
}
.dashboard .clients__ordersTop > div:nth-child(1) {
  width: 60%;
  text-align: left;
}
@media (max-width: 767px) {
  .dashboard .clients__ordersTop > div:nth-child(1) {
    width: 100%;
    text-align: center;
  }
}
.dashboard .clients__ordersTop > div:nth-child(2) {
  width: 15%;
}
@media (max-width: 767px) {
  .dashboard .clients__ordersTop > div:nth-child(2) {
    width: 100%;
  }
}
.dashboard .clients__ordersTop > div:nth-child(3) {
  width: 25%;
}
.dashboard .clients__ordersTop > div:nth-child(3) strong {
  font-size: 18px;
}
@media (max-width: 767px) {
  .dashboard .clients__ordersTop > div:nth-child(3) {
    width: 100%;
  }
}
.dashboard .clients__orders ol {
  margin: 0;
  padding-left: 20px;
}
.dashboardML {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -5px 0px -5px;
}
.dashboardML__li {
  padding: 10px;
  background: #f5f3f8;
  color: #584475;
  font-size: 15px;
  font-weight: 500;
  margin: 0 5px 5px 5px;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
  cursor: pointer;
  position: relative;
}
.dashboardML__li:hover:not(.active) {
  background: #dad3e5;
}
.dashboardML__li.active {
  background: #8a72ad;
  color: #fff;
}
.dashboardML__li.active::after {
  content: "";
  display: block;
  width: 0px;
  height: 0;
  border: 5px solid rgba(0, 0, 0, 0);
  border-right-color: #8a72ad;
  border-bottom-color: #8a72ad;
  transform: rotate(45deg);
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
}
.dashboardML__content {
  display: none;
  box-sizing: border-box;
}
.dashboardML__content.active {
  display: block;
}
.dashboardML__content--border {
  border: 2px solid #c0b2d3;
  border-radius: 4px;
  padding: 15px;
}
.dashboardML__files {
  border: 2px solid #c0b2d3;
  border-radius: 4px;
  padding: 15px;
}
@media screen and (max-width: 600px) {
  table.table-resp thead {
    border: none;
  }
  table.table-resp td {
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right;
  }
  table.table-resp td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 50px 20px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.5);
}
.modal.show {
  display: block;
}
@media (max-width: 992px) {
  .modal {
    padding: 20px 10px;
  }
}
.modal-header {
  position: relative;
  padding-right: 30px;
  padding: 10px 20px;
  box-sizing: border-box;
  background-image: linear-gradient(250deg, rgba(51, 148, 225, 0.5), transparent);
  background-color: #584475;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.modal-title {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding-right: 15px;
  margin: 0;
}
.modal span.lowercase {
  text-transform: lowercase;
}
.modal-dialog {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  min-width: 700px;
  width: max-content;
  border-radius: 4px;
  box-sizing: border-box;
  max-width: 100%;
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.2);
}
.modal-dialog--full {
  min-width: 100%;
}
@media (max-width: 992px) {
  .modal-dialog {
    min-width: auto;
    width: 100%;
  }
}
.modal-body {
  background: #fff;
  padding: 20px;
  font-size: 16px;
  color: #333;
  line-height: 160%;
}
@media (max-width: 767px) {
  .modal-body {
    padding: 15px 10px;
  }
}
.modal-body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.modal button.close {
  font-size: 40px;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 80%;
  position: absolute;
  right: 10px;
  top: 0;
}
.modal button.close:hover {
  color: #ccc;
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
@media (max-width: 767px) {
  .modal-footer {
    padding: 0px 10px 20px 10px;
  }
}
.modal .dashboard {
  padding: 0;
}
.modal .dashboard__records {
  margin-top: 0;
}
.modal .dashboard__header {
  background: none;
  position: static;
  margin: 0;
  padding: 0;
  padding-bottom: 15px;
}
.modal form label {
  font-size: 14px;
}
.modal form select {
  font-size: 14px;
}
.modal-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.modal-col {
  width: 12.5%;
  padding: 10px;
  min-width: 230px;
  box-sizing: border-box;
}
@media (max-width: 1500px) {
  .modal-col {
    width: 25%;
  }
}
@media (max-width: 992px) {
  .modal-col {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .modal-col {
    width: 50%;
  }
}
.modal-col--link {
  text-decoration: none;
}
.modal-item {
  padding: 10px;
  border: 1px solid #e8e3ef;
  box-sizing: border-box;
  height: 100%;
  border-radius: 4px;
}
.modal-item.active {
  box-shadow: 0 0 0 2px #7d62a4 inset;
}
.modal-text {
  color: #333;
  font-size: 14px;
  line-height: 120%;
}
.modal-text--center {
  text-align: center;
}
.modal-text--bold {
  font-weight: bold;
}
.modal-center {
  display: flex;
  justify-content: center;
}
.modal-search {
  margin-bottom: 10px;
}
.modal-search label {
  font-weight: 600;
}
.modal-fade-enter-active, .modal-fade-leave-active {
  transition: opacity 0.3s;
}
.modal-fade-enter, .modal-fade-leave-to {
  opacity: 0;
}
.alert {
  font-size: 14px;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 10px;
  border: 1px solid;
  text-align: center;
  margin-bottom: 30px;
  border-color: #9eceee;
  background: #dfeff9;
  color: #217cb8;
}
.alert-success {
  border-color: #8ad3a9;
  background: #c1e8d2;
  color: #2e7c4f;
}
.alert-danger {
  border-color: #f4afa7;
  background: #fdedeb;
  color: #d02b19;
}
.alert ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.alert ul li {
  margin-bottom: 10px;
}
.alert ul li:last-child {
  margin-bottom: 0;
}
.pagination ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination ul li {
  margin: 5px;
}
.pagination ul li a, .pagination ul li span {
  display: block;
  font-size: 14px;
  border-radius: 4px;
  padding: 7px 10px;
  box-sizing: border-box;
  text-decoration: none;
  color: #584475;
  transition: color 0.3s, background 0.3s;
  border: 1px solid #dad3e5;
}
.pagination ul li a:hover {
  color: #271f34;
  background: #dad3e5;
}
.pagination ul li.active span {
  background: #dad3e5;
}
.pagination ul li.disabled {
  display: none;
}
.component-minimize-box {
  display: flex;
  justify-content: flex-end;
}
.newComponent {
  animation: 1s 3 componentChangeColor;
}
@keyframes componentChangeColor {
  0% {
    background-color: rgba(170, 170, 170, 0.1);
  }
  50% {
    background-color: rgba(170, 170, 170, 0.2);
  }
  100% {
    background-color: rgba(170, 170, 170, 0.1);
  }
}
.tab-component .component {
  position: relative;
}
.tab-component .component:first-child {
  margin-top: 10px;
}
.tab-component .component.minimize {
  padding-bottom: 0;
}
.tab-component .component.minimize .component-content {
  max-height: 0;
}
.tab-component .component.sortable-chosen {
  background: rgba(170, 170, 170, 0.2);
}
.tab-component .component__text {
  font-size: 14px;
  color: #333;
  line-height: 140%;
  margin: 5px 0;
}
.tab-component .component__fileUploader {
  margin: 15px 0;
}
.tab-component .component__upload {
  background: rgba(170, 170, 170, 0.2);
  padding: 20px;
  box-sizing: border-box;
  min-height: 150px;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  font-size: 14px;
  border-radius: 4px;
}
.tab-component .component__upload:hover {
  background: rgba(170, 170, 170, 0.3);
}
.tab-component .component__upload i {
  font-size: 30px;
  margin: 8px 0;
  color: #5DADE2;
}
.tab-component .component__uploadBlock {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  cursor: pointer;
}
.tab-component .component__image {
  border: 1px solid rgba(100, 100, 100, 0.2);
  padding: 5px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 4px;
  display: inline-block;
}
.tab-component .component__image img {
  display: block;
  border-radius: 4px;
}
.tab-component .component-block {
  background: rgba(170, 170, 170, 0.1);
  border: 1px solid rgba(170, 170, 170, 0.2);
  border-radius: 4px;
  padding: 15px;
  box-sizing: border-box;
  margin: 15px 0;
}
@media (max-width: 767px) {
  .tab-component .component-block {
    padding: 10px;
  }
}
.tab-component .component-block label {
  margin-bottom: 5px;
  font-weight: bold;
}
.tab-component .minimize .component-content {
  overflow: hidden;
}
.tab-component .component-content {
  padding-top: 10px;
}
.tab-component .component-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .tab-component .component-row {
    flex-direction: column;
  }
}
.tab-component .component-buttons {
  display: flex;
  align-items: center;
}
.tab-component .component-name {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #584475;
}
@media (max-width: 767px) {
  .tab-component .component-name {
    margin-bottom: 10px;
  }
}
.tab-component .component-filesRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -7px;
}
.tab-component .component-file {
  width: 16.66%;
  padding: 7px;
  box-sizing: border-box;
  min-width: 204px;
}
.tab-component .component-file.sortable-chosen {
  opacity: 0.5;
}
.tab-component .component-file img {
  display: block;
  max-width: 100%;
  border-radius: 4px;
}
.tab-component .component-fileContent {
  position: relative;
  border: 1px solid rgba(100, 100, 100, 0.2);
  padding: 5px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 4px;
}
.tab-component .component-fileContent input {
  margin-top: 5px;
  font-size: 13px !important;
  height: 30px !important;
}
.tab-component .component-file-nav {
  position: absolute;
  top: 8px;
  left: 5px;
  right: 5px;
  z-index: 1;
}
.tab-component .component-file-nav .right {
  position: absolute;
  right: 0px;
}
.tab-component .component-relative {
  position: relative;
}
.tab-component .columnsFirstBig {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.tab-component .columnsFirstBig > .component-one-option {
  width: 48%;
}
.tab-component .columnsFirstBig > .component-one-option:first-child {
  width: 100%;
}
.tab-component .columns2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.tab-component .columns2 > .component-one-option {
  width: 48%;
}
.tab-component .columns {
  display: flex;
  margin: 0 -10px;
}
@media (max-width: 767px) {
  .tab-component .columns {
    flex-direction: column;
  }
}
.tab-component .columns > .component-one-option {
  padding: 10px;
  box-sizing: border-box;
  background: rgba(170, 170, 170, 0.1);
  border: 1px solid rgba(170, 170, 170, 0.2);
  border-radius: 4px;
  margin: 10px;
}
@media (max-width: 767px) {
  .tab-component .columns > .component-one-option {
    width: auto;
  }
}
.tab-component .component-one-option {
  width: 100%;
  margin-bottom: 15px;
}
.tab-component .component-one-option label {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 15px;
}
.tab-component .component-one-option > label {
  display: inline-block;
}
.tab-component .component-one-option input[type="checkbox"] {
  float: left;
  margin-right: 5px;
}
.tab-component .component-one-option a {
  color: #5DADE2;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.tab-component .component-one-option a:hover {
  color: #217cb8;
}
.tab-component .component-one-option .component-name {
  margin-bottom: 5px;
  color: #333;
  font-size: 14px;
}
.tab-component .components {
  padding: 25px 10px;
}
.tab-component .components.show {
  padding: 5px 10px;
  position: relative;
}
.component-add {
  margin: 10px 0;
}
.components {
  border: 2px dashed rgba(93, 173, 226, 0.6);
  border-radius: 4px;
  padding: 50px 10px;
  box-sizing: border-box;
  margin: 30px 0;
}
@media (max-width: 992px) {
  .components {
    padding: 10px;
  }
}
.components.show {
  padding: 10px;
}
.components.show .components__list {
  display: flex;
}
.components.show .components__add {
  display: none;
}
.components.short {
  border: none;
  margin: 0;
  padding: 0;
}
.components.short.open {
  border: 2px dashed rgba(93, 173, 226, 0.6);
  position: absolute;
  left: 0;
  background: white;
  top: 0;
  right: 0;
  z-index: 2;
}
.components__close-list {
  position: absolute;
  right: -15px;
  top: -20px;
  font-size: 30px;
  color: #ec7063;
}
.components .components {
  padding: 15px;
}
.components__add {
  border-radius: 4px;
  border: 0;
  font-size: 15px;
  color: #fff;
  background: #5DADE2;
  display: block;
  margin: auto;
  padding: 8px 10px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 6px 0 rgba(93, 173, 226, 0.5);
  transition: opacity 0.3s, background 0.3s ease-out, color 0.3s ease-out;
  border: 1px solid #5DADE2;
  text-transform: uppercase;
  font-weight: bold;
}
.components__add:hover {
  background: #3a9bdc;
}
.components__add:active {
  background: #217cb8;
}
.components__add i {
  font-size: 17px;
  margin-right: 3px;
}
.components__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -5px;
  padding: 10px;
  box-sizing: border-box;
  display: none;
}
@media (max-width: 992px) {
  .components__list {
    padding: 0;
  }
}
.components__block {
  width: 120px;
  height: 120px;
  padding: 5px;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .components__block {
    width: 90px;
    height: 90px;
  }
}
.components__element {
  text-align: center;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(100, 100, 100, 0.2);
  font-size: 14px !important;
  font-weight: bold;
  padding: 20px 5px;
  box-sizing: border-box;
  cursor: pointer;
  color: #333;
  transition: color 0.3s, border-color 0.3s;
  height: 100%;
}
@media (max-width: 992px) {
  .components__element {
    font-size: 12px !important;
  }
}
.components__element:hover {
  color: #5DADE2;
  border-color: #5DADE2;
}
.components__element:hover span {
  border-color: #5DADE2;
}
.components__element input {
  display: none;
}
.components__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.components__icon span {
  display: block;
  border: 1px dashed #333;
  height: 20px;
  margin: 0 5px;
  transition: border-color 0.3s;
}
.components__icon span:last-child {
  display: none;
}
.components__icon i {
  margin: 8px 5px;
  font-size: 30px;
}
@media (max-width: 992px) {
  .components__icon i {
    font-size: 22px;
  }
}
.columns .components__list {
  background: rgba(0, 0, 0, 0);
  padding: 0;
}
#userRoles ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#userRoles ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: background 0.1s;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(100, 100, 100, 0.1);
  font-size: 15px;
  font-weight: 500;
}
#userRoles ul li:last-child {
  border: 0;
}
#userRoles ul li:hover {
  background: rgba(170, 170, 170, 0.1);
}
#userRoles ul li ul {
  width: 100%;
  margin-top: 10px;
}
#userRoles ul li ul li {
  padding: 10px;
  padding-left: 20px;
  padding-right: 0;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
}
#userRoles .userOption {
  display: flex;
}
.supply {
  border-bottom: 1px solid #f0efef;
}
@media (max-width: 992px) {
  .supply {
    border: 0;
  }
}
.supply__item {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  color: #333;
  text-align: center;
  border-left: 0;
}
@media (max-width: 992px) {
  .supply__item {
    margin-bottom: 15px;
    border: 1px solid #f0efef;
  }
}
.supply__item:nth-child(even) {
  background: #fafafa;
}
.supply__item > div {
  width: 16.66%;
  padding: 10px;
  border: 1px solid #f0efef;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .supply__item > div {
    flex-direction: column;
    border: 0;
  }
}
.supply__item > div span {
  display: none;
}
@media (max-width: 992px) {
  .supply__item > div span {
    display: block;
    font-weight: bold;
  }
}
.supply__item > div button span {
  display: inline-block;
}
@media (max-width: 1199px) {
  .supply__item > div button span {
    display: none;
  }
}
.supply__code {
  width: 4.66% !important;
}
@media (max-width: 992px) {
  .supply__code {
    width: 50% !important;
    order: 1;
  }
}
@media (max-width: 992px) {
  .supply__note {
    width: 100% !important;
    order: 2;
  }
}
.supply__actions {
  width: 47.66% !important;
}
@media (max-width: 992px) {
  .supply__actions {
    width: 100% !important;
    order: 5;
  }
  .supply__actions > div {
    display: flex;
  }
}
.supply__amount {
  width: 8.66% !important;
}
@media (max-width: 992px) {
  .supply__amount {
    width: 50% !important;
    order: 3;
  }
}
.supply__added {
  width: 5.66% !important;
}
@media (max-width: 992px) {
  .supply__added {
    width: 50% !important;
    order: 4;
  }
}
@media (max-width: 992px) {
  .supply__image {
    width: 50% !important;
    order: 0;
  }
}
.supply__image img {
  max-width: 80px;
  max-height: 80px;
  display: block;
}
@media (max-width: 992px) {
  .supply__image img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
  }
}
.supply__row {
  border-left: 1px solid #f0efef;
}
@media (max-width: 1199px) {
  .supply__row {
    border-left: 0;
  }
}
.supply__row--head {
  background: #f0efef;
  font-weight: bold;
}
@media (max-width: 992px) {
  .supply__row--head {
    display: none;
  }
}
.supply__row--head .supply__item > div {
  border-color: #fff;
}
.supplyBoxProductList {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 270px;
  padding: 0 10px 10px 10px;
  box-sizing: border-box;
  background: rgba(93, 173, 226, 0.05);
  overflow-y: auto;
  border-left: 1px solid rgba(93, 173, 226, 0.2);
}
@media (max-width: 992px) {
  .supplyBoxProductList {
    position: static;
    width: 100%;
    border: 0;
    background: #fff;
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
  }
}
.supplyBoxProductList__search {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  font-size: 14px !important;
}
.supplyBoxProductList__header {
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  box-sizing: border-box;
  background: #5DADE2;
  color: #fff;
  margin: 0 -10px;
  margin-bottom: 15px;
  border-top-right-radius: 4px;
}
@media (max-width: 992px) {
  .supplyBoxProductList__header {
    display: none;
  }
}
.supplyBoxProductList__header--button {
  display: none;
}
@media (max-width: 992px) {
  .supplyBoxProductList__header--button {
    display: block;
    border: 0;
    width: 100%;
    margin: 0;
    border-radius: 4px;
  }
}
@media (max-width: 992px) {
  .supplyBoxProductList__block {
    opacity: 0;
    visibility: 0;
    height: 0;
    background: rgba(93, 173, 226, 0.05);
    padding: 10px;
    transition: all 0.1s;
  }
  .supplyBoxProductList__block.active {
    opacity: 1;
    visibility: 0;
    height: 100%;
  }
}
.supplyBoxProductList__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.supplyBoxProductList__content {
  width: calc(100% - 80px);
}
.supplyBoxProductList li {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(93, 173, 226, 0.2);
}
.supplyBoxProductList li:last-child {
  border-bottom: 0;
}
.supplyBoxProductList__image {
  border: 1px solid rgba(100, 100, 100, 0.1);
  border-radius: 4px;
  margin-right: 10px;
}
.supplyBoxProductList__name {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 10px;
}
.fileManager {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  padding: 20px;
  box-sizing: border-box;
  display: none;
  overflow-y: auto;
}
.fileManager.show {
  display: block;
}
.fileManager__container {
  background: #fff;
  padding: 50px 20px 30px 20px;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
.fileManager__close {
  position: absolute;
  padding: 0;
  top: 10px;
  right: 20px;
  background: rgba(0, 0, 0, 0);
  font-size: 30px;
  color: #afafaf;
  border: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.fileManager__close:hover {
  color: #646464;
}
.fileManager__header {
  color: #000;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: -30px;
}
.fileManager__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.fileManager__col {
  padding: 5px;
  box-sizing: border-box;
  width: 10%;
}
@media (max-width: 1399px) {
  .fileManager__col {
    width: 12.5%;
  }
}
@media (max-width: 1199px) {
  .fileManager__col {
    width: 16.6%;
  }
}
@media (max-width: 992px) {
  .fileManager__col {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .fileManager__col {
    width: 25%;
  }
}
@media (max-width: 490px) {
  .fileManager__col {
    width: 33.33%;
  }
}
.fileManager__col.selectedFile .fileManager__img {
  box-shadow: 0 0 0 3px #80d6ff inset;
  border: 0;
}
.fileManager__img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border: 1px solid #ececec;
  padding: 5px;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 0.3s;
}
.fileManager__img img:hover {
  opacity: 0.8;
}
.fileManager__more {
  margin: 20px auto 0 auto;
  max-width: 150px;
  display: block;
  text-align: center;
}
.fileManager__more--loading {
  cursor: default;
}
.fileManager__more--loading span {
  display: block;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  margin: 0 auto;
  border: 2px solid #fff;
  border-top-color: rgba(0, 0, 0, 0);
  animation: loadingFile 0.5s linear infinite;
}
.fileManager__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}
@keyframes loadingFile {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.block {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.block__item {
  padding: 5px;
  width: 20%;
  box-sizing: border-box;
}
@media (max-width: 1399px) {
  .block__item {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .block__item {
    width: 100%;
  }
}
.block__item.selected .block__content {
  border: 2px solid #a592c0;
  background: #e8e3ef;
}
.block__content {
  border: 2px solid #e8e3ef;
  border-radius: 4px;
  padding: 10px;
  box-sizing: border-box;
  height: 100%;
}
.block__img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
.block__field {
  margin: 5px 0;
  font-size: 15px;
  color: #000;
}
.block__field span {
  font-weight: bold;
}
.formInBackground__meter {
  position: fixed;
  width: 100%;
  top: -12px;
  left: 0;
  z-index: 35;
  -webkit-appearance: none;
  appearance: none;
}
.formInBackground__notify {
  transition: all 4s ease-out;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-around;
  pointer-events: none;
}
.formInBackground__notify .success {
  pointer-events: all;
  background: #52be80;
  border-radius: 5px;
  padding: 15px 40px;
  margin: 20px;
  color: #FFF;
}
.formInBackground__notify .error {
  pointer-events: all;
}
.formInBackground__notify .error li {
  background: red;
  text-align: center;
  list-style: none;
  padding: 15px 40px;
  color: #FFF;
  margin: 10px;
  border-radius: 5px;
}
.boxes {
  display: flex;
  flex-wrap: wrap;
}
.boxes__text {
  font-size: 14px;
}
.boxes__text--center {
  text-align: center;
}
.boxes__text--margin {
  margin: 10px 0;
}
.boxes__text--danger {
  color: #EC7063;
}
.boxes * {
  box-sizing: border-box;
}
.boxes--baseline {
  align-items: baseline;
}
.boxes picture img {
  max-width: 100%;
  height: auto;
}
.boxes select {
  min-width: auto !important;
}
.boxes__col {
  width: 25%;
  padding: 8px;
}
@media (max-width: 1610px) {
  .boxes__col {
    width: 33.33%;
  }
}
@media (max-width: 1399px) {
  .boxes__col {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .boxes__col {
    width: 100%;
  }
}
.boxes__item {
  border-radius: 4px;
  padding: 20px 10px 10px 10px;
  border: 1px solid #e8e3ef;
  height: 100%;
  position: relative;
}
.boxes__empty {
  color: #333;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 0;
}
.boxes__img {
  display: flex;
  justify-content: center;
}
.boxes__header {
  display: block;
  font-size: 14px;
  color: #333;
  margin-top: 10px;
  margin-left: 10px;
  font-weight: 500;
  text-align: center;
}
.boxes__fields {
  display: flex;
  justify-content: center;
  margin: 10px -5px;
}
.boxes__fields--left {
  justify-content: flex-start;
}
.boxes__fields--full {
  display: block;
}
.boxes__fields label span {
  font-weight: bold;
  font-size: 14px;
  display: block;
  margin-bottom: 3px;
}
.boxes__fields label.checkbox {
  display: flex;
}
.boxes__field {
  width: 50%;
  padding: 0 5px;
}
.boxes__field--full {
  width: 100%;
}
.boxes__field--dark {
  background: rgba(170, 170, 170, 0.1);
  border: 1px solid rgba(170, 170, 170, 0.2);
  border-radius: 4px;
  padding: 10px;
}
.boxes__option {
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  padding-top: 5px;
  border-top: 1px solid #e8e3ef;
}
.boxes__info {
  color: #5DADE2;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  margin-top: 5px;
}
.boxes__info i {
  margin-right: 3px;
}
.boxes__options {
  border-bottom: 1px solid #ccc;
}
.boxes__remove {
  position: absolute;
  top: 10px;
  right: 10px;
}
.boxes__details {
  background: rgba(170, 170, 170, 0.1) !important;
  border: 1px solid rgba(170, 170, 170, 0.2) !important;
  border-radius: 4px;
  padding: 10px !important;
}
.horizontalBox {
  display: flex;
  margin: 0 -5px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.horizontalBox * {
  box-sizing: border-box;
}
.horizontalBox--dark {
  background: rgba(170, 170, 170, 0.1);
  border: 1px solid rgba(170, 170, 170, 0.2);
  border-radius: 4px;
  padding: 10px;
}
.horizontalBox__col {
  flex: 1;
  padding: 5px;
}
@media (max-width: 992px) {
  .horizontalBox__col {
    width: 25%;
    flex: auto;
  }
}
@media (max-width: 767px) {
  .horizontalBox__col {
    width: 50%;
  }
}
.horizontalBox__label {
  font-weight: bold;
  text-align: center;
  margin-bottom: 3px;
}
.messages {
  position: fixed;
  z-index: 99;
  bottom: 0;
  right: 0;
}
.messages__item {
  font-size: 16px;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid;
  text-align: center;
  margin: 10px 0;
  max-width: 280px;
  border-color: #9eceee;
  background: #dfeff9;
  color: #217cb8;
  border-color: #8ad3a9;
  background: #c1e8d2;
  color: #2e7c4f;
  transform: translateX(100%);
  transition: all 0.3s;
  visibility: hidden;
}
.messages__item.show {
  visibility: visible;
  transform: translate(0);
}
.messages__item--error {
  border-color: #f4afa7;
  background: #fdedeb;
  color: #d02b19;
}
input:invalid {
  border-color: #ec7063 !important;
}
html, body {
  padding: 0;
  margin: 0;
  font-family: "Roboto";
  color: #333;
  height: 100%;
}
@media (max-width: 992px) {
  html, body {
    overflow-x: hidden;
  }
}
@media (max-width: 1199px) {
  html.showSidebar, body.showSidebar {
    overflow: hidden;
  }
}
.overflow {
  overflow: hidden;
}
@media (max-width: 992px) {
  .hidden-mobile {
    display: none;
  }
}
a, button, input, .dashboard__button, .modal__button, #userRoles .userOption__option, .fileManager__more, .fileManager__button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input, textarea, select {
  font-family: "Roboto";
  background: #fff;
}
button {
  font-family: "Roboto";
}
input.datepicker {
  min-width: 80px;
}
.hidden {
  display: none;
}
meter {
  width: 100%;
  height: 30px;
}
meter::-webkit-meter-bar {
  background: none;
  background-color: #ececec;
  box-shadow: 0 5px 5px -5px #333 inset;
}
meter::-webkit-meter-optimum-value {
  box-shadow: 0 2px 2px -2px #dbdbdb inset;
  background-image: linear-gradient(90deg, #327733 0%, #097910 26%, #0fd51f 100%);
  background-size: 100% 100%;
}
.tinymce.invalid {
  position: absolute;
  top: 23px;
  z-index: -1;
  pointer-events: none;
  display: block !important;
}
.loader {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 2px solid #fff;
  border-top-color: rgba(0, 0, 0, 0);
  animation: loader 0.7s linear infinite;
}
@keyframes loader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
