.clear-padding-horizontal {
	padding-left: 0;
	padding-right: 0;
}

.form-control-toggle-password {
    position: absolute;
    top: 0;
    right: 34px;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
}

.form-control-toggle-password a:hover {
	color: #777;
}

/* has-required START */

.has-required .help-block,
.has-required .control-label,
.has-required .radio,
.has-required .checkbox,
.has-required .radio-inline,
.has-required .checkbox-inline,
.has-required.radio label,
.has-required.checkbox label,
.has-required.radio-inline label,
.has-required.checkbox-inline label {
  color: #00c0ef;
}

.has-required .form-control {
  border-color: #00c0ef;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.has-required .input-group-addon {
  color: #00c0ef;
  background-color: #dff0d8;
  border-color: #00c0ef;
}

.has-required .form-control-feedback {
  color: #00c0ef;
}
/* has-required END */

.heartbeat-logo {
	animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.loading-text {
	color: orange;
	display: block !important;
	font-family: "Microsoft Sans Serif", sans-serif;
	font-size: 16px !important;
	margin: 30px;
	width: 100px;
}

.loading-text::after {
	animation: loadingText 3s infinite;
	content: "";
}

@keyframes loadingText {
	0% {
		content: "";
	}
	25% {
		content: ".";
	}
	50% {
		content: "..";
	}
	75% {
		content: "...";
	}
}

.progress-fill {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: linear-gradient(to right, orange, red);
	animation: fill 3s linear forwards;
}

@keyframes fill {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

.nav-tabs-dropdown {
  display: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.nav-tabs-dropdown:before {
  content: "\e114";
  font-family: 'Glyphicons Halflings';
  position: absolute;
  right: 30px;
}

/* sidebarPerfilButton START */

.sidebarPerfilButton {
  position: absolute;
  background: rgba(88, 88, 88, 0.1);
  height: 300px;
  width: 20px;
  right: -6px;
  top: 25vh;
  border-radius: 0 10px 10px 0;
  text-align: center;
  line-height: 300px;
  transition: all 1s;
  cursor: pointer;
}

.sidebarPerfilButton:hover {
  background: rgba(88, 88, 88, 0.3);
}

/* sidebarPerfilButton END */

.fa-alignment {
  vertical-align: -25%;
  line-height: .75em;
}

h4.text-bold.dicasTitle {
  color: #2aa65a;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

a#btnAnticipation {
  margin-bottom: 2rem;
}

#anticipationModal .carousel-indicators {
  bottom: -40px;
}

#anticipationModal .carousel-indicators li {
  border: 1px solid #f39c12;
}

#anticipationModal .carousel-indicators .active {
  background-color: #f39c12;
}

.loadingoverlay {
  justify-content: center !important;
}

.legendaCinza {
  color: #999;
}

.btn-toolbar .btn:not(.btn-info) {
  border: 1px solid #d3d3d3;
  color: #101010;
  background-color: #f7f7f7;
}

#__TOUR-TRIGGER:hover {
  color: #f39c12;
}

.scale-grade-week-inactive {
  background: lightgray;
}

.semRegistro {
  color: red;
  padding: 10px;
  background-color: lightgray;
}

.modal-select-professional {
  display: grid;
  grid-template: auto / 1fr 3fr;
}

body.lte-fixed {
    header.main-header {
        position: fixed;
        width: 100%;
    }
    div.content-wrapper {
        margin-top: 50px;
    }
}

.btn-group {
	display: flex;
}

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

.select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 0;
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentcolor;
    opacity: .25;
}

.products-daily {
	display: grid;
	grid-template: auto auto / 1fr 1fr;
	grid-gap: 8px;
	padding: 16px;
}
.products-daily>.item {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #eeeeee;
    border-radius: 5px;
    border: 1px solid #cbcbcb;
    padding: 2px 15px;
}

.contractExpired {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px); /* borrado */
  background: rgba(0, 0, 0, 0.45); /* transparência */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* fica acima de tudo */
}

/* Caixa central */
.contractExpired-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  max-width: 400px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.contractExpired-box h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}

.contractExpired-box p {
  font-size: 18px;
}

@media screen and (min-width: 769px) {
  #navId {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .nav-tabs-dropdown {
    display: block;
  }

  #navId {
    display: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    text-align: center;
  }

  .nav-tabs-horizontal {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  }

  .nav-tabs-horizontal>li {
    float: none;
  }

  .nav-tabs-horizontal>li+li {
    margin-left: 2px;
  }

  .nav-tabs-horizontal>li,
  .nav-tabs-horizontal>li>a {
    background: transparent;
    width: 100%;
  }

  .nav-tabs-horizontal>li>a {
    border-radius: 4px;
  }

  .nav-tabs-horizontal>li.active>a,
  .nav-tabs-horizontal>li.active>a:hover,
  .nav-tabs-horizontal>li.active>a:focus {
    color: #ffffff;
    background-color: #428bca;
  }
	.products-daily {
		grid-template: auto / 1fr;
	}

  .sidebarPerfilButton {
    display: none;
  }
}
