  .fondo{
    background-color:#031d55;
  }
  /* p {font-size: 16px;} */

  .margin {margin-bottom: 45px;}

  .bg-1 { 
    background-color: #1abc9c; /* Green */
    color: #ffffff;
  }
  .bg-2 { 
    background-color: #474e5d; /* Dark Blue */
    color: #ffffff;
  }
  .bg-3 { 
    background-color: #ffffff; /* White */
    color: #555555;
  }
  .bg-4 { 
    background-color: #031d55; /* Black Gray */
    color: rgb(255, 249, 249);
    text-align: center;
  }

  .bg-10 { 
    background-color: #F5F1F1; /* Black Gray */
    color: black;
    font-size: 13px;
  }

  .bg-titulo{
    font-size:25px;
    margin-top: 0px;
  }

  .bg-subtitulo{
    font-size:20px;
  }
  .container-fluid {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .container-fluid.bg-10.text-left {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
    background-color: #031d55;
    font-size: 13px;
    letter-spacing: 2px;
  }

  div.navbar-header.margen{
    margin: 5px 5px;
  }

  .navbar-nav  li a:hover {
    color: rgb(117, 117, 117) !important;
  }

  @media (max-width: 768px){
    .navbar-nav  li a {
      color: white !important;
    }
  }

  .navbar-nav  li.usuario a:hover {
    color: rgb(117, 117, 117) !important;
  }

  .navbar-right .dropdown-menu {
    right: auto;
    left: auto;
  }

  /* p {
    margin: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  } */

  td.day{
    color:black;
  }

  th.dow{
    color:black;
  }

  th.datepicker-switch{
    color:black;
  }

  th.next, th.prev{
    color:red;
  }

  button.mercadopago-button {
    background-color: rgb(12, 154, 248);
    color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 2;
    padding: 6px;
    font-size: 17px;
    font-weight: 600;
  }
    button.mercadopago-button:hover {
      color: #ffffff;
      background-color: #0276e2;
  }

/* LOGIN */

* { box-sizing:border-box; }

.group { 
	position: relative; 
	margin-bottom: 45px; 
}

input.input-ing {
	font-size: 18px;
	padding: 10px 10px 10px 5px;
	-webkit-appearance: none;
	display: block;
	background: #ffffff;
	color: #636363;
	width: 100%;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #757575;
}

input:focus { outline: none; }

/* Label */

.labelLogin {
	color: #999; 
	font-size: 18px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 5px;
	top: 10px;
	transition: all 0.2s ease;
}

/* active */

input:focus ~ label, input.used ~ label {
	top: -20px;
  transform: scale(.75); left: -2px;
	/* font-size: 14px; */
	color: #036D9B;
}


/* Underline */

.bar {
	position: relative;
	display: block;
	width: 100%;
}

.bar:before, .bar:after {
	content: '';
	height: 2px; 
	width: 0;
	bottom: 1px; 
	position: absolute;
	background: #036D9B;; 
	transition: all 0.2s ease;
}

.bar:before { left: 50%; }

.bar:after { right: 50%; }


/* active */

input:focus ~ .bar:before, input:focus ~ .bar:after { width: 50%; }


/* Highlight */

.highlight {
	position: absolute;
	height: 60%; 
	width: 100px; 
	top: 25%; 
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}


/* active */

input:focus ~ .highlight {
	animation: inputHighlighter 0.3s ease;
}


/* Animations */

@keyframes inputHighlighter {
	from { background: #6e0404; }
	to 	{ width: 0; background: transparent; }
}


/* Button */

.buttonLogin {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  margin: .3em 0 1em 0;
  width: 100%;
  vertical-align: middle;
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  letter-spacing: 1px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #3160B6;
  cursor: pointer;
  transition: all 0.15s ease;
}
.buttonLogin:focus { outline: 0; }


/* Button modifiers */

.buttonBlue {
  background: #036D9B;
  text-shadow: 1px 1px 0 rgba(39, 110, 204, .5);
}

.buttonBlue:hover { background: #001e72; }


/* Ripples container */

.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}


/* Ripples circle */

.ripplesCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
  animation: ripples .4s ease-in;
}


/* Ripples animation */

@keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}