@charset "UTF-8";
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}

.sweet-alert {
  background-color: white;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.sweet-alert fieldset {
  border: none;
  position: relative;
}

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s;
}

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}

.sweet-alert .sa-error-container p {
  display: inline-block;
}

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: scale(0.5);
  transform-origin: 50% 50%;
  transition: all 0.1s;
}

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}

.sweet-alert .sa-input-error::before {
  transform: rotate(-45deg);
}

.sweet-alert .sa-input-error::after {
  transform: rotate(45deg);
}

.sweet-alert .sa-input-error.show {
  opacity: 1;
  transform: scale(1);
}

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  transition: all 0.3s;
}

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}

.sweet-alert input:focus::-moz-placeholder {
  -moz-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus:-ms-input-placeholder {
  -ms-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert.show-input input {
  display: block;
}

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
}

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
}

.sweet-alert button {
  background-color: #8CD4F5;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sweet-alert button:hover {
  background-color: #7ecff4;
}

.sweet-alert button:active {
  background-color: #5dc2f1;
}

.sweet-alert button.cancel {
  background-color: #C1C1C1;
}

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9;
}

.sweet-alert button.cancel:active {
  background-color: #a8a8a8;
}

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}

.sweet-alert button[disabled] {
  opacity: 0.6;
  cursor: default;
}

.sweet-alert button.confirm[disabled] {
  color: transparent;
}

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.sweet-alert button::-moz-focus-inner {
  border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  transform: rotate(45deg);
  left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  transform: rotate(-45deg);
  right: 16px;
}

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: "";
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  transform: rotate(-45deg);
  transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  transform: rotate(-45deg);
  transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
 * Animations
 */
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
.showSweetAlert[data-animation=pop] {
  animation: showSweetAlert 0.3s;
}

.showSweetAlert[data-animation=none] {
  animation: none;
}

.showSweetAlert[data-animation=slide-from-top] {
  animation: slideFromTop 0.3s;
}

.showSweetAlert[data-animation=slide-from-bottom] {
  animation: slideFromBottom 0.3s;
}

.hideSweetAlert[data-animation=pop] {
  animation: hideSweetAlert 0.2s;
}

.hideSweetAlert[data-animation=none] {
  animation: none;
}

.hideSweetAlert[data-animation=slide-from-top] {
  animation: slideToTop 0.4s;
}

.hideSweetAlert[data-animation=slide-from-bottom] {
  animation: slideToBottom 0.3s;
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
.animateSuccessTip {
  animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
  animation: animateSuccessLong 0.75s;
}

.sa-icon.sa-success.animate::after {
  animation: rotatePlaceholder 4.25s ease-in;
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
.animateErrorIcon {
  animation: animateErrorIcon 0.5s;
}
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
.animateXMark {
  animation: animateXMark 0.5s;
}
@keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
.pulseWarning {
  animation: pulseWarning 0.75s infinite alternate;
}
@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
.pulseWarningIns {
  animation: pulseWarningIns 0.75s infinite alternate;
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9 ;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9 ;
}

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9 ;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9 ;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9 ;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  box-sizing: border-box;
}

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-ball-fall.la-dark {
  color: #333;
}

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-fall {
  width: 54px;
  height: 18px;
}

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  animation: ball-fall 1s ease-in-out infinite;
}

.la-ball-fall > div:nth-child(1) {
  animation-delay: -200ms;
}

.la-ball-fall > div:nth-child(2) {
  animation-delay: -100ms;
}

.la-ball-fall > div:nth-child(3) {
  animation-delay: 0ms;
}

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

/*
 * Animation
 */
@keyframes ball-fall {
  0% {
    opacity: 0;
    transform: translateY(-145%);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(145%);
  }
}
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/*! ========================================================================
 * Bootstrap Toggle: bootstrap-toggle.css v2.2.0
 * http://www.bootstraptoggle.com
 * ========================================================================
 * Copyright 2014 Min Hur, The New York Times Company
 * Licensed under MIT
 * ======================================================================== */
.checkbox label .toggle,
.checkbox-inline .toggle {
  margin-left: -20px;
  margin-right: 5px;
}

.toggle {
  position: relative;
  overflow: hidden;
}

.toggle input[type=checkbox] {
  display: none;
}

.toggle-group {
  position: absolute;
  width: 200%;
  top: 0;
  bottom: 0;
  left: 0;
  transition: left 0.35s;
  -webkit-transition: left 0.35s;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.toggle.off .toggle-group {
  left: -100%;
}

.toggle-on {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.toggle-off {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.toggle-handle {
  position: relative;
  margin: 0 auto;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 100%;
  width: 0px;
  border-width: 0 1px;
}

.toggle.btn {
  min-width: 59px;
  min-height: 34px;
}

.toggle-on.btn {
  padding-right: 24px;
}

.toggle-off.btn {
  padding-left: 24px;
}

.toggle.btn-lg {
  min-width: 79px;
  min-height: 45px;
}

.toggle-on.btn-lg {
  padding-right: 31px;
}

.toggle-off.btn-lg {
  padding-left: 31px;
}

.toggle-handle.btn-lg {
  width: 40px;
}

.toggle.btn-sm {
  min-width: 50px;
  min-height: 30px;
}

.toggle-on.btn-sm {
  padding-right: 20px;
}

.toggle-off.btn-sm {
  padding-left: 20px;
}

.toggle.btn-xs {
  min-width: 35px;
  min-height: 22px;
}

.toggle-on.btn-xs {
  padding-right: 12px;
}

.toggle-off.btn-xs {
  padding-left: 12px;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/*!
 * Select2 Bootstrap Theme v0.1.0-beta.10 (https://select2.github.io/select2-bootstrap-theme)
 * Copyright 2015-2017 Florian Kissling and contributors (https://github.com/select2/select2-bootstrap-theme/graphs/contributors)
 * Licensed under MIT (https://github.com/select2/select2-bootstrap-theme/blob/master/LICENSE)
 */
.select2-container--bootstrap {
  display: block;
  /*------------------------------------*      #COMMON STYLES
  \*------------------------------------*/
  /**
   * Search field in the Select2 dropdown.
   */
  /**
   * No outline for all search fields - in the dropdown
   * and inline in multi Select2s.
   */
  /**
   * Adjust Select2's choices hover and selected styles to match
   * Bootstrap 3's default dropdown styles.
   *
   * @see http://getbootstrap.com/components/#dropdowns
   */
  /**
   * Clear the selection.
   */
  /**
   * Address disabled Select2 styles.
   *
   * @see https://select2.github.io/examples.html#disabled
   * @see http://getbootstrap.com/css/#forms-control-disabled
   */
  /*------------------------------------*      #DROPDOWN
  \*------------------------------------*/
  /**
   * Dropdown border color and box-shadow.
   */
  /**
   * Limit the dropdown height.
   */
  /*------------------------------------*      #SINGLE SELECT2
  \*------------------------------------*/
  /*------------------------------------*    #MULTIPLE SELECT2
  \*------------------------------------*/
  /**
   * Address Bootstrap control sizing classes
   *
   * 1. Reset Bootstrap defaults.
   * 2. Adjust the dropdown arrow button icon position.
   *
   * @see http://getbootstrap.com/css/#forms-control-sizes
   */
  /* 1 */
  /*------------------------------------*    #RTL SUPPORT
  \*------------------------------------*/
}

.select2-container--bootstrap .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555555;
  font-size: 14px;
  outline: 0;
}

.select2-container--bootstrap .select2-selection.form-control {
  border-radius: 4px;
}

.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555555;
  font-size: 14px;
}

.select2-container--bootstrap .select2-search__field {
  outline: 0;
  /* Firefox 18- */
  /**
     * Firefox 19+
     *
     * @see http://stackoverflow.com/questions/24236240/color-for-styled-placeholder-text-is-muted-in-firefox
     */
}

.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder {
  color: #999;
}

.select2-container--bootstrap .select2-search__field:-moz-placeholder {
  color: #999;
}

.select2-container--bootstrap .select2-search__field::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.select2-container--bootstrap .select2-search__field:-ms-input-placeholder {
  color: #999;
}

.select2-container--bootstrap .select2-results__option {
  padding: 6px 12px;
  /**
     * Disabled results.
     *
     * @see https://select2.github.io/examples.html#disabled-results
     */
  /**
     * Hover state.
     */
  /**
     * Selected state.
     */
}

.select2-container--bootstrap .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--bootstrap .select2-results__option[aria-disabled=true] {
  color: #777777;
  cursor: not-allowed;
}

.select2-container--bootstrap .select2-results__option[aria-selected=true] {
  background-color: #f5f5f5;
  color: #262626;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  background-color: #337ab7;
  color: #fff;
}

.select2-container--bootstrap .select2-results__option .select2-results__option {
  padding: 6px 12px;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -12px;
  padding-left: 24px;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -24px;
  padding-left: 36px;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -36px;
  padding-left: 48px;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -48px;
  padding-left: 60px;
}

.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -60px;
  padding-left: 72px;
}

.select2-container--bootstrap .select2-results__group {
  color: #777777;
  display: block;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1.42857143;
  white-space: nowrap;
}

.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  border-color: #66afe9;
}

