.pageModules-root {
    display: flex;
    flex-direction: column;
    height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* -------------------------------------------------------------------- */
/* TYPOGRAPHY                                                           */

h1, h2, h3, h4 {
    text-transform: uppercase;
}

/* -------------------------------------------------------------------- */
/* FORM - INPUTS                                                        */

input[type="text"], 
input[type="password"], 
input[type="search"], 
input[type="email"], 
input[type="number"], 
input[type="tel"], 
input[type="date"], 
input[type="time"] {
    font-size: 14px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

input[type="text"]:hover, 
input[type="password"]:hover, 
input[type="search"]:hover, 
input[type="email"]:hover, 
input[type="number"]:hover, 
input[type="tel"]:hover, 
input[type="date"]:hover, 
input[type="time"]:hover {
    border-color: #000;
    transition: all .4s;
}

input[type="text"]:focus, 
input[type="password"]:focus, 
input[type="search"]:focus, 
input[type="email"]:focus, 
input[type="number"]:focus, 
input[type="tel"]:focus, 
input[type="date"]:focus, 
input[type="time"]:focus {
    border: 1px solid #43b02a;
    box-shadow: none;
}

/* -------------------------------------------------------------------- */
/* FORM - SELECT                                                        */

select:focus {
    border: 1px solid #43b02a;
    box-shadow: 0 0 0 1px #43b02a;
}

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

.btn {
    transition: all .5s;
    border-radius: 6px;
}

.btn-default {
    border: 1px solid #ddddde;
    background: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .5s;
    font-size: 0.8em;
    font-weight: 600;
}

.btn-default:hover {
    color: #ffffff;
    background: #000000;
}

.btn-style1, .btn-style1:hover,
.btn-style2, .btn-style2:hover {
    font-size: 0.875em;
    font-weight: 600;
    padding: 14px 32px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* --------------------------------------------- */
/* BUTTONS - NEXT & PREVIOUS                     */

.btn[name="btn_next"] {
    border: none;
    color: #ffffff;
    background: #1db1e8;
    font-size: 0.875em;
    font-weight: 600;
}

.btn[name="btn_previous"] {
    border: 1px solid #ddddde;
    font-size: 0.875em;
    font-weight: 600;
    color: #333333;
}

.btn[name="btn_next"]:hover {
    color: #ffffff;
    background: #005c8e;
}

.btn[name="btn_previous"]:hover {
    color: #1cb1e8;
    background: #ffffff;
    border: 1px solid #1cb1e8;
}

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

.btn-default.btn-choose {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #ddddde !important;
}

.btn-choose:hover {
    color: #ffffff !important;
    background: #43b02a !important;
    border: 1px solid #43b02a !important;
}

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

header {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgb(0 0 0 / 6%);
    -webkit-box-shadow: -6px -4px 69px -34px rgb(0 0 0 / 50%);
    box-shadow: -6px -4px 69px -34px rgb(0 0 0 / 50%);
}

header .logo {
    max-width: 260px;
    flex: 1 1 auto;
    margin: 0;
}

header .navigation {
    max-width: 880px;
    flex: 1 1 auto;
}

header .logo .container-fluid,
header .nav .container-fluid {
    padding: 0;
}

header .nav ul li a {
    text-transform: uppercase;
    letter-spacing: .74px;
}

/* -------------------------------------------------------------------- */
/* MAIN                                                                 */

main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

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

footer {
    flex-shrink: 0;
}

footer .quicklinks a {
    font-size: 16px; 
    line-height: 24px;
    color: #4a4a4a;
    text-decoration: none;
}

footer .quicklinks a:hover {
    color: #a1a9ac;
    text-decoration: none;
}

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

.progressnav {
    margin-bottom: 40px;
}

.progressnav ol li.active .step {
    width: 14px;
    height: 14px;
    background: #43b02a;
    position: absolute;
    top: -3px;
    left: -3px;
}

.progressnav ol li.active .label {
    top: 12px;
    font-weight: 700;
    font-size: 14px;
}

.progressnav-progressbar {
    border-radius: 0px;
    background: #f5f5f6;
}

.progressnav-progress {
    height: 8px;
    background: #43b02a;
}

/* -------------------------------------------------------------------- */
/* SIGN UP                                                              */

#signup main section,
#receipt main section {
    flex-grow: 1;
}

#signup main h2 { 
    font-size: 2em; 
}

#signup main h3 {
    font-size: 1.4em;
}

#signup main h4 { 
    font-size: 1.2em; 
}

/* -------------------------------------------------------------------- */
/* REGISTRATION                                                         */

.addmore-box {
    border: none;
}

