html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#sidenav {
  height: 100%;
  background: #595959;
  box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
#sidenav .descOptionMenu {
  display: none;
}
#sidenav.active .descOptionMenu {
  display: block;
}
#sidenav #headerTop {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  background: #38ab9a;
  color: #fff;
  justify-content: space-between;
}
#sidenav #headerTop p {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
#sidenav .MenuOptions .MenuItem {
  cursor: pointer;
  margin: 10px 0;
  width: 100%;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  color: #fff;
}
#sidenav .MenuOptions .MenuItem span {
  font-size: 15px;
  font-weight: 500;
}
#sidenav .MenuOptions .MenuItem svg {
  width: 23px;
  margin-right: 10px;
}
#sidenav .MenuOptions .MenuItem.router-link-active, #sidenav .MenuOptions .MenuItem.active, #sidenav .MenuOptions .MenuItem:hover {
  transition: 0.3s;
  background: #fff;
  color: #38ab9a !important;
}

.contentCard {
  margin-top: 45px;
  position: relative;
  width: 100%;
}
.contentCard .menuOptions {
  display: flex;
  overflow: auto;
  width: 100%;
  position: absolute;
  top: -38px;
  padding-top: 2px;
  left: 0;
}
.contentCard .menuOptions::-webkit-scrollbar {
  display: none;
}
.contentCard .menuOptions .option {
  position: relative;
  white-space: nowrap;
  z-index: 1;
  text-transform: uppercase;
  box-shadow: 0px 0px 3px 1px #ccc;
  background: rgba(89, 89, 89, 0.1294117647);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin: 0px 7px;
  padding: 10px 20px;
  color: #595959;
  text-overflow: ellipsis;
  overflow: hidden;
}
.contentCard .menuOptions .option.active, .contentCard .menuOptions .option:hover, .contentCard .menuOptions .option:focus {
  box-shadow: 0px -1.2px 1px 1px #ccc;
  background: #fff;
  z-index: 3;
}
.contentCard .content {
  margin-top: 40px;
  background: #fff;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
  padding-bottom: 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 3px 1px #ccc;
}
.contentCard .content .content-card-item {
  display: none;
}
.contentCard .content .content-card-item.active {
  display: block;
}

.onoff input.toggle {
  display: none;
}

.onoff input.toggle + label {
  display: inline-block;
  position: relative;
  box-shadow: inset 0 0 0px 1px #d5d5d5;
  height: 26px;
  width: 60px;
  border-radius: 26px;
}

.onoff input.toggle + label:before {
  content: "";
  display: block;
  height: 26px;
  width: 30px;
  border-radius: 26px;
  background: rgba(19, 191, 17, 0);
  transition: 0.1s ease-in-out;
}

.onoff input.toggle + label:after {
  content: "";
  position: absolute;
  height: 26px;
  width: 30px;
  top: 0;
  left: 0px;
  border-radius: 26px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: 0.1s ease-in-out;
}

.onoff input.toggle:checked + label:before {
  width: 60px;
  background: #38ab9a;
}

.onoff input.toggle + label {
  width: 60px;
  background: #e23737;
}

.onoff input.toggle:checked + label:after {
  left: 30px;
  box-shadow: inset 0 0 0 1px #38ab9a, 0 2px 4px rgba(0, 0, 0, 0.2);
}

#globalHeader {
  height: 55px;
  padding: 5px 20px;
  background: #595959;
}

#wrapper #sidenav {
  height: 100%;
  width: 100%;
  max-width: 60px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  transition: 0.3s;
}
#wrapper #sidenav.active {
  max-width: 200px;
}
#wrapper #content {
  transition: 0.3s;
  margin-left: 60px;
}
#wrapper #content.active {
  margin-left: 200px;
}

.buttonTheme {
  gap: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  background-color: #38AB9A;
  color: #fff;
  padding: 6px 25px;
  border-radius: 5px;
}
.buttonTheme:focus, .buttonTheme:active, .buttonTheme:hover {
  opacity: 0.8;
}

.buttonThemePrimary {
  gap: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  background-color: #0F7BDF;
  color: #fff;
  padding: 6px 25px;
  border-radius: 5px;
}
.buttonThemePrimary:focus, .buttonThemePrimary:active, .buttonThemePrimary:hover {
  opacity: 0.8;
}

.buttonThemeSecondary {
  gap: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  background-color: #595959;
  color: #fff;
  padding: 6px 25px;
  border-radius: 5px;
}
.buttonThemeSecondary:focus, .buttonThemeSecondary:active, .buttonThemeSecondary:hover {
  opacity: 0.8;
}

.buttonThemeOutline {
  gap: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: 2px solid #38AB9A;
  background-color: transparent;
  color: #38AB9A;
  padding: 6px 25px;
  border-radius: 5px;
}
.buttonThemeOutline:focus, .buttonThemeOutline:active, .buttonThemeOutline:hover {
  background-color: #38AB9A;
  color: #fff;
}

.shadow {
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.text-primary {
  color: #2d3436;
}

input, select {
  outline: none;
}

.select2 {
  display: inline-block !important;
  width: 100% !important;
}

.select2-selection {
  border: none !important;
}

.select2-selection--multiple {
  border: 1px solid #aaa !important;
  margin-top: 5px !important;
  padding: 0.35rem !important;
}

.select2-selection--multiple .select2-selection__rendered {
  display: auto !important;
  border: none !important;
}

.select2-selection__rendered {
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgb(156, 163, 175) !important;
  border-radius: 6px;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 11px !important;
  right: 1px;
  width: 20px;
}