.select2-container--bootstrap.select2-container--open {
  /**
     * Make the dropdown arrow point up while the dropdown is visible.
     */
  /**
     * Handle border radii of the container when the dropdown is showing.
     */
}

.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 4px 4px 4px;
}

.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-color: transparent;
}

.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top-color: transparent;
}

.select2-container--bootstrap .select2-selection__clear {
  color: #999;
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--bootstrap .select2-selection__clear:hover {
  color: #333;
}

.select2-container--bootstrap.select2-container--disabled .select2-selection {
  border-color: #ccc;
  box-shadow: none;
}

.select2-container--bootstrap.select2-container--disabled .select2-selection,
.select2-container--bootstrap.select2-container--disabled .select2-search__field {
  cursor: not-allowed;
}

.select2-container--bootstrap.select2-container--disabled .select2-selection,
.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
  background-color: #eeeeee;
}

.select2-container--bootstrap.select2-container--disabled .select2-selection__clear,
.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove {
  display: none;
}

.select2-container--bootstrap .select2-dropdown {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border-color: #66afe9;
  overflow-x: hidden;
  margin-top: -1px;
}

.select2-container--bootstrap .select2-dropdown--above {
  box-shadow: 0px -6px 12px rgba(0, 0, 0, 0.175);
  margin-top: 1px;
}

.select2-container--bootstrap .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--bootstrap .select2-selection--single {
  height: 34px;
  line-height: 1.42857143;
  padding: 6px 24px 6px 12px;
  /**
     * Adjust the single Select2's dropdown arrow button appearance.
     */
}

.select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  position: absolute;
  bottom: 0;
  right: 12px;
  top: 0;
  width: 4px;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-color: #999 transparent transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  height: 0;
  left: 0;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
  color: #555555;
  padding: 0;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--bootstrap .select2-selection--multiple {
  min-height: 34px;
  padding: 0;
  height: auto;
  /**
     * Make Multi Select2's choices match Bootstrap 3's default button styles.
     */
  /**
     * Minus 2px borders.
     */
  /**
     * Clear the selection.
     */
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  display: block;
  line-height: 1.42857143;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  float: left;
  margin-top: 5px;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  color: #555555;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin: 5px 0 0 6px;
  padding: 0 6px;
}

.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  background: transparent;
  padding: 0 12px;
  height: 32px;
  line-height: 1.42857143;
  margin-top: 0;
  min-width: 5em;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 3px;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 6px;
}

.select2-container--bootstrap .select2-selection--single.input-sm,
.input-group-sm .select2-container--bootstrap .select2-selection--single,
.form-group-sm .select2-container--bootstrap .select2-selection--single {
  border-radius: 3px;
  font-size: 12px;
  height: 30px;
  line-height: 1.5;
  padding: 5px 22px 5px 10px;
  /* 2 */
}

.select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b,
.input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,
.form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  margin-left: -5px;
}

.select2-container--bootstrap .select2-selection--multiple.input-sm,
.input-group-sm .select2-container--bootstrap .select2-selection--multiple,
.form-group-sm .select2-container--bootstrap .select2-selection--multiple {
  min-height: 30px;
  border-radius: 3px;
}

.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice,
.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,
.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 12px;
  line-height: 1.5;
  margin: 4px 0 0 5px;
  padding: 0 5px;
}

.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field,
.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,
.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 10px;
  font-size: 12px;
  height: 28px;
  line-height: 1.5;
}

.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear,
.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,
.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 5px;
}

.select2-container--bootstrap .select2-selection--single.input-lg,
.input-group-lg .select2-container--bootstrap .select2-selection--single,
.form-group-lg .select2-container--bootstrap .select2-selection--single {
  border-radius: 6px;
  font-size: 18px;
  height: 46px;
  line-height: 1.3333333;
  padding: 10px 31px 10px 16px;
  /* 1 */
}

.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow,
.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,
.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  width: 5px;
}

.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b,
.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,
.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-width: 5px 5px 0 5px;
  margin-left: -5px;
  margin-left: -10px;
  margin-top: -2.5px;
}

.select2-container--bootstrap .select2-selection--multiple.input-lg,
.input-group-lg .select2-container--bootstrap .select2-selection--multiple,
.form-group-lg .select2-container--bootstrap .select2-selection--multiple {
  min-height: 46px;
  border-radius: 6px;
}

.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice,
.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,
.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 4px;
  margin: 9px 0 0 8px;
  padding: 0 10px;
}

.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field,
.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,
.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 16px;
  font-size: 18px;
  height: 44px;
  line-height: 1.3333333;
}

.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear,
.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,
.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 10px;
}

.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single {
  /**
     * Make the dropdown arrow point up while the dropdown is visible.
     */
}

.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 5px 5px 5px;
}

.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single {
  /**
     * Make the dropdown arrow point up while the dropdown is visible.
     */
}

.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 5px 5px 5px;
}

.select2-container--bootstrap[dir=rtl] {
  /**
     * Single Select2
     *
     * 1. Makes sure that .select2-selection__placeholder is positioned
     *    correctly.
     */
  /**
     * Multiple Select2
     */
}

.select2-container--bootstrap[dir=rtl] .select2-selection--single {
  padding-left: 24px;
  padding-right: 12px;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  padding-left: 0;
  text-align: right;
  /* 1 */
}

.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 12px;
  right: auto;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b {
  margin-left: 0;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 0;
  margin-right: 6px;
}

.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

