* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
  font-weight: 100;
  outline: 0 !important;
  /*-webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;*/
}

input {
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

a:link, a:visited, a:hover, a:active {
  color: black;
  text-decoration: none;
}

body {
  background: url('../img/background.png');
  background-repeat: repeat-y;
  background-size: 100vw 100vh;
  padding-bottom: 50px;
  min-width: 350px !important;
}

body, .smooth-container { scroll-behavior: smooth }

#topBar {
  width: 100%;
  height: 55px;
  background-color: rgba(239, 83, 80, 0.95);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(140,140,140,0.7);
  box-shadow: 0px 2px 5px 0px rgba(140,140,140,0.7);
}

#topBar * {
  color: white;
}

.logo {
  font-size: 1.4em;
}

#topBar div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 1200px;
}

.body {
  width: 100%;
  padding: 15px;
  max-width: 1200px;
  margin: auto;
  margin-top: 20px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(224,224,224,1);
  box-shadow: 0px 0px 5px 0px rgba(224,224,224,1);
  border-radius: 5px;
}

.tableData * {
  text-align: center;
}

input {
  width:100%;
  padding: .4em;
  cursor: pointer;
}

.dataTables_filter label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
}

.errorClass {
  border: 1px solid red;
}

.leaflet-control-attribution {
  display: none;
}

.ui-dialog { z-index: 1000 !important ;}

.pointer {
  cursor: pointer;
}

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

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/icons/MaterialIcons-Regular.eot'); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url('../fonts/icons/MaterialIcons-Regular.woff2') format('woff2'),
    url('../fonts/icons/MaterialIcons-Regular.woff') format('woff'),
    url('../fonts/icons/MaterialIcons-Regular.ttf') format('truetype');
}

.nombreTop {
  margin-right: 20px;
}

/* ScrollBar */
::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: rgba(239, 83, 80, 0.95);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 83, 80, 0.95);
}

/* ----------------------------------------------------------------------------- CHECKBOXES */
/* The container */
.container-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.container-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #adadad;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
  background-color: #adadad;
}

/* When the checkbox is checked, add a red background */
.container-checkbox input:checked ~ .checkmark {
  background-color: rgba(239, 83, 80, 1);
}

/* Create the checkmark/indicator (hidden when not checked) */
.container-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* The container */
.container-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.container-radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #adadad;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .checkmark {
  background-color: #adadad;
}

/* When the radio button is checked, add a red background */
.container-radio input:checked ~ .checkmark {
  background-color: rgba(239, 83, 80, 1);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.container-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/* ----------------------------------------------------------------------------- ZEBRA */
.zebra tr:nth-child(even) {
  background-color: #f2f2f2 !important;
}

.zebra tr td {
  border-bottom: 1px solid lightgrey;
}
