/*
*	############################################################################################
*
*	balto - Dashboard CSS Stylesheet
*	---------------------------------------------------------------------
*
*	Version: 	1.0
*	Author: 	Construo
*	Website: 	https://www.construo.com.mx/
*	License: 	Private
*
*	############################################################################################
*/

/********************
 * GENERAL STYLES
 ********************/
html {
  min-height: 100%;
  font-size: 16px;
}

body {
  background-color: #f3f5f8;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #676a6d;
}

a {
  color: #3287b2;
}

a:hover,
a:focus {
  color: #3b98c8;
  text-decoration: none;
}

.margin-top {
  margin-top: 1em;
}

/********************
 * TEXT AND COLORS
 ********************/

.text-center {
  text-align: center;
}

.text-success {
  color: #41b314;
}

.text-warning {
  color: #e4cb10;
}

.text-danger {
  color: #f9354c;
}

.bg-success {
  background-color: #41b314;
}

.bg-warning {
  background: #e4cb10;
}

.bg-danger {
  background: #f9354c;
}

.collapse {
  visibility: unset;
}

.title {
  margin-bottom: 25px;
  margin-top: 25px;
  font-size: 22px;
  font-weight: 600;
  font-family: "Chillax", sans-serif;
}

ul.list-justify>li {
  margin-bottom: 5px;
}

ul.list-justify>li span {
  float: right;
}

table tr[data-href] {
  cursor: pointer;
}

.bg-muted {
  background-color: #f5f5f5;
}

/********************
 * MEDIA
 ********************/

.logo {
  max-width: 160px;
  max-height: 35px;
  height: auto;
  margin: 0 auto;
}

.image-border {
  border: 1px solid #dce6eb;
}

/********************
 * LAYOUT
 ********************/
#wrapper .sidebar {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 280px !important;
  height: 100%;
  float: left;
  background-color: #3e4545;
  position: fixed;
  left: 0;
}

#wrapper .main {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: calc(100% - 280px);
  left: 0;
  position: relative;
  float: right;
  background-color: #f5f5fa;
}

.brand {
  background-color: #3e4545;
  padding: 20px;
  text-align: center;
}

.layout-fullwidth #wrapper .sidebar {
  left: -280px;
}

.layout-fullwidth #wrapper .main {
  width: 100%;
}

.layout-fullwidth #wrapper .navbar {
  left: 0 !important;
}

.layout-fullwidth #wrapper .btn-toggle-fullwidth {
  color: #ff5100;
}

.offcanvas-active #wrapper .sidebar {
  left: 0;
}

.offcanvas-active #wrapper .main {
  width: 100%;
  position: relative;
  left: 280px;
}

@media screen and (max-width: 1024px) {
  #wrapper .sidebar {
    left: -280px;
  }

  #wrapper .main {
    width: 100%;
  }

  #wrapper .navbar {
    left: 0 !important;
  }

  #wrapper .btn-toggle-fullwidth {
    color: #00aaff;
  }

  .btn-toggle-minified {
    display: none;
  }
}

.main-content {
  padding: 28px 10px;
}

.navbar+.main-content {
  padding: 28px 10px;
}

@media screen and (max-width: 767px) {
  .navbar+.main-content {
    padding-top: 30px;
  }
}

html.fullscreen-bg,
html.fullscreen-bg body,
html.fullscreen-bg #wrapper {
  height: 100%;
}

.vertical-align-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  display: table;
}

.vertical-align-middle {
  display: table-cell;
  vertical-align: middle;
}

/********************
* TOP NAVIGATION
********************/
.navbar-default {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  border: none;
  background-color: #fff;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
  background-color: #fafafa;
}

.navbar-default .navbar-toggle,
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #f8f8f8;
}