/*------------------------------------*  #ADDITIONAL GOODIES
\*------------------------------------*/
/**
 * Address Bootstrap's validation states
 *
 * If a Select2 widget parent has one of Bootstrap's validation state modifier
 * classes, adjust Select2's border colors and focus states accordingly.
 * You may apply said classes to the Select2 dropdown (body > .select2-container)
 * via JavaScript match Bootstraps' to make its styles match.
 *
 * @see http://getbootstrap.com/css/#forms-control-validation
 */
.has-warning .select2-dropdown,
.has-warning .select2-selection {
  border-color: #8a6d3b;
}

.has-warning .select2-container--focus .select2-selection,
.has-warning .select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  border-color: #66512c;
}

.has-warning.select2-drop-active {
  border-color: #66512c;
}

.has-warning.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #66512c;
}

.has-error .select2-dropdown,
.has-error .select2-selection {
  border-color: #a94442;
}

.has-error .select2-container--focus .select2-selection,
.has-error .select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  border-color: #843534;
}

.has-error.select2-drop-active {
  border-color: #843534;
}

.has-error.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #843534;
}

.has-success .select2-dropdown,
.has-success .select2-selection {
  border-color: #3c763d;
}

.has-success .select2-container--focus .select2-selection,
.has-success .select2-container--open .select2-selection {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  border-color: #2b542c;
}

.has-success.select2-drop-active {
  border-color: #2b542c;
}

.has-success.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #2b542c;
}

/**
 * Select2 widgets in Bootstrap Input Groups
 *
 * @see http://getbootstrap.com/components/#input-groups
 * @see https://github.com/twbs/bootstrap/blob/master/less/input-groups.less
 */
/**
 * Reset rounded corners
 */
.input-group > .select2-hidden-accessible:first-child + .select2-container--bootstrap > .selection > .select2-selection,
.input-group > .select2-hidden-accessible:first-child + .select2-container--bootstrap > .selection > .select2-selection.form-control {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group > .select2-hidden-accessible:not(:first-child) + .select2-container--bootstrap:not(:last-child) > .selection > .select2-selection,
.input-group > .select2-hidden-accessible:not(:first-child) + .select2-container--bootstrap:not(:last-child) > .selection > .select2-selection.form-control {
  border-radius: 0;
}

.input-group > .select2-hidden-accessible:not(:first-child):not(:last-child) + .select2-container--bootstrap:last-child > .selection > .select2-selection,
.input-group > .select2-hidden-accessible:not(:first-child):not(:last-child) + .select2-container--bootstrap:last-child > .selection > .select2-selection.form-control {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group > .select2-container--bootstrap {
  display: table;
  table-layout: fixed;
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 0;
  /**
   * Adjust z-index like Bootstrap does to show the focus-box-shadow
   * above appended buttons in .input-group and .form-group.
   */
  /**
   * Adjust alignment of Bootstrap buttons in Bootstrap Input Groups to address
   * Multi Select2's height which - depending on how many elements have been selected -
   * may grow taller than its initial size.
   *
   * @see http://getbootstrap.com/components/#input-groups
   */
}

.input-group > .select2-container--bootstrap > .selection > .select2-selection.form-control {
  float: none;
}

.input-group > .select2-container--bootstrap.select2-container--open, .input-group > .select2-container--bootstrap.select2-container--focus {
  z-index: 3;
}

.input-group > .select2-container--bootstrap,
.input-group > .select2-container--bootstrap .input-group-btn,
.input-group > .select2-container--bootstrap .input-group-btn .btn {
  vertical-align: top;
}

/**
 * Temporary fix for https://github.com/select2/select2-bootstrap-theme/issues/9
 *
 * Provides `!important` for certain properties of the class applied to the
 * original `<select>` element to hide it.
 *
 * @see https://github.com/select2/select2/pull/3301
 * @see https://github.com/fk/select2/commit/31830c7b32cb3d8e1b12d5b434dee40a6e753ada
 */
.form-control.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
}

/**
 * Display override for inline forms
 */
@media (min-width: 768px) {
  .form-inline .select2-container--bootstrap {
    display: inline-block;
  }
}
:root {
  --bs-body-bg: #FFF;
  --bs-border-width: 1px;
  --bs-border-color: ;
}

.btn-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 30px;
  border-radius: 15px;
}
.btn-circle .glyphicon {
  top: 0;
}

.btn-circle.btn-xs {
  width: 15px;
  height: 15px;
  text-align: center;
  padding: 0;
  font-size: 10px;
  border-radius: 50%;
  line-height: 15px;
}

.btn-circle.btn-lg {
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 25px;
}

.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  font-size: 24px;
  border-radius: 35px;
  line-height: 70px;
}

