.altura-home {
  min-height: 90vh;
}

.navbar-vertical .navbar-nav>.nav-item .nav-link.active .icon {
  background-image: linear-gradient(310deg, #cb0c0c 0%, #cb0c0c4f 100%);
}

.navbar-vertical .navbar-nav>.nav-item .nav-link::hover a {
  background-color: #cb0c0c;
}

/* siderbar */
.sidenav .nav-link:not(.active):hover {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 8px 26px -4px rgba(0,0,0,.1),
              0 8px 9px -5px rgba(0,0,0,.06);
  transform: translateY(-1px);
  transition: all .2s ease-in-out;
}
/* switch */
.toggle_bar {
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  width: 100px;
  display: block;
  height: 30px;
  position: relative;
  overflow: hidden;
  margin: 1em auto 1em 0;
  border-radius: 4px;
  cursor: pointer;
}

.toggle_bar .toggle_square {
  border-radius: 4px;
  transition: left 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background 0.2s ease;
  background: #da4453;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  border: 1px solid transparent;
  box-shadow: 0 4px 16px 8px rgba(0, 0, 0, 0.15);
}

.toggle_bar .toggle_square:before {
  content: "×";
  display: block;
  color: white;
  will-change: content;
  transition: content 0.2s ease;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
}

.contract_toggle input[type=checkbox] {
  display: none;
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contract_toggle input[type=checkbox]:checked~.toggle_bar .toggle_square {
  background: #37bc9b;
  left: 70px;
}

.contract_toggle input[type=checkbox]:checked~.toggle_bar .toggle_square:before {
  content: "✓";
}

.center-everything-cause-we-can {
  align-self: center;
  display: block;
}

.made-by-me {
  position: fixed;
  text-decoration: none;
  box-sizing: border-box;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 100%;
  border: 2px solid white;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
  font-size: 0px;
  background: url("https://assets.codepen.io/50099/internal/avatars/users/default.png?format=auto&width=80&height=80") no-repeat center;
  background-size: cover;
}
/* SELECT */
.select2-container .select2-selection--single {
  height: 40px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px !important;
}

/* bototnes */
.btn-outline-primary{
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-primary:hover {
  color: #fff !important;
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  cursor: pointer;
}