@charset "UTF-8";
/***********************************************
    GOODYCARD.CO.NZ
    
    Palette:
    - Red/orange: #ef5a41 (buttons etc.)
    - Very light grey: #edf5fa (background of alternating questions on support page)
    - Light grey: #ced5d9 (toggle buttons for  questions on support page)
    - Light blue: #9fc8ca
    - Mid grey: #434a54 (footer)
    - Dark grey: #25282e (form-fields in footer, social media icons)
    Text:
    - Light(ish) text: #787878
    - Darker text:  #25282e (usually used for headings)

***********************************************/
/***********************************************
    CSS Reset
***********************************************/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #eeeeee;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

@media (max-width: 414px) {
  #goody .button,
  #goody #footer #contact-us__form input.button--primary {
    font-size: 15px;
    padding: 10px 22px;
  }
}

/* Form Feedback */
#goody #contact-error,
#goody #demo-error {
  background: url("/img/icon_failure.png") 8px 3px no-repeat;
  min-height: 46px;
  padding-left: 40px;
}

#goody #contact-error .error,
#goody #demo-error .error {
  color: #ff7259;
  line-height: 1.3em;
}

#goody #demo-error {
  width: 300px;
  margin: auto;
}

#goody #demo-success {
  color: #ffffff;
  text-align: center;
}

#goody #demo-success h4 {
  line-height: 1.2em;
}

#goody #contact-success-form {
  background: url("/img/check_success.png") 8px center no-repeat;
  background-size: contain;
  padding-left: 40px;
}

#goody .spinner {
  margin: 30px;
  height: 50px;
  width: 50px;
  animation: rotate 0.8s infinite linear;
  border: 4px solid #ced4d9;
  border-right-color: transparent;
  border-radius: 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#sugar .field-validation-error {
  color: red;
}

/** Are these still used? **/
@media (max-width: 767px) {
  #sugar .navbar-toggle {
    position: relative;
    top: 15px;
  }
  #sugar li .btn-sugar {
    background-color: transparent;
  }
  #sugar li .btn-sugar:hover {
    background-color: #37bc9b;
  }
}

@media (min-width: 767px) {
  .navbar-inverse .navbar-nav > li > a {
    position: relative;
    top: 15px;
  }
  #sugar ul.navbar-nav {
    float: right;
  }
}

/*** FOOTER ***/
#footer {
  width: 100%;
  color: #ced4d9;
}

.fixed-footer #footer {
  margin-top: -75px;
}

#footer__primary-section {
  background-color: #333840;
  padding-top: 25px;
  width: 100%;
}

#footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

#site-map ul {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0;
}

#site-map ul li {
  border-bottom: 1px solid #25282e;
  border-top: 1px solid #3d424a;
  padding: 6px 0;
}

#site-map ul li:first-child {
  border-top: none;
  padding-top: 0;
}

#site-map ul li:last-child {
  border-bottom: none;
}

#site-map ul li a {
  color: #ffffff;
  transition: color 0.2s ease;
}

/* Make this transition a global style */
#site-map ul li a:hover,
#site-map ul li a:active {
  color: #dcdde0;
  transition: color 0.2s ease;
}

#footer #social-media {
  margin-bottom: 40px;
}

#footer #social-media ul {
  padding-left: 0;
}

#footer #social-media li {
  display: block;
  float: left;
  margin-left: 14px;
}

#footer #social-media li:first-child {
  margin-left: 0;
}

#footer #social-media li a {
  background-size: 100% 200%;
  display: block;
  height: 50px;
  width: 50px;
}

#footer #social-media li.facebook a {
  background-image: url("/img/icons/icon-sprite_facebook.svg");
  background-repeat: no-repeat;
  background-position: center 0;
}

#footer #social-media li.facebook:hover a {
  background-position: center -52px;
}

#footer #social-media li.instagram a {
  background-image: url("/img/icons/icon-sprite_instagram.svg");
  background-repeat: no-repeat;
  background-position: center 0;
}

#footer #social-media li.instagram:hover a {
  background-position: center -52px;
}

#footer #social-media li.linkedin a {
  background-image: url("/img/icons/icon-sprite_linked-in.svg");
  background-repeat: no-repeat;
  background-position: center 0;
}

#footer #social-media li.linkedin:hover a {
  background-position: center -52px;
}

#footer #social-media li.twitter a {
  background-image: url("/img/icons/icon-sprite_twitter.svg");
  background-repeat: no-repeat;
  background-position: center 0;
}

#footer #social-media li.twitter:hover a {
  background-position: center -52px;
}

#footer #contact-us__form {
  margin-bottom: 40px;
}

#footer #contact-us__form p {
  color: #ffffff;
  line-height: 1.3em;
  margin-bottom: 14px;
}

#footer #contact-us__form input,
#footer #contact-us__form textarea {
  background: #25282e;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  margin-bottom: 12px;
  max-width: 350px;
  min-width: 0;
  padding: 10px;
  width: 100%;
}

#footer #contact-us__form input {
  margin-top: 0;
}

#footer #contact-us__form input.button--primary {
  border-radius: 30px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 400;
  padding: 12px 26px;
  text-align: center;
  background-color: #ee5a40;
  border-radius: 20px;
  transition: all 0.3s ease;
  width: auto;
}

#footer #contact-us__form input.button--primary:hover {
  background-color: #d64935;
  transition: all 0.3s ease;
}

.fixed-footer #footer #footer__primary-section {
  display: none;
}

#goody section#footer__secondary-section {
  background-color: #25282e;
  padding: 20px 0;
  width: 100%;
}

#footer__secondary-section p {
  font-weight: 600;
  margin-bottom: 10px;
}

#footer__secondary-section ul {
  list-style: none;
  padding-left: 0;
}

#footer__secondary-section ul li {
  border-left: 1px solid #939496;
  color: #939496;
  float: left;
  padding-left: 10px;
  margin-left: 10px;
}

#footer__secondary-section ul li:first-child {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

#footer__secondary-section ul li a {
  color: #939496;
}

html.fixed-footer {
  height: 100%;
  min-height: 100%;
}

html.fixed-footer #goody #body-content {
  padding-bottom: 75px;
}

html.fixed-footer #goody #footer #footer__secondary-section {
  height: 75px;
}

@media (max-width: 414px) {
  html.fixed-footer #goody #body-content {
    padding-bottom: 0;
  }
  html.fixed-footer #goody footer {
    display: none;
  }
}

/***********************************************
    REUSABLE SECTIONS
***********************************************/
/* Business Form Section */
#goody section.business-form {
  background-color: #edf5fa;
  padding-bottom: 0;
}

#goody section.business-form.night {
  background-color: #434a54;
}

#goody section.business-form .container {
  background-image: url("/img/bkgd_business-form.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 290px;
}

#goody #demo-page section.business-form .container {
  background-image: url("/img/bkgd_book-demo-form.png");
  background-position: 10% bottom;
  background-size: auto;
  min-height: 400px;
  padding-bottom: 80px;
}

#goody .business-form__title {
  color: #25282e;
  margin-bottom: 50px;
  text-align: center;
}

#goody section.business-form.night .business-form__title,
#goody section.business-form.night p {
  color: #ffffff;
}

#goody section.business-form.night .confirmation {
  margin: auto;
  width: 600px;
}

#goody section.business-form.night .confirmation h3 {
  color: #ffffff;
  background-image: url("/img/check_success.png");
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #ffffff;
  padding-left: 70px;
}

#goody section.business-form form {
  margin-top: 50px;
}

#goody .business-form__field {
  margin-bottom: 20px;
}

#goody .business-form__field input {
  font-size: 2rem;
  min-width: 0;
  width: 100%;
}

#goody .business-form__field input::-webkit-input-placeholder {
  color: #bebebe;
}

#goody .business-form__field input:-moz-placeholder {
  color: #bebebe;
}

#goody .business-form__submit {
  padding: 10px 15px;
}

#goody .business-form__submit .button {
  display: block;
}

#goody .city {
  min-height: 330px;
  position: relative;
}

#goody .city > div {
  bottom: 0;
  position: absolute;
}

#goody .city__petrol-station {
  left: 0;
}

#goody .city__store {
  left: 245px;
}

#goody .city__restaurant {
  right: 265px;
}

#goody .city__cafe {
  right: 0;
}

#goody .city > div .icon--goody {
  position: absolute;
  height: 60px;
  left: 50%;
  margin-left: -24px;
  top: -75px;
  width: 48px;
}

#goody .city > div .icon--goody.bounce {
  -webkit-animation: bounce 1s infinite;
}

@media (max-width: 414px) {
  #goody #demo-page .business-form__submit {
    padding-left: 0;
  }
  #goody #demo-page .business-form__submit .button {
    font-size: 15px;
    padding: 10px 22px;
  }
}

/***********************************************
    HOME PAGE
***********************************************/
/* Intro */
#goody .intro {
  background: #edf5fa;
}

#goody #demo-page .intro {
  background: #ffffff;
}

#goody .intro h2 {
  margin-bottom: 50px;
  margin-top: 0;
  text-align: center;
}

#goody .intro .column {
  text-align: center;
}

#goody .intro img {
  background: #ffffff;
  border-radius: 50%;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 4px;
  width: 80%;
}

/* Locations Section */
#goody section.locations h3 {
  margin: 30px 0;
}

#goody section.locations #check-in-counter {
  color: #ee5a40;
}

#goody section.locations .button {
  display: block;
  float: left;
  margin-top: 50px;
}

/***********************************************
    REQUEST A DEMO FORM
***********************************************/
#demo-row form {
  padding-bottom: 30px;
}

#demo-row form span.field-validation-error {
  color: #edeeed;
}

#cant-wait {
  color: white;
  padding: 30px;
  padding-top: 20px;
  text-align: center;
}

@media (max-width: 992px) {
  #demo-row {
    text-align: center;
  }
  #demo-row form {
    margin: auto;
  }
  #demo-row form input {
    margin: auto;
  }
  #demo-row form div {
    margin-left: auto;
    margin-right: auto;
  }
}

/***********************************************
    ABOUT US PAGE 
***********************************************/
/* CHECK: Delete? Not using this anymore */
#goody section#goody-journey {
  background-color: #edf5fa;
}

#goody section#goody-journey #timeline {
  background: url("/img/bkgd_timeline.png") center top repeat-y;
  margin-top: 80px;
  padding-bottom: 100px;
}

#goody section#goody-journey .timeline-item {
  clear: both;
  margin-bottom: 30px;
  position: relative;
  width: 53%;
}

#goody section#goody-journey .timeline-item.left {
  float: left;
  left: -3%;
  padding-right: 5%;
}

#goody section#goody-journey .timeline-item.right {
  background-position: 5% center;
  float: right;
  padding-left: 5%;
  right: -3%;
}

#goody section#goody-journey .timeline-item__date {
  background-image: url("/img/marker_timeline.png");
  background-repeat: no-repeat;
  height: 24px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
}

#goody section#goody-journey .left .timeline-item__date {
  background-position: left center;
  left: 100%;
  margin-left: -11px;
  padding-left: 50px;
}

#goody section#goody-journey .right .timeline-item__date {
  background-position: right center;
  margin-right: -13px;
  right: 100%;
  padding-right: 50px;
}

#goody section#goody-journey .timeline-item__date span {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

#goody section#goody-journey .left .timeline-item__bubble {
  background: url(/img/triangle_white_right.png) right center no-repeat;
  padding-right: 16px;
}

#goody section#goody-journey .right .timeline-item__bubble {
  background: url(/img/triangle_white_left.png) left center no-repeat;
  padding-left: 16px;
}

#goody section#goody-journey .timeline-item__content {
  background-image: url("/img/covers/sugarcard-03.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 3px;
}

#goody section#goody-journey .left .timeline-item__content {
  background-position: -33.333%;
}

#goody section#goody-journey .right .timeline-item__content {
  background-position: 166.666%;
}

#goody section#goody-journey .timeline-item__content .col-md-8 {
  background: #ffffff;
  padding: 20px 15px;
}

#goody section#goody-journey .timeline-item__content h4 {
  margin-top: 0;
  padding-top: 0;
}

#goody section#goody-journey .timeline-item__content p {
  font-size: 1.4rem;
}

#goody section#goody-journey .timeline-item__content p:last-child {
  margin-bottom: 0;
}

#goody #goody-journey .goody-journey__part {
  padding-bottom: 60px;
}

#goody #goody-journey .goody-journey__part p {
  margin-bottom: 20px;
}

#goody #goody-journey .goody-journey__part p:first-child {
  padding-top: 40px;
}

#goody #goody-journey .goody-journey__image {
  max-width: 500px;
  opacity: 0.95;
  position: relative;
  width: 100%;
}

#goody #goody-journey .goody-journey__part-2 .goody-journey__image {
  max-width: 700px;
}

#goody #goody-journey .goody-journey__image.left {
  right: 20%;
}

#goody #goody-journey .goody-journey__image.right {
  left: 20%;
}

/***********************************************
    ERROR PAGES 
***********************************************/
@media (max-width: 767px) {
  #goody #error-content #error-content__title {
    font-size: 2.4em;
  }
}

@media (max-width: 480px) {
  #goody #error-content #error-content__title {
    font-size: 1.8em;
    margin-bottom: 16px;
  }
}

/***********************************************
    TERMS & CONDITIONS PAGE AND PRIVACY PAGE
***********************************************/
#goody .terms-conditions-page {
  padding: 50px 0;
}

#goody .terms-conditions-page section {
  padding: 20px;
}

#goody .terms-conditions-page ol,
#goody .terms-conditions-page ul {
  padding-left: 40px;
}

#goody .terms-conditions-page li {
  color: #868686;
  font-size: 1.7rem;
  font-weight: 400;
}

#goody .terms-conditions-page p {
  line-height: 1.4em;
  margin-bottom: 8px;
}

#goody .terms-conditions-page strong {
  font-weight: bold;
  color: #868686;
}

#goody #page--terms-and-conditions {
  padding-top: 0;
  position: relative;
  top: -90px;
}

#page--terms-and-conditions #terms-and-conditions__nav {
  padding-top: 40px;
  max-width: 170px;
  z-index: 100;
  width: 100%;
}

#page--terms-and-conditions #terms-and-conditions__nav ul {
  list-style-type: none;
  padding-left: 0;
}

#page--terms-and-conditions #terms-and-conditions__nav ul li {
  padding: 0 0 14px 0;
  width: 100%;
}

#page--terms-and-conditions #terms-and-conditions__nav ul li .button {
  display: block;
  font-size: 16px;
  padding: 10px 22px;
  text-align: left;
  width: 100%;
}

#page--terms-and-conditions .terms-and-conditions__content {
  padding-top: 120px;
  z-index: 10;
}

@media (max-width: 767px) {
  #goody #page--terms-and-conditions {
    padding-top: 0;
    position: relative;
    top: 0;
  }
  #goody #page--terms-and-conditions .col-sm-3,
  #goody #page--terms-and-conditions .col-sm-9 {
    padding-left: 0;
    padding-right: 0;
  }
  #page--terms-and-conditions #terms-and-conditions__nav {
    padding-top: 16px;
    position: static;
  }
  #page--terms-and-conditions .terms-and-conditions__content {
    padding-top: 20px;
  }
  #goody .terms-conditions-page h3 {
    text-align: left;
  }
  #goody .terms-conditions-page p {
    font-size: 15px;
  }
}

/***********************************************
   LOCATIONS PAGE 
***********************************************/
#map-wrap {
  min-height: 100%;
}

/***********************************************
    MERCHANT PAGE
***********************************************/
#goody #like-page strong {
  font-weight: bold;
  color: #25282e;
}

#goody #like-page strong.points {
  color: #ee5a40;
}

#goody #like-page .facebook-button {
  width: 100px;
  padding: 8px 14px 9px 4px;
  background-color: #4560af;
  border-radius: 5px;
  margin: 30px auto 0;
}

/***********************************************
    Old styles
***********************************************/
/* Check: if no longer used, delete */
.btn-sugar {
  border-radius: 4px;
  color: white;
  font-weight: 400;
}

.btn-sugar:hover {
  text-decoration: none;
  color: white;
}

.btn-goody {
  border-radius: 4px;
  color: white;
  font-weight: 400;
}

.btn-goody:hover {
  color: white;
  text-decoration: none;
}

.btn-green {
  background-color: #468c81;
}

.btn-red {
  background-color: #ee5a40;
  border-radius: 4px;
}

.btn-red:hover {
  background-color: #d64935;
}

.btn-transparent {
  background-color: transparent;
  border-color: #ee5a40;
  color: #ee5a40;
}

.btn-transparent:hover {
  background-color: #fed4ca;
  border-color: #fed4ca;
  color: #ee5a40;
}

#sugar-logo-header {
  text-align: center;
}

#sugar-logo-header img {
  position: relative;
  top: 65px;
  margin: auto;
}

/*** Home - Original  ***/
.locations-button {
  position: relative;
  font-size: 2em;
  margin: auto;
  top: 40px;
  width: 250px;
  display: block;
}

#scan-section {
  text-align: center;
}

#scan-section img {
  margin: auto;
  display: block;
}

#scan-section h2 {
  text-align: center;
  font-size: 3em;
  padding: 40px;
  padding-bottom: 50px;
}

#scan-section .row p {
  width: 80%;
  margin: auto;
  padding-bottom: 60px;
}

#mobile-download-section {
  text-align: center;
  background-color: #edeeed;
  padding: 20px;
}

#mobile-download-section h3 {
  margin: 0;
}

.itunes-link {
  display: block;
  margin-top: 10px;
  display: none;
}

.android-link {
  display: block;
  margin-top: 10px;
  display: none;
}

#points-collected-section {
  background-color: #d0f3ea;
  padding: 40px;
}

#points-collected-section p {
  font-size: 2.5em;
  text-align: center;
}

#logo-section {
  padding: 40px;
  text-align: center;
}

#nz-map {
  width: 80%;
  margin-top: 40px;
}

#logos {
  margin: auto;
  width: 100%;
  max-width: 600px;
}

#logo-button-container {
  margin: auto;
  text-align: center;
  padding-bottom: 100px;
}

#logo-button-container a {
  font-weight: bold;
}

#app-section {
  background-color: #edeeed;
}

#app-section-mobile-left {
  text-align: left;
  padding-top: 30px;
}

#app-section-mobile-left p {
  text-align: left;
  font-size: 1.5em;
  font-weight: 300;
  padding-top: 10px;
  padding-bottom: 20px;
}

#app-section-app-link-container {
  padding-top: 20px;
}

.sugar-list {
  font-size: 1.3em;
  font-weight: bold;
  list-style: none;
  padding-left: 0;
}

.sugar-list li {
  text-align: left;
  background: url("/img/sugar-icon.png") no-repeat 0 50%;
  padding-left: 60px;
  line-height: 50px;
  min-height: 50px;
}

.goody-list li {
  text-align: left;
  background-image: url("/img/icon_goody.png");
  background-repeat: no-repeat;
  background-position-x: 0;
  background-position-y: 50%;
  background-size: contain;
  list-style-type: none;
  padding-bottom: 14px;
  padding-top: 14px;
  padding-left: 60px;
  min-height: 35px;
}

#about-image {
  padding: 0 80px 40px 80px;
}

@media (max-width: 992px) {
  #about-image {
    padding: 0;
    padding-bottom: 40px;
  }
  #footer-links p {
    padding-top: 20px;
  }
  #app-section-mobile-left h2 {
    text-align: center;
  }
  #app-section-mobile-left p {
    text-align: center;
  }
  #app-section-app-link-container {
    text-align: center;
  }
  .sugar-list {
    margin: auto;
    width: 300px;
  }
  .vcenter {
    display: block;
    vertical-align: middle;
    float: none;
    padding: 20px;
  }
  .feature-section h2 {
    text-align: center;
    padding-bottom: 20px;
  }
  .feature-section p {
    text-align: center;
  }
  #raw-sugar-section h2 {
    text-align: center;
  }
  #raw-sugar-section h3 {
    text-align: center;
  }
}

@media (max-width: 767px) {
  #hero-content {
    position: relative;
    top: 0;
    padding-bottom: 40px;
  }
  .locations-button {
    top: 0;
  }
  #hero-content h1 {
    font-size: 2em;
    padding-bottom: 30px;
  }
  #scan-section h2 {
    text-align: center;
    font-size: 2em;
  }
  #points-collected-section {
    padding: 20px;
  }
  #points-collected-section p {
    font-size: 1.5em;
    text-align: center;
  }
}

/* Business Index */
#hero-content p {
  font-size: 1.5em;
  font-weight: 300;
}

#header-main-button:hover {
  background-color: #d64935;
}

#icon-section h2 {
  text-align: center;
  margin: auto;
}

#icon-section-container {
  padding-top: 20px;
  padding-bottom: 80px;
  margin: auto;
  text-align: center;
}

#icon-section-container img {
  margin-left: 15px;
  margin-right: 15px;
}

.feature-section .promo-image {
  text-align: center;
  margin: auto;
}

.feature-section .promo-image img {
  margin: auto;
}

.feature-section h2 {
  padding-bottom: 20px;
}

.feature-section h2 img {
  height: 60px;
  display: inline-block;
  vertical-align: middle;
}

.feature-section h2 span {
  display: inline-block;
  vertical-align: middle;
  width: 80%;
  padding-left: 10px;
}

#raw-sugar-section #customise-image {
  text-align: center;
  margin: auto;
}

#raw-sugar-section img {
  margin: auto;
}

#testimonial-section {
  background: url("/img/sugarcard-home-bg.jpg") no-repeat center center fixed;
  background-size: cover;
}

#testimonial-section h2 {
  text-align: center;
  margin: auto;
  color: white;
  line-height: 1.5em;
}

#testimonial-section p {
  padding-top: 40px;
  text-align: center;
  margin: auto;
  color: white;
  line-height: 1.5em;
}

#price-section {
  background-color: #434a54;
  padding-bottom: 40px;
}

#price-section .col-md-4 {
  padding-top: 40px;
}

#price-section p {
  text-align: center;
  max-width: 400px;
  margin: auto;
  font-weight: 300;
}

#price-section p.title {
  font-weight: 400;
  padding-bottom: 20px;
  max-width: 150px;
}

#price {
  margin-top: 39px;
  position: relative;
}

/* Offer claim? */
.offer-tile-header {
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 20px;
}

.offer-tile {
  text-align: center;
  border: 1px solid #e2edf5;
  background-color: #f6f6f6;
  padding-top: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.offer-tile img {
  width: 100%;
}

.offer-tile-bottom {
  padding: 25px;
}

.what-to-do {
  height: 100%;
  background-color: #dffaf4;
  padding-top: 20px;
  padding-bottom: 20px;
}

.what-to-do img {
  width: 150px;
  padding-top: 20px;
  padding-bottom: 20px;
}

img.offer-merchant-img {
  width: 25%;
  height: auto;
}

#claimed-box img {
  padding-top: 20px;
  padding-bottom: 20px;
}

#goody-logo img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  margin-bottom: -52px;
  height: 80px;
  z-index: 100;
}

#howto-section h1 {
  padding-bottom: 20px;
}

.offer-content {
  padding: 0 20px 20px 20px;
}

.align-left {
  text-align: left;
}

.nopad {
  padding: 0;
}

#points-detail p {
  font-size: 18px;
}

.fb-like {
  margin: auto;
  width: 90px;
}

/***********************************************
***************  REFERRAL PAGE ***************** 
***********************************************/
/* Set padding to keep content from hitting the edges */
#referral-section .body-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 100px;
}

#referral-section #content-container {
  padding-top: 85px;
}

#referral-section #information-panel {
  background-color: #eeeeee;
  padding: 18px;
  position: relative;
  top: 20px;
  font-size: 1.5em;
}

/* Set width on the form input elements since they're 100% wide by default */
#referral-section input,
#referral-section select,
#referral-section textarea {
  max-width: 280px;
}

#referral-section .field-validation-error {
  color: #ee5a40;
  text-align: left;
  display: block;
}

#referral-section #sugar-header {
  background-color: #ee5a40;
}

#referral-section #sugar-header h1 {
  color: white;
  margin: 10px;
  margin-left: 0;
  padding: 0;
}

#referral-section .form-control.form-control-sugar {
  max-width: 100%;
}

#referral-section .btn.btn-sugar {
  border: 0px;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
}

#referral-section .btn.btn-sugar-red {
  color: #fff;
  background-color: #eb0000;
}

#referral-section .btn.btn-sugar-red:hover {
  color: #fff;
  background-color: #ac0000;
}

#all-locations-btn {
  position: relative;
  font-size: 1.8em;
  margin: auto;
  top: 20px;
  width: 250px;
  display: block;
  padding: 10px 10px 10px 10px;
  text-align: center;
  text-decoration: none;
}

/*****************************************
    PRICING PAGE
*****************************************/
#page--pricing #banner {
  background: #70b0cc url("/img/banner_pricing.png") 30% 120px no-repeat;
  height: 740px;
  padding: 0;
  position: relative;
  width: 100%;
}

#goody #page--pricing #banner form {
  padding-top: 20px;
}

#goody #page--pricing #banner form .input-field,
#goody #page--pricing #banner form submit {
  float: left;
}

#goody #page--pricing #banner form input {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

#goody #page--pricing #banner form .icon-button--arrow-right {
  background-image: url("/img/arrow_right_white.png");
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  display: block;
  float: left;
  height: 44px;
  padding: 0;
  width: 44px;
}

#goody #page--pricing #banner__content {
  position: relative;
  top: 20%;
}

#goody #page--pricing #banner__content .banner__content-text {
  padding-left: 50%;
}

#goody #page--pricing #banner__content h1 {
  color: #ffffff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2em;
  text-align: left;
}

#goody #page--pricing #banner__content .banner__content-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

#goody .sliding-input-field {
  margin-right: 20px;
  min-height: 44px;
  min-width: 320px;
  overflow: hidden;
  position: relative;
}

#goody .sliding-input-field input {
  left: 330px;
  line-height: 18px;
  opacity: 0;
  position: absolute;
  width: 320px;
}

#goody .sliding-input-field input.in-focus {
  left: 0;
  opacity: 1;
}

#goody .sliding-input-field input.in-error {
  border-color: #ee5a40;
  left: 0;
  opacity: 1;
}

#goody .sliding-input-field input.complete {
  left: -330px;
  opacity: 0;
}

/*** Price Overview ***/
#goody #page--pricing #price-overview {
  margin: auto;
  margin-top: -150px;
  padding-top: 0;
  width: 85%;
  z-index: 100;
}

#page--pricing #price-overview .price-category {
  padding: 0 10px;
  text-align: center;
}

#page--pricing #price-overview .price-category__header {
  background-color: rgba(255, 255, 255, 0.5);
  height: 150px;
}

#page--pricing #price-overview .price-category__header h2 {
  background-color: #edf5fa;
  color: rgba(37, 40, 46, 0.4);
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  padding: 8px 0;
  text-align: center;
  text-transform: uppercase;
}

#page--pricing #price-overview .price-category__header h3 {
  color: rgba(1, 1, 1, 0.9);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.6em;
  opacity: 0.8;
  padding: 25px 0px 4px;
  text-align: center;
}

#page--pricing #price-overview .price-category__header h3 span {
  font-size: 70px;
  font-weight: 700;
}

#page--pricing #price-overview .price-category__header h3 span sup {
  font-size: 24px;
  top: -1.5em;
}

#page--pricing #price-overview .price-category__header h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}

#page--pricing #price-overview .price-category__header .button {
  padding: 12px 26px;
}

#page--pricing #price-overview .price-category__content {
  background: #EDF5FA none repeat scroll 0% 0%;
  min-height: 200px;
  padding: 20px 20px 30px;
}

#page--pricing #price-overview .price-category__content li {
  font-size: 18px;
  line-height: 1.3em;
  padding: 4px 0;
}

#page--pricing #price-breakdown__list-header {
  padding-left: 50%;
}

#page--pricing #price-breakdown__list-header ul {
  display: block;
  width: 100%;
}

#page--pricing #price-breakdown__list-header ul li {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  box-sizing: border-box;
  display: block;
  float: left;
  padding: 20px 0;
  position: relative;
  width: 33%;
}

#page--pricing #price-breakdown__list-header ul li.favourite {
  padding: 0;
  z-index: 300;
}

#page--pricing #price-breakdown__list-header ul li.favourite .favourite__content {
  background: rgba(255, 255, 255, 0.4);
  height: 112%;
  left: -5%;
  position: relative;
  top: -12%;
  width: 110%;
}

#page--pricing #price-breakdown__list-header ul li.favourite .favourite__content p {
  background: #25282e;
  color: #ffffff;
  font-size: 0.85em;
  font-weight: 700;
  margin-bottom: 6px;
  padding: 8px 0;
  text-align: center;
  text-transform: uppercase;
}

#page--pricing #price-breakdown__list-header ul li h3 {
  color: #25282e;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.8em;
  text-align: center;
}

#page--pricing #price-breakdown__list-header ul li h3 span {
  font-size: 2.5em;
  font-weight: 700;
}

#page--pricing #price-breakdown__list-header ul li h3 span sup {
  font-size: 24px;
}

#page--pricing #price-breakdown__list-header ul li .button--join-today {
  bottom: -20px;
  left: 50%;
  margin-left: -63px;
  position: absolute;
  z-index: 600;
}

#page--pricing .price-breakdown__section {
  border-top: 6px solid #ffffff;
  display: block;
  position: relative;
}

#page--pricing .price-breakdown__section#loyalty-programme {
  background: #edf5fa;
  border-top: none;
}

#page--pricing .price-breakdown__section#marketing-suite {
  background: #daf1fb;
}

#page--pricing .price-breakdown__section#premium {
  background: #b7d7e5;
}

#page--pricing .price-breakdown__section .price-breakdown__heading {
  font-size: 1.5em;
  font-weight: 400;
  left: -140px;
  position: absolute;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  text-align: right;
  top: 110px;
  width: 230px;
}

#page--pricing .price-breakdown__section#loyalty-programme .price-breakdown__heading {
  color: #dae1e6;
}

#page--pricing .price-breakdown__section#marketing-suite .price-breakdown__heading {
  color: #85d2f2;
}

#page--pricing .price-breakdown__section#premium .price-breakdown__heading {
  color: #70b0cc;
}

#page--pricing .price-breakdown__section#loyalty-programme ul {
  border-left: 8px solid #dae1e6;
}

#page--pricing .price-breakdown__section#marketing-suite ul {
  border-left: 8px solid #85d2f2;
}

#page--pricing .price-breakdown__section#premium ul {
  border-left: 8px solid #70b0cc;
}

#page--pricing .price-breakdown__section#additional ul {
  border-left: 8px solid #25282e;
}

#page--pricing .price-breakdown__section ul li {
  border-top: 3px solid #ffffff;
  clear: both;
}

#page--pricing .price-breakdown__section#additional ul li {
  border-top: 3px solid #e9f0f5;
  clear: both;
}

#page--pricing .price-breakdown__section ul li:first-child {
  border-top: 0 !important;
}

#page--pricing .price-breakdown__section ul li .column {
  box-sizing: border-box;
  display: block;
  float: left;
}

#page--pricing .price-breakdown__section ul li .details-column {
  padding: 16px 20px;
  width: 50%;
}

#page--pricing .price-breakdown__section ul li .details-column h5 {
  color: #25282e;
  font-size: 1.15em;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: none;
}

#page--pricing .price-breakdown__section ul li .check-column {
  color: #ee5a40;
  font-weight: 600;
  height: 100%;
  min-height: 96px;
  padding: 19px 20px;
  text-align: center;
  width: 16.5%;
}

#page--pricing .price-breakdown__section ul li .check-column.checked {
  background: url("/img/icon_pricing-check.png") center center no-repeat;
}

#page--pricing .price-breakdown__section#additional ul li .check-column {
  min-height: 0;
  height: auto;
}

#goody #faq--pricing {
  background: #edf5fa;
}

#goody #faq--pricing h4 {
  color: #25282e;
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 16px;
  padding-left: 16px;
}

#goody #faq--pricing article {
  padding: 16px;
}

#goody #faq--pricing .question {
  border-bottom: 1px solid #e4ebf0;
  padding: 16px;
  padding-left: 60px;
  position: relative;
  width: 100%;
}

#goody #faq--pricing .question label {
  font-size: 18px;
  line-height: 1.4em;
}

#goody #faq--pricing .question__heading {
  color: #25282e;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  margin: 10px 0;
  text-transform: none;
}

#goody #faq--pricing .question .question__toggle {
  background: #ced5d9;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  height: 30px;
  left: 8px;
  margin: 0;
  position: absolute;
  top: 26px;
  width: 30px;
  transition: background 0.3s ease;
}

#goody #faq--pricing .question input[type="checkbox"]:checked + label .question__toggle {
  background: #f16b55;
  transition: background 0.3s ease;
}

#goody #faq--pricing .question .question__toggle::after {
  background: url("/img/toggle-arrow.png") center center no-repeat;
  content: '';
  display: inline-block;
  height: 30px;
  width: 30px;
  margin: auto;
  transition: all 0.3s ease;
}

#goody #faq--pricing .question input[type="checkbox"]:checked + label .question__toggle::after {
  transform: rotate(90deg);
}

#goody #faq--pricing .question .question__content {
  display: none;
  transition: all 0.3s ease;
}

#goody #faq--pricing .question input[type="checkbox"]:checked + label + .question__content {
  display: block;
  transition: all 0.3s ease;
}

#goody #faq--pricing .question.closed .question__content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3em;
}

#goody #faq--pricing .question input[type="checkbox"] {
  display: none;
}

#goody #faq--pricing #goody-enterprise p {
  line-height: 1.4em;
}

#goody #faq--pricing .enterprise-logos {
  padding: 18px 0 14px;
}

#goody #faq--pricing .enterprise-logo {
  display: block;
  float: left;
  padding: 20px 0;
}

#goody #faq--pricing .enterprise-logo:nth-child(odd) {
  padding-right: 16px;
}

#goody #faq--pricing .enterprise-logo:nth-child(even) {
  padding-left: 16px;
}

#goody #faq--pricing .enterprise-logo img {
  display: block;
  max-width: 300px;
  width: 100%;
}

*, *:after, *:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Form Progress */
.form_progress {
  clear: both;
  width: 325px;
  text-align: center;
  padding-top: 20px;
}

.form_progress .circle,
.form_progress .bar {
  display: inline-block;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid #d5d5da;
}

.form_progress .bar {
  position: relative;
  width: 45px;
  height: 6px;
  top: -33px;
  margin-left: -5px;
  margin-right: -5px;
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.form_progress .circle .form_progress_label {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  margin-top: 3px;
  color: #b5b5ba;
  font-size: 17px;
}

.form_progress .circle .title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2em;
  line-height: 30px;
  margin-left: -5px;
}

/* Done / Active */
.form_progress .bar.done,
.form_progress .circle.done {
  background: #eee;
}

.form_progress .bar.active {
  background: linear-gradient(to right, #EEE 40%, #FFF 60%);
}

.form_progress .circle.done .form_progress_label {
  color: #FFF;
  background: #d64935;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
}

.form_progress .circle.active .form_progress_label {
  color: #FFF;
  background: #dddddd;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  #goody #page--pricing section {
    padding: 50px 0;
  }
  #goody #page--pricing #price-overview {
    margin-top: 0;
    padding-top: 50px;
  }
  #goody #page--pricing #price-overview .price-category {
    margin-bottom: 30px;
  }
  #goody #page--pricing #price-overview .price-category:last-child {
    margin-bottom: 0;
  }
  #goody #page--pricing #price-overview .price-category__header {
    border-left: 1px solid #edf5fa;
    border-right: 1px solid #edf5fa;
  }
  #page--pricing #price-overview .price-category__header {
    background: #EDF5FA none repeat scroll 0% 0%;
  }
  #goody #page--pricing #faq--pricing .question-category {
    margin-bottom: 70px;
  }
  #goody #page--pricing #faq--pricing .question-category:last-child {
    margin-bottom: 0;
  }
  #goody #faq--pricing h4 {
    margin-bottom: 6px;
  }
  #page--pricing #price-breakdown__list-header ul li h3 {
    font-size: 1.0em;
  }
}

@media (max-width: 768px) {
  #goody #page--pricing #price-overview {
    width: 100%;
  }
  #page--pricing #price-breakdown__list-header ul li h3 {
    font-size: 0.9em;
    font-weight: 600;
  }
  #page--pricing #price-breakdown__list-header ul li h3 span {
    font-size: 1.8em;
  }
  #page--pricing #price-breakdown__list-header ul li h3 span sup {
    font-size: 14px;
  }
  #page--pricing .price-breakdown__section ul li .details-column h5 {
    font-size: 1em;
  }
  #page--pricing .price-breakdown__section ul li .details-column p {
    font-size: 14px;
  }
  #page--pricing .price-breakdown__section ul li .check-column {
    font-size: 0.9em;
    padding: 19px 4px;
  }
}

@media (max-width: 568px) {
  #page--pricing #price-breakdown .container {
    padding-left: 0;
    padding-right: 0;
  }
  #page--pricing .price-breakdown__section#loyalty-programme .price-breakdown__heading {
    display: none;
  }
  #page--pricing #price-breakdown__list-header ul li h3 span {
    font-size: 1em;
  }
  #page--pricing #price-overview .price-category__header {
    background-color: #b7d8e6;
  }
  #page--pricing #price-overview .price-category__header h2 {
    background-color: #edf5fa;
  }
}

@media (max-width: 480px) {
  #goody #page--pricing #banner__content {
    position: absolute;
  }
  #goody #page--pricing #banner__content h1 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 16px;
    margin-top: 50px;
    text-align: center;
  }
  #goody #page--pricing #banner__content .button {
    display: block;
    float: none;
    margin: 30px auto 10px auto;
    text-align: center;
    width: 160px;
  }
  #page--pricing #price-overview .price-category__content {
    min-height: 0;
  }
  #page--pricing #price-overview .price-category__content li {
    font-size: 15px;
  }
  #goody #faq--pricing h4 {
    font-size: 2.2rem;
  }
  #goody #faq--pricing .question label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25em;
  }
  #goody #faq--pricing article {
    padding-top: 6px;
  }
  #page--pricing #price-breakdown__list-header {
    padding-left: 0;
    width: 100%;
  }
  #page--pricing #price-breakdown__list-header ul li h3 {
    font-size: 18px;
    line-height: 1.4em;
  }
  #page--pricing #price-breakdown__list-header ul li h3 span {
    font-size: 26px;
    font-weight: 800;
  }
  #page--pricing .price-breakdown__section ul li .details-column {
    width: 100%;
  }
  #page--pricing .price-breakdown__section ul li .check-column {
    width: 33%;
  }
}

/***********************************************
    Referral Page
***********************************************/
#referral-page .information-panel {
  background: #edf5fa;
  border-radius: 4px;
  padding: 30px;
}

#referral-page .information-panel h4 {
  font-size: 1.5em;
  line-height: 1.4em;
  margin-bottom: 20px;
}

#referral-page .information-panel h4 strong {
  color: #25282e;
}

#referral-page .information-panel__image {
  bottom: -50px;
  min-width: 300px;
  position: relative;
  left: -20%;
  width: 140%;
}

#goody #referral-page .referral-details {
  margin-top: 40px;
}

#goody #referral-page form {
  padding-bottom: 50px;
}

#goody .form-page form .row {
  margin-top: 16px;
}

#goody .form-page label {
  color: #ababab;
  display: inline-block;
  float: left;
  font-size: 1em;
  font-weight: 400;
  padding-left: 10px;
  text-align: left;
}

#goody .form-page input {
  clear: both;
  height: auto;
  margin-top: 0;
}

#goody .form-page input[type="text"],
#goody .form-page input[type="password"],
#goody .form-page select,
#goody .form-page textarea {
  border: 1px solid #e7e7e7;
  clear: both;
  height: auto;
  padding: 10px;
}

#goody .form-page .field-validation-error,
#goody #account-signup .field-validation-error {
  color: #ee5a40;
  display: inline-block;
  padding-left: 10px;
  padding-top: 8px;
}

#goody #account-signup .form-group {
  clear: both;
}

#goody #account-signup .field-validation-error {
  float: left;
  padding-bottom: 16px;
}

#goody .form-page .alert-success {
  background-color: #434a54;
  background-image: url("/img/check_success.png");
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  color: #ffffff;
  padding-left: 70px;
  text-shadow: none;
}

#goody .form-page .alert-success strong {
  color: #ffffff;
  font-weight: 700;
}

/***********************************************
***************  VERIFICATION VIEWS ************
***********************************************/
#goody-logo-header {
  background: #edeeed;
  text-align: center;
  width: 100%;
}

#goody-logo-header img {
  margin: auto;
  position: relative;
  top: 45px;
  width: 90px;
}

#goody .view--verification {
  background: #ffffff;
  padding: 50px 0 50px 0;
}

#goody #card-verification-success {
  padding: 0;
}

#goody .view--verification .form-group {
  margin-bottom: 22px;
  position: relative;
}

#goody .view--verification h2 {
  margin-bottom: 12px;
  margin-top: 30px;
  padding-bottom: 12px;
  text-align: center;
}

#goody .view--verification p {
  font-size: 1.2em;
  margin: auto;
  max-width: 500px;
  padding-bottom: 10px;
  text-align: center;
}

#goody #app-verification-success.view--verification h2,
#goody #app-verification-success.view--verification p {
  margin-left: 20px;
  text-align: left;
  width: auto;
}

#goody #card-verification-success p {
  margin: 0;
  width: auto;
}

#goody .view--verification form {
  margin: auto;
  max-width: 500px;
}

#goody .view--verification label {
  color: #ababab;
  display: inline-block;
  float: left;
  font-size: 1em;
  font-weight: 400;
  padding-left: 10px;
  text-align: left;
}

#goody .view--verification .form-group .note {
  background: #abc1cc;
  border-radius: 4px;
  clear: both;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 600;
  left: 100%;
  line-height: 1.2em;
  margin-left: 30px;
  padding: 10px;
  position: absolute;
  text-align: left;
  top: 30%;
  width: 300px;
}

#goody .view--verification .form-group .note::after {
  content: '';
  background: url("/img/triangle_note_left.png") left 1px no-repeat;
  display: block;
  height: 19px;
  left: -7px;
  margin-top: -9px;
  position: absolute;
  top: 50%;
  width: 8px;
}

#goody .view--verification input {
  clear: both;
  height: auto;
  margin-top: 0;
}

#goody .view--verification input[type="text"],
#goody .view--verification input[type="password"] {
  border: 1px solid #e7e7e7;
  clear: both;
  padding: 10px;
}

#goody .view--verification .input-group {
  clear: both;
}

#goody .view--verification .form-group .group {
  clear: both;
}

#goody .view--verification input#Dob {
  border-radius: 8px 0 0 8px;
}

#goody .view--verification .btn-container {
  padding: 10px 0;
}

#goody .view--verification .btn {
  font-weight: normal;
}

/***********************************************
***************  PASSWORD PAGES ****************
***********************************************/
#goody .view--password {
  padding: 50px 0 100px 0;
}

#goody .view--password .container {
  max-width: 500px;
}

#goody .view--password h2 {
  margin: 20px 0;
}

#goody .view--password form {
  clear: both;
  padding-top: 30px;
}

#goody .view--password .input-group {
  clear: both;
}

#goody .view--password .form-group .group {
  clear: both;
}

#goody .view--password label {
  color: #ababab;
  display: inline-block;
  float: left;
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: left;
}

#goody .view--password input {
  clear: both;
  height: auto;
  margin-top: 0;
}

#goody .view--password input[type="text"],
#goody .view--password input[type="password"] {
  border: 1px solid #e7e7e7;
  clear: both;
  padding: 10px;
}

#goody .view--password form .button {
  margin-top: 10px;
}

#goody .form-control::-webkit-input-placeholder {
  color: #cccccc;
}

#goody .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

#goody .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

#goody .form-control:-ms-input-placeholder {
  color: #cccccc;
}

#goody input.radio ~ label {
  width: 200px;
  border-radius: 3px;
  border: 1px solid #e7e7e7;
  font-size: 18px;
}

/* hide input */
input.radio:empty {
  margin-left: -9999px;
}

/* style label */
input.radio:empty ~ label {
  position: relative;
  float: left;
  line-height: 2.5em;
  text-indent: 3.25em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input.radio:empty ~ label:before {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 2.5em;
  background: #eee;
  border-radius: 3px 0 0 3px;
}

/* toggle hover */
input.radio:hover:not(:checked) ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #C2C2C2;
}

input.radio:hover:not(:checked) ~ label {
  color: #888;
}

/* toggle on */
input.radio:checked ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #ff9380;
  background-color: #ee5a40;
}

input.radio:checked ~ label {
  color: #777;
}

/* radio focus */
input.radio:focus ~ label:before {
  box-shadow: 0 0 0 3px #999;
}

/* Sign-up Form View */
.view--verification form {
  padding-top: 30px;
  text-align: center;
}

.view--verification input,
.view--verification button {
  font-weight: normal;
  margin: auto;
  margin-top: 10px;
}

/* Success for Card Sign-up View */
.view--verification .intro {
  padding-bottom: 20px;
  padding-top: 40px;
}

.view--verification .intro p {
  margin-left: 0;
  margin-right: 0;
  padding-left: 15px;
  text-align: left;
}

#btn-container--app-store {
  clear: both;
  padding-top: 40px;
}

#btn-container--app-store a {
  display: block;
  float: left;
  margin-left: 10px;
  padding-right: 0;
  width: 200px;
  height: 66px;
}

#btn-container--app-store a:first-child {
  float: left;
  margin-left: 0;
}

#btn-container--app-store .btn--apple-store {
  background: url("/img/button_apple-store.svg") center center no-repeat;
  background-size: contain;
}

#btn-container--app-store .btn--android-store {
  background: url("/img/button_android-store.svg") center center no-repeat;
  background-size: contain;
}

.view--verification .iphone-image {
  text-align: center;
}

/* Success for App Sign-up View */
/* Interactive Map */
.view--verification .locations {
  padding-top: 30px;
  text-align: center;
}

.view--verification .locations #map--nz-locations {
  width: 260px;
}

.view--verification .locations #map--nz-locations g#locations circle {
  fill: #f0523c;
  r: 8;
  transition: all 0.3s ease-out;
}

.view--verification .locations #map--nz-locations g#locations circle:hover {
  r: 12;
  transition: all 0.3s ease-out;
}

.view--verification .locations #map--nz-locations g#locations text {
  fill: #787878;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: all 0.3s ease-out;
}

.view--verification .locations #map--nz-locations g#locations circle:hover + text {
  fill: #414141;
  transition: all 0.3s ease-out;
}

.view--verification .locations .btn-container {
  padding-bottom: 40px;
  padding-top: 30px;
}

.view--verification .logos {
  padding-top: 30px;
}

.view--verification .logos .logo {
  display: block;
  padding: 0;
  width: 100%;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  transition: all 0.2s ease-out;
}

.view--verification .logos .logo:hover {
  -moz-opacity: 1.0;
  -khtml-opacity: 1.0;
  opacity: 1.0;
  transition: all 0.2s ease-out;
}

.view--verification .logos .logo img {
  display: block;
  margin: 10px auto;
  width: 100%;
  max-width: 96px;
}

.view--verification canvas#map--nz-locations {
  height: 280px;
  width: 250px;
}

/* Invalid Token */
#invalid-token #btn-container--app-store {
  width: 410px;
  margin: auto;
}

/***********************************************
    INDIVIDUAL MERCHANT PAGES
***********************************************/
#goody #merchant-page {
  padding-bottom: 100px;
}

#goody #cover {
  padding: 0;
}

#goody #cover img {
  width: 100%;
}

#goody #intro {
  padding: 0;
  position: relative;
}

#goody #intro__merchant-title {
  padding-bottom: 0;
  padding-top: 50px;
}

#goody #cover + #intro #intro__merchant-title {
  padding-top: 0;
  padding-bottom: 0;
}

#goody #intro .merchant-logo {
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 4px solid #ffffff;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  display: block;
  height: 130px;
  margin: 0 auto;
  padding: 30px;
  width: 230px;
}

#goody #cover + #intro .merchant-logo {
  left: 50%;
  margin-left: -130px;
  position: absolute;
  top: -65px;
}

#goody #intro h1 {
  font-weight: 300;
  margin-top: 0;
}

#goody #cover + #intro .merchant-logo + h1 {
  margin-left: 270px;
  margin-top: 40px;
}

#goody #intro .sub-heading {
  padding-top: 14px;
}

#goody #intro .sub-heading a {
  background-position: left 0;
  background-repeat: no-repeat;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding-left: 45px;
}

#goody #intro .sub-heading a:hover {
  background-position: left -38px;
}

#goody #intro .sub-heading a.merchant-website {
  background-image: url(/img/icons/link-icon-sprite_website.png);
}

#goody #intro .sub-heading a.merchant-facebook {
  background-image: url(/img/icons/link-icon-sprite_facebook.png);
}

#goody #intro .sub-heading a.merchant-website + a.merchant-facebook {
  margin-left: 40px;
}

#goody #intro #intro__merchant-description {
  clear: both;
  padding: 70px 0 0 0;
}

#goody #cover + #intro + section {
  padding-top: 70px;
}

#goody #merchant-page #contact-info ul {
  list-style-type: none;
  margin: 0;
  padding: 0 20px 12px 0;
}

#goody #merchant-page .contact-info__item {
  clear: both;
  color: #25282e;
  font-size: 16px;
  font-weight: 400;
  min-height: 32px;
  margin: 16px 0;
  position: relative;
}

#goody #merchant-page .contact-info__item icon {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 32px;
  left: 0;
  margin-right: 16px;
  position: absolute;
  top: -4px;
  width: 32px;
}

#goody #merchant-page .contact-info__open-hours icon {
  background-image: url("/img/icons/icon_hours_dark.png");
}

#goody #merchant-page .contact-info__phone icon {
  background-image: url("/img/icons/icon_phone_dark.png");
}

#goody #merchant-page .contact-info__email icon {
  background-image: url("/img/icons/icon_email_dark.png");
}

#goody #merchant-page .contact-info__address icon {
  background-image: url("/img/icons/icon_location_dark.png");
}

#goody #merchant-page .contact-info__item icon + span,
#goody #merchant-page .contact-info__item icon + a {
  display: inline-block;
  line-height: 24px;
  margin-left: 50px;
}

#goody #merchant-page .contact-info__open-hours > span {
  float: left;
}

#goody #merchant-page .contact-info__open-hours .button--toggle {
  background: url("/img/arrow_down_red.png") center center no-repeat;
  background-size: contain;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 32px;
  margin-left: 10px;
  width: 20px;
}

#goody #merchant-page #contact-info ul ul {
  margin-left: 52px;
  padding-top: 0;
}

#goody #merchant-page #contact-info ul ul li {
  line-height: 26px;
}

#goody #merchant-page #contact-info ul ul .today {
  font-weight: bold;
}

#goody #merchant-page #contact-info__map {
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  max-width: 100%;
}

#goody #merchant-page #contact-info__map img {
  width: 100%;
}

#goody #merchant-page #rewards__container {
  background: #ecf4f9;
  padding: 30px 0;
}

#goody #merchant-page #rewards h4 {
  color: #b6bbbf;
  font-size: 1em;
  font-weight: 700;
  margin-left: 60px;
  text-transform: uppercase;
}

#goody #merchant-page #rewards__list {
  list-style-type: none;
  margin: 0;
  padding: 0 0 12px 0;
}

#goody #merchant-page #rewards__list .reward {
  border-top: 4px solid #ffffff;
  color: #25282e;
  display: block;
  font-size: 17px;
  padding: 25px 50px 5px;
}

#goody #merchant-page #rewards__list .reward:first-child {
  border-top: none;
}

#goody #merchant-page #rewards__list .reward .reward__points {
  float: left;
  margin-right: 30px;
  position: relative;
  text-align: center;
  top: -6px;
  width: 90px;
}

#goody #merchant-page #rewards__list .reward__points span {
  color: #b6bbbf;
  display: inline-block;
  font-size: 0.9em;
  font-weight: 400;
  width: 100%;
}

#goody #merchant-page #rewards__list .reward__points strong {
  font-size: 42px;
  font-weight: bolder;
  font-weight: 700;
  line-height: 20px;
}

#goody #merchant-page #rewards__list .reward .reward__description {
  display: inline;
  float: none;
  font-weight: 400;
  line-height: 26px;
}

#goody #merchant-page #rewards__list .reward.suggest-more .reward__points {
  background: url("/img/icons/icon_reward_light.png");
  height: 60px;
}

#goody #merchant-page #rewards__list .reward.suggest-more .reward__description {
  color: #b6bbbf;
}

/* Media Queries */
@media (max-width: 1200px) {
  #footer-links .col-md-3 {
    display: block;
    float: left;
    width: 33.333333%;
  }
  #footer-links .col-md-3:nth-child(4n) {
    clear: both;
    padding: 30px 40px;
    margin: auto;
    text-align: left;
    width: 80%;
  }
  #footer-links ul {
    padding: 0 30px;
  }
  /* PR Page */
  #pr-page #hero-content {
    top: 15%;
  }
}

@media (max-width: 1080px) {
  /* Pricing Page */
  #page--pricing #banner {
    background-position: -200px 120px;
  }
  #goody h2 {
    font-size: 4rem;
  }
  #goody #hero__content h1 {
    font-size: 3.2em;
    margin-bottom: 14px;
  }
  #goody #hero__content .hero__sub-heading {
    font-size: 1.5em;
  }
  #goody #hero__content .button {
    margin-top: 14px;
  }
  #goody .business-form .city__store {
    display: none;
  }
  #goody section#pricing .benefits {
    width: 100%;
  }
  #goody #more-goodies {
    padding-top: 50px;
  }
  #goody #merchant-page h1 {
    font-size: 3em;
    line-height: 1.2em;
    margin-bottom: 14px;
  }
  #goody #merchant-page #contact-info {
    padding: 0;
  }
  #goody #merchant-page #contact-info__list,
  #goody #merchant-page #contact-info__map {
    float: left;
    width: 50%;
  }
  #goody #merchant-page #rewards {
    clear: both;
    margin-top: 40px;
    padding: 0;
  }
  #goody #cover + #intro .merchant-logo + h1 {
    margin-top: 30px;
  }
  #goody #merchant-page .merchant-logo {
    height: 230px;
    width: 230px;
  }
  #goody #merchant-page #cover + #intro .merchant-logo {
    margin-left: -115px;
  }
  #goody #merchant-page h1 {
    font-size: 3em;
  }
  #goody #merchant-page #cover + #intro h1 {
    margin-top: 30px;
  }
  #goody #merchant-page .sub-heading {
    padding-top: 0;
  }
}

@media (max-width: 992px) {
  /* PR Page */
  #pr-page .container.section {
    padding-bottom: 0;
    padding-top: 0;
  }
  /* App Verification Success */
  .view--verification .locations,
  .view--verification .logos {
    padding-top: 0;
    padding-bottom: 0;
  }
  .view--verification .logos.col-lg-7 {
    width: 80%;
  }
  .view--verification .logos .col-md-3 {
    width: 33%;
    float: left;
  }
  .view--verification .logos .logo img {
    display: block;
    margin: 10px auto;
    width: 100%;
    max-width: 96px;
  }
  /* Card Verification Success */
  .view--verification .iphone-image {
    clear: both;
  }
  .view--verification .goody-list {
    margin: 0;
  }
  #goody section#case-studies .case-study .case-study__content {
    margin-top: -25%;
  }
  #goody section#case-studies .slider .prev,
  #goody section#case-studies .slider .next {
    top: 80%;
    height: 40px;
    width: 40px;
  }
  #goody section#case-studies .slider .prev {
    background-image: url("/img/arrow_left_small.png");
    left: 15px;
  }
  #goody section#case-studies .slider .next {
    background-image: url("/img/arrow_right_small.png");
    right: 15px;
  }
  #goody .view--verification .form-group .note {
    clear: both;
    margin-bottom: 20px;
    margin-left: 0;
    position: static;
    width: 100%;
  }
  #goody .view--verification .form-group .note::after {
    background-image: url("/img/triangle_note_top.png");
    height: 8px;
    top: 1px;
    left: 10%;
    margin-left: -9px;
    width: 19px;
  }
  #goody #goody-journey .goody-journey__part {
    padding-bottom: 0;
  }
  #goody #goody-journey .goody-journey__part p:first-child {
    padding-top: 0;
  }
  #goody #banner__content .banner__content-text {
    padding-left: 0px;
  }
  #page--pricing #banner {
    background-color: #70b0cc;
    background-image: none;
    height: auto;
    padding: 0;
    position: relative;
    width: 100%;
  }
  #goody #page--pricing #banner__content {
    top: 0;
    padding-top: 60px;
  }
  #goody #page--pricing #banner__content .banner__content-text {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  #goody h2 {
    margin-top: 0;
  }
  #goody #navbar .navbar-collapse {
    background: rgba(1, 1, 1, 0.9);
    clear: both;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
  }
  #goody #navbar .navbar-collapse ul {
    margin: 0;
    padding: 90px 0 20px 0;
    width: 100%;
  }
  #goody #navbar .navbar-collapse ul li {
    clear: both;
    float: left;
    margin-left: 0;
    width: 100%;
  }
  #goody #navbar .navbar-collapse ul li.for-business a,
  #goody #navbar .navbar-collapse ul li.sign-in a {
    border: none;
    border-radius: 0;
  }
  #goody #navbar .navbar-collapse ul li a:hover,
  #goody #navbar .navbar-collapse ul li a:active {
    background: transparent;
    color: #ee5a40;
    transition: color 0.3s ease;
  }
  #goody #navbar.scrolling .navbar-collapse {
    background: #ffffff;
  }
  #goody #navbar .navbar-collapse ul li.for-business a,
  #goody #navbar .navbar-collapse ul li.sign-in a {
    border: none;
    border-radius: 0;
  }
  #goody #navbar.scrolling .navbar-collapse ul li a:hover,
  #goody #navbar.scrolling .navbar-collapse ul li a:active {
    background: transparent;
    color: #ee5a40;
    transition: color 0.3s ease;
  }
  /* Business Form*/
  #goody .business-form__field {
    margin-bottom: 0;
  }
  h2.center-sm {
    text-align: center;
  }
  #goody .hidden-sm {
    display: none;
  }
  #goody #hero,
  #goody #banner {
    min-height: 400px;
  }
  #goody #banner {
    height: 600px;
  }
  #goody #hero img {
    height: 400px;
    position: absolute;
    right: 0;
    width: auto;
  }
  #goody #banner img {
    height: 600px;
    position: absolute;
    left: 0;
    width: auto;
  }
  #goody #hero__content h1,
  #goody #banner__content h1 {
    font-size: 2.5em;
  }
  #goody #banner__content {
    top: 20%;
  }
}

/* iPad portrait */
@media (max-width: 767px) {
  ul.icon-link-list,
  ul.link-list {
    margin-bottom: 50px;
  }
  ul.icon-link-list li,
  ul.link-list li,
  ul.icon-link-list li a,
  ul.link-list li a,
  ul.icon-link-list li p,
  ul.link-list li p {
    text-align: left;
  }
  ul.icon-link-list .link-description {
    padding-left: 35px;
  }
  #footer-links .col-md-3:nth-child(4n) {
    float: none;
  }
  #footer-links ul {
    padding-left: 0;
  }
  /* PR Page */
  #contact-pr {
    margin-bottom: 35px;
  }
  p.summary {
    text-align: left;
  }
  /* Card Verification Success */
  .view--verification .intro {
    margin: auto;
    padding-top: 8px;
  }
  .view--verification .intro p {
    max-width: 100%;
    text-align: center;
  }
  .view--verification #btn-container--app-store {
    padding: 8px 0 0 0;
    width: 410px;
    margin: auto;
  }
  #goody #footer #footer__secondary-section ul {
    float: left !important;
  }
  #goody section.feature {
    margin-bottom: 0;
    padding: 30px 0 !important;
  }
  #goody #business-page__nav {
    padding-bottom: 50px;
  }
  #goody #business-page__nav ul {
    width: 420px;
  }
  #goody #business-page__nav ul li:nth-child(4) {
    clear: both;
    margin-left: 80px;
  }
  #goody #business-page__nav ul li:nth-child(4),
  #goody #business-page__nav ul li:nth-child(5) {
    margin-top: 30px;
  }
  #goody .case-study quote {
    font-size: 3rem;
  }
  #goody #intro .merchant-logo {
    height: 180px;
    width: 180px;
  }
  #goody #merchant-page #cover + #intro .merchant-logo {
    margin-left: -90px;
  }
  #goody #intro .merchant-logo + h1 {
    margin-top: 36px;
  }
  #goody #cover + #intro .merchant-logo + h1 {
    margin: 26px 0 0 210px;
  }
  #goody #intro .merchant-logo + h1 + .sub-heading {
    margin-left: 210px;
    padding-top: 8px;
  }
  #goody #intro .merchant-logo + h1 + .sub-heading a.merchant-facebook {
    margin-left: 30px;
  }
  #goody #cover + #intro #intro__merchant-title,
  #goody #intro #intro__merchant-title {
    padding-bottom: 10px;
    padding-top: 30px;
  }
  #goody #merchant-page h1 {
    margin-top: 30px;
    text-align: center;
  }
  #goody #merchant-page #cover + #intro h1 {
    margin-top: 136px;
  }
  #goody #merchant-page .sub-heading {
    text-align: center;
  }
  #goody #intro #intro__merchant-description {
    clear: both;
    padding: 40px 0 0 0;
  }
  #goody #intro + section {
    padding-top: 40px;
  }
}

@media (max-width: 690px) {
  /* PR Page */
  #contact-pr {
    padding: 20px;
  }
  #contact-pr p {
    text-align: left;
  }
  #contact-pr p span {
    display: block;
  }
  .view--verification .logos.col-lg-7 {
    width: 100%;
  }
  .view--verification .logos .col-md-3 {
    width: 33.3333333%;
    float: left;
  }
  .view--verification .logos .logo img {
    display: block;
    margin: 10px auto;
    width: 100%;
    max-width: 96px;
  }
  #goody section#case-studies ol {
    width: 300px;
  }
  #goody section#case-studies ol li {
    margin-left: 10px;
    width: 90px;
  }
  #goody section#case-studies ol li:nth-child(1) {
    margin-left: 0;
  }
  #goody #merchant-page #contact-info__list,
  #goody #merchant-page #contact-info__map {
    width: 100%;
  }
  #goody #intro + section {
    padding-top: 20px;
  }
}

@media (max-width: 568px) {
  #goody section.download-app .goody-list li.col-xs-6 {
    width: 100%;
  }
  #goody section#case-studies .case-study .case-study__content {
    margin-top: -45%;
  }
  #footer-links .col-md-3 {
    display: block;
    float: left;
    width: 50%;
  }
  #footer-links .col-md-3:nth-child(3n) {
    clear: both;
    padding-top: 25px;
  }
  #footer-links .col-md-3:nth-child(4n) {
    clear: none;
    float: left;
    padding: 25px 15px;
    width: 50%;
  }
  #footer-links .col-md-3:nth-child(4n) p {
    font-size: 14px !important;
    text-align: left;
    padding-top: 0;
  }
  #footer-links .col-md-3 li {
    text-align: left;
  }
  /* App Verification Success */
  .view--verification .logos .col-md-3 {
    width: 50%;
    float: left;
  }
  /* Card Verification Success */
  .view--verification #btn-container--app-store {
    width: 300px;
  }
  .view--verification #btn-container--app-store a {
    height: 50px;
    width: 145px;
  }
  #footer-links .col-md-3 {
    padding: 15px 0 !important;
    width: 100%;
  }
  #footer-links .col-md-3:nth-child(4n) {
    clear: none;
    float: left;
    padding: 15px !important;
    width: 100%;
  }
  #footer-links .col-md-3:nth-child(4n) p {
    text-align: center;
  }
  #footer-links .col-md-3 ul {
    padding: 0;
  }
  #footer-links .col-md-3 li {
    text-align: center;
  }
  #goody #footer #footer__secondary-section ul li {
    border-left: 0;
    clear: both;
    float: left !important;
    margin-left: 0;
    margin-top: 10px;
    padding-left: 0;
  }
  #goody #footer #footer__secondary-section ul li:first-child {
    margin-top: 0;
  }
  #goody #business-page__nav {
    display: none;
  }
  #goody #intro__merchant-title {
    padding-bottom: 40px;
  }
  #goody #intro .merchant-logo + h1 {
    margin-left: 0;
    padding-top: 120px;
    text-align: center;
  }
  #goody #cover + #intro .merchant-logo + h1 {
    margin-left: 0;
    padding-top: 60px;
  }
  #goody #intro .merchant-logo + h1 + .sub-heading {
    margin-left: 0;
    padding-top: 14px;
    text-align: center;
  }
  #goody #cover + #intro .merchant-logo + h1 + .sub-heading {
    margin-left: 0;
  }
  #goody #merchant-page #rewards h4 {
    margin-left: 36px;
  }
  #goody #merchant-page #rewards__list .reward {
    padding: 20px 16px;
  }
  #goody #merchant-page #rewards__list .reward .reward__points {
    margin-bottom: 15px;
    margin-right: 14px;
    top: 4px;
  }
  #goody #cover + #intro #intro__merchant-title {
    padding-bottom: 30px;
  }
  #goody section.business-form .container,
  #goody #demo-page section.business-form .container {
    background-image: none;
    padding-bottom: 50px;
  }
  #goody section.business-form .container p {
    margin-bottom: 6px;
  }
  #goody #demo-page section.business-form .container h2 {
    padding: 0 15px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  #goody #navbar {
    position: absolute;
  }
  #goody #business-page #button--to-top,
  #goody #business-page #button--to-top.show {
    display: none !important;
  }
  #goody .intro h5 {
    margin-bottom: 10px;
  }
  #goody .intro img {
    margin-top: 40px;
    margin-bottom: 24px;
  }
  #goody .intro .column:first-child img {
    margin-top: 0;
  }
  #goody section.business-form.night {
    padding-top: 30px;
  }
  #goody section.business-form .business-form__title {
    margin-bottom: 20px;
  }
  #goody section.business-form form {
    margin-top: 20px;
  }
  #goody .business-form__field {
    margin-bottom: 8px;
  }
  #goody section.business-form form input {
    font-size: 15px;
    line-height: 18px;
    margin: 4px 0;
  }
  #goody section.locations h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 4px 0 30px;
  }
  #goody section.locations .button {
    margin: 30px auto 0;
  }
  #goody section.download-app .goody-list {
    margin: 12px 0;
  }
  #goody #business-page #top {
    padding-top: 50px;
  }
  #goody section#pricing,
  #goody section#case-studies {
    display: none;
  }
  #goody section#more-goodies {
    background: #edf5fa;
  }
  #goody section.feature h2,
  #goody section#more-goodies h2,
  #goody #about-page h2 {
    text-align: left;
    line-height: 1.25em;
    margin-bottom: 20px;
  }
  #goody #more-goodies .more-goodies__text {
    margin-bottom: 0;
  }
  #goody #more-goodies .more-goodies__text strong {
    font-size: 1em;
    line-height: 1.3em;
  }
  #goody h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    text-align: center;
  }
  #goody section.feature h2 {
    margin-top: 10px;
    text-align: left;
  }
  #goody h3 {
    font-size: 18px;
    text-align: center;
  }
  #goody input,
  #goody p,
  #goody li {
    /*font-size:1.5rem;*/
  }
  #goody section {
    padding: 24px 0 40px;
  }
  #goody .download-app__buttons a {
    margin-top: 20px;
    padding: 0;
    width: 100%;
  }
  #goody .download-app__buttons a:first-child {
    margin-top: 0;
  }
  #goody section.download-app p,
  #goody section.download-app .goody-list li {
    font-size: 1.5rem;
  }
  #goody .hidden-xs {
    display: none;
  }
  #goody #button--to-top {
    display: none;
  }
  /* Brand Colours */
  #brand-colours .group > div {
    width: 100%;
    padding: 1% 0;
  }
  #brand-colours .group > div .brand-colour {
    padding: 20px 0;
  }
  .view--verification .locations {
    padding-left: 0;
    padding-right: 0;
  }
  .view--verification .locations .btn-container {
    padding-left: 0;
    padding-right: 0;
  }
  #goody .product-page .case-study quote {
    font-size: 2em;
  }
  section.intro--business .column {
    width: 100%;
  }
  /* Footer */
  #site-map .col-xs-4 {
    clear: both;
    padding: 0;
    width: 100%;
  }
  #goody #hero__content h1,
  #goody #banner__content h1 {
    font-size: 1.8em;
  }
  #goody #merchant-page h1 {
    font-size: 1.8em;
  }
  #goody #hero__content .hero__sub-heading {
    font-size: 1.25em;
  }
  #goody section#goody-journey .timeline-item.left,
  #goody section#goody-journey .timeline-item.right {
    padding-top: 40px;
    width: 100%;
  }
  #goody section#goody-journey .timeline-item.left {
    left: 0;
    padding-right: 0;
  }
  #goody section#goody-journey .timeline-item.right {
    padding-left: 0;
    right: 0;
  }
  #goody section#goody-journey .left .timeline-item__date,
  #goody section#goody-journey .right .timeline-item__date {
    background: none;
    display: block;
    left: 50%;
    margin-left: -25px;
    padding: 0;
    top: 0;
  }
  #goody section#goody-journey .left .timeline-item__date span,
  #goody section#goody-journey .right .timeline-item__date span {
    background-color: #edf5fa;
    display: inline-block;
    padding: 12px 0;
  }
  #goody section#goody-journey .left .timeline-item__bubble,
  #goody section#goody-journey .right .timeline-item__bubble {
    background: none;
    padding: 0;
  }
  #goody section#goody-journey .left .timeline-item__content,
  #goody section#goody-journey .right .timeline-item__content {
    background-position: top left;
  }
  #goody section#goody-journey .right .timeline-item__content {
    padding-top: 200px;
    position: relative;
  }
  #goody section#goody-journey .timeline-item__bubble .timeline-item__image {
    height: 200px;
    width: 100%;
  }
  #goody section#goody-journey .right .timeline-item__bubble .timeline-item__image {
    display: none;
  }
  #footer #contact-us__form input,
  #footer #contact-us__form textarea {
    font-size: 15px;
    line-height: 18px;
  }
  #goody #app-verification-success .locations {
    padding-top: 0;
  }
  #goody .view--verification h2 {
    margin-top: 0 !important;
  }
  #goody #app-verification-success.view--verification h2,
  #goody #app-verification-success.view--verification p {
    text-align: center;
  }
  #goody #account-signup form {
    padding-top: 30px;
  }
  #goody input.radio ~ label {
    font-size: 16px;
  }
  #goody #tab-content .tab-content__container.active-page {
    padding-bottom: 40px;
  }
  #goody #tabs {
    margin-left: 0;
    left: 0;
    top: -50px;
    width: 100%;
  }
  #goody #tabs li {
    width: 50%;
  }
  #goody #tabs li span {
    padding: 16px 10px;
    text-align: center;
    width: 100%;
  }
  #goody .question__heading {
    font-size: 16px;
  }
  #goody #pr-page h2 {
    margin-bottom: 20px;
    text-align: left;
  }
  #goody #pr-page h4 {
    font-size: 16px;
  }
  ul.icon-link-list, ul.link-list {
    margin-bottom: 20px;
  }
  #goody #banner #button--play {
    display: none;
  }
  #goody #merchant-page #rewards__list .reward .reward__description {
    line-height: 20px;
  }
  #goody #intro .sub-heading a.merchant-facebook {
    margin-left: 10px;
  }
}

@media (max-width: 414px) {
  #goody section#case-studies .case-study .case-study__content {
    margin-top: -55%;
  }
  #goody .case-study quote {
    font-size: 2.3rem;
  }
  #goody .case-study .case-study__company {
    font-size: 1.2rem;
  }
  #goody #banner {
    height: 300px;
    min-height: 300px;
  }
  #goody #banner img {
    height: 300px;
    position: absolute;
    left: 0;
    width: auto;
  }
  #goody #banner__content {
    top: 80px;
  }
  #goody #banner__content h1 {
    margin-bottom: 16px;
    margin-top: 30px;
  }
  #goody #banner__content .banner__sub-heading {
    font-size: 17.5px;
    font-weight: 400;
  }
}

@media (max-width: 375px) {
  #goody #hero img {
    left: -50%;
  }
  #goody #hero__content h1,
  #goody #hero__content .hero__sub-heading {
    text-align: center;
  }
  #goody #hero__content h1 {
    margin-top: 30px;
  }
  #goody #home-page #hero__content .button,
  #goody #business-page #hero__content .button {
    display: block;
    float: none;
    margin: 30px auto 10px auto;
    width: 180px;
  }
  #goody #home-page #hero__content .hero__sub-heading br,
  #goody #home-page #hero__content h1 br,
  #goody #business-page #hero__content .hero__sub-heading br,
  #goody #business-page #hero__content h1 br {
    content: ' ';
    display: none;
  }
  .view--verification {
    padding-top: 35px;
  }
  .view--verification h2 {
    border-bottom: 1px solid #dedede;
    line-height: 1.3em;
    margin-bottom: 10px;
    margin-top: 0px;
    padding-bottom: 14px;
  }
  .view--verification form {
    padding-top: 8px;
  }
  /* Verification Views */
  #goody-logo-header {
    display: none;
  }
  /* Card Verification Success */
  #card-verification-success .col-md-8 {
    padding-left: 0;
    padding-right: 0;
  }
  .view--verification .intro {
    padding: 0 0 10px 0;
  }
  .view--verification .intro p {
    padding-left: 0;
    font-size: 1.2em;
    text-align: center !important;
  }
  .view--verification #btn-container--app-store {
    text-align: center;
    width: 100%;
  }
  .view--verification #btn-container--app-store a {
    display: inline-block;
    float: none;
    height: 66px;
    margin: 6px auto;
    padding: 0;
    width: 200px;
  }
  /* App Verification Success */
  .view--verification .btn-container {
    padding: 12px;
  }
}

/* iPhone portrait */
@media (max-width: 321px) {
  #goody .business-form__submit .button {
    width: 100%;
  }
  #goody #support-page h3 {
    text-align: left;
  }
  #goody #support-page .question {
    padding-left: 60px;
  }
}

/************************************************
    Styles for Public Site
************************************************/
/* Load Boostrap */
/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "\002a";
}

.glyphicon-plus:before {
  content: "\002b";
}

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-cloud:before {
  content: "\2601";
}

.glyphicon-envelope:before {
  content: "\2709";
}

.glyphicon-pencil:before {
  content: "\270f";
}

.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

.glyphicon-lock:before {
  content: "\e033";
}

.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-bookmark:before {
  content: "\e044";
}

.glyphicon-print:before {
  content: "\e045";
}

.glyphicon-camera:before {
  content: "\e046";
}

.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

.glyphicon-fire:before {
  content: "\e104";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

.glyphicon-calendar:before {
  content: "\e109";
}

.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

.glyphicon-bell:before {
  content: "\e123";
}

.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

.glyphicon-wrench:before {
  content: "\e136";
}

.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

.glyphicon-briefcase:before {
  content: "\e139";
}

.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

.glyphicon-paperclip:before {
  content: "\e142";
}

.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

.glyphicon-pushpin:before {
  content: "\e146";
}

.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

.glyphicon-collapse-down:before {
  content: "\e159";
}

.glyphicon-collapse-up:before {
  content: "\e160";
}

.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}

.glyphicon-cd:before {
  content: "\e201";
}

.glyphicon-save-file:before {
  content: "\e202";
}

.glyphicon-open-file:before {
  content: "\e203";
}

.glyphicon-level-up:before {
  content: "\e204";
}

.glyphicon-copy:before {
  content: "\e205";
}

.glyphicon-paste:before {
  content: "\e206";
}

.glyphicon-alert:before {
  content: "\e209";
}

.glyphicon-equalizer:before {
  content: "\e210";
}

.glyphicon-king:before {
  content: "\e211";
}

.glyphicon-queen:before {
  content: "\e212";
}

.glyphicon-pawn:before {
  content: "\e213";
}

.glyphicon-bishop:before {
  content: "\e214";
}

.glyphicon-knight:before {
  content: "\e215";
}

.glyphicon-baby-formula:before {
  content: "\e216";
}

.glyphicon-tent:before {
  content: "\26fa";
}

.glyphicon-blackboard:before {
  content: "\e218";
}

.glyphicon-bed:before {
  content: "\e219";
}

.glyphicon-apple:before {
  content: "\f8ff";
}

.glyphicon-erase:before {
  content: "\e221";
}

.glyphicon-hourglass:before {
  content: "\231b";
}

.glyphicon-lamp:before {
  content: "\e223";
}

.glyphicon-duplicate:before {
  content: "\e224";
}

.glyphicon-piggy-bank:before {
  content: "\e225";
}

.glyphicon-scissors:before {
  content: "\e226";
}

.glyphicon-bitcoin:before {
  content: "\e227";
}

.glyphicon-btc:before {
  content: "\e227";
}

.glyphicon-xbt:before {
  content: "\e227";
}

.glyphicon-yen:before {
  content: "\00a5";
}

.glyphicon-jpy:before {
  content: "\00a5";
}

.glyphicon-ruble:before {
  content: "\20bd";
}

.glyphicon-rub:before {
  content: "\20bd";
}

.glyphicon-scale:before {
  content: "\e230";
}

.glyphicon-ice-lolly:before {
  content: "\e231";
}

.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

.glyphicon-education:before {
  content: "\e233";
}

.glyphicon-option-horizontal:before {
  content: "\e234";
}

.glyphicon-option-vertical:before {
  content: "\e235";
}

.glyphicon-menu-hamburger:before {
  content: "\e236";
}

.glyphicon-modal-window:before {
  content: "\e237";
}

.glyphicon-oil:before {
  content: "\e238";
}

.glyphicon-grain:before {
  content: "\e239";
}

.glyphicon-sunglasses:before {
  content: "\e240";
}

.glyphicon-text-size:before {
  content: "\e241";
}

.glyphicon-text-color:before {
  content: "\e242";
}

.glyphicon-text-background:before {
  content: "\e243";
}

.glyphicon-object-align-top:before {
  content: "\e244";
}

.glyphicon-object-align-bottom:before {
  content: "\e245";
}

.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

.glyphicon-object-align-left:before {
  content: "\e247";
}

.glyphicon-object-align-vertical:before {
  content: "\e248";
}

.glyphicon-object-align-right:before {
  content: "\e249";
}

.glyphicon-triangle-right:before {
  content: "\e250";
}

.glyphicon-triangle-left:before {
  content: "\e251";
}

.glyphicon-triangle-bottom:before {
  content: "\e252";
}

.glyphicon-triangle-top:before {
  content: "\e253";
}

.glyphicon-console:before {
  content: "\e254";
}

.glyphicon-superscript:before {
  content: "\e255";
}

.glyphicon-subscript:before {
  content: "\e256";
}

.glyphicon-menu-left:before {
  content: "\e257";
}

.glyphicon-menu-right:before {
  content: "\e258";
}

.glyphicon-menu-down:before {
  content: "\e259";
}

.glyphicon-menu-up:before {
  content: "\e260";
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Open Sans", Open Sans, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333840;
  background-color: #fff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #ee5a40;
  text-decoration: none;
}

a:hover, a:focus {
  color: #cf2f12;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 4px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 24px;
  margin-bottom: 24px;
  border: 0;
  border-top: 1px solid #dedede;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role="button"] {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 300;
  line-height: 1.2;
  color: inherit;
}

h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #868686;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 12px;
  margin-bottom: 12px;
}

h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 60px;
}

h2, .h2 {
  font-size: 48px;
}

h3, .h3 {
  font-size: 40px;
}

h4, .h4 {
  font-size: 32px;
}

h5, .h5 {
  font-size: 24px;
}

h6, .h6 {
  font-size: 20px;
}

p {
  margin: 0 0 12px;
}

.lead {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .lead {
    font-size: 24px;
  }
}

small,
.small {
  font-size: 87%;
}

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase, .initialism {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #868686;
}

.text-primary {
  color: #ee5a40;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #e63415;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
}

.bg-primary {
  background-color: #ee5a40;
}

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #e63415;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 11px;
  margin: 48px 0 24px;
  border-bottom: 1px solid #dedede;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 12px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 24px;
}

dt,
dd {
  line-height: 1.5;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}

.dl-horizontal dd:after {
  clear: both;
}

@media (min-width: 640px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #868686;
}

.initialism {
  font-size: 90%;
}

blockquote {
  padding: 12px 24px;
  margin: 0 0 24px;
  font-size: 20px;
  border-left: 5px solid #dedede;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.5;
  color: #868686;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #dedede;
  border-left: 0;
  text-align: right;
}

.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}

.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

address {
  margin-bottom: 24px;
  font-style: normal;
  line-height: 1.5;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 4px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

pre {
  display: block;
  padding: 11.5px;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  word-break: break-all;
  word-wrap: break-word;
  color: #333840;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.container:before, .container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

@media (min-width: 640px) {
  .container {
    width: 752px;
  }
}

@media (min-width: 1024px) {
  .container {
    width: 972px;
  }
}

@media (min-width: 1232px) {
  .container {
    width: 1172px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}

.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 16px;
  padding-right: 16px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 640px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.33333%;
  }
  .col-sm-2 {
    width: 16.66667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.33333%;
  }
  .col-sm-pull-2 {
    right: 16.66667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333%;
  }
  .col-sm-pull-5 {
    right: 41.66667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.33333%;
  }
  .col-sm-pull-8 {
    right: 66.66667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333%;
  }
  .col-sm-pull-11 {
    right: 91.66667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.33333%;
  }
  .col-sm-push-2 {
    left: 16.66667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333%;
  }
  .col-sm-push-5 {
    left: 41.66667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.33333%;
  }
  .col-sm-push-8 {
    left: 66.66667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333%;
  }
  .col-sm-push-11 {
    left: 91.66667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1024px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.33333%;
  }
  .col-md-2 {
    width: 16.66667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333%;
  }
  .col-md-5 {
    width: 41.66667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333%;
  }
  .col-md-8 {
    width: 66.66667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333%;
  }
  .col-md-11 {
    width: 91.66667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.33333%;
  }
  .col-md-pull-2 {
    right: 16.66667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333%;
  }
  .col-md-pull-5 {
    right: 41.66667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.33333%;
  }
  .col-md-pull-8 {
    right: 66.66667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333%;
  }
  .col-md-pull-11 {
    right: 91.66667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.33333%;
  }
  .col-md-push-2 {
    left: 16.66667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333%;
  }
  .col-md-push-5 {
    left: 41.66667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.33333%;
  }
  .col-md-push-8 {
    left: 66.66667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333%;
  }
  .col-md-push-11 {
    left: 91.66667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1232px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.33333%;
  }
  .col-lg-2 {
    width: 16.66667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.33333%;
  }
  .col-lg-pull-2 {
    right: 16.66667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333%;
  }
  .col-lg-pull-5 {
    right: 41.66667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.33333%;
  }
  .col-lg-pull-8 {
    right: 66.66667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333%;
  }
  .col-lg-pull-11 {
    right: 91.66667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.33333%;
  }
  .col-lg-push-2 {
    left: 16.66667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333%;
  }
  .col-lg-push-5 {
    left: 41.66667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.33333%;
  }
  .col-lg-push-8 {
    left: 66.66667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333%;
  }
  .col-lg-push-11 {
    left: 91.66667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

table {
  background-color: #ffffff;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #868686;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 24px;
}

.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.table > tbody + tbody {
  border-top: 2px solid #ddd;
}

.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 4px;
}

.table-bordered {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}

@media screen and (max-width: 639px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 18px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: inherit;
  color: #333840;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="search"] {
  box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

input[type="file"] {
  display: block;
}

input[type="range"] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 13px;
  font-size: 16px;
  line-height: 1.5;
  color: #787878;
}

.form-control {
  display: block;
  width: 100%;
  height: 50px;
  padding: 12px 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #787878;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}

.form-control[disabled], .form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #dedede;
  opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 50px;
  }
  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn,
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input[type="time"].form-control,
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn,
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input[type="month"].form-control,
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn,
  .input-group-sm
  input[type="month"] {
    line-height: 39px;
  }
  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn,
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input[type="time"].form-control,
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn,
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input[type="month"].form-control,
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn,
  .input-group-lg
  input[type="month"] {
    line-height: 61px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.radio label,
.checkbox label {
  min-height: 24px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed;
}

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: not-allowed;
}

.form-control-static {
  padding-top: 13px;
  padding-bottom: 13px;
  margin-bottom: 0;
  min-height: 40px;
}

.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0;
}

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 39px;
  padding: 8px 8px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
}

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 39px;
  line-height: 39px;
}

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-sm .form-control {
  height: 39px;
  padding: 8px 8px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
}

.form-group-sm select.form-control {
  height: 39px;
  line-height: 39px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}

.form-group-sm .form-control-static {
  height: 39px;
  min-height: 38px;
  padding: 9px 8px;
  font-size: 14px;
  line-height: 1.5;
}

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 61px;
  padding: 16px 16px;
  font-size: 20px;
  line-height: 1.33333;
  border-radius: 4px;
}

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 61px;
  line-height: 61px;
}

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-lg .form-control {
  height: 61px;
  padding: 16px 16px;
  font-size: 20px;
  line-height: 1.33333;
  border-radius: 4px;
}

.form-group-lg select.form-control {
  height: 61px;
  line-height: 61px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}

.form-group-lg .form-control-static {
  height: 61px;
  min-height: 44px;
  padding: 17px 16px;
  font-size: 20px;
  line-height: 1.33333;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 62.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 61px;
  height: 61px;
  line-height: 61px;
}

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 39px;
  height: 39px;
  line-height: 39px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 29px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #6c7687;
}

@media (min-width: 640px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 13px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 37px;
}

.form-horizontal .form-group {
  margin-left: -16px;
  margin-right: -16px;
}

.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}

.form-horizontal .form-group:after {
  clear: both;
}

@media (min-width: 640px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 13px;
  }
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 16px;
}

@media (min-width: 640px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 17px;
    font-size: 20px;
  }
}

@media (min-width: 640px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 9px;
    font-size: 14px;
  }
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 12px 12px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover, .btn:focus, .btn.focus {
  color: #ffffff;
  text-decoration: none;
}

.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled, .btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #ffffff;
  background-color: #ee5a40;
  border-color: #ee5a40;
}

.btn-default:focus, .btn-default.focus {
  color: #ffffff;
  background-color: #e63415;
  border-color: #a0240e;
}

.btn-default:hover {
  color: #ffffff;
  background-color: #e63415;
  border-color: #dd3214;
}

.btn-default:active, .btn-default.active,
.open > .btn-default.dropdown-toggle {
  color: #ffffff;
  background-color: #e63415;
  border-color: #dd3214;
}

.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
.open > .btn-default.dropdown-toggle:hover,
.open > .btn-default.dropdown-toggle:focus,
.open > .btn-default.dropdown-toggle.focus {
  color: #ffffff;
  background-color: #c62d12;
  border-color: #a0240e;
}

.btn-default:active, .btn-default.active,
.open > .btn-default.dropdown-toggle {
  background-image: none;
}

.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default.focus {
  background-color: #ee5a40;
  border-color: #ee5a40;
}

.btn-default .badge {
  color: #ee5a40;
  background-color: #ffffff;
}

.btn-primary {
  color: #ffffff;
  background-color: #ee5a40;
  border-color: #ee5a40;
}

.btn-primary:focus, .btn-primary.focus {
  color: #ffffff;
  background-color: #e63415;
  border-color: #a0240e;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #e63415;
  border-color: #dd3214;
}

.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #e63415;
  border-color: #dd3214;
}

.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
  color: #ffffff;
  background-color: #c62d12;
  border-color: #a0240e;
}

.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  background-image: none;
}

.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #ee5a40;
  border-color: #ee5a40;
}

.btn-primary .badge {
  color: #ee5a40;
  background-color: #ffffff;
}

.btn-success {
  color: #ffffff;
  background-color: #5d9a08;
  border-color: #5d9a08;
}

.btn-success:focus, .btn-success.focus {
  color: #ffffff;
  background-color: #406a05;
  border-color: #142102;
}

.btn-success:hover {
  color: #ffffff;
  background-color: #406a05;
  border-color: #3a6005;
}

.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: #406a05;
  border-color: #3a6005;
}

.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
  color: #ffffff;
  background-color: #2b4804;
  border-color: #142102;
}

.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
  background-image: none;
}

.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5d9a08;
  border-color: #5d9a08;
}

.btn-success .badge {
  color: #5d9a08;
  background-color: #ffffff;
}

.btn-info {
  color: #ffffff;
  background-color: #a85b09;
  border-color: #a85b09;
}

.btn-info:focus, .btn-info.focus {
  color: #ffffff;
  background-color: #784106;
  border-color: #2f1903;
}

.btn-info:hover {
  color: #ffffff;
  background-color: #784106;
  border-color: #6e3c06;
}

.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
  color: #ffffff;
  background-color: #784106;
  border-color: #6e3c06;
}

.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
.open > .btn-info.dropdown-toggle:hover,
.open > .btn-info.dropdown-toggle:focus,
.open > .btn-info.dropdown-toggle.focus {
  color: #ffffff;
  background-color: #562e05;
  border-color: #2f1903;
}

.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
  background-image: none;
}

.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus {
  background-color: #a85b09;
  border-color: #a85b09;
}

.btn-info .badge {
  color: #a85b09;
  background-color: #ffffff;
}

.btn-warning {
  color: #ffffff;
  background-color: #a82209;
  border-color: #a82209;
}

.btn-warning:focus, .btn-warning.focus {
  color: #ffffff;
  background-color: #781806;
  border-color: #2f0a03;
}

.btn-warning:hover {
  color: #ffffff;
  background-color: #781806;
  border-color: #6e1606;
}

.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  color: #ffffff;
  background-color: #781806;
  border-color: #6e1606;
}

.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
.open > .btn-warning.dropdown-toggle:hover,
.open > .btn-warning.dropdown-toggle:focus,
.open > .btn-warning.dropdown-toggle.focus {
  color: #ffffff;
  background-color: #561105;
  border-color: #2f0a03;
}

.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  background-image: none;
}

.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #a82209;
  border-color: #a82209;
}

.btn-warning .badge {
  color: #a82209;
  background-color: #ffffff;
}

.btn-danger {
  color: #ffffff;
  background-color: #a82209;
  border-color: #a82209;
}

.btn-danger:focus, .btn-danger.focus {
  color: #ffffff;
  background-color: #781806;
  border-color: #2f0a03;
}

.btn-danger:hover {
  color: #ffffff;
  background-color: #781806;
  border-color: #6e1606;
}

.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #781806;
  border-color: #6e1606;
}

.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
.open > .btn-danger.dropdown-toggle:hover,
.open > .btn-danger.dropdown-toggle:focus,
.open > .btn-danger.dropdown-toggle.focus {
  color: #ffffff;
  background-color: #561105;
  border-color: #2f0a03;
}

.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  background-image: none;
}

.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #a82209;
  border-color: #a82209;
}

.btn-danger .badge {
  color: #a82209;
  background-color: #ffffff;
}

.btn-link {
  color: #ee5a40;
  font-weight: normal;
  border-radius: 0;
}

.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}

.btn-link:hover, .btn-link:focus {
  color: #cf2f12;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover, .btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
  color: #868686;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 16px 16px;
  font-size: 20px;
  line-height: 1.33333;
  border-radius: 4px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 8px 8px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 4px 4px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 11px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.5;
  color: #333840;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #282c32;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #ee5a40;
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #868686;
}

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #868686;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 640px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}

.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}

.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}

.btn-toolbar:after {
  clear: both;
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}

.btn-group-vertical > .btn-group:after {
  clear: both;
}

.btn-group-vertical > .btn-group > .btn {
  float: none;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}

.btn-group-justified > .btn-group .btn {
  width: 100%;
}

.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group .form-control:focus {
  z-index: 3;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 12px 12px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: #787878;
  text-align: center;
  background-color: #dedede;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 8px 8px;
  font-size: 14px;
  border-radius: 4px;
}

.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 16px 16px;
  font-size: 20px;
  border-radius: 4px;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn > .btn {
  position: relative;
}

.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.nav:before, .nav:after {
  content: " ";
  display: table;
}

.nav:after {
  clear: both;
}

.nav > li {
  position: relative;
  display: block;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #dedede;
}

.nav > li.disabled > a {
  color: #868686;
}

.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #868686;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #dedede;
  border-color: #ee5a40;
}

.nav .nav-divider {
  height: 1px;
  margin: 11px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
  border-color: #dedede #dedede #ddd;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #787878;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

.nav-pills > li {
  float: left;
}

.nav-pills > li > a {
  border-radius: 4px;
}

.nav-pills > li + li {
  margin-left: 2px;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #ee5a40;
}

.nav-stacked > li {
  float: none;
}

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}

.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}

.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 640px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}

.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 640px) {
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 24px;
  border: 1px solid transparent;
}

.navbar:before, .navbar:after {
  content: " ";
  display: table;
}

.navbar:after {
  clear: both;
}

@media (min-width: 640px) {
  .navbar {
    border-radius: 4px;
  }
}

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}

.navbar-header:after {
  clear: both;
}

@media (min-width: 640px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  overflow-x: visible;
  padding-right: 16px;
  padding-left: 16px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}

.navbar-collapse:after {
  clear: both;
}

.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 640px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -16px;
  margin-left: -16px;
}

@media (min-width: 640px) {
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 640px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 640px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  padding: 13px 16px;
  font-size: 20px;
  line-height: 24px;
  height: 50px;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-brand > img {
  display: block;
}

@media (min-width: 640px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -16px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 16px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggle:focus {
  outline: 0;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 640px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 6.5px -16px;
}

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 24px;
}

@media (max-width: 639px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 24px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 640px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

.navbar-form {
  margin-left: -16px;
  margin-right: -16px;
  padding: 10px 16px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 0px;
  margin-bottom: 0px;
}

@media (min-width: 640px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 639px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 640px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
  }
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 0px;
  margin-bottom: 0px;
}

.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 5.5px;
  margin-bottom: 5.5px;
}

.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 13px;
  margin-bottom: 13px;
}

@media (min-width: 640px) {
  .navbar-text {
    float: left;
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (min-width: 640px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -16px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
  color: #777;
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #777;
}

.navbar-default .navbar-nav > li > a {
  color: #777;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border-color: #ddd;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}

@media (max-width: 639px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

.navbar-default .navbar-link {
  color: #777;
}

.navbar-default .navbar-link:hover {
  color: #333;
}

.navbar-default .btn-link {
  color: #777;
}

.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}

.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:hover,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}

.navbar-inverse .navbar-brand {
  color: #acacac;
}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-text {
  color: #acacac;
}

.navbar-inverse .navbar-nav > li > a {
  color: #acacac;
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

.navbar-inverse .navbar-toggle {
  border-color: #333;
}

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #fff;
}

@media (max-width: 639px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #acacac;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

.navbar-inverse .navbar-link {
  color: #acacac;
}

.navbar-inverse .navbar-link:hover {
  color: #fff;
}

.navbar-inverse .btn-link {
  color: #acacac;
}

.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}

.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 24px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}

.breadcrumb > .active {
  color: #868686;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 24px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 12px 12px;
  line-height: 1.5;
  text-decoration: none;
  color: #ee5a40;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #cf2f12;
  background-color: #dedede;
  border-color: #ddd;
}

.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #ee5a40;
  border-color: #ee5a40;
  cursor: default;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #868686;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 16px 16px;
  font-size: 20px;
  line-height: 1.33333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 8px 8px;
  font-size: 14px;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.pager {
  padding-left: 0;
  margin: 24px 0;
  list-style: none;
  text-align: center;
}

.pager:before, .pager:after {
  content: " ";
  display: table;
}

.pager:after {
  clear: both;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #dedede;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #868686;
  background-color: #fff;
  cursor: not-allowed;
}

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

.label:empty {
  display: none;
}

.btn .label {
  position: relative;
  top: -1px;
}

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label-default {
  background-color: #868686;
}

.label-default[href]:hover, .label-default[href]:focus {
  background-color: #6d6d6d;
}

.label-primary {
  background-color: #ee5a40;
}

.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #e63415;
}

.label-success {
  background-color: #5d9a08;
}

.label-success[href]:hover, .label-success[href]:focus {
  background-color: #406a05;
}

.label-info {
  background-color: #a85b09;
}

.label-info[href]:hover, .label-info[href]:focus {
  background-color: #784106;
}

.label-warning {
  background-color: #a82209;
}

.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #781806;
}

.label-danger {
  background-color: #a82209;
}

.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #781806;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #868686;
  border-radius: 10px;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.btn-xs .badge, .btn-group-xs > .btn .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #ee5a40;
  background-color: #fff;
}

.list-group-item > .badge {
  float: right;
}

.list-group-item > .badge + .badge {
  margin-right: 5px;
}

.nav-pills > li > a > .badge {
  margin-left: 3px;
}

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #dedede;
}

.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 200;
}

.jumbotron > hr {
  border-top-color: #c5c5c5;
}

.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 16px;
}

.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 640px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 72px;
  }
}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 24px;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border 0.2s ease-in-out;
}

.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.thumbnail .caption {
  padding: 9px;
  color: #333840;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #ee5a40;
}

.alert {
  padding: 15px;
  margin-bottom: 24px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

.progress {
  overflow: hidden;
  height: 24px;
  margin-bottom: 24px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  background-color: #ee5a40;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease;
}

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.progress.active .progress-bar,
.progress-bar.active {
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
  background-color: #5d9a08;
}

.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #a85b09;
}

.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
  background-color: #a82209;
}

.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
  background-color: #a82209;
}

.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}

.media-object.img-thumbnail {
  max-width: none;
}

.media-right,
.media > .pull-right {
  padding-left: 10px;
}

.media-left,
.media > .pull-left {
  padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

a.list-group-item,
button.list-group-item {
  color: #555;
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}

button.list-group-item {
  width: 100%;
  text-align: left;
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #dedede;
  color: #868686;
  cursor: not-allowed;
}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #868686;
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #ee5a40;
  border-color: #ee5a40;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #fffcfb;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 24px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}

.panel-body:after {
  clear: both;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

.panel-group {
  margin-bottom: 24px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}

.panel-default > .panel-heading {
  color: #333840;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333840;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #ee5a40;
}

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #ee5a40;
  border-color: #ee5a40;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ee5a40;
}

.panel-primary > .panel-heading .badge {
  color: #ee5a40;
  background-color: #fff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ee5a40;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 4px;
}

.well-sm {
  padding: 9px;
  border-radius: 4px;
}

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header:before, .modal-header:after {
  content: " ";
  display: table;
}

.modal-header:after {
  clear: both;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}

.modal-footer:after {
  clear: both;
}

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 640px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 1024px) {
  .modal-lg {
    width: 900px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Open Sans", Open Sans, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  opacity: 0;
  filter: alpha(opacity=0);
}

.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Open Sans", Open Sans, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 16px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 16px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 3px 3px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}

.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}

.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-inner > .item {
  display: none;
  position: relative;
  transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
  }
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: transparent;
}

.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
  left: auto;
  right: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}

.carousel-control .icon-prev:before {
  content: '\2039';
}

.carousel-control .icon-next:before {
  content: '\203a';
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: transparent;
}

.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 640px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 639px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 639px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 639px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 639px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1024px) and (max-width: 1231px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 1024px) and (max-width: 1231px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 1024px) and (max-width: 1231px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 1024px) and (max-width: 1231px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1232px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1232px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1232px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1232px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 639px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 1024px) and (max-width: 1231px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1232px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

/****************************************************************
 *
 * CSS Percentage Circle
 * Author: Andre Firchow
 *
*****************************************************************/
.rect-auto, .c100.p51 .slice, .c100.p52 .slice, .c100.p53 .slice, .c100.p54 .slice, .c100.p55 .slice, .c100.p56 .slice, .c100.p57 .slice, .c100.p58 .slice, .c100.p59 .slice, .c100.p60 .slice, .c100.p61 .slice, .c100.p62 .slice, .c100.p63 .slice, .c100.p64 .slice, .c100.p65 .slice, .c100.p66 .slice, .c100.p67 .slice, .c100.p68 .slice, .c100.p69 .slice, .c100.p70 .slice, .c100.p71 .slice, .c100.p72 .slice, .c100.p73 .slice, .c100.p74 .slice, .c100.p75 .slice, .c100.p76 .slice, .c100.p77 .slice, .c100.p78 .slice, .c100.p79 .slice, .c100.p80 .slice, .c100.p81 .slice, .c100.p82 .slice, .c100.p83 .slice, .c100.p84 .slice, .c100.p85 .slice, .c100.p86 .slice, .c100.p87 .slice, .c100.p88 .slice, .c100.p89 .slice, .c100.p90 .slice, .c100.p91 .slice, .c100.p92 .slice, .c100.p93 .slice, .c100.p94 .slice, .c100.p95 .slice, .c100.p96 .slice, .c100.p97 .slice, .c100.p98 .slice, .c100.p99 .slice, .c100.p100 .slice {
  clip: rect(auto, auto, auto, auto);
}

.pie, .c100 .bar, .c100.p51 .fill, .c100.p52 .fill, .c100.p53 .fill, .c100.p54 .fill, .c100.p55 .fill, .c100.p56 .fill, .c100.p57 .fill, .c100.p58 .fill, .c100.p59 .fill, .c100.p60 .fill, .c100.p61 .fill, .c100.p62 .fill, .c100.p63 .fill, .c100.p64 .fill, .c100.p65 .fill, .c100.p66 .fill, .c100.p67 .fill, .c100.p68 .fill, .c100.p69 .fill, .c100.p70 .fill, .c100.p71 .fill, .c100.p72 .fill, .c100.p73 .fill, .c100.p74 .fill, .c100.p75 .fill, .c100.p76 .fill, .c100.p77 .fill, .c100.p78 .fill, .c100.p79 .fill, .c100.p80 .fill, .c100.p81 .fill, .c100.p82 .fill, .c100.p83 .fill, .c100.p84 .fill, .c100.p85 .fill, .c100.p86 .fill, .c100.p87 .fill, .c100.p88 .fill, .c100.p89 .fill, .c100.p90 .fill, .c100.p91 .fill, .c100.p92 .fill, .c100.p93 .fill, .c100.p94 .fill, .c100.p95 .fill, .c100.p96 .fill, .c100.p97 .fill, .c100.p98 .fill, .c100.p99 .fill, .c100.p100 .fill {
  position: absolute;
  border: 0.06em solid #ee5a40;
  width: 0.88em;
  height: 0.88em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
}

.pie-fill, .c100.p51 .bar:after, .c100.p51 .fill, .c100.p52 .bar:after, .c100.p52 .fill, .c100.p53 .bar:after, .c100.p53 .fill, .c100.p54 .bar:after, .c100.p54 .fill, .c100.p55 .bar:after, .c100.p55 .fill, .c100.p56 .bar:after, .c100.p56 .fill, .c100.p57 .bar:after, .c100.p57 .fill, .c100.p58 .bar:after, .c100.p58 .fill, .c100.p59 .bar:after, .c100.p59 .fill, .c100.p60 .bar:after, .c100.p60 .fill, .c100.p61 .bar:after, .c100.p61 .fill, .c100.p62 .bar:after, .c100.p62 .fill, .c100.p63 .bar:after, .c100.p63 .fill, .c100.p64 .bar:after, .c100.p64 .fill, .c100.p65 .bar:after, .c100.p65 .fill, .c100.p66 .bar:after, .c100.p66 .fill, .c100.p67 .bar:after, .c100.p67 .fill, .c100.p68 .bar:after, .c100.p68 .fill, .c100.p69 .bar:after, .c100.p69 .fill, .c100.p70 .bar:after, .c100.p70 .fill, .c100.p71 .bar:after, .c100.p71 .fill, .c100.p72 .bar:after, .c100.p72 .fill, .c100.p73 .bar:after, .c100.p73 .fill, .c100.p74 .bar:after, .c100.p74 .fill, .c100.p75 .bar:after, .c100.p75 .fill, .c100.p76 .bar:after, .c100.p76 .fill, .c100.p77 .bar:after, .c100.p77 .fill, .c100.p78 .bar:after, .c100.p78 .fill, .c100.p79 .bar:after, .c100.p79 .fill, .c100.p80 .bar:after, .c100.p80 .fill, .c100.p81 .bar:after, .c100.p81 .fill, .c100.p82 .bar:after, .c100.p82 .fill, .c100.p83 .bar:after, .c100.p83 .fill, .c100.p84 .bar:after, .c100.p84 .fill, .c100.p85 .bar:after, .c100.p85 .fill, .c100.p86 .bar:after, .c100.p86 .fill, .c100.p87 .bar:after, .c100.p87 .fill, .c100.p88 .bar:after, .c100.p88 .fill, .c100.p89 .bar:after, .c100.p89 .fill, .c100.p90 .bar:after, .c100.p90 .fill, .c100.p91 .bar:after, .c100.p91 .fill, .c100.p92 .bar:after, .c100.p92 .fill, .c100.p93 .bar:after, .c100.p93 .fill, .c100.p94 .bar:after, .c100.p94 .fill, .c100.p95 .bar:after, .c100.p95 .fill, .c100.p96 .bar:after, .c100.p96 .fill, .c100.p97 .bar:after, .c100.p97 .fill, .c100.p98 .bar:after, .c100.p98 .fill, .c100.p99 .bar:after, .c100.p99 .fill, .c100.p100 .bar:after, .c100.p100 .fill {
  transform: rotate(180deg);
}

.c100 {
  position: relative;
  font-size: 54px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  float: left;
  margin: 0 0.1em 0.1em 0;
  background-color: transparent;
}

.c100 *, .c100 *:before, .c100 *:after {
  box-sizing: content-box;
}

.c100.center {
  float: none;
  margin: 0 auto;
}

.c100 > span {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  width: 5em;
  line-height: 5em;
  font-size: 0.2em;
  color: transparent;
  display: block;
  text-align: center;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}

.c100:after {
  position: absolute;
  top: 0.06em;
  left: 0.06em;
  display: block;
  content: " ";
  border-radius: 50%;
  background-color: #f49787;
  width: 0.88em;
  height: 0.88em;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.c100 .slice {
  position: absolute;
  width: 1em;
  height: 1em;
  clip: rect(0em, 1em, 1em, 0.5em);
}

.c100.p1 .bar {
  transform: rotate(3.6deg);
}

.c100.p2 .bar {
  transform: rotate(7.2deg);
}

.c100.p3 .bar {
  transform: rotate(10.8deg);
}

.c100.p4 .bar {
  transform: rotate(14.4deg);
}

.c100.p5 .bar {
  transform: rotate(18deg);
}

.c100.p6 .bar {
  transform: rotate(21.6deg);
}

.c100.p7 .bar {
  transform: rotate(25.2deg);
}

.c100.p8 .bar {
  transform: rotate(28.8deg);
}

.c100.p9 .bar {
  transform: rotate(32.4deg);
}

.c100.p10 .bar {
  transform: rotate(36deg);
}

.c100.p11 .bar {
  transform: rotate(39.6deg);
}

.c100.p12 .bar {
  transform: rotate(43.2deg);
}

.c100.p13 .bar {
  transform: rotate(46.8deg);
}

.c100.p14 .bar {
  transform: rotate(50.4deg);
}

.c100.p15 .bar {
  transform: rotate(54deg);
}

.c100.p16 .bar {
  transform: rotate(57.6deg);
}

.c100.p17 .bar {
  transform: rotate(61.2deg);
}

.c100.p18 .bar {
  transform: rotate(64.8deg);
}

.c100.p19 .bar {
  transform: rotate(68.4deg);
}

.c100.p20 .bar {
  transform: rotate(72deg);
}

.c100.p21 .bar {
  transform: rotate(75.6deg);
}

.c100.p22 .bar {
  transform: rotate(79.2deg);
}

.c100.p23 .bar {
  transform: rotate(82.8deg);
}

.c100.p24 .bar {
  transform: rotate(86.4deg);
}

.c100.p25 .bar {
  transform: rotate(90deg);
}

.c100.p26 .bar {
  transform: rotate(93.6deg);
}

.c100.p27 .bar {
  transform: rotate(97.2deg);
}

.c100.p28 .bar {
  transform: rotate(100.8deg);
}

.c100.p29 .bar {
  transform: rotate(104.4deg);
}

.c100.p30 .bar {
  transform: rotate(108deg);
}

.c100.p31 .bar {
  transform: rotate(111.6deg);
}

.c100.p32 .bar {
  transform: rotate(115.2deg);
}

.c100.p33 .bar {
  transform: rotate(118.8deg);
}

.c100.p34 .bar {
  transform: rotate(122.4deg);
}

.c100.p35 .bar {
  transform: rotate(126deg);
}

.c100.p36 .bar {
  transform: rotate(129.6deg);
}

.c100.p37 .bar {
  transform: rotate(133.2deg);
}

.c100.p38 .bar {
  transform: rotate(136.8deg);
}

.c100.p39 .bar {
  transform: rotate(140.4deg);
}

.c100.p40 .bar {
  transform: rotate(144deg);
}

.c100.p41 .bar {
  transform: rotate(147.6deg);
}

.c100.p42 .bar {
  transform: rotate(151.2deg);
}

.c100.p43 .bar {
  transform: rotate(154.8deg);
}

.c100.p44 .bar {
  transform: rotate(158.4deg);
}

.c100.p45 .bar {
  transform: rotate(162deg);
}

.c100.p46 .bar {
  transform: rotate(165.6deg);
}

.c100.p47 .bar {
  transform: rotate(169.2deg);
}

.c100.p48 .bar {
  transform: rotate(172.8deg);
}

.c100.p49 .bar {
  transform: rotate(176.4deg);
}

.c100.p50 .bar {
  transform: rotate(180deg);
}

.c100.p51 .bar {
  transform: rotate(183.6deg);
}

.c100.p52 .bar {
  transform: rotate(187.2deg);
}

.c100.p53 .bar {
  transform: rotate(190.8deg);
}

.c100.p54 .bar {
  transform: rotate(194.4deg);
}

.c100.p55 .bar {
  transform: rotate(198deg);
}

.c100.p56 .bar {
  transform: rotate(201.6deg);
}

.c100.p57 .bar {
  transform: rotate(205.2deg);
}

.c100.p58 .bar {
  transform: rotate(208.8deg);
}

.c100.p59 .bar {
  transform: rotate(212.4deg);
}

.c100.p60 .bar {
  transform: rotate(216deg);
}

.c100.p61 .bar {
  transform: rotate(219.6deg);
}

.c100.p62 .bar {
  transform: rotate(223.2deg);
}

.c100.p63 .bar {
  transform: rotate(226.8deg);
}

.c100.p64 .bar {
  transform: rotate(230.4deg);
}

.c100.p65 .bar {
  transform: rotate(234deg);
}

.c100.p66 .bar {
  transform: rotate(237.6deg);
}

.c100.p67 .bar {
  transform: rotate(241.2deg);
}

.c100.p68 .bar {
  transform: rotate(244.8deg);
}

.c100.p69 .bar {
  transform: rotate(248.4deg);
}

.c100.p70 .bar {
  transform: rotate(252deg);
}

.c100.p71 .bar {
  transform: rotate(255.6deg);
}

.c100.p72 .bar {
  transform: rotate(259.2deg);
}

.c100.p73 .bar {
  transform: rotate(262.8deg);
}

.c100.p74 .bar {
  transform: rotate(266.4deg);
}

.c100.p75 .bar {
  transform: rotate(270deg);
}

.c100.p76 .bar {
  transform: rotate(273.6deg);
}

.c100.p77 .bar {
  transform: rotate(277.2deg);
}

.c100.p78 .bar {
  transform: rotate(280.8deg);
}

.c100.p79 .bar {
  transform: rotate(284.4deg);
}

.c100.p80 .bar {
  transform: rotate(288deg);
}

.c100.p81 .bar {
  transform: rotate(291.6deg);
}

.c100.p82 .bar {
  transform: rotate(295.2deg);
}

.c100.p83 .bar {
  transform: rotate(298.8deg);
}

.c100.p84 .bar {
  transform: rotate(302.4deg);
}

.c100.p85 .bar {
  transform: rotate(306deg);
}

.c100.p86 .bar {
  transform: rotate(309.6deg);
}

.c100.p87 .bar {
  transform: rotate(313.2deg);
}

.c100.p88 .bar {
  transform: rotate(316.8deg);
}

.c100.p89 .bar {
  transform: rotate(320.4deg);
}

.c100.p90 .bar {
  transform: rotate(324deg);
}

.c100.p91 .bar {
  transform: rotate(327.6deg);
}

.c100.p92 .bar {
  transform: rotate(331.2deg);
}

.c100.p93 .bar {
  transform: rotate(334.8deg);
}

.c100.p94 .bar {
  transform: rotate(338.4deg);
}

.c100.p95 .bar {
  transform: rotate(342deg);
}

.c100.p96 .bar {
  transform: rotate(345.6deg);
}

.c100.p97 .bar {
  transform: rotate(349.2deg);
}

.c100.p98 .bar {
  transform: rotate(352.8deg);
}

.c100.p99 .bar {
  transform: rotate(356.4deg);
}

.c100.p100 .bar {
  transform: rotate(360deg);
}

.c100:hover {
  cursor: default;
}

.c100:hover > span {
  width: 3.33em;
  line-height: 3.33em;
  font-size: 0.3em;
  color: #ee5a40;
}

.c100:hover:after {
  top: 0.06em;
  left: 0.06em;
  width: 0.88em;
  height: 0.88em;
}

.c100.dark {
  background-color: #777;
}

.c100.dark .bar,
.c100.dark .fill {
  border-color: #c6ff00 !important;
}

.c100.dark > span {
  color: #777;
}

.c100.dark:after {
  background-color: #666;
}

.c100.dark:hover > span {
  color: #c6ff00;
}

.c100.green .bar, .c100.green .fill {
  border-color: #4db53c !important;
}

.c100.green:hover > span {
  color: #4db53c;
}

.c100.green.dark .bar, .c100.green.dark .fill {
  border-color: #5fd400 !important;
}

.c100.green.dark:hover > span {
  color: #5fd400;
}

.c100.orange .bar, .c100.orange .fill {
  border-color: #dd9d22 !important;
}

.c100.orange:hover > span {
  color: #dd9d22;
}

.c100.orange.dark .bar, .c100.orange.dark .fill {
  border-color: #e08833 !important;
}

.c100.orange.dark:hover > span {
  color: #e08833;
}

/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Makes grid more robust so that it can be used with other block elements like lists
 */
.uk-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * DEPRECATED
 * Micro clearfix
 * Can't use `table` because it creates a 1px gap when it becomes a flex item, only in Webkit
 */
.uk-grid:before,
.uk-grid:after {
  content: "";
  display: block;
  overflow: hidden;
}

.uk-grid:after {
  clear: both;
}

/*
 * Grid cell
 * 1. Space is allocated solely based on content dimensions
 * 2. Makes grid more robust so that it can be used with other block elements
 * 3. DEPRECATED Using `float` to support IE9
 */
.uk-grid > * {
  /* 1 */
  -ms-flex: none;
  flex: none;
  /* 2 */
  margin: 0;
  /* 3 */
  float: left;
}

/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  margin-bottom: 0;
}

/* Grid gutter
 ========================================================================== */
/*
 * Default gutter
 */
/* Horizontal */
.uk-grid {
  margin-left: -40px;
}

.uk-grid > * {
  padding-left: 40px;
}

/* Vertical */
.uk-grid + .uk-grid,
.uk-grid-margin,
.uk-grid > * > .uk-panel + .uk-panel {
  margin-top: 60px;
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -90px;
  }
  .uk-grid > * {
    padding-left: 90px;
  }
  /* Vertical */
  .uk-grid + .uk-grid,
  .uk-grid-margin,
  .uk-grid > * > .uk-panel + .uk-panel {
    margin-top: 80px;
  }
}

/*
 * Collapse gutter
 */
/* Horizontal */
.uk-grid-collapse {
  margin-left: 0;
}

.uk-grid-collapse > * {
  padding-left: 0;
}

/* Vertical */
.uk-grid-collapse + .uk-grid-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-collapse > * > .uk-panel + .uk-panel {
  margin-top: 0;
}

/*
 * Small gutter
 */
/* Horizontal */
.uk-grid-small {
  margin-left: -20px;
}

.uk-grid-small > * {
  padding-left: 20px;
}

/* Vertical */
.uk-grid-small + .uk-grid-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-small > * > .uk-panel + .uk-panel {
  margin-top: 20px;
}

/*
 * Medium gutter
 */
/* Horizontal */
.uk-grid-medium {
  margin-left: -40px;
}

.uk-grid-medium > * {
  padding-left: 40px;
}

/* Vertical */
.uk-grid-medium + .uk-grid-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-medium > * > .uk-panel + .uk-panel {
  margin-top: 60px;
}

/*
 * Large gutter
 */
/* Large screen and bigger */
@media (min-width: 960px) {
  /* Horizontal */
  .uk-grid-large {
    margin-left: -90px;
  }
  .uk-grid-large > * {
    padding-left: 90px;
  }
  /* Vertical */
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 80px;
  }
}

/* Extra Large screens */
@media (min-width: 1220px) {
  /* Horizontal */
  .uk-grid-large {
    margin-left: -90px;
  }
  .uk-grid-large > * {
    padding-left: 90px;
  }
  /* Vertical */
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 70px;
  }
}

/* Modifier: `uk-grid-divider`
 ========================================================================== */
/*
 * Horizontal divider
 * Only works with the default gutter. Does not work with gutter collapse, small or large.
 * Does not work with `uk-push-*`, `uk-pull-*` and not if the columns float into the next row.
 */
.uk-grid-divider:not(:empty) {
  margin-left: -40px;
  margin-right: -40px;
}

.uk-grid-divider > * {
  padding-left: 40px;
  padding-right: 40px;
}

.uk-grid-divider > [class*='uk-width-1-']:not(.uk-width-1-1):nth-child(n+2),
.uk-grid-divider > [class*='uk-width-2-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-3-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-4-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-5-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-6-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-7-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-8-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-9-']:nth-child(n+2) {
  border-left: 1px solid #ddd;
}

/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-grid-divider > [class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
}

/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-grid-divider > [class*='uk-width-large-']:not(.uk-width-large-1-1):nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  /*
     * Large gutter
     */
  .uk-grid-divider:not(:empty) {
    margin-left: -90px;
    margin-right: -90px;
  }
  .uk-grid-divider > * {
    padding-left: 90px;
    padding-right: 90px;
  }
  .uk-grid-divider:empty {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

/*
 * Vertical divider
 */
.uk-grid-divider:empty {
  margin-top: 60px;
  margin-bottom: 60px;
  border-top: 1px solid #ddd;
}

/* Match panels in grids
 ========================================================================== */
/*
 * 1. Behave like a block element
 */
.uk-grid-match > * {
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.uk-grid-match > * > * {
  /* 1 */
  -ms-flex: none;
  flex: none;
  box-sizing: border-box;
  width: 100%;
}

/* Even grid cell widths
 ========================================================================== */
[class*='uk-grid-width'] > * {
  box-sizing: border-box;
  width: 100%;
}

.uk-grid-width-1-2 > * {
  width: 50%;
}

.uk-grid-width-1-3 > * {
  width: 33.333%;
}

.uk-grid-width-1-4 > * {
  width: 25%;
}

.uk-grid-width-1-5 > * {
  width: 20%;
}

.uk-grid-width-1-6 > * {
  width: 16.666%;
}

.uk-grid-width-1-10 > * {
  width: 10%;
}

.uk-grid-width-auto > * {
  width: auto;
}

/* Phone landscape and bigger */
@media (min-width: 480px) {
  .uk-grid-width-small-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-small-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-small-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-small-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-small-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-small-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-small-1-10 > * {
    width: 10%;
  }
}

/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-grid-width-medium-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-medium-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-medium-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-medium-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-medium-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-medium-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-medium-1-10 > * {
    width: 10%;
  }
}

/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-grid-width-large-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-large-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-large-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-large-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-large-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-large-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-large-1-10 > * {
    width: 10%;
  }
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-grid-width-xlarge-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-xlarge-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-xlarge-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-xlarge-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-xlarge-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-xlarge-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-xlarge-1-10 > * {
    width: 10%;
  }
}

/* Sub-objects: `uk-width-*`
 ========================================================================== */
[class*='uk-width'] {
  box-sizing: border-box;
  width: 100%;
}

/*
 * Widths
 */
/* Whole */
.uk-width-1-1 {
  width: 100%;
}

/* Halves */
.uk-width-1-2,
.uk-width-2-4,
.uk-width-3-6,
.uk-width-5-10 {
  width: 50%;
}

/* Thirds */
.uk-width-1-3,
.uk-width-2-6 {
  width: 33.333%;
}

.uk-width-2-3,
.uk-width-4-6 {
  width: 66.666%;
}

/* Quarters */
.uk-width-1-4 {
  width: 25%;
}

.uk-width-3-4 {
  width: 75%;
}

/* Fifths */
.uk-width-1-5,
.uk-width-2-10 {
  width: 20%;
}

.uk-width-2-5,
.uk-width-4-10 {
  width: 40%;
}

.uk-width-3-5,
.uk-width-6-10 {
  width: 60%;
}

.uk-width-4-5,
.uk-width-8-10 {
  width: 80%;
}

/* Sixths */
.uk-width-1-6 {
  width: 16.666%;
}

.uk-width-5-6 {
  width: 83.333%;
}

/* Tenths */
.uk-width-1-10 {
  width: 10%;
}

.uk-width-3-10 {
  width: 30%;
}

.uk-width-7-10 {
  width: 70%;
}

.uk-width-9-10 {
  width: 90%;
}

/* Phone landscape and bigger */
@media (min-width: 480px) {
  /* Whole */
  .uk-width-small-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-small-1-2,
  .uk-width-small-2-4,
  .uk-width-small-3-6,
  .uk-width-small-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-small-1-3,
  .uk-width-small-2-6 {
    width: 33.333%;
  }
  .uk-width-small-2-3,
  .uk-width-small-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-small-1-4 {
    width: 25%;
  }
  .uk-width-small-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-small-1-5,
  .uk-width-small-2-10 {
    width: 20%;
  }
  .uk-width-small-2-5,
  .uk-width-small-4-10 {
    width: 40%;
  }
  .uk-width-small-3-5,
  .uk-width-small-6-10 {
    width: 60%;
  }
  .uk-width-small-4-5,
  .uk-width-small-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-small-1-6 {
    width: 16.666%;
  }
  .uk-width-small-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-small-1-10 {
    width: 10%;
  }
  .uk-width-small-3-10 {
    width: 30%;
  }
  .uk-width-small-7-10 {
    width: 70%;
  }
  .uk-width-small-9-10 {
    width: 90%;
  }
}

/* Tablet and bigger */
@media (min-width: 768px) {
  /* Whole */
  .uk-width-medium-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-medium-1-2,
  .uk-width-medium-2-4,
  .uk-width-medium-3-6,
  .uk-width-medium-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-medium-1-3,
  .uk-width-medium-2-6 {
    width: 33.333%;
  }
  .uk-width-medium-2-3,
  .uk-width-medium-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-medium-1-4 {
    width: 25%;
  }
  .uk-width-medium-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-medium-1-5,
  .uk-width-medium-2-10 {
    width: 20%;
  }
  .uk-width-medium-2-5,
  .uk-width-medium-4-10 {
    width: 40%;
  }
  .uk-width-medium-3-5,
  .uk-width-medium-6-10 {
    width: 60%;
  }
  .uk-width-medium-4-5,
  .uk-width-medium-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-medium-1-6 {
    width: 16.666%;
  }
  .uk-width-medium-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-medium-1-10 {
    width: 10%;
  }
  .uk-width-medium-3-10 {
    width: 30%;
  }
  .uk-width-medium-7-10 {
    width: 70%;
  }
  .uk-width-medium-9-10 {
    width: 90%;
  }
}

/* Desktop and bigger */
@media (min-width: 960px) {
  /* Whole */
  .uk-width-large-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-large-1-2,
  .uk-width-large-2-4,
  .uk-width-large-3-6,
  .uk-width-large-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-large-1-3,
  .uk-width-large-2-6 {
    width: 33.333%;
  }
  .uk-width-large-2-3,
  .uk-width-large-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-large-1-4 {
    width: 25%;
  }
  .uk-width-large-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-large-1-5,
  .uk-width-large-2-10 {
    width: 20%;
  }
  .uk-width-large-2-5,
  .uk-width-large-4-10 {
    width: 40%;
  }
  .uk-width-large-3-5,
  .uk-width-large-6-10 {
    width: 60%;
  }
  .uk-width-large-4-5,
  .uk-width-large-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-large-1-6 {
    width: 16.666%;
  }
  .uk-width-large-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-large-1-10 {
    width: 10%;
  }
  .uk-width-large-3-10 {
    width: 30%;
  }
  .uk-width-large-7-10 {
    width: 70%;
  }
  .uk-width-large-9-10 {
    width: 90%;
  }
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  /* Whole */
  .uk-width-xlarge-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-xlarge-1-2,
  .uk-width-xlarge-2-4,
  .uk-width-xlarge-3-6,
  .uk-width-xlarge-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-xlarge-1-3,
  .uk-width-xlarge-2-6 {
    width: 33.333%;
  }
  .uk-width-xlarge-2-3,
  .uk-width-xlarge-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-xlarge-1-4 {
    width: 25%;
  }
  .uk-width-xlarge-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-xlarge-1-5,
  .uk-width-xlarge-2-10 {
    width: 20%;
  }
  .uk-width-xlarge-2-5,
  .uk-width-xlarge-4-10 {
    width: 40%;
  }
  .uk-width-xlarge-3-5,
  .uk-width-xlarge-6-10 {
    width: 60%;
  }
  .uk-width-xlarge-4-5,
  .uk-width-xlarge-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-xlarge-1-6 {
    width: 16.666%;
  }
  .uk-width-xlarge-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-xlarge-1-10 {
    width: 10%;
  }
  .uk-width-xlarge-3-10 {
    width: 30%;
  }
  .uk-width-xlarge-7-10 {
    width: 70%;
  }
  .uk-width-xlarge-9-10 {
    width: 90%;
  }
}

/* Sub-object: `uk-push-*` and `uk-pull-*`
 ========================================================================== */
/*
 * Source ordering
 * Works only with `uk-width-medium-*`
 */
/* Tablet and bigger */
@media (min-width: 768px) {
  [class*='uk-push-'],
  [class*='uk-pull-'] {
    position: relative;
  }
  /*
     * Push
     */
  /* Halves */
  .uk-push-1-2,
  .uk-push-2-4,
  .uk-push-3-6,
  .uk-push-5-10 {
    left: 50%;
  }
  /* Thirds */
  .uk-push-1-3,
  .uk-push-2-6 {
    left: 33.333%;
  }
  .uk-push-2-3,
  .uk-push-4-6 {
    left: 66.666%;
  }
  /* Quarters */
  .uk-push-1-4 {
    left: 25%;
  }
  .uk-push-3-4 {
    left: 75%;
  }
  /* Fifths */
  .uk-push-1-5,
  .uk-push-2-10 {
    left: 20%;
  }
  .uk-push-2-5,
  .uk-push-4-10 {
    left: 40%;
  }
  .uk-push-3-5,
  .uk-push-6-10 {
    left: 60%;
  }
  .uk-push-4-5,
  .uk-push-8-10 {
    left: 80%;
  }
  /* Sixths */
  .uk-push-1-6 {
    left: 16.666%;
  }
  .uk-push-5-6 {
    left: 83.333%;
  }
  /* Tenths */
  .uk-push-1-10 {
    left: 10%;
  }
  .uk-push-3-10 {
    left: 30%;
  }
  .uk-push-7-10 {
    left: 70%;
  }
  .uk-push-9-10 {
    left: 90%;
  }
  /*
     * Pull
     */
  /* Halves */
  .uk-pull-1-2,
  .uk-pull-2-4,
  .uk-pull-3-6,
  .uk-pull-5-10 {
    left: -50%;
  }
  /* Thirds */
  .uk-pull-1-3,
  .uk-pull-2-6 {
    left: -33.333%;
  }
  .uk-pull-2-3,
  .uk-pull-4-6 {
    left: -66.666%;
  }
  /* Quarters */
  .uk-pull-1-4 {
    left: -25%;
  }
  .uk-pull-3-4 {
    left: -75%;
  }
  /* Fifths */
  .uk-pull-1-5,
  .uk-pull-2-10 {
    left: -20%;
  }
  .uk-pull-2-5,
  .uk-pull-4-10 {
    left: -40%;
  }
  .uk-pull-3-5,
  .uk-pull-6-10 {
    left: -60%;
  }
  .uk-pull-4-5,
  .uk-pull-8-10 {
    left: -80%;
  }
  /* Sixths */
  .uk-pull-1-6 {
    left: -16.666%;
  }
  .uk-pull-5-6 {
    left: -83.333%;
  }
  /* Tenths */
  .uk-pull-1-10 {
    left: -10%;
  }
  .uk-pull-3-10 {
    left: -30%;
  }
  .uk-pull-7-10 {
    left: -70%;
  }
  .uk-pull-9-10 {
    left: -90%;
  }
}

/* ========================================================================
   Component: Panel
 ========================================================================== */
/*
 * 1. Needed for `a` elements
 * 2. Create position context for badges
 */
.uk-panel {
  /* 1 */
  display: block;
  /* 2 */
  position: relative;
}

/*
 * Allow panels to be anchors
 */
.uk-panel,
.uk-panel:hover {
  text-decoration: none;
}

/*
 * Micro clearfix to make panels more robust
 */
.uk-panel:before,
.uk-panel:after {
  content: "";
  display: table;
}

.uk-panel:after {
  clear: both;
}

/*
 * Remove margin from the last-child if not `uk-widget-title`
 */
.uk-panel > :not(.uk-panel-title):last-child {
  margin-bottom: 0;
}

/* Sub-object: `uk-panel-title`
 ========================================================================== */
.uk-panel-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
  text-transform: none;
  color: #333840;
}

/* Sub-object: `uk-panel-badge`
 ========================================================================== */
.uk-panel-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

/* Sub-object: `uk-panel-teaser`
 ========================================================================== */
.uk-panel-teaser {
  margin-bottom: 15px;
}

/* Sub-object: `uk-panel-body`
 ========================================================================== */
.uk-panel-body {
  padding: 15px;
}

/* Modifier: `uk-panel-box`
 ========================================================================== */
.uk-panel-box {
  padding: 15px;
  background: #f5f5f5;
  color: #333840;
}

.uk-panel-box-hover:hover {
  color: #333840;
}

.uk-panel-box .uk-panel-title {
  color: #333840;
}

.uk-panel-box .uk-panel-badge {
  top: 10px;
  right: 10px;
}

.uk-panel-box > .uk-panel-teaser {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}

/*
 * Nav in panel
 */
.uk-panel-box > .uk-nav-side {
  margin: 0 -15px;
}

/*
 * Sub-modifier: `uk-panel-box-primary`
 */
.uk-panel-box-primary {
  background-color: #ebf7fd;
  color: #2d7091;
}

.uk-panel-box-primary-hover:hover {
  color: #2d7091;
}

.uk-panel-box-primary .uk-panel-title {
  color: #2d7091;
}

/*
 * Sub-modifier: `uk-panel-box-secondary`
 */
.uk-panel-box-secondary {
  background-color: #eee;
  color: #333840;
}

.uk-panel-box-secondary-hover:hover {
  color: #333840;
}

.uk-panel-box-secondary .uk-panel-title {
  color: #333840;
}

/* Modifier: `uk-panel-hover`
 ========================================================================== */
.uk-panel-hover {
  padding: 15px;
  color: #333840;
}

.uk-panel-hover:hover {
  background: #f5f5f5;
  color: #333840;
}

.uk-panel-hover .uk-panel-badge {
  top: 10px;
  right: 10px;
}

.uk-panel-hover > .uk-panel-teaser {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}

/* Modifier: `uk-panel-header`
 ========================================================================== */
.uk-panel-header .uk-panel-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  color: #333840;
}

/* Modifier: `uk-panel-space`
 ========================================================================== */
.uk-panel-space {
  padding: 30px;
}

.uk-panel-space .uk-panel-badge {
  top: 30px;
  right: 30px;
}

/* Modifier: `uk-panel-divider`
 ========================================================================== */
.uk-panel + .uk-panel-divider {
  margin-top: 50px !important;
}

.uk-panel + .uk-panel-divider:before {
  content: "";
  display: block;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  border-top: 1px solid #ddd;
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-panel + .uk-panel-divider {
    margin-top: 70px !important;
  }
  .uk-panel + .uk-panel-divider:before {
    top: -35px;
  }
}

/* ========================================================================
   Component: Block
 ========================================================================== */
.uk-block {
  position: relative;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Phone landscape and bigger */
@media (min-width: 768px) {
  .uk-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/*
 * Micro clearfix to make blocks more robust
 */
.uk-block:before,
.uk-block:after {
  content: "";
  display: table;
}

.uk-block:after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.uk-block > :last-child {
  margin-bottom: 0;
}

/* Padding Modifier
 ========================================================================== */
/*
 * Large padding
 */
.uk-block-large {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Tablets and bigger */
@media (min-width: 768px) {
  .uk-block-large {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-block-large {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* Color Modifier
 ========================================================================== */
/*
 * Default
 */
.uk-block-default {
  background: #fff;
}

/*
 * Muted
 */
.uk-block-muted {
  background: #f9f9f9;
}

/*
 * Primary
 */
.uk-block-primary {
  background: #478fa7;
}

/*
 * Secondary
 */
.uk-block-secondary {
  background: #222;
}

/* ========================================================================
   Component: Article
 ========================================================================== */
/*
 * Micro clearfix to make articles more robust
 */
.uk-article:before,
.uk-article:after {
  content: "";
  display: table;
}

.uk-article:after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.uk-article > :last-child {
  margin-bottom: 0;
}

/*
 * Vertical gutter for articles
 */
.uk-article + .uk-article {
  margin-top: 25px;
}

/* Sub-object `uk-article-title`
 ========================================================================== */
.uk-article-title {
  font-size: 36px;
  line-height: 42px;
  font-weight: normal;
  text-transform: none;
}

.uk-article-title a {
  color: inherit;
  text-decoration: none;
}

/* Sub-object `uk-article-meta`
 ========================================================================== */
.uk-article-meta {
  font-size: 12px;
  line-height: 18px;
  color: #999;
}

/* Sub-object `uk-article-lead`
 ========================================================================== */
.uk-article-lead {
  color: #333840;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}

/* Sub-object `uk-article-divider`
 ========================================================================== */
.uk-article-divider {
  margin-bottom: 25px;
  border-color: #ddd;
}

* + .uk-article-divider {
  margin-top: 25px;
}

/* ========================================================================
   Component: Comment
 ========================================================================== */
/* Sub-object `uk-comment-header`
 ========================================================================== */
.uk-comment-header {
  margin-bottom: 15px;
}

/*
 * Micro clearfix
 */
.uk-comment-header:before,
.uk-comment-header:after {
  content: "";
  display: table;
}

.uk-comment-header:after {
  clear: both;
}

/* Sub-object `uk-comment-avatar`
 ========================================================================== */
.uk-comment-avatar {
  margin-right: 15px;
  float: left;
}

/* Sub-object `uk-comment-title`
 ========================================================================== */
.uk-comment-title {
  margin: 5px 0 0 0;
  font-size: 16px;
  line-height: 22px;
}

/* Sub-object `uk-comment-meta`
 ========================================================================== */
.uk-comment-meta {
  margin: 2px 0 0 0;
  font-size: 11px;
  line-height: 16px;
  color: #999;
}

/* Sub-object `uk-comment-body`
 ========================================================================== */
/*
 * Remove margin from the last-child
 */
.uk-comment-body > :last-child {
  margin-bottom: 0;
}

/* Sub-object `uk-comment-list`
 ========================================================================== */
.uk-comment-list {
  padding: 0;
  list-style: none;
}

.uk-comment-list .uk-comment + ul {
  margin: 15px 0 0 0;
  list-style: none;
}

.uk-comment-list > li:nth-child(n+2),
.uk-comment-list .uk-comment + ul > li:nth-child(n+2) {
  margin-top: 15px;
}

/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-comment-list .uk-comment + ul {
    padding-left: 100px;
  }
}

/* Modifier `uk-comment-primary`
 ========================================================================== */
/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Background image always covers and centers its element
 */
.uk-cover-background {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

/*
 * Emulates image cover, works with video and image elements
 * 1. Parent container which clips resized object
 * 2. Resizes the object to always covers its container
 * 3. Reset the responsive image CSS
 * 4. Center object
 */
/* 1 */
.uk-cover {
  overflow: hidden;
}

.uk-cover-object {
  /* 2 */
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  /* 3 */
  max-width: none;
  /* 4 */
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*
 * To center iframes use `data-uk-cover` JavaScript
 */
[data-uk-cover] {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ========================================================================
   Component: Nav
 ========================================================================== */
.uk-nav,
.uk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Items
 */
.uk-nav li > a {
  display: block;
  text-decoration: none;
}

.uk-nav > li > a {
  padding: 5px 15px;
}

/*
 * Nested items
 */
.uk-nav ul {
  padding-left: 15px;
}

.uk-nav ul a {
  padding: 2px 0;
}

/*
 * Item subtitle
 */
.uk-nav li > a > div {
  font-size: 12px;
  line-height: 18px;
}

/* Sub-object: `uk-nav-header`
 ========================================================================== */
.uk-nav-header {
  padding: 5px 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}

.uk-nav-header:not(:first-child) {
  margin-top: 15px;
}

/* Sub-object: `uk-nav-divider`
 ========================================================================== */
.uk-nav-divider {
  margin: 9px 15px;
}

/* Sub-object: `uk-nav-sub`
 ========================================================================== */
/*
 * `ul` needed for higher specificity to override padding
 */
ul.uk-nav-sub {
  padding: 5px 0 5px 15px;
}

/* Modifier: `uk-nav-parent-icon`
 ========================================================================== */
.uk-nav-parent-icon > .uk-parent > a:after {
  content: "";
  width: 20px;
  margin-right: -10px;
  float: right;
  font-family: FontAwesome;
  text-align: center;
}

.uk-nav-parent-icon > .uk-parent.uk-open > a:after {
  content: "";
}

/* Modifier `uk-nav-side`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-side > li > a {
  color: #333840;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-nav-side > li > a:hover,
.uk-nav-side > li > a:focus {
  background: rgba(0, 0, 0, 0.05);
  color: #333840;
  /* 2 */
  outline: none;
}

/* Active */
.uk-nav-side > li.uk-active > a {
  background: #478fa7;
  color: #fff;
}

/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-side .uk-nav-header {
  color: #333840;
}

/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-side .uk-nav-divider {
  border-top: 1px solid #ddd;
}

/*
 * Nested items
 */
.uk-nav-side ul a {
  color: #07D;
}

.uk-nav-side ul a:hover {
  color: #059;
}

/* Modifier `uk-nav-dropdown`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-dropdown > li > a {
  color: #333840;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-nav-dropdown > li > a:hover,
.uk-nav-dropdown > li > a:focus {
  background: #478fa7;
  color: #fff;
  /* 2 */
  outline: none;
}

/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-dropdown .uk-nav-header {
  color: #999;
}

/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-dropdown .uk-nav-divider {
  border-top: 1px solid #ddd;
}

/*
 * Nested items
 */
.uk-nav-dropdown ul a {
  color: #07D;
}

.uk-nav-dropdown ul a:hover {
  color: #059;
}

/* Modifier `uk-nav-navbar`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-navbar > li > a {
  color: #333840;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-nav-navbar > li > a:hover,
.uk-nav-navbar > li > a:focus {
  background: #478fa7;
  color: #fff;
  /* 2 */
  outline: none;
}

/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-navbar .uk-nav-header {
  color: #999;
}

/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-navbar .uk-nav-divider {
  border-top: 1px solid #ddd;
}

/*
 * Nested items
 */
.uk-nav-navbar ul a {
  color: #07D;
}

.uk-nav-navbar ul a:hover {
  color: #059;
}

/* Modifier `uk-nav-offcanvas`
 ========================================================================== */
/*
 * Items
 */
.uk-nav-offcanvas > li > a {
  color: #ccc;
  padding: 10px 15px;
}

/*
 * Hover
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-nav-offcanvas > .uk-open > a,
html:not(.uk-touch) .uk-nav-offcanvas > li > a:hover,
html:not(.uk-touch) .uk-nav-offcanvas > li > a:focus {
  background: #404040;
  color: #fff;
  /* 2 */
  outline: none;
}

/*
 * Active
 * `html .uk-nav` needed for higher specificity to override hover
 */
html .uk-nav.uk-nav-offcanvas > li.uk-active > a {
  background: #1a1a1a;
  color: #fff;
}

/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-offcanvas .uk-nav-header {
  color: #777;
}

/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-offcanvas .uk-nav-divider {
  border-top: 1px solid #1a1a1a;
}

/*
 * Nested items
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 */
.uk-nav-offcanvas ul a {
  color: #ccc;
}

html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
  color: #fff;
}

/* ========================================================================
   Component: Navbar
 ========================================================================== */
.uk-navbar {
  background: #fff;
  color: #333840;
}

nav.uk-navbar {
  border-bottom: 1px solid #dedeed;
}

/*
 * Micro clearfix
 */
.uk-navbar:before,
.uk-navbar:after {
  content: "";
  display: table;
}

.uk-navbar:after {
  clear: both;
}

/* Sub-object: `uk-navbar-nav`
 ========================================================================== */
.uk-navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}

/*
 * 1. Create position context for dropdowns
 */
.uk-navbar-nav > li {
  float: left;
  /* 1 */
  position: relative;
}

/*
 * 1. Dimensions
 * 2. Style
 */
.uk-navbar-nav > li > a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  /* 1 */
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
  /* 2 */
  color: #333840;
  font-size: 16px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

/* Appear not as link */
.uk-navbar-nav > li > a[href='#'] {
  cursor: text;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-open > a {
  color: #25282e;
  /* 3 */
  outline: none;
}

/* OnClick */
.uk-navbar-nav > li > a:active {
  color: #25282e;
}

/* Active */
.uk-navbar-nav > li.uk-active > a {
  background-color: #f5f5f5;
  color: #333840;
}

.uk-navbar-nav > li > .uk-button {
  font-weight: 600;
}

/* Sub-objects: `uk-navbar-nav-subtitle`
 ========================================================================== */
.uk-navbar-nav .uk-navbar-nav-subtitle {
  line-height: 28px;
}

.uk-navbar-nav-subtitle > div {
  margin-top: -6px;
  font-size: 10px;
  line-height: 12px;
}

/* Sub-objects: `uk-navbar-content`, `uk-navbar-brand`, `uk-navbar-toggle`
 ========================================================================== */
/*
 * Imitate navbar items
 */
.uk-navbar-content,
.uk-navbar-brand,
.uk-navbar-toggle {
  box-sizing: border-box;
  display: block;
  height: 40px;
  padding: 0 15px;
  float: left;
}

/*
 * Helper to center all child elements vertically
 */
.uk-navbar-content:before,
.uk-navbar-brand:before,
.uk-navbar-toggle:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* Sub-objects: `uk-navbar-content`
 ========================================================================== */
/*
 * Better sibling spacing
 */
.uk-navbar-content + .uk-navbar-content:not(.uk-navbar-center) {
  padding-left: 0;
}

/*
 * Link colors
 */
.uk-navbar-content > a:not([class]) {
  color: #07D;
}

.uk-navbar-content > a:not([class]):hover {
  color: #059;
}

/* Sub-objects: `uk-navbar-brand`
 ========================================================================== */
.uk-navbar-brand {
  font-size: 18px;
  color: #333840;
  text-decoration: none;
}

/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-navbar-brand:hover,
.uk-navbar-brand:focus {
  color: #333840;
  text-decoration: none;
  /* 2 */
  outline: none;
}

/* Sub-object: `uk-navbar-toggle`
 ========================================================================== */
.uk-navbar-toggle {
  font-size: 18px;
  color: #333840;
  text-decoration: none;
}

/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus {
  color: #333840;
  text-decoration: none;
  /* 2 */
  outline: none;
}

/*
 * 1. Center icon vertically
 */
.uk-navbar-toggle:after {
  content: "";
  font-family: FontAwesome;
  /* 1 */
  vertical-align: middle;
}

.uk-navbar-toggle-alt:after {
  content: "";
}

/* Sub-object: `uk-navbar-center`
 ========================================================================== */
/*
 * The element with this class needs to be last child in the navbar
 * 1. This hack is needed because other float elements shift centered text
 */
.uk-navbar-center {
  float: none;
  text-align: center;
  /* 1 */
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* Sub-object: `uk-navbar-flip`
 ========================================================================== */
.uk-navbar-flip {
  float: right;
}

/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.uk-subnav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -10px;
  margin-top: -10px;
  /* 2 */
  padding: 0;
  list-style: none;
}

/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `uk-width-*` classes can be applied
 * 3. Create position context for dropdowns
 */
.uk-subnav > * {
  /* 1 */
  -ms-flex: none;
  flex: none;
  /* 2 */
  padding-left: 10px;
  margin-top: 10px;
  /* 3 */
  position: relative;
}

/*
 * DEPRECATED IE9 Support
 */
.uk-subnav:before,
.uk-subnav:after {
  content: "";
  display: block;
  overflow: hidden;
}

.uk-subnav:after {
  clear: both;
}

.uk-subnav > * {
  float: left;
}

/* Items
 ========================================================================== */
.uk-subnav > * > * {
  display: inline-block;
  color: #333840;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.uk-subnav > * > :hover,
.uk-subnav > * > :focus {
  color: #07D;
  text-decoration: none;
}

/*
 * Active
 */
.uk-subnav > .uk-active > * {
  color: #07D;
}

/* Modifier: 'subnav-line'
 ========================================================================== */
.uk-subnav-line > :before {
  content: "";
  display: inline-block;
  height: 10px;
  vertical-align: middle;
}

.uk-subnav-line > :nth-child(n+2):before {
  margin-right: 10px;
  border-left: 1px solid #ddd;
}

/* Modifier: 'subnav-pill'
 ========================================================================== */
.uk-subnav-pill > * > * {
  padding: 3px 9px;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-subnav-pill > * > :hover,
.uk-subnav-pill > * > :focus {
  background: #eee;
  color: #333840;
  text-decoration: none;
  /* 2 */
  outline: none;
}

/*
 * Active
 * `li` needed for higher specificity to override hover
 */
.uk-subnav-pill > .uk-active > * {
  background: #478fa7;
  color: #fff;
}

/* Disabled state
 ========================================================================== */
.uk-subnav > .uk-disabled > * {
  background: none;
  color: #999;
  text-decoration: none;
  cursor: text;
}

/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Remove whitespace between child elements when using `inline-block`
 */
.uk-breadcrumb {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  font-size: 0.001px;
}

/* Items
 ========================================================================== */
/*
 * Reset whitespace hack
 */
.uk-breadcrumb > li {
  font-size: 1rem;
  vertical-align: top;
}

.uk-breadcrumb > li,
.uk-breadcrumb > li > a,
.uk-breadcrumb > li > span {
  display: inline-block;
}

.uk-breadcrumb > li:nth-child(n+2):before {
  content: "/";
  display: inline-block;
  margin: 0 8px;
}

/*
 * Disabled
 */
.uk-breadcrumb > li:not(.uk-active) > span {
  color: #999;
}

/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Center pagination by default
 * 3. Remove whitespace between child elements when using `inline-block`
 */
.uk-pagination {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  text-align: center;
  /* 3 */
  font-size: 0.001px;
}

/*
 * Micro clearfix
 * Needed if `uk-pagination-previous` or `uk-pagination-next` sub-objects are used
 */
.uk-pagination:before,
.uk-pagination:after {
  content: "";
  display: table;
}

.uk-pagination:after {
  clear: both;
}

/* Items
 ========================================================================== */
/*
 * 1. Reset whitespace hack
 * 2. Remove the gap at the bottom of it container
 */
.uk-pagination > li {
  display: inline-block;
  /* 1 */
  font-size: 1rem;
  /* 2 */
  vertical-align: top;
}

.uk-pagination > li:nth-child(n+2) {
  margin-left: 5px;
}

/*
 * 1. Makes pagination more robust against different box-sizing use
 * 2. Reset text-align to center if alignment modifier is used
 */
.uk-pagination > li > a,
.uk-pagination > li > span {
  display: inline-block;
  min-width: 16px;
  padding: 3px 5px;
  line-height: 20px;
  text-decoration: none;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
  text-align: center;
}

/*
 * Links
 */
.uk-pagination > li > a {
  background: #ffffff;
  color: #333840;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-pagination > li > a:hover,
.uk-pagination > li > a:focus {
  background-color: #478fa7;
  color: #2c7b95;
  /* 2 */
  outline: none;
}

/* OnClick */
.uk-pagination > li > a:active {
  background-color: #ddd;
  color: #478fa7;
}

/*
 * Active
 */
.uk-pagination > .uk-active > span {
  background: #d5e8ee;
  color: #fff;
}

/*
 * Disabled
 */
.uk-pagination > .uk-disabled > span {
  background-color: #f5f5f5;
  color: #999;
}

/* Previous and next navigation
 ========================================================================== */
.uk-pagination-previous {
  float: left;
}

.uk-pagination-next {
  float: right;
}

/* Alignment modifiers
 ========================================================================== */
.uk-pagination-left {
  text-align: left;
}

.uk-pagination-right {
  text-align: right;
}

/* ========================================================================
   Component: Tab
 ========================================================================== */
.uk-tab {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 0 solid #ddd;
}

/*
 * Micro clearfix on the deepest container
 */
.uk-tab:before,
.uk-tab:after {
  content: "";
  display: table;
}

.uk-tab:after {
  clear: both;
}

/*
 * Items
 * 1. Create position context for dropdowns
 */
.uk-tab > li {
  margin-bottom: 0;
  float: left;
  /* 1 */
  position: relative;
}

.uk-tab > li > a {
  display: block;
  padding: 8px 12px 8px 12px;
  border: 0 solid transparent;
  border-bottom-width: 0;
  color: #07D;
  text-decoration: none;
}

.uk-tab > li:nth-child(n+2) > a {
  margin-left: 5px;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.uk-tab > li > a:hover,
.uk-tab > li > a:focus,
.uk-tab > li.uk-open > a {
  border-color: #f5f5f5;
  background: #f5f5f5;
  color: #059;
  /* 2 */
  outline: none;
}

.uk-tab > li:not(.uk-active) > a:hover,
.uk-tab > li:not(.uk-active) > a:focus,
.uk-tab > li.uk-open:not(.uk-active) > a {
  margin-bottom: 0;
  padding-bottom: 8px;
}

/* Active */
.uk-tab > li.uk-active > a {
  border-color: #ddd;
  border-bottom-color: transparent;
  background: #fff;
  color: #333840;
}

/* Disabled */
.uk-tab > li.uk-disabled > a {
  color: #999;
  cursor: text;
}

.uk-tab > li.uk-disabled > a:hover,
.uk-tab > li.uk-disabled > a:focus,
.uk-tab > li.uk-disabled.uk-active > a {
  background: none;
  border-color: transparent;
}

/* Modifier: 'tab-flip'
 ========================================================================== */
.uk-tab-flip > li {
  float: right;
}

.uk-tab-flip > li:nth-child(n+2) > a {
  margin-left: 0;
  margin-right: 5px;
}

/* Modifier: 'tab-responsive'
 ========================================================================== */
.uk-tab > li.uk-tab-responsive > a {
  margin-left: 0;
  margin-right: 0;
}

/*
 * Icon
 */
.uk-tab-responsive > a:before {
  content: "\f0c9\00a0";
  font-family: FontAwesome;
}

/* Modifier: 'tab-center'
 ========================================================================== */
.uk-tab-center {
  border-bottom: 0 solid #ddd;
}

.uk-tab-center-bottom {
  border-bottom: none;
  border-top: 0 solid #ddd;
}

.uk-tab-center:before,
.uk-tab-center:after {
  content: "";
  display: table;
}

.uk-tab-center:after {
  clear: both;
}

/*
 * 1. Using `right` to prevent vertical scrollbar caused by centering if to many tabs
 */
.uk-tab-center .uk-tab {
  position: relative;
  right: 50%;
  border: none;
  float: right;
}

.uk-tab-center .uk-tab > li {
  position: relative;
  right: -50%;
}

.uk-tab-center .uk-tab > li > a {
  text-align: center;
}

/* Modifier: 'tab-bottom'
 ========================================================================== */
.uk-tab-bottom {
  border-top: 0 solid #ddd;
  border-bottom: none;
}

.uk-tab-bottom > li {
  margin-top: 0;
  margin-bottom: 0;
}

.uk-tab-bottom > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom-width: 0;
  border-top-width: 0;
}

.uk-tab-bottom > li:not(.uk-active) > a:hover,
.uk-tab-bottom > li:not(.uk-active) > a:focus,
.uk-tab-bottom > li.uk-open:not(.uk-active) > a {
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 8px;
  padding-top: 8px;
}

.uk-tab-bottom > li.uk-active > a {
  border-top-color: transparent;
  border-bottom-color: #ddd;
}

/* Modifier: 'tab-grid'
 ========================================================================== */
/*
 * 1. Create position context to prevent hidden border because of negative `z-index`
 */
.uk-tab-grid {
  margin-left: -5px;
  border-bottom: none;
  /* 1 */
  position: relative;
  z-index: 0;
}

.uk-tab-grid:before {
  display: block;
  position: absolute;
  left: 5px;
  right: 0;
  bottom: 0;
  border-top: 0 solid #ddd;
  /* 1 */
  z-index: -1;
}

.uk-tab-grid > li:first-child > a {
  margin-left: 5px;
}

.uk-tab-grid > li > a {
  text-align: center;
}

/*
 * If `uk-tab-bottom`
 */
.uk-tab-grid.uk-tab-bottom {
  border-top: none;
}

.uk-tab-grid.uk-tab-bottom:before {
  top: 0;
  bottom: auto;
}

/* Modifier: 'tab-left', 'tab-right'
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-tab-left,
  .uk-tab-right {
    border-bottom: none;
  }
  .uk-tab-left > li,
  .uk-tab-right > li {
    margin-bottom: 0;
    float: none;
  }
  .uk-tab-left > li > a,
  .uk-tab-right > li > a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .uk-tab-left > li:nth-child(n+2) > a,
  .uk-tab-right > li:nth-child(n+2) > a {
    margin-left: 0;
    margin-top: 5px;
  }
  .uk-tab-left > li.uk-active > a,
  .uk-tab-right > li.uk-active > a {
    border-color: #ddd;
  }
  /*
     * Modifier: 'tab-left'
     */
  .uk-tab-left {
    border-right: 0 solid #ddd;
  }
  .uk-tab-left > li {
    margin-right: 0;
  }
  .uk-tab-left > li > a {
    border-bottom-width: 0;
    border-right-width: 0;
  }
  .uk-tab-left > li:not(.uk-active) > a:hover,
  .uk-tab-left > li:not(.uk-active) > a:focus {
    margin-bottom: 0;
    margin-right: 0;
    padding-bottom: 8px;
    padding-right: 12px;
  }
  .uk-tab-left > li.uk-active > a {
    border-right-color: transparent;
  }
  /*
     * Modifier: 'tab-right'
     */
  .uk-tab-right {
    border-left: 0 solid #ddd;
  }
  .uk-tab-right > li {
    margin-left: 0;
  }
  .uk-tab-right > li > a {
    border-bottom-width: 0;
    border-left-width: 0;
  }
  .uk-tab-right > li:not(.uk-active) > a:hover,
  .uk-tab-right > li:not(.uk-active) > a:focus {
    margin-bottom: 0;
    margin-left: 0;
    padding-bottom: 8px;
    padding-left: 12px;
  }
  .uk-tab-right > li.uk-active > a {
    border-left-color: transparent;
  }
}

/* ========================================================================
   Component: Thumbnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.uk-thumbnav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -10px;
  margin-top: -10px;
  /* 2 */
  padding: 0;
  list-style: none;
}

/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `uk-width-*` classes can be applied
 */
.uk-thumbnav > * {
  /* 1 */
  -ms-flex: none;
  flex: none;
  /* 2 */
  padding-left: 10px;
  margin-top: 10px;
}

/*
 * DEPRECATED IE9 Support
 */
.uk-thumbnav:before,
.uk-thumbnav:after {
  content: "";
  display: block;
  overflow: hidden;
}

.uk-thumbnav:after {
  clear: both;
}

.uk-thumbnav > * {
  float: left;
}

/* Items
 ========================================================================== */
.uk-thumbnav > * > * {
  display: block;
  background: #fff;
}

.uk-thumbnav > * > * > img {
  opacity: 0.7;
  transition: opacity 0.15s linear;
}

/*
 * Hover
 */
.uk-thumbnav > * > :hover > img,
.uk-thumbnav > * > :focus > img {
  opacity: 1;
}

/*
 * Active
 */
.uk-thumbnav > .uk-active > * > img {
  opacity: 1;
}

/* ========================================================================
   Component: List
 ========================================================================== */
.uk-list {
  padding: 0;
  list-style: none;
}

/*
 * Micro clearfix to make list more robust
 */
.uk-list > li:before,
.uk-list > li:after {
  content: "";
  display: table;
}

.uk-list > li:after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.uk-list > li > :last-child {
  margin-bottom: 0;
}

/*
 * Nested lists
 */
.uk-list ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

/* Modifier: `uk-list-line`
 ========================================================================== */
.uk-list-line > li:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #ddd;
}

/* Modifier: `uk-list-striped`
 ========================================================================== */
.uk-list-striped > li {
  padding: 5px 5px;
}

.uk-list-striped > li:nth-of-type(odd) {
  background: #f5f5f5;
}

/* Modifier: `uk-list-space`
 ========================================================================== */
.uk-list-space > li:nth-child(n+2) {
  margin-top: 10px;
}

/* ========================================================================
   Component: Description list
 ========================================================================== */
/* Modifier: `uk-description-list-horizontal`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-description-list-horizontal {
    overflow: hidden;
  }
  .uk-description-list-horizontal > dt {
    width: 160px;
    float: left;
    clear: both;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .uk-description-list-horizontal > dd {
    margin-left: 180px;
  }
}

/* Modifier: `uk-description-list-line`
 ========================================================================== */
.uk-description-list-line > dt {
  font-weight: normal;
}

.uk-description-list-line > dt:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #ddd;
}

.uk-description-list-line > dd {
  color: #999;
}

/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Block element behavior
 * 3. Style
 */
.uk-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 15px;
}

/*
 * Add margin if adjacent element
 */
* + .uk-table {
  margin-top: 15px;
}

.uk-table th,
.uk-table td {
  padding: 8px 8px;
}

/*
 * Set alignment
 */
.uk-table th {
  text-align: left;
}

.uk-table td {
  vertical-align: top;
}

.uk-table thead th {
  vertical-align: bottom;
}

/*
 * Caption and footer
 */
.uk-table caption,
.uk-table tfoot {
  font-size: 12px;
  font-style: italic;
}

.uk-table caption {
  text-align: left;
  color: #999;
}

/*
 * Active State
 */
.uk-table tbody tr.uk-active {
  background: #EEE;
}

/* Sub-modifier: `uk-table-middle`
 ========================================================================== */
.uk-table-middle,
.uk-table-middle td {
  vertical-align: middle !important;
}

/* Modifier: `uk-table-striped`
 ========================================================================== */
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: #f5f5f5;
}

/* Modifier: `uk-table-condensed`
 ========================================================================== */
.uk-table-condensed td {
  padding: 4px 8px;
}

/* Modifier: `uk-table-hover`
 ========================================================================== */
.uk-table-hover tbody tr:hover {
  background: #EEE;
}

/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `button`, `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Correct `font` properties and `color` not being inherited.
 */
.uk-form input,
.uk-form select,
.uk-form textarea {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  color: inherit;
}

/*
 * Address inconsistent `text-transform` inheritance which is only inherit in Firefox
 */
.uk-form select {
  text-transform: none;
}

/*
 * 1. Correct `font` properties not being inherited.
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.uk-form optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-form input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * Removes excess padding in IE 8/9/10.
 */
.uk-form input[type="checkbox"],
.uk-form input[type="radio"] {
  padding: 0;
}

/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-form input[type="checkbox"]:not(:disabled),
.uk-form input[type="radio"]:not(:disabled) {
  cursor: pointer;
}

/*
 * Remove default style in iOS.
 */
.uk-form textarea,
.uk-form input:not([type]),
.uk-form input[type="text"],
.uk-form input[type="password"],
.uk-form input[type="email"],
.uk-form input[type="url"],
.uk-form input[type="search"],
.uk-form input[type="tel"],
.uk-form input[type="number"],
.uk-form input[type="datetime"] {
  -webkit-appearance: none;
}

/*
 * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
 */
.uk-form input[type="search"]::-webkit-search-cancel-button,
.uk-form input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
.uk-form input[type="number"]::-webkit-inner-spin-button,
.uk-form input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/*
 * Define consistent border, margin, and padding.
 */
.uk-form fieldset {
  border: none;
}

/*
 * 1. Remove default vertical scrollbar in IE 8/9/10/11.
 * 2. Improve readability and alignment in all browsers.
 */
.uk-form textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  vertical-align: top;
}

/*
 * Removes placeholder transparency in Firefox.
 */
.uk-form ::-moz-placeholder {
  opacity: 1;
}

/*
 * Removes `box-shadow` for invalid controls in Firefox.
 */
.uk-form :invalid {
  box-shadow: none;
}

/*
 * Vertical alignment
 */
.uk-form input:not([type="radio"]):not([type="checkbox"]),
.uk-form select {
  vertical-align: middle;
}

/* Style
 ========================================================================== */
/*
 * Remove margin from the last-child
 */
.uk-form > :last-child {
  margin-bottom: 0;
}

/*
 * Controls
 * Except for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
 * 1. Must be `height` because `min-height` is not working in OSX
 * 2. Responsiveness: Sets a maximum width relative to the parent to scale on narrower viewports
 * 3. Vertical `padding` needed for `select` elements in Firefox
 * 4. Style
 */
.uk-form select,
.uk-form textarea,
.uk-form input:not([type]),
.uk-form input[type="text"],
.uk-form input[type="password"],
.uk-form input[type="datetime"],
.uk-form input[type="datetime-local"],
.uk-form input[type="date"],
.uk-form input[type="month"],
.uk-form input[type="time"],
.uk-form input[type="week"],
.uk-form input[type="number"],
.uk-form input[type="email"],
.uk-form input[type="url"],
.uk-form input[type="search"],
.uk-form input[type="tel"],
.uk-form input[type="color"] {
  /* 1 */
  height: 30px;
  /* 2 */
  max-width: 100%;
  /* 3 */
  padding: 4px 6px;
  /* 4 */
  border: 1px solid #ddd;
  background: #fff;
  color: #333840;
  transition: all linear 0.2s;
}

.uk-form select:focus,
.uk-form textarea:focus,
.uk-form input:not([type]):focus,
.uk-form input[type="text"]:focus,
.uk-form input[type="password"]:focus,
.uk-form input[type="datetime"]:focus,
.uk-form input[type="datetime-local"]:focus,
.uk-form input[type="date"]:focus,
.uk-form input[type="month"]:focus,
.uk-form input[type="time"]:focus,
.uk-form input[type="week"]:focus,
.uk-form input[type="number"]:focus,
.uk-form input[type="email"]:focus,
.uk-form input[type="url"]:focus,
.uk-form input[type="search"]:focus,
.uk-form input[type="tel"]:focus,
.uk-form input[type="color"]:focus {
  border-color: #99baca;
  outline: 0;
  background: #f5fbfe;
  color: #333840;
}

.uk-form select:disabled,
.uk-form textarea:disabled,
.uk-form input:not([type]):disabled,
.uk-form input[type="text"]:disabled,
.uk-form input[type="password"]:disabled,
.uk-form input[type="datetime"]:disabled,
.uk-form input[type="datetime-local"]:disabled,
.uk-form input[type="date"]:disabled,
.uk-form input[type="month"]:disabled,
.uk-form input[type="time"]:disabled,
.uk-form input[type="week"]:disabled,
.uk-form input[type="number"]:disabled,
.uk-form input[type="email"]:disabled,
.uk-form input[type="url"]:disabled,
.uk-form input[type="search"]:disabled,
.uk-form input[type="tel"]:disabled,
.uk-form input[type="color"]:disabled {
  border-color: #ddd;
  background-color: #f5f5f5;
  color: #999;
}

/*
 * Placeholder
 */
.uk-form :-ms-input-placeholder {
  color: #999 !important;
}

.uk-form ::-moz-placeholder {
  color: #999;
}

.uk-form ::-webkit-input-placeholder {
  color: #999;
}

.uk-form :disabled:-ms-input-placeholder {
  color: #999 !important;
}

.uk-form :disabled::-moz-placeholder {
  color: #999;
}

.uk-form :disabled::-webkit-input-placeholder {
  color: #999;
}

/*
 * Legend
 * 1. Behave like block element
 * 2. Correct `color` not being inherited in IE 8/9/10/11.
 * 3. Remove padding
 * 4. `margin-bottom` is not working in Safari and Opera.
 *    Using `padding` and :after instead to create the border
 * 5. Style
 */
.uk-form legend {
  /* 1 */
  width: 100%;
  /* 2 */
  border: 0;
  /* 3 */
  padding: 0;
  /* 4 */
  padding-bottom: 15px;
  /* 5 */
  font-size: 18px;
  line-height: 30px;
}

/*
 * 1. Fixes IE9
 */
.uk-form legend:after {
  content: "";
  display: block;
  border-bottom: 1px solid #ddd;
  /* 1 */
  width: 100%;
}

/* Size modifiers
 * Higher specificity needed to override defaults
 ========================================================================== */
select.uk-form-small,
textarea.uk-form-small,
input[type].uk-form-small,
input:not([type]).uk-form-small {
  height: 25px;
  padding: 3px 3px;
  font-size: 12px;
}

select.uk-form-large,
textarea.uk-form-large,
input[type].uk-form-large,
input:not([type]).uk-form-large {
  height: 50px;
  padding: 11px 6px;
  font-size: 18px;
}

/* Reset height
 * Must be after size modifiers
 ========================================================================== */
.uk-form textarea,
.uk-form select[multiple],
.uk-form select[size] {
  height: auto;
}

/* Validation states
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Error state
 */
.uk-form-danger {
  border-color: #dc8d99 !important;
  background: #fff7f8 !important;
  color: #d85030 !important;
}

/*
 * Success state
 */
.uk-form-success {
  border-color: #8ec73b !important;
  background: #fafff2 !important;
  color: #659f13 !important;
}

/* Style modifiers
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Blank form
 */
.uk-form-blank {
  border-color: transparent !important;
  border-style: dashed !important;
  background: none !important;
}

.uk-form-blank:focus {
  border-color: #ddd !important;
}

/* Size sub-modifiers
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.uk-form-width-mini {
  width: 40px;
}

select.uk-form-width-mini {
  width: 65px;
}

.uk-form-width-small {
  width: 130px;
}

.uk-form-width-medium {
  width: 200px;
}

.uk-form-width-large {
  width: 500px;
}

/* Sub-objects: `uk-form-row`
 * Groups labels and controls in rows
 ========================================================================== */
/*
 * Micro clearfix
 * Needed for `uk-form-horizontal` modifier
 */
.uk-form-row:before,
.uk-form-row:after {
  content: "";
  display: table;
}

.uk-form-row:after {
  clear: both;
}

/*
 * Vertical gutter
 */
.uk-form-row + .uk-form-row {
  margin-top: 15px;
}

/* Help text
 * Sub-object: `uk-form-help-inline`, `uk-form-help-block`
 ========================================================================== */
.uk-form-help-inline {
  display: inline-block;
  margin: 0 0 0 10px;
}

.uk-form-help-block {
  margin: 5px 0 0 0;
}

/* Controls content
 * Sub-object: `uk-form-controls`, `uk-form-controls-condensed`
 ========================================================================== */
/*
 * Remove margins
 */
.uk-form-controls > :first-child {
  margin-top: 0;
}

.uk-form-controls > :last-child {
  margin-bottom: 0;
}

/*
 * Group controls and text into blocks with a small spacing between blocks
 */
.uk-form-controls-condensed {
  margin: 5px 0;
}

/* Modifier: `uk-form-stacked`
 * Requires sub-object: `uk-form-label`
 ========================================================================== */
.uk-form-stacked .uk-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Modifier: `uk-form-horizontal`
 * Requires sub-objects: `uk-form-label`, `uk-form-controls`
 ========================================================================== */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `uk-form-stacked` */
  .uk-form-horizontal .uk-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
}

/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-form-horizontal .uk-form-label {
    width: 200px;
    margin-top: 5px;
    float: left;
  }
  .uk-form-horizontal .uk-form-controls {
    margin-left: 215px;
  }
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .uk-form-horizontal .uk-form-controls-text {
    padding-top: 5px;
  }
}

/* Sub-object: `uk-form-icon`
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.uk-form-icon {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}

/*
 * 1. Make form element clickable through icon
 */
.uk-form-icon > [class*='uk-icon-'] {
  position: absolute;
  top: 50%;
  width: 30px;
  margin-top: -7px;
  font-size: 14px;
  color: #999;
  text-align: center;
  /* 1 */
  pointer-events: none;
}

.uk-form-icon:not(.uk-form-icon-flip) > input {
  padding-left: 30px !important;
}

/*
 * Sub-modifier: `uk-form-icon-flip`
 */
.uk-form-icon-flip > [class*='uk-icon-'] {
  right: 0;
}

.uk-form-icon-flip > input {
  padding-right: 30px !important;
}

/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Style
 * 8. `line-height` is used to create a height
 * 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
 * 10. Reset button group whitespace hack
 * 11. Required for `a`.
 */
.uk-button {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: #333840;
  /* 6 */
  text-transform: none;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  padding: 0 12px;
  background: #eee;
  vertical-align: middle;
  /* 8 */
  line-height: 30px;
  /* 9 */
  min-height: 30px;
  /* 10 */
  font-size: 1rem;
  /* 11 */
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
}

.uk-button:not(:disabled) {
  cursor: pointer;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.uk-button:hover,
.uk-button:focus {
  background-color: #f5f5f5;
  color: #333840;
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
}

/* Active */
.uk-button:active,
.uk-button.uk-active {
  background-color: #ddd;
  color: #333840;
}

/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `uk-button-primary`
 */
.uk-button-primary {
  background-color: #ee5a40;
  color: #fff;
}

/* Hover */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #e63415;
  color: #fff;
}

/* Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  background-color: #e63415;
  color: #fff;
}

/*
 * Modifier: `uk-button-success`
 */
.uk-button-success {
  background-color: #8cc14c;
  color: #fff;
}

/* Hover */
.uk-button-success:hover,
.uk-button-success:focus {
  background-color: #8ec73b;
  color: #fff;
}

/* Active */
.uk-button-success:active,
.uk-button-success.uk-active {
  background-color: #72ae41;
  color: #fff;
}

/*
 * Modifier: `uk-button-danger`
 */
.uk-button-danger {
  background-color: #da314b;
  color: #fff;
}

/* Hover */
.uk-button-danger:hover,
.uk-button-danger:focus {
  background-color: #e4354f;
  color: #fff;
}

/* Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #c91032;
  color: #fff;
}

/* Disabled state
 * Overrides also the color modifiers
 ========================================================================== */
/* Equal for all button types */
.uk-button:disabled {
  background-color: #f5f5f5;
  color: #999;
}

/* Modifier: `uk-button-link`
 ========================================================================== */
/* Reset */
.uk-button-link,
.uk-button-link:hover,
.uk-button-link:focus,
.uk-button-link:active,
.uk-button-link.uk-active,
.uk-button-link:disabled {
  border-color: transparent;
  background: none;
}

/* Color */
.uk-button-link {
  color: #07D;
}

.uk-button-link:hover,
.uk-button-link:focus,
.uk-button-link:active,
.uk-button-link.uk-active {
  color: #059;
  text-decoration: underline;
}

.uk-button-link:disabled {
  color: #999;
}

/* Focus */
.uk-button-link:focus {
  outline: 1px dotted;
}

/* Size modifiers
 ========================================================================== */
.uk-button-mini {
  min-height: 20px;
  padding: 0 6px;
  line-height: 20px;
  font-size: 11px;
}

.uk-button-small {
  min-height: 25px;
  padding: 0 10px;
  line-height: 25px;
  font-size: 12px;
}

.uk-button-large {
  padding: 5px 15px;
  line-height: 30px;
  min-height: 30px;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .uk-button-large {
    min-height: 50px;
    padding: 0 30px;
    line-height: 50px;
    font-size: 16px;
    line-height: 1.4em;
    padding: 15px 30px;
  }
}

/* Sub-object `uk-button-group`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 * 3. Remove whitespace between child elements when using `inline-block`
 * 4. Prevent buttons from wrapping
 * 5. Remove whitespace between child elements when using `inline-block`
 */
.uk-button-group {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  font-size: 0.001px;
  /* 4 */
  white-space: nowrap;
}

.uk-button-group > * {
  display: inline-block;
}

/* 5 */
.uk-button-group .uk-button {
  vertical-align: top;
}

/* Sub-object: `uk-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.uk-button-dropdown {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
}

/* ========================================================================
   Component: Icon
 ========================================================================== */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.woff2") format("woff2"), url("../fonts/fontawesome-webfont.woff") format("woff"), url("../fonts/fontawesome-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/*
 * 1. Allow margin
 * 2. Prevent inherit font style
 * 4. Correct line-height
 * 5. Better font rendering
 * 6. Remove `text-decoration` for anchors
 */
[class*='uk-icon-'] {
  font-family: FontAwesome;
  /* 1 */
  display: inline-block;
  /* 2 */
  font-weight: normal;
  font-style: normal;
  /* 4 */
  line-height: 1;
  /* 5 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 6 */
[class*='uk-icon-'],
[class*='uk-icon-']:hover,
[class*='uk-icon-']:focus {
  text-decoration: none;
}

/* Size modifiers
 ========================================================================== */
.uk-icon-small {
  font-size: 150%;
  vertical-align: -10%;
}

.uk-icon-medium {
  font-size: 200%;
  vertical-align: -16%;
}

.uk-icon-large {
  font-size: 250%;
  vertical-align: -22%;
}

/* Modifier: `uk-icon-justify`
 ========================================================================== */
.uk-icon-justify {
  width: 1em;
  text-align: center;
}

/* Modifier: `uk-icon-spin`
 ========================================================================== */
.uk-icon-spin {
  display: inline-block;
  animation: uk-rotate 2s infinite linear;
}

/* Modifier: `uk-icon-hover`
 ========================================================================== */
.uk-icon-hover {
  color: #999;
}

/*
 * Hover
 */
.uk-icon-hover:hover {
  color: #333840;
}

/* Modifier: `uk-icon-button`
 ========================================================================== */
.uk-icon-button {
  box-sizing: border-box;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: #eee;
  line-height: 35px;
  color: #333840;
  font-size: 18px;
  text-align: center;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-icon-button:hover,
.uk-icon-button:focus {
  background-color: #f5f5f5;
  color: #333840;
  /* 2 */
  outline: none;
}

/* Active */
.uk-icon-button:active {
  background-color: #ddd;
  color: #333840;
}

/* Icon mapping
 ========================================================================== */
.uk-icon-glass:before {
  content: "\f000";
}

.uk-icon-music:before {
  content: "\f001";
}

.uk-icon-search:before {
  content: "\f002";
}

.uk-icon-envelope-o:before {
  content: "\f003";
}

.uk-icon-heart:before {
  content: "\f004";
}

.uk-icon-star:before {
  content: "\f005";
}

.uk-icon-star-o:before {
  content: "\f006";
}

.uk-icon-user:before {
  content: "\f007";
}

.uk-icon-film:before {
  content: "\f008";
}

.uk-icon-th-large:before {
  content: "\f009";
}

.uk-icon-th:before {
  content: "\f00a";
}

.uk-icon-th-list:before {
  content: "\f00b";
}

.uk-icon-check:before {
  content: "\f00c";
}

.uk-icon-remove:before,
.uk-icon-close:before,
.uk-icon-times:before {
  content: "\f00d";
}

.uk-icon-search-plus:before {
  content: "\f00e";
}

.uk-icon-search-minus:before {
  content: "\f010";
}

.uk-icon-power-off:before {
  content: "\f011";
}

.uk-icon-signal:before {
  content: "\f012";
}

.uk-icon-gear:before,
.uk-icon-cog:before {
  content: "\f013";
}

.uk-icon-trash-o:before {
  content: "\f014";
}

.uk-icon-home:before {
  content: "\f015";
}

.uk-icon-file-o:before {
  content: "\f016";
}

.uk-icon-clock-o:before {
  content: "\f017";
}

.uk-icon-road:before {
  content: "\f018";
}

.uk-icon-download:before {
  content: "\f019";
}

.uk-icon-arrow-circle-o-down:before {
  content: "\f01a";
}

.uk-icon-arrow-circle-o-up:before {
  content: "\f01b";
}

.uk-icon-inbox:before {
  content: "\f01c";
}

.uk-icon-play-circle-o:before {
  content: "\f01d";
}

.uk-icon-rotate-right:before,
.uk-icon-repeat:before {
  content: "\f01e";
}

.uk-icon-refresh:before {
  content: "\f021";
}

.uk-icon-list-alt:before {
  content: "\f022";
}

.uk-icon-lock:before {
  content: "\f023";
}

.uk-icon-flag:before {
  content: "\f024";
}

.uk-icon-headphones:before {
  content: "\f025";
}

.uk-icon-volume-off:before {
  content: "\f026";
}

.uk-icon-volume-down:before {
  content: "\f027";
}

.uk-icon-volume-up:before {
  content: "\f028";
}

.uk-icon-qrcode:before {
  content: "\f029";
}

.uk-icon-barcode:before {
  content: "\f02a";
}

.uk-icon-tag:before {
  content: "\f02b";
}

.uk-icon-tags:before {
  content: "\f02c";
}

.uk-icon-book:before {
  content: "\f02d";
}

.uk-icon-bookmark:before {
  content: "\f02e";
}

.uk-icon-print:before {
  content: "\f02f";
}

.uk-icon-camera:before {
  content: "\f030";
}

.uk-icon-font:before {
  content: "\f031";
}

.uk-icon-bold:before {
  content: "\f032";
}

.uk-icon-italic:before {
  content: "\f033";
}

.uk-icon-text-height:before {
  content: "\f034";
}

.uk-icon-text-width:before {
  content: "\f035";
}

.uk-icon-align-left:before {
  content: "\f036";
}

.uk-icon-align-center:before {
  content: "\f037";
}

.uk-icon-align-right:before {
  content: "\f038";
}

.uk-icon-align-justify:before {
  content: "\f039";
}

.uk-icon-list:before {
  content: "\f03a";
}

.uk-icon-dedent:before,
.uk-icon-outdent:before {
  content: "\f03b";
}

.uk-icon-indent:before {
  content: "\f03c";
}

.uk-icon-video-camera:before {
  content: "\f03d";
}

.uk-icon-photo:before,
.uk-icon-image:before,
.uk-icon-picture-o:before {
  content: "\f03e";
}

.uk-icon-pencil:before {
  content: "\f040";
}

.uk-icon-map-marker:before {
  content: "\f041";
}

.uk-icon-adjust:before {
  content: "\f042";
}

.uk-icon-tint:before {
  content: "\f043";
}

.uk-icon-edit:before,
.uk-icon-pencil-square-o:before {
  content: "\f044";
}

.uk-icon-share-square-o:before {
  content: "\f045";
}

.uk-icon-check-square-o:before {
  content: "\f046";
}

.uk-icon-arrows:before {
  content: "\f047";
}

.uk-icon-step-backward:before {
  content: "\f048";
}

.uk-icon-fast-backward:before {
  content: "\f049";
}

.uk-icon-backward:before {
  content: "\f04a";
}

.uk-icon-play:before {
  content: "\f04b";
}

.uk-icon-pause:before {
  content: "\f04c";
}

.uk-icon-stop:before {
  content: "\f04d";
}

.uk-icon-forward:before {
  content: "\f04e";
}

.uk-icon-fast-forward:before {
  content: "\f050";
}

.uk-icon-step-forward:before {
  content: "\f051";
}

.uk-icon-eject:before {
  content: "\f052";
}

.uk-icon-chevron-left:before {
  content: "\f053";
}

.uk-icon-chevron-right:before {
  content: "\f054";
}

.uk-icon-plus-circle:before {
  content: "\f055";
}

.uk-icon-minus-circle:before {
  content: "\f056";
}

.uk-icon-times-circle:before {
  content: "\f057";
}

.uk-icon-check-circle:before {
  content: "\f058";
}

.uk-icon-question-circle:before {
  content: "\f059";
}

.uk-icon-info-circle:before {
  content: "\f05a";
}

.uk-icon-crosshairs:before {
  content: "\f05b";
}

.uk-icon-times-circle-o:before {
  content: "\f05c";
}

.uk-icon-check-circle-o:before {
  content: "\f05d";
}

.uk-icon-ban:before {
  content: "\f05e";
}

.uk-icon-arrow-left:before {
  content: "\f060";
}

.uk-icon-arrow-right:before {
  content: "\f061";
}

.uk-icon-arrow-up:before {
  content: "\f062";
}

.uk-icon-arrow-down:before {
  content: "\f063";
}

.uk-icon-mail-forward:before,
.uk-icon-share:before {
  content: "\f064";
}

.uk-icon-expand:before {
  content: "\f065";
}

.uk-icon-compress:before {
  content: "\f066";
}

.uk-icon-plus:before {
  content: "\f067";
}

.uk-icon-minus:before {
  content: "\f068";
}

.uk-icon-asterisk:before {
  content: "\f069";
}

.uk-icon-exclamation-circle:before {
  content: "\f06a";
}

.uk-icon-gift:before {
  content: "\f06b";
}

.uk-icon-leaf:before {
  content: "\f06c";
}

.uk-icon-fire:before {
  content: "\f06d";
}

.uk-icon-eye:before {
  content: "\f06e";
}

.uk-icon-eye-slash:before {
  content: "\f070";
}

.uk-icon-warning:before,
.uk-icon-exclamation-triangle:before {
  content: "\f071";
}

.uk-icon-plane:before {
  content: "\f072";
}

.uk-icon-calendar:before {
  content: "\f073";
}

.uk-icon-random:before {
  content: "\f074";
}

.uk-icon-comment:before {
  content: "\f075";
}

.uk-icon-magnet:before {
  content: "\f076";
}

.uk-icon-chevron-up:before {
  content: "\f077";
}

.uk-icon-chevron-down:before {
  content: "\f078";
}

.uk-icon-retweet:before {
  content: "\f079";
}

.uk-icon-shopping-cart:before {
  content: "\f07a";
}

.uk-icon-folder:before {
  content: "\f07b";
}

.uk-icon-folder-open:before {
  content: "\f07c";
}

.uk-icon-arrows-v:before {
  content: "\f07d";
}

.uk-icon-arrows-h:before {
  content: "\f07e";
}

.uk-icon-bar-chart-o:before,
.uk-icon-bar-chart:before {
  content: "\f080";
}

.uk-icon-twitter-square:before {
  content: "\f081";
}

.uk-icon-facebook-square:before {
  content: "\f082";
}

.uk-icon-camera-retro:before {
  content: "\f083";
}

.uk-icon-key:before {
  content: "\f084";
}

.uk-icon-gears:before,
.uk-icon-cogs:before {
  content: "\f085";
}

.uk-icon-comments:before {
  content: "\f086";
}

.uk-icon-thumbs-o-up:before {
  content: "\f087";
}

.uk-icon-thumbs-o-down:before {
  content: "\f088";
}

.uk-icon-star-half:before {
  content: "\f089";
}

.uk-icon-heart-o:before {
  content: "\f08a";
}

.uk-icon-sign-out:before {
  content: "\f08b";
}

.uk-icon-linkedin-square:before {
  content: "\f08c";
}

.uk-icon-thumb-tack:before {
  content: "\f08d";
}

.uk-icon-external-link:before {
  content: "\f08e";
}

.uk-icon-sign-in:before {
  content: "\f090";
}

.uk-icon-trophy:before {
  content: "\f091";
}

.uk-icon-github-square:before {
  content: "\f092";
}

.uk-icon-upload:before {
  content: "\f093";
}

.uk-icon-lemon-o:before {
  content: "\f094";
}

.uk-icon-phone:before {
  content: "\f095";
}

.uk-icon-square-o:before {
  content: "\f096";
}

.uk-icon-bookmark-o:before {
  content: "\f097";
}

.uk-icon-phone-square:before {
  content: "\f098";
}

.uk-icon-twitter:before {
  content: "\f099";
}

.uk-icon-facebook-f:before,
.uk-icon-facebook:before {
  content: "\f09a";
}

.uk-icon-github:before {
  content: "\f09b";
}

.uk-icon-unlock:before {
  content: "\f09c";
}

.uk-icon-credit-card:before {
  content: "\f09d";
}

.uk-icon-rss:before {
  content: "\f09e";
}

.uk-icon-hdd-o:before {
  content: "\f0a0";
}

.uk-icon-bullhorn:before {
  content: "\f0a1";
}

.uk-icon-bell:before {
  content: "\f0f3";
}

.uk-icon-certificate:before {
  content: "\f0a3";
}

.uk-icon-hand-o-right:before {
  content: "\f0a4";
}

.uk-icon-hand-o-left:before {
  content: "\f0a5";
}

.uk-icon-hand-o-up:before {
  content: "\f0a6";
}

.uk-icon-hand-o-down:before {
  content: "\f0a7";
}

.uk-icon-arrow-circle-left:before {
  content: "\f0a8";
}

.uk-icon-arrow-circle-right:before {
  content: "\f0a9";
}

.uk-icon-arrow-circle-up:before {
  content: "\f0aa";
}

.uk-icon-arrow-circle-down:before {
  content: "\f0ab";
}

.uk-icon-globe:before {
  content: "\f0ac";
}

.uk-icon-wrench:before {
  content: "\f0ad";
}

.uk-icon-tasks:before {
  content: "\f0ae";
}

.uk-icon-filter:before {
  content: "\f0b0";
}

.uk-icon-briefcase:before {
  content: "\f0b1";
}

.uk-icon-arrows-alt:before {
  content: "\f0b2";
}

.uk-icon-group:before,
.uk-icon-users:before {
  content: "\f0c0";
}

.uk-icon-chain:before,
.uk-icon-link:before {
  content: "\f0c1";
}

.uk-icon-cloud:before {
  content: "\f0c2";
}

.uk-icon-flask:before {
  content: "\f0c3";
}

.uk-icon-cut:before,
.uk-icon-scissors:before {
  content: "\f0c4";
}

.uk-icon-copy:before,
.uk-icon-files-o:before {
  content: "\f0c5";
}

.uk-icon-paperclip:before {
  content: "\f0c6";
}

.uk-icon-save:before,
.uk-icon-floppy-o:before {
  content: "\f0c7";
}

.uk-icon-square:before {
  content: "\f0c8";
}

.uk-icon-navicon:before,
.uk-icon-reorder:before,
.uk-icon-bars:before {
  content: "\f0c9";
}

.uk-icon-list-ul:before {
  content: "\f0ca";
}

.uk-icon-list-ol:before {
  content: "\f0cb";
}

.uk-icon-strikethrough:before {
  content: "\f0cc";
}

.uk-icon-underline:before {
  content: "\f0cd";
}

.uk-icon-table:before {
  content: "\f0ce";
}

.uk-icon-magic:before {
  content: "\f0d0";
}

.uk-icon-truck:before {
  content: "\f0d1";
}

.uk-icon-pinterest:before {
  content: "\f0d2";
}

.uk-icon-pinterest-square:before {
  content: "\f0d3";
}

.uk-icon-google-plus-square:before {
  content: "\f0d4";
}

.uk-icon-google-plus:before {
  content: "\f0d5";
}

.uk-icon-money:before {
  content: "\f0d6";
}

.uk-icon-caret-down:before {
  content: "\f0d7";
}

.uk-icon-caret-up:before {
  content: "\f0d8";
}

.uk-icon-caret-left:before {
  content: "\f0d9";
}

.uk-icon-caret-right:before {
  content: "\f0da";
}

.uk-icon-columns:before {
  content: "\f0db";
}

.uk-icon-unsorted:before,
.uk-icon-sort:before {
  content: "\f0dc";
}

.uk-icon-sort-down:before,
.uk-icon-sort-desc:before {
  content: "\f0dd";
}

.uk-icon-sort-up:before,
.uk-icon-sort-asc:before {
  content: "\f0de";
}

.uk-icon-envelope:before {
  content: "\f0e0";
}

.uk-icon-linkedin:before {
  content: "\f0e1";
}

.uk-icon-rotate-left:before,
.uk-icon-undo:before {
  content: "\f0e2";
}

.uk-icon-legal:before,
.uk-icon-gavel:before {
  content: "\f0e3";
}

.uk-icon-dashboard:before,
.uk-icon-tachometer:before {
  content: "\f0e4";
}

.uk-icon-comment-o:before {
  content: "\f0e5";
}

.uk-icon-comments-o:before {
  content: "\f0e6";
}

.uk-icon-flash:before,
.uk-icon-bolt:before {
  content: "\f0e7";
}

.uk-icon-sitemap:before {
  content: "\f0e8";
}

.uk-icon-umbrella:before {
  content: "\f0e9";
}

.uk-icon-paste:before,
.uk-icon-clipboard:before {
  content: "\f0ea";
}

.uk-icon-lightbulb-o:before {
  content: "\f0eb";
}

.uk-icon-exchange:before {
  content: "\f0ec";
}

.uk-icon-cloud-download:before {
  content: "\f0ed";
}

.uk-icon-cloud-upload:before {
  content: "\f0ee";
}

.uk-icon-user-md:before {
  content: "\f0f0";
}

.uk-icon-stethoscope:before {
  content: "\f0f1";
}

.uk-icon-suitcase:before {
  content: "\f0f2";
}

.uk-icon-bell-o:before {
  content: "\f0a2";
}

.uk-icon-coffee:before {
  content: "\f0f4";
}

.uk-icon-cutlery:before {
  content: "\f0f5";
}

.uk-icon-file-text-o:before {
  content: "\f0f6";
}

.uk-icon-building-o:before {
  content: "\f0f7";
}

.uk-icon-hospital-o:before {
  content: "\f0f8";
}

.uk-icon-ambulance:before {
  content: "\f0f9";
}

.uk-icon-medkit:before {
  content: "\f0fa";
}

.uk-icon-fighter-jet:before {
  content: "\f0fb";
}

.uk-icon-beer:before {
  content: "\f0fc";
}

.uk-icon-h-square:before {
  content: "\f0fd";
}

.uk-icon-plus-square:before {
  content: "\f0fe";
}

.uk-icon-angle-double-left:before {
  content: "\f100";
}

.uk-icon-angle-double-right:before {
  content: "\f101";
}

.uk-icon-angle-double-up:before {
  content: "\f102";
}

.uk-icon-angle-double-down:before {
  content: "\f103";
}

.uk-icon-angle-left:before {
  content: "\f104";
}

.uk-icon-angle-right:before {
  content: "\f105";
}

.uk-icon-angle-up:before {
  content: "\f106";
}

.uk-icon-angle-down:before {
  content: "\f107";
}

.uk-icon-desktop:before {
  content: "\f108";
}

.uk-icon-laptop:before {
  content: "\f109";
}

.uk-icon-tablet:before {
  content: "\f10a";
}

.uk-icon-mobile-phone:before,
.uk-icon-mobile:before {
  content: "\f10b";
}

.uk-icon-circle-o:before {
  content: "\f10c";
}

.uk-icon-quote-left:before {
  content: "\f10d";
}

.uk-icon-quote-right:before {
  content: "\f10e";
}

.uk-icon-spinner:before {
  content: "\f110";
}

.uk-icon-circle:before {
  content: "\f111";
}

.uk-icon-mail-reply:before,
.uk-icon-reply:before {
  content: "\f112";
}

.uk-icon-github-alt:before {
  content: "\f113";
}

.uk-icon-folder-o:before {
  content: "\f114";
}

.uk-icon-folder-open-o:before {
  content: "\f115";
}

.uk-icon-smile-o:before {
  content: "\f118";
}

.uk-icon-frown-o:before {
  content: "\f119";
}

.uk-icon-meh-o:before {
  content: "\f11a";
}

.uk-icon-gamepad:before {
  content: "\f11b";
}

.uk-icon-keyboard-o:before {
  content: "\f11c";
}

.uk-icon-flag-o:before {
  content: "\f11d";
}

.uk-icon-flag-checkered:before {
  content: "\f11e";
}

.uk-icon-terminal:before {
  content: "\f120";
}

.uk-icon-code:before {
  content: "\f121";
}

.uk-icon-mail-reply-all:before,
.uk-icon-reply-all:before {
  content: "\f122";
}

.uk-icon-star-half-empty:before,
.uk-icon-star-half-full:before,
.uk-icon-star-half-o:before {
  content: "\f123";
}

.uk-icon-location-arrow:before {
  content: "\f124";
}

.uk-icon-crop:before {
  content: "\f125";
}

.uk-icon-code-fork:before {
  content: "\f126";
}

.uk-icon-unlink:before,
.uk-icon-chain-broken:before {
  content: "\f127";
}

.uk-icon-question:before {
  content: "\f128";
}

.uk-icon-info:before {
  content: "\f129";
}

.uk-icon-exclamation:before {
  content: "\f12a";
}

.uk-icon-superscript:before {
  content: "\f12b";
}

.uk-icon-subscript:before {
  content: "\f12c";
}

.uk-icon-eraser:before {
  content: "\f12d";
}

.uk-icon-puzzle-piece:before {
  content: "\f12e";
}

.uk-icon-microphone:before {
  content: "\f130";
}

.uk-icon-microphone-slash:before {
  content: "\f131";
}

.uk-icon-shield:before {
  content: "\f132";
}

.uk-icon-calendar-o:before {
  content: "\f133";
}

.uk-icon-fire-extinguisher:before {
  content: "\f134";
}

.uk-icon-rocket:before {
  content: "\f135";
}

.uk-icon-maxcdn:before {
  content: "\f136";
}

.uk-icon-chevron-circle-left:before {
  content: "\f137";
}

.uk-icon-chevron-circle-right:before {
  content: "\f138";
}

.uk-icon-chevron-circle-up:before {
  content: "\f139";
}

.uk-icon-chevron-circle-down:before {
  content: "\f13a";
}

.uk-icon-html5:before {
  content: "\f13b";
}

.uk-icon-css3:before {
  content: "\f13c";
}

.uk-icon-anchor:before {
  content: "\f13d";
}

.uk-icon-unlock-alt:before {
  content: "\f13e";
}

.uk-icon-bullseye:before {
  content: "\f140";
}

.uk-icon-ellipsis-h:before {
  content: "\f141";
}

.uk-icon-ellipsis-v:before {
  content: "\f142";
}

.uk-icon-rss-square:before {
  content: "\f143";
}

.uk-icon-play-circle:before {
  content: "\f144";
}

.uk-icon-ticket:before {
  content: "\f145";
}

.uk-icon-minus-square:before {
  content: "\f146";
}

.uk-icon-minus-square-o:before {
  content: "\f147";
}

.uk-icon-level-up:before {
  content: "\f148";
}

.uk-icon-level-down:before {
  content: "\f149";
}

.uk-icon-check-square:before {
  content: "\f14a";
}

.uk-icon-pencil-square:before {
  content: "\f14b";
}

.uk-icon-external-link-square:before {
  content: "\f14c";
}

.uk-icon-share-square:before {
  content: "\f14d";
}

.uk-icon-compass:before {
  content: "\f14e";
}

.uk-icon-toggle-down:before,
.uk-icon-caret-square-o-down:before {
  content: "\f150";
}

.uk-icon-toggle-up:before,
.uk-icon-caret-square-o-up:before {
  content: "\f151";
}

.uk-icon-toggle-right:before,
.uk-icon-caret-square-o-right:before {
  content: "\f152";
}

.uk-icon-euro:before,
.uk-icon-eur:before {
  content: "\f153";
}

.uk-icon-gbp:before {
  content: "\f154";
}

.uk-icon-dollar:before,
.uk-icon-usd:before {
  content: "\f155";
}

.uk-icon-rupee:before,
.uk-icon-inr:before {
  content: "\f156";
}

.uk-icon-cny:before,
.uk-icon-rmb:before,
.uk-icon-yen:before,
.uk-icon-jpy:before {
  content: "\f157";
}

.uk-icon-ruble:before,
.uk-icon-rouble:before,
.uk-icon-rub:before {
  content: "\f158";
}

.uk-icon-won:before,
.uk-icon-krw:before {
  content: "\f159";
}

.uk-icon-bitcoin:before,
.uk-icon-btc:before {
  content: "\f15a";
}

.uk-icon-file:before {
  content: "\f15b";
}

.uk-icon-file-text:before {
  content: "\f15c";
}

.uk-icon-sort-alpha-asc:before {
  content: "\f15d";
}

.uk-icon-sort-alpha-desc:before {
  content: "\f15e";
}

.uk-icon-sort-amount-asc:before {
  content: "\f160";
}

.uk-icon-sort-amount-desc:before {
  content: "\f161";
}

.uk-icon-sort-numeric-asc:before {
  content: "\f162";
}

.uk-icon-sort-numeric-desc:before {
  content: "\f163";
}

.uk-icon-thumbs-up:before {
  content: "\f164";
}

.uk-icon-thumbs-down:before {
  content: "\f165";
}

.uk-icon-youtube-square:before {
  content: "\f166";
}

.uk-icon-youtube:before {
  content: "\f167";
}

.uk-icon-xing:before {
  content: "\f168";
}

.uk-icon-xing-square:before {
  content: "\f169";
}

.uk-icon-youtube-play:before {
  content: "\f16a";
}

.uk-icon-dropbox:before {
  content: "\f16b";
}

.uk-icon-stack-overflow:before {
  content: "\f16c";
}

.uk-icon-instagram:before {
  content: "\f16d";
}

.uk-icon-flickr:before {
  content: "\f16e";
}

.uk-icon-adn:before {
  content: "\f170";
}

.uk-icon-bitbucket:before {
  content: "\f171";
}

.uk-icon-bitbucket-square:before {
  content: "\f172";
}

.uk-icon-tumblr:before {
  content: "\f173";
}

.uk-icon-tumblr-square:before {
  content: "\f174";
}

.uk-icon-long-arrow-down:before {
  content: "\f175";
}

.uk-icon-long-arrow-up:before {
  content: "\f176";
}

.uk-icon-long-arrow-left:before {
  content: "\f177";
}

.uk-icon-long-arrow-right:before {
  content: "\f178";
}

.uk-icon-apple:before {
  content: "\f179";
}

.uk-icon-windows:before {
  content: "\f17a";
}

.uk-icon-android:before {
  content: "\f17b";
}

.uk-icon-linux:before {
  content: "\f17c";
}

.uk-icon-dribbble:before {
  content: "\f17d";
}

.uk-icon-skype:before {
  content: "\f17e";
}

.uk-icon-foursquare:before {
  content: "\f180";
}

.uk-icon-trello:before {
  content: "\f181";
}

.uk-icon-female:before {
  content: "\f182";
}

.uk-icon-male:before {
  content: "\f183";
}

.uk-icon-gittip:before,
.uk-icon-gratipay:before {
  content: "\f184";
}

.uk-icon-sun-o:before {
  content: "\f185";
}

.uk-icon-moon-o:before {
  content: "\f186";
}

.uk-icon-archive:before {
  content: "\f187";
}

.uk-icon-bug:before {
  content: "\f188";
}

.uk-icon-vk:before {
  content: "\f189";
}

.uk-icon-weibo:before {
  content: "\f18a";
}

.uk-icon-renren:before {
  content: "\f18b";
}

.uk-icon-pagelines:before {
  content: "\f18c";
}

.uk-icon-stack-exchange:before {
  content: "\f18d";
}

.uk-icon-arrow-circle-o-right:before {
  content: "\f18e";
}

.uk-icon-arrow-circle-o-left:before {
  content: "\f190";
}

.uk-icon-toggle-left:before,
.uk-icon-caret-square-o-left:before {
  content: "\f191";
}

.uk-icon-dot-circle-o:before {
  content: "\f192";
}

.uk-icon-wheelchair:before {
  content: "\f193";
}

.uk-icon-vimeo-square:before {
  content: "\f194";
}

.uk-icon-turkish-lira:before,
.uk-icon-try:before {
  content: "\f195";
}

.uk-icon-plus-square-o:before {
  content: "\f196";
}

.uk-icon-space-shuttle:before {
  content: "\f197";
}

.uk-icon-slack:before {
  content: "\f198";
}

.uk-icon-envelope-square:before {
  content: "\f199";
}

.uk-icon-wordpress:before {
  content: "\f19a";
}

.uk-icon-openid:before {
  content: "\f19b";
}

.uk-icon-institution:before,
.uk-icon-bank:before,
.uk-icon-university:before {
  content: "\f19c";
}

.uk-icon-mortar-board:before,
.uk-icon-graduation-cap:before {
  content: "\f19d";
}

.uk-icon-yahoo:before {
  content: "\f19e";
}

.uk-icon-google:before {
  content: "\f1a0";
}

.uk-icon-reddit:before {
  content: "\f1a1";
}

.uk-icon-reddit-square:before {
  content: "\f1a2";
}

.uk-icon-stumbleupon-circle:before {
  content: "\f1a3";
}

.uk-icon-stumbleupon:before {
  content: "\f1a4";
}

.uk-icon-delicious:before {
  content: "\f1a5";
}

.uk-icon-digg:before {
  content: "\f1a6";
}

.uk-icon-pied-piper:before {
  content: "\f1a7";
}

.uk-icon-pied-piper-alt:before {
  content: "\f1a8";
}

.uk-icon-drupal:before {
  content: "\f1a9";
}

.uk-icon-joomla:before {
  content: "\f1aa";
}

.uk-icon-language:before {
  content: "\f1ab";
}

.uk-icon-fax:before {
  content: "\f1ac";
}

.uk-icon-building:before {
  content: "\f1ad";
}

.uk-icon-child:before {
  content: "\f1ae";
}

.uk-icon-paw:before {
  content: "\f1b0";
}

.uk-icon-spoon:before {
  content: "\f1b1";
}

.uk-icon-cube:before {
  content: "\f1b2";
}

.uk-icon-cubes:before {
  content: "\f1b3";
}

.uk-icon-behance:before {
  content: "\f1b4";
}

.uk-icon-behance-square:before {
  content: "\f1b5";
}

.uk-icon-steam:before {
  content: "\f1b6";
}

.uk-icon-steam-square:before {
  content: "\f1b7";
}

.uk-icon-recycle:before {
  content: "\f1b8";
}

.uk-icon-automobile:before,
.uk-icon-car:before {
  content: "\f1b9";
}

.uk-icon-cab:before,
.uk-icon-taxi:before {
  content: "\f1ba";
}

.uk-icon-tree:before {
  content: "\f1bb";
}

.uk-icon-spotify:before {
  content: "\f1bc";
}

.uk-icon-deviantart:before {
  content: "\f1bd";
}

.uk-icon-soundcloud:before {
  content: "\f1be";
}

.uk-icon-database:before {
  content: "\f1c0";
}

.uk-icon-file-pdf-o:before {
  content: "\f1c1";
}

.uk-icon-file-word-o:before {
  content: "\f1c2";
}

.uk-icon-file-excel-o:before {
  content: "\f1c3";
}

.uk-icon-file-powerpoint-o:before {
  content: "\f1c4";
}

.uk-icon-file-photo-o:before,
.uk-icon-file-picture-o:before,
.uk-icon-file-image-o:before {
  content: "\f1c5";
}

.uk-icon-file-zip-o:before,
.uk-icon-file-archive-o:before {
  content: "\f1c6";
}

.uk-icon-file-sound-o:before,
.uk-icon-file-audio-o:before {
  content: "\f1c7";
}

.uk-icon-file-movie-o:before,
.uk-icon-file-video-o:before {
  content: "\f1c8";
}

.uk-icon-file-code-o:before {
  content: "\f1c9";
}

.uk-icon-vine:before {
  content: "\f1ca";
}

.uk-icon-codepen:before {
  content: "\f1cb";
}

.uk-icon-jsfiddle:before {
  content: "\f1cc";
}

.uk-icon-life-bouy:before,
.uk-icon-life-buoy:before,
.uk-icon-life-saver:before,
.uk-icon-support:before,
.uk-icon-life-ring:before {
  content: "\f1cd";
}

.uk-icon-circle-o-notch:before {
  content: "\f1ce";
}

.uk-icon-ra:before,
.uk-icon-rebel:before {
  content: "\f1d0";
}

.uk-icon-ge:before,
.uk-icon-empire:before {
  content: "\f1d1";
}

.uk-icon-git-square:before {
  content: "\f1d2";
}

.uk-icon-git:before {
  content: "\f1d3";
}

.uk-icon-hacker-news:before {
  content: "\f1d4";
}

.uk-icon-tencent-weibo:before {
  content: "\f1d5";
}

.uk-icon-qq:before {
  content: "\f1d6";
}

.uk-icon-wechat:before,
.uk-icon-weixin:before {
  content: "\f1d7";
}

.uk-icon-send:before,
.uk-icon-paper-plane:before {
  content: "\f1d8";
}

.uk-icon-send-o:before,
.uk-icon-paper-plane-o:before {
  content: "\f1d9";
}

.uk-icon-history:before {
  content: "\f1da";
}

.uk-icon-genderless:before,
.uk-icon-circle-thin:before {
  content: "\f1db";
}

.uk-icon-header:before {
  content: "\f1dc";
}

.uk-icon-paragraph:before {
  content: "\f1dd";
}

.uk-icon-sliders:before {
  content: "\f1de";
}

.uk-icon-share-alt:before {
  content: "\f1e0";
}

.uk-icon-share-alt-square:before {
  content: "\f1e1";
}

.uk-icon-bomb:before {
  content: "\f1e2";
}

.uk-icon-soccer-ball-o:before,
.uk-icon-futbol-o:before {
  content: "\f1e3";
}

.uk-icon-tty:before {
  content: "\f1e4";
}

.uk-icon-binoculars:before {
  content: "\f1e5";
}

.uk-icon-plug:before {
  content: "\f1e6";
}

.uk-icon-slideshare:before {
  content: "\f1e7";
}

.uk-icon-twitch:before {
  content: "\f1e8";
}

.uk-icon-yelp:before {
  content: "\f1e9";
}

.uk-icon-newspaper-o:before {
  content: "\f1ea";
}

.uk-icon-wifi:before {
  content: "\f1eb";
}

.uk-icon-calculator:before {
  content: "\f1ec";
}

.uk-icon-paypal:before {
  content: "\f1ed";
}

.uk-icon-google-wallet:before {
  content: "\f1ee";
}

.uk-icon-cc-visa:before {
  content: "\f1f0";
}

.uk-icon-cc-mastercard:before {
  content: "\f1f1";
}

.uk-icon-cc-discover:before {
  content: "\f1f2";
}

.uk-icon-cc-amex:before {
  content: "\f1f3";
}

.uk-icon-cc-paypal:before {
  content: "\f1f4";
}

.uk-icon-cc-stripe:before {
  content: "\f1f5";
}

.uk-icon-bell-slash:before {
  content: "\f1f6";
}

.uk-icon-bell-slash-o:before {
  content: "\f1f7";
}

.uk-icon-trash:before {
  content: "\f1f8";
}

.uk-icon-copyright:before {
  content: "\f1f9";
}

.uk-icon-at:before {
  content: "\f1fa";
}

.uk-icon-eyedropper:before {
  content: "\f1fb";
}

.uk-icon-paint-brush:before {
  content: "\f1fc";
}

.uk-icon-birthday-cake:before {
  content: "\f1fd";
}

.uk-icon-area-chart:before {
  content: "\f1fe";
}

.uk-icon-pie-chart:before {
  content: "\f200";
}

.uk-icon-line-chart:before {
  content: "\f201";
}

.uk-icon-lastfm:before {
  content: "\f202";
}

.uk-icon-lastfm-square:before {
  content: "\f203";
}

.uk-icon-toggle-off:before {
  content: "\f204";
}

.uk-icon-toggle-on:before {
  content: "\f205";
}

.uk-icon-bicycle:before {
  content: "\f206";
}

.uk-icon-bus:before {
  content: "\f207";
}

.uk-icon-ioxhost:before {
  content: "\f208";
}

.uk-icon-angellist:before {
  content: "\f209";
}

.uk-icon-cc:before {
  content: "\f20a";
}

.uk-icon-shekel:before,
.uk-icon-sheqel:before,
.uk-icon-ils:before {
  content: "\f20b";
}

.uk-icon-meanpath:before {
  content: "\f20c";
}

.uk-icon-buysellads:before {
  content: "\f20d";
}

.uk-icon-connectdevelop:before {
  content: "\f20e";
}

.uk-icon-dashcube:before {
  content: "\f210";
}

.uk-icon-forumbee:before {
  content: "\f211";
}

.uk-icon-leanpub:before {
  content: "\f212";
}

.uk-icon-sellsy:before {
  content: "\f213";
}

.uk-icon-shirtsinbulk:before {
  content: "\f214";
}

.uk-icon-simplybuilt:before {
  content: "\f215";
}

.uk-icon-skyatlas:before {
  content: "\f216";
}

.uk-icon-cart-plus:before {
  content: "\f217";
}

.uk-icon-cart-arrow-down:before {
  content: "\f218";
}

.uk-icon-diamond:before {
  content: "\f219";
}

.uk-icon-ship:before {
  content: "\f21a";
}

.uk-icon-user-secret:before {
  content: "\f21b";
}

.uk-icon-motorcycle:before {
  content: "\f21c";
}

.uk-icon-street-view:before {
  content: "\f21d";
}

.uk-icon-heartbeat:before {
  content: "\f21e";
}

.uk-icon-venus:before {
  content: "\f221";
}

.uk-icon-mars:before {
  content: "\f222";
}

.uk-icon-mercury:before {
  content: "\f223";
}

.uk-icon-transgender:before {
  content: "\f224";
}

.uk-icon-transgender-alt:before {
  content: "\f225";
}

.uk-icon-venus-double:before {
  content: "\f226";
}

.uk-icon-mars-double:before {
  content: "\f227";
}

.uk-icon-venus-mars:before {
  content: "\f228";
}

.uk-icon-mars-stroke:before {
  content: "\f229";
}

.uk-icon-mars-stroke-v:before {
  content: "\f22a";
}

.uk-icon-mars-stroke-h:before {
  content: "\f22b";
}

.uk-icon-neuter:before {
  content: "\f22c";
}

.uk-icon-facebook-official:before {
  content: "\f230";
}

.uk-icon-pinterest-p:before {
  content: "\f231";
}

.uk-icon-whatsapp:before {
  content: "\f232";
}

.uk-icon-server:before {
  content: "\f233";
}

.uk-icon-user-plus:before {
  content: "\f234";
}

.uk-icon-user-times:before {
  content: "\f235";
}

.uk-icon-hotel:before,
.uk-icon-bed:before {
  content: "\f236";
}

.uk-icon-viacoin:before {
  content: "\f237";
}

.uk-icon-train:before {
  content: "\f238";
}

.uk-icon-subway:before {
  content: "\f239";
}

.uk-icon-medium-logo:before {
  content: "\f23a";
}

.uk-icon-500px:before {
  content: "\f26e";
}

.uk-icon-amazon:before {
  content: "\f270";
}

.uk-icon-balance-scale:before {
  content: "\f24e";
}

.uk-icon-battery-empty:before,
.uk-icon-battery-0:before {
  content: "\f244";
}

.uk-icon-battery-quarter:before,
.uk-icon-battery-1:before {
  content: "\f243";
}

.uk-icon-battery-half:before,
.uk-icon-battery-2:before {
  content: "\f242";
}

.uk-icon-battery-three-quarters:before,
.uk-icon-battery-3:before {
  content: "\f241";
}

.uk-icon-battery-full:before,
.uk-icon-battery-4:before {
  content: "\f240";
}

.uk-icon-black-tie:before {
  content: "\f27e";
}

.uk-icon-calendar-check-o:before {
  content: "\f274";
}

.uk-icon-calendar-minus-o:before {
  content: "\f272";
}

.uk-icon-calendar-plus-o:before {
  content: "\f271";
}

.uk-icon-calendar-times-o:before {
  content: "\f273";
}

.uk-icon-cc-diners-club:before {
  content: "\f24c";
}

.uk-icon-cc-jcb:before {
  content: "\f24b";
}

.uk-icon-chrome:before {
  content: "\f268";
}

.uk-icon-clone:before {
  content: "\f24d";
}

.uk-icon-commenting:before {
  content: "\f27a";
}

.uk-icon-commenting-o:before {
  content: "\f27b";
}

.uk-icon-contao:before {
  content: "\f26d";
}

.uk-icon-creative-commons:before {
  content: "\f25e";
}

.uk-icon-expeditedssl:before {
  content: "\f23e";
}

.uk-icon-firefox:before {
  content: "\f269";
}

.uk-icon-fonticons:before {
  content: "\f280";
}

.uk-icon-get-pocket:before {
  content: "\f265";
}

.uk-icon-gg:before {
  content: "\f260";
}

.uk-icon-gg-circle:before {
  content: "\f261";
}

.uk-icon-hand-lizard-o:before {
  content: "\f258";
}

.uk-icon-hand-stop-o:before,
.uk-icon-hand-paper-o:before {
  content: "\f256";
}

.uk-icon-hand-peace-o:before {
  content: "\f25b";
}

.uk-icon-hand-pointer-o:before {
  content: "\f25a";
}

.uk-icon-hand-grab-o:before,
.uk-icon-hand-rock-o:before {
  content: "\f255";
}

.uk-icon-hand-scissors-o:before {
  content: "\f257";
}

.uk-icon-hand-spock-o:before {
  content: "\f259";
}

.uk-icon-hourglass:before {
  content: "\f254";
}

.uk-icon-hourglass-o:before {
  content: "\f250";
}

.uk-icon-hourglass-1:before,
.uk-icon-hourglass-start:before {
  content: "\f251";
}

.uk-icon-hourglass-2:before,
.uk-icon-hourglass-half:before {
  content: "\f252";
}

.uk-icon-hourglass-3:before,
.uk-icon-hourglass-end:before {
  content: "\f253";
}

.uk-icon-houzz:before {
  content: "\f27c";
}

.uk-icon-i-cursor:before {
  content: "\f246";
}

.uk-icon-industry:before {
  content: "\f275";
}

.uk-icon-internet-explorer:before {
  content: "\f26b";
}

.uk-icon-map:before {
  content: "\f279";
}

.uk-icon-map-o:before {
  content: "\f278";
}

.uk-icon-map-pin:before {
  content: "\f276";
}

.uk-icon-map-signs:before {
  content: "\f277";
}

.uk-icon-mouse-pointer:before {
  content: "\f245";
}

.uk-icon-object-group:before {
  content: "\f247";
}

.uk-icon-object-ungroup:before {
  content: "\f248";
}

.uk-icon-odnoklassniki:before {
  content: "\f263";
}

.uk-icon-odnoklassniki-square:before {
  content: "\f264";
}

.uk-icon-opencart:before {
  content: "\f23d";
}

.uk-icon-opera:before {
  content: "\f26a";
}

.uk-icon-optin-monster:before {
  content: "\f23c";
}

.uk-icon-registered:before {
  content: "\f25d";
}

.uk-icon-safari:before {
  content: "\f267";
}

.uk-icon-sticky-note:before {
  content: "\f249";
}

.uk-icon-sticky-note-o:before {
  content: "\f24a";
}

.uk-icon-tv:before,
.uk-icon-television:before {
  content: "\f26c";
}

.uk-icon-trademark:before {
  content: "\f25c";
}

.uk-icon-tripadvisor:before {
  content: "\f262";
}

.uk-icon-vimeo:before {
  content: "\f27d";
}

.uk-icon-wikipedia-w:before {
  content: "\f266";
}

.uk-icon-yc:before,
.uk-icon-y-combinator:before {
  content: "\f23b";
}

.uk-icon-yc-square:before,
.uk-icon-y-combinator-square:before {
  content: "\f1d4";
}

.uk-icon-bluetooth:before {
  content: "\f293";
}

.uk-icon-bluetooth-b:before {
  content: "\f294";
}

.uk-icon-codiepie:before {
  content: "\f284";
}

.uk-icon-credit-card-alt:before {
  content: "\f283";
}

.uk-icon-edge:before {
  content: "\f282";
}

.uk-icon-fort-awesome:before {
  content: "\f286";
}

.uk-icon-hashtag:before {
  content: "\f292";
}

.uk-icon-mixcloud:before {
  content: "\f289";
}

.uk-icon-modx:before {
  content: "\f285";
}

.uk-icon-pause-circle:before {
  content: "\f28b";
}

.uk-icon-pause-circle-o:before {
  content: "\f28c";
}

.uk-icon-percent:before {
  content: "\f295";
}

.uk-icon-product-hunt:before {
  content: "\f288";
}

.uk-icon-reddit-alien:before {
  content: "\f281";
}

.uk-icon-scribd:before {
  content: "\f28a";
}

.uk-icon-shopping-bag:before {
  content: "\f290";
}

.uk-icon-shopping-basket:before {
  content: "\f291";
}

.uk-icon-stop-circle:before {
  content: "\f28d";
}

.uk-icon-stop-circle-o:before {
  content: "\f28e";
}

.uk-icon-usb:before {
  content: "\f287";
}

/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Remove default `button` padding and background color
 * 8. Style
 */
.uk-close {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background: transparent;
  /* 8 */
  display: inline-block;
  box-sizing: content-box;
  width: 20px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.3;
}

/* Icon */
.uk-close:after {
  display: block;
  content: "\f00d";
  font-family: FontAwesome;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.uk-close:hover,
.uk-close:focus {
  opacity: 0.5;
  /* 2 */
  outline: none;
  /* 3 */
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* Modifier
 ========================================================================== */
.uk-close-alt {
  padding: 2px;
  border-radius: 50%;
  background: #eee;
  opacity: 1;
}

/* Hover */
.uk-close-alt:hover,
.uk-close-alt:focus {
  opacity: 1;
}

/* Icon */
.uk-close-alt:after {
  opacity: 0.5;
}

.uk-close-alt:hover:after,
.uk-close-alt:focus:after {
  opacity: 0.8;
}

/* ========================================================================
   Component: Badge
 ========================================================================== */
.uk-badge {
  display: inline-block;
  padding: 0 5px;
  background: #478fa7;
  font-size: 10px;
  font-weight: bold;
  line-height: 14px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  text-transform: none;
}

/*
 * Keep color when badge is a link
 */
a.uk-badge:hover {
  color: #fff;
}

/* Modifier: `uk-badge-notification`;
 ========================================================================== */
.uk-badge-notification {
  box-sizing: border-box;
  min-width: 18px;
  border-radius: 500px;
  font-size: 12px;
  line-height: 18px;
}

/* Color modifier
 ========================================================================== */
/*
 * Modifier: `uk-badge-success`
 */
.uk-badge-success {
  background-color: #8cc14c;
}

/*
 * Modifier: `uk-badge-warning`
 */
.uk-badge-warning {
  background-color: #faa732;
}

/*
 * Modifier: `uk-badge-danger`
 */
.uk-badge-danger {
  background-color: #da314b;
}

/* ========================================================================
   Component: Alert
 ========================================================================== */
.uk-alert {
  margin-bottom: 15px;
  padding: 10px;
  background: #ebf7fd;
  color: #2d7091;
}

/*
 * Add margin if adjacent element
 */
* + .uk-alert {
  margin-top: 15px;
}

/*
 * Remove margin from the last-child
 */
.uk-alert > :last-child {
  margin-bottom: 0;
}

/*
 * Keep color for headings if the default heading color is changed
 */
.uk-alert h1,
.uk-alert h2,
.uk-alert h3,
.uk-alert h4,
.uk-alert h5,
.uk-alert h6 {
  color: inherit;
}

/* Close in alert
 ========================================================================== */
.uk-alert > .uk-close:first-child {
  float: right;
}

/*
 * Remove margin from adjacent element
 */
.uk-alert > .uk-close:first-child + * {
  margin-top: 0;
}

/* Modifier: `uk-alert-success`
 ========================================================================== */
.uk-alert-success {
  background: #f2fae3;
  color: #659f13;
}

/* Modifier: `uk-alert-warning`
 ========================================================================== */
.uk-alert-warning {
  background: #fffceb;
  color: #e28327;
}

/* Modifier: `uk-alert-danger`
 ========================================================================== */
.uk-alert-danger {
  background: #fff1f0;
  color: #d85030;
}

/* Modifier: `uk-alert-large`
 ========================================================================== */
.uk-alert-large {
  padding: 20px;
}

.uk-alert-large > .uk-close:first-child {
  margin: -10px -10px 0 0;
}

/* ========================================================================
   Component: Thumbnail
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Responsive behavior
 * 3. Corrects `max-width` behavior sed
 * 4. Required for `figure` element
 * 5. Style
 */
.uk-thumbnail {
  /* 1 */
  display: inline-block;
  /* 2 */
  max-width: 100%;
  /* 3 */
  box-sizing: border-box;
  /* 3 */
  margin: 0;
  /* 4 */
  padding: 4px;
  border: 1px solid #ddd;
  background: #fff;
}

/*
 * Hover state for `a` elements
 * 1. Apply hover style also to focus state
 * 2. Needed for caption
 * 3. Remove default focus style
 */
a.uk-thumbnail:hover,
a.uk-thumbnail:focus {
  border-color: #aaa;
  background-color: #fff;
  /* 2 */
  text-decoration: none;
  /* 3 */
  outline: none;
}

/* Caption
 ========================================================================== */
.uk-thumbnail-caption {
  padding-top: 4px;
  text-align: center;
  color: #333840;
}

/* Sizes
 ========================================================================== */
.uk-thumbnail-mini {
  width: 150px;
}

.uk-thumbnail-small {
  width: 200px;
}

.uk-thumbnail-medium {
  width: 300px;
}

.uk-thumbnail-large {
  width: 400px;
}

.uk-thumbnail-expand,
.uk-thumbnail-expand > img {
  width: 100%;
}

/* ========================================================================
   Component: Overlay
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Set max-width for responsive images to prevent `inline-block` consequences
 * 4. Remove the gap between the container and its child element
 * 5. Needed for transitions and to fixed wrong scaling calculation for images in Chrome
 * 6. Fixed `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 * 7. Reset margin
 */
.uk-overlay {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  overflow: hidden;
  /* 6 */
  -webkit-transform: translateZ(0);
  /* 7 */
  margin: 0;
}

/* 6 for Safari */
.uk-overlay.uk-border-circle {
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

/*
 * Remove margin from content
 */
.uk-overlay > :first-child {
  margin-bottom: 0;
}

/* Sub-object `uk-overlay-panel`
 ========================================================================== */
/*
 * 1. Position cover
 * 2. Style
 */
.uk-overlay-panel {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

/*
 * Remove margin from the last-child
 */
.uk-overlay-panel > :last-child,
.uk-overlay-panel.uk-flex > * > :last-child {
  margin-bottom: 0;
}

/*
 * Keep color for headings if the default heading color is changed
 */
.uk-overlay-panel h1,
.uk-overlay-panel h2,
.uk-overlay-panel h3,
.uk-overlay-panel h4,
.uk-overlay-panel h5,
.uk-overlay-panel h6 {
  color: inherit;
}

.uk-overlay-panel a:not([class]) {
  color: inherit;
  text-decoration: underline;
}

.uk-overlay-panel a[class*='uk-icon-']:not(.uk-icon-button) {
  color: inherit;
}

/* Sub-object `uk-overlay-hover` and `uk-overlay-active`
 ========================================================================== */
.uk-overlay-hover:not(:hover):not(.uk-hover) .uk-overlay-panel:not(.uk-ignore) {
  opacity: 0;
}

.uk-overlay-active :not(.uk-active) > .uk-overlay-panel:not(.uk-ignore) {
  opacity: 0;
}

/* Modifier `uk-overlay-background`
 ========================================================================== */
.uk-overlay-background {
  background: rgba(0, 0, 0, 0.5);
}

/* Modifier `uk-overlay-image`
 ========================================================================== */
/*
 * Reset panel
 */
.uk-overlay-image {
  padding: 0;
}

/* Position modifiers
 ========================================================================== */
.uk-overlay-top {
  bottom: auto;
}

.uk-overlay-bottom {
  top: auto;
}

.uk-overlay-left {
  right: auto;
}

.uk-overlay-right {
  left: auto;
}

/* Sub-object `uk-overlay-icon`
 ========================================================================== */
.uk-overlay-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #fff;
}

/* Transitions
 ========================================================================== */
.uk-overlay-fade,
.uk-overlay-scale,
.uk-overlay-spin,
.uk-overlay-grayscale,
.uk-overlay-blur,
[class*='uk-overlay-slide'] {
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-property: opacity, transform, -webkit-filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-filter;
}

.uk-overlay-active .uk-overlay-fade,
.uk-overlay-active .uk-overlay-scale,
.uk-overlay-active .uk-overlay-spin,
.uk-overlay-active [class*='uk-overlay-slide'] {
  transition-duration: 0.8s;
}

/*
 * Fade
 */
.uk-overlay-fade {
  opacity: 0.7;
}

.uk-overlay-hover:hover .uk-overlay-fade,
.uk-overlay-hover.uk-hover .uk-overlay-fade,
.uk-overlay-active .uk-active > .uk-overlay-fade {
  opacity: 1;
}

/*
 * Scale
 */
.uk-overlay-scale {
  transform: scale(1);
}

.uk-overlay-hover:hover .uk-overlay-scale,
.uk-overlay-hover.uk-hover .uk-overlay-scale,
.uk-overlay-active .uk-active > .uk-overlay-scale {
  transform: scale(1.1);
}

/*
 * Spin
 */
.uk-overlay-spin {
  transform: scale(1) rotate(0deg);
}

.uk-overlay-hover:hover .uk-overlay-spin,
.uk-overlay-hover.uk-hover .uk-overlay-spin,
.uk-overlay-active .uk-active > .uk-overlay-spin {
  transform: scale(1.1) rotate(3deg);
}

/*
 * Grayscale
 */
.uk-overlay-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.uk-overlay-hover:hover .uk-overlay-grayscale,
.uk-overlay-hover.uk-hover .uk-overlay-grayscale,
.uk-overlay-active .uk-active > .uk-overlay-grayscale {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

/*
 * Slide
 */
[class*='uk-overlay-slide'] {
  opacity: 0;
}

/* Top */
.uk-overlay-slide-top {
  transform: translateY(-100%);
}

/* Bottom */
.uk-overlay-slide-bottom {
  transform: translateY(100%);
}

/* Left */
.uk-overlay-slide-left {
  transform: translateX(-100%);
}

/* Right */
.uk-overlay-slide-right {
  transform: translateX(100%);
}

/* Hover */
.uk-overlay-hover:hover [class*='uk-overlay-slide'],
.uk-overlay-hover.uk-hover [class*='uk-overlay-slide'],
.uk-overlay-active .uk-active > [class*='uk-overlay-slide'] {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* DEPRECATED
 * Sub-object `uk-overlay-area`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.uk-overlay-area {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  background: rgba(0, 0, 0, 0.3);
  /* 3 */
  opacity: 0;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}

/*
 * Hover
 * 1. `uk-hover` to support touch devices
 * 2. Use optional `uk-overlay-toggle` to trigger the overlay earlier
 */
.uk-overlay:hover .uk-overlay-area,
.uk-overlay.uk-hover .uk-overlay-area,
.uk-overlay-toggle:hover .uk-overlay-area,
.uk-overlay-toggle.uk-hover .uk-overlay-area {
  opacity: 1;
}

/*
 * Icon
 */
.uk-overlay-area:empty:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #fff;
}

/* DEPRECATED
 * Sub-object `uk-overlay-area-content`
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 * Needed for Firefox
 */
.uk-overlay-area:not(:empty) {
  font-size: 0.001px;
}

/*
 * 1. Needed for vertical alignment
 */
.uk-overlay-area:not(:empty):before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/*
 * 1. Set vertical alignment
 * 2. Reset whitespace hack
 * 3. Set horizontal alignment
 * 4. Set style
 */
.uk-overlay-area-content {
  /* 1 */
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  vertical-align: middle;
  /* 2 */
  font-size: 1rem;
  /* 3 */
  text-align: center;
  /* 4 */
  padding: 0 15px;
  color: #fff;
}

/*
 * Remove margin from the last-child
 */
.uk-overlay-area-content > :last-child {
  margin-bottom: 0;
}

/*
 * Links in overlay area
 */
.uk-overlay-area-content a:not([class]),
.uk-overlay-area-content a:not([class]):hover {
  color: inherit;
}

/* DEPRECATED
 * Sub-object `uk-overlay-caption`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.uk-overlay-caption {
  /* 1 */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  /* 3 */
  opacity: 0;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}

/*
 * Hover
 * 1. `uk-hover` to support touch devices
 * 2. Use optional `uk-overlay-toggle` to trigger the overlay earlier
 */
.uk-overlay:hover .uk-overlay-caption,
.uk-overlay.uk-hover .uk-overlay-caption,
.uk-overlay-toggle:hover .uk-overlay-caption,
.uk-overlay-toggle.uk-hover .uk-overlay-caption {
  opacity: 1;
}

/* ========================================================================
   Component: Column
 ========================================================================== */
[class*='uk-column-'] {
  column-gap: 25px;
}

/* Width modifiers
 ========================================================================== */
.uk-column-1-2 {
  column-count: 2;
}

.uk-column-1-3 {
  column-count: 3;
}

.uk-column-1-4 {
  column-count: 4;
}

.uk-column-1-5 {
  column-count: 5;
}

.uk-column-1-6 {
  column-count: 6;
}

/* Phone landscape and bigger */
@media (min-width: 480px) {
  .uk-column-small-1-2 {
    column-count: 2;
  }
  .uk-column-small-1-3 {
    column-count: 3;
  }
  .uk-column-small-1-4 {
    column-count: 4;
  }
  .uk-column-small-1-5 {
    column-count: 5;
  }
  .uk-column-small-1-6 {
    column-count: 6;
  }
}

/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-column-medium-1-2 {
    column-count: 2;
  }
  .uk-column-medium-1-3 {
    column-count: 3;
  }
  .uk-column-medium-1-4 {
    column-count: 4;
  }
  .uk-column-medium-1-5 {
    column-count: 5;
  }
  .uk-column-medium-1-6 {
    column-count: 6;
  }
}

/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-column-large-1-2 {
    column-count: 2;
  }
  .uk-column-large-1-3 {
    column-count: 3;
  }
  .uk-column-large-1-4 {
    column-count: 4;
  }
  .uk-column-large-1-5 {
    column-count: 5;
  }
  .uk-column-large-1-6 {
    column-count: 6;
  }
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-column-xlarge-1-2 {
    column-count: 2;
  }
  .uk-column-xlarge-1-3 {
    column-count: 3;
  }
  .uk-column-xlarge-1-4 {
    column-count: 4;
  }
  .uk-column-xlarge-1-5 {
    column-count: 5;
  }
  .uk-column-xlarge-1-6 {
    column-count: 6;
  }
}

/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*='uk-animation-'] {
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

/* Hide animated element if scrollspy is used */
@media screen {
  [data-uk-scrollspy*='uk-animation-']:not([data-uk-scrollspy*='target']) {
    opacity: 0;
  }
}

/*
 * Fade
 * Higher specificity (!important) needed because of reverse modifier
 */
.uk-animation-fade {
  animation-name: uk-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear !important;
}

/*
 * Fade with scale
 */
.uk-animation-scale-up {
  animation-name: uk-fade-scale-02;
}

.uk-animation-scale-down {
  animation-name: uk-fade-scale-18;
}

/*
 * Fade with slide
 */
.uk-animation-slide-top {
  animation-name: uk-fade-top;
}

.uk-animation-slide-bottom {
  animation-name: uk-fade-bottom;
}

.uk-animation-slide-left {
  animation-name: uk-fade-left;
}

.uk-animation-slide-right {
  animation-name: uk-fade-right;
}

/*
 * Scale
 */
.uk-animation-scale {
  animation-name: uk-scale-12;
}

/*
 * Shake
 */
.uk-animation-shake {
  animation-name: uk-shake;
}

/* Direction modifiers
 ========================================================================== */
.uk-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}

/* Duration modifiers
========================================================================== */
.uk-animation-15 {
  animation-duration: 15s;
}

/* Origin modifiers
========================================================================== */
.uk-animation-top-left {
  transform-origin: 0 0;
}

.uk-animation-top-center {
  transform-origin: 50% 0;
}

.uk-animation-top-right {
  transform-origin: 100% 0;
}

.uk-animation-middle-left {
  transform-origin: 0 50%;
}

.uk-animation-middle-right {
  transform-origin: 100% 50%;
}

.uk-animation-bottom-left {
  transform-origin: 0 100%;
}

.uk-animation-bottom-center {
  transform-origin: 50% 100%;
}

.uk-animation-bottom-right {
  transform-origin: 100% 100%;
}

/* Sub-object: `uk-animation-hover`
========================================================================== */
/*
 * Enable animation only on hover
 * Note: Firefox also needs this because animations are not triggered when switching between display `hidden` and `block`
 */
.uk-animation-hover:not(:hover),
.uk-animation-hover:not(:hover) [class*='uk-animation-'],
.uk-touch .uk-animation-hover:not(.uk-hover),
.uk-touch .uk-animation-hover:not(.uk-hover) [class*='uk-animation-'] {
  animation-name: none;
}

/* Keyframes: Fade
 * Used by dropdown, datepicker and slideshow component
 ========================================================================== */

@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Keyframes: Fade with slide
 ========================================================================== */
/*
 * Top
 */

@keyframes uk-fade-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Bottom
 */

@keyframes uk-fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Left
 */

@keyframes uk-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*
 * Right
 */

@keyframes uk-fade-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Keyframes: Fade with scale
 ========================================================================== */
/*
 * Scale by 0.2
 */

@keyframes uk-fade-scale-02 {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*
 * Scale by 1.5
 * Used by slideshow component
 */

@keyframes uk-fade-scale-15 {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*
 * Scale by 1.8
 */

@keyframes uk-fade-scale-18 {
  0% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Keyframes: Slide
 * Used by slideshow component
 ========================================================================== */
/*
 * Left
 */

@keyframes uk-slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/*
 * Right
 */

@keyframes uk-slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

/*
 * Left third
 */

@keyframes uk-slide-left-33 {
  0% {
    transform: translateX(33%);
  }
  100% {
    transform: translateX(0);
  }
}

/*
 * Right third
 */

@keyframes uk-slide-right-33 {
  0% {
    transform: translateX(-33%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Keyframes: Scale
 ========================================================================== */

@keyframes uk-scale-12 {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Keyframes: Rotate
 * Used by icon component
 ========================================================================== */

@keyframes uk-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

/* Keyframes: Shake
 ========================================================================== */

@keyframes uk-shake {
  0%, 100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}

/* Keyframes: Fade with slide fixed
 * Used by dropdown and search component
 ========================================================================== */
/*
 * Top fixed
 */

@keyframes uk-slide-top-fixed {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Bottom fixed
 */

@keyframes uk-slide-bottom-fixed {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Box-sizing is needed for `uk-dropdown-justify`
 * 4. Set width
 */
.uk-dropdown,
.uk-dropdown-blank {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 970;
  /* 3 */
  box-sizing: border-box;
  /* 4 */
  width: 100px;
}

/*
 * Dropdown style
 * 1. Reset button group whitespace hack
 */
.uk-dropdown {
  padding: 15px;
  background: #ffffff;
  color: #74b2c7;
  /* 1 */
  font-size: 0.875em;
  vertical-align: top;
}

/*
 * 1. Show dropdown
 * 2. Set animation
 * 3. Needed for scale animation
 */
.uk-open > .uk-dropdown,
.uk-open > .uk-dropdown-blank {
  /* 1 */
  display: block;
  /* 2 */
  animation: uk-fade 0.2s ease-in-out;
  /* 3 */
  transform-origin: 0 0;
}

/* Alignment modifiers
 ========================================================================== */
/*
 * Modifier
 */
.uk-dropdown-top {
  margin-top: 0;
}

.uk-dropdown-bottom {
  margin-top: 0;
}

.uk-dropdown-left {
  margin-left: 0;
}

.uk-dropdown-right {
  margin-left: 0;
}

/* Nav in dropdown
 ========================================================================== */
.uk-dropdown .uk-nav {
  margin: 0 -15px;
}

/* Grid and panel in dropdown
 ========================================================================== */
/*
* Vertical gutter
*/
/*
 * Grid
 * Higher specificity to override large gutter
 */
.uk-grid .uk-dropdown-grid + .uk-dropdown-grid {
  margin-top: 15px;
}

/* Panels */
.uk-dropdown-grid > [class*='uk-width-'] > .uk-panel + .uk-panel {
  margin-top: 15px;
}

/* Tablet and bigger */
@media (min-width: 768px) {
  /*
     * Horizontal gutter
     */
  .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid {
    margin-left: -15px;
    margin-right: -15px;
  }
  .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid > [class*='uk-width-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
  /*
     * Column divider
     */
  .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid > [class*='uk-width-']:nth-child(n+2) {
    border-left: 1px solid #dedede;
  }
  /*
     * Width multiplier for dropdown columns
     */
  .uk-dropdown-width-2:not(.uk-dropdown-stack) {
    width: 200px;
  }
  .uk-dropdown-width-3:not(.uk-dropdown-stack) {
    width: 300px;
  }
  .uk-dropdown-width-4:not(.uk-dropdown-stack) {
    width: 400px;
  }
  .uk-dropdown-width-5:not(.uk-dropdown-stack) {
    width: 500px;
  }
}

/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Stack columns and take full width
     */
  .uk-dropdown-grid > [class*='uk-width-'] {
    width: 100%;
  }
  /*
     * Vertical gutter
     */
  .uk-dropdown-grid > [class*='uk-width-']:nth-child(n+2) {
    margin-top: 15px;
  }
}

/*
* Stack grid columns
*/
.uk-dropdown-stack > .uk-dropdown-grid > [class*='uk-width-'] {
  width: 100%;
}

.uk-dropdown-stack > .uk-dropdown-grid > [class*='uk-width-']:nth-child(n+2) {
  margin-top: 15px;
}

/* Modifier `uk-dropdown-small`
 ========================================================================== */
/*
 * Set min-width and text expands dropdown if needed
 */
.uk-dropdown-small {
  min-width: 150px;
  width: auto;
  padding: 5px;
  white-space: nowrap;
}

/*
 * Nav in dropdown
 */
.uk-dropdown-small .uk-nav {
  margin: 0 -5px;
}

/* Modifier: `uk-dropdown-navbar`
 ========================================================================== */
.uk-dropdown-navbar {
  margin-top: 0;
  background: #ffffff;
  color: #74b2c7;
}

.uk-open > .uk-dropdown-navbar {
  animation: uk-slide-top-fixed 0.2s ease-in-out;
}

/* Modifier `uk-dropdown-scrollable`
 ========================================================================== */
/*
 * Usefull for long lists
 */
.uk-dropdown-scrollable {
  overflow-y: auto;
  max-height: 200px;
}

/* Sub-object: `uk-dropdown-overlay`
 ========================================================================== */
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * This is the modal overlay and modal dialog container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Allow scrolling for the modal dialog
 * 4. Mask the background page
 * 5. Fade-in transition
 * 6. Deactivate browser history navigation in IE11
 * 7. force hardware acceleration to prevent browser rendering hiccups
 */
.uk-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  background: rgba(0, 0, 0, 0.6);
  /* 5 */
  opacity: 0;
  transition: opacity 0.15s linear;
  /* 6 */
  -ms-touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  /* 7 */
  transform: translateZ(0);
}

/*
 * Open state
 */
.uk-modal.uk-open {
  opacity: 1;
}

/*
 * Prevents duplicated scrollbar caused by 4.
 */
.uk-modal-page,
.uk-modal-page body {
  overflow: hidden;
}

/* Sub-object: `uk-modal-dialog`
 ========================================================================== */
/*
 * 1. Create position context for caption, spinner and close button
 * 2. Set box sizing
 * 3. Set style
 * 4. Slide-in transition
 */
.uk-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 50px auto;
  padding: 20px;
  width: 600px;
  max-width: 100%;
  max-width: calc(100% - 20px);
  /* 3 */
  background: #fff;
  /* 4 */
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.3s linear, transform 0.3s ease-out;
}

/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
     * Fit in small screen
     */
  .uk-modal-dialog {
    width: auto;
    margin: 10px auto;
  }
}

/*
 * Open state
 */
.uk-open .uk-modal-dialog {
  /* 4 */
  opacity: 1;
  transform: translateY(0);
}

/*
 * Remove margin from the last-child
 */
.uk-modal-dialog > :not([class*='uk-modal-']):last-child {
  margin-bottom: 0;
}

/* Close in modal
 ========================================================================== */
.uk-modal-dialog > .uk-close:first-child {
  margin: -10px -10px 0 0;
  float: right;
}

/*
 * Remove margin from adjacent element
 */
.uk-modal-dialog > .uk-close:first-child + :not([class*='uk-modal-']) {
  margin-top: 0;
}

/* Modifier: `uk-modal-dialog-lightbox`
 ========================================================================== */
.uk-modal-dialog-lightbox {
  margin: 15px auto;
  padding: 0;
  max-width: 95%;
  max-width: calc(100% - 30px);
  min-height: 50px;
}

/*
 * Close button
 */
.uk-modal-dialog-lightbox > .uk-close:first-child {
  position: absolute;
  top: -12px;
  right: -12px;
  margin: 0;
  float: none;
}

/* Phone landscape and smaller */
@media (max-width: 767px) {
  .uk-modal-dialog-lightbox > .uk-close:first-child {
    top: -7px;
    right: -7px;
  }
}

/* Modifier: `uk-modal-dialog-blank`
 ========================================================================== */
.uk-modal-dialog-blank {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  transition: opacity 0.3s linear;
}

/*
* Close button
*/
.uk-modal-dialog-blank > .uk-close:first-child {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  margin: 0;
  float: none;
}

/* Modifier: `uk-modal-dialog-large`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-modal-dialog-large {
    width: 930px;
  }
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-modal-dialog-large {
    width: 1130px;
  }
}

/* Sub-Object: `uk-modal-header` and `uk-modal-footer`
 ========================================================================== */
.uk-modal-header {
  margin-bottom: 15px;
}

.uk-modal-footer {
  margin-top: 15px;
}

/*
 * Remove margin from the last-child
 */
.uk-modal-header > :last-child,
.uk-modal-footer > :last-child {
  margin-bottom: 0;
}

/* Sub-Object: `uk-modal-caption`
 ========================================================================== */
.uk-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin-bottom: -10px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Sub-Object: `uk-modal-spinner`
 ========================================================================== */
.uk-modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: #ddd;
}

.uk-modal-spinner:after {
  content: "\f110";
  display: block;
  font-family: FontAwesome;
  animation: uk-rotate 2s infinite linear;
}

/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * This is the offcanvas overlay and bar container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Deactivate browser touch actions in IE11
 * 4. Mask the background page
 */
.uk-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  /* 3 */
  -ms-touch-action: none;
  touch-action: none;
  /* 4 */
  background: rgba(0, 0, 0, 0.1);
}

.uk-offcanvas.uk-active {
  display: block;
}

/* Sub-object `uk-offcanvas-page`
 ========================================================================== */
/*
 * Prepares the whole HTML page to slide-out
 * 1. Fix the main page and disallow scrolling
 * 2. Side-out transition
 */
.uk-offcanvas-page {
  /* 1 */
  position: fixed;
  /* 2 */
  transition: margin-left 0.3s ease-in-out;
}

/* Sub-object `uk-offcanvas-bar`
 ========================================================================== */
/*
 * This is the offcanvas bar
 * 1. Set fixed position
 * 2. Size and style
 * 3. Allow scrolling
 * 4. Side-out transition
 * 5. Deactivate scroll chaining in IE11
 */
.uk-offcanvas-bar {
  /* 1 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: 1001;
  /* 2 */
  width: 270px;
  max-width: 100%;
  background: #333;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  transition: transform 0.3s ease-in-out;
  /* 5 */
  -ms-scroll-chaining: none;
}

.uk-offcanvas.uk-active .uk-offcanvas-bar.uk-offcanvas-bar-show {
  transform: translateX(0%);
}

/* Modifier `uk-offcanvas-bar-flip`
 ========================================================================== */
.uk-offcanvas-bar-flip {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

/* Panel in offcanvas
 ========================================================================== */
.uk-offcanvas .uk-panel {
  margin: 20px 15px;
  color: #777;
}

.uk-offcanvas .uk-panel-title {
  color: #ccc;
}

.uk-offcanvas .uk-panel a:not([class]) {
  color: #ccc;
}

.uk-offcanvas .uk-panel a:not([class]):hover {
  color: #fff;
}

/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * 1. Deactivate browser history navigation in IE11
 */
.uk-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
  /* 1 */
  -ms-touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
}

/*
 * Items
 */
.uk-switcher > :not(.uk-active) {
  display: none;
}

/* ========================================================================
   Component: Text
 ========================================================================== */
/* Size modifiers
 ========================================================================== */
.uk-text-small {
  font-size: 11px;
  line-height: 16px;
}

.uk-text-large {
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}

/* Weight modifiers
 ========================================================================== */
.uk-text-bold {
  font-weight: bold;
}

/* Color modifiers
 ========================================================================== */
.uk-text-muted {
  color: #999 !important;
}

.uk-text-primary {
  color: #2d7091 !important;
}

.uk-text-success {
  color: #659f13 !important;
}

.uk-text-warning {
  color: #e28327 !important;
}

.uk-text-danger {
  color: #d85030 !important;
}

.uk-text-contrast {
  color: #fff !important;
}

/* Alignment modifiers
 ========================================================================== */
.uk-text-left {
  text-align: left !important;
}

.uk-text-right {
  text-align: right !important;
}

.uk-text-center {
  text-align: center !important;
}

.uk-text-justify {
  text-align: justify !important;
}

.uk-text-top {
  vertical-align: top !important;
}

.uk-text-middle {
  vertical-align: middle !important;
}

.uk-text-bottom {
  vertical-align: bottom !important;
}

/* Only tablets portrait and smaller */
@media (max-width: 959px) {
  .uk-text-center-medium {
    text-align: center !important;
  }
  .uk-text-left-medium {
    text-align: left !important;
  }
}

/* Phone landscape and smaller */
@media (max-width: 767px) {
  .uk-text-center-small {
    text-align: center !important;
  }
  .uk-text-left-small {
    text-align: left !important;
  }
}

/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.uk-text-nowrap {
  white-space: nowrap;
}

/*
 * Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 */
.uk-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*
 * Break strings if their length exceeds the width of their container
 */
.uk-text-break {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Container
 ========================================================================== */
.uk-container {
  box-sizing: border-box;
  max-width: 980px;
  padding: 0 40px;
  max-width: 100%;
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-container {
    max-width: 1200px;
    padding: 0 90px;
  }
}

/*
 * Micro clearfix
 */
.uk-container:before,
.uk-container:after {
  content: "";
  display: table;
}

.uk-container:after {
  clear: both;
}

/*
 * Center container
 */
.uk-container-center {
  margin-left: auto;
  margin-right: auto;
}

/* Clearing
 ========================================================================== */
/*
 * Micro clearfix
* `table-cell` is used with `:before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * `table` is used again with `:after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
.uk-clearfix:before {
  content: "";
  display: table-cell;
}

.uk-clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*
 *  Create a new block formatting context
 */
.uk-nbfc {
  overflow: hidden;
}

.uk-nbfc-alt {
  display: table-cell;
  width: 10000px;
}

/* Alignment of block elements
 ========================================================================== */
/*
 * Float blocks
 * 1. Prevent content overflow on small devices
 */
.uk-float-left {
  float: left;
}

.uk-float-right {
  float: right;
}

/* 1 */
[class*='uk-float-'] {
  max-width: 100%;
}

/* Alignment of images and objects
 ========================================================================== */
/*
 * Alignment
 */
[class*='uk-align-'] {
  display: block;
  margin-bottom: 15px;
}

.uk-align-left {
  margin-right: 15px;
  float: left;
}

.uk-align-right {
  margin-left: 15px;
  float: right;
}

/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-align-medium-left {
    margin-right: 15px;
    float: left;
  }
  .uk-align-medium-right {
    margin-left: 15px;
    float: right;
  }
}

.uk-align-center {
  margin-left: auto;
  margin-right: auto;
}

/* Vertical alignment
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 */
.uk-vertical-align {
  font-size: 0.001px;
}

/*
 *  The `uk-vertical-align` container needs a specific height
 */
.uk-vertical-align:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/*
 * Sub-object which can have any height
 * 1. Reset whitespace hack
 */
.uk-vertical-align-middle,
.uk-vertical-align-bottom {
  display: inline-block;
  max-width: 100%;
  /* 1 */
  font-size: 1rem;
}

.uk-vertical-align-middle {
  vertical-align: middle;
}

.uk-vertical-align-bottom {
  vertical-align: bottom;
}

/* Height
 ========================================================================== */
/*
 * More robust if padding and border are used
 */
[class*='uk-height'] {
  box-sizing: border-box;
}

/*
 * Useful to extend the `html` and `body` element to the full height of the page.
 */
.uk-height-1-1 {
  height: 100%;
}

/*
 * Useful to create image teasers
 */
.uk-height-viewport {
  height: 100vh;
  min-height: 600px;
}

/* Responsive objects
 * Note: Images are already responsive by default, see Base component
 ========================================================================== */
/*
 * 1. Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.uk-responsive-width,
.uk-responsive-height {
  box-sizing: border-box;
}

/*
 * Responsiveness: Sets a maximum width relative to the parent and auto scales the height
 * `important` needed to override `uk-img-preserve img`
 */
.uk-responsive-width {
  max-width: 100% !important;
  height: auto;
}

/*
 * Responsiveness: Sets a maximum height relative to the parent and auto scales the width
 * Only works if the parent element has a fixed height.
 */
.uk-responsive-height {
  max-height: 100%;
  width: auto;
}

/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.uk-margin {
  margin-bottom: 15px;
}

* + .uk-margin {
  margin-top: 15px;
}

.uk-margin-top {
  margin-top: 15px !important;
}

.uk-margin-bottom {
  margin-bottom: 15px !important;
}

.uk-margin-left {
  margin-left: 15px !important;
}

.uk-margin-right {
  margin-right: 15px !important;
}

/*
 * Larger margins
 */
.uk-margin-large {
  margin-bottom: 50px;
}

* + .uk-margin-large {
  margin-top: 50px;
}

.uk-margin-large-top {
  margin-top: 50px !important;
}

.uk-margin-large-bottom {
  margin-bottom: 50px !important;
}

.uk-margin-large-left {
  margin-left: 50px !important;
}

.uk-margin-large-right {
  margin-right: 50px !important;
}

/*
 * Smaller margins
 */
.uk-margin-small {
  margin-bottom: 5px;
}

* + .uk-margin-small {
  margin-top: 5px;
}

.uk-margin-small-top {
  margin-top: 5px !important;
}

.uk-margin-small-bottom {
  margin-bottom: 5px !important;
}

.uk-margin-small-left {
  margin-left: 5px !important;
}

.uk-margin-small-right {
  margin-right: 5px !important;
}

/*
 * Remove margins
 */
.uk-margin-remove {
  margin: 0 !important;
}

.uk-margin-top-remove {
  margin-top: 0 !important;
}

.uk-margin-bottom-remove {
  margin-bottom: 0 !important;
}

/* Padding
 ========================================================================== */
.uk-padding-remove {
  padding: 0 !important;
}

.uk-padding-top-remove {
  padding-top: 0 !important;
}

.uk-padding-bottom-remove {
  padding-bottom: 0 !important;
}

.uk-padding-vertical-remove {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Border
 ========================================================================== */
.uk-border-circle {
  border-radius: 50%;
}

.uk-border-rounded {
  border-radius: 5px;
}

/* Headings
 ========================================================================== */
.uk-heading-large {
  font-size: 36px;
  line-height: 42px;
}

/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-heading-large {
    font-size: 52px;
    line-height: 64px;
  }
}

/* Link
 ========================================================================== */
/*
 * Let links appear in default text color
 */
.uk-link-muted,
.uk-link-muted a {
  color: #333840;
}

.uk-link-muted:hover,
.uk-link-muted a:hover {
  color: #333840;
}

/*
 * Reset link style
 */
.uk-link-reset,
.uk-link-reset a,
.uk-link-reset:hover,
.uk-link-reset a:hover,
.uk-link-reset:focus,
.uk-link-reset a:focus {
  color: inherit;
  text-decoration: none;
}

/* Scrollable
 ========================================================================== */
/*
 * Enable scrolling for preformatted text
 */
.uk-scrollable-text {
  height: 300px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  resize: both;
}

/*
 * Box with scrolling enabled
 */
.uk-scrollable-box {
  box-sizing: border-box;
  height: 170px;
  padding: 10px;
  border: 1px solid #ddd;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}

.uk-scrollable-box > :last-child {
  margin-bottom: 0;
}

/* Overflow
 ========================================================================== */
.uk-overflow-hidden {
  overflow: hidden;
}

/*
 * Enable scrollbars if content is clipped
 */
.uk-overflow-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.uk-overflow-container > :last-child {
  margin-bottom: 0;
}

/* Position
 ========================================================================== */
.uk-position-absolute,
[class*='uk-position-top'],
[class*='uk-position-bottom'] {
  position: absolute !important;
}

/* Don't use `width: 100%` because it is wrong if the parent has padding. */
.uk-position-top {
  top: 0;
  left: 0;
  right: 0;
}

.uk-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}

.uk-position-top-left {
  top: 0;
  left: 0;
}

.uk-position-top-right {
  top: 0;
  right: 0;
}

.uk-position-bottom-left {
  bottom: 0;
  left: 0;
}

.uk-position-bottom-right {
  bottom: 0;
  right: 0;
}

/*
 * Cover
 */
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/*
 * Relative
 */
.uk-position-relative {
  position: relative !important;
}

/*
 * Z-index
 */
.uk-position-z-index {
  z-index: 1;
}

/* Display
 ========================================================================== */
/*
 * Display
 * 1. Required if child is a responsive image
 */
.uk-display-block {
  display: block !important;
}

.uk-display-inline {
  display: inline !important;
}

.uk-display-inline-block {
  display: inline-block !important;
  /* 1 */
  max-width: 100%;
}

/*
 * Visibility
 * Avoids setting display to `block` so it works also with `inline-block` and `table`
 */
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-visible-small {
    display: none !important;
  }
  .uk-visible-medium {
    display: none !important;
  }
  .uk-hidden-large {
    display: none !important;
  }
}

/* Tablets portrait */
@media (min-width: 768px) and (max-width: 959px) {
  .uk-visible-small {
    display: none !important;
  }
  .uk-visible-large {
    display: none !important;
  }
  .uk-hidden-medium {
    display: none !important;
  }
}

/* Phone landscape and smaller*/
@media (max-width: 767px) {
  .uk-visible-medium {
    display: none !important;
  }
  .uk-visible-large {
    display: none !important;
  }
  .uk-hidden-small {
    display: none !important;
  }
}

/* Remove from the flow and screen readers on any device */
.uk-hidden {
  display: none !important;
  visibility: hidden !important;
}

/* It's hidden, but still affects layout */
.uk-invisible {
  visibility: hidden !important;
}

/* Show on hover */
.uk-visible-hover:hover .uk-hidden,
.uk-visible-hover:hover .uk-invisible {
  display: block !important;
  visibility: visible !important;
}

.uk-visible-hover-inline:hover .uk-hidden,
.uk-visible-hover-inline:hover .uk-invisible {
  display: inline-block !important;
  visibility: visible !important;
}

/* Hide on touch */
.uk-touch .uk-hidden-touch,
.uk-notouch .uk-hidden-notouch {
  display: none !important;
}

/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: -ms-flexbox;
  display: flex;
}

.uk-flex-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/*
 * Fixes initial flex-shrink value in IE10
 */
.uk-flex > *,
.uk-flex-inline > * {
  -ms-flex-negative: 1;
}

/* Alignment
 ========================================================================== */
/*
 * Vertical alignment
 * Default value is `stretch`
 */
.uk-flex-top {
  -ms-flex-align: start;
  align-items: flex-start;
}

.uk-flex-middle {
  -ms-flex-align: center;
  align-items: center;
}

.uk-flex-bottom {
  -ms-flex-align: end;
  align-items: flex-end;
}

/*
 * Horizontal alignment
 * Default value is `flex-start`
 */
.uk-flex-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.uk-flex-right {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.uk-flex-space-between {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.uk-flex-space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* Direction
 ========================================================================== */
.uk-flex-row-reverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.uk-flex-column {
  -ms-flex-direction: column;
  flex-direction: column;
}

.uk-flex-column-reverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.uk-flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.uk-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

/*
 * Horizontal alignment
 * Default value is `stretch`
 */
.uk-flex-wrap-top {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.uk-flex-wrap-middle {
  -ms-flex-line-pack: center;
  align-content: center;
}

.uk-flex-wrap-bottom {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.uk-flex-wrap-space-between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.uk-flex-wrap-space-around {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}

/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-order-first {
  -ms-flex-order: -1;
  order: -1;
}

.uk-flex-order-last {
  -ms-flex-order: 99;
  order: 99;
}

/* Phone landscape and bigger */
@media (min-width: 480px) {
  .uk-flex-order-first-small {
    -ms-flex-order: -1;
    order: -1;
  }
  .uk-flex-order-last-small {
    -ms-flex-order: 99;
    order: 99;
  }
}

/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-flex-order-first-medium {
    -ms-flex-order: -1;
    order: -1;
  }
  .uk-flex-order-last-medium {
    -ms-flex-order: 99;
    order: 99;
  }
}

/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-flex-order-first-large {
    -ms-flex-order: -1;
    order: -1;
  }
  .uk-flex-order-last-large {
    -ms-flex-order: 99;
    order: 99;
  }
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-flex-order-first-xlarge {
    -ms-flex-order: -1;
    order: -1;
  }
  .uk-flex-order-last-xlarge {
    -ms-flex-order: 99;
    order: 99;
  }
}

/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-item-none {
  -ms-flex: none;
  flex: none;
}

/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 * 1. Fixes flex-shrink value in IE10
 */
.uk-flex-item-auto {
  -ms-flex: auto;
  flex: auto;
  /* 1 */
  -ms-flex-negative: 1;
}

/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-item-1 {
  -ms-flex: 1;
  flex: 1;
}

/* ========================================================================
   Component: Contrast
 ========================================================================== */
.uk-contrast {
  color: #fff;
  /* Active */
}

.uk-contrast a:not([class]),
.uk-contrast .uk-link {
  color: fade(#fff, 70%);
  text-decoration: none;
}

.uk-contrast a:not([class]):hover,
.uk-contrast .uk-link:hover {
  color: #fff;
  text-decoration: underline;
}

.uk-contrast :not(pre) > code,
.uk-contrast :not(pre) > kbd,
.uk-contrast :not(pre) > samp {
  color: #fff;
}

.uk-contrast em {
  color: #fff;
}

.uk-contrast h1, .uk-contrast h2, .uk-contrast h3, .uk-contrast h4, .uk-contrast h5, .uk-contrast h6 {
  color: #fff;
}

.uk-contrast hr {
  border-top-color: fade(#fff, 20%);
}

.uk-contrast .uk-nav li > a,
.uk-contrast .uk-nav li > a:hover {
  text-decoration: none;
}

.uk-contrast .uk-nav-side > li > a {
  color: #fff;
}

.uk-contrast .uk-nav-side > li > a:hover,
.uk-contrast .uk-nav-side > li > a:focus {
  background: fade(#fff, 10%);
  color: #fff;
}

.uk-contrast .uk-nav-side > li.uk-active > a {
  background: #fff;
  color: #333840;
}

.uk-contrast .uk-nav-side .uk-nav-header {
  color: #fff;
}

.uk-contrast .uk-nav-side .uk-nav-divider {
  border-top-color: fade(#fff, 20%);
}

.uk-contrast .uk-nav-side ul a {
  color: fade(#fff, 70%);
}

.uk-contrast .uk-nav-side ul a:hover {
  color: #fff;
}

.uk-contrast .uk-subnav > * > a {
  color: fade(#fff, 70%);
  text-decoration: none;
}

.uk-contrast .uk-subnav > * > a:hover,
.uk-contrast .uk-subnav > * > a:focus {
  color: #fff;
  text-decoration: none;
}

.uk-contrast .uk-subnav > .uk-active > a {
  color: #fff;
}

.uk-contrast .uk-subnav-line > :nth-child(n+2):before {
  border-left-color: fade(#fff, 20%);
}

.uk-contrast .uk-subnav-pill > * > a:hover,
.uk-contrast .uk-subnav-pill > * > a:focus {
  background: fade(#fff, 70%);
  color: #333840;
  text-decoration: none;
}

.uk-contrast .uk-subnav-pill > .uk-active > a {
  background: #fff;
  color: #333840;
}

.uk-contrast .uk-tab {
  border-bottom-color: fade(#fff, 20%);
}

.uk-contrast .uk-tab > li > a {
  border-color: transparent;
  color: fade(#fff, 70%);
}

.uk-contrast .uk-tab > li > a:hover,
.uk-contrast .uk-tab > li > a:focus,
.uk-contrast .uk-tab > li.uk-open > a {
  border-color: fade(#fff, 70%);
  background: fade(#fff, 70%);
  color: #333840;
  text-decoration: none;
}

.uk-contrast .uk-tab > li.uk-active > a {
  border-color: fade(#fff, 20%);
  border-bottom-color: transparent;
  background: #fff;
  color: #333840;
}

.uk-contrast .uk-tab-center {
  border-bottom-color: fade(#fff, 20%);
}

.uk-contrast .uk-tab-grid:before {
  border-top-color: fade(#fff, 20%);
}

.uk-contrast .uk-list-line > li:nth-child(n+2) {
  border-top-color: fade(#fff, 20%);
}

.uk-contrast .uk-form select,
.uk-contrast .uk-form textarea,
.uk-contrast .uk-form input:not([type]),
.uk-contrast .uk-form input[type="text"],
.uk-contrast .uk-form input[type="password"],
.uk-contrast .uk-form input[type="datetime"],
.uk-contrast .uk-form input[type="datetime-local"],
.uk-contrast .uk-form input[type="date"],
.uk-contrast .uk-form input[type="month"],
.uk-contrast .uk-form input[type="time"],
.uk-contrast .uk-form input[type="week"],
.uk-contrast .uk-form input[type="number"],
.uk-contrast .uk-form input[type="email"],
.uk-contrast .uk-form input[type="url"],
.uk-contrast .uk-form input[type="search"],
.uk-contrast .uk-form input[type="tel"],
.uk-contrast .uk-form input[type="color"] {
  border-color: fade(#fff, 80%);
  background: fade(#fff, 80%);
  color: #333840;
  background-clip: padding-box;
}

.uk-contrast .uk-form select:focus,
.uk-contrast .uk-form textarea:focus,
.uk-contrast .uk-form input:not([type]):focus,
.uk-contrast .uk-form input[type="text"]:focus,
.uk-contrast .uk-form input[type="password"]:focus,
.uk-contrast .uk-form input[type="datetime"]:focus,
.uk-contrast .uk-form input[type="datetime-local"]:focus,
.uk-contrast .uk-form input[type="date"]:focus,
.uk-contrast .uk-form input[type="month"]:focus,
.uk-contrast .uk-form input[type="time"]:focus,
.uk-contrast .uk-form input[type="week"]:focus,
.uk-contrast .uk-form input[type="number"]:focus,
.uk-contrast .uk-form input[type="email"]:focus,
.uk-contrast .uk-form input[type="url"]:focus,
.uk-contrast .uk-form input[type="search"]:focus,
.uk-contrast .uk-form input[type="tel"]:focus,
.uk-contrast .uk-form input[type="color"]:focus {
  border-color: #fff;
  background: #fff;
  color: #333840;
}

.uk-contrast .uk-form :-ms-input-placeholder {
  color: fade(#333840, 70%) !important;
}

.uk-contrast .uk-form ::-moz-placeholder {
  color: fade(#333840, 70%);
}

.uk-contrast .uk-form ::-webkit-input-placeholder {
  color: fade(#333840, 70%);
}

.uk-contrast .uk-button {
  color: #333840;
  background: #fff;
}

.uk-contrast .uk-button:hover,
.uk-contrast .uk-button:focus {
  background-color: fade(#fff, 80%);
  color: #333840;
}

.uk-contrast .uk-button:active,
.uk-contrast .uk-button.uk-active {
  background-color: fade(#fff, 70%);
  color: #333840;
}

.uk-contrast .uk-button-primary {
  background-color: #478fa7;
  color: #fff;
}

.uk-contrast .uk-button-primary:hover,
.uk-contrast .uk-button-primary:focus {
  background-color: #35b3ee;
  color: #fff;
}

.uk-contrast .uk-button-primary:active,
.uk-contrast .uk-button-primary.uk-active {
  background-color: #0091ca;
  color: #fff;
}

.uk-contrast .uk-icon-hover {
  color: fade(#fff, 70%);
}

.uk-contrast .uk-icon-hover:hover {
  color: #fff;
}

.uk-contrast .uk-icon-button {
  background: #fff;
  color: #333840;
}

.uk-contrast .uk-icon-button:hover,
.uk-contrast .uk-icon-button:focus {
  background-color: fade(#fff, 80%);
  color: #333840;
}

.uk-contrast .uk-icon-button:active {
  background-color: fade(#fff, 70%);
  color: #333840;
}

.uk-contrast .uk-text-muted {
  color: fade(#fff, 60%) !important;
}

.uk-contrast .uk-text-primary {
  color: #2d7091 !important;
}

/* Load Modules and Variables */
/************************************************
    Merchant Centre Styles
************************************************/
/************************************************
    Colours
************************************************/
/* Brand Colours */
/* Brand Shades */
/* Alert Colours */
/* used as background with dark green text */
/* used as background with white text */
/* use as text colour */
/* used as background with dark red text */
/* used as background with white text */
/* use as text colour */
/* used as background with dark yellow text */
/* used as background with white text */
/* use as text colour */
/* use as text colour */
/************************************************
    Fonts
************************************************/
/* Font Styles */
/* Font Weights */
/* Mixins */
/*** Links ***/
/* Load Components */
/************************************************
    Helper Classes
************************************************/
.group::after {
  content: "";
  display: table;
  clear: both;
}

.hidden {
  display: none;
}

.expanded-hidden {
  display: none;
}

.padding-0 {
  padding-left: 0;
  padding-right: 0;
}

.stretch {
  width: 100% !important;
}

.bump-down {
  margin-top: 20px;
}

.push-down {
  margin-bottom: 20px;
}

.bump-vertical {
  margin-top: 20px;
  margin-bottom: 20px;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.no-margin-horizontal {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.full-height {
  height: 100%;
}

.no-padding {
  padding: 0 !important;
}

.vcenter {
  display: inline-block;
  float: none;
  vertical-align: middle;
}

.hcenter {
  text-align: center;
}

.clear {
  clear: both;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

a.truncate,
span.truncate {
  display: inline-block;
}

.break-line {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.v-center-container {
  border-collapse: collapse;
  display: table;
  height: 100%;
}

.v-center-container .v-center {
  border-collapse: collapse;
  display: table-cell;
  vertical-align: middle;
}

/************************************************
    Decimal Grid (for pages with side nav)
************************************************/
.col-xs-dec-half {
  width: 4.999%;
}

.col-xs-dec-1 {
  width: 9.999%;
}

.col-xs-dec-2 {
  width: 19.999%;
}

.col-xs-dec-3 {
  width: 29.999%;
}

.col-xs-dec-4 {
  width: 39.999%;
}

.col-xs-dec-5 {
  width: 49.999%;
}

.col-xs-dec-6 {
  width: 59.999%;
}

.col-xs-dec-7 {
  width: 69.999%;
}

.col-xs-dec-8 {
  width: 79.999%;
}

.col-xs-dec-9 {
  width: 89.999%;
}

.col-xs-dec-10 {
  width: 99.999%;
}

@media (min-width: 640px) {
  .col-sm-dec-quarter {
    width: 2.499% !important;
  }
  .col-sm-dec-half {
    width: 4.999% !important;
  }
  .col-sm-dec-1 {
    width: 9.999% !important;
  }
  .col-sm-dec-1-and-half {
    width: 14.999% !important;
  }
  .col-sm-dec-2 {
    width: 19.999% !important;
  }
  .col-sm-dec-2-and-half {
    width: 14.999% !important;
  }
  .col-sm-dec-3 {
    width: 29.999% !important;
  }
  .col-sm-dec-4 {
    width: 39.999% !important;
  }
  .col-sm-dec-5 {
    width: 49.999% !important;
  }
  .col-sm-dec-6 {
    width: 59.999% !important;
  }
  .col-sm-dec-7 {
    width: 69.999% !important;
  }
  .col-sm-dec-8 {
    width: 79.999% !important;
  }
  .col-sm-dec-9 {
    width: 89.999% !important;
  }
  .col-sm-dec-10 {
    width: 99.999% !important;
  }
}

@media (min-width: 1024px) {
  .col-md-dec-quarter,
  .col-md-dec-half,
  .col-md-dec-three-quarter,
  .col-md-dec-1,
  .col-md-dec-1-and-half,
  .col-md-dec-2,
  .col-md-dec-2-and-half,
  .col-md-dec-3,
  .col-md-dec-4,
  .col-md-dec-5,
  .col-md-dec-6,
  .col-md-dec-7,
  .col-md-dec-8,
  .col-md-dec-9,
  .col-md-dec-10 {
    float: left !important;
    padding-left: 16px;
    padding-right: 16px;
  }
  .table .table-content thead tr td.col-md-dec-quarter,
  .table .table-content thead tr td.col-md-dec-half,
  .table .table-content thead tr td.col-md-dec-three-quarter,
  .table .table-content thead tr td.col-md-dec-1,
  .table .table-content thead tr td.col-md-dec-1-and-half,
  .table .table-content thead tr td.col-md-dec-2,
  .table .table-content thead tr td.col-md-dec-2-and-half,
  .table .table-content thead tr td.col-md-dec-3,
  .table .table-content thead tr td.col-md-dec-4,
  .table .table-content thead tr td.col-md-dec-5,
  .table .table-content thead tr td.col-md-dec-6,
  .table .table-content thead tr td.col-md-dec-7,
  .table .table-content thead tr td.col-md-dec-8,
  .table .table-content thead tr td.col-md-dec-9,
  .table .table-content thead tr td.col-md-dec-10,
  .table .table-content tbody tr td.col-md-dec-quarter,
  .table .table-content tbody tr td.col-md-dec-half,
  .table .table-content tbody tr td.col-md-dec-three-quarter,
  .table .table-content tbody tr td.col-md-dec-1,
  .table .table-content tbody tr td.col-md-dec-1-and-half,
  .table .table-content tbody tr td.col-md-dec-2,
  .table .table-content tbody tr td.col-md-dec-2-and-half,
  .table .table-content tbody tr td.col-md-dec-3,
  .table .table-content tbody tr td.col-md-dec-4,
  .table .table-content tbody tr td.col-md-dec-5,
  .table .table-content tbody tr td.col-md-dec-6,
  .table .table-content tbody tr td.col-md-dec-7,
  .table .table-content tbody tr td.col-md-dec-8,
  .table .table-content tbody tr td.col-md-dec-9,
  .table .table-content tbody tr td.col-md-dec-10 {
    float: none !important;
  }
  .col-md-dec-quarter,
  .table .table-content thead tr td.col-md-dec-quarter,
  .table .table-content tbody tr td.col-md-dec-quarter {
    width: 2.499% !important;
  }
  .col-md-dec-half,
  .table .table-content thead tr td.col-md-dec-half,
  .table .table-content tbody tr td.col-md-dec-half {
    width: 4.999% !important;
  }
  .col-md-dec-three-quarter,
  .table .table-content thead tr td.col-md-dec-three-quarter,
  .table .table-content tbody tr td.col-md-dec-three-quarter {
    width: 7.499% !important;
  }
  .col-md-dec-1,
  .table .table-content thead tr td.col-md-dec-1,
  .table .table-content tbody tr td.col-md-dec-1 {
    width: 9.999% !important;
  }
  .col-md-dec-1-and-half,
  .table .table-content thead tr td.col-md-dec-1-and-half,
  .table .table-content tbody tr td.col-md-dec-1-and-half {
    width: 14.999% !important;
  }
  .col-md-dec-2,
  .table .table-content thead tr td.col-md-dec-2,
  .table .table-content tbody tr td.col-md-dec-2 {
    width: 19.999% !important;
  }
  .col-md-dec-2-and-half,
  .table .table-content thead tr td.col-md-dec-2-and-half,
  .table .table-content tbody tr td.col-md-dec-2-and-half {
    width: 24.999% !important;
  }
  .col-md-dec-3,
  .table .table-content thead tr td.col-md-dec-3,
  .table .table-content tbody tr td.col-md-dec-3 {
    width: 29.999% !important;
  }
  .col-md-dec-4,
  .table .table-content thead tr td.col-md-dec-4,
  .table .table-content tbody tr td.col-md-dec-4 {
    width: 39.999% !important;
  }
  .col-md-dec-5,
  .table .table-content thead tr td.col-md-dec-5,
  .table .table-content tbody tr td.col-md-dec-5 {
    width: 49.999% !important;
  }
  .col-md-dec-6,
  .table .table-content thead tr td.col-md-dec-6,
  .table .table-content tbody tr td.col-md-dec-6 {
    width: 59.999% !important;
  }
  .col-md-dec-7,
  .table .table-content thead tr td.col-md-dec-7,
  .table .table-content tbody tr td.col-md-dec-7 {
    width: 69.999% !important;
  }
  .col-md-dec-8,
  .table .table-content thead tr td.col-md-dec-8,
  .table .table-content tbody tr td.col-md-dec-8 {
    width: 79.999% !important;
  }
  .col-md-dec-9,
  .table .table-content thead tr td.col-md-dec-9,
  .table .table-content tbody tr td.col-md-dec-9 {
    width: 89.999% !important;
  }
  .col-md-dec-10,
  .table .table-content thead tr td.col-md-dec-10,
  .table .table-content tbody tr td.col-md-dec-10 {
    width: 99.999% !important;
  }
}

@media (min-width: 1232px) {
  .col-lg-dec-quarter,
  .col-lg-dec-half,
  .col-lg-dec-three-quarter,
  .col-lg-dec-1,
  .col-lg-dec-1-and-half,
  .col-lg-dec-2,
  .col-lg-dec-2-and-half,
  .col-lg-dec-3,
  .col-lg-dec-4,
  .col-lg-dec-5,
  .col-lg-dec-6,
  .col-lg-dec-7,
  .col-lg-dec-8,
  .col-lg-dec-9,
  .col-lg-dec-10 {
    float: left !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .table .table-content thead tr td.col-lg-dec-quarter,
  .table .table-content thead tr td.col-lg-dec-half,
  .table .table-content thead tr td.col-lg-dec-three-quarter,
  .table .table-content thead tr td.col-lg-dec-1,
  .table .table-content thead tr td.col-lg-dec-1-and-half,
  .table .table-content thead tr td.col-lg-dec-2,
  .table .table-content thead tr td.col-lg-dec-2-and-half,
  .table .table-content thead tr td.col-lg-dec-3,
  .table .table-content thead tr td.col-lg-dec-4,
  .table .table-content thead tr td.col-lg-dec-5,
  .table .table-content thead tr td.col-lg-dec-6,
  .table .table-content thead tr td.col-lg-dec-7,
  .table .table-content thead tr td.col-lg-dec-8,
  .table .table-content thead tr td.col-lg-dec-9,
  .table .table-content thead tr td.col-lg-dec-10,
  .table .table-content tbody tr td.col-lg-dec-quarter,
  .table .table-content tbody tr td.col-lg-dec-half,
  .table .table-content tbody tr td.col-lg-dec-three-quarter,
  .table .table-content tbody tr td.col-lg-dec-1,
  .table .table-content tbody tr td.col-lg-dec-1-and-half,
  .table .table-content tbody tr td.col-lg-dec-2,
  .table .table-content tbody tr td.col-lg-dec-2-and-half,
  .table .table-content tbody tr td.col-lg-dec-3,
  .table .table-content tbody tr td.col-lg-dec-4,
  .table .table-content tbody tr td.col-lg-dec-5,
  .table .table-content tbody tr td.col-lg-dec-6,
  .table .table-content tbody tr td.col-lg-dec-7,
  .table .table-content tbody tr td.col-lg-dec-8,
  .table .table-content tbody tr td.col-lg-dec-9,
  .table .table-content tbody tr td.col-lg-dec-10 {
    float: none !important;
  }
  .col-lg-dec-quarter,
  .table .table-content thead tr td.col-lg-dec-quarter,
  .table .table-content tbody tr td.col-lg-dec-quarter {
    width: 2.499% !important;
  }
  .col-lg-dec-half,
  .table .table-content thead tr td.col-lg-dec-half,
  .table .table-content tbody tr td.col-lg-dec-half {
    width: 4.999% !important;
  }
  .col-lg-dec-three-quarter,
  .table .table-content thead tr td.col-lg-dec-three-quarter,
  .table .table-content tbody tr td.col-lg-dec-three-quarter {
    width: 7.499% !important;
  }
  .col-lg-dec-1,
  .table .table-content thead tr td.col-lg-dec-1,
  .table .table-content tbody tr td.col-lg-dec-1 {
    width: 9.999% !important;
  }
  .col-lg-dec-1-and-half,
  .table .table-content thead tr td.col-lg-dec-1-and-half,
  .table .table-content tbody tr td.col-lg-dec-1-and-half {
    width: 14.999% !important;
  }
  .col-lg-dec-2,
  .table .table-content thead tr td.col-lg-dec-2,
  .table .table-content tbody tr td.col-lg-dec-2 {
    width: 19.999% !important;
  }
  .col-lg-dec-2-and-half,
  .table .table-content thead tr td.col-lg-dec-2-and-half,
  .table .table-content tbody tr td.col-lg-dec-2-and-half {
    width: 24.999% !important;
  }
  .col-lg-dec-3,
  .table .table-content thead tr td.col-lg-dec-3,
  .table .table-content tbody tr td.col-lg-dec-3 {
    width: 29.999% !important;
  }
  .col-lg-dec-4,
  .table .table-content thead tr td.col-lg-dec-4,
  .table .table-content tbody tr td.col-lg-dec-4 {
    width: 39.999% !important;
  }
  .col-lg-dec-5,
  .table .table-content thead tr td.col-lg-dec-5,
  .table .table-content tbody tr td.col-lg-dec-5 {
    width: 49.999% !important;
  }
  .col-lg-dec-6,
  .table .table-content thead tr td.col-lg-dec-6,
  .table .table-content tbody tr td.col-lg-dec-6 {
    width: 59.999% !important;
  }
  .col-lg-dec-7,
  .table .table-content thead tr td.col-lg-dec-7,
  .table .table-content tbody tr td.col-lg-dec-7 {
    width: 69.999% !important;
  }
  .col-lg-dec-8,
  .table .table-content thead tr td.col-lg-dec-8,
  .table .table-content tbody tr td.col-lg-dec-8 {
    width: 79.999% !important;
  }
  .col-lg-dec-9,
  .table .table-content thead tr td.col-lg-dec-9,
  .table .table-content tbody tr td.col-lg-dec-9 {
    width: 89.999% !important;
  }
  .col-lg-dec-10,
  .table .table-content thead tr td.col-lg-dec-10,
  .table .table-content tbody tr td.col-lg-dec-10 {
    width: 99.999% !important;
  }
}

@media (max-width: 640px) {
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 8px;
    padding-right: 8px;
  }
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }
}

/************************************************
    Demo Form
************************************************/
.business-form {
  background-color: rgba(0, 0, 0, 0.5);
}

.business-form.home-form {
  background-color: #74b2c7;
}

.business-form.dark-form {
  text-align: center;
}

.business-form.dark-form .container {
  display: block !important;
}

.business-form.about-form {
  background-color: #74b2c7;
  padding-bottom: 0;
}

.business-form.about-form .container {
  background-image: url("/img/bkgd_business-form.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 290px;
}

.business-form .container {
  margin: 0 auto;
  border: none;
}

.business-form .container h2,
.business-form .container p {
  color: #ffffff;
}

.business-form .container .business-form__title {
  text-align: center;
  max-width: 1024px !important;
}

@media (max-width: 640px) {
  .business-form .container .business-form__title {
    text-align: left;
  }
}

.business-form .container .confirmation {
  margin: auto;
}

.business-form .container .confirmation h3 {
  background-image: url("/img/check_success.png");
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #ffffff;
  padding-left: 70px;
}

.business-form .container .business-form__submit {
  margin-bottom: 24px;
  margin-top: 16px;
}

.business-form form {
  margin-top: 48px;
}

.business-form form .form-field {
  margin-bottom: 12px;
}

.business-form form .form-field input {
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
  border: none;
  min-width: 0;
  width: 100%;
}

.business-form form .form-field input :-webkit-input-placeholder,
.business-form form .form-field input :-moz-placeholder {
  color: #868686;
}

.business-form form .form-field input:focus {
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
}

#demo-page .business-form .container {
  background-image: url("/img/bkgd_business-form.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 290px;
}

/************************************************
    Icons
************************************************/
.icon.icon-lg {
  height: 64px;
  margin: 8px;
  width: 64px;
}

.icon.icon-ellipse {
  background: #f9f9f9;
  border-radius: 50%;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.empty-list .icon {
  background: #cce3ea;
}

/************************************************
    Loader
************************************************/
.loading-circle,
.loading-circle-sm {
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  font-size: 10px;
  margin: 60px auto;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
}

.loading-circle.light-grey,
.loading-circle-sm.light-grey {
  border-bottom: 0.3em solid #dedede;
  border-left: 0.3em solid #b8b8b8;
  border-right: 0.3em solid #dedede;
  border-top: 0.3em solid #dedede;
}

.loading-circle.light-blue,
.loading-circle-sm.light-blue {
  border-bottom: 0.3em solid #d5e8ee;
  border-left: 0.3em solid #9fcad8;
  border-right: 0.3em solid #d5e8ee;
  border-top: 0.3em solid #d5e8ee;
}

.loading-circle,
.loading-circle:after {
  border-radius: 50%;
  height: 10em;
  width: 10em;
}

.loading-circle-sm,
.loading-circle-sm:after {
  border-radius: 50%;
  height: 3em;
  width: 3em;
}

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.sk-circle {
  height: 22px;
  margin: 0 auto;
  position: relative;
  width: 22px;
}

@media (min-width: 640px) {
  .sk-circle {
    height: 32px;
    width: 32px;
  }
}

.sk-circle .sk-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.sk-circle .sk-child::before {
  background-color: #c3dee7;
  border-radius: 100%;
  content: '';
  display: block;
  height: 15%;
  margin: 0 auto;
  width: 15%;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.blue .sk-circle .sk-child::before {
  background-color: #74b2c7;
}

.coupon-list .sk-circle .sk-child::before {
  background-color: #b1d4df;
}

.sk-circle .sk-circle2 {
  transform: rotate(30deg);
}

.sk-circle .sk-circle2::before {
  animation-delay: -1.1s;
}

.sk-circle .sk-circle3 {
  transform: rotate(60deg);
}

.sk-circle .sk-circle3::before {
  animation-delay: -1s;
}

.sk-circle .sk-circle4 {
  transform: rotate(90deg);
}

.sk-circle .sk-circle4::before {
  animation-delay: -0.9s;
}

.sk-circle .sk-circle5 {
  transform: rotate(120deg);
}

.sk-circle .sk-circle5::before {
  animation-delay: -0.8s;
}

.sk-circle .sk-circle6 {
  transform: rotate(150deg);
}

.sk-circle .sk-circle6::before {
  animation-delay: -0.7s;
}

.sk-circle .sk-circle7 {
  transform: rotate(180deg);
}

.sk-circle .sk-circle7::before {
  animation-delay: -0.6s;
}

.sk-circle .sk-circle8 {
  transform: rotate(210deg);
}

.sk-circle .sk-circle8::before {
  animation-delay: -0.5s;
}

.sk-circle .sk-circle9 {
  transform: rotate(240deg);
}

.sk-circle .sk-circle9::before {
  animation-delay: -0.4s;
}

.sk-circle .sk-circle10 {
  transform: rotate(270deg);
}

.sk-circle .sk-circle10::before {
  animation-delay: -0.3s;
}

.sk-circle .sk-circle11 {
  transform: rotate(300deg);
}

.sk-circle .sk-circle11::before {
  animation-delay: -0.2s;
}

.sk-circle .sk-circle12 {
  transform: rotate(330deg);
}

.sk-circle .sk-circle12::before {
  animation-delay: -0.1s;
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/************************************************
    Classes for Organizing the Page
************************************************/
html,
body {
  background-color: #ffffff;
  color: #25282e;
  font-family: 'Open Sans', Open Sans, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin: 0px;
  padding: 0px;
  min-height: 100%;
  height: 100%;
}

html.signinup,
body.signinup {
  background-color: #ffffff;
}

i.goody-icon {
  background-image: url("/img/redicon.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 20px;
  position: relative;
  top: 4px;
  width: 20px;
}

hr {
  clear: both;
}

.container {
  width: 100% !important;
}

@media (min-width: 640px) {
  .container {
    width: 100% !important;
  }
}

@media (min-width: 1024px) {
  .container {
    width: 100% !important;
  }
}

.page.member-centre {
  background-color: #d5e8ee;
  padding-bottom: 60px;
}

@media (min-width: 640px) {
  .page.member-centre {
    padding-bottom: 120px;
  }
}

.page.member-centre .container {
  padding-left: 8px;
  padding-right: 8px;
  width: 100%;
}

@media (min-width: 640px) {
  .page.member-centre .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.page.no-banner {
  padding-top: 0;
}

@media (min-width: 640px) {
  .page.no-banner {
    padding-top: 96px;
  }
}

.member-authenticated .page.no-banner {
  padding-top: 0;
}

@media (min-width: 640px) {
  .member-authenticated .page.no-banner {
    padding-top: 144px;
  }
}

.page-container {
  background: #f2f4f6;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

@media (min-width: 1232px) {
  .page-container {
    max-width: 1440px;
  }
}

#goody-email {
  text-align: center;
  margin: 0;
  padding: 0;
}

section {
  padding-bottom: 32px;
  padding-top: 32px;
}

section.panel {
  background: #ffffff;
  box-shadow: none;
  margin: auto;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
}

.member-centre section {
  margin-bottom: 20px;
  margin-top: 20px;
  padding-bottom: 0;
  padding-top: 0;
}

@media (min-width: 640px) {
  .member-centre section {
    margin-bottom: 40px;
    margin-top: 40px;
    padding-bottom: 0;
    padding-top: 0;
  }
}

section.box {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}

section.box.tabbed-box {
  background-color: #333840;
  overflow: hidden;
}

@media (min-width: 1024px) {
  section.box.tabbed-box .tab-container {
    padding-right: 0;
    padding-top: 8px;
  }
}

section.box.tabbed-box .tab-content {
  background-color: #ffffff;
  padding-bottom: 32px;
  padding-top: 32px;
}

section.box.tabbed-box .tab-content .tab-pane {
  padding-left: 8px;
  padding-right: 8px;
}

section.box.tabbed-box .tab-content .tab-pane .table-content {
  border-left: 1px solid #dedede;
  border-right: 1px solid #dedede;
}

@media (min-width: 1024px) {
  section.box.tabbed-box .tab-content .tab-pane {
    padding-left: 0;
    padding-right: 16px;
  }
}

section.box.tabbed-box .tab-content > .btns {
  padding-left: 8px;
}

@media (min-width: 1024px) {
  section.box.tabbed-box .tab-content > .btns {
    padding-left: 0;
  }
}

@media (min-width: 1024px) {
  section.box.tabbed-box .tab-content {
    border-radius: 0 4px 4px 0;
  }
}

@media (min-width: 1024px) {
  section.box.tabbed-box {
    margin-right: 16px;
    overflow: visible;
  }
}

@media (min-width: 640px) {
  section {
    padding-bottom: 64px;
    padding-top: 64px;
  }
}

/*** Dashboard ***/
#app-banner {
  background-color: #2c7b95;
  border-radius: 4px;
  overflow: hidden;
  padding: 20px 0 0 0;
  position: relative;
  width: 100%;
}

#app-banner > .icon-btn.close {
  color: #d5e8ee;
  font-weight: 300;
  position: absolute;
  right: 16px;
  top: 16px;
  transition: color 0.15s ease-in;
  z-index: 800;
}

#app-banner > .icon-btn.close:hover {
  color: #ffffff;
  transition: color 0.15s ease-in;
}

#app-banner > img {
  display: block;
  left: 12px;
  position: absolute;
  top: 8px;
  width: 50%;
  z-index: 800;
}

#app-banner > .app-banner-content {
  padding: 0 16px 20px;
}

#app-banner > .app-banner-content > h3,
#app-banner > .app-banner-content > p {
  color: #ffffff;
}

@media (min-width: 640px) {
  #app-banner > .app-banner-content {
    min-height: 180px;
  }
}

#app-banner > .app-banner-footer {
  background-color: #74b2c7;
  border-radius: 0 0 4px 4px;
  bottom: 0;
  clear: both;
  padding: 16px;
  width: 100%;
  z-index: 400;
}

#app-banner > .app-banner-footer .app-banner-btn {
  float: left;
  padding-left: 8px;
  width: 50%;
}

#app-banner > .app-banner-footer .app-banner-btn:first-child {
  padding-left: 0;
  padding-right: 8px;
}

#app-banner > .app-banner-footer .app-banner-btn a {
  display: block;
  width: 100%;
}

.overview .col-xs-4 {
  padding-left: 6px;
  padding-right: 6px;
}

@media (min-width: 640px) {
  .overview .col-xs-4 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.overview .overview-item {
  background-color: #25282e;
  border-radius: 100%;
  display: block;
  height: 78px;
  line-height: 108px;
  margin: auto;
  overflow: hidden;
  text-align: center;
  width: 78px;
}

@media (min-width: 640px) {
  .overview .overview-item {
    height: 176px;
    width: 176px;
  }
}

@media (min-width: 1232px) {
  .overview .overview-item {
    height: 216px;
    width: 216px;
  }
}

.overview .overview-item .overview-num {
  background-color: #333840;
  color: #ffffff;
  display: block;
  height: 50%;
  padding-top: 12.5%;
  text-align: center;
  width: 100%;
}

.overview .overview-item .overview-num span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 4px;
}

@media (min-width: 640px) {
  .overview .overview-item .overview-num span {
    font-size: 48px;
    font-weight: 300;
    line-height: 48px;
    margin-top: 8px;
  }
}

@media (min-width: 1232px) {
  .overview .overview-item .overview-num span {
    font-size: 60px;
    line-height: 60px;
    margin-top: 10px;
  }
}

.overview .overview-item h6 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  padding-top: 4px;
  text-align: center;
}

@media (min-width: 640px) {
  .overview .overview-item h6 {
    font-size: 16px;
    font-weight: 600;
    padding-top: 20px;
  }
}

@media (min-width: 1232px) {
  .overview .overview-item h6 {
    font-size: 20px;
  }
}

#latest-businesses {
  margin-top: 32px;
}

@media (min-width: 640px) {
  #latest-businesses {
    margin-top: 48px;
  }
}

#business-coupons .view-more {
  margin-bottom: 20px;
}

ul.coupons {
  clear: both;
  list-style-type: none;
  margin-bottom: 0;
  margin-left: -8px;
  margin-right: -8px;
  padding-left: 0;
}

ul.coupons > li {
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 640px) {
  ul.coupons .col-sm-6:nth-child(odd) {
    clear: left;
  }
}

@media (min-width: 1024px) {
  ul.coupons .col-md-6:nth-child(odd) {
    clear: left;
  }
}

@media (min-width: 1024px) {
  ul.coupons .col-md-4:nth-child(odd) {
    clear: none;
  }
  ul.coupons .col-md-4:nth-child(3n + 1) {
    clear: left;
  }
}

ul.coupons .coupon {
  background-color: #ffffff;
  border-radius: 4px;
  display: block;
  margin-bottom: 12px;
  overflow: hidden;
  padding-left: 0;
}

ul.coupons .coupon .coupon-image {
  display: block;
  height: 66.6667%;
  min-height: 200px;
  overflow: hidden;
  position: relative;
}

ul.coupons .coupon .coupon-image .background-image {
  background-color: #eeeeee;
  background-image: url("/img/placeholder_coupon-image.png");
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  position: absolute;
  width: 100%;
  transition: all 0.3s ease-in;
  transform: scale(1, 1);
  background-size: cover;
}

ul.coupons .coupon .coupon-content {
  padding: 16px;
}

ul.coupons .coupon .coupon-content h6,
ul.coupons .coupon .coupon-content p {
  color: #25282e;
  margin-bottom: 8px;
}

ul.coupons .coupon .coupon-content h6 {
  font-weight: 600;
}

ul.coupons .coupon .coupon-content .small {
  color: #868686;
  margin-bottom: 4px;
}

ul.coupons .coupon .coupon-content .small i {
  color: #ee5a40;
  margin-right: 4px;
}

ul.coupons .coupon:hover .coupon-image .background-image {
  transform: scale(1.03, 1.03);
  transition: all 0.3s ease-in;
}

@media (min-width: 640px) {
  ul.coupons .coupon {
    margin-bottom: 16px;
  }
}

#latest-coupons .coupons {
  margin-top: 16px;
}

.coupon-list .empty-list {
  margin-top: 20px;
}

.coupon-list .empty-list img {
  margin-bottom: 4px;
  max-width: 130px;
  opacity: 0.5;
}

.coupon-list .empty-list i {
  background: #c3dee7;
  border-radius: 50%;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  color: #d5e8ee;
  height: 96px;
  margin: 12px;
  padding: 16px;
  text-shadow: 0px 1px rgba(0, 0, 0, 0.075);
  width: 96px;
}

.coupon-list .empty-list h6,
.coupon-list .empty-list p {
  color: #868686;
}

#business-intro {
  position: relative;
}

#business-intro > .container .business-intro-content {
  padding-top: 32px;
  position: relative;
}

#business-intro > .container .business-intro-content > .business-intro-heading > .business-intro-logo img {
  background-color: #ffffff;
  border-radius: 4px;
  margin: 0;
  margin-bottom: 12px;
  max-height: 70px;
  max-width: 120px;
}

#business-intro > .container .business-intro-content > .business-intro-heading > .business-intro-title h1 {
  margin-bottom: 0;
}

#business-intro > .container .business-intro-content > .business-intro-heading p {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  #business-intro > .container .business-intro-content > .business-intro-heading {
    display: table;
  }
  #business-intro > .container .business-intro-content > .business-intro-heading > .business-intro-logo {
    display: table-cell;
    height: 70px;
    vertical-align: top;
  }
  #business-intro > .container .business-intro-content > .business-intro-heading > .business-intro-logo img {
    margin-bottom: 0;
    margin-right: 20px;
  }
  #business-intro > .container .business-intro-content > .business-intro-heading > .business-intro-title {
    display: table-cell;
    vertical-align: middle;
  }
  #business-intro > .container .business-intro-content > .business-intro-heading > .business-intro-title a.back-btn {
    color: #25282e;
    display: block;
    height: 60px;
    left: -72px;
    opacity: 0.7;
    position: absolute;
    text-align: center;
    top: 38px;
    transition: opacity 0.15s ease-in;
    width: 52px;
  }
  #business-intro > .container .business-intro-content > .business-intro-heading > .business-intro-title a.back-btn:hover {
    opacity: 1;
    transition: opacity 0.15s ease-in;
  }
}

@media (min-width: 1024px) {
  #business-intro > .container .business-intro-content > .business-intro-heading > .business-intro-title {
    vertical-align: top;
  }
}

#business-intro hr {
  border-bottom: 1px solid #ffffff;
  border-top: 3px solid #a4ccda;
}

#business-intro > .business-intro-banner[style*="background-image"] {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
}

#business-intro > .business-intro-banner[style*="background-image"]:after {
  background-color: #000000;
  content: '';
  display: block;
  height: 100%;
  opacity: 0.35;
  width: 100%;
}

#business-intro > .business-intro-banner[style*="background-image"] + .container .business-intro-content {
  border-bottom: none;
  padding-bottom: 16px;
}

#business-intro > .business-intro-banner[style*="background-image"] + .container .business-intro-content h1, #business-intro > .business-intro-banner[style*="background-image"] + .container .business-intro-content p {
  color: #ffffff;
}

@media (min-width: 640px) {
  #business-intro > .business-intro-banner[style*="background-image"] + .container .business-intro-content .business-intro-logo {
    background-color: #ffffff;
    border-radius: 4px;
    display: block;
    margin-bottom: 12px;
    margin-right: 0;
    max-height: 72px;
    max-width: 120px;
  }
  #business-intro > .business-intro-banner[style*="background-image"] + .container .business-intro-content .business-intro-title {
    clear: both;
    display: inline;
  }
  #business-intro > .business-intro-banner[style*="background-image"] + .container .business-intro-content .business-intro-title a.back-btn {
    color: #ffffff;
    margin-top: -10px;
  }
}

#business-intro > .business-intro-banner[style*="background-image"] + .container + hr {
  display: none;
}

.business-open-indicator,
.today {
  font-weight: 600;
}

.business-open-indicator i,
.today i {
  margin-right: 6px;
}

.business-open-indicator.closed i,
.today.closed i {
  color: #d73517;
}

.business-open-indicator.open i,
.today.open i {
  color: #7bc515;
}

#business-info .business-map {
  margin-bottom: 16px;
  width: 100%;
}

#business-info .business-map > img {
  border-radius: 4px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
}

#business-info .contact-business {
  margin-top: 0;
}

#business-info .business-contact-details {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 12px;
}

#business-info .business-contact-details p {
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}

#business-info .business-contact-details p i {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #ee5a40;
  display: inline-block;
  font-size: 1.1em;
  height: 20px;
  left: 0;
  margin-right: 12px;
  position: absolute;
  top: 2px;
  width: 20px;
}

#business-info .business-contact-details p i.facebook-icon {
  background-image: url("/img/icon_facebook.svg");
}

#business-info .business-contact-details p i.location-icon {
  background-image: url("/img/icon_location-marker.svg");
}

#business-info .business-contact-details p i.phone-icon {
  background-image: url("/img/icon_phone.svg");
}

#business-info .business-contact-details p i:after {
  font-size: 24px;
}

.business-hours ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.business-hours ul li {
  padding-left: 0;
}

.business-hours ul li:last-child {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.business-hours ul li p {
  margin-bottom: 4px;
}

.business-hours ul li p .day {
  display: inline-block;
  font-weight: 600;
  min-width: 92px;
}

.business-hours ul li p .today {
  margin-left: 16px;
}

.accordion .accordion-item {
  position: relative;
}

.accordion .accordion-item .accordion-item-title {
  margin-right: 20px;
}

.accordion .accordion-item .accordion-item-content {
  clear: both;
  display: none;
  margin-top: 12px;
}

.accordion .accordion-item input[type="checkbox"] {
  visibility: hidden;
}

.accordion .accordion-item input[type="checkbox"] + label {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  position: absolute;
  right: 2px;
  top: 0;
}

.accordion .accordion-item input[type="checkbox"] + label:before {
  color: #868686;
  content: "\f078";
  display: inline-block;
  font-family: FontAwesome;
}

.accordion .accordion-item input[type="checkbox"]:checked + label:before {
  transform: rotate(180deg);
}

.accordion .accordion-item input[type="checkbox"]:checked + label + .accordion-item-content {
  display: block;
}

/*** Coupon Detail Page ***/
.box .box-header {
  border-bottom: 1px solid #dedede;
  margin-bottom: 32px;
  padding-bottom: 4px;
  padding-top: 20px;
}

.box .box-content {
  clear: both;
  padding-bottom: 20px;
}

.coupon-heading {
  position: relative;
}

.coupon-heading > a.back-btn {
  color: #25282e;
  display: block;
  height: 40px;
  opacity: 0.7;
  text-align: center;
  transition: opacity 0.15s ease-in;
  width: 40px;
}

.coupon-heading > a.back-btn:hover {
  opacity: 1;
  transition: opacity 0.15s ease-in;
}

@media (min-width: 640px) {
  .coupon-heading > a.back-btn {
    left: 0;
    position: absolute;
    top: 10px;
  }
}

@media (min-width: 640px) {
  .coupon-heading > h2 {
    padding-left: 56px;
  }
}

.coupon-heading + .coupon-subheading span {
  clear: both;
  display: inline-block;
  margin-bottom: 8px;
}

.coupon-heading + .coupon-subheading span > i {
  color: #ee5a40;
  display: inline-block;
  height: 22px;
  margin-right: 6px;
  text-align: center;
  width: 22px;
}

@media (min-width: 640px) {
  .coupon-heading + .coupon-subheading {
    padding-left: 56px;
  }
  .coupon-heading + .coupon-subheading span {
    margin-right: 20px;
  }
  .coupon-heading + .coupon-subheading span:last-child {
    margin-right: 0;
  }
}

.coupon-descr .coupon-image {
  background: #eeeeee url("/img/placeholder_coupon-image.png") center center no-repeat;
  border-radius: 4px;
  display: block;
  margin: auto;
  margin-bottom: 20px;
  max-width: 100%;
  overflow: hidden;
}

.coupon-descr .coupon-image > img {
  display: block;
  min-height: 100%;
  min-height: 100%;
}

.coupon-descr p.small {
  color: #868686;
}

.coupon-business {
  padding-bottom: 20px;
  position: relative;
}

.coupon-business .business-logo {
  background-color: #ffffff;
  border-radius: 4px;
  display: block;
  margin-bottom: 12px;
  max-height: 64px;
}

@media (min-width: 640px) {
  .coupon-business .business-logo {
    left: 16px;
    max-width: 64px;
    position: absolute;
  }
}

.coupon-business .business-details h5 {
  margin: 4px 0;
}

.coupon-business .business-details .business-hours ul {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .coupon-business .business-details {
    padding-left: 76px;
  }
}

.coupon-business .businesses {
  padding-top: 12px;
}

.coupon-business .businesses ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.coupon-business .businesses ul li {
  border-bottom: 1px solid #dedede;
  clear: both;
  margin-bottom: 12px;
  padding-bottom: 16px;
}

.coupon-business .businesses ul li .accordion-item-title {
  padding-left: 28px;
}

.coupon-business .businesses ul li .accordion-item-title .goody-icon {
  position: absolute;
  left: 2px;
  top: 2px;
}

.coupon-business .businesses ul li .accordion-item-content {
  padding-left: 28px;
}

.coupon-business .businesses p {
  line-height: 1.75em;
  margin-bottom: 0;
}

.coupon-business .businesses p > span {
  display: block;
}

.coupon-business .businesses .contact-business {
  margin-top: 16px;
}

#contact-us-form .row p {
  padding-left: 20px;
  padding-right: 20px;
}

#contact-us-form .row p:first-of-type {
  padding-top: 10px;
}

.coupon-map {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  max-width: 100%;
  min-height: 200px;
  overflow: hidden;
}

#coupon-instructions img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
}

/*** My Coupons ***/
#coupon-filters {
  background-color: #74b2c7;
  border-radius: 0 0 4px 4px;
  clear: both;
  color: #ffffff;
  margin-bottom: 20px;
  padding: 8px 8px 0 8px;
  width: 100%;
}

#coupon-filters > p {
  font-weight: 400;
}

#coupon-filters .filters-toggle {
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  margin: 0 0 8px 0;
}

#coupon-filters .filters-toggle i {
  color: #ffffff;
  font-size: 0.7em;
  font-weight: 400;
  margin-bottom: 2px;
}

@media (min-width: 640px) {
  #coupon-filters .filters-toggle + .filters-content {
    display: block !important;
  }
}

#coupon-filters > input[type="checkbox"] {
  display: none;
}

#coupon-filters > input[type="checkbox"] + .filters-toggle .closed {
  display: inline;
}

#coupon-filters > input[type="checkbox"] + .filters-toggle .open {
  display: none;
}

#coupon-filters > input[type="checkbox"] + .filters-toggle + .filters-content {
  display: none;
}

#coupon-filters > input[type="checkbox"]:checked + .filters-toggle .closed {
  display: none;
}

#coupon-filters > input[type="checkbox"]:checked + .filters-toggle .open {
  display: inline;
}

#coupon-filters > input[type="checkbox"]:checked + .filters-toggle i {
  transform: rotate(180deg);
}

#coupon-filters > input[type="checkbox"]:checked + .filters-toggle + .filters-content {
  display: block;
}

#coupon-filters .row {
  margin-left: -8px;
  margin-right: -8px;
}

#coupon-filters .row .filter {
  margin-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

#coupon-filters .row .filter .form-field {
  height: 32px;
  margin-bottom: 8px;
}

#coupon-filters .row .filter .form-field input,
#coupon-filters .row .filter .form-field select {
  height: 32px;
  min-height: 32px;
}

#coupon-filters .row .filter .form-field .input-group-addon {
  color: #868686;
  height: 32px;
  min-height: 32px;
  padding-bottom: 8px;
  padding-top: 8px;
}

#coupon-filters .row .filter .form-field.form-field--select {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
  position: relative;
}

#coupon-filters .row .filter .form-field.form-field--select > select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  height: 32px;
  padding-right: 32px;
  padding: 0 32px 0 16px;
  position: relative;
  text-indent: 1px;
  text-overflow: '';
  z-index: 100;
}

#coupon-filters .row .filter .form-field.form-field--select > select::-ms-expand {
  display: none;
}

#coupon-filters .row .filter .form-field.form-field--select:before {
  color: #868686;
  content: '\203A';
  font-size: 20px;
  font-weight: 600;
  margin-top: -12px;
  position: absolute;
  right: 12px;
  top: 50%;
  z-index: 10;
  transform: rotate(90deg);
}

@media (min-width: 1024px) {
  #coupon-filters .row .filter-btn {
    margin: 0;
  }
}

#coupon-filters .row .filter-btn .btn {
  float: left;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  #coupon-filters {
    padding: 8px 16px 0 16px;
  }
}

@media (max-width: 1024px) {
  .intro--resource {
    padding-top: 60px !important;
  }
}

@media (max-width: 640px) {
  .intro--resource {
    padding-top: 20px !important;
  }
}

.intro--resource .filter-area {
  text-align: right;
  padding-bottom: 20px;
}

.intro--resource .filter-area .dropdown ul {
  width: 100%;
}

.intro--resource .filter-area .dropdown ul li {
  margin: 8px 0;
}

.intro--resource .filter-area .browse-text {
  padding: 8px 0 8px 8px;
}

.intro--resource .filter-area .btn {
  width: 100%;
  text-align: left;
}

.intro--resource .filter-area .btn span {
  margin-top: -14px;
}

@media (max-width: 640px) {
  .intro--resource .filter-area {
    text-align: left;
  }
}

.intro--resource .listing-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.intro--resource .listing-grid .resource-thumbnail {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  border-radius: 5px;
  padding-bottom: 30px;
}

.intro--resource .listing-grid .resource-thumbnail h6 {
  font-size: 18px;
  margin-bottom: 5px;
}

.intro--resource .listing-grid .resource-thumbnail .publish-date {
  color: #ee5a40;
  font-size: 14px;
}

.intro--resource .listing-grid .resource-thumbnail .limited-rectangle {
  overflow: hidden;
  display: block;
  max-width: 242px;
  max-height: 137px;
  min-height: 137px;
  margin-bottom: 15px !important;
  margin-top: 0 !important;
}

.intro--resource .listing-grid .resource-thumbnail img {
  width: 100%;
  height: auto;
  margin-top: 0 !important;
  transition: all 0.3s ease;
  border-radius: 2px;
  max-width: 242px;
}

.intro--resource .listing-grid .resource-thumbnail img:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.intro--resource .listing-grid .resource-thumbnail.resource-pointers {
  text-align: center;
}

.intro--resource .listing-grid .resource-thumbnail.resource-pointers img {
  max-width: 150px;
  width: 150px;
  height: auto;
}

.intro--resource .listing-grid .resource-thumbnail.resource-pointers h6 {
  width: 270px;
  text-align: center;
  margin: 0 auto;
  padding-top: 10px;
}

.intro--resource .pager li > a {
  border-radius: 5px;
  background: transparent;
}

.intro--resource .pager .page-index {
  line-height: 36px;
}

.intro--resource .pager .pager-label {
  display: inline-block;
}

@media (max-width: 640px) {
  .intro--resource .pager .pager-label {
    display: none;
  }
}

#resource-page .more-articles {
  padding-top: 25px;
}

#resource-page .resource-form {
  background: #d5e8ee;
  padding-bottom: 0;
  position: relative;
}

#resource-page .resource-form .bottom-gradient {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  height: 30px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent);
}

#resource-page .resource-form .lead-gen {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

#resource-page .resource-form .lead-gen .article-image {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -ms-flex-order: 1;
      order: 1;
}

#resource-page .resource-form .lead-gen .article-image img {
  width: 100%;
  height: auto;
  margin-bottom: 0 !important;
}

@media (max-width: 640px) {
  #resource-page .resource-form .lead-gen .article-image {
    -ms-flex-order: 2;
        order: 2;
  }
}

#resource-page .resource-form .lead-gen .lead-gen-form {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -ms-flex-order: 2;
      order: 2;
  z-index: 100;
}

#resource-page .resource-form .lead-gen .lead-gen-form form {
  padding-bottom: 30px;
}

@media (max-width: 640px) {
  #resource-page .resource-form .lead-gen .lead-gen-form {
    -ms-flex-order: 1;
        order: 1;
  }
}

#resource-page .resource-form .lead-gen .lead-gen-form label {
  font-size: 18px;
}

#resource-page .resource-form .lead-gen .lead-gen-form button {
  width: 100%;
  margin-top: 25px;
}

/*** Settings Page ***/
input[id^="uncheck-all-"] + label .off {
  display: none;
}

input[id^="uncheck-all-"]:checked + label .on {
  display: none;
}

input[id^="uncheck-all-"]:checked + label .off {
  display: inline;
}

/*** Offer Locations ***/
.fixed-content {
  position: fixed;
}

.fixed-content.fixed-top {
  left: 0;
  right: 0;
  top: 112px;
  width: 100%;
  z-index: 9000;
}

.fixed-content.fixed-bottom {
  bottom: 92px;
  left: 0;
  min-height: 60px;
  right: 0;
  width: 100%;
}

.card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  display: block;
  padding: 20px;
}

.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
  text-align: center;
}

.card .locations {
  clear: both;
  display: table;
  margin: auto;
  text-align: center;
}

.card .locations img {
  display: inline-block;
  height: 38px;
  margin-right: 8px;
  vertical-align: middle;
}

.card .locations span {
  display: table-cell;
  vertical-align: middle;
}

.card .flex-card {
  margin: auto;
  max-width: 800px;
  min-width: 280px;
}

@media (max-width: 640px) {
  .fixed-content.fixed-top {
    position: absolute;
    top: 60px;
  }
  .fixed-content.fixed-top .container {
    padding-left: 0;
    padding-right: 0;
  }
  .fixed-content.fixed-top .container .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
  }
  .fixed-content.fixed-bottom {
    bottom: 0;
  }
  .card {
    border-radius: 0;
  }
}

.faq-indicator {
  background-color: #d73517;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-weight: 400;
  height: 28px;
  padding: 2px 0;
  position: relative;
  text-align: center;
  top: -2px;
  width: 28px;
}

img.inline {
  display: inline-block;
  height: 28px;
  position: relative;
  top: -2px;
  width: auto;
}

#support-page img.instruction {
  max-width: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  #support-page img.instruction {
    max-width: 600px;
  }
}

/*** Referral Prompt ***/
.referral-slide {
  position: fixed;
  width: 300px;
  right: -100%;
  bottom: 10px;
  padding: 20px 20px 5px;
  background: #ffffff;
  border: 1px solid #ee5a40;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1050;
  border-radius: 3px;
  text-align: center;
  transform: translate(50%, 0);
}

.referral-slide .close-button {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 12px;
  cursor: pointer;
  padding: 5px;
}

.referral-slide .refer-content {
  position: relative;
}

.referral-slide .refer-content .fine-print {
  font-size: 10px;
}

.referral-slide .refer-content img {
  width: 200px;
  height: auto;
  margin: 10px 0;
}

@media (min-width: 1024px) {
  .referral-slide {
    right: -310px;
    transform: translate(0, 0);
  }
}

/************************************************
    Typography
************************************************/
h1, h2, h3, h4, h5, h6 {
  color: #25282e;
  font-weight: 300;
  line-height: 1.2em;
  margin-bottom: 12px;
  margin-top: 0;
}

h1 > i, h2 > i, h3 > i, h4 > i, h5 > i, h6 > i {
  color: #787878;
  font-size: 0.85em;
  line-height: 100%;
  margin-right: 12px;
}

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
  color: #ee5a40;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 28.8px;
}

@media (max-width: 640px) {
  h2 {
    text-align: left;
  }
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 19.2px;
}

h6 {
  font-size: 17px;
}

p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5em;
  margin-bottom: 8px;
}

p.lead {
  font-size: 17px;
  margin-bottom: 16px;
}

p.sml {
  font-size: 12.6px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  p {
    margin-bottom: 16px;
  }
}

ol li, ul li {
  font-size: 14.4px;
  font-weight: 300;
  line-height: 1.5em;
}

@media (min-width: 1024px) {
  ol li, ul li {
    font-size: 16px;
  }
}

.red {
  color: #ee5a40;
}

.red.border {
  border-color: #ee5a40;
}

.blue {
  color: #74b2c7;
}

.blue.border {
  border-color: #74b2c7;
}

.mid-blue {
  color: #478fa7;
}

.mid-blue.border {
  border-color: #478fa7;
}

.dark-blue {
  color: #2c7b95;
}

.dark-blue.border {
  border-color: #2c7b95;
}

.light-blue {
  color: #d5e8ee;
}

.light-blue.border {
  border-color: #d5e8ee;
}

.light-grey {
  color: #868686;
}

.light-grey.border {
  border-color: #868686;
}

.semi-bold {
  font-weight: 600;
}

/* Tablet */
@media (min-width: 640px) {
  h1 {
    font-size: 40px;
  }
  h4 {
    font-size: 28px;
  }
}

/* Medium Desktop */
@media (min-width: 1024px) {
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 36px;
  }
  h4 {
    font-size: 32px;
  }
  h5 {
    font-size: 24px;
  }
  h6 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 16px;
  }
  p.lead {
    font-size: 20px;
    margin-bottom: 16px;
  }
  p.sml {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

/* Large Desktop */
.markdown {
  margin-bottom: 16px;
}

.markdown p {
  font-family: "Open Sans", Open Sans, Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1.5em !important;
  margin-bottom: 0 !important;
}

.markdown.sml {
  font-family: "Open Sans", Open Sans, Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 1.5em !important;
  margin-bottom: 16px !important;
}

/************************************************
    Links and Buttons
************************************************/
/*** Links ***/
a,
a:visited {
  color: #ee5a40;
  text-decoration: none;
  transition: all 0.2s ease-in;
}

a:active, a:hover, a:focus,
a:visited:active,
a:visited:hover,
a:visited:focus {
  color: #cf2f12;
  text-decoration: none;
  transition: all 0.2s ease-in;
}

.buttons, .btns {
  display: block;
  float: left;
}

.buttons .button, .buttons .btn, .btns .button, .btns .btn {
  display: block;
  float: left;
  margin-left: 16px;
}

.buttons .button:first-child, .buttons .btn:first-child, .btns .button:first-child, .btns .btn:first-child {
  margin-left: 0;
}

.buttons + p, .btns + p {
  clear: both;
}

/*** Buttons ***/
.button, .btn,
.button:visited, .btn:visited {
  background-color: #ee5a40;
  border: none;
  color: #ffffff;
  display: block;
  font-size: 16px;
  font-weight: 400;
  height: 40px;
  line-height: 24px;
  padding: 8px 24px;
  text-align: center;
  border-radius: 4px;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.07) 100%);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in;
}

.button:hover, .button:active, .button:focus, .btn:hover, .btn:active, .btn:focus,
.button:visited:hover,
.button:visited:active,
.button:visited:focus, .btn:visited:hover, .btn:visited:active, .btn:visited:focus {
  background-image: linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.07) 100%);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in;
}

.button.button--blue, .button.btn-blue, .btn.button--blue, .btn.btn-blue,
.button:visited.button--blue,
.button:visited.btn-blue, .btn:visited.button--blue, .btn:visited.btn-blue {
  background-color: #74b2c7;
}

.button.button--mid-blue, .button.btn-mid-blue, .btn.button--mid-blue, .btn.btn-mid-blue,
.button:visited.button--mid-blue,
.button:visited.btn-mid-blue, .btn:visited.button--mid-blue, .btn:visited.btn-mid-blue {
  background-color: #478fa7;
}

.button.button--dark-blue, .button.btn-dark-blue, .btn.button--dark-blue, .btn.btn-dark-blue,
.button:visited.button--dark-blue,
.button:visited.btn-dark-blue, .btn:visited.button--dark-blue, .btn:visited.btn-dark-blue {
  background-color: #2c7b95;
}

.button > .fa, .btn > .fa,
.button:visited > .fa, .btn:visited > .fa {
  font-size: 1em;
  font-weight: 300;
  margin: 0 4px;
}

@media (min-width: 1024px) {
  .button > .fa, .btn > .fa,
  .button:visited > .fa, .btn:visited > .fa {
    font-size: 0.8em;
  }
}

.button[disabled], .btn[disabled],
.button:visited[disabled], .btn:visited[disabled] {
  cursor: default;
  opacity: 0.5;
}

.button[disabled]:hover, .btn[disabled]:hover,
.button:visited[disabled]:hover, .btn:visited[disabled]:hover {
  background-image: none;
}

.button.btn-load > .loader, .btn.btn-load > .loader,
.button:visited.btn-load > .loader, .btn:visited.btn-load > .loader {
  display: none;
}

.button.btn-load > span, .btn.btn-load > span,
.button:visited.btn-load > span, .btn:visited.btn-load > span {
  display: inline;
}

.button.btn-load.loading, .btn.btn-load.loading,
.button:visited.btn-load.loading, .btn:visited.btn-load.loading {
  cursor: default;
}

.button.btn-load.loading:active, .button.btn-load.loading:focus, .button.btn-load.loading:hover, .btn.btn-load.loading:active, .btn.btn-load.loading:focus, .btn.btn-load.loading:hover,
.button:visited.btn-load.loading:active,
.button:visited.btn-load.loading:focus,
.button:visited.btn-load.loading:hover, .btn:visited.btn-load.loading:active, .btn:visited.btn-load.loading:focus, .btn:visited.btn-load.loading:hover {
  background: none;
}

.button.btn-load.loading > .loader, .btn.btn-load.loading > .loader,
.button:visited.btn-load.loading > .loader, .btn:visited.btn-load.loading > .loader {
  display: inline-block;
}

.button.btn-load.loading > span, .btn.btn-load.loading > span,
.button:visited.btn-load.loading > span, .btn:visited.btn-load.loading > span {
  display: none;
}

@media (max-width: 640px) {
  .button, .btn,
  .button:visited, .btn:visited {
    font-size: 14px;
    height: 32px;
    line-height: 21px;
    padding: 4px 16px;
  }
}

.btn-block {
  text-align: center;
  width: 100%;
}

.btn-secondary {
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  border: 1px solid #ffffff;
  display: block;
  font-weight: 400;
}

.btn-secondary:hover, .btn-secondary:active {
  background-color: rgba(255, 255, 255, 0.1);
  background-image: none;
  box-shadow: none;
  color: #ffffff;
}

.btn-secondary.button--red, .btn-secondary.btn-red {
  border-color: #ee5a40;
  color: #ee5a40;
}

.btn-secondary.button--red:hover, .btn-secondary.button--red:active, .btn-secondary.button--red:focus, .btn-secondary.btn-red:hover, .btn-secondary.btn-red:active, .btn-secondary.btn-red:focus {
  background-color: rgba(238, 90, 64, 0.15);
  color: #ee5a40;
}

.btn-secondary.button--light-blue, .btn-secondary.btn-light-blue, .btn-secondary.btn-blue {
  background-color: transparent;
  border-color: #74b2c7;
  color: #74b2c7;
}

.btn-secondary.button--light-blue:hover, .btn-secondary.button--light-blue:active, .btn-secondary.button--light-blue:focus, .btn-secondary.btn-light-blue:hover, .btn-secondary.btn-light-blue:active, .btn-secondary.btn-light-blue:focus, .btn-secondary.btn-blue:hover, .btn-secondary.btn-blue:active, .btn-secondary.btn-blue:focus {
  background-color: rgba(116, 178, 199, 0.15);
  color: #74b2c7;
}

.btn-secondary.button--mid-blue, .btn-secondary.btn-mid-blue {
  background-color: #478fa7;
  color: #478fa7;
}

.btn-secondary.button--mid-blue:hover, .btn-secondary.button--mid-blue:active, .btn-secondary.button--mid-blue:focus, .btn-secondary.btn-mid-blue:hover, .btn-secondary.btn-mid-blue:active, .btn-secondary.btn-mid-blue:focus {
  background-color: rgba(71, 143, 167, 0.15);
  color: #478fa7;
}

.btn-secondary.button--dark-blue, .btn-secondary.btn-dark-blue {
  background-color: #2c7b95;
  color: #2c7b95;
}

.btn-secondary.button--dark-blue:hover, .btn-secondary.button--dark-blue:active, .btn-secondary.button--dark-blue:focus, .btn-secondary.btn-dark-blue:hover, .btn-secondary.btn-dark-blue:active, .btn-secondary.btn-dark-blue:focus {
  background-color: rgba(44, 123, 149, 0.15);
  color: #2c7b95;
}

.btn-large {
  font-size: 20px;
  height: 60px;
  line-height: 24px;
  padding: 8px 40px;
}

.btn-lg, .btn-group-lg > .btn {
  font-size: 16px;
  line-height: base-line-height;
  height: 40px;
  padding: 8px 24px;
}

@media (min-width: 1024px) {
  .btn-lg, .btn-group-lg > .btn {
    font-size: 20px;
    height: 60px;
    line-height: 30px;
    padding: 15px 40px;
  }
}

.btn-sml {
  font-size: 14px;
  height: 32px;
  line-height: 24px;
  padding: 4px 16px;
}

.btn-back {
  position: absolute;
  text-align: center;
  width: 100px;
}

.btn-back + h2 {
  padding-left: 116px;
}

#button--to-top {
  background-image: url("/img/button_to-top.png");
  background-position: center 50%;
  background-repeat: no-repeat;
  border: 2px solid #dedede;
  border-radius: 50%;
  bottom: 32px;
  cursor: default;
  display: block;
  height: 80px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 32px;
  width: 80px;
  transition: all 0.2s ease-in;
  z-index: 9999;
}

#button--to-top:hover {
  background-position: center 35%;
  transition: all 0.2s ease-in;
}

#button--to-top.show {
  cursor: pointer;
  opacity: 1;
  pointer-events: all;
  transition: all 0.2s ease-in;
}

.btn.pull-left {
  margin-top: 24px;
}

.btn-app-store,
.btn-play-store {
  display: block;
  height: auto;
  width: 100%;
}

.back-btn {
  cursor: pointer;
}

.back-btn:not(.icon-btn) {
  display: inline-block;
  margin-bottom: -8px;
  margin-top: 8px;
}

.back-btn.icon-btn {
  background-image: url("/img/icon-btn_back_grey.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

/************************************************
    Banners
************************************************/
#banner {
  background-color: #000000;
  display: table;
  height: 340px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

#home-page #banner {
  background-color: #74b2c7;
  display: block;
  height: auto;
  overflow: visible;
}

#home-page #banner + section {
  padding-top: 32px;
}

#home-page #banner .container {
  display: block;
}

#home-page #banner .container .btn-demo {
  max-width: 320px;
  margin: 50px auto 0;
}

@media (min-width: 1024px) {
  #home-page #banner {
    height: 734px;
  }
}

#banner .banner-image {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#about-page #banner .banner-image {
  background-position-y: 78%;
}

#demo-page #banner .banner-image {
  background-image: url("/img/covers/sugarcard-04.jpg");
}

#resource-page #banner .banner-image {
  background-image: url("/img/covers/sugarcard-04.jpg");
}

#banner .business-page-banner {
  text-align: center;
  width: 100%;
  position: relative;
  background: url("/img/covers/sugarcard-04.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#banner .business-page-banner .banner-container {
  display: block;
  margin: 0;
  width: 100% !important;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

#banner .business-page-banner .banner-container .business-spiel {
  width: 100%;
  max-width: 1170px;
  padding: 50px 20px;
  z-index: 5000;
  margin: 0 auto;
  text-align: center;
}

#banner .business-page-banner .banner-container .business-spiel h1, #banner .business-page-banner .banner-container .business-spiel h5, #banner .business-page-banner .banner-container .business-spiel h6 {
  color: #ffffff !important;
  margin: 0 auto;
}

#banner .container {
  display: table-cell;
  min-height: 100%;
  position: relative;
  vertical-align: middle;
  z-index: 500;
}

#banner .container h1, #banner .container h5, #banner .container h6 {
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

#banner .container h6 {
  font-size: 16px;
  margin-top: 30px;
}

#banner .container .image-links {
  display: block;
  margin: auto;
  margin-top: 16px;
  width: 100%;
}

#banner .container .image-links .image-link {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 4px;
  display: block;
  height: 200px;
  margin-bottom: 16px;
  padding: 16px;
}

#banner .container .image-links .image-link#for-card-holders {
  background-image: url("/img/image-link_card-holder.jpg");
}

#banner .container .image-links .image-link#for-merchants {
  background-image: url("/img/image-link_merchant.jpg");
}

#banner .container .image-links .image-link .image-link__content {
  height: 100%;
  position: relative;
  width: 100%;
}

#banner .container .image-links .image-link .image-link__content .btn {
  bottom: 0;
  position: absolute;
  width: 100%;
}

@media (min-width: 640px) {
  #banner {
    padding: 96px 0 0 0;
  }
  #banner + section {
    padding-top: 80px;
  }
  #home-page #banner {
    background-color: #74b2c7;
    overflow: visible;
  }
  #home-page #banner + section {
    padding-top: 182px;
  }
  .member-authenticated #banner {
    padding-top: 144px;
  }
  .member-authenticated #home-page #banner {
    padding-top: 176px;
  }
  #banner .container h1 {
    margin-top: 0;
  }
  #banner .container .image-links {
    bottom: -60px;
    margin-top: -16px;
    max-width: 1000px;
    position: relative;
  }
  #banner .container .image-links .col-sm-6 {
    padding-left: 8px;
    padding-right: 8px;
  }
  #banner .container .image-links .image-link {
    height: 368px;
    padding: 32px;
  }
}

/************************************************
    Header Bar
************************************************/
#header {
  background-color: #74b2c7;
  border: none;
  border-radius: 0;
  color: #ffffff;
  height: 60px;
  padding: 0;
  z-index: 8000;
}

.member-authenticated #header {
  height: 108px;
}

#header.navbar-fixed-top {
  z-index: 8000;
}

#header.scrolling {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}

#header > .container {
  padding: 12px 0 0 0;
}

#header .brand {
  display: block;
  float: left;
  height: 36px;
  max-height: 36px;
  padding: 0 8px 0 16px;
}

#header .brand .brand__logo {
  display: block;
  height: 36px;
  max-height: 36px;
  width: auto;
}

#header .brand .brand__tagline {
  display: none;
}

#header .navbar-toggle {
  margin: 0;
  padding-right: 16px;
}

#header .navbar-toggle .icon-bar {
  background-color: #ffffff;
}

#header #header-nav-collapse {
  background-color: #333840;
  border-top: 0;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  color: #dedede;
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 800;
}

#header #header-nav-collapse > ul {
  margin: 0;
  min-width: 0;
  padding: 0;
  position: static;
  width: 100%;
}

#header #header-nav-collapse > ul > li {
  background-color: #333840;
  color: #dedede;
  display: block;
  float: left;
  height: 48px;
  margin-left: 0;
  padding-bottom: 0;
  padding-left: 4px;
  position: static;
  width: 100%;
  text-align: left;
}

#header #header-nav-collapse > ul > li > a {
  color: #dedede;
  display: block;
  height: 100%;
  padding-bottom: 12px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 12px;
  width: 100%;
}

#header #header-nav-collapse > ul > li > a:hover {
  text-decoration: none;
}

#header #header-nav-collapse > ul > li > a > span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25rem;
}

#header #header-nav-collapse > ul > li:hover, #header #header-nav-collapse > ul > li:active, #header #header-nav-collapse > ul > li:focus {
  background-color: #74b2c7;
}

#header #header-nav-collapse > ul > li:hover > a, #header #header-nav-collapse > ul > li:active > a, #header #header-nav-collapse > ul > li:focus > a {
  background: #25282e;
  color: #ffffff;
}

@media (min-width: 640px) {
  #header {
    background-color: #74b2c7;
    height: 96px;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
  .member-authenticated #header {
    height: 144px;
  }
  #header > .container {
    padding: 16px;
  }
  #header .brand {
    height: 64px;
    max-height: 64px;
    padding: 8px 16px 8px 0;
  }
  #header .brand .brand__logo {
    display: block;
    float: left;
    height: 48px;
    max-height: 48px;
    min-height: 48px;
    width: 114px;
  }
  #header .brand .brand__tagline {
    display: block;
    float: left;
    height: 24px;
    max-height: 24px;
    margin: 10px 0 0 8px;
    min-height: 24px;
    width: 45px;
  }
  #header #header-nav-collapse {
    background-color: transparent;
    box-shadow: none;
  }
  #header #header-nav-collapse ul {
    float: none;
    height: 40px;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-right: -16px;
    max-height: 40px;
    overflow: visible;
    padding-left: 142px;
    padding-right: 16px;
  }
  #header #header-nav-collapse ul li {
    display: inline-block;
    margin-top: 0;
    padding: 0;
    width: 50%;
    background: transparent;
  }
  #header #header-nav-collapse ul li:first-child {
    margin-left: 0;
  }
  #header #header-nav-collapse ul li.form-field.form-field--select {
    cursor: pointer;
    margin: 0 0 0 16px;
    max-width: 212px;
  }
  #header #header-nav-collapse ul li.form-field.form-field--select:first-child {
    margin-left: 0;
  }
  #header #header-nav-collapse ul li p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 0 16px;
    padding: 8px 0;
  }
}

@media (min-width: 1024px) {
  #header ul {
    display: block;
  }
}

/************************************************
    Alerts
************************************************/
/*** Modals ***/
.modal {
  display: none;
}

.modal .modal-dialog .modal-header,
.modal .modal-dialog .modal-footer {
  border: none;
}

.modal .modal-dialog .modal-content {
  border: none;
  border-radius: 4px;
}

.modal-backdrop {
  background-color: #25282e;
}

.alert {
  text-shadow: none;
}

.alert.alert-text {
  margin-top: 12px;
}

.alert.alert-text.error {
  color: #a82209;
}

.alert.alert-text.success {
  color: #5d9a08;
}

.alert.alert-text.warning {
  color: #a85b09;
}

.alert.alert-bar {
  background-image: none;
  border: none;
  margin-bottom: 16px;
  padding: 12px 8px;
  width: 100%;
}

.alert.alert-bar > h6 {
  font-weight: 600;
  padding-left: 40px;
  position: relative;
}

.alert.alert-bar > h6 > i {
  border-radius: 100%;
  display: inline-block;
  font-size: 20px;
  height: 28px;
  left: 0;
  margin-right: 12px;
  padding: 4px;
  position: absolute;
  text-align: center;
  width: 28px;
}

.alert.alert-bar > p {
  position: relative;
}

.alert.alert-bar > p > i {
  display: none;
}

.alert.alert-bar > p > a,
.alert.alert-bar > p > a:visited {
  font-weight: 600;
}

.alert.alert-bar > p > a > i,
.alert.alert-bar > p > a:visited > i {
  font-size: 0.75em;
}

@media (min-width: 640px) {
  .alert.alert-bar > p {
    float: left;
    padding-bottom: 8px;
    padding-left: 40px;
    position: relative;
  }
  .alert.alert-bar > p > i {
    border-radius: 100%;
    display: inline-block;
    font-size: 20px;
    height: 28px;
    left: 0;
    margin-right: 12px;
    padding: 4px;
    position: absolute;
    text-align: center;
    top: -2px;
    width: 28px;
  }
}

.alert.alert-bar > .btn {
  clear: both;
  float: none;
  margin-top: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .alert.alert-bar > .btn {
    clear: none;
    float: right;
    margin-bottom: -6px;
    margin-left: 16px;
    margin-top: -6px;
    width: auto;
  }
}

@media (min-width: 640px) {
  .alert.alert-bar {
    padding: 16px;
  }
}

.alert.alert-bar.error, .alert.alert-bar.alert-error {
  background-color: #ffa291;
  color: #a82209;
}

.alert.alert-bar.error h6, .alert.alert-bar.error p, .alert.alert-bar.alert-error h6, .alert.alert-bar.alert-error p {
  color: #a82209;
}

.alert.alert-bar.error h6 > i, .alert.alert-bar.error p > i, .alert.alert-bar.alert-error h6 > i, .alert.alert-bar.alert-error p > i {
  background-color: #d73517;
  color: #ffa291;
}

.alert.alert-bar.error h6 > a,
.alert.alert-bar.error h6 > a:visited, .alert.alert-bar.error p > a,
.alert.alert-bar.error p > a:visited, .alert.alert-bar.alert-error h6 > a,
.alert.alert-bar.alert-error h6 > a:visited, .alert.alert-bar.alert-error p > a,
.alert.alert-bar.alert-error p > a:visited {
  border-bottom-color: #a82209;
  color: #a82209;
}

.alert.alert-bar.error h6 > a:active, .alert.alert-bar.error h6 > a:focus, .alert.alert-bar.error h6 > a:hover,
.alert.alert-bar.error h6 > a:visited:active,
.alert.alert-bar.error h6 > a:visited:focus,
.alert.alert-bar.error h6 > a:visited:hover, .alert.alert-bar.error p > a:active, .alert.alert-bar.error p > a:focus, .alert.alert-bar.error p > a:hover,
.alert.alert-bar.error p > a:visited:active,
.alert.alert-bar.error p > a:visited:focus,
.alert.alert-bar.error p > a:visited:hover, .alert.alert-bar.alert-error h6 > a:active, .alert.alert-bar.alert-error h6 > a:focus, .alert.alert-bar.alert-error h6 > a:hover,
.alert.alert-bar.alert-error h6 > a:visited:active,
.alert.alert-bar.alert-error h6 > a:visited:focus,
.alert.alert-bar.alert-error h6 > a:visited:hover, .alert.alert-bar.alert-error p > a:active, .alert.alert-bar.alert-error p > a:focus, .alert.alert-bar.alert-error p > a:hover,
.alert.alert-bar.alert-error p > a:visited:active,
.alert.alert-bar.alert-error p > a:visited:focus,
.alert.alert-bar.alert-error p > a:visited:hover {
  color: #901d08;
}

.alert.alert-bar.error > .btn, .alert.alert-bar.alert-error > .btn {
  background-color: #d73517;
}

.alert.alert-bar.success, .alert.alert-bar.alert-success {
  background-color: #c6f289;
  color: #5d9a08;
}

.alert.alert-bar.success h6, .alert.alert-bar.success p, .alert.alert-bar.alert-success h6, .alert.alert-bar.alert-success p {
  color: #5d9a08;
}

.alert.alert-bar.success h6 > i, .alert.alert-bar.success p > i, .alert.alert-bar.alert-success h6 > i, .alert.alert-bar.alert-success p > i {
  background-color: #7bc515;
  color: #c6f289;
}

.alert.alert-bar.success h6 > a,
.alert.alert-bar.success h6 > a:visited, .alert.alert-bar.success p > a,
.alert.alert-bar.success p > a:visited, .alert.alert-bar.alert-success h6 > a,
.alert.alert-bar.alert-success h6 > a:visited, .alert.alert-bar.alert-success p > a,
.alert.alert-bar.alert-success p > a:visited {
  border-bottom-color: #5d9a08;
  color: #5d9a08;
}

.alert.alert-bar.success h6 > a:active, .alert.alert-bar.success h6 > a:focus, .alert.alert-bar.success h6 > a:hover,
.alert.alert-bar.success h6 > a:visited:active,
.alert.alert-bar.success h6 > a:visited:focus,
.alert.alert-bar.success h6 > a:visited:hover, .alert.alert-bar.success p > a:active, .alert.alert-bar.success p > a:focus, .alert.alert-bar.success p > a:hover,
.alert.alert-bar.success p > a:visited:active,
.alert.alert-bar.success p > a:visited:focus,
.alert.alert-bar.success p > a:visited:hover, .alert.alert-bar.alert-success h6 > a:active, .alert.alert-bar.alert-success h6 > a:focus, .alert.alert-bar.alert-success h6 > a:hover,
.alert.alert-bar.alert-success h6 > a:visited:active,
.alert.alert-bar.alert-success h6 > a:visited:focus,
.alert.alert-bar.alert-success h6 > a:visited:hover, .alert.alert-bar.alert-success p > a:active, .alert.alert-bar.alert-success p > a:focus, .alert.alert-bar.alert-success p > a:hover,
.alert.alert-bar.alert-success p > a:visited:active,
.alert.alert-bar.alert-success p > a:visited:focus,
.alert.alert-bar.alert-success p > a:visited:hover {
  color: #4e8207;
}

.alert.alert-bar.success > .btn, .alert.alert-bar.alert-success > .btn {
  background-color: #7bc515;
}

.alert.alert-bar.info, .alert.alert-bar.warning, .alert.alert-bar.alert-info, .alert.alert-bar.alert-warning {
  background-color: #ffc991;
  color: #a85b09;
}

.alert.alert-bar.info h6, .alert.alert-bar.info p, .alert.alert-bar.warning h6, .alert.alert-bar.warning p, .alert.alert-bar.alert-info h6, .alert.alert-bar.alert-info p, .alert.alert-bar.alert-warning h6, .alert.alert-bar.alert-warning p {
  color: #a85b09;
}

.alert.alert-bar.info h6 > i, .alert.alert-bar.info p > i, .alert.alert-bar.warning h6 > i, .alert.alert-bar.warning p > i, .alert.alert-bar.alert-info h6 > i, .alert.alert-bar.alert-info p > i, .alert.alert-bar.alert-warning h6 > i, .alert.alert-bar.alert-warning p > i {
  background-color: #ee9940;
  color: #ffc991;
}

.alert.alert-bar.info h6 > a,
.alert.alert-bar.info h6 > a:visited, .alert.alert-bar.info p > a,
.alert.alert-bar.info p > a:visited, .alert.alert-bar.warning h6 > a,
.alert.alert-bar.warning h6 > a:visited, .alert.alert-bar.warning p > a,
.alert.alert-bar.warning p > a:visited, .alert.alert-bar.alert-info h6 > a,
.alert.alert-bar.alert-info h6 > a:visited, .alert.alert-bar.alert-info p > a,
.alert.alert-bar.alert-info p > a:visited, .alert.alert-bar.alert-warning h6 > a,
.alert.alert-bar.alert-warning h6 > a:visited, .alert.alert-bar.alert-warning p > a,
.alert.alert-bar.alert-warning p > a:visited {
  border-bottom-color: #a85b09;
  color: #a85b09;
}

.alert.alert-bar.info h6 > a:active, .alert.alert-bar.info h6 > a:focus, .alert.alert-bar.info h6 > a:hover,
.alert.alert-bar.info h6 > a:visited:active,
.alert.alert-bar.info h6 > a:visited:focus,
.alert.alert-bar.info h6 > a:visited:hover, .alert.alert-bar.info p > a:active, .alert.alert-bar.info p > a:focus, .alert.alert-bar.info p > a:hover,
.alert.alert-bar.info p > a:visited:active,
.alert.alert-bar.info p > a:visited:focus,
.alert.alert-bar.info p > a:visited:hover, .alert.alert-bar.warning h6 > a:active, .alert.alert-bar.warning h6 > a:focus, .alert.alert-bar.warning h6 > a:hover,
.alert.alert-bar.warning h6 > a:visited:active,
.alert.alert-bar.warning h6 > a:visited:focus,
.alert.alert-bar.warning h6 > a:visited:hover, .alert.alert-bar.warning p > a:active, .alert.alert-bar.warning p > a:focus, .alert.alert-bar.warning p > a:hover,
.alert.alert-bar.warning p > a:visited:active,
.alert.alert-bar.warning p > a:visited:focus,
.alert.alert-bar.warning p > a:visited:hover, .alert.alert-bar.alert-info h6 > a:active, .alert.alert-bar.alert-info h6 > a:focus, .alert.alert-bar.alert-info h6 > a:hover,
.alert.alert-bar.alert-info h6 > a:visited:active,
.alert.alert-bar.alert-info h6 > a:visited:focus,
.alert.alert-bar.alert-info h6 > a:visited:hover, .alert.alert-bar.alert-info p > a:active, .alert.alert-bar.alert-info p > a:focus, .alert.alert-bar.alert-info p > a:hover,
.alert.alert-bar.alert-info p > a:visited:active,
.alert.alert-bar.alert-info p > a:visited:focus,
.alert.alert-bar.alert-info p > a:visited:hover, .alert.alert-bar.alert-warning h6 > a:active, .alert.alert-bar.alert-warning h6 > a:focus, .alert.alert-bar.alert-warning h6 > a:hover,
.alert.alert-bar.alert-warning h6 > a:visited:active,
.alert.alert-bar.alert-warning h6 > a:visited:focus,
.alert.alert-bar.alert-warning h6 > a:visited:hover, .alert.alert-bar.alert-warning p > a:active, .alert.alert-bar.alert-warning p > a:focus, .alert.alert-bar.alert-warning p > a:hover,
.alert.alert-bar.alert-warning p > a:visited:active,
.alert.alert-bar.alert-warning p > a:visited:focus,
.alert.alert-bar.alert-warning p > a:visited:hover {
  color: #904e08;
}

.alert.alert-bar.info > .btn, .alert.alert-bar.warning > .btn, .alert.alert-bar.alert-info > .btn, .alert.alert-bar.alert-warning > .btn {
  background-color: #ee9940;
}

/************************************************
    Form Elements
************************************************/
::-webkit-input-placeholder {
  color: #868686;
  font-size: 14.4px;
  font-weight: 300;
}

@media (min-width: 1024px) {
  ::-webkit-input-placeholder {
    font-size: 16px;
  }
}

:-moz-placeholder {
  color: #868686;
  font-size: 14.4px;
  font-weight: 300;
}

@media (min-width: 1024px) {
  :-moz-placeholder {
    font-size: 16px;
  }
}

::-moz-placeholder {
  color: #868686;
  font-size: 14.4px;
  font-weight: 300;
}

@media (min-width: 1024px) {
  ::-moz-placeholder {
    font-size: 16px;
  }
}

:-ms-input-placeholder {
  color: #868686;
  font-size: 14.4px;
  font-weight: 300;
}

@media (min-width: 1024px) {
  :-ms-input-placeholder {
    font-size: 16px;
  }
}

form.form-horizontal {
  padding-left: 16px;
  padding-right: 16px;
}

form::after {
  content: "";
  display: table;
  clear: both;
}

form .form-group.btns {
  margin-top: 20px;
}

label {
  color: #868686;
  font-size: 14.4px;
  font-weight: 300;
  margin-bottom: 4px;
}

@media only screen and (min-width: 1024px) {
  label {
    font-size: 14px;
  }
}

label.required:after {
  content: '\00a0*';
}

.form-section,
fieldset {
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}

.form-field > input,
.form-field > select,
.form-field > textarea {
  background-color: #ffffff;
  border: 1px solid #dedede;
  color: #333840;
  font-size: 14.4px;
  font-weight: 400;
  line-height: 24px;
  /*max-width:300px;*/
  min-height: 40px;
  padding: 7px 16px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #dedede;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.form-field > input:focus,
.form-field > select:focus,
.form-field > textarea:focus {
  outline: none;
}

.form-field > input[type="radio"], .form-field > input[type="checkbox"],
.form-field > select[type="radio"],
.form-field > select[type="checkbox"],
.form-field > textarea[type="radio"],
.form-field > textarea[type="checkbox"] {
  box-shadow: none;
  border: 0;
  height: 10px;
  display: inline-block;
  margin-right: 8px;
  min-height: 0;
  width: auto;
}

.form-field > input[disabled="disabled"],
.form-field > select[disabled="disabled"],
.form-field > textarea[disabled="disabled"] {
  background-color: #ffffff;
  opacity: 0.5;
}

@media only screen and (min-width: 1024px) {
  .form-field > input,
  .form-field > select,
  .form-field > textarea {
    font-size: 16px;
  }
}

.form-field > input[type="text"],
.form-field > input[type="email"],
.form-field > input[type="number"],
.form-field > input[type="password"] {
  height: 40px;
}

.form-field.form-field--select {
  background-color: #ffffff;
  border-radius: 4px;
  margin: 0;
  padding: 0;
  position: relative;
}

.form-field.form-field--select > select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  cursor: pointer;
  height: 40px;
  padding-right: 32px;
  position: relative;
  text-indent: 1px;
  text-overflow: '';
  z-index: 100;
}

.form-field.form-field--select > select::-ms-expand {
  display: none;
}

.form-field.form-field--select::before {
  color: #868686;
  content: '\203A';
  font-size: 20px;
  font-weight: 600;
  margin-top: -10px;
  position: absolute;
  right: 12px;
  top: 50%;
  z-index: 10;
  transform: rotate(90deg);
}

/* File Upload Input */
.file-upload {
  float: left;
  margin: 8px;
  position: relative;
  overflow: hidden;
}

.file-upload input.upload {
  cursor: pointer;
  opacity: 0;
  font-size: 20px;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.image-upload-help-text {
  left: 20%;
  position: relative;
  text-align: center;
  top: 25%;
  width: 60%;
}

#image-upload {
  display: none;
}

#form-image-upload {
  cursor: move;
}

/* Checkboxes and Radio Buttons */
.radio {
  margin: 12px 0;
}

.radio input {
  visibility: hidden;
}

.radio label {
  font-weight: 300;
  padding-left: 36px;
  position: relative;
}

.radio label:before {
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 50%;
  content: '';
  display: inline-block;
  height: 20px;
  left: 0;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  transition: all 0.25s ease-in;
  width: 20px;
}

.radio input:checked ~ label:before {
  border: 0.25rem solid #ee5a40;
  transition: all 0.25s ease-in;
}

.checkbox {
  margin: 12px 0;
}

.checkbox input {
  visibility: hidden;
}

.checkbox label {
  color: #25282e;
  font-size: 14px;
  line-height: 22px;
  padding-left: 0;
  position: relative;
}

.checkbox label:before {
  background-color: #ffffff;
  border: 1px solid #dedede;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  color: transparent;
  content: "\f00c";
  display: inline-block;
  font-family: FontAwesome;
  height: 22px;
  margin-right: 12px;
  width: 22px;
  text-align: center;
  transition: all 0.15s ease-in;
}

@media (min-width: 1024px) {
  .checkbox label {
    font-size: 16px;
  }
}

.checkbox input:checked ~ label:before {
  border: 1px solid #ee5a40;
  color: #ffffff;
  background: #ee5a40;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: all 0.15s ease-in;
}

.form-field.date {
  background-color: #ffffff;
  border-color: #dedede;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  cursor: pointer;
  height: 38px;
  width: 100%;
}

.form-field.date input {
  background: none;
}

.form-field.date .input-group-addon {
  background: none;
  border: none;
  padding: 10px 12px;
  position: absolute;
  right: 0;
  top: 2px;
  width: 40px;
}

/* Form Fields with Input addons */
.form-field .input-group-addon {
  background-color: transparent;
  border: none;
  color: #dedede;
}

.form-field.date .input-group-addon {
  cursor: pointer;
}

/* Multiselect */
button.multiselect {
  font-size: 1.1rem;
}

.btn-group.open button.multiselect,
.btn-group.open button.multiselect span {
  color: #333;
}

.multiselect-container.dropdown-menu li label {
  font-size: 1.1rem;
}

.multiselect-container.dropdown-menu > li:first-child > a {
  padding-top: 8px;
}

.multiselect-container.dropdown-menu > li:last-child > a {
  padding-bottom: 8px;
}

.multiselect-container.dropdown-menu > li > a,
.multiselect-container.dropdown-menu > li > a:hover,
.multiselect-container.dropdown-menu > li > a:focus {
  background: #74b2c7;
}

.multiselect-container.dropdown-menu > .active > a label,
.multiselect-container.dropdown-menu > .active > a:hover label,
.multiselect-container.dropdown-menu > .active > a:focus label {
  background: #74b2c7;
  color: #ffffff;
}

/*  Field Validation Errors */
#goody .field-validation-error {
  color: #a82209;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-top: 4px;
  text-align: left;
}

.table-header input,
.table-header select {
  font-size: 14px;
  height: 32px;
  min-height: 32px;
  padding: 4px 16px;
}

.table-header input::-webkit-input-placeholder,
.table-header select::-webkit-input-placeholder {
  color: #868686;
  font-size: 14px;
  font-weight: 300;
}

/* Search Container */
.form-field--joiner {
  float: left;
  position: relative;
}

.form-field--joiner > input,
.form-field--joiner > select {
  border-radius: 4px 0 0 4px;
  float: left;
  margin-right: 0;
  padding-right: 40px;
}

.form-field--joiner > .icon-button {
  background: none;
  border: none;
  color: #868686;
  display: inline-block;
  height: 24px;
  margin-top: -12px;
  position: absolute;
  right: 8px;
  top: 50%;
  width: 24px;
}

.search-container .form-field--joiner input {
  width: 160px;
}

.search-container .form-field--joiner .btn-sml {
  max-width: 76px;
  width: 76px;
}

.form-field--joiner + .btn {
  border-radius: 0 4px 4px 0;
  float: left;
  margin-left: 0;
}

.fieldset-title {
  margin-top: 32px;
}

.fieldset-title:first-child {
  margin-top: 0;
}

/************************************************
    Typography
************************************************/
ul, ol {
  margin: 0 0 12px 32px;
  padding-left: 12px;
}

ul li, ol li {
  padding: 0;
}

ul.block-list, ol.block-list {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

ul.block-list .block-list__item, ol.block-list .block-list__item {
  list-style-type: none;
  margin-bottom: 40px;
  padding-left: 0;
}

ul.block-list .block-list__item .button, ol.block-list .block-list__item .button {
  display: inline;
}

ul.goody-list, ol.goody-list {
  margin: 20px 0;
  padding: 0;
}

ul.goody-list li, ol.goody-list li {
  background-image: url("/img/redicon.svg");
  background-position-x: 0;
  background-position-y: 0;
  background-repeat: no-repeat;
  background-size: 38px 40px;
  list-style-type: none;
  margin-bottom: 12px;
  min-height: 40px;
  padding-bottom: 8px;
  padding-left: 52px;
  padding-top: 8px;
  text-align: left;
}

/* Link List */
ul.link-list {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

ul.link-list li {
  padding-bottom: 12px;
}

ul.link-list li a.external-link {
  background: url("/img/icons/icon_external-link.svg") no-repeat right center;
  padding-right: 24px;
}

ul.link-list li a.external-link:hover {
  background: url("/img/icons/icon_external-link_hover.svg") no-repeat right center;
}

ul.link-list li a.download-link {
  background: url("/img/icons/icon_document-small.png") no-repeat right center;
  background-size: contain;
  padding-right: 24px;
}

ul.link-list li a.download-link:hover {
  background: url("/img/icons/icon_document-small.png") no-repeat right center;
  background-size: contain;
}

ul.icon-link-list {
  list-style-type: none;
  margin-left: 0;
  padding-bottom: 24px;
  padding-left: 0;
}

ul.icon-link-list li {
  border-top: 1px solid #dedede;
  padding-bottom: 8px;
  padding-top: 16px;
}

ul.icon-link-list li:first-child {
  border-top: none;
  padding-top: 0;
}

ul.icon-link-list .icon-link {
  display: block;
  float: left;
  padding-top: 4px;
}

ul.icon-link-list .link-description {
  padding-left: 48px;
}

/************************************************
    Modals
************************************************/
.modal-footer .btn {
  margin-top: 0;
}

.modal-footer .btn + .btn {
  margin-left: 12px;
}

/************************************************
    Navigation
************************************************/
nav {
  height: 48px;
  padding: 0;
  position: relative;
  z-index: 400;
}

nav .header-nav {
  height: 48px;
  margin: 0;
  padding: 0;
  float: right;
}

nav .header-nav > ul {
  list-style-type: none;
  padding: 16px 0;
}

nav .header-nav > ul > li {
  display: inline-block;
  float: left;
  font-weight: 400;
  padding: 0 0 0 24px;
}

nav .header-nav > ul > li > a:not(.btn) {
  color: #ffffff;
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease-in;
}

nav .header-nav > ul > li > a:not(.btn):hover {
  color: #d5e8ee;
  text-decoration: none;
  transition: color 0.2s ease-in;
}

nav #member-nav {
  background: #ffffff;
  height: 48px;
  left: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 400;
}

nav #member-nav > .container {
  padding: 0;
}

nav #member-nav > .container .menu {
  height: 48px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

nav #member-nav > .container .menu .scroller {
  color: #868686;
  cursor: pointer;
  height: 48px;
  position: absolute;
  vertical-align: middle;
  white-space: no-wrap;
  width: 40px;
  z-index: 6000;
}

nav #member-nav > .container .menu .scroller > i:before {
  color: #f1f1f1;
  left: 4px;
  margin-top: -6px;
  position: absolute;
  top: 50%;
}

nav #member-nav > .container .menu .scroller.scroller-right {
  right: 0;
  text-align: right;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 20%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

nav #member-nav > .container .menu .scroller.scroller-right > i:before {
  right: 4px;
}

nav #member-nav > .container .menu .scroller.scroller-left {
  left: 0;
  text-align: left;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 20%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

nav #member-nav > .container .menu .scroller.scroller-left > i:before {
  left: 4px;
}

nav #member-nav > .container .menu > ul {
  border-spacing: 20px;
  margin: 0px;
  margin-left: -20px;
  min-width: 3000px;
  padding: 0 16px;
  position: absolute;
  top: 0px;
  width: auto;
}

nav #member-nav > .container .menu > ul > li {
  background-color: #ffffff;
  border-collapse: separate;
  display: table-cell;
  float: none;
  min-width: 32px;
  padding-bottom: 4px;
  padding-left: 0;
  position: relative;
  text-align: center;
  top: -20px;
  vertical-align: middle;
}

nav #member-nav > .container .menu > ul > li > a {
  background: #ffffff;
  color: #868686;
  display: block;
  padding: 12px 4px 8px 4px;
}

nav #member-nav > .container .menu > ul > li > a:hover, nav #member-nav > .container .menu > ul > li > a:active, nav #member-nav > .container .menu > ul > li > a:focus {
  color: #ee5a40;
  outline: 0;
  text-decoration: none;
}

nav #member-nav > .container .menu > ul > li > a > span {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

nav #member-nav > .container .menu > ul > li > a > i {
  font-size: 2rem;
}

nav #member-nav > .container .menu > ul > li:focus, nav #member-nav > .container .menu > ul > li.active {
  background-color: #ee5a40;
}

nav #member-nav > .container .menu > ul > li:focus > a, nav #member-nav > .container .menu > ul > li.active > a {
  background: #ffffff;
  color: #ee5a40;
}

nav #member-nav > .container .menu > ul > li:first-child {
  margin-left: 0;
}

/************************************************
    Tables
************************************************/
.table {
  clear: both;
  width: 100%;
  /*
    .pagination-btns {
        display:block; float:left; margin-top:0;
        .btn {
            float:left; margin-left:12px;
            
            &:first-child {
                margin-left:0;
            }
        }
    }
   */
}

.table .table-header {
  background-color: #2c7b95;
  color: #ffffff;
  min-height: 48px;
  padding: 8px 8px 0 8px;
  border-radius: 4px 4px 0 0;
}

.table .table-header > .title {
  color: #ffffff;
  float: left;
  margin-right: 16px;
  margin-top: 0;
  padding: 4px 0;
}

.table .table-header > .button {
  float: left;
  margin-right: 12px;
}

.table .table-header > * {
  float: left;
  margin-bottom: 8px;
}

.table .table-header .search-container {
  float: left;
  height: 32px;
  max-width: 238px;
  overflow: visible;
}

@media (min-width: 640px) {
  .table .table-header .search-container {
    float: right;
  }
}

@media (min-width: 640px) {
  .table .table-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.table .table-filters {
  background-color: #74b2c7;
  clear: both;
  color: #ffffff;
  padding: 8px 8px 0 8px;
  width: 100%;
}

.table .table-filters > p {
  font-weight: 400;
}

.table .table-filters .filters-toggle {
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.table .table-filters .filters-toggle i {
  color: #ffffff;
  font-size: 0.7em;
  font-weight: 400;
  margin-bottom: 2px;
}

@media (min-width: 640px) {
  .table .table-filters .filters-toggle + .filters-content {
    display: block !important;
  }
}

.table .table-filters > input[type="checkbox"] {
  display: none;
}

.table .table-filters > input[type="checkbox"] + .filters-toggle .closed {
  display: inline;
}

.table .table-filters > input[type="checkbox"] + .filters-toggle .open {
  display: none;
}

.table .table-filters > input[type="checkbox"] + .filters-toggle + .filters-content {
  display: none;
}

.table .table-filters > input[type="checkbox"]:checked + .filters-toggle .closed {
  display: none;
}

.table .table-filters > input[type="checkbox"]:checked + .filters-toggle .open {
  display: inline;
}

.table .table-filters > input[type="checkbox"]:checked + .filters-toggle i {
  transform: rotate(180deg);
}

.table .table-filters > input[type="checkbox"]:checked + .filters-toggle + .filters-content {
  display: block;
}

.table .table-filters .row {
  margin-left: -8px;
  margin-right: -8px;
}

.table .table-filters .row .filter {
  margin-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

.table .table-filters .row .filter .form-field {
  height: 32px;
  margin-bottom: 8px;
}

.table .table-filters .row .filter .form-field input,
.table .table-filters .row .filter .form-field select {
  height: 32px;
  min-height: 32px;
}

.table .table-filters .row .filter .form-field .input-group-addon {
  color: #868686;
  height: 32px;
  min-height: 32px;
  padding-bottom: 8px;
  padding-top: 8px;
}

.table .table-filters .row .filter .form-field.form-field--select {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
  position: relative;
}

.table .table-filters .row .filter .form-field.form-field--select > select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  height: 32px;
  padding-right: 32px;
  padding: 0 32px 0 16px;
  position: relative;
  text-indent: 1px;
  text-overflow: '';
  z-index: 100;
}

.table .table-filters .row .filter .form-field.form-field--select > select::-ms-expand {
  display: none;
}

.table .table-filters .row .filter .form-field.form-field--select:before {
  color: #868686;
  content: '\203A';
  font-size: 20px;
  font-weight: 600;
  margin-top: -12px;
  position: absolute;
  right: 12px;
  top: 50%;
  z-index: 10;
  transform: rotate(90deg);
}

@media (min-width: 1024px) {
  .table .table-filters .row .filter-btn {
    margin: 0;
  }
}

.table .table-filters .row .filter-btn .btn {
  float: left;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .table .table-filters {
    padding: 8px 16px 0 16px;
  }
}

.table .subtable-header {
  background-color: #74b2c7;
  color: #ffffff;
  min-height: 44px;
  padding: 8px 8px 0 8px;
}

.table .subtable-header > * {
  float: left;
  margin-bottom: 8px;
}

.table .subtable-header > .subtable-navigation {
  float: right;
}

.table .subtable-header > .subtable-navigation label {
  color: #ffffff;
  font-size: 16px;
}

.table .subtable-header > span {
  font-weight: 600;
  padding-top: 4px;
}

.table .subtable-header .checkbox {
  margin: 0;
  width: 100%;
}

.table .subtable-header .checkbox label {
  font-weight: 300;
  width: 100%;
}

.table .subtable-header .checkbox label:before {
  float: right;
  margin-left: 12px;
  margin-right: 0;
}

.table .subtable-header .form-field input {
  height: 32px !important;
}

.table .subtable-header + .table-content > thead > tr {
  border-top: none;
}

@media (min-width: 640px) {
  .table .subtable-header {
    padding: 8px 16px 0 16px;
  }
}

.table .checkbox-group-btns {
  float: right;
}

.table .checkbox-group-btns .btn {
  float: left;
  margin-left: 8px;
}

.table .checkbox-group-btns .btn:first-child {
  margin-left: 0;
}

.table .table-content {
  background-color: #ffffff;
  width: 100%;
  table-layout: fixed;
}

.table .table-content > tbody > tr {
  border-bottom: 1px solid #dedede;
}

.table .table-content > tbody > tr > td {
  font-size: 16px;
  padding-top: 0;
  text-align: left;
  vertical-align: middle;
  clear: both;
  display: block;
  width: 100%;
}

.table .table-content > tbody > tr > td.col-xs-6 {
  clear: none;
  float: left;
  padding: 4px 8px;
  width: 50%;
}

.table .table-content > tbody > tr > td.primary-item {
  font-weight: 600;
}

.table .table-content > tbody > tr > td.primary-item > span {
  font-size: 16px;
  font-weight: 600;
}

.table .table-content > tbody > tr > td.primary-item label {
  font-weight: 600;
}

.table .table-content > tbody > tr > td.reward {
  padding-bottom: 8px;
  padding-top: 8px;
  position: relative;
}

.table .table-content > tbody > tr > td.reward .reward-bkgd {
  background-color: rgba(238, 90, 64, 0.25);
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 10;
}

.table .table-content > tbody > tr > td.reward .reward-bkgd[style*="width: 100%"] {
  background-color: #ffffff;
}

.table .table-content > tbody > tr > td.reward .reward-details {
  min-height: 54px;
  position: relative;
  z-index: 100;
}

.table .table-content > tbody > tr > td.reward .reward-details .required-points {
  background: transparent;
  border-radius: 100%;
  display: block;
  margin-top: -27px;
  position: absolute;
  top: 50%;
}

.table .table-content > tbody > tr > td.reward .reward-details .required-points > span {
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  line-height: 54px;
  text-align: center;
  width: 100%;
}

.table .table-content > tbody > tr > td.reward .reward-details .required-points:after {
  min-height: 48px;
  min-width: 48px;
}

.table .table-content > tbody > tr > td.reward .reward-details .required-points .bar,
.table .table-content > tbody > tr > td.reward .reward-details .required-points .fil {
  min-height: 48px;
  min-width: 48px;
}

.table .table-content > tbody > tr > td.reward .reward-details .required-points.p100:after {
  background: #ee5a40;
}

.table .table-content > tbody > tr > td.reward .reward-details .required-points.p100 .bar,
.table .table-content > tbody > tr > td.reward .reward-details .required-points.p100 .fill {
  border-color: #ffffff;
}

.table .table-content > tbody > tr > td.reward .reward-details .reward-tool-tip {
  display: block;
  height: 100%;
  left: 44px;
  min-height: 54px;
  opacity: 0;
  position: absolute;
  transition: all 0.15s ease-in;
  vertical-align: middle;
}

.table .table-content > tbody > tr > td.reward .reward-details .reward-tool-tip span {
  background-color: #25282e;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 400;
  height: 100%;
  line-height: 21px;
  padding: 4px 8px;
  position: relative;
  text-align: center;
  width: 94px;
  vertical-align: middle;
}

.table .table-content > tbody > tr > td.reward .reward-details .reward-tool-tip span:before {
  background: url("/img/arrow_tool-tip.svg") top center no-repeat;
  content: '';
  display: block;
  height: 8px;
  left: -8px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  transform: rotate(90deg);
  width: 12px;
}

.table .table-content > tbody > tr > td.reward .reward-details .reward-desc {
  display: table;
  height: 100%;
  min-height: 54px;
  vertical-align: middle;
  width: 100%;
}

.table .table-content > tbody > tr > td.reward .reward-details .reward-desc p {
  display: table-cell;
  font-weight: 600;
  margin-bottom: 0;
  padding-left: 64px;
  text-align: left;
  transition: all 0.15s ease-in;
  vertical-align: middle;
}

.table .table-content > tbody > tr > td.reward .reward-details .required-points:hover + .reward-tool-tip {
  left: 64px;
  opacity: 1;
  transition: all 0.15s ease-in;
}

.table .table-content > tbody > tr > td.reward .reward-details .required-points:hover + .reward-tool-tip + .reward-desc p {
  padding-left: 168px;
  transition: all 0.15s ease-in;
}

.table .table-content > tbody > tr > td > .type:before {
  color: #ee5a40;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 18px;
  height: 20px;
  text-align: center;
  width: 20px;
}

.table .table-content > tbody > tr > td > .type-birthday:before {
  content: "\f1fd";
}

.table .table-content > tbody > tr > td > .type-bonus:before {
  content: "\f055";
}

.table .table-content > tbody > tr > td > .type-bring-em-back:before {
  content: "\f0a5";
}

.table .table-content > tbody > tr > td > .type-coupon:before,
.table .table-content > tbody > tr > td > .type-legacy-treat:before {
  content: "\f145";
}

.table .table-content > tbody > tr > td > .type-duplicate:before {
  content: "\f0e2";
}

.table .table-content > tbody > tr > td > .type-email:before {
  content: "\f0e0";
}

.table .table-content > tbody > tr > td > .type-facebook:before {
  content: "\f164";
}

.table .table-content > tbody > tr > td > .type-reward-redemption:before {
  content: "\f091";
}

.table .table-content > tbody > tr > td > .type-tag:before {
  content: "\f029";
}

.table .table-content > tbody > tr > td > .card-img {
  margin-bottom: 8px;
  max-width: 100%;
}

.table .table-content > tbody > tr > td > .card-img:not(.verified) {
  opacity: 0.2;
}

@media (min-width: 640px) {
  .table .table-content > tbody > tr > td > .card-img {
    margin-bottom: 0;
  }
}

.table .table-content > tbody > tr > td > span {
  font-size: 14px;
  font-weight: 300;
}

@media (min-width: 640px) {
  .table .table-content > tbody > tr > td > span {
    font-size: 16px;
  }
}

.table .table-content > tbody > tr > td > label {
  color: #25282e;
  font-size: 16px;
  font-weight: 300;
}

.table .table-content > tbody > tr > td .checkbox {
  margin: 0;
  width: 100%;
}

.table .table-content > tbody > tr > td .checkbox label {
  width: 100%;
}

.table .table-content > tbody > tr > td .checkbox label:before {
  float: right;
  margin-left: 12px;
  margin-right: 0;
}

.table .table-content > tbody > tr > td .coupon-tag,
.table .table-content > tbody > tr > td .reward-tag {
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
  padding: 0 6px;
  position: relative;
  top: 0;
}

.table .table-content > tbody > tr > td .coupon-tag {
  background-color: #ee5a40;
}

.table .table-content > tbody > tr > td .reward-tag {
  background-color: #7bc515;
}

.table .table-content > tbody > tr > td:first-child {
  padding-top: 8px;
}

.table .table-content > tbody > tr > td:last-child {
  padding-bottom: 8px;
}

.table .table-content > tbody > tr > td .logo-title tr td {
  padding-bottom: 4px;
  vertical-align: middle;
}

.table .table-content > tbody > tr > td .logo-title tr td .logo {
  margin-right: 12px;
  max-height: 36px;
  max-width: 36px;
}

@media (min-width: 640px) {
  .table .table-content > tbody > tr > td .logo-title tr td {
    padding: 0 !important;
  }
}

.table .table-content > tbody > tr:last-child {
  border-bottom: none;
}

.table .table-content > tbody.align-top tr td {
  vertical-align: top !important;
}

.table .table-content > tbody tr td.empty:first-child, .table .table-content > tbody tr td.empty:last-child {
  background-color: #ffffff;
  padding: 8px;
  text-align: left;
  width: 100%;
}

.table .table-content > tbody tr td.empty:first-child > p, .table .table-content > tbody tr td.empty:last-child > p {
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 640px) {
  .table .table-content > tbody tr td.empty:first-child, .table .table-content > tbody tr td.empty:last-child {
    padding: 16px;
  }
}

.table .table-content thead > tr > td {
  position: relative;
}

.table .table-content thead > tr > td > span,
.table .table-content thead > tr > td > a {
  font-size: 14px;
  font-weight: 700;
  padding-right: 12px !important;
  position: relative;
  vertical-align: top;
}

.table .table-content thead > tr > td > a {
  color: #333840;
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 100;
}

.table .table-content thead > tr > td > a:hover {
  color: #25282e;
}

.table .table-content thead > tr > td > a:active, .table .table-content thead > tr > td > a:focus {
  outline: none;
}

.table .table-content thead > tr > td:first-child {
  padding-left: 16px !important;
}

.table .table-content thead > tr > td:last-child {
  padding-right: 16px !important;
}

.table .table-content thead > tr > td:last-child > a,
.table .table-content thead > tr > td:last-child > span {
  padding-right: 0 !important;
}

@media (min-width: 1024px) {
  .table .table-content thead + tbody tr:first-child td {
    padding-top: 0;
  }
}

.table .table-content .loading {
  display: table;
  margin: 28px auto;
}

.table .table-content .loading .loading-circle,
.table .table-content .loading .loading-circle-sm {
  display: inline-block;
  margin: 0;
}

.table .table-content .loading .loading-text {
  color: #9fcad8;
  display: table-cell;
  font-size: 16px;
  padding-left: 16px;
  font-weight: 400;
  vertical-align: middle;
}

.table .table-footer {
  background-color: #74b2c7;
  border-radius: 0 0 4px 4px;
  padding: 8px;
}

@media (min-width: 640px) {
  .table .table-footer {
    padding: 8px 16px;
  }
}

.table .table-header,
.table .table-footer {
  position: relative;
}

.table .table-header .table-navigation,
.table .table-footer .table-navigation {
  float: none;
  margin-bottom: 0;
  min-height: 32px;
  width: 100%;
}

.table .table-header .table-navigation > .btn,
.table .table-footer .table-navigation > .btn {
  float: right;
}

.table .table-header .table-navigation .table-pagination,
.table .table-header .table-navigation .table-search,
.table .table-footer .table-navigation .table-pagination,
.table .table-footer .table-navigation .table-search {
  float: left;
}

.table .table-header .table-navigation .table-pagination,
.table .table-footer .table-navigation .table-pagination {
  display: block;
  margin-top: 0;
  position: absolute;
  right: 8px;
  top: 8px;
}

.table .table-header .table-navigation .table-pagination .btn,
.table .table-footer .table-navigation .table-pagination .btn {
  float: left;
  margin-left: 12px;
}

.table .table-header .table-navigation .table-pagination .btn:first-child,
.table .table-footer .table-navigation .table-pagination .btn:first-child {
  margin-left: 0;
}

@media (min-width: 640px) {
  .table .table-header .table-navigation .table-pagination,
  .table .table-footer .table-navigation .table-pagination {
    float: left;
    margin-left: 32px;
    position: static;
  }
}

@media (min-width: 640px) {
  .table .table-header .table-navigation,
  .table .table-footer .table-navigation {
    float: right;
    width: auto;
  }
}

/* Tablet */
@media (min-width: 640px) {
  .table {
    width: 100%;
  }
  .table .table-header > .btns,
  .table .table-header > .pagination-btns {
    float: right;
  }
  .table .table-content > thead > tr > td {
    padding: 8px;
  }
  .table .table-content > tbody > tr > td {
    clear: none;
    display: table-cell;
    width: auto;
    max-width: auto;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
  }
  .table .table-content > tbody > tr > td:first-child {
    padding-left: 16px !important;
  }
  .table .table-content > tbody > tr > td:last-child {
    padding-right: 16px !important;
  }
  .table .table-content > tbody > tr > td.col-xs-6 {
    float: none !important;
    max-width: auto;
    padding: 10px 8px;
    width: auto;
  }
  .table .table-content > tbody > tr:first-child > td {
    padding-top: 20px;
  }
  .table .table-content > tbody > tr:last-child > td {
    padding-bottom: 20px;
  }
}

/* Small Desktop */
/************************************************
    Tabs
************************************************/
.tabs {
  background: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  height: 64px;
  left: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0;
  position: relative;
  z-index: 400;
}

.tabs .menu {
  height: 64px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.tabs .menu .scroller {
  cursor: pointer;
  height: 48px;
  position: absolute;
  vertical-align: middle;
  white-space: no-wrap;
  width: 40px;
  z-index: 6000;
}

.tabs .menu .scroller.scroller-right {
  right: 0;
  text-align: right;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 20%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

.tabs .menu .scroller.scroller-left {
  left: 0;
  text-align: left;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 20%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

.tabs .menu > ul {
  border-spacing: 20px;
  display: block;
  margin: 0px auto;
  padding: 0;
  max-width: 800px;
  width: 100%;
}

.tabs .menu > ul:before {
  position: absolute;
}

.tabs .menu > ul > li {
  background-color: #ffffff;
  border-collapse: separate;
  display: table-cell;
  margin-bottom: 0;
  min-width: 32px;
  padding-bottom: 4px;
  padding-left: 0;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 50%;
}

.tabs .menu > ul > li > a {
  background: #ffffff;
  border: none;
  border-radius: 0;
  color: #868686;
  display: block;
  height: 60px;
  margin-right: 0;
  max-height: 60px;
  padding: 18px 4px 8px 4px;
}

.tabs .menu > ul > li > a:hover, .tabs .menu > ul > li > a:active, .tabs .menu > ul > li > a:focus {
  border: none;
  color: #ee5a40;
  outline: none;
  text-decoration: none;
}

.tabs .menu > ul > li > a > span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25rem;
}

.tabs .menu > ul > li > a > i {
  font-size: 2rem;
}

.tabs .menu > ul > li.active {
  background-color: #ee5a40;
}

.tabs .menu > ul > li.active > a {
  background: #ffffff;
  color: #ee5a40;
}

.tabs .menu > ul > li:first-child {
  margin-left: 0;
}

.tabs .menu.scrollable-menu > ul {
  min-width: 3000px;
}

.tabs.inverted {
  background: #333840;
  box-shadow: none;
}

.tabs.inverted .menu .scroller {
  color: #787878;
}

.tabs.inverted .menu .scroller.scroller-right {
  background: linear-gradient(to right, rgba(51, 56, 64, 0) 0%, #333840 50%);
}

.tabs.inverted .menu .scroller.scroller-left {
  background: linear-gradient(to left, rgba(51, 56, 64, 0) 0%, #333840 20%);
}

.tabs.inverted .menu .scroller > i {
  opacity: 0;
}

.tabs.inverted .menu > ul > li {
  background-color: #333840;
}

.tabs.inverted .menu > ul > li > a {
  background: #333840;
  color: #dedede;
}

.tabs.inverted .menu > ul > li:hover {
  background-color: #333840;
}

.tabs.inverted .menu > ul > li:hover > a {
  background: #333840;
  color: #ffffff;
}

.tabs.inverted .menu > ul > li.active, .tabs.inverted .menu > ul > li:active, .tabs.inverted .menu > ul > li.focus {
  background-color: #74b2c7;
}

.tabs.inverted .menu > ul > li.active > a, .tabs.inverted .menu > ul > li:active > a, .tabs.inverted .menu > ul > li.focus > a {
  background: #25282e;
  color: #ffffff;
}

.tabs.hanging {
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1) !important;
  margin-bottom: 20px;
}

.tab-content .table {
  margin-bottom: 0;
}

.tab-pane {
  margin-top: 0;
}

.member-centre .tabs {
  background: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  position: relative;
  z-index: 400;
}

.member-centre .tabs .menu {
  height: 48px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.member-centre .tabs .menu .scroller {
  color: #868686;
  cursor: pointer;
  height: 48px;
  position: absolute;
  vertical-align: middle;
  white-space: no-wrap;
  width: 40px;
  z-index: 6000;
}

.member-centre .tabs .menu .scroller.scroller-right {
  right: 0;
  text-align: right;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 20%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

.member-centre .tabs .menu .scroller.scroller-left {
  left: 0;
  text-align: left;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 20%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

.member-centre .tabs .menu > ul {
  border-spacing: 20px;
  margin: 0px;
  margin-left: -20px;
  min-width: 3000px;
  padding: 0 16px;
  position: absolute;
  top: 0px;
  width: auto;
}

.member-centre .tabs .menu > ul > li {
  background-color: #ffffff;
  border-collapse: separate;
  display: table-cell;
  float: none;
  min-width: 32px;
  padding-bottom: 4px;
  padding-left: 0;
  position: relative;
  text-align: center;
  top: -20px;
  vertical-align: middle;
  width: auto;
}

.member-centre .tabs .menu > ul > li > a {
  background: #ffffff;
  color: #868686;
  display: block;
  height: 44px;
  line-height: 22px;
  padding: 12px 4px 10px 4px;
  transition: color 0.15s ease-in;
}

.member-centre .tabs .menu > ul > li > a:hover, .member-centre .tabs .menu > ul > li > a:active, .member-centre .tabs .menu > ul > li > a:focus {
  color: #ee5a40;
  outline: 0;
  text-decoration: none;
  transition: color 0.15s ease-in;
}

.member-centre .tabs .menu > ul > li > a > span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25rem;
}

.member-centre .tabs .menu > ul > li > a > i {
  font-size: 2rem;
}

.member-centre .tabs .menu > ul > li:focus, .member-centre .tabs .menu > ul > li.active {
  background-color: #ee5a40;
}

.member-centre .tabs .menu > ul > li:focus > a, .member-centre .tabs .menu > ul > li.active > a {
  background: #ffffff;
  color: #ee5a40;
}

.member-centre .tabs .menu > ul > li:first-child {
  margin-left: 0;
}

.member-centre .tabs.inverted {
  background: #333840;
  box-shadow: none;
}

.member-centre .tabs.inverted .menu .scroller {
  color: #787878;
}

.member-centre .tabs.inverted .menu .scroller.scroller-right {
  background: linear-gradient(to right, rgba(51, 56, 64, 0) 0%, #333840 50%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr=#333840,GradientType=0 );
}

.member-centre .tabs.inverted .menu .scroller.scroller-left {
  background: linear-gradient(to left, rgba(51, 56, 64, 0) 0%, #333840 20%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr=#333840,GradientType=0 );
}

.member-centre .tabs.inverted .menu .scroller > i {
  opacity: 0;
}

.member-centre .tabs.inverted .menu > ul > li {
  background-color: #333840;
}

.member-centre .tabs.inverted .menu > ul > li > a {
  background: #333840;
  color: #dedede;
}

.member-centre .tabs.inverted .menu > ul > li:hover {
  background-color: #333840;
}

.member-centre .tabs.inverted .menu > ul > li:hover > a {
  background: #333840;
  color: #ffffff;
}

.member-centre .tabs.inverted .menu > ul > li.active, .member-centre .tabs.inverted .menu > ul > li:active, .member-centre .tabs.inverted .menu > ul > li:focus {
  background-color: #74b2c7;
}

.member-centre .tabs.inverted .menu > ul > li.active > a, .member-centre .tabs.inverted .menu > ul > li:active > a, .member-centre .tabs.inverted .menu > ul > li:focus > a {
  background: #25282e;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .member-centre .tabs.vertical {
    background-color: #ffffff;
    bottom: 0;
    box-shadow: none;
    color: #ee5a40;
    display: block;
    height: auto;
    left: 0;
    overflow-x: hidden;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    overflow-y: auto;
    top: 0;
  }
  .member-centre .tabs.vertical::-webkit-scrollbar {
    width: 0 !important;
  }
  .member-centre .tabs.vertical > .group {
    border-bottom: 3px solid #f2f2f2;
    border-top: 1px solid #f9f9f9;
    display: block;
  }
  .member-centre .tabs.vertical > .group:first-child {
    border-top: none;
  }
  .member-centre .tabs.vertical > .group:last-child {
    border-bottom: none;
  }
  .member-centre .tabs.vertical .menu {
    height: auto;
  }
  .member-centre .tabs.vertical .menu .scroller {
    display: none;
  }
  .member-centre .tabs.vertical .menu > ul {
    margin: 0;
    min-width: 0;
    padding: 0;
    position: static;
    width: 100%;
  }
  .member-centre .tabs.vertical .menu > ul > li {
    background-color: #ffffff;
    color: #868686;
    display: block;
    float: left;
    height: 48px;
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 4px;
    position: static;
    width: 100%;
    text-align: left;
  }
  .member-centre .tabs.vertical .menu > ul > li > a {
    background: #ffffff;
    color: #868686;
    display: block;
    height: 100%;
    padding: 12px 8px;
    width: 100%;
  }
  .member-centre .tabs.vertical .menu > ul > li > a:hover, .member-centre .tabs.vertical .menu > ul > li > a:focus, .member-centre .tabs.vertical .menu > ul > li > a.active {
    color: #ee5a40;
    text-decoration: none;
  }
  .member-centre .tabs.vertical .menu > ul > li > a > span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25rem;
  }
  .member-centre .tabs.vertical .menu > ul > li > a > i {
    font-size: 20px;
    margin-right: 8px;
    max-width: 22px;
    width: 22px;
  }
  .member-centre .tabs.vertical .menu > ul > li:focus, .member-centre .tabs.vertical .menu > ul > li.active {
    color: #ee5a40;
    background-color: #ee5a40;
  }
  .member-centre .tabs.vertical .menu > ul > li:focus > a, .member-centre .tabs.vertical .menu > ul > li.active > a {
    background: #ffffff;
    color: #ee5a40;
  }
  .member-centre .tabs.vertical.inverted {
    background-color: #333840;
    color: #dedede;
  }
  .member-centre .tabs.vertical.inverted > .group {
    border-bottom: 3px solid #25282e;
    border-top: 1px solid #3d4249;
  }
  .member-centre .tabs.vertical.inverted > .group:first-child {
    border-top: none;
  }
  .member-centre .tabs.vertical.inverted > .group:last-child {
    border-bottom: none;
  }
  .member-centre .tabs.vertical.inverted .menu > ul > li {
    background-color: #333840;
    color: #dedede;
  }
  .member-centre .tabs.vertical.inverted .menu > ul > li > a {
    background: #333840;
    color: #dedede;
  }
  .member-centre .tabs.vertical.inverted .menu > ul > li > a:hover {
    color: #ffffff;
  }
  .member-centre .tabs.vertical.inverted .menu > ul > li:focus, .member-centre .tabs.vertical.inverted .menu > ul > li.active {
    background-color: #74b2c7;
  }
  .member-centre .tabs.vertical.inverted .menu > ul > li:focus > a, .member-centre .tabs.vertical.inverted .menu > ul > li.active > a {
    background: #25282e;
    color: #ffffff;
  }
}

/************************************************
    Sign In Page
************************************************/
.signinup {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  height: 100%;
  min-height: 100%;
}

.signinup h1,
.signinup h2,
.signinup h3,
.signinup h4,
.signinup h5,
.signinup h6 {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.signinup > .page {
  height: 100%;
  min-height: 100%;
}

.signinup-container {
  height: 100%;
  margin: auto;
  max-width: 400px;
  min-height: 520px;
  position: relative;
  width: 100%;
}

@media (min-width: 640px) {
  #account-signin .signinup-container {
    max-width: 650px;
  }
}

.signinup-container .signinup-box {
  height: auto;
  margin-top: 64px;
  position: relative;
}

@media (min-width: 640px) {
  .signinup-container .signinup-box {
    height: 430px;
    margin-top: -215px;
    position: absolute;
    top: 50%;
    width: 100%;
  }
}

.signinup-container .signinup-box .signup-card {
  box-shadow: 0 10px 25px rgba(23, 55, 87, 0.1), 0 0 10px rgba(0, 0, 0, 0.07);
}

.signinup-container .signinup-box .signinup-header {
  position: relative;
}

.signinup-container .signinup-box .signinup-header img {
  display: block;
  height: 66px;
  left: 50%;
  width: 66px;
  position: absolute;
  top: -32px;
  margin-left: -33px;
  z-index: 1000;
}

.signinup-container .signinup-box .signinup-content {
  background-color: #ffffff;
  border-radius: 4px 0 0 4px;
  padding: 60px 32px 32px 32px;
}

.signinup-container .signinup-box .signinup-content h5 {
  margin-bottom: 20px;
}

.signinup-container .signinup-box .signinup-content .forgotten-password {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.signinup-container .signinup-box .signinup-content .form-field {
  border: 1px solid #dedede;
  border-radius: 4px;
  padding: 2px;
  width: 100%;
}

.signinup-container .signinup-box .signinup-content .form-field input {
  background: transparent;
  border: none;
  box-shadow: none;
}

.signinup-container .signinup-box .signinup-content .form-field .input-group-addon + input {
  padding-left: 4px;
}

.signinup-container .signinup-box .signinup-content .form-field input:-webkit-autofill,
.signinup-container .signinup-box .signinup-content .form-field input:-webkit-autofill:hover,
.signinup-container .signinup-box .signinup-content .form-field input:-webkit-autofill:focus,
.signinup-container .signinup-box .signinup-content .form-field input:-webkit-autofill:active {
  color: #25282e !important;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}

.signinup-container .signinup-box .signinup-footer {
  background: #ffffff;
  border-top: 1px solid #dedee1;
  border-radius: 0 0 4px 4px;
  clear: both;
  margin-bottom: 12px;
  padding: 16px;
}

.signinup-container .signinup-box .signinup-footer .btn {
  width: 100%;
}

.signinup-container .signinup-box .signup-content {
  background: transparent;
  border-radius: 0 0 0 0;
  padding: 32px 32px 0 32px;
}

.signinup-container .signinup-box .signup-content h5 {
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 30px;
}

.signinup-container .signinup-box .signup-content img {
  display: block;
  margin: 8px auto;
}

.signinup-container .signinup-box .signup-footer {
  border-radius: 0 0 4px 4px;
  margin-bottom: 12px;
  padding: 16px;
}

@media (min-width: 640px) {
  .signinup-container .signinup-box .signup-footer {
    margin-bottom: 0;
  }
}

.signinup-container .signinup-box .signinup-content-panel {
  background-color: #000;
  background-image: url("/img/signup__background.jpg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0 10px 25px rgba(23, 55, 87, 0.1), 0 0 10px rgba(0, 0, 0, 0.07);
  float: left;
  margin-bottom: 15px;
  width: 100% !important;
}

@media (min-width: 640px) {
  .signinup-container .signinup-box .signinup-content-panel .signinup-content {
    float: left;
    height: 100%;
    width: 50%;
  }
}

.signinup-container .signinup-box .signinup-content-panel .signup-content {
  display: none;
}

@media (min-width: 640px) {
  .signinup-container .signinup-box .signinup-content-panel .signup-content {
    border-radius: 0 4px 0 0;
    display: block;
    float: left;
    width: 50%;
  }
}

.signinup-container .signinup-box .signinup-content-panel + p {
  clear: both;
}

.signinup-container .signinup-box .signinup-footer-panel {
  float: left;
  margin-bottom: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .signinup-container .signinup-box .signinup-footer-panel {
    margin-bottom: 0px;
  }
}

.signinup-container .signinup-box .signinup-footer-panel .signinup-footer {
  border-radius: 0 0 0 0;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .signinup-container .signinup-box .signinup-footer-panel .signinup-footer {
    border-radius: 0 0 0 4px;
    float: left;
    width: 50%;
  }
}

.signinup-container .signinup-box .signinup-footer-panel .signup-footer {
  display: none;
}

@media (min-width: 640px) {
  .signinup-container .signinup-box .signinup-footer-panel .signup-footer {
    border-radius: 0 0 4px 0;
    display: block;
    float: left;
    width: 50%;
  }
}

#contact-us-page {
  background-color: #f8f8fa;
  margin: 0;
  padding: 20px;
  position: relative;
}

#contact-us-page .page__container {
  max-width: 1440px;
  margin: 20px auto;
  width: 100%;
}

#contact-us-page .button {
  -webkit-appearance: none;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4em;
  margin: 0;
  min-height: 50px;
  outline: none;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease;
}

#contact-us-page .button--primary {
  background: #ee5a40;
  color: #ffffff;
}

#contact-us-page .button--primary:hover {
  background: #e63415;
  color: #ffffff;
}

#contact-us-page .card {
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(23, 55, 87, 0.1), 0 0 10px rgba(0, 0, 0, 0.07);
  color: #25282e;
  padding: 4vw;
}

#contact-us-page .card--inverted {
  background: #25282e;
}

#contact-us-page .card--child {
  border-radius: 4px 4px 0 0;
  box-shadow: none;
  box-sizing: content-box;
  left: -4vw;
  position: relative;
  top: -4vw;
  width: 100%;
}

#contact-us-page .card--parent {
  margin: auto;
  padding: 0;
}

#contact-us-page .card__container--parent {
  padding: 4vw;
}

#contact-us-page .card__container--success {
  margin: 0;
  padding: 4vw;
}

#contact-us-page .card__heading,
#contact-us-page .card__text {
  text-align: left;
}

#contact-us-page .card__text {
  font-size: 15px;
  margin-bottom: 10px;
}

#contact-us-page .card__heading--align_center,
#contact-us-page .card__text--align_center {
  text-align: center;
}

#contact-us-page .card__heading--inverted,
#contact-us-page .card__text--inverted {
  color: #dedee1;
}

#contact-us-page .card__link--inverted {
  color: #fff;
}

#contact-us-page .card__link--inverted:hover {
  text-decoration: underline;
}

#contact-us-page .brand {
  display: block;
  margin-bottom: 24px;
}

#contact-us-page .brand--align_center {
  margin: 0 auto 32px;
  text-align: center;
}

#contact-us-page .brand__image {
  display: block;
  height: auto;
  width: 120px;
}

#contact-us-page .brand--align_center .brand__image {
  display: inline;
}

#contact-us-page .social-section {
  display: none;
}

#contact-us-page .highlight-block {
  border-radius: 4px;
  margin: 24px 0;
  padding: 16px 16px 6px 16px;
}

#contact-us-page .highlight-block--inverted {
  background: #333840;
  border: 1px solid #868686;
}

#contact-us-page .highlight-block__link--inverted {
  color: #ffffff;
  font-weight: 700;
  opacity: 1;
}

#contact-us-page .highlight-block__link--inverted:hover {
  color: #ffffff;
  opacity: 0.8;
}

#contact-us-page .form__fieldset {
  border: none;
  display: block;
  margin-bottom: 0;
  margin-top: 0;
  outline: none;
}

#contact-us-page .form__row {
  margin-top: 15px;
}

#contact-us-page .form__label {
  color: #bababc;
  font-weight: 700;
}

#contact-us-page .form__input,
#contact-us-page .form__select,
#contact-us-page .form__textarea {
  background: #ffffff;
  border: 1px solid #dedee1;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 17px;
  height: auto;
  margin-bottom: 10px;
  min-height: 50px;
  padding: 6px 11px;
  width: 100%;
}

#contact-us-page .form__select {
  -webkit-appearance: button;
  -webkit-border-radius: 3px;
  -webkit-padding-end: 20px;
  -webkit-padding-start: 6px;
  -webkit-user-select: none;
  background-color: #ffffff;
  background-image: url("https://goodycard.co.nz/img/icons/chevron-down_black.svg");
  background-position: 97% center;
  background-repeat: no-repeat;
  background-size: auto 30%;
  border: 1px solid #dedee1;
  border-radius: 4px;
  font-size: 18px;
  height: 50px;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 11px 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

#contact-us-page .form__input:disabled,
#contact-us-page .form__select:disabled,
#contact-us-page .form__textarea:disabled {
  background: #f8f8fa;
  border: 1px solid #f2f2f4;
}

@media (min-width: 768px) {
  #contact-us-page {
    padding: 40px 0;
    /*.page__container                    { position: absolute; top: 50%; transform: translateY(-50%); }*/
  }
  #contact-us-page .card {
    padding: 2vw;
  }
  #contact-us-page .card--parent {
    position: relative;
    width: 680px;
  }
  #contact-us-page .card--child {
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(23, 55, 87, 0.1), 0 0 10px rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
    left: -4vw;
    min-height: 350px;
    position: absolute;
    top: -4vw;
    width: 50%;
  }
  #contact-us-page .card__container--parent {
    margin-left: 50%;
    padding: 0;
  }
  #contact-us-page .card__container--success {
    margin: 0;
    padding: 2vw;
  }
  #contact-us-page .social-section {
    display: block;
  }
  #contact-us-page .social-section__heading {
    margin-bottom: 10px;
    margin-top: 24px;
  }
  #contact-us-page .social-section__link {
    opacity: 0.75;
    text-decoration: none;
  }
  #contact-us-page .social-section__link:hover {
    opacity: 1;
  }
  #contact-us-page .social-section__icon {
    height: auto;
    max-height: 25px;
    max-width: 25px;
    width: 100%;
  }
}

@media (min-width: 960px) {
  #contact-us-page {
    padding: 60px 0;
  }
}

@media (min-width: 1220px) {
  #contact-us-page {
    padding: 80px 0;
  }
  #contact-us-page .card--parent {
    /*min-height: 550px;*/
  }
  #contact-us-page .card--child {
    left: -2.5vw;
    top: -2.5vw;
  }
}

/************************************************
    Links and Buttons
************************************************/
/*** FOOTER ***/
footer {
  color: #333840;
  width: 100%;
}

.fixed-footer footer {
  margin-top: -74px;
}

.fixed-footer footer #footer__primary-section {
  display: none;
}

footer h5 {
  color: #ffffff;
}

footer #footer__primary-section {
  background-color: #333840;
  padding-top: 24px;
  width: 100%;
}

footer #footer__primary-section ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

footer #footer__primary-section #site-map ul {
  margin-bottom: 32px;
}

footer #footer__primary-section #site-map ul > li {
  border-bottom: 3px solid #25282e;
  border-top: 1px solid #3d4249;
  padding: 6px 0;
}

footer #footer__primary-section #site-map ul > li:first-child {
  border-top: 0;
}

footer #footer__primary-section #site-map ul > li:last-child {
  border-bottom: 0;
}

footer #footer__primary-section #site-map ul > li > a {
  color: #dedede;
  transition: color 0.2s ease;
}

footer #footer__primary-section #site-map ul > li > a:visited {
  color: #dedede;
}

footer #footer__primary-section #site-map ul > li > a:hover, footer #footer__primary-section #site-map ul > li > a:active, footer #footer__primary-section #site-map ul > li > a:focus {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer #footer__primary-section #contact-us #social-media {
  margin-bottom: 40px;
}

footer #footer__primary-section #contact-us #social-media li {
  display: block;
  float: left;
  margin-left: 12px;
  padding-left: 0;
}

footer #footer__primary-section #contact-us #social-media li:first-child {
  margin-left: 0;
  padding-left: 0;
}

footer #footer__primary-section #contact-us #social-media li a {
  background-size: 100% 200%;
  border-radius: 4px;
  display: block;
  height: 50px;
  width: 50px;
}

footer #footer__primary-section #contact-us #social-media li.facebook > a {
  background-image: url("/img/icons/icon-sprite_facebook.svg");
  background-repeat: no-repeat;
  background-position: center 0;
}

footer #footer__primary-section #contact-us #social-media li.facebook:hover a {
  background-position: center -52px;
}

footer #footer__primary-section #contact-us #social-media li.instagram > a {
  background-image: url("/img/icons/icon-sprite_instagram.svg");
  background-repeat: no-repeat;
  background-position: center 0;
}

footer #footer__primary-section #contact-us #social-media li.instagram:hover a {
  background-position: center -52px;
}

footer #footer__primary-section #contact-us #social-media li.linkedin > a {
  background-image: url("/img/icons/icon-sprite_linked-in.svg");
  background-repeat: no-repeat;
  background-position: center 0;
}

footer #footer__primary-section #contact-us #social-media li.linkedin:hover a {
  background-position: center -52px;
}

footer #footer__primary-section #contact-us #social-media li.twitter > a {
  background-image: url("/img/icons/icon-sprite_twitter.svg");
  background-repeat: no-repeat;
  background-position: center 0;
}

footer #footer__primary-section #contact-us #social-media li.twitter:hover a {
  background-position: center -52px;
}

footer #footer__primary-section #contact-us #contact-us__form {
  margin-bottom: 40px;
}

footer #footer__primary-section #contact-us #contact-us__form p {
  color: #ffffff;
}

footer #footer__primary-section #contact-us #contact-us__form input[type="email"],
footer #footer__primary-section #contact-us #contact-us__form input[type="text"],
footer #footer__primary-section #contact-us #contact-us__form textarea {
  background: #25282e;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  max-width: 340px;
  min-width: 0;
  padding: 10px;
  width: 100%;
}

footer #footer__primary-section #contact-us #contact-us__form input {
  color: #ffffff;
  margin-top: 0;
}

@media (max-width: 640px) {
  footer #footer__primary-section #contact-us {
    clear: both;
  }
}

footer #footer__secondary-section {
  background-color: #25282e;
  color: #dedede;
  padding: 16px 0;
  width: 100%;
}

footer #footer__secondary-section ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

footer #footer__secondary-section ul li {
  border-left: 1px solid #dedede;
  color: #dedede;
  float: left;
  padding-left: 12px;
  margin-left: 12px;
}

footer #footer__secondary-section ul li:first-child {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

footer #footer__secondary-section ul li a {
  color: #dedede;
}

html.fixed-footer {
  height: 100%;
  min-height: 100%;
}

html.fixed-footer #body-content {
  height: 100%;
  margin-bottom: -76px;
  min-height: 100%;
  padding-bottom: 76px;
}

html.fixed-footer #footer__secondary-section {
  height: 76px;
}

/* Check this*/
@media (max-width: 640px) {
  html.fixed-footer #goody #body-content {
    padding-bottom: 0;
  }
  html.fixed-footer #goody footer {
    display: none;
  }
}

/************************************************
    Tooltips
************************************************/
.hover-label {
  cursor: pointer;
}

.hover-label:hover::before, .hover-label:active::before, .hover-label:visited::before {
  text-decoration: none !important;
}

.hover-label:before {
  content: attr(data-tooltip);
  color: #ffffff;
  padding-bottom: 10px;
  position: absolute;
  white-space: pre-line;
  background: #434a54;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  color: #868686;
  font-size: 16px;
  left: 50%;
  min-width: 160%;
  margin-left: -80%;
  opacity: 0;
  bottom: 90px;
  padding: 6px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.hover-label:after {
  content: '';
  background: url("/img/arrow_tooltip.png") center center no-repeat;
  bottom: 82px;
  height: 9px;
  left: 50%;
  margin-left: -8px;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  width: 16px;
}

.hover-label:hover::before {
  color: #ffffff;
  display: block;
  bottom: 116px;
  opacity: 1;
  transition: all 0.3s ease;
}

.hover-label:hover::after {
  display: block;
  bottom: 108px;
  opacity: 1;
  transition: all 0.3s ease;
}

.member-centre .tool-tip {
  color: #ee5a40;
  cursor: pointer;
  display: inline;
  height: 20px;
  margin-left: 2px;
  padding: 0;
  position: relative;
  text-align: center;
  transition: color 0.15s ease-in;
  width: 20px;
}

.member-centre .tool-tip:hover {
  color: #cf2f12;
  transition: color 0.15s ease-in;
}

.member-centre .tool-tip .tool-tip-content {
  display: inline-block;
  padding-top: 12px;
  position: absolute;
  top: -10px;
  width: 16px;
  z-index: 100;
}

.member-centre .tool-tip .tool-tip-content:hover {
  background: url("/img/arrow_tool-tip.svg") top center no-repeat;
}

.member-centre .tool-tip .tool-tip-content:hover:after {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 12px;
  color: #dedede;
  content: attr(data-tooltip);
  position: absolute;
  white-space: pre-line;
  background: #25282e;
  padding: 8px 12px;
  color: #ffffff;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  font-family: 'Open Sans', 'Open Sans', Arial, Helvetica, Verdana sans-serif;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 8px;
  margin-top: -3px;
  min-width: 280px;
  left: -120px;
  text-align: left;
  bottom: 18px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .member-centre .tool-tip {
    display: none;
  }
}

.member-centre .btn-tool-tipped .tool-tip {
  color: inherit;
}

.member-centre .btn-tool-tipped:hover .tool-tip .tool-tip-content {
  background: url("/img/arrow_tool-tip.svg") top center no-repeat;
}

.member-centre .btn-tool-tipped:hover .tool-tip .tool-tip-content:after {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 12px;
  color: #dedede;
  content: attr(data-tooltip);
  position: absolute;
  white-space: pre-line;
  background: #25282e;
  padding: 8px 12px;
  color: #ffffff;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  font-family: 'Open Sans', 'Open Sans', Arial, Helvetica, Verdana sans-serif;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 8px;
  margin-top: -3px;
  min-width: 250px;
  left: -120px;
  text-align: left;
  bottom: 18px;
  z-index: -1;
}

/************************************************
    Accordions
************************************************/
.question {
  border-bottom: 1px solid #dedede;
  padding: 16px;
  padding-left: 64px;
  position: relative;
  width: 100%;
}

.question:first-child {
  border-top: none;
}

.question:last-child {
  border-bottom: none;
}

.question input[type="checkbox"] {
  display: none;
}

.question .question__heading {
  color: #25282e;
  cursor: pointer;
  font-size: 20px;
  margin: 8px 0;
  text-transform: none;
}

.question .question__heading .question__toggle {
  background: #d5e8ee;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  height: 40px;
  left: 0;
  margin: 0;
  position: absolute;
  top: 16px;
  width: 40px;
  transition: background 0.3s ease;
}

.question .question__heading .question__toggle:after {
  background: url("/img/arrow_white_right.svg") center center no-repeat;
  content: '';
  display: inline-block;
  height: 40px;
  width: 40px;
  margin: auto;
  transition: all 0.3s ease;
}

.question .question__content {
  display: none;
  transition: all 0.3s ease;
}

.question input[type="checkbox"]:checked + label .question__toggle {
  background: #74b2c7;
  transition: background 0.3s ease;
}

.question input[type="checkbox"]:checked + label .question__toggle:after {
  transform: rotate(90deg);
}

.question input[type="checkbox"]:checked + label + .question__content {
  display: block;
  transition: all 0.3s ease;
}

/** Home Page ***/
#logos {
  display: block;
  margin: 32px 0;
  width: 100%;
}

/* Download the App Section */
section.download-app {
  background: url("/img/bkgd_download-app.png") left bottom no-repeat;
  background-size: cover;
  overflow: hidden;
  /*padding-bottom:0;*/
}

section.download-app .download-app__button {
  display: block;
}

section.download-app .download-app__button:first-child {
  padding-left: 0;
}

section.download-app .download-app__button:last-child {
  padding-right: 0;
}

section.download-app .download-app__button > img {
  display: block;
  width: 100%;
}

section.download-app .download-app__image {
  position: absolute;
  right: -64px;
  top: 0;
}

/*** Business Landing Page ***/
.intro--business img {
  display: block;
  margin: auto;
  margin-bottom: 32px;
  margin-top: 32px;
}

#business-page__nav ul {
  list-style: none;
  margin: 0 auto;
  padding-left: 0;
  padding-top: 20px;
  width: 712px;
}

#business-page__nav ul li {
  display: block;
  float: left;
  margin-left: 40px;
  padding-left: 0;
  position: relative;
}

#business-page__nav ul li:first-child {
  margin-left: 0;
}

#business-page__nav ul li:first-child a {
  bottom: 0;
  display: block;
  float: left;
  position: relative;
  transition: all 0.3s ease-in-out;
  text-align: center;
  width: 112px;
}

#business-page__nav ul li:first-child a:hover {
  bottom: 12px;
  transition: all 0.3s ease-in-out;
}

/* Business Feature */
section.feature {
  margin-bottom: -16px;
  overflow: hidden;
  padding: 200px 0 0 0;
  position: relative;
}

section.feature #feature--1 .feature__promo {
  top: -150px;
  width: 140%;
}

section.feature#feature--5 {
  margin-bottom: 0;
}

section.feature#feature--2, section.feature#feature--4 {
  padding-top: 120px;
}

section.feature#feature--2 .feature__promo, section.feature#feature--4 .feature__promo {
  left: -120px;
  max-height: 650px;
  top: -120px;
  width: auto;
}

section.feature .col-md-6 {
  padding: 0;
}

section.feature .col-md-6 .feature__icon {
  height: 80px;
  margin-bottom: 16px;
  width: 80px;
}

section.feature .col-md-6 .feature__promo {
  position: relative;
  top: -50px;
  width: 150%;
}

section.feature .col-md-6 .feature__promo.right {
  left: 80px;
}

section.feature .col-md-6 .feature__promo.left {
  left: -80%;
}

/*** Support ***/
.questions {
  padding-bottom: 16px;
  padding-top: 16px;
}

/*** Terms and Conditions Page ***/
.terms-conditions-page article {
  padding-bottom: 16px;
  padding-top: 16px;
}

/*** Error Pages ***/
#error-content {
  display: block;
  margin: auto;
  max-width: 800px;
}

#error-content #error-content__title {
  margin-bottom: 0;
  text-align: center;
}

#error-content #error-content__image {
  display: block;
  margin: 0 auto;
  max-width: 800px;
  width: 90%;
}

#error-content #error-content__message {
  margin-bottom: 64px;
  margin-top: 0;
}

/*** Media Page ***/
#contact-pr {
  background-color: #d5e8ee;
  padding: 32px 0;
}

#contact-pr h6 {
  display: block;
  margin: auto;
  text-align: center;
}

#contact-pr h6 span {
  margin-right: 32px;
}

#contact-pr h6 span:last-child {
  margin-right: 0;
}

#contact-pr h6 span > i {
  color: #787878;
}

@media (max-width: 640px) {
  #contact-pr h6 {
    text-align: left;
  }
}

#contact-pr .phone {
  background: url("/img/icons/icon_phone.png") no-repeat left center;
  display: inline-block;
  padding: 15px 60px 15px 60px;
}

#contact-pr .email {
  background: url("/img/icons/icon_email.png") no-repeat left center;
  display: inline-block;
  padding: 15px 0 15px 60px;
}

/* Brand Colours */
#brand-colours {
  margin-bottom: 32px;
}

#brand-colours .brand-colour {
  border-radius: 4px;
  color: #ffffff;
  font-size: 20px;
  margin: 8px 0;
  padding-bottom: 32px;
  padding-top: 32px;
  text-align: center;
}

#brand-colours .brand-colour.primary-colour {
  background: #ee5a40;
}

#brand-colours .brand-colour.secondary-colour {
  background: #74b2c7;
}

#brand-colours .brand-colour.tertiary-colour-1 {
  background: #2c7b95;
}

#brand-colours .brand-colour.tertiary-colour-2 {
  background: #478fa7;
}

#brand-colours .brand-colour.tertiary-colour-3 {
  background: #d5e8ee;
  color: #25282e;
}

#brand-colours #brand-colours .brand-colour #goody #more-goodies {
  background-color: #dedede;
  background-size: cover;
}

#goody #more-goodies .more-goodies__text {
  margin-bottom: 40px;
}

#goody #more-goodies .more-goodies__text strong {
  color: #868686;
  font-size: 1.2em;
  line-height: 1.45em;
}

#goody #more-goodies .more-goodies_promo {
  position: relative;
}

#goody #more-goodies .ipad-slider {
  background: url("/img/slider-bkgd_more-goodies.png") no-repeat center center;
  display: block;
  float: none;
  height: 500px;
  margin: auto;
  overflow: auto;
  position: relative;
  width: 700px;
}

#goody #more-goodies .ipad-slider .slides {
  display: block;
  position: absolute;
  overflow: hidden;
  bottom: 78px;
  left: 86px;
  list-style: none;
  margin: 0;
  padding: 0;
  right: 91px;
  top: 29px;
}

#goody #more-goodies .ipad-slider .slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  float: left;
  height: 100%;
  width: 100%;
}

#goody #more-goodies .ipad-slider .slide#friends-with-benefits {
  background-image: url("/img/white-label_friends-with-benefits.jpg");
}

#goody #more-goodies .ipad-slider .slide#mccafe {
  background-image: url("/img/white-label_mccafe.jpg");
}

#goody #more-goodies .card--friends-with-benefits {
  bottom: 30px;
  height: 250px;
  left: 0;
  position: absolute;
}

/* CHECK: Simplify this section */
#goody section#case-studies {
  padding: 0;
  position: relative;
}

#goody section#case-studies .slider {
  background: #ffffff;
  box-sizing: content-box;
  height: 600px;
  overflow: auto;
  padding: 0 0 150px 0;
  position: relative;
  width: 100%;
  z-index: 0;
}

#goody section#case-studies .slider .slides {
  height: 100%;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 0;
}

#goody .case-study {
  background-image: url("/img/covers/sugarcard-04.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  z-index: 50;
}

#goody section#case-studies .slider .slide {
  float: left;
}

#goody section#case-studies .slider .slide .container {
  height: 100%;
  position: relative;
}

#goody .case-study#como-street {
  background-image: url("/img/case-study_como-street.jpg");
}

#goody .case-study#zarbo {
  background-image: url("/img/case-study_zarbo.jpg");
}

#goody .case-study#antidote {
  background-image: url("/img/case-study_antidote.jpg");
}

#goody section#case-studies .case-study .case-study__content {
  display: block;
  margin-top: -15%;
  position: absolute;
  text-align: center;
  top: 50%;
  z-index: 999;
}

#goody .case-study quote,
#goody .case-study .case-study__company {
  color: #ffffff;
  text-align: center;
}

#goody .case-study quote {
  background: url("/img/icon_quote.png") left top no-repeat;
  display: block;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.35em;
  padding: 50px;
  padding-bottom: 20px;
}

#goody .case-study .case-study__company {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-transform: uppercase;
}

#goody .case-study .case-study__content .button {
  padding-left: 36px;
  position: relative;
}

#goody .case-study .case-study__content .button__arrow {
  font-weight: bold;
  left: -6px;
  opacity: 0;
  position: relative;
  transition: all 0.3s ease;
}

#goody .case-study .case-study__content .button:hover .button__arrow {
  left: 6px;
  opacity: 1;
  transition: all 0.3s ease;
}

#goody .case-study .case-study__overlay {
  background: rgba(1, 1, 1, 0.25);
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 100;
}

#goody section#case-studies .slider .prev,
#goody section#case-studies .slider .next {
  background-color: rgba(255, 255, 255, 0);
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: block;
  height: 80px;
  margin-top: -115px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: all 0.4s ease;
  width: 80px;
}

#goody section#case-studies .slider .prev:hover,
#goody section#case-studies .slider .next:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

#goody section#case-studies .slider .prev {
  left: 30px;
  background-image: url("/img/arrow_left_large.png");
}

#goody section#case-studies .slider .next {
  right: 30px;
  background-image: url("/img/arrow_right_large.png");
}

#goody section#case-studies .slider:hover .prev,
#goody section#case-studies .slider:hover .next {
  opacity: 1;
  transition: opacity 0.4s ease;
}

#goody section#case-studies ol {
  z-index: 999;
  list-style-type: none;
  margin: auto;
  padding: 0;
  position: relative;
  width: 600px;
}

#goody section#case-studies ol::after {
  content: "";
  display: table;
  clear: both;
  z-index: 0;
}

#goody section#case-studies ol li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #ffffff;
  cursor: pointer;
  display: block;
  float: left;
  height: 130px;
  margin-bottom: 10px;
  margin-left: 40px;
  margin-top: 10px;
  position: relative;
  text-align: center;
  width: 160px;
  z-index: 900;
  text-indent: 300%;
  white-space: nowrap;
}

#goody section#case-studies ol li.active::before {
  content: "";
  background: url("/img/triangle_white_up.png") center top no-repeat;
  display: inline-block;
  height: 16px;
  width: 32px;
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -16px;
}

#goody section#case-studies ol li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
}

#goody section#case-studies ol li.active::after,
#goody section#case-studies ol li:hover::after {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
}

#goody section#case-studies ol li:nth-child(1) {
  background-image: url("/img/logo_como-street.png");
  margin-left: 0;
}

#goody section#case-studies ol li:nth-child(1).active::after,
#goody section#case-studies ol li:nth-child(1):hover::after {
  background-image: url("/img/logo_como-street_hover.png");
}

#goody section#case-studies ol li:nth-child(2) {
  background-image: url("/img/case-study-logo_zarbo.png");
}

#goody section#case-studies ol li:nth-child(2).active::after,
#goody section#case-studies ol li:nth-child(2):hover::after {
  background-image: url("/img/case-study-logo_zarbo_hover.png");
}

#goody section#case-studies ol li:nth-child(3) {
  background-image: url("/img/logo_antidote.png");
}

#goody section#case-studies ol li:nth-child(3).active::after,
#goody section#case-studies ol li:nth-child(3):hover::after {
  background-image: url("/img/logo_antidote_hover.png");
}

/*** Referral Page ***/
#referral-page .referral-details {
  margin-top: 32px;
}

#referral-page .information-panel {
  margin-bottom: 40px;
}

#referral-page .information-panel img {
  width: 100%;
}

@media (max-width: 1024px) {
  #referral-page .information-panel {
    margin-top: 32px;
  }
}

/*** Pricing Page ***/
#page--pricing #banner {
  background: #74b2c7 url("/img/banner_pricing.png") 30% 120px no-repeat;
  position: relative;
  width: 100%;
}

#page--pricing #banner #banner__content {
  position: relative;
}

#page--pricing #banner #banner__content .banner__content-text {
  padding-left: 50%;
}

#page--pricing #banner #banner__content .banner__content-text h1 {
  text-align: left;
}

/*** Price Overview ***/
#page--pricing #price-overview {
  margin: auto;
  margin-top: -64px;
  padding-top: 0;
  width: 85%;
  z-index: 100;
}

#page--pricing #price-overview h3 {
  margin-top: 32px;
}

#page--pricing #price-overview ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#page--pricing #price-overview ul li {
  text-align: center;
}

#page--pricing .price-breakdown__section ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#page--pricing #price-overview .price-category {
  padding: 0 8px;
  text-align: center;
}

#page--pricing #price-overview .price-category__header {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
}

#page--pricing #price-overview .price-category__header h3 span {
  font-size: 70px;
  font-weight: 700;
}

#page--pricing #price-overview .price-category__header h3 span sup {
  font-size: 24px;
  top: -1.5em;
}

#page--pricing #price-overview .price-category__header h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}

#page--pricing #price-overview .price-category__header .button {
  padding: 12px 26px;
}

#page--pricing #price-overview .price-category__content {
  background: #EDF5FA none repeat scroll 0% 0%;
  min-height: 200px;
  padding: 20px 20px 30px;
}

#page--pricing #price-breakdown__list-header {
  padding-left: 50%;
}

#page--pricing #price-breakdown__list-header ul {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
}

#page--pricing #price-breakdown__list-header ul li {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  box-sizing: border-box;
  display: block;
  float: left;
  padding: 20px 0;
  position: relative;
  width: 33%;
}

#page--pricing #price-breakdown__list-header ul li.favourite {
  padding: 0;
  z-index: 300;
}

#page--pricing #price-breakdown__list-header ul li.favourite .favourite__content {
  background: rgba(255, 255, 255, 0.4);
  height: 112%;
  left: -5%;
  position: relative;
  top: -12%;
  width: 110%;
}

#page--pricing #price-breakdown__list-header ul li.favourite .favourite__content p {
  background: #25282e;
  color: #ffffff;
  font-size: 0.85em;
  font-weight: 700;
  margin-bottom: 6px;
  padding: 8px 0;
  text-align: center;
  text-transform: uppercase;
}

#page--pricing #price-breakdown__list-header ul li h3 {
  color: #25282e;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.8em;
  text-align: center;
}

#page--pricing #price-breakdown__list-header ul li h3 span {
  font-size: 2.5em;
  font-weight: 700;
}

#page--pricing #price-breakdown__list-header ul li h3 span sup {
  font-size: 24px;
}

#page--pricing #price-breakdown__list-header ul li .button--join-today {
  bottom: -20px;
  left: 50%;
  margin-left: -63px;
  position: absolute;
  z-index: 600;
}

#page--pricing .price-breakdown__section {
  border-top: 6px solid #ffffff;
  display: block;
  position: relative;
}

#page--pricing .price-breakdown__section#loyalty-programme {
  background: #edf5fa;
  border-top: none;
}

#page--pricing .price-breakdown__section#marketing-suite {
  background: #daf1fb;
}

#page--pricing .price-breakdown__section#premium {
  background: #b7d7e5;
}

#page--pricing .price-breakdown__section .price-breakdown__heading {
  font-size: 1.5em;
  font-weight: 400;
  left: -140px;
  position: absolute;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  text-align: right;
  top: 110px;
  width: 230px;
}

#page--pricing .price-breakdown__section#loyalty-programme .price-breakdown__heading {
  color: #dae1e6;
}

#page--pricing .price-breakdown__section#marketing-suite .price-breakdown__heading {
  color: #85d2f2;
}

#page--pricing .price-breakdown__section#premium .price-breakdown__heading {
  color: #70b0cc;
}

#page--pricing .price-breakdown__section#loyalty-programme ul {
  border-left: 8px solid #dae1e6;
}

#page--pricing .price-breakdown__section#marketing-suite ul {
  border-left: 8px solid #85d2f2;
}

#page--pricing .price-breakdown__section#premium ul {
  border-left: 8px solid #70b0cc;
}

#page--pricing .price-breakdown__section#additional ul {
  border-left: 8px solid #25282e;
}

#page--pricing .price-breakdown__section ul li {
  border-top: 3px solid #ffffff;
  clear: both;
}

#page--pricing .price-breakdown__section#additional ul li {
  border-top: 3px solid #e9f0f5;
  clear: both;
}

#page--pricing .price-breakdown__section ul li:first-child {
  border-top: 0 !important;
}

#page--pricing .price-breakdown__section ul li .column {
  box-sizing: border-box;
  display: block;
  float: left;
}

#page--pricing .price-breakdown__section ul li .details-column {
  padding: 16px 20px;
  width: 50%;
}

#page--pricing .price-breakdown__section ul li .details-column h5 {
  color: #25282e;
  font-size: 1.15em;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: none;
}

#page--pricing .price-breakdown__section ul li .check-column {
  color: #ee5a40;
  font-weight: 600;
  height: 100%;
  min-height: 96px;
  padding: 19px 20px;
  text-align: center;
  width: 16.5%;
}

#page--pricing .price-breakdown__section ul li .check-column.checked {
  background: url("/img/icon_pricing-check.png") center center no-repeat;
}

#page--pricing .price-breakdown__section#additional ul li .check-column {
  min-height: 0;
  height: auto;
}

#goody #faq--pricing {
  background: #edf5fa;
}

#goody #faq--pricing h4 {
  color: #25282e;
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 16px;
  padding-left: 16px;
}

#goody #faq--pricing article {
  padding: 16px;
}

#goody #faq--pricing .question {
  border-bottom: 1px solid #e4ebf0;
  padding: 16px;
  padding-left: 60px;
  position: relative;
  width: 100%;
}

#goody #faq--pricing .question label {
  font-size: 18px;
  line-height: 1.4em;
}

#goody #faq--pricing .question__heading {
  color: #25282e;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  margin: 10px 0;
  text-transform: none;
}

#goody #faq--pricing .question .question__toggle {
  background: #ced5d9;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  height: 30px;
  left: 8px;
  margin: 0;
  position: absolute;
  top: 26px;
  width: 30px;
  transition: background 0.3s ease;
}

#goody #faq--pricing .question input[type="checkbox"]:checked + label .question__toggle {
  background: #f16b55;
  transition: background 0.3s ease;
}

#goody #faq--pricing .question .question__toggle::after {
  background: url("/img/toggle-arrow.png") center center no-repeat;
  content: '';
  display: inline-block;
  height: 30px;
  width: 30px;
  margin: auto;
  transition: all 0.3s ease;
}

#goody #faq--pricing .question input[type="checkbox"]:checked + label .question__toggle::after {
  transform: rotate(90deg);
}

#goody #faq--pricing .question .question__content {
  display: none;
  transition: all 0.3s ease;
}

#goody #faq--pricing .question input[type="checkbox"]:checked + label + .question__content {
  display: block;
  transition: all 0.3s ease;
}

#goody #faq--pricing .question.closed .question__content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3em;
  /*padding:10px 0;*/
}

#goody #faq--pricing .question input[type="checkbox"] {
  display: none;
}

#goody #faq--pricing #goody-enterprise p {
  line-height: 1.4em;
}

#goody #faq--pricing .enterprise-logos {
  padding: 18px 0 14px;
}

#goody #faq--pricing .enterprise-logo {
  display: block;
  float: left;
  padding: 20px 0;
}

#goody #faq--pricing .enterprise-logo:nth-child(odd) {
  padding-right: 16px;
}

#goody #faq--pricing .enterprise-logo:nth-child(even) {
  padding-left: 16px;
}

#goody #faq--pricing .enterprise-logo img {
  display: block;
  max-width: 300px;
  width: 100%;
}

.view--verification#app-verification-success .btn,
.view--password#app-verification-success .btn {
  float: none;
  margin: auto;
  max-width: 250px;
}

.view--verification .download-app__buttons,
.view--password .download-app__buttons {
  margin-top: 32px;
}

.view--verification #logos,
.view--password #logos {
  margin: 32px auto;
  max-width: 550px;
}

@media (max-width: 640px) {
  .view--verification h2,
  .view--password h2 {
    border-bottom: 1px solid #dedede;
    margin-bottom: 12px;
    margin-top: 0px;
    padding-bottom: 16px;
  }
}

/*** About Page ***/
#about-us-video {
  margin: auto;
  max-width: 100%;
}

#goody-journey article {
  padding-bottom: 32px;
}

#goody-journey article p :first-child {
  padding-top: 40px;
}

#goody-journey .goody-journey__image {
  margin-top: -40px;
  opacity: 0.95;
  position: relative;
}

#goody-journey .goody-journey__image.left {
  max-width: 700px;
  right: 30%;
  width: 120%;
}

#goody-journey .goody-journey__image.right {
  left: 30%;
  max-width: 500px;
  width: 100%;
}

/*** Merchant Pages ***/
#goody #cover {
  padding: 0;
}

#goody #cover img {
  width: 100%;
}

#goody #intro {
  padding: 0;
  position: relative;
}

#goody #intro__merchant-title {
  padding-bottom: 0;
  padding-top: 50px;
}

#goody #cover + #intro #intro__merchant-title {
  padding-top: 0;
  padding-bottom: 0;
}

#goody #intro .merchant-logo {
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 4px solid #ffffff;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  display: block;
  height: 130px;
  margin: 0 auto;
  padding: 30px;
  width: 230px;
}

#goody #cover + #intro .merchant-logo {
  left: 50%;
  margin-left: -130px;
  position: absolute;
  top: -65px;
}

#goody #intro h1 {
  font-weight: 300;
  margin-top: 0;
}

#goody #cover + #intro .merchant-logo + h1 {
  margin-left: 270px;
  margin-top: 40px;
}

#goody #intro .sub-heading {
  padding-top: 14px;
}

#goody #intro .sub-heading a {
  background-position: left 0;
  background-repeat: no-repeat;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding-left: 45px;
}

#goody #intro .sub-heading a:hover {
  background-position: left -38px;
}

#goody #intro .sub-heading a.merchant-website {
  background-image: url(/img/icons/link-icon-sprite_website.png);
}

#goody #intro .sub-heading a.merchant-facebook {
  background-image: url(/img/icons/link-icon-sprite_facebook.png);
}

#goody #intro .sub-heading a.merchant-website + a.merchant-facebook {
  margin-left: 40px;
}

#goody #intro #intro__merchant-description {
  clear: both;
  padding: 70px 0 0 0;
}

#goody #cover + #intro + section {
  padding-top: 70px;
}

#goody #merchant-page #contact-info ul {
  list-style-type: none;
  margin: 0;
  padding: 0 20px 12px 0;
}

#goody #merchant-page .contact-info__item {
  clear: both;
  min-height: 32px;
  margin: 16px 0;
  position: relative;
}

#goody #merchant-page .contact-info__item icon {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 32px;
  left: 0;
  margin-right: 16px;
  position: absolute;
  top: -4px;
  width: 32px;
}

#goody #merchant-page .contact-info__open-hours icon {
  background-image: url("/img/icons/icon_hours_dark.png");
}

#goody #merchant-page .contact-info__phone icon {
  background-image: url("/img/icons/icon_phone_dark.png");
}

#goody #merchant-page .contact-info__email icon {
  background-image: url("/img/icons/icon_email_dark.png");
}

#goody #merchant-page .contact-info__address icon {
  background-image: url("/img/icons/icon_location_dark.png");
}

#goody #merchant-page .contact-info__item icon + span,
#goody #merchant-page .contact-info__item icon + a {
  display: inline-block;
  line-height: 24px;
  margin-left: 50px;
}

#goody #merchant-page .contact-info__open-hours > span {
  float: left;
}

#goody #merchant-page .contact-info__open-hours .button--toggle {
  background: url("/img/arrow_down_red.png") center center no-repeat;
  background-size: contain;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 32px;
  margin-left: 10px;
  width: 20px;
}

#goody #merchant-page #contact-info ul ul {
  margin-left: 52px;
  padding-top: 0;
}

#goody #merchant-page #contact-info ul ul li {
  line-height: 26px;
}

#goody #merchant-page #contact-info ul ul .today {
  font-weight: bold;
}

#goody #merchant-page #contact-info__map {
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  max-width: 100%;
}

#goody #merchant-page #contact-info__map img {
  width: 100%;
}

#goody #merchant-page #rewards__container {
  background: #ecf4f9;
  padding: 30px 0;
}

#goody #merchant-page #rewards h4 {
  color: #b6bbbf;
  font-size: 1em;
  font-weight: 700;
  margin-left: 60px;
  text-transform: uppercase;
}

#goody #merchant-page #rewards__list {
  list-style-type: none;
  margin: 0;
  padding: 0 0 12px 0;
}

#goody #merchant-page #rewards__list .reward {
  border-top: 4px solid #ffffff;
  color: #25282e;
  display: block;
  font-size: 17px;
  padding: 25px 50px 5px;
}

#goody #merchant-page #rewards__list .reward:first-child {
  border-top: none;
}

#goody #merchant-page #rewards__list .reward .reward__points {
  float: left;
  margin-right: 30px;
  position: relative;
  text-align: center;
  top: -6px;
  width: 90px;
}

#goody #merchant-page #rewards__list .reward__points span {
  color: #b6bbbf;
  display: inline-block;
  font-size: 0.9em;
  font-weight: 400;
  width: 100%;
}

#goody #merchant-page #rewards__list .reward__points strong {
  font-size: 42px;
  font-weight: bolder;
  font-weight: 700;
  line-height: 20px;
}

#goody #merchant-page #rewards__list .reward .reward__description {
  display: inline;
  float: none;
  font-weight: 400;
  line-height: 26px;
}

#goody #merchant-page #rewards__list .reward.suggest-more .reward__points {
  background: url("/img/icons/icon_reward_light.png");
  height: 60px;
}

#goody #merchant-page #rewards__list .reward.suggest-more .reward__description {
  color: #b6bbbf;
}

/*** Custom Styles ***/
body {
  background: #ffffff;
  color: #333840;
  font-family: "Open Sans", Open Sans, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  -webkit-text-size-adjust: 100%;
}

@media screen and (min-device-width: 640px) {
  body {
    /* Tablet */
    font-size: 14px;
  }
}

@media screen and (max-device-width: 1024px) {
  body {
    /* Small Desktop */
    font-size: 14px;
  }
}

@media screen and (min-device-width: 1232px) {
  body {
    /* Large Desktop */
    font-size: 16px;
  }
}

/*** Media Queries ***/
@media (max-width: 1024px) {
  #business-page__nav,
  #case-studies,
  #button--to-top.show {
    display: none !important;
  }
  #goody section.feature {
    margin-bottom: 0;
    padding: 30px 0 !important;
  }
}

@media (min-width: 1024px) {
  .container {
    width: 100%;
    max-width: 640px;
  }
}

@media (min-width: 1024px) {
  .container {
    width: 100%;
    max-width: 970px;
  }
}

@media (min-width: 1232px) {
  .container {
    width: 100%;
    max-width: 1170px;
  }
}

@media (max-width: 1080px) {
  /* Pricing Page */
  #page--pricing #banner {
    background-position: -200px 120px;
  }
  #goody .business-form .city__store {
    display: none;
  }
  #goody section#pricing .benefits {
    width: 100%;
  }
  #goody #more-goodies {
    padding-top: 50px;
  }
  #goody #merchant-page h1 {
    font-size: 3em;
    line-height: 1.2em;
    margin-bottom: 14px;
  }
  #goody #merchant-page #contact-info {
    padding: 0;
  }
  #goody #merchant-page #contact-info__list,
  #goody #merchant-page #contact-info__map {
    float: left;
    width: 50%;
  }
  #goody #merchant-page #rewards {
    clear: both;
    margin-top: 40px;
    padding: 0;
  }
  #goody #cover + #intro .merchant-logo + h1 {
    margin-top: 30px;
  }
  #goody #merchant-page .merchant-logo {
    height: 230px;
    width: 230px;
  }
  #goody #merchant-page #cover + #intro .merchant-logo {
    margin-left: -115px;
  }
  #goody #merchant-page h1 {
    font-size: 3em;
  }
  #goody #merchant-page #cover + #intro h1 {
    margin-top: 30px;
  }
  #goody #merchant-page .sub-heading {
    padding-top: 0;
  }
}

@media (max-width: 992px) {
  #goody section#case-studies .case-study .case-study__content {
    margin-top: -25%;
  }
  #goody section#case-studies .slider .prev,
  #goody section#case-studies .slider .next {
    top: 80%;
    height: 40px;
    width: 40px;
  }
  #goody section#case-studies .slider .prev {
    background-image: url("/img/arrow_left_small.png");
    left: 15px;
  }
  #goody section#case-studies .slider .next {
    background-image: url("/img/arrow_right_small.png");
    right: 15px;
  }
  #goody .view--verification .form-group .note {
    clear: both;
    margin-bottom: 20px;
    margin-left: 0;
    position: static;
    width: 100%;
  }
  #goody .view--verification .form-group .note::after {
    background-image: url("/img/triangle_note_top.png");
    height: 8px;
    top: 1px;
    left: 10%;
    margin-left: -9px;
    width: 19px;
  }
  #goody #goody-journey .goody-journey__part {
    padding-bottom: 0;
  }
  #goody #goody-journey .goody-journey__part p:first-child {
    padding-top: 0;
  }
  #goody #banner__content .banner__content-text {
    padding-left: 0px;
  }
  #page--pricing #banner {
    background-color: #74b2c7;
    background-image: none;
    height: auto;
    padding: 0;
    position: relative;
    width: 100%;
  }
  #goody #page--pricing #banner__content {
    top: 0;
    padding-top: 60px;
  }
  #goody #page--pricing #banner__content .banner__content-text {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  /* Business Form*/
  #goody .business-form__field {
    margin-bottom: 0;
  }
  h2.center-sm {
    text-align: center;
  }
}

/* iPad portrait */
@media (max-width: 767px) {
  p.summary {
    text-align: left;
  }
  /* Card Verification Success */
  .view--verification .intro {
    margin: auto;
    padding-top: 8px;
  }
  .view--verification .intro p {
    max-width: 100%;
    text-align: center;
  }
  .view--verification #btn-container--app-store {
    padding: 8px 0 0 0;
    width: 410px;
    margin: auto;
  }
  #goody #business-page__nav {
    padding-bottom: 50px;
  }
  #goody #business-page__nav ul {
    width: 420px;
  }
  #goody #business-page__nav ul li:nth-child(4) {
    clear: both;
    margin-left: 80px;
  }
  #goody #business-page__nav ul li:nth-child(4),
  #goody #business-page__nav ul li:nth-child(5) {
    margin-top: 30px;
  }
  #goody .case-study quote {
    font-size: 3rem;
  }
  #goody #intro .merchant-logo {
    height: 180px;
    width: 180px;
  }
  #goody #merchant-page #cover + #intro .merchant-logo {
    margin-left: -90px;
  }
  #goody #intro .merchant-logo + h1 {
    margin-top: 36px;
  }
  #goody #cover + #intro .merchant-logo + h1 {
    margin: 26px 0 0 210px;
  }
  #goody #intro .merchant-logo + h1 + .sub-heading {
    margin-left: 210px;
    padding-top: 8px;
  }
  #goody #intro .merchant-logo + h1 + .sub-heading a.merchant-facebook {
    margin-left: 30px;
  }
  #goody #cover + #intro #intro__merchant-title,
  #goody #intro #intro__merchant-title {
    padding-bottom: 10px;
    padding-top: 30px;
  }
  #goody #merchant-page h1 {
    margin-top: 30px;
    text-align: center;
  }
  #goody #merchant-page #cover + #intro h1 {
    margin-top: 136px;
  }
  #goody #merchant-page .sub-heading {
    text-align: center;
  }
  #goody #intro #intro__merchant-description {
    clear: both;
    padding: 40px 0 0 0;
  }
  #goody #intro + section {
    padding-top: 40px;
  }
}

@media (max-width: 690px) {
  /* Pricing Page */
  #goody section#case-studies ol {
    width: 300px;
  }
  #goody section#case-studies ol li {
    margin-left: 10px;
    width: 90px;
  }
  #goody section#case-studies ol li:nth-child(1) {
    margin-left: 0;
  }
  #goody #merchant-page #contact-info__list,
  #goody #merchant-page #contact-info__map {
    width: 100%;
  }
  #goody #intro + section {
    padding-top: 20px;
  }
}

@media (max-width: 568px) {
  #goody section.download-app .goody-list li.col-xs-6 {
    width: 100%;
  }
  /* App Verification Success */
  .view--verification .logos .col-md-3 {
    width: 50%;
    float: left;
  }
  /* Card Verification Success */
  .view--verification #btn-container--app-store {
    width: 300px;
  }
  .view--verification #btn-container--app-store a {
    height: 50px;
    width: 145px;
  }
  #goody #business-page__nav {
    display: none;
  }
  #goody #intro__merchant-title {
    padding-bottom: 40px;
  }
  #goody #intro .merchant-logo + h1 {
    margin-left: 0;
    padding-top: 120px;
    text-align: center;
  }
  #goody #cover + #intro .merchant-logo + h1 {
    margin-left: 0;
    padding-top: 60px;
  }
  #goody #intro .merchant-logo + h1 + .sub-heading {
    margin-left: 0;
    padding-top: 14px;
    text-align: center;
  }
  #goody #cover + #intro .merchant-logo + h1 + .sub-heading {
    margin-left: 0;
  }
  #goody #merchant-page #rewards h4 {
    margin-left: 36px;
  }
  #goody #merchant-page #rewards__list .reward {
    padding: 20px 16px;
  }
  #goody #merchant-page #rewards__list .reward .reward__points {
    margin-bottom: 15px;
    margin-right: 14px;
    top: 4px;
  }
  #goody #cover + #intro #intro__merchant-title {
    padding-bottom: 30px;
  }
}

@media (max-width: 480px) {
  #goody #business-page #button--to-top,
  #goody #business-page #button--to-top.show {
    display: none !important;
  }
  #goody .intro h5 {
    margin-bottom: 10px;
  }
  #goody .intro img {
    margin-top: 40px;
    margin-bottom: 24px;
  }
  #goody .intro .column:first-child img {
    margin-top: 0;
  }
  #goody section.business-form.night {
    padding-top: 30px;
  }
  #goody section.business-form form {
    margin-top: 20px;
  }
  #goody .business-form__field {
    margin-bottom: 8px;
  }
  #goody section.business-form form input {
    font-size: 15px;
    line-height: 18px;
    margin: 4px 0;
  }
  #goody section#pricing,
  #goody section#case-studies {
    display: none;
  }
  #goody #more-goodies .more-goodies__text {
    margin-bottom: 0;
  }
  #goody #more-goodies .more-goodies__text strong {
    font-size: 1em;
    line-height: 1.3em;
  }
  #goody #button--to-top {
    display: none;
  }
  #brand-colours .group > div {
    width: 100%;
    padding: 1% 0;
  }
  #brand-colours .group > div .brand-colour {
    padding: 20px 0;
  }
  #goody .question__heading {
    font-size: 16px;
  }
  #goody #pr-page h2 {
    margin-bottom: 20px;
    text-align: left;
  }
  #goody #pr-page h4 {
    font-size: 16px;
  }
  ul.icon-link-list, ul.link-list {
    margin-bottom: 20px;
  }
  #goody #merchant-page #rewards__list .reward .reward__description {
    line-height: 20px;
  }
  #goody #intro .sub-heading a.merchant-facebook {
    margin-left: 10px;
  }
}

@media (max-width: 414px) {
  #goody section#case-studies .case-study .case-study__content {
    margin-top: -55%;
  }
  #goody .case-study quote {
    font-size: 2.3rem;
  }
  #goody .case-study .case-study__company {
    font-size: 1.2rem;
  }
}

@media (max-width: 375px) {
  .view--verification {
    padding-top: 35px;
  }
  .view--verification form {
    padding-top: 8px;
  }
  #goody-logo-header {
    display: none;
  }
}

@media (max-width: 321px) {
  #goody .business-form__submit .button {
    width: 100%;
  }
  #goody #support-page h3 {
    text-align: left;
  }
  #goody #support-page .question {
    padding-left: 60px;
  }
}

/*# sourceMappingURL=maps/main.css.map */