.d-flex, .flex {
  display: flex;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-auto {
  flex: auto;
}

.col {
  flex: 1 0 0%;
}

.column {
  flex-direction: column;
}

.expand {
  align-items: stretch;
}

.expand > * {
  flex: 1;
}

.shrink {
  flex: 0;
}

.h100 {
  height: 100%;
}

.align-items-start {
  align-items: start;
}

.align-items-end {
  align-items: end;
}

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

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.wrap {
  flex-wrap: wrap;
}

.border {
  border: 1px solid #f4f4f4;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 1rem;
}

.ml-4 {
  margin-left: 2rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25em !important;
}

.gap-2 {
  gap: 0.5em !important;
}

.gap-3 {
  gap: 1em !important;
}

.gap-4 {
  gap: 2em !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.w-25 {
  width: 25%;
}

.w-35 {
  width: 35%;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

.fs-1 {
  font-size: 0.8em !important;
}

.fs-2 {
  font-size: 0.9em !important;
}

.fs-3 {
  font-size: 1em !important;
}

.fs-4 {
  font-size: 1.2em !important;
}

.fs-5 {
  font-size: 1.3em !important;
}

.fs-6 {
  font-size: 1.5em !important;
}

.fw-bold {
  font-weight: bold;
}

.has-error .bootstrap-switch {
  border-color: #dd4b39;
}

.has-error .invalid-feedback {
  color: #dd4b39;
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
}

.position-relative {
  position: relative;
}

.pagination {
  margin: 0.5em 0;
}

.box {
  margin-bottom: 10px;
}

.row {
  display: flex;
  margin-right: -5px;
  margin-left: -5px;
  flex-wrap: wrap;
}

.row::after, .row::before {
  display: none;
  content: none;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  padding-right: 5px;
  padding-left: 5px;
}

.no-before::before {
  content: none !important;
}

.checkbox, .radio {
  margin: 0;
}

.form-switch {
  padding-left: 2.5em;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-switch.form-switch-lg .form-check-input {
  height: 2.6em;
  width: 5.2em;
}
.form-switch.form-switch-lg label {
  margin-top: 0.5em;
}

.form-check label {
  margin-left: 0.5em;
  margin-top: 0;
}

.form-check-input {
  float: left;
  margin-left: -1.5em;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: var(--color-bg-input);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--color-bg-input);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba%280, 0, 0, 0.25%29'/></svg>");
  width: 3em;
  height: 1.5em;
  margin-left: -1.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
  margin-top: 0;
}

.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-check-input[type=checkbox]:focus, .form-check-input[type=radio]:focus {
  outline: none;
}

.text-nowrap {
  white-space: nowrap;
}

@media (min-width: 992px) {
  .col-md-0 {
    float: left;
    width: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .row {
    align-items: start;
  }
}
@media (max-width: 991px) {
  .col-md-0 {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .col-md-6 {
    width: 100%;
  }
  .row {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
html {
  font-size: 13px;
}

body {
  font-weight: 400;
  color: #6D6F71;
}

strong, b {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Gotham Light", sans-serif;
}

hr {
  margin: 1em 0;
}

img {
  max-width: 100%;
}

.fa {
  vertical-align: middle;
}

.label-zona {
  font-size: 1em;
  font-weight: normal;
  margin-bottom: 5px;
}

.label-zona a {
  font-size: 12px;
  display: inline-block;
  background-color: white;
  color: #3c8dbc;
  margin-left: 10px;
  border-radius: 50%;
  padding: 5px;
}

.label-zona a:hover {
  opacity: 0.9;
}

.row-no-margin:before {
  display: table;
  content: " ";
}

.row-no-margin:after {
  display: table;
  content: " ";
  clear: both;
}

label.label-radio {
  font-weight: normal;
}

.form-group-radio .input-group {
  margin-bottom: -1px;
}

.leyend {
  font-style: italic;
  margin-top: 0.25em;
  display: flex;
  gap: 0.35em;
}

.leyend i, .leyend .material-symbols-rounded {
  color: var(--color-primary);
  line-height: 1;
}

.estado {
  display: inline-block;
  padding: 0.25em 0.5em;
  border-radius: 0.5em;
  color: white;
  font-size: 0.9em;
}

.estado.al_dia, .estado.bueno {
  background-color: #00a65a;
}

.estado.vencido, .estado.malo {
  background-color: #dd4b39;
}

.estado.proximo, .estado.regular {
  background-color: #f39c12;
}

.estado.sin_relevar {
  background-color: #d2d6de;
  color: #333;
}

.box-header {
  padding: 0.75em;
}

.header-with-button, .box-header.with-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-with-button .btn-circle .material-symbols-rounded, .box-header.with-button .btn-circle .material-symbols-rounded {
  font-size: 1.5em;
}

.header-with-button.align-items-start, .box-header.with-button.align-items-start {
  align-items: start;
}

.box-header.with-button::before {
  content: "";
  display: none;
}

.box-header.with-button::after {
  content: "";
  display: none;
}

h1.box-title {
  font-size: 24px;
}

.box-header .categoria {
  font-size: 1em;
  margin-bottom: 0.5em;
  font-style: italic;
}

.box-header .categoria .material-icons {
  font-size: 18px;
}

.box-header.flex {
  display: flex;
  align-items: center;
}

.box-header.flex .input-group {
  margin-left: 1em;
}

.box-header.flex::before, .box-header.flex::after {
  content: "";
  display: none;
}

.box-title {
  font-size: 1.2em;
}

.box-title.with-icon {
  display: flex;
  gap: 1em;
  align-items: center;
}

.box-header h3.box-title, h3.box-title {
  font-size: 16px;
}
.box-header h3.box-title .incidentes-icono, h3.box-title .incidentes-icono {
  font-size: 10px;
}

.box-header h4.box-title, h4.box-title {
  font-size: 14px;
}
.box-header h4.box-title .incidentes-icono, h4.box-title .incidentes-icono {
  font-size: 8px;
}

.select2-container--bootstrap .select2-selection.select2-selection--single {
  line-height: 2;
}

.select2-selection__rendered > .tag, .select2-results__option > .tag, .select2-selection__choice .tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.select2-container-with-btn .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  padding: 0 0 0 6px;
}

.select2-container-with-btn .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice .btn.btn-xs {
  padding: 2px 5px;
  border-radius: 4px;
}

.select2-container-with-btn .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  margin-right: 5px;
}

.select2-selection__choice {
  display: flex;
  align-items: center;
}

.select2-selection__choice .tag i {
  font-size: 20px;
}

.btn.btn-expand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-tag-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.menu-tag {
  color: #555555;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 6px;
}

.label {
  display: inline-flex;
  vertical-align: middle;
  line-height: normal;
  margin: 1px;
  padding: 0.25em 0.6em 0.3em;
}

.fotos-print {
  display: none;
}

.table > tbody > tr > td.td-icono {
  padding: 8px 0;
}

.table > tbody > tr > td.td-icono .material-icons {
  font-size: 20px;
}

.table .no-visible {
  font-style: italic;
  opacity: 0.6;
}

.table .actions {
  text-align: right;
  text-wrap: nowrap;
}

.btn > span + i {
  margin-left: 0.5em;
}

.btn > i + span {
  margin-left: 0.5em;
}

.btn-flex {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.btn .material-symbols-rounded {
  font-size: 1.5em;
}

.btn-xs.btn-flex {
  gap: 0.25em;
}

.btn-xs .material-symbols-rounded {
  font-size: 1.2em;
}

.btn.activo {
  outline: none;
  filter: brightness(95%);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.cargando {
  display: none;
  position: absolute;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(200, 200, 200, 0.3);
}

.cargando .spinner-border {
  position: absolute;
  width: 3rem;
  height: 3rem;
  top: 50%;
  left: 50%;
  margin-top: -1.5rem;
  margin-left: -1.5rem;
}

.sidebar {
  padding-bottom: 0;
}

.grid-item {
  position: relative;
  margin-bottom: 20px;
}

.grid-delete {
  position: absolute;
  right: 0;
  top: -7px;
}

.navbar .navbar-custom-menu .settings {
  line-height: 20px;
  height: 20px;
  box-sizing: content-box;
}
.navbar .navbar-custom-menu .settings .material-symbols-rounded {
  font-size: 1.5em;
}

@media (min-width: 768px) {
  .main-sidebar {
    overflow-y: auto;
    height: calc(var(--window-height));
    min-height: auto;
  }
}
@media print {
  * {
    -webkit-print-color-adjust: exact;
  }
  .btn {
    display: none !important;
  }
  .leaflet-control-container {
    display: none;
  }
  a[href]:after {
    content: none !important;
  }
  .fotos {
    display: none !important;
  }
  .fotos-print {
    display: flex;
    gap: 10px;
  }
  .fotos-print p {
    margin-bottom: 10px;
  }
  .fotos-print img {
    width: 100%;
    height: auto;
    display: block;
  }
  .page-break-before {
    page-break-before: always;
  }
}
.grafico {
  height: 320px;
  position: relative;
}

.grafico.total {
  height: 120px;
  text-align: center;
  width: 100%;
  font-size: 6em;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grafico.total .numero {
  width: 100%;
}

.grafico-labels a {
  font-size: 12px;
  display: inline-flex;
  gap: 0.2em;
  padding: 0.25em 0.5em;
  margin: 0.15em;
  color: var(--color-text) !important;
}
.grafico-labels a span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 5px;
}
.grafico-labels a.bar-hidden {
  text-decoration: line-through;
}

.empty-chart {
  display: flex;
  align-items: center;
}

.empty-chart::after {
  display: block;
  content: "sin datos";
  text-align: center;
  font-size: 1.25em;
  width: 100%;
  color: #999;
  font-style: italic;
}

@media (max-width: 991px) {
  .grafico {
    min-height: 150px;
  }
}
/* Dropzone CSS. Bugfixed: both .dropzone and ._dropzone works. This allows to use ._dropzone for not autouploading forms */
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone, .dropzone *, ._dropzone, ._dropzone * {
  box-sizing: border-box;
}

.dropzone, ._dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 20px 20px;
}

.dropzone.is-invalid, ._dropzone.is-invalid {
  border-color: #dc3545;
}

.dz-clickable {
  cursor: pointer;
}

.dz-clickable > * {
  cursor: default;
}

.dz-clickable .dz-message, .dz-clickable .dz-message * {
  cursor: pointer;
}

.dz-started .dz-message {
  display: none;
}

.dz-drag-hover {
  border-style: solid;
}

.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dz-message {
  text-align: center;
  padding: 2em 0;
}

.dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dz-preview:hover {
  z-index: 1000;
}

.dz-preview:hover .dz-details {
  opacity: 1;
}

.dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dz-preview.dz-image-preview {
  background: #fff;
}

.dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}

.dz-preview .dz-remove {
  display: inline-flex;
  cursor: pointer;
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 1005;
}

.dz-preview .dz-remove:hover {
  filter: brightness(1.1);
}

.dz-preview:hover .dz-details {
  opacity: 1;
}

.dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dz-preview .dz-details .dz-filename span, .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}

.dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dz-preview .dz-image img {
  display: block;
}

.dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dz-preview .dz-success-mark, .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dz-preview .dz-success-mark svg, .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}

.dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}

.dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}

.dz-preview.dz-error .dz-error-message {
  display: block;
}

.dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: #fff;
}

.dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.marker-cluster {
  background-clip: padding-box;
}

.marker-cluster-small {
  font-size: 12px;
}

.marker-cluster-medium {
  font-size: 15px;
}

.marker-cluster-large {
  font-size: 18px;
}

.marker-cluster > div {
  padding: 10%;
  width: 90%;
  height: 90%;
  border-radius: 10em;
}

.marker-cluster > div > div {
  border-radius: 10em;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(110, 204, 57, 0.6);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.marker-cluster i {
  font-size: 1.2em;
  line-height: 1;
}

.marker-cluster span {
  font-size: 0.8em;
  display: block;
  line-height: 1;
}

.map-icon-with-flames text {
  display: none;
}

#seccion-mapa {
  /* ajustes a leaflet para tener los mismos popups */
}
#seccion-mapa .menu {
  margin-bottom: 0;
}
#seccion-mapa .menu .desplegable {
  position: absolute;
  z-index: 100;
  left: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  max-height: calc(var(--window-height) - 140px);
  overflow-y: auto;
}
#seccion-mapa .menu .categorias {
  max-height: 220px;
  overflow-y: auto;
}
#seccion-mapa .menu .products-list > .item {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
#seccion-mapa .menu .products-list > .item .nombre, #seccion-mapa .menu .products-list > .item .categoria {
  display: flex;
  align-items: center;
  gap: 5px;
}
#seccion-mapa .menu .products-list > .item .zona {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  display: inline-block;
}
#seccion-mapa .menu .products-list > .item .filtro-estado {
  width: 5px;
  height: 20px;
  border-radius: 2px;
  display: inline-block;
  background: #d2d6de;
}
#seccion-mapa .menu .products-list > .item .filtro-estado.bueno, #seccion-mapa .menu .products-list > .item .filtro-estado.al_dia {
  background-color: #00a65a;
}
#seccion-mapa .menu .products-list > .item .filtro-estado.malo, #seccion-mapa .menu .products-list > .item .filtro-estado.vencido {
  background-color: #dd4b39;
}
#seccion-mapa .menu .products-list > .item .filtro-estado.regular, #seccion-mapa .menu .products-list > .item .filtro-estado.proximo {
  background-color: #f39c12;
}
#seccion-mapa .menu .products-list > .item input {
  margin: 0;
}
#seccion-mapa .menu .products-list > .item::after, #seccion-mapa .menu .products-list > .item::before {
  content: "";
  display: none;
}
#seccion-mapa .contenedor {
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out, padding 0.3s ease-in-out, height 0.3s ease-in-out, gap 0.3s ease-in-out;
}
#seccion-mapa .mapa {
  height: 80vh;
  position: relative;
  z-index: 50;
}
#seccion-mapa .lateral {
  height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#seccion-mapa .lateral .box {
  margin: 0;
  flex: 1;
  overflow: auto;
}
#seccion-mapa .btn.toggle-lateral {
  position: absolute;
  top: 50%;
  margin-top: -1.5em;
  left: 100%;
  font-size: 0.8em;
  padding: 1.5em 0;
  border-radius: 0 3px 3px 0;
  line-height: 1;
  width: 12px;
}
#seccion-mapa .btn.toggle-lateral i {
  display: block;
  margin: 0 auto;
  width: 60%;
  height: 2em;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/slick-siguiente.svg);
  background-size: contain;
}
#seccion-mapa .btn.toggle-lateral.collapsed {
  transform: rotate(180deg);
}
#seccion-mapa .contenedor-mapa.col-md-12 {
  width: 100%;
}
#seccion-mapa .contenedor-mapa.col-md-12 .toggle-lateral {
  left: auto;
  right: 0;
  margin-right: -15px;
}
#seccion-mapa .mapa-popup {
  width: 300px;
  background-color: #fff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
#seccion-mapa .mapa-popup .nombre {
  font-size: 15px;
  font-weight: bold;
  background-color: var(--color-info);
  padding: 10px 12px;
  color: #fff;
}
#seccion-mapa .mapa-popup .nombre.al_dia, #seccion-mapa .mapa-popup .nombre.bueno {
  background-color: #00a65a;
}
#seccion-mapa .mapa-popup .nombre.vencido, #seccion-mapa .mapa-popup .nombre.malo {
  background-color: #dd4b39;
}
#seccion-mapa .mapa-popup .nombre.proximo, #seccion-mapa .mapa-popup .nombre.regular {
  background-color: #f39c12;
}
#seccion-mapa .mapa-popup .nombre.sin_relevar {
  background-color: #d2d6de;
  color: #333;
}
#seccion-mapa .mapa-popup .estados {
  border-top: 1px solid #ddd;
  padding: 10px;
}
#seccion-mapa .mapa-popup .estados label {
  margin-right: 1em;
}
#seccion-mapa .mapa-popup .contenido .foto div {
  height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#seccion-mapa .mapa-popup .contenido .info {
  padding: 10px;
}
#seccion-mapa .mapa-popup .contenido .info .bajada {
  margin-bottom: 10px;
}
#seccion-mapa .mapa-popup .contenido .info .bajada p {
  margin: 0;
  margin-bottom: 10px;
}
#seccion-mapa .mapa-popup .contenido .info .boton {
  padding-top: 0.5em;
}
#seccion-mapa .mapa-popup .contenido .info .boton a {
  color: white;
}
#seccion-mapa .mapa-popup .contenido .info .boton a .material-symbols-rounded {
  font-size: 1.2em;
}
#seccion-mapa .tabla-lugar {
  cursor: pointer;
}
#seccion-mapa .tabla-lugar td {
  vertical-align: middle;
  line-height: 1;
  padding: 8px 5px;
}
#seccion-mapa .tabla-lugar:hover td {
  background-color: #f0f0f0;
}
#seccion-mapa .tabla-lugar .tabla-estado {
  padding: 0;
  width: 2px;
  background: #d2d6de;
}
#seccion-mapa .tabla-lugar.bueno .tabla-estado {
  background-color: #00a65a;
}
#seccion-mapa .tabla-lugar.malo .tabla-estado {
  background-color: #dd4b39;
}
#seccion-mapa .tabla-lugar.regular .tabla-estado {
  background-color: #f39c12;
}
#seccion-mapa .tabla-lugar .tabla-icono {
  padding: 0 0 0 5px;
  color: #96999e;
}
#seccion-mapa .tabla-lugar .tabla-icono .material-icons {
  font-size: 1.2em;
}
#seccion-mapa .tabla-lugar.bueno .tabla-icono {
  color: #00a65a;
}
#seccion-mapa .tabla-lugar.malo .tabla-icono {
  color: #dd4b39;
}
#seccion-mapa .tabla-lugar.regular .tabla-icono {
  color: #f39c12;
}
#seccion-mapa .leaflet-popup-content {
  margin: 0;
}
#seccion-mapa .leaflet-popup-content-wrapper {
  background: none;
  box-shadow: none;
}
#seccion-mapa .leaflet-container a.leaflet-popup-close-button {
  top: 7px;
  right: 10px;
  display: block;
  padding: 6px;
  color: #fff;
}
#seccion-mapa .leaflet-container a.leaflet-popup-close-button:hover {
  color: #fff;
}
#seccion-mapa .leaflet-popup-tip-container {
  bottom: -18px;
}