.navbar-default .brand {
  float: left;
  padding: 30px 39px;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .navbar-default .brand {
    padding-left: 30px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 992px) {
  .navbar-default .brand {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .navbar-default #navbar-menu {
    float: right;
  }
}

.navbar-btn {
  float: left;
  padding: 16px 0;
}

.navbar-btn button {
  font-size: 24px;
  padding: 4px 8px;
  line-height: 0.7;
  border: none;
  background: none;
  outline: none;
}

@media screen and (max-width: 640px) {
  .navbar-btn {
    padding-left: 0;
  }
}

.navbar-btn-right {
  float: right;
}

.navbar-form {
  padding: 15px;
  border: 0;
}

.navbar-form input[type="text"] {
  min-width: 200px;
}

@media screen and (max-width: 767px) {
  .navbar-form {
    float: left;
    width: 70%;
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-form .input-group {
    width: 70%;
  }

  .navbar-form input[type="text"] {
    min-width: 150px;
  }
}

@media screen and (max-width: 640px) {
  .navbar-form {
    display: none;
  }
}

.navbar-nav .icon-menu {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding-top: 28px;
  padding-bottom: 28px;
  position: relative;
}

.navbar-nav .icon-menu .badge {
  position: absolute;
  top: 22px;
  right: 16px;
}

.navbar-nav>li>a {
  padding: 28px 20px;
}

.navbar-nav>li>a>i {
  font-size: 22px;
  margin-right: 2px;
  vertical-align: middle;
}

.navbar-nav>li>a>i.icon-submenu {
  margin-left: 2px;
  margin-right: 0;
  font-size: 10px;
  position: relative;
  top: 2px;
}

.navbar-nav>li>a>span {
  position: relative;
  top: 2px;
}

.navbar-nav>li>a img {
  width: 22px;
  margin-right: 2px;
}

.navbar-nav>li>.dropdown-menu {
  padding: 0;
  min-width: 200px;
}

.navbar-nav .dropdown-menu {
  border-top: 2px solid #acb0b5;
}

.navbar-nav .dropdown-menu>li>a {
  padding: 10px 20px;
}

.navbar-nav .dropdown-menu>li>a:hover,
.navbar-nav .dropdown-menu>li>a:focus {
  background-color: #fafafa;
}

.navbar-nav .dropdown-menu>li>a span,
.navbar-nav .dropdown-menu>li>a i {
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .navbar-nav.navbar-right {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .navbar-nav {
    width: 100%;
    margin: 0;
  }

  .navbar-nav>li {
    display: table-cell;
    width: 1%;
    position: inherit;
    text-align: center;
  }

  .navbar-nav>li>a {
    padding: 15px 20px;
  }

  .navbar-nav>li>a span:not(.badge),
  .navbar-nav>li>a .icon-submenu {
    display: none;
  }

  .navbar-nav .open .dropdown-menu {
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: absolute;
    width: 100%;
    margin-top: 3px;
    background-color: #fff;
  }

  .navbar-nav .open .dropdown-menu>li>a {
    padding: 10px 15px;
  }

  .navbar-nav .icon-menu {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-nav .icon-menu .badge {
    top: 10px;
    right: 15px;
  }
}

.navbar-toggle {
  padding: 5px 8px;
  margin: 20px 15px 20px 0;
}

.navbar-toggle .icon-nav {
  font-size: 24px;
}

.notification-item .dot {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  width: 10px;
  height: 10px;
  content: "";
  margin-right: 8px;
}

ul.notifications>li {
  border-bottom: 1px solid #f0f0f0;
}

ul.notifications>li:last-child {
  border-bottom: none;
}

ul.notifications>li>.more {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  text-decoration: underline;
  font-weight: 600;
}

ul.notifications>li>.more:hover,
ul.notifications>li>.more:focus {
  text-decoration: none;
}

.dropdown-menu {
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-color: #eaeaea;
}

.dropdown-menu>li>a {
  color: #676a6d;
}

.dropdown-menu>li i {
  margin-right: 6px;
}

.dropdown-menu .active>a,
.dropdown-menu .active>a:focus,
.dropdown-menu .active>a:hover {
  background-color: #00aaff;
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
  color: #a3a3a3;
}

/********************
 * SIDEBAR NAVIGATION
 ********************/
.sidebar {
  z-index: 9;
}

.sidebar .nav>li>a {
  padding: 18px 30px;
  color: #aeb7c2;
  border-left: 5px solid transparent;
}

.sidebar .nav>li>a>i {
  color: white;
}

.sidebar .nav>li>a:hover,
.sidebar .nav>li>a:focus,
.sidebar .nav>li>a.active {
  color: #fff;
  background-color: transparent;
}

.sidebar .nav>li>a:hover i,
.sidebar .nav>li>a:focus i,
.sidebar .nav>li>a.active i {
  color: #ff5100;
}

.sidebar .nav>li>a:focus,
.sidebar .nav>li>a.active {
  background-color: #262a2a;
  border-left-color: #ff5100;
}

.sidebar .nav>li>a[data-toggle="collapse"] .icon-submenu {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  float: right;
  position: relative;
  top: 5px;
  font-size: 12px;
  line-height: 1.1;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.sidebar .nav>li>a[data-toggle="collapse"].collapsed .icon-submenu {
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.sidebar .nav>li>a .badge {
  font-weight: 400;
  background-color: #f9354c;
}

.sidebar .nav {
  /* submenu */
}

.sidebar .nav i {
  margin-right: 10px;
  font-size: 18px;
}

.sidebar .nav span {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  top: -2px;
}

.sidebar .nav .nav {
  background-color: #262a2a;
}

.sidebar .nav .nav>li>a {
  padding-left: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sidebar .nav .nav>li>a:focus,
.sidebar .nav .nav>li>a.active {
  background-color: transparent;
  border-left-color: transparent;
}

.sidebar .nav .nav>li>a.active a {
  color: #fff;
}

/********************
 * INPUTS
 ********************/
.form-control {
  -moz-box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border-color: #eaeaea;
  background-color: #fcfcfc;
  margin-bottom: 15px;
}

.form-control:focus {
  -moz-box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
  border-color: #d6d6d6;
  background-color: #fff;
}

.input-group {
  -moz-box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.input-group .form-control,
.input-group-addon,
.input-group-btn {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.input-group-addon {
  border: 1px solid #eaeaea;
}

/* fancy checkbox and radio button */
.fancy-checkbox {
  display: block;
  font-weight: normal;
}

.fancy-checkbox input[type="checkbox"] {
  display: none;
}

.fancy-checkbox input[type="checkbox"]+span {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  cursor: pointer;
  position: relative;
  font-size: 13px;
}

.fancy-checkbox input[type="checkbox"]+span:before {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative;
  bottom: 1px;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  content: "";
  border: 1px solid #ccc;
}

.fancy-checkbox input[type="checkbox"]:checked+span:before {
  content: "✔";
  font-size: 12px;
  color: #99a1a7;
  text-align: center;
  line-height: 16px;
  background: #ededed;
  border: 1px solid #ccc;
}

.fancy-checkbox.custom-color-green input[type="checkbox"]:checked+span:before {
  color: #53d76a;
  background-color: #fff;
}

.fancy-checkbox.custom-bgcolor-green input[type="checkbox"]:checked+span:before {
  color: #fff;
  background-color: #53d76a;
  border-color: #32cf4d;
}

.fancy-radio {
  display: block;
  font-weight: normal;
}

.fancy-radio input[type="radio"] {
  display: none;
}

.fancy-radio input[type="radio"]+span {
  display: block;
  cursor: pointer;
  position: relative;
  font-size: 13px;
}

.fancy-radio input[type="radio"]+span i {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  position: relative;
  bottom: 1px;
  content: "";
  border: 1px solid #ccc;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.fancy-radio input[type="radio"]:checked+span i:after {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  position: relative;
  top: 3px;
  left: 3px;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #99a1a7;
}

.fancy-radio.custom-color-green input[type="radio"]:checked+span i:after {
  background-color: #53d76a;
}

.fancy-radio.custom-bgcolor-green input[type="radio"]:checked+span i {
  background-color: #53d76a;
}

.fancy-radio.custom-bgcolor-green input[type="radio"]:checked+span i:after {
  background-color: #fff;
}

/********************
 * BUTTONS
 ********************/
.btn {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.2);
  padding: 6px 22px;
}

.btn-group-lg>.btn,
.btn-lg {
  padding: 10px 28px;
}

.btn-group-sm>.btn,
.btn-sm {
  padding: 5px 18px;
}

.btn-group-xs>.btn,
.btn-xs {
  padding: 5px 14px;
}

.btn-primary {
  background-color: #ff5100;
  border-color: #ff5100;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #b63e06;
  border-color: #b63e06;
}

.btn-primary.active,
.btn-primary:active,
.btn-primary:active:focus {
  color: #fff;
  background-color: #ff5100;
  border-color: #ff5100;
  outline: none;
}

.btn-warning {
  background-color: #e4cb10;
  border-color: #d6be0f;
}

.btn-warning:hover,
.btn-warning:focus {
  background-color: #d6be0f;
  border-color: #d6be0f;
}

.btn-default:hover,
.btn-default:focus {
  background-color: #f7f7f7;
}

.btn-success {
  background-color: #41b314;
  border-color: #3ca512;
}

.btn-success:hover,
.btn-success:focus {
  background-color: #3ca512;
  border-color: #3ca512;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.btn-width {
  width: 200px;
}

/********************
 * LABELS
 ********************/

.label-dark {
  background-color: #000000;
}

/********************
 * TOASTR NOTIFICATION
 ********************/

#toast-container>div {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#toast-container>div,
#toast-container>div:hover {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#toast-container .toast-close-button {
  top: -0.9em;
}

.toast a {
  text-decoration: underline;
}

.toast a:hover,
.toast a:focus {
  text-decoration: none;
  color: #fff;
}

.toast .toast-message {
  font-size: 14px;
  line-height: 2;
}

.toast-info {
  background-color: #00aaff;
}

.toast-success {
  background-color: #41b314;
}

.toast-warning {
  background-color: #e4cb10;
}

.toast-error {
  background-color: #f9354c;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

/********************
 * PANELS
 ********************/

/* Bootstrap Panel Override*/

.panel.panel-headline .panel-heading .panel-title {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  font-family: "Chillax", sans-serif;
}

.panel.panel-headline .panel-heading .panel-subtitle {
  margin-bottom: 0;
  font-size: 14px;
  color: #8d99a8;
}

.panel-footer {
  background-color: #fafafa;
}

/********************
 * DROPZONE
 ********************/

.dropzone {
  background-color: inherit;
  border: none;
}

.dropzone.dz-clickable * {
  cursor: initial;
}

.dropzone .dz-message {
  position: absolute;
  left: 0;
  margin: 0;
  right: 0;
  top: 0;
}

.dropzone .dz-preview {
  margin: 0px;
}

.dz-preview.dz-image-preview {
  background: none;
}

.dz-preview .dz-progress {
  border: 0;
  border-radius: 0;
  bottom: 163px;
  height: 4px;
  top: auto;
  left: 0;
  width: 100%;
  margin: 0;
  opacity: 1 !important;
  transition: height 1s !important;
}

.dz-preview .dz-upload {
  background-color: blue;
}

.dz-preview.dz-complete .dz-progress {
  height: 0;
}

/********************
 * TABS
 ********************/

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
  color: #555;
  cursor: default;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #ff5100;
}

.custom-tabs-line {
  margin-bottom: 1em;
}

.custom-tabs-line.left-aligned {
  text-align: left;
}

.custom-tabs-line.tabs-line-bottom ul>li {
  margin-bottom: -1px;
}

.custom-tabs-line ul>li {
  float: left;
}

.custom-tabs-line.tabs-line-bottom .active a {
  border-bottom: 2px solid #ff5100;
}

.custom-tabs-line ul>li a:hover,
.custom-tabs-line ul>li a:focus {
  color: #676a6d;
  background-color: transparent;
  border-color: transparent;
}

.custom-tabs-line.tabs-line-bottom a {
  /*border-bottom: 1px solid transparent;*/
}

.custom-tabs-line ul>li a {
  color: #8d9093;
  font-weight: 400;
}

/********************
 * APP NOTIFICATIONS LIKE
 ********************/

.notification-container {
  font-family: "Roboto", sans-serif;
  background-image: url("../img/placeholder_android_phone.svg");
  height: 400px;
  width: auto;
  background-size: cover;
  margin: 0 auto;
}

.notification-container .preview {
  position: relative;
  top: 250px;
  margin: auto;
  width: 90%;
}

.truncate {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/********************
 * ANIMATIONS
 ********************/

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {

  0%,
  100% {
    -webkit-transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-5px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

/********************
 * GOOGLE ADS PREVIEW
 ********************/

.google-preview {
  text-align: left;
  letter-spacing: initial;
}

.google-preview__container {
  background-color: #fff;
  max-width: 600px;
}

.google-preview__title {
  display: block;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.google-preview__title a {
  color: #1a0dab;
  cursor: pointer;
  font-size: 18px;
  line-height: 21px;
  text-decoration: none solid #1a0dab;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.google-preview__title a:hover {
  text-decoration: underline;
}

.google-preview__description {
  color: #545454;
  font-size: 13px;
  line-height: 18px;
  overflow-wrap: break-word;
}

.google-preview__url {
  color: #006621;
  font-size: 13px;
  line-height: 16px;
  white-space: nowrap;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/********************
 * AUTOCOMPLETE
 ********************/

.select2-container {
  padding-bottom: 10px;
}

/********************
 * Flowbite
 ********************/

.datepicker-dropdown {
  position: absolute;
}

.datepicker-controls {
  gap: 12px;
}

.today-btn {
  color: white !important;
}

ul.errorlist li {
  color: red;
  font-size: 14px;
}

.toast ul.errorlist li { 
  color: inherit;
}

/********************
 * Driver.js
 ********************/

.driver-popover.driverjs-theme {
  background-color: var(--sidebar-background);
  color: var(--sidebar-text);
  border-radius: var(--panel-border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: none;
  padding: 20px;
}

.driver-popover.driverjs-theme .driver-popover-title {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.driver-popover.driverjs-theme .driver-popover-description {
  color: var(--sidebar-text);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.9;
}

.driver-popover.driverjs-theme .driver-popover-footer {
  border-top: 1px solid var(--sidebar-hover-background);
  margin-top: 16px;
  padding-top: 16px;
}

.driver-popover.driverjs-theme .driver-popover-navigation-btns {
  justify-content: flex-end;
  gap: 8px;
}

.driver-popover.driverjs-theme button {
  border: none;
  padding: var(--button-padding);
  border-radius: var(--button-border-radius);
  font-size: var(--button-font-size);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-shadow: none;
}

/* Btn Previous */
.driver-popover.driverjs-theme .driver-popover-prev-btn {
  background-color: var(--secondary-color);
  color: black;
}

.driver-popover.driverjs-theme .driver-popover-prev-btn:hover {
 opacity: 0.9;
}

/* Btn Next */
.driver-popover.driverjs-theme .driver-popover-next-btn {
  background-color: var(--primary-color);
  color: white;
}

.driver-popover.driverjs-theme .driver-popover-next-btn:hover {
  background-color: var(--primary-color);
  opacity: 0.9;
}

/* Btn Close */
.driver-popover.driverjs-theme .driver-popover-close-btn {
  background-color: transparent;
  color: var(--sidebar-text);
  opacity: 0.7;
}

.driver-popover.driverjs-theme .driver-popover-close-btn:hover {
  background-color: var(--sidebar-hover-background);
  color: var(--sidebar-hover-text);
  opacity: 1;
}

/* Popover Arrows */
.driver-popover.driverjs-theme .driver-popover-arrow-side-left.driver-popover-arrow {
  border-left-color: var(--sidebar-background);
}

.driver-popover.driverjs-theme .driver-popover-arrow-side-right.driver-popover-arrow {
  border-right-color: var(--sidebar-background);
}

.driver-popover.driverjs-theme .driver-popover-arrow-side-top.driver-popover-arrow {
  border-top-color: var(--sidebar-background);
}

.driver-popover.driverjs-theme .driver-popover-arrow-side-bottom.driver-popover-arrow {
  border-bottom-color: var(--sidebar-background);
}

/* Fix flashing on page load to tooltip Alpine */
[x-cloak] {
  display: none !important;
}

/* loader htmx btn-spinner */

.htmx-indicator.htmx-spinner {
  display: none !important;
}

.htmx-request .htmx-indicator.htmx-spinner {
  display: block !important;
}

/* loader htmx hide on request any section */
.htmx-indicator.hx-show-on-request { 
  display: none !important;
}

.htmx-request.hx-show-on-request { 
  display: block !important;
}

/* Select2 by theme */ 

.select2-selection:hover, .select2-container--focus .selection .select2-selection {
  border-color : var(--primary-color) !important;
  background-color: white !important;
}
.select2-selection {
  border: var(--input-border) !important;
  font-size: var(--input-font-size) !important;
  border-radius: var(--input-border-radius) !important;
  padding: var(--input-padding) !important;
  color: var(--input-text-color) !important;
  background-color: var(--input-background) !important;
}