/*********************
  Waves
**********************/
/*!
 * Waves v0.6.0
 * http://fian.my.id/Waves
 *
 * Copyright 2014 Alfiana E. Sibuea and other contributors
 * Released under the MIT license
 * https://github.com/fians/Waves/blob/master/LICENSE
 */
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  will-change: opacity, transform;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  -ms-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
  background-color: rgba(255, 255, 255, 0.45);
}

.waves-effect.waves-red .waves-ripple {
  background-color: rgba(244, 67, 54, 0.7);
}

.waves-effect.waves-yellow .waves-ripple {
  background-color: rgba(255, 235, 59, 0.7);
}

.waves-effect.waves-orange .waves-ripple {
  background-color: rgba(255, 152, 0, 0.7);
}

.waves-effect.waves-purple .waves-ripple {
  background-color: rgba(156, 39, 176, 0.7);
}

.waves-effect.waves-green .waves-ripple {
  background-color: rgba(76, 175, 80, 0.7);
}

.waves-effect.waves-teal .waves-ripple {
  background-color: rgba(0, 150, 136, 0.7);
}

.waves-notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

.waves-circle {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom;
}

.waves-input-wrapper .waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  -webkit-mask-image: none;
}

.waves-block {
  display: block;
}

/* Firefox Bug: link not triggered */
a.waves-effect .waves-ripple {
  z-index: -1;
}

/*********************
  Buttons
**********************/
.btn-flat {
  background-color: transparent;
  position: relative;
  padding: 8px 30px;
  border: none;
  margin: 10px;
  text-transform: uppercase;
  text-decoration: none;
  outline: none !important;
}

.btn-flat:focus {
  background-color: transparent;
}

.btn {
  position: relative;
  padding: 6px 20px;
  /*font-size: 12px;*/
  line-height: 1.5;
  cursor: pointer;
  border-radius: 2px;
  /*text-transform: initial;*/
  text-decoration: none;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  -ms-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  color: #fff !important;
}

.btn.btn-block {
  margin: 10px 0;
}

.btn i,
.btn-flat i {
  font-size: 1.3rem;
  line-height: inherit;
}

.btn-floating {
  display: inline-block;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 37px;
  height: 37px;
  line-height: 37px;
  padding: 0;
  background-color: #aa66cc;
  border-radius: 50%;
  transition: .3s;
  cursor: pointer;
  vertical-align: middle;
  margin: 10px;
}
.btn-floating:before{}
.btn-floating:hover {
  transform: scale(1.2);
}
.btn-floating i {
  width: inherit;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 37px;
}

.btn-floating:before {
  border-radius: 0;
}

.btn-floating.btn-large {
  width: 55.5px;
  height: 55.5px;
}

.btn-floating.btn-large i {
  line-height: 55.5px;
}

.btn-floating.btn-small {
  height: 47px;
  width: 47px;
  line-height: 0;
}

.btn-floating.btn-small .fa, .btn-floating.btn-small .material-icons {
  font-size: 18px;
  margin-top: 5px;
}

button.btn-floating {
  border: none;
}

.btn .badge {
  margin-left: 7px;
}

.btn-default {
  color: #444 !important;
  /*background: #BDBDBD;*/
}

.btn-default:hover, .btn-default:focus {
  /*background-color: #BDBDBD !important;*/
  color: #444 !important;
}

.btn-primary {
  background: #3B77DB;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #2E5DAA !important;
  color: #fff;
}

.btn-success {
  background:  #1DA261;
}

.btn-success:hover, .btn-success:focus {
  background-color:  #147144 !important;
  color: #fff !important;
}

.btn-info {
  background: #4DB6AC;
}

.btn-info:hover, .btn-info.active, .btn-info:focus {
  background-color: #367F78 !important;
  color: #fff;
}

.btn-warning  {
  background: #D23F31;
}

.btn-warning:hover, .btn-warning:focus {
  background-color:#B4392D  !important;
  color: #fff;
}

