@import url(https://fonts.googleapis.com/css?family=Nunito);
.navbar-laravel {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

body {
  background: #444;
  color: #fff;
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}

#APP {
  min-height: calc(100vh - 3rem);
}

main {
  padding: 4rem;
  padding-bottom: 3rem;
}

#Footer {
  bottom: 0;
  width: 100%;
  height: 3rem;
  text-align: center;
  padding: 1rem;
  background: #2b2b2b;
  color: #fff;
}

.text-secondary {
  color: #cf9f00 !important;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 400;
}
h1.lg-heading, h2.lg-heading, h3.lg-heading {
  font-size: 4rem;
}
h1.sm-heading, h2.sm-heading, h3.sm-heading {
  margin-bottom: 2rem;
  padding: 0.2rem 1rem;
}

a {
  color: #fff;
  text-decoration: none;
}

.btn, .btn-light, .btn-dark {
  padding: 0.5rem 1rem;
  border: 0;
  margin-bottom: 0.3rem;
}
.btn:hover, .btn-light:hover, .btn-dark:hover {
  background: #cf9f00;
  color: #000;
}

.btn-dark {
  background: black;
  color: #fff;
}

.btn-light {
  background: #c4c4c4;
  color: #333;
}

.create-btn {
  padding: 1rem;
  float: right;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}

.dropdown-menu {
  background-color: #444;
}
.dropdown-menu a {
  color: #cf9f00;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #cf9f00;
  background-color: #303030;
}

.dropdown-item.active, .dropdown-item:active {
  color: #444;
  text-decoration: none;
  background-color: #cf9f00;
}

.alert {
  border-radius: 20px !important;
  max-width: 35% !important;
  margin-top: 10px;
  position: absolute !important;
  z-index: 500 !important;
  transition: all 0.5s ease-in-out 0s;
  left: 50%;
  transform: translateX(-50%);
}
.alert .typeStyle {
  font-weight: bold;
  font-size: 1rem;
}
.alert-info, .alert-danger, .alert-warning, .alert-success .alert-update {
  color: black;
}
.alert-default a, .alert-default .alert-link {
  color: black;
}
.alert .close {
  color: black;
  text-shadow: none;
  opacity: 0.9;
}
.alert .close:hover, .alert .close:focus {
  opacity: 0.3;
  outline: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.progress {
  padding: 6px;
  height: 1em;
  border-radius: 30px !important;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}

.progress-bar {
  height: auto;
  border-radius: 30px !important;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  transition: 0.4s linear;
  transition-property: width, background-color;
}

.progress-moved .progress-bar {
  background-color: #EF476F;
  -webkit-animation: progressAnimation 1s;
          animation: progressAnimation 1s;
}

@-webkit-keyframes progressAnimation {
  0% {
    width: 0%;
    background-color: #F9BCCA;
  }
  100% {
    width: 85%;
    background-color: #EF476F;
  }
}

@keyframes progressAnimation {
  0% {
    width: 0%;
    background-color: #F9BCCA;
  }
  100% {
    width: 85%;
    background-color: #EF476F;
  }
}
