:root {
  --vertikl-main-color: #0e6316;
  --input-background-color: #f5f5f4;
  --side-bar-text-color: #667785;
  --background-highligth: rgba(14, 99, 22, 0.1);
  --toast-bg-color: white;
  --success: #27bf4b;
  --error: #e25854;
  --info: #3fa0d5;
  --warning: #edc515;
  --header-height: 70px;
  --random-color: red;
}

* {
  font-family: "Quicksand";
}

body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  scrollbar-gutter: stable both-edges;
}

.dashboard {
  display: flex;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
}

.sidebar {
  z-index: 2;
  width: 20%;
  height: 100%;
  padding: 0;
  margin: 0;
  min-width: 250px;
}

.sidebar-mobile {
  display: none;
  transition: ease 0.3s;
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  -ms-transition: ease 0.3s;
  -o-transition: ease 0.3s;
}

.dashboard #container {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: auto;
  scrollbar-gutter: stable both-edges;
  overflow-x: hidden;
}

ul.errorlist {
  margin: 0 0 4px;
  padding: 0;
  color: red;
  background: var(--body-bg);
}

ul.errorlist li {
  font-size: 0.8125rem;
  display: block;
  margin-bottom: 4px;
  overflow-wrap: break-word;
}

ul.errorlist li:first-child {
  margin-top: 0;
}

ul.errorlist li a {
  color: inherit;
  text-decoration: underline;
}

td ul.errorlist {
  margin: 0;
  padding: 0;
}

td ul.errorlist li {
  margin: 0;
}

.form-row.errors {
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--hairline-color);
  background: none;
}

.form-row.errors ul.errorlist li {
  padding-left: 0;
}

.breadcrumbs {
  min-height: 30px;
  width: 96%;
  margin-bottom: 1rem;
  margin-left: 2%;
  display: flex;
  align-items: center;
  border-radius: 0.3rem;
  gap: 0.5rem;
  font-size: 0.9rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
}

.breadcrumbs a {
  color: black;
}

.breadcrumbs .last-breadcrumb {
  color: var(--side-bar-text-color);
  text-decoration: none;
  cursor: text;
  max-width: 70%;
  text-overflow: ellipsis;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.breadcrumbs .last-breadcrumb-home {
  color: var(--side-bar-text-color);
  text-decoration: none;
  cursor: text;
  max-width: 70%;
  text-overflow: ellipsis;
  display: inline-block;
}

.select2-container {
  min-width: 100% !important;
  height: 3rem !important;
}

.selection {
  display: block;
  height: 100%;
  font-size: 14px !important;
}

.select2-selection {
  height: 100% !important;
  border: 1px solid rgb(197, 197, 197) !important;
}

.select2-selection__rendered {
  height: 100% !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: flex !important;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0 30px 0 0.5rem !important;
}

.select2-selection__arrow {
  height: 100% !important;
  width: 30px !important;
}

.select2-results__option {
  font-size: 0.9rem !important;
}
.select2-results__option--highlighted {
  background-color: var(--vertikl-main-color) !important;
  color: white !important;
}

.select2-dropdown {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.2) !important;
}

@media screen and (max-width: 1167px) {
  .sidebar {
    display: none;
  }

  .sidebar-mobile {
    position: absolute;
    display: block;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: white;
    z-index: 100;
    left: -100%;
    box-shadow: 11px 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
}