/*.btn-danger {
  background: #932C22;
}*/

/*.btn-danger:hover, .btn-danger:focus {
  background-color: #db0000 !important;
  color: #fff;
}*/

.btn-link {
  background-color: transparent;
  color: #000;
}

.btn-link:hover {
  background-color: transparent;
}

.btn-link:focus {
  background-color: transparent;
}

.btn-xlg {
  padding: 18px 24px;
  font-size: 21px;
  line-height: 1.33333;
}

.btn-lg {
  padding: 14px 20px;
  font-size: 18px;
  line-height: 1.33333;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
}
.hr-dar-de-baja{
  height:3px;
  border: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #337ab7, rgba(0, 0, 0, 0));
}
.label {
  font-weight: 600;
}
.label-primary {
  background-color: #3B77DB;
  color: #ffffff;
}
.label-secondary {
  background-color: #6685a4;
  color: #ffffff;
}
.label-tertiary {
  background-color: #bcbcbc;
  color: #ffffff;
}
.progress {
  background-color: #f5f5f5;
}
.progress-bar-primary {
  background-color: #3B77DB;
}
.progress-bar-success {
  background-color: #1DA261;
}
.progress-bar-warning {
  background-color: #D23F31;
}
.progress-sm {
  height: 12px;
}
.progress-lg {
  height: 28px;
}
.br-theme-fontawesome-stars .br-widget {
  height: 28px;
  margin: 10px 0px 15px 0px; 
  white-space: nowrap;
}
.br-theme-fontawesome-stars .br-widget a {
  font: normal normal normal 20px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  margin-right: 2px;
}
.br-theme-fontawesome-stars .br-widget a:after {
  content: '\f005';
  color: #d2d2d2;
  font-size: 20px;
  padding-left: 4px;
}
.br-theme-fontawesome-stars .br-widget a.br-active:after {
  color: rgb(255, 194, 0);
}
.br-theme-fontawesome-stars .br-widget a.br-selected:after {
  color: rgb(255, 194, 0);
}
.br-theme-fontawesome-stars .br-widget .br-current-rating {
  display: none;
}
.br-theme-fontawesome-stars .br-readonly a {
  cursor: default;
}
@media only screen and (max-width: 768px) {
  .br-theme-fontawesome-stars .br-widget {
    margin: 10px 0px 15px 0px; 
  }
.br-theme-fontawesome-stars .br-widget a:after {
  font-size: 30px;
}
}
@media print {
  .br-theme-fontawesome-stars .br-widget a:after {
    content: '\f006';
    color: black;
  }
  .br-theme-fontawesome-stars .br-widget a.br-active:after,
  .br-theme-fontawesome-stars .br-widget a.br-selected:after {
    content: '\f005';
    color: black;
  }
}

#calificacion-content{
  position: absolute;
  right: 0%;
  width:auto;
  padding: 0.5%;
  background-color: #4AAEA4;
  color: white;
  text-align: center;

}
#calificacion-content i{
  -webkit-transition: transform 1s;  Safari 
  -webkit-transition-timing-function: linear;  Safari 
  transition: transform 1s;
  transition-timing-function: linear;
  -ms-transform: rotate(360deg); /* IE 9 */
  -webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
  transform: rotate(360deg);
}
#calificacion-content:hover i {
  -ms-transform: rotate(0deg); /* IE 9 */
  -webkit-transform: rotate(0deg); /* Chrome, Safari, Opera */
  transform: rotate(0deg);
}
.recargar-recordatorios i, #configuracionPeriodoAlertas i{
  -webkit-transition: transform 1s;  
  -webkit-transition-timing-function: linear; 
  transition: transform 1s;
  transition-timing-function: linear;
}
.recargar-recordatorios:hover i, #configuracionPeriodoAlertas:hover i{
  -ms-transform: rotate(360deg); /* IE 9 */
  -webkit-transform: rotate(360deg); /* Chrome, Safari, Opera */
  transform: rotate(360deg);
}

