.pageModules-root {
    max-width: 1024px;
    margin: 0 auto;
}

/* -------------------------------------------------------------------- */
/* BUTTONS                                                              */

.btn-default {
    border-radius: 0;
}

/* -------------------------------------------------------------------- */
/* HEADER                                                               */

/* -------------------------------------------- */
/* NAV                                          */

header nav .container, 
header nav .container-fluid {
    max-width: 100%;
    padding: 0!important;
}

header .nav ul li + li {
    margin: 0;   
}

header .nav a {
    padding: 10px 20px;
}

header .nav a.active {
    background: #b71234;
    color: #ffffff;
}

header .nav a.active:hover {
    background: #b71234;
}

header .nav a:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* -------------------------------------------------------------------- */
/* FOOTER                                                               */

footer {
    border-top: 5px solid #e5e5e5;
}

/* -------------------------------------------------------------------- */
/* PROGRESS NAV							        */

.progressnav {
	position: relative;
	text-align: center;
	margin-bottom: 20px;
}

.progressnav ol {
	width: 100%;
	height: 8px;
	border-radius: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: stretch;
	vertical-align: middle;
	font-size: 0;
	line-height: 0;
}

.progressnav ol li {
	height: 8px;
	box-sizing: border-box;
	position: relative;
	flex: 1 0 auto;
}

.progressnav ol li:first-child {
	border: 0px;
	border-radius: 2px 0 0 2px;
}

.progressnav ol li:last-child {
	border-radius: 0 2px 2px 0;
}

.progressnav ol li:hover .label {
	top: 15px;
}

.progressnav a {
	height: 8px;
	display: block;
	cursor: default;
}

.progressnav .step {
	width: 1px;
	height: 8px;
        background: rgba(0, 0, 0, 0.2);
	position: absolute;
	left: 0px;
	top: 0px;
	text-indent: -9999px;
	transition: all 0.2s ease-in-out;
}

.progressnav ol li:first-child .step {
	background: none;
}

.progressnav .label {
	position: absolute;
	top: 15px;
	left: 0px;
	color: rgba(0, 0, 0, 0.3);
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	transition: color 0.2s ease-in-out;
}

.progressnav ol li:hover .label {
	opacity: 1.0;
}

.progressnav-progressbar {
	border: 10px;
	border-radius: 10px;	
}

.progressnav-progress {
	height: 8px;
	background: #a80a2e;
	transition: width 0.2s ease-in-out;
}

/* -------------------------------------------------------------------- */
/* PROGRESS NAV - COMPLETED					        */

.progressnav ol li.completed:hover {
	background: rgba(0, 0, 0, 0.05);
	cursor: pointer;
}

.progressnav ol li.completed .label {
	cursor: pointer;
	color: rgba(0, 0, 0, 0.6);
}

/* -------------------------------------------------------------------- */
/* PROGRESS NAV - ACTIVE					        */

.progressnav ol li.active a {
	cursor: default;
}

.progressnav ol li.active .step {
	width: 14px;
	height: 14px;
	background: #b71234;
	position: absolute;
	left: -7px;
	top: -7px;
	border-radius: 50%;
	border: 4px solid #fff;
}

.progressnav ol li.active .label {
	color: #b71234;
}

@media only screen and (max-width: 768px) {
  /* -------------------------------------------------------------------- */
  /* HEADER                                                               */

  /* -------------------------------------------------------------------- */
  /* NAV                                                                  */
  
  header .logo + .nav {
      margin-top: 0;
      padding: 0;
  }

  header .nav .btn-nav {
      color: #b71034!important;
  }
  
  header .btn-nav .icon-nav {
      background: none;
  }
  
  header .btn-nav .icon-nav-stripe {
      background: rgba(0, 0, 0, 0.3)!important; 
  }
  
  header .nav .container,
  header .nav .container-fluid {
      background: #e5e5e5;
  }
  
  header .nav a {
      padding: 20px 30px;
      font-size: 16px;
  }
  
  header .nav a:hover, 
  header .nav a:focus {
    background: none;
  }
  
  header .nav a:before {
      left: 10px;
  }

@media only screen and (max-width: 480px) {
  /* -------------------------------------------------------------------- */
  /* HEADER                                                               */
  
  /* -------------------------------------------- */
  /* LOGO                                         */
  
  header .logo {
    top: 15px;
  }
  
  header .logo img {
    height: auto;
    max-height: 30px!important;
  }
}