.cart {
    background: #f5f5f6;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    line-height: 20px;
}

.cart .eventinfo {
    padding: 20px;
    border-radius: 0;
    background: #43b02a;
    color: #ffffff;
    border: none;
}

.cart .eventinfo h3 {
    color: #ffffff !important;
    text-transform: none;
    font-weight: 700;
}

.cart-content {
    padding: 20px;
}

.invoice-sum-total {
    font-size: 1.3em;
}

.invoice .invoice-group {
    border-radius: 2px;
}

/* -------------------------------------------------------------------- */
/* REGISTRATION - GROUP                                                 */

.reg-category {
    border-radius: 0;
}

.reg-group {
    border-radius: 0;
    border: none;
}

.reg-header {
    background: none;
    padding: 0px 0px 20px 0;
    border-radius: 0;
}

.reg-header-title {
    font-size: 1.8em !important;
    line-height: 1.4em;
    font-weight: 600;
    text-transform: none;
}

.reg-header p {
    margin: 1em 0 0 0;
}

.reg-content {
    margin: 0 0 20px 0;
    box-shadow: 0 2px 8px 0px rgb(0 0 0 / 16%);
}

.reg-content + .reg-content,
.reg-header + .reg-content {
    border-radius: 0px;
    border-top: 0;
}

.reg-content:last-child {
    border-radius: 0;
}

.reg-content:only-child {
    border-radius: 0;
}

.reg-title {
    margin-bottom: 10px;
    font-size: 1.2em !important;
    line-height: 1.4em;
    text-transform: none;
}

.reg-title a {
    text-decoration: none;
    font-weight: bold;
    font-family: inherit;
}

.reg-facts {
    margin: 0px -10px;
    font-size: 13px;
    line-height: 18px;
}

.reg-facts ul li {
    margin: 2px 10px;
    font-size: 1.2em;
    line-height: 1.4em;
}

.reg-price {
    font-size: 1em;
    line-height: inherit;
}

/* -------------------------------------------------------------------- */
/* TABS                                                                 */

.tabs {
    border-bottom: 1px solid #e7e8ec;
}

.tabs ul li {
    margin: 0;
}

.tab {
    padding: 12px 20px;
    border: none;
    display: flex;
}

.tab.active {
    padding-bottom: 12px;
    border: none;
    border-bottom: 3px solid #43b02a;
}

.tab a {
    font-size: 16px;
    line-height: 24px;
}

/* -------------------------------------------------------------------- */
/* PROGRAM                                                              */

.agenda-vertical,
.agenda-horizontal,
.agenda-calendar {
    margin-bottom: 30px;
}

.activity {
    min-height: 62px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.activity .thumb {
    background: none !important;
}

.agenda-vertical .activity .title,
.agenda-horizontal .activity .title,
.agenda-calendar .activity .title {
    font-size: 16px;
    line-height: 24px;
}

/* -------------------------------------------------------------------- */
/* USERNAV                                                              */

.user-nav {
    background: #f5f5f6;
    border: none;
    padding: 15px 0;
    font-size: 0.9em;
}

.user-nav-options a {
    color: #3b3f43;
}

.user-nav-options a:hover {
    color: #43b02a;
}

.user-nav-thumb,
.user-nav-options a .icon16 {
    opacity: 1;
}

/* -------------------------------------------------------------------- */
/* DIALOG                                                               */

.dialog {
    border-radius: 0;
}

.dialog h1 {
    font-size: 2em;
    margin: 0 0 10px 0;
}

.dialog h2 {
    font-size: 1.6em;
    margin: 0 0 10px 0;
}

.dialog h3 {
    font-size: 1.2em;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-transform: none;
}

.dialog h4 {
    font-size: 1em;
    margin: 0 0 10px 0;
}

.dialog p {
    margin: 0 0 1.25em 0;
}

@media only screen and (max-width: 768px) {
  /* -------------------------------------------------------------------- */
  /* HEADER                                                               */
  
  header .logo {
      top: 15px;
  }
  
  header .logo img {
      max-height: 30px;
  }
  
  /* -------------------------------------------------------------------- */
  /* NAV                                                                  */
  
  header .nav .container, header .nav .container-fluid {
      background-image: url(https://themes.cmcdn.dk/A6E15453-C57D-EC11-84B2-00155D0B0901/kmd-logo@3x.png);
      background-repeat: no-repeat;
      background-size: 100px;
      background-position: 20px 20px;
      padding: 0;
  }
  
  .icon-nav-stripe {
      background: #43b02a;
  }
  
  .icon-close-stripe {
      background: #43b02a;
  }
}