/*Estilos Time line de historial de cambios*/

.history-timeline {
  list-style: none;
}
.history-timeline ul{
  list-style-type: initial;
  margin: 0;
}
.history-timeline .list-group-item{
  display: list-item;
  border: none;
  color: #999999;
  padding: 0;
  padding-bottom: 8px;
}
.history-timeline .list-group-item:first-child {
  padding-top: 8px;
}
.history-timeline .list-group-item b{
  color: #555;
}
.history-timeline .list-group-item::first-letter {
  text-transform: capitalize;
}
/*.history-timeline:before {
  content: '';
  position: absolute;
  top: 0px;
  bottom:16px;
  width: 5px;
  background: #ddd;
  left: 45px;
  border: 1px solid #eee;
  margin: 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}*/
.history-timeline section {
  position: relative;
  border:none;
}
.history-timeline section:before,
.history-timeline section:after {
  display: table;
  content: " ";
  clear: both;
}
.history-timeline hr{
 color:red;
}
.history-timeline .his-time {
  float: right;
  cursor: pointer;
}
.history-timeline .history-timeline-header, .history-timeline .his-time  {
  margin: 0;
  color: #555;
  padding: 5px;
}
.history-timeline .history-timeline-header a {
  font-weight: 600;
}
/*.history-timeline .his-time-label {*/
.his-time-label {
  float: left;
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  background-color:#3B77DB;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: white;
  margin-right: 12px;
}
./*history-timeline  i {
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  color: #666;
  background: #eee;
  text-align: center;
}*/
.history-timeline div[data-toggle="collapse"]{
  padding: 12px;
  border-bottom: 1px solid #dddddd;
  cursor: pointer;
}

.bg-red,
.bg-yellow,
.bg-aqua,
.bg-blue,
.bg-light-blue,
.bg-green,
.bg-navy,
.bg-teal,
.bg-olive,
.bg-lime,
.bg-orange,
.bg-fuchsia,
.bg-purple,
.bg-maroon,
.bg-black {
  color: #f9f9f9 !important;
}
.bg-gray {
  background-color: #eaeaec !important;
}
.bg-black {
  background-color: #222222 !important;
}
.bg-red {
  background-color: #f56954 !important;
}
.bg-yellow {
  background-color: #f39c12 !important;
}
.bg-aqua {
  background-color: #00c0ef !important;
}
.bg-blue {
  background-color: #37AFFF !important;
}
.bg-light-blue {
  background-color: #3c8dbc !important;
}
.bg-green {
  background-color: #00a65a !important;
}
.bg-navy {
  background-color: #001f3f !important;
}
.bg-teal {
  background-color: #39cccc !important;
}
.bg-olive {
  background-color: #3d9970 !important;
}
.bg-lime {
  background-color: #01ff70 !important;
}
.bg-orange {
  background-color: #ff851b !important;
}
.bg-fuchsia {
  background-color: #f012be !important;
}
.bg-purple {
  background-color: #932ab6 !important;
}
.bg-maroon {
  background-color: #85144b !important;
}
.text-red {
  color: #f56954 !important;
}
.text-yellow {
  color: #f39c12 !important;
}
.text-aqua {
  color: #00c0ef !important;
}
.text-blue {
  color: #0073b7 !important;
}
.text-light-blue {
  color: #3c8dbc !important;
}
.text-green {
  color: #00a65a !important;
}
.text-navy {
  color: #001f3f !important;
}
.text-teal {
  color: #39cccc !important;
}
.text-olive {
  color: #3d9970 !important;
}
.text-lime {
  color: #01ff70 !important;
}
.text-orange {
  color: #ff851b !important;
}
.text-fuchsia {
  color: #f012be !important;
}
.text-purple {
  color: #932ab6 !important;
}
.text-maroon {
  color: #85144b !important;
}
/*Fin*/