@media (max-width: 991px) {
  #seccion-mapa .toggle-lateral {
    display: none;
  }
  #seccion-mapa .contenedor-mapa {
    margin-bottom: 15px;
  }
  #seccion-mapa .contenedor-mapa.col-md-12 {
    width: 100%;
  }
  #seccion-mapa .contenedor-lateral.col-md-0 {
    width: 100%;
  }
  #seccion-mapa .lateral {
    height: auto;
  }
  #seccion-mapa .lateral .box {
    max-height: 300px;
  }
}
@media (min-width: 991px) {
  #seccion-mapa {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  #seccion-mapa .contenedor-mapa {
    padding: 0;
  }
  #seccion-mapa .contenedor-lateral {
    padding: 0;
  }
  #seccion-mapa .content-header {
    flex: 0;
  }
  #seccion-mapa .content {
    flex: auto;
    flex-basis: 0;
    width: 100%;
  }
  #seccion-mapa .content .row {
    margin: 0;
    flex-wrap: nowrap;
    gap: 15px;
  }
}
@font-face {
  font-family: "Gotham Light";
  src: url("/fonts/gotham-light/gotham-light.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gotham Light";
  src: url("/fonts/gotham-light/gotham-medium.otf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gotham Light";
  src: url("/fonts/gotham-light/gotham-light-italic.otf");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Gotham Light";
  src: url("/fonts/gotham-light/gotham-medium-italic.otf");
  font-weight: bold;
  font-style: italic;
}
:root {
  --window-height: 100%;
}

body.wip3 {
  font-size: 13px;
  --color-info: #4b646f;
  --color-link: #528dcb;
  --color-primary: #6fbd43;
  --color-text: #444444;
  --color-text-light: #b8c7ce;
  --color-primary-light: rgba(111,189,67,.25);
  --color-secondary: #222d32;
  --color-tertiary: #3c8dbc;
  --color-bg-input: #eff0f1;
  --color-default: #DDDDDD;
  --color-highlight: #d3c54a;
  --color-success: #00a65a;
  --color-warning: #f39c12;
  --color-danger: #dd4b39;
  background-color: #FFFFFF;
  font-family: "Gotham Light", sans-serif;
  /* float: none; */
  /* margin-right: 0; */
  /* margin-top: -8px; */
  /* line-height: 10px; */
}
body.wip3 .main-header {
  background-color: #FFFFFF;
}
body.wip3 .main-header .logo {
  background-color: #FFFFFF;
}
body.wip3 .main-header .logo:hover {
  background-color: #FFFFFF;
}
body.wip3 .main-header .logo .logo-lg {
  height: 40px;
  line-height: 40px;
  margin: 5px 0;
  background: url(../img/iconos/wip.png) no-repeat center center;
  background-size: contain;
  text-indent: -9999px;
}
body.wip3 .main-header .logo .logo-mini {
  background: url(../img/iconos/wip-mini.png) no-repeat center;
  background-size: contain;
  height: 25px;
  margin-top: 12px;
}
body.wip3 .main-header .navbar {
  background-color: transparent;
}
body.wip3 .main-header .navbar .sidebar-toggle {
  color: var(--color-text);
  font-family: "Gotham Light", sans-serif;
  padding: 10px 15px;
}
body.wip3 .main-header .navbar .sidebar-toggle::before {
  font-family: "Material Symbols Rounded";
  content: "menu";
  font-size: 1.5em;
}
body.wip3 .main-header .navbar .sidebar-toggle:hover {
  background-color: var(--color-primary);
}
body.wip3 .main-header .navbar .nav > li > a {
  color: var(--color-text);
}
body.wip3 .main-header .navbar .nav > li > a:hover, body.wip3 .main-header .navbar .nav > li.open > a:hover, body.wip3 .main-header .navbar .nav > li > a:focus, body.wip3 .main-header .navbar .nav > li > a:active {
  background-color: var(--color-primary);
}
body.wip3 .main-header .navbar .nav > li.open > a:focus, body.wip3 .main-header .navbar .nav li.open > a {
  background-color: var(--color-primary);
}
body.wip3 .main-header li.user-header {
  background-color: var(--color-secondary);
}
body.wip3 .main-sidebar .sidebar-menu a {
  color: var(--color-text-light);
}
body.wip3 .main-sidebar .sidebar-menu .incidentes-icono {
  width: 1.5em;
  height: 1.5em;
}
body.wip3 .navbar-nav > .user-menu span.user-image {
  -webkit-mask-image: url(../img/usuario.svg);
          mask-image: url(../img/usuario.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-text);
}
body.wip3 .navbar-nav > .user-menu a:hover span.user-image, body.wip3 .navbar-nav > .user-menu a:focus span.user-image, body.wip3 .navbar-nav > .user-menu a:active span.user-image, body.wip3 .navbar-nav > .user-menu .open span.user-image {
  background-color: #FFFFFF;
}
body.wip3 .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  color: var(--color-text);
}
body.wip3 .sidebar-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background-color: unset;
}
body.wip3 .sidebar-menu > li > a > .material-symbols-rounded {
  font-size: 1.5em;
}
body.wip3 .sidebar-menu .treeview-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1em;
}
body.wip3 .sidebar-menu .treeview-menu > li > a .material-symbols-rounded {
  font-size: 1.2em;
}
body.wip3 .sidebar-menu > li.active > a {
  border-left-color: var(--color-primary);
}
body.wip3 .form-control {
  background-color: var(--color-bg-input);
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}
body.wip3 .form-control:focus {
  box-shadow: 0 0 0 0.25em var(--color-primary-light);
  outline: 0;
}
body.wip3 .input-group .input-group-addon {
  background-color: var(--color-bg-input);
  border: none;
  padding-right: 0;
}
body.wip3 .input-group .input-group-addon .material-symbols-rounded {
  font-size: 1.3em;
}
body.wip3 .select2-container--bootstrap .select2-selection {
  background-color: var(--color-bg-input);
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}
body.wip3 .select2-container--open.select2-container--bootstrap .select2-selection, body.wip3 .select2-container--focus.select2-container--bootstrap .select2-selection {
  border: 1px solid var(--color-primary);
}
body.wip3 .select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  background-color: var(--color-primary);
  color: #fff;
}
body.wip3 .select2-container--bootstrap .select2-dropdown {
  border-color: var(--color-primary);
}
body.wip3 .color-primary {
  color: var(--color-primary);
}
body.wip3 .color-info {
  color: var(--color-info);
}
body.wip3 .color-success {
  color: var(--color-success);
}
body.wip3 .color-warning {
  color: var(--color-warning);
}
body.wip3 .color-danger {
  color: var(--color-danger);
}
body.wip3 .color-link {
  color: var(--color-link);
}
body.wip3 .color-tertiary {
  color: var(--color-tertiary);
}
body.wip3 .color-default {
  color: var(--color-default);
}
body.wip3 .color-text {
  color: var(--color-text);
}
body.wip3 .label {
  color: #FFFFFF;
}
body.wip3 .label.label-primary {
  background-color: var(--color-primary) !important;
}
body.wip3 .label.label-info {
  background-color: var(--color-info);
}
body.wip3 .label.label-success {
  background-color: var(--color-success);
}
body.wip3 .label.label-warning {
  background-color: var(--color-warning);
}
body.wip3 .label.label-danger {
  background-color: var(--color-danger);
}
body.wip3 .label.label-link {
  background-color: var(--color-link);
}
body.wip3 .label.label-tertiary {
  background-color: var(--color-tertiary);
}
body.wip3 .label.label-default {
  background-color: var(--color-default);
  color: var(--color-text);
}
body.wip3 .label-box {
  color: #555555;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  margin: 5px 0 0 6px;
  padding: 0 6px;
}
body.wip3 .btn {
  border: none;
  border-radius: 0.75em;
  font-size: 1em;
  color: #FFFFFF;
}
body.wip3 .btn.btn-circle {
  border-radius: 10em;
}
body.wip3 .btn.btn-primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
}
body.wip3 .btn.btn-info {
  background-color: var(--color-info);
  color: #FFFFFF;
}
body.wip3 .btn.btn-success {
  background-color: var(--color-success);
  color: #FFFFFF;
}
body.wip3 .btn.btn-warning {
  background-color: var(--color-warning);
  color: #FFFFFF;
}
body.wip3 .btn.btn-danger {
  background-color: var(--color-danger);
  color: #FFFFFF;
}
body.wip3 .btn.btn-link {
  background-color: var(--color-link);
  color: #FFFFFF;
  text-decoration: none;
}
body.wip3 .btn.btn-tertiary {
  background-color: var(--color-tertiary);
  color: #FFFFFF;
}
body.wip3 .btn.btn-default {
  background-color: var(--color-default);
  color: var(--color-text);
}
body.wip3 .btn:hover {
  filter: brightness(105%);
}
body.wip3 .btn:active {
  outline: none;
  filter: brightness(95%);
}
body.wip3 .btn:active.btn-primary, body.wip3 .btn.btn-primary:focus {
  box-shadow: 0 0 0 0.25em var(--color-primary-light);
}
body.wip3 .btn.btn-xs {
  font-size: 12px;
}
body.wip3 .btn.btn-xs .incidentes-icono {
  width: 1.1em;
  height: 1.1em;
}
body.wip3 .btn.btn-box-tool {
  color: var(--color-text);
}
body.wip3 .collapsed-box .btn.btn-box-tool {
  color: var(--color-text-light);
}
body.wip3 .collapsed-box .btn.btn-box-tool .fa-minus, body.wip3 .collapsed-box .btn.btn-box-tool:hover, body.wip3 .collapsed-box .btn.btn-box-tool:focus {
  color: var(--color-text);
}
body.wip3 .table .btn {
  font-size: 0.9em;
}
body.wip3 .table .btn .material-symbols-rounded {
  font-size: 1.5em;
}
body.wip3 .table td, body.wip3 .table th {
  vertical-align: middle;
}
body.wip3 a {
  color: var(--color-link);
}
body.wip3 .form-control-feedback {
  right: auto;
  left: 0;
  color: var(--color-primary);
}
body.wip3 .form-control-feedback.material-icons, body.wip3 .form-control-feedback.material-symbols-rounded {
  line-height: revert;
  font-size: 1.3em;
  line-height: 34px;
}
body.wip3 .form-group.has-error .help-block strong {
  font-weight: normal;
}
body.wip3 .form-check-destacado {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0 0 0.1em 0.25em;
  width: 0.9em;
  height: 0.9em;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-mask-image: url(../img/star.svg);
          mask-image: url(../img/star.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 0.8em 0.8em;
          mask-size: 0.8em 0.8em;
}
body.wip3 .form-check-destacado:not(:checked) {
  background: var(--color-bg-input);
}
body.wip3 .form-check-destacado.checked, body.wip3 .form-check-destacado:checked {
  background: var(--color-primary);
  -webkit-mask-size: 1em 1em;
          mask-size: 1em 1em;
}
body.wip3 .has-feedback .form-control {
  padding-right: 12px;
  padding-left: 35px;
}
body.wip3 .checkbox {
  display: flex;
  gap: 1em;
  align-items: center;
}
body.wip3 .checkbox label {
  padding-left: 0;
  color: var(--color-link);
}
body.wip3 .checkbox .icheckbox {
  background-color: var(--color-bg-input);
  border-radius: 0.2em;
  width: 20px;
  height: 20px;
}
body.wip3 .checkbox .icheckbox.active, body.wip3 .checkbox .icheckbox.focus {
  box-shadow: 0 0 0 0.25em var(--color-primary-light);
}
body.wip3 .checkbox .icheckbox.checked {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}
body.wip3 .checkbox .icheckbox.checked::before {
  content: "check_small";
  font-family: "Material Symbols Rounded";
  font-size: 20px;
  line-height: 20px;
  color: var(--color-primary);
}
body.wip3 .login-container {
  min-height: var(--window-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: scroll;
}
body.wip3 .login-container .login-box {
  margin: 0 auto;
  padding: 20px;
}
body.wip3 .login-container .login-box .login-logo img {
  max-height: calc(var(--window-height) * 0.25);
}
body.wip3 .login-container .login-box .login-box-body {
  padding: 20px 0;
}
body.wip3 .login-container .login-box .login-box-msg {
  letter-spacing: 0.25em;
}
body.wip3 .login-container .login-box .login-box-footer {
  padding-top: 2em;
}
body.wip3 .login-container .login-box .login-wip-logo {
  width: 30%;
  max-width: 100px;
  margin: 0 auto;
}
body.wip3 .login-container .login-box .btn {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2em;
}

@media (max-width: 767px) {
  body.wip3 .main-header .logo {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -60px;
    width: 120px;
    z-index: 2000;
  }
  .control-sidebar {
    padding-top: 50px;
  }
  .main-sidebar {
    padding-top: 50px;
  }
  body.wip3 .main-header .navbar-nav .user-menu .dropdown-toggle {
    float: left;
    padding: 1em;
  }
  body.wip3 .main-header .navbar-nav .user-menu .dropdown-toggle .user-image {
    float: left;
    margin-right: 0;
    margin-top: 0;
    line-height: 10px;
  }
  /* float: none; */
  /* margin-right: 0; */
  /* margin-top: -8px; */
  /* line-height: 10px; */
}
/*.select2-selection--multiple .select2-search--inline .select2-search__field {width: auto !important;}*/
.select2-container--bootstrap .select2-results__option[aria-disabled=true] {
  display: none;
}

.select2-selection__rendered > :first-child.select2-search--inline {
  width: 100%;
}

.select2-selection__rendered > :first-child.select2-search--inline .select2-search__field {
  width: 100% !important;
}

label.form-control {
  height: auto;
  min-height: 34px;
}

.form-group-radio .input-group.mb-1 {
  margin-bottom: 0.25rem;
}

.form-group-radio .input-group.mb-2 {
  margin-bottom: 0.5rem;
}

.form-group-radio .input-group.mb-3 {
  margin-bottom: 1rem;
}

.form-group-radio .input-group.mb-4 {
  margin-bottom: 2rem;
}

.d-hide {
  display: none;
}

.has-error .invalid-feedback {
  display: block;
}

.has-error .select2-container.select2-container--bootstrap .select2-selection {
  border-color: #dc3545;
}

.input-group-text:has(+ .is-invalid) {
  border-color: #dc3545;
}

#ficha-lugar .mapa {
  height: 350px;
}
#ficha-lugar .foto {
  display: block;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#ficha-lugar .slick-dots {
  position: absolute;
  width: 100%;
  padding: 0;
  margin: 0;
  bottom: 38px;
  list-style: none;
  text-align: center;
  pointer-events: none;
}
#ficha-lugar .slick-dots li {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 2px 10px;
  border-radius: 100%;
  background: #fff;
  position: relative;
}
#ficha-lugar .slick-dots button {
  display: none;
}
#ficha-lugar .slick-dots .slick-active {
  width: 8px;
  height: 8px;
  margin: 0px 8px;
}
#ficha-lugar .slick-prev, #ficha-lugar .slick-next {
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
#ficha-lugar .slick-prev:focus, #ficha-lugar .slick-prev:active, #ficha-lugar .slick-next:focus, #ficha-lugar .slick-next:active {
  outline: 0;
}
#ficha-lugar .slick-prev {
  background-image: url(../img/slick-anterior.svg);
  left: 20px;
}
#ficha-lugar .slick-next {
  background-image: url(../img/slick-siguiente.svg);
  right: 20px;
}

