:root {
  --bs-border-color: #CBD0DD;
}
.card {
  --bs-card-cap-bg: #F5F7FA;
}
.btn {
  font-size: 0.9em;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.btn .mdi {
  /*font-size: 1.3em;
        line-height: 1em;*/
}
.btn-full {
  width: 100%;
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #CBD0DD;
  border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #98dd38;
}
html {
  font-size: 13px;
}
@media (max-width: 1400px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 11px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 12px;
  }
}
body {
  background: #3e4c66;
  background: #F5F7FA;
}
.alert-admin {
  opacity: 0;
  visibility: hidden;
  transition: 2s all ease-in-out;
  position: fixed !important;
  z-index: 1000;
  width: 50%;
  top: 2rem;
  right: 2rem;
}
.alert-admin.-active {
  opacity: 1;
  visibility: visible;
}
.hidden {
  display: none;
}
.auth {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F7FA;
}
.auth-body {
  background: #fff;
  min-height: 60vh;
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .auth-body {
    margin: 0 5%;
  }
}
.auth-panel {
  min-height: 100%;
  flex: 1;
  position: relative;
}
.auth-panel-body {
  height: 100%;
  width: 100%;
  padding: 5rem;
  display: flex;
  align-items: center;
}
.auth-panel-content {
  width: 100%;
}
.auth-icon {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.auth-background {
  min-height: 100%;
  background: url(../appgo/background.jpg) center center;
  background-size: cover;
  flex: 1;
}
@media (max-width: 768px) {
  .auth-background {
    display: none;
  }
}
.auth-image {
  position: absolute;
  top: 2rem;
  left: 2rem;
}
.auth-image img {
  width: 70px;
  display: block;
}
.panel-main {
  min-height: 100vh;
  margin: auto;
  position: relative;
  padding-left: 300px;
    transition: padding-left 0.25s ease;
}

@media (max-width: 992px) {
    .panel-main {
        padding-left: 0;
    }

    .panel-navigation {
        left: -100%;
        width: 100%;
    }

    body.-active .panel-navigation {
        left: 0;
    }

    .navigation-collapse {
        display: none !important;
    }
}

.navigation-switch {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1010;
  display: none;
}
@media (max-width: 992px) {
  .navigation-switch {
    display: block;
  }
}
.navigation-switch a {
  display: block;
  background: #0d6efd;
  color: #fff;
  font-size: 30px;
  padding: 3px 10px;
  cursor: pointer;
}
.panel-navigation {
  background: #ffffff;
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  border-right: 1px solid #CBD0DD;
  z-index: 1000;
    transition: all 0.25s ease;
}
@media (max-width: 992px) {
  .panel-navigation {
    left: -100%;
    width: 100%;
    transition: all 0.2s ease-in-out;
  }
}
.panel-navigation .navigation {
  font-size: 1.1em;
  color: #000000;
}
.panel-navigation .navigation > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.panel-navigation .navigation > ul > li {
  margin: 0;
  padding: 0 0 0.4rem 0;
  display: block;
}
.panel-navigation .navigation > ul > li > a {
  border-radius: 5px;
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
  color: inherit;
}
.panel-navigation .navigation > ul > li > a .mdi {
  margin-right: 1rem;
}
.panel-navigation .navigation > ul > li:hover > a {
  background: #CBD0DD;
  background: #F5F7FA;
}
.panel-navigation .navigation > ul > li.active > a {
  background: #0d6efd;
  color: #fff;
}
.panel-navigation .navigation > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.panel-navigation .navigation > ul > li > ul > li {
  padding: 0 0 0.2rem 0;
  padding: 0;
}
.panel-navigation .navigation > ul > li > ul > li > a {
  padding: 0.5rem 1rem 0.5rem 3.2rem;
  display: block;
  text-decoration: none;
  color: inherit;
}
.panel-navigation .navigation > ul > li > ul > li > a .mdi {
  margin-right: 1rem;
}
.panel-navigation .navigation > ul > li > ul > li:hover > a {
  color: #0d6efd;
}
.panel-navigation .navigation > ul > li > ul > li.active > a {
  color: #0d6efd;
  font-weight: 600;
}
body.-active .panel-navigation {
  display: block;
  left: 0;
}

/* --- DESKTOP COLLAPSE --- */
body.sidebar-collapsed .panel-navigation {
    width: 0;
    border-right: none;
}

body.sidebar-collapsed .panel-main {
    padding-left: 0;
}

/* --- DESKTOP COLLAPSE BUTTON --- */
.navigation-collapse {
    position: fixed;
    top: 6px;
    left: 300px;
    z-index: 1011;
    background: #fff;
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 3px;
    transition: left 0.25s ease;
}

body.sidebar-collapsed .navigation-collapse {
    left: 0;
}

.panel-body {
  background: #F5F7FA;
  padding: 2rem 1rem;
  width: 100%;
  min-height: 100vh;
}
.panel-body {
    background: #F5F7FA;
    padding: 2rem 1rem;
    width: 100%;
    min-height: 100vh;
    transition: margin-left 0.25s ease;
}
.demo-col {
  width: 100%;
  padding: 20px;
}
.content-h-100 {
  height: 100vh;
  margin: -2rem 0;
}
.form-group {
  margin-bottom: 1rem;
}
.form-label {
  opacity: 0.75;
  font-size: 0.8em;
  text-transform: uppercase;
}
.table-container {
  width: 100%;
  /*overflow-x: auto;*/
}
.table-container table {
  min-width: 500px;
}
.table-container img {
  max-width: 100px;
}
.gallery-editor .drag-and-drop {
  background: #F5F7FA;
  padding: 10rem 2rem;
  text-align: center;
}
.gallery-editor__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 1rem;
}
@media (max-width: 1400px) {
  .gallery-editor__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .gallery-editor__items {
    grid-template-columns: 1fr 1fr;
  }
}
.gallery-editor__item {
  cursor: pointer;
}
.download-editor__items {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1400px) {
  .download-editor__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .download-editor__items {
    grid-template-columns: 1fr;
  }
}
.sortable .draggable-mirror {
  display: block;
  background: white;
  box-shadow: 4px 4px 18px 3px rgba(66, 68, 90, 0.3);
}
.sortable .draggable-mirror .sortable__handle {
  background: #0051f8;
}
.sortable .draggable--over {
  opacity: 0;
  height: 85px;
}
.sortable__handle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background: #598dfa;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.15s ease-in-out;
}
.sortable__handle:hover {
  background: #0051f8;
}
.toastify {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  font-weight: 500;
}
.toastify .toast-close {
  color: white;
  opacity: 1;
}
.toastify.primary {
  background: linear-gradient(135deg, #0082c8, #008bd7);
}
.toastify.secondary {
  background: linear-gradient(135deg, #5b31cb, #512DA8);
}
.toastify.success {
  background: linear-gradient(135deg, #56ab2f, #58c425);
}
.toastify.danger {
  background: linear-gradient(135deg, #af2d1f, #93291E);
}
.toastify.warning {
  background: linear-gradient(135deg, #dec20e, #f5c100);
}
.toastify.info {
  background: linear-gradient(135deg, #000046, #000079);
}
.toastify.light {
  color: black;
  background: linear-gradient(135deg, #FFEFBA, #FFFFFF);
}
.toastify.light .toast-close {
  color: black;
}
.toastify.dark {
  background: linear-gradient(135deg, #000000, #434343);
}
.navBuilder .dd,
.dd-dragel .dd {
  max-width: 100%;
}
.navBuilder .dd-content,
.dd-dragel .dd-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #fefefe;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  transition: 0.25s ease;
}
.navBuilder .dd-handle,
.dd-dragel .dd-handle {
  height: 100%;
  margin: 0;
  border: none;
  background: transparent;
  color: black;
}
.navBuilder .dd-handle:hover,
.dd-dragel .dd-handle:hover {
  color: black;
}
.navBuilder .dd-handle:hover .dd-content,
.dd-dragel .dd-handle:hover .dd-content {
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.navBuilder .dd-dad,
.dd-dragel .dd-dad {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background: #598dfa;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.15s ease-in-out;
}
.navBuilder .dd-dad:hover,
.dd-dragel .dd-dad:hover {
  background: #0051f8;
}
.navBuilder .dd-body,
.dd-dragel .dd-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.navBuilder .dd-title,
.dd-dragel .dd-title {
  font-weight: 500;
  line-height: 1;
  font-size: 1rem;
  flex: 1;
}
.navBuilder .dd-title .mdi,
.dd-dragel .dd-title .mdi {
  margin-right: 0.5rem;
}
.navBuilder .dd-title .mdi-eye,
.dd-dragel .dd-title .mdi-eye {
  color: var(--bs-green);
}
.navBuilder .dd-title .mdi-eye-off,
.dd-dragel .dd-title .mdi-eye-off {
  color: var(--bs-red);
}
.alert.noData {
  text-align: center;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 500;
}
.navigation ul li.hasChildren > a {
  position: relative;
}
.navigation ul li.hasChildren > a:before {
  display: flex;
  justify-content: center;
  align-items: center;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  content: "\F0143";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  height: 1rem;
  width: 1rem;
  transition: 0.2s ease;
}
.navigation ul li.hasChildren.open > a:before,
.navigation ul li.hasChildren.active > a:before {
  transform: translateY(-50%) rotate(0);
}
.navigation ul li.active ul,
.navigation ul li.open ul {
  display: block;
}
.navigation ul li ul {
  display: none;
}
.cke {
  width: 100% !important;
}
.ruleItems {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ruleItem__required {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.ruleItem__delete {
  font-size: 1.5rem !important;
  padding: 0!important;
  height: 2.5rem;
  width: 2.5rem;
  justify-content: center;
  align-items: center;
  display: flex!important;
}
.ruleItem .form-control {
  margin-bottom: 1rem;
}
.choices {
  width: 100%;
}
/*# sourceMappingURL=admin.css.map */

.select2-container {
    width: 100% !important;
}

.dt-length {
    margin: 8px 8px 4px;
}

.dt-buttons {
    margin: 8px 8px 4px;
}

.dt-search {
    margin: 8px;
}
