* {
  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;
}

#topBar {
  width: 100%;
  height: 55px;
  /*background-color: rgba(137, 154, 80, 0.9);
  background-color: rgba(137, 154, 80, 0.9);*/
  background-color: rgba(255, 255, 255, 0.9);
  -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: black;
}

.logo img {
  height: 40px;
}

#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;
}

#topBar div div {
  display: flex;
  justify-content: flex-end;
}

#topBar div div  a {
  margin-left: 20px;
}

.body {
  width: 100%;
  padding: 15px;
  max-width: 1000px;
  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;
  overflow: hidden;
}

.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;
}

/* Notifiaciones */
#showNews {
  position: fixed;
  bottom: 15px;
  cursor: pointer;
  left: 15px;
  background-color: rgba(137, 154, 80, 0.9);
  border-radius: 10px;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#showNews:hover {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
}

#showNews i {
  font-size: 2em;
  color: white;
}

#numberOfNotis {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: rgba(137, 154, 80, 0.9);
  border: 2px solid white;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.notify {
  -webkit-animation: ring 1.5s ease;
  animation: ring 1.5s ease;
}

@-webkit-keyframes ring {
  0% {-webkit-transform: rotate(35deg);}
  12.5% {-webkit-transform: rotate(-30deg);}
  25% {-webkit-transform: rotate(25deg);}
  37.5% {-webkit-transform: rotate(-20deg);}
  50% {-webkit-transform: rotate(15deg);}
  62.5% {-webkit-transform: rotate(-10deg);}
  75% {-webkit-transform: rotate(5deg);}
  100% {-webkit-transform: rotate(0deg);}
}

@keyframes ring {
  0% {-webkit-transform: rotate(35deg);transform: rotate(35deg);}
  12.5% {-webkit-transform: rotate(-30deg);transform: rotate(-30deg);}
  25% {-webkit-transform: rotate(25deg);transform: rotate(25deg);}
  37.5% {-webkit-transform: rotate(-20deg);transform: rotate(-20deg);}
  50% {-webkit-transform: rotate(15deg);transform: rotate(15deg);}
  62.5% {-webkit-transform: rotate(-10deg);transform: rotate(-10deg);}
  75% {-webkit-transform: rotate(5deg);transform: rotate(5deg);}
  100% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}
}

.buttonsRight {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.imageLanguageSize {
  width: 20px;
}