.categoria {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.categoria .material-symbols-rounded {
  font-size: 1.25em;
}

.lugar {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.lugar .material-symbols-rounded {
  font-size: 1.25em;
}
.lugar .incidentes-icono {
  width: 1.5em;
  height: 1.5em;
}

.btn .incidentes-icono {
  width: 1.6em;
  height: 1.6em;
}

.incidentes-icono {
  display: inline-block;
  background: url(../img/flame.svg) no-repeat center center;
  background-size: contain;
  width: 2.25em;
  height: 2.25em;
  position: relative;
}
.incidentes-icono.alt {
  background-image: url(../img/flame-alt.svg);
  background-size: 60%;
  background-color: #fecf58;
  border-radius: 50px;
}
.incidentes-icono.color {
  background: var(--color-text);
  -webkit-mask-image: url(../img/flame.svg);
          mask-image: url(../img/flame.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.incidentes-icono.color.text-light {
  background: var(--color-text-light);
}
.incidentes-icono.color.primary {
  background: var(--color-primary);
}
.incidentes-icono .count {
  font-family: Arial;
  line-height: 12px;
  text-align: center;
  font-size: 9px;
  position: absolute;
  top: -5px;
  right: -2.5px;
  border-radius: 100%;
  background-color: var(--color-danger);
  color: #FFFFFF;
  min-width: 12px;
  height: 12px;
  display: block;
}

.incidentes-menu .dropdown-menu {
  max-width: 350px;
  max-height: 400px;
  overflow-y: auto;
  padding: 0;
}
.incidentes-menu .dropdown-menu:empty::after {
  content: "No tenés incidentes sin resolver";
  display: block;
  text-align: center;
  padding: 0.5em 0;
}
.incidentes-menu .dropdown-menu .active > a {
  background-color: #FFF;
  color: var(--color-text);
}
.incidentes-menu .dropdown-menu .active > a:focus, .incidentes-menu .dropdown-menu .active > a:hover {
  background-color: #e1e3e9;
  color: #333;
}
.incidentes-menu .dropdown-menu li:not(:first-child) {
  border-top: 1px solid #eee;
}
.incidentes-menu .dropdown-toggle:hover, .incidentes-menu .dropdown-toggle:focus, .incidentes-menu .dropdown-toggle:active {
  background: #fecf58 !important;
}
.incidentes-menu .dropdown-toggle:hover .incidentes-icono, .incidentes-menu .dropdown-toggle:focus .incidentes-icono, .incidentes-menu .dropdown-toggle:active .incidentes-icono {
  background-image: url(../img/flame-alt.svg);
}
.incidentes-menu .dropdown-toggle:hover .incidentes-icono.color, .incidentes-menu .dropdown-toggle:focus .incidentes-icono.color, .incidentes-menu .dropdown-toggle:active .incidentes-icono.color {
  background: #FFF;
}
.incidentes-menu .incidentes-menu-item {
  padding: 0.25em 0.75em;
  color: var(--color-text);
  white-space: normal;
}
.incidentes-menu .incidentes-menu-item .contenido {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5em;
  padding-bottom: 0.25em;
}
.incidentes-menu .incidentes-menu-item .contenido .descripcion {
  font-size: 0.9em;
  display: -webkit-box; /* Enables flexible box layout */
  -webkit-line-clamp: 2; /* Limits the text to 3 lines */
  line-clamp: 2;
  -webkit-box-orient: vertical; /* Stacks content vertically */
  overflow: hidden; /* Hides overflowing content */
  text-overflow: ellipsis; /* Displays an ellipsis for truncated text */
  width: 250px;
}
.incidentes-menu .incidentes-menu-item .contenido .incidentes-icono {
  font-size: 0.8em;
}
.incidentes-menu .incidentes-menu-item .fecha-reporte {
  display: block;
  font-size: 0.8em;
  text-align: right;
  width: 100%;
}
.incidentes-menu .incidentes-menu-item .fecha-reporte time {
  text-transform: lowercase;
}
.incidentes-menu .incidentes-menu-item .fecha-resolucion {
  display: block;
  font-size: 0.8em;
  text-align: left;
  width: 100%;
}
.incidentes-menu .incidentes-menu-item .fecha-resolucion time {
  text-transform: lowercase;
}

.qrs-print-page {
  size: A4;
}

.qr {
  width: 350px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1em;
}
.qr.qr-print {
  border-radius: 3px;
  border: 1px dashed #444;
  padding: 15px;
}
.qr.qr-print .qr-container {
  border: none;
  padding: 0;
}
.qr .qr-container {
  flex: 2;
  padding: 1em;
  border: 1px solid #f4f4f4;
  border-radius: 3px;
}
.qr .qr-buttons {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  flex-wrap: nowrap;
  align-items: start;
}
.qr .qr-content {
  flex: 3;
  font-size: 22px;
  font-weight: bold;
  color: #444;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.qr .qr-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.qr .qr-client-logo {
  width: 75%;
}

@media (min-width: 768px) {
  .navbar-nav > li.incidentes-menu > a.dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .skin-blue .main-header .navbar .incidentes-menu .dropdown-menu li a {
    color: var(--color-text);
  }
  .skin-blue .main-header .navbar .incidentes-menu .dropdown-menu li a:hover {
    background-color: #e1e3e9;
  }
  .navbar-nav > li.incidentes-menu > a.dropdown-toggle {
    padding: 10px 10px 5px;
  }
}
.editar-toggle-activo {
  display: none;
}
