
.progress-bar {
	background-color:#efefef;
	width:200px;
	height:15px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:10px;
}

/* Spinner  */

.loader {
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 100%;
    width: 28px;
    height: 28px;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar */

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: 'Raleway';
}

/* Navbar */

.collapsed {
  height: 0px !important;
}

.nav {
  height: 50px;
  width: 100%;
  background-color: #efefef;
  position: relative;
  font-family: 'Sans';
	display: block !important;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: blue;
  padding: 10px 10px 10px 10px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 14px;
  margin:5px;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #202020;
}

.nav > .nav-links > a:hover {
  color: blue
}

.nav > #nav-check {
  display: none;
}

@media (max-width:600px) {
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #000;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 50%;
    background-color: #efefef;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}
