@import url(https://fonts.googleapis.com/css?family=Rubik:400,500);@import url(https://fonts.googleapis.com/css?family=Lato);@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400);@charset "UTF-8";
button.close {
  opacity: 1; }

/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
@keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn); } }

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn); } }

.Select {
  position: relative; }
  .Select input::-webkit-contacts-auto-fill-button,
  .Select input::-webkit-credentials-auto-fill-button {
    display: none !important; }
  .Select input::-ms-clear {
    display: none !important; }
  .Select input::-ms-reveal {
    display: none !important; }
  .Select,
  .Select div,
  .Select input,
  .Select span {
    box-sizing: border-box; }
  .Select.is-disabled .Select-arrow-zone {
    cursor: default;
    pointer-events: none; }
  .Select.is-disabled > .Select-control {
    background-color: #f9f9f9; }
    .Select.is-disabled > .Select-control:hover {
      box-shadow: none; }
  .Select.is-searchable.is-open > .Select-control {
    cursor: text; }
  .Select.is-searchable.is-focused:not(.is-open) > .Select-control {
    cursor: text; }
  .Select.is-open > .Select-control {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: #fff;
    border-color: #b3b3b3 #ccc #d9d9d9; }
    .Select.is-open > .Select-control .Select-arrow {
      top: -2px;
      border-color: transparent transparent #999;
      border-width: 0 5px 5px; }
  .Select.is-focused > .Select-control {
    background: #fff; }
  .Select.is-focused:not(.is-open) > .Select-control {
    border-color: #08c #0099e6 #0099e6;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px -1px fade(#08c, 50%); }
  .Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
    padding-right: 42px; }
  .Select.has-value.Select--single > .Select-control .Select-value .Select-value-label,
  .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
    color: #333; }
  .Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
  .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
    cursor: pointer;
    text-decoration: none; }
    .Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover, .Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
    .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
    .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
      color: #08c;
      outline: none;
      text-decoration: underline; }
    .Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
    .Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
      background: #fff; }
  .Select.has-value.is-pseudo-focused .Select-input {
    opacity: 0; }
  .Select.is-open .Select-arrow,
  .Select .Select-arrow-zone:hover > .Select-arrow {
    border-top-color: #666; }
  .Select.Select--rtl {
    direction: rtl;
    text-align: right; }

.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%; }
  .Select-control:hover {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }
  .Select-control .Select-input:focus {
    outline: none;
    background: #fff; }

.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle; }
  .Select-input > input {
    width: 100%;
    background: none transparent;
    border: 0 none;
    box-shadow: none;
    cursor: default;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    outline: none;
    line-height: 17px;
    /* For IE 8 compatibility */
    padding: 8px 0 12px;
    /* For IE 8 compatibility */
    -webkit-appearance: none; }
    .is-focused .Select-input > input {
      cursor: text; }

.Select-control:not(.is-searchable) > .Select-input {
  outline: none; }

.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px; }

.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle; }

.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px; }
  .Select-clear-zone:hover {
    color: #D0021B; }

.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1; }

.Select--multi .Select-clear-zone {
  width: 17px; }

.Select--multi .Select-multi-value-wrapper {
  display: inline-block; }

.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left; }

.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px; }
  .Select--rtl .Select-arrow-zone {
    padding-right: 0;
    padding-left: 5px; }

.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative; }

@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes Select-animation-fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch; }

.Select-menu {
  max-height: 198px;
  overflow-y: auto; }

.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px; }
  .Select-option:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }
  .Select-option.is-selected {
    background-color: #f5faff;
    color: #333; }
  .Select-option.is-focused {
    background-color: #f2f9fc;
    color: #333; }
  .Select-option.is-disabled {
    color: #cccccc;
    cursor: default; }

.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px; }

.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0; }

.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px; }

.Select--multi.has-value .Select-input {
  margin-left: 5px; }

.Select--multi .Select-value {
  background-color: #f2f9fc;
  border-radius: 2px;
  border: 1px solid #c9e6f2;
  color: #08c;
  display: inline-block;
  font-size: 0.9em;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top; }

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle; }

.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px; }

.Select--multi a.Select-value-label {
  color: #08c;
  cursor: pointer;
  text-decoration: none; }
  .Select--multi a.Select-value-label:hover {
    text-decoration: underline; }

.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c9e6f2;
  padding: 1px 5px 3px; }
  .Select--multi .Select-value-icon:hover, .Select--multi .Select-value-icon:focus {
    background-color: #ddeff7;
    color: #0077b3; }
  .Select--multi .Select-value-icon:active {
    background-color: #c9e6f2; }

.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px; }

.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c9e6f2; }

.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333; }

.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3; }
  .Select--multi.is-disabled .Select-value-icon:hover, .Select--multi.is-disabled .Select-value-icon:focus, .Select--multi.is-disabled .Select-value-icon:active {
    background-color: #fcfcfc; }

@keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn); } }

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn); } }

h1, h2, h3, h4, h5 {
  font-family: sans-serif;
  color: #000;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 0.3em;
  text-transform: uppercase; }

/** Team page titles **/
h3.ticket__subtitle {
  display: none; }

h3.ticket__subtitle {
  display: none; }

body {
  background-image: linear-gradient(135deg, #e1e1e1, #feffff);
  background-repeat: repeat-x; }

.header {
  background: none; }

h1.page-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 300; }

p.form-widget__error-label {
  color: #fff !important;
  font-size: 13px;
  color: #fff !important;
  margin-bottom: 0;
  background: #ea5e5e;
  padding: 5px;
  border-radius: 5px;
  max-width: 660px;
  margin-top: 2px; }

.footer {
  background-color: #545454 !important;
  border-color: #485a5a;
  color: #fff;
  height: 60px; }

.footer__back-link {
  color: #fff; }

.ticketselector {
  margin-bottom: 12px; }

.eventarc-logo {
  background: url(/assets/img/ea_horiz_bw_135.png) no-repeat;
  background-size: contain;
  width: 135px;
  height: 40%; }
  @media (max-width: 767px) {
    .eventarc-logo {
      display: none; } }

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* =========================================================================
   Bootstrap
   ========================================================================= */
/*! 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; } }

* {
  box-sizing: border-box; }

*:before,
*:after {
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #337ab7;
  text-decoration: none; }
  a:hover, a:focus {
    color: #23527c;
    text-decoration: underline; }
  a:focus {
    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: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  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: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.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: 500;
  line-height: 1.1;
  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: #777777; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
  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: 10px;
  margin-bottom: 10px; }
  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: 36px; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 21px; } }

small,
.small {
  font-size: 85%; }

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: #777777; }

.text-primary {
  color: #337ab7; }

a.text-primary:hover,
a.text-primary:focus {
  color: #286090; }

.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: #337ab7; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090; }

.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: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }
  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: 20px; }

dt,
dd {
  line-height: 1.42857; }

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: 768px) {
  .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 #777777; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee; }
  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.42857;
    color: #777777; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: '\2014   \A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  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: '\A0   \2014'; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857; }

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: 3px;
  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: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  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: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1130px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .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: 15px;
  padding-right: 15px; }

.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: 768px) {
  .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: 992px) {
  .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: 1200px) {
  .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: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }
  .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.42857;
    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: 5px; }

.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: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 15px;
      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: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  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: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555; }

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  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: #eeeeee;
    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: 34px; }
  input[type="date"].input-sm,
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm
  input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg,
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg
  input[type="month"] {
    line-height: 46px; } }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label,
  .checkbox label {
    min-height: 20px;
    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: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px; }
  .form-control-static.input-lg, .form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0; }

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm {
  height: 30px;
  line-height: 30px; }

textarea.input-sm,
select[multiple].input-sm {
  height: auto; }

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px; }

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5; }

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

select.input-lg {
  height: 46px;
  line-height: 46px; }

textarea.input-lg,
select[multiple].input-lg {
  height: auto; }

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px; }

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.33333; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control {
    padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.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: 25px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  .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: 7px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after {
    clear: both; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  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: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus, .btn.focus {
    color: #333;
    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: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:focus, .btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c; }
  .btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
    .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: #333;
      background-color: #d4d4d4;
      border-color: #8c8c8c; }
  .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: #fff;
    border-color: #ccc; }
  .btn-default .badge {
    color: #fff;
    background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40; }
  .btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
    .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: #fff;
      background-color: #204d74;
      border-color: #122b40; }
  .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: #337ab7;
    border-color: #2e6da4; }
  .btn-primary .badge {
    color: #337ab7;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
    .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: #fff;
      background-color: #398439;
      border-color: #255625; }
  .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: #5cb85c;
    border-color: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #bbbbbb;
  border-color: #aeaeae; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #a2a2a2;
    border-color: #6f6f6f; }
  .btn-info:hover {
    color: #fff;
    background-color: #a2a2a2;
    border-color: #909090; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #a2a2a2;
    border-color: #909090; }
    .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: #fff;
      background-color: #909090;
      border-color: #6f6f6f; }
  .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: #bbbbbb;
    border-color: #aeaeae; }
  .btn-info .badge {
    color: #bbbbbb;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
    .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: #fff;
      background-color: #d58512;
      border-color: #985f0d; }
  .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: #f0ad4e;
    border-color: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
    .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: #fff;
      background-color: #ac2925;
      border-color: #761c19; }
  .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: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #337ab7;
  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: #23527c;
    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: #777777;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.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%; }

.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: 767px) {
  .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: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .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: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .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: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .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: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .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; } }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  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; }

.close {
  float: right;
  font-size: 21px;
  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; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }
  .breadcrumb > li {
    display: inline-block; }
    .breadcrumb > li + li:before {
      content: "/\A0";
      padding: 0 5px;
      color: #ccc; }
  .breadcrumb > .active {
    color: #777777; }

.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: 14px;
  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: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #333333;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  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: #337ab7; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777; }

.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: 12px;
  line-height: 1.42857;
  color: #777777;
  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: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  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: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus, .btn.focus {
    color: #333;
    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: #333;
  background-color: #fff;
  border-color: #ccc; }
  .btn-default:focus, .btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c; }
  .btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }
    .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: #333;
      background-color: #d4d4d4;
      border-color: #8c8c8c; }
  .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: #fff;
    border-color: #ccc; }
  .btn-default .badge {
    color: #fff;
    background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40; }
  .btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #286090;
    border-color: #204d74; }
    .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: #fff;
      background-color: #204d74;
      border-color: #122b40; }
  .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: #337ab7;
    border-color: #2e6da4; }
  .btn-primary .badge {
    color: #337ab7;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
    .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: #fff;
      background-color: #398439;
      border-color: #255625; }
  .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: #5cb85c;
    border-color: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #bbbbbb;
  border-color: #aeaeae; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #a2a2a2;
    border-color: #6f6f6f; }
  .btn-info:hover {
    color: #fff;
    background-color: #a2a2a2;
    border-color: #909090; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #a2a2a2;
    border-color: #909090; }
    .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: #fff;
      background-color: #909090;
      border-color: #6f6f6f; }
  .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: #bbbbbb;
    border-color: #aeaeae; }
  .btn-info .badge {
    color: #bbbbbb;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
    .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: #fff;
      background-color: #d58512;
      border-color: #985f0d; }
  .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: #f0ad4e;
    border-color: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
    .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: #fff;
      background-color: #ac2925;
      border-color: #761c19; }
  .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: #d9534f;
    border-color: #d43f3a; }
  .btn-danger .badge {
    color: #d9534f;
    background-color: #fff; }

.btn-link {
  color: #337ab7;
  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: #23527c;
    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: #777777;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.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%; }

.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; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  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;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  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: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 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; }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  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: 12px;
  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; }

.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; }

.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: #eeeeee; }
    .nav > li.disabled > a {
      color: #777777; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #777777;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #337ab7; }
  .nav .nav-divider {
    height: 1px;
    margin: 9px 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.42857;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #eeeeee #eeeeee #ddd; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #555555;
      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: #337ab7; }

.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: 768px) {
    .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: 768px) {
    .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: 20px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    content: " ";
    display: table; }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table; }

.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  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: 768px) {
    .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: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .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: 768px) {
    .navbar-static-top {
      border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 768px) {
    .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: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }
  @media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  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: 768px) {
    .navbar-toggle {
      display: none; } }

.navbar-nav {
  margin: 7.5px -15px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px; }
  @media (max-width: 767px) {
    .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: 20px; }
        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 768px) {
    .navbar-nav {
      float: left;
      margin: 0; }
      .navbar-nav > li {
        float: left; }
        .navbar-nav > li > a {
          padding-top: 15px;
          padding-bottom: 15px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  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: 8px;
  margin-bottom: 8px; }
  @media (min-width: 768px) {
    .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: 767px) {
    .navbar-form .form-group {
      margin-bottom: 5px; }
      .navbar-form .form-group:last-child {
        margin-bottom: 0; } }
  @media (min-width: 768px) {
    .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: 8px;
  margin-bottom: 8px; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: 10px;
    margin-bottom: 10px; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: 14px;
    margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
    .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: 767px) {
    .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: #9d9d9d; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: #9d9d9d; }
  .navbar-inverse .navbar-nav > li > a {
    color: #9d9d9d; }
    .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: 767px) {
    .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: #9d9d9d; }
      .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: #9d9d9d; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: #9d9d9d; }
    .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; }

.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 {
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    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: 6px;
  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.85;
    filter: alpha(opacity=85); }

.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.42857; }

.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: 768px) {
  .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: 992px) {
  .modal-lg {
    width: 900px; } }

/* =========================================================================
   Bootstrap Overrides

   For things that cannot be adjusted just using variables.
   ========================================================================= */
.main-content {
  margin-bottom: 90px; }
  @media (max-width: 767px) {
    .main-content {
      margin-bottom: 60px; } }

.ticket {
  border-radius: 2px;
  background-color: #feffff;
  color: #414141;
  margin-bottom: 2px;
  padding: 2em; }
  @media (max-width: 767px) {
    .ticket {
      padding: 15px; } }
  .ticket--selector {
    padding: 20px; }
  .ticket__top-section {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    color: #414141;
    margin-bottom: 0.33333em; }
    .ticket__top-section--centered {
      justify-content: center;
      margin-top: 1em; }
  .ticket__title {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    font-size: 2em;
    font-weight: 300;
    color: inherit;
    text-transform: none;
    line-height: 1em;
    margin-bottom: 0;
    padding-top: 0; }
    @media (max-width: 767px) {
      .ticket__title {
        font-size: 18px; } }
  .ticket--simple .ticket__title {
    cursor: auto;
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto; }
  .ticket__chevron {
    width: 0.6em;
    height: 0.6em;
    margin-left: 0.67em; }
    .ticket__chevron--expanded {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  .ticket__expand-container {
    display: flex;
    justify-content: center;
    margin-top: 1em;
    margin-bottom: -1em; }
  .ticket__expand {
    cursor: pointer;
    height: 1.6em;
    width: 5.2em; }
    .ticket__expand--expanded {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  .ticket__package-more-info {
    color: inherit;
    line-height: 36px; }
  .ticket__package-more-info:hover {
    color: inherit;
    text-decoration: none; }
  .ticket__price {
    line-height: 1em;
    font-size: 2em;
    font-weight: normal;
    color: inherit;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-left: 0.5em;
    font-family: "Open Sans", sans-serif;
    text-align: right; }
    .ticket__price small {
      display: block;
      font-size: 13px;
      text-transform: none;
      color: #88b123;
      font-weight: 700;
      line-height: 1em; }
    .ticket__price small.ticket__bookingfee {
      float: left;
      color: #ffffff; }
  .ticket__bookingfee {
    line-height: 1em; }
  .ticket__package-details {
    line-height: 1em;
    font-size: 20px;
    font-weight: normal;
    color: inherit;
    margin-bottom: 0;
    font-family: "Open Sans", sans-serif;
    text-align: right;
    line-height: 1.3; }
  .ticket__description {
    max-width: 50em; }
    .ticket__description p {
      margin-bottom: 0; }
    @media (max-width: 450px) {
      .ticket__description {
        width: calc(100% - 100px); } }
  .ticket--package .ticket__description {
    margin-top: 0.33333em; }
  .ticket__bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #414141;
    padding-top: 2em; }
    @media (max-width: 767px) {
      .ticket__bottom-section {
        font-size: 12px; } }
    .ticket__bottom-section--entry-header {
      padding-top: 1.33333em; }
    .ticket__bottom-section--simple-header {
      padding-top: 0; }
    .ticket__bottom-section .counter {
      margin-left: auto; }
  .ticket--package .ticket__bottom-section {
    padding-top: 0; }
  .ticket__package-tickets-container {
    padding-top: 1.33333em; }
  .ticket__package-ticket-item {
    margin-bottom: 2em; }
  .ticket__package-ticket-item:last-child {
    margin-bottom: 0; }
  .ticket__subtitle {
    color: inherit;
    font-family: "Open Sans", sans-serif;
    font-size: 1.06667em;
    line-height: 1.3em;
    margin-bottom: 0;
    padding-top: 0;
    max-width: 696px;
    text-transform: none; }
    @media (max-width: 767px) {
      .ticket__subtitle {
        font-size: 12px; } }
    .ticket__subtitle p {
      margin-bottom: 3px; }
    .ticket__subtitle__event-name {
      text-transform: uppercase; }
    .ticket__subtitle__desc {
      opacity: 0.8;
      font-size: 15px;
      font-family: "Open Sans", sans-serif; }
      @media (max-width: 767px) {
        .ticket__subtitle__desc {
          font-size: 10px; } }
    .ticket__subtitle--time-slot {
      font-family: "Open Sans", sans-serif; }
  .ticket--package .ticket__subtitle {
    padding-top: 2em; }

/** Add this class for ticket with bgColor or bgImage **/
.ticket-alt {
  color: #414141; }

/** This needs to be the default... but ticket-alt is overwriting it... */
.ticket10 {
  background-color: #feffff;
  color: #414141; }

/** Ticket style with bgColor **/
.ticket1 {
  background-color: #2083fe; }

/** Ticket style with bggradient **/
.ticket2 {
  background: linear-gradient(128deg, #ea2322 0%, #232073 100%); }

/** Ticket style with bgColor **/
.ticket7 {
  background-color: #EA2322; }

.ticket76 {
  background-color: #01b9c0; }

.ticket77,
.ticket80,
.ticket81,
.ticket82,
.ticket83,
.ticket84,
.ticket85,
.ticket86 {
  background-color: #f5252c; }

/** Ticket06 bg pattern **/
.ticket78,
.ticket17 {
  background: linear-gradient(126deg, #F5252C 0%, #202070 100%); }

/** Ticket style with bgImage **/
.ticket3,
.ticket4,
.ticket5 {
  background-position: left top;
  background-size: cover; }

/** Ticket06 bg pattern **/
.ticket6 {
  background: linear-gradient(126deg, #ea2322 0%, #232073 100%); }

.ticket78 {
  background: #eeeeee; }

/** Ticket08 bg pattern **/
.ticket8 {
  background: linear-gradient(126deg, #EA2322 0%, #232073 100%); }

.ticket3 {
  background-image: url(/images/ticket-bg.png); }

.ticket4 {
  background-image: url(/images/ticket-bg2.png); }

.ticket5 {
  background-image: url(/images/ticket-bg3.png); }

.ticket11 {
  background-image: linear-gradient(126deg, #d60000 0%, #ffe200 100%); }

@media (max-width: 767px) {
  .ticket {
    padding: 15px;
    margin-bottom: 10px; } }

.breadcrumb-container {
  display: flex;
  justify-content: center; }
  @media (max-width: 767px) {
    .breadcrumb-container {
      margin-bottom: 8px; } }

.breadcrumb-list {
  display: flex;
  align-items: center;
  font-size: 16px;
  background-color: transparent;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  list-style: none;
  padding: 0;
  margin-left: 30px;
  margin-right: 30px; }
  @media (max-width: 767px) {
    .breadcrumb-list {
      font-size: 10px; } }
  .breadcrumb-list__seperator {
    color: #000;
    opacity: 0.2;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 1.5em;
    padding-bottom: 4px; }
  .breadcrumb-list__item {
    text-align: center; }
    .breadcrumb-list__item a {
      color: #000;
      opacity: 0.8; }
      .breadcrumb-list__item a:hover {
        color: #000; }
    .breadcrumb-list__item--active {
      color: #88b123; }
  .breadcrumb-list--alt .breadcrumb-list__item a {
    color: #fff;
    opacity: 0.6; }
  .breadcrumb-list--alt .breadcrumb-list__item--active {
    color: #fff; }
  .breadcrumb-list--alt .breadcrumb-list__seperator {
    color: #fff;
    opacity: 0.6; }

.nav-tabs {
  border-bottom: 0.5px solid #666; }
  .nav-tabs > li {
    width: 50%;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    margin-bottom: 0; }
    .nav-tabs > li > a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #666;
      border: 0;
      border-bottom: 6px solid transparent;
      border-radius: 0;
      font-family: "Lato";
      font-size: 1.333em;
      text-transform: uppercase;
      width: 100%;
      height: 85px; }
      @media (max-width: 767px) {
        .nav-tabs > li > a {
          font-size: 12px;
          height: 64px; } }
      .nav-tabs > li > a:hover {
        background-color: transparent;
        border-color: #e10a0a; }
    .nav-tabs > li.active a:hover,
    .nav-tabs > li.active a:focus,
    .nav-tabs > li.active a {
      border: none;
      border-bottom: 6px solid #e10a0a;
      color: #e10a0a;
      font-family: "Open Sans", sans-serif;
      background-color: transparent; }
  .nav-tabs > li.disabled > a:hover {
    border-color: #eeeeee #eeeeee #ddd; }
  .nav-tabs.three-col > li {
    width: 33.33%; }

.tab-content .content-inner {
  max-width: 348px;
  margin: 0 auto;
  padding: 70px 10px 50px;
  width: 100%; }

.btn-grey-pill {
  border: 2px solid transparent;
  border-radius: 1.75em;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: "sf_ui_textmedium", "Helvetica Neue", Helvetica, serif;
  font-size: 0.93333em;
  min-width: 13.57143em;
  height: 2.57143em;
  padding: 0;
  line-height: 1.75em;
  transition: background-color 0.2s; }

.btn-grey-pill:hover {
  background-color: rgba(0, 0, 0, 0.6); }

.btn-grey-pill.btn-grey-pill--hollow {
  color: rgba(0, 0, 0, 0.4);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0.4); }

.btn-grey-pill.btn-grey-pill--hollow:hover {
  color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6); }

.grey-btn {
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 0.933rem;
  min-width: 6.21429em;
  height: 2.57143em;
  line-height: 2.57143em;
  background-color: #15b6b7;
  border: none;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.2s;
  padding: 0; }
  .grey-btn a {
    color: inherit;
    display: block; }
    .grey-btn a:hover {
      color: inherit;
      text-decoration: none; }
  .grey-btn.counter {
    display: flex;
    justify-content: center;
    background-color: #15b6b7 !important; }
    .grey-btn.counter.empty {
      display: inline-block; }
    .grey-btn.counter .qty {
      font-size: 1.2em;
      min-width: 1.5em;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
    .grey-btn.counter .add {
      cursor: pointer;
      background-color: transparent;
      border: none;
      padding-left: 0.5em;
      padding-right: 1em;
      padding-top: 1px; }
    .grey-btn.counter .min {
      cursor: pointer;
      background-color: transparent;
      border: none;
      padding-left: 1em;
      padding-right: 0.5em;
      padding-top: 1px; }
    .grey-btn.counter:hover {
      background-color: rgba(0, 0, 0, 0.2) !important; }

button.grey-btn:hover {
  background-color: rgba(0, 0, 0, 0.2); }

.modal-dialog {
  margin: calc(50vh/2) auto; }

.modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px; }

.modal-heading {
  color: #374CDC;
  font-size: 25px;
  text-align: center; }

.modal-buttons button:nth-child(2n) {
  margin-left: 20px; }

.modal-cta-btn {
  border-radius: 5px;
  color: white;
  margin-top: 30px;
  margin-bottom: 55px;
  border: none;
  line-height: 36px;
  width: 190px;
  background-image: linear-gradient(90deg, #1F85FF, #4231CB);
  text-transform: uppercase;
  transition: opacity 0.2s;
  text-align: center; }
  .modal-cta-btn:hover {
    opacity: 0.8;
    color: white;
    text-decoration: none; }

.modal-btn {
  color: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 0, 0, 0.4);
  background: none;
  margin-top: 30px;
  margin-bottom: 55px;
  border-radius: 5px;
  line-height: 36px;
  width: 190px;
  text-transform: uppercase;
  text-align: center;
  transition: opacity 0.2s; }
  .modal-btn:hover {
    opacity: 0.6; }

.modal-text {
  text-align: center;
  max-width: 600px; }

.ticketinfo {
  padding: 60px 0 60px;
  margin-top: 60px; }

.ticketinfo--section {
  border-radius: 2px;
  margin: auto;
  background-color: #fff;
  padding: 28px 30px; }
  .ticketinfo--section h2 {
    font-size: 2.100em;
    line-height: 1em; }
  .ticketinfo--section .text-wrapper {
    font-size: 1em;
    line-height: 1.412em;
    opacity: 0.5;
    width: 69%; }

.ticketinfo--discounts {
  border-radius: 2px;
  margin: auto;
  background-color: #fff;
  opacity: 0.9;
  padding: 1px 30px;
  margin-top: 12px; }

@media (max-width: 767px) {
  .ticketinfo {
    margin-top: 0px;
    padding: 30px 0 46px;
    font-size: 12px; }
  .ticketinfo--section h2 {
    float: none !important; }
  .ticketinfo--section .text-wrapper {
    width: 100%; } }

.popover-trigger {
  height: 24px;
  width: 24px;
  border: none;
  background: none;
  padding-left: 0; }
  .popover-trigger ellipse {
    fill: #545454; }
  @media (max-width: 500px) {
    .popover-trigger--desktop {
      display: none; } }
  @media (min-width: 501px) {
    .popover-trigger--mobile {
      display: none; } }

.info-container {
  display: inline-flex;
  align-items: center;
  vertical-align: middle; }

.popover {
  background: #545454;
  border: none;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  width: 248px;
  border-radius: 4px;
  padding: 11px 11px 11px 11px; }
  .popover .popover-content {
    padding: 0;
    position: relative; }
  .popover.right {
    border-color: #545454;
    margin-left: 20px; }
  .popover.right > .arrow {
    border-right-color: #545454;
    border-width: 6px 10px 6px 0;
    left: -10px;
    margin-top: -6px;
    top: 37%; }
  .popover.right > .arrow::after {
    display: none;
    border-right-color: #545454; }
  .popover.left {
    border-color: #545454; }
  .popover.left > .arrow {
    border-left-color: #545454;
    border-width: 6px 0 6px 10px;
    right: -10px;
    margin-top: -6px;
    top: 37%; }
  .popover.left > .arrow::after {
    display: none;
    border-left-color: #545454; }

.info-mobile {
  background: #545454;
  border: none;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  padding: 11px 11px 11px 11px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  z-index: 1050;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
  .info-mobile:focus {
    outline: none; }
  .info-mobile.fade {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  .info-mobile.in {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  .info-mobile.fade.in {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  .info-mobile-dialog {
    background-color: #545454;
    border-radius: 4px;
    padding: 10px; }
  .info-mobile-content {
    background-color: #545454; }
  .info-mobile-inner {
    padding-right: 10px; }
  .info-mobile-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000; }
    .info-mobile-backdrop.fade {
      opacity: 0;
      transition: opacity 0.15s linear; }
    .info-mobile-backdrop.in {
      opacity: 0.85; }
  .info-mobile__close {
    margin-top: -15px;
    margin-right: -10px;
    color: #fff;
    display: block; }

/* Header */
.tickets-page .header {
  margin-bottom: 15px; }

.header {
  background-size: 100% 200px;
  height: 150px;
  position: relative; }
  .header .header-inner {
    padding: 34px 35px 0;
    margin: 0 auto;
    max-width: 1440px;
    width: 100%; }
  .header .site-logo {
    display: inline-block;
    float: left; }
  .header .page-title {
    display: inline-block;
    float: left;
    text-align: center;
    width: 100%;
    margin: 0;
    line-height: 64px; }
    @media (max-width: 767px) {
      .header .page-title__dark-mode {
        color: #fff; } }

.site-logo img {
  height: 64px; }

@media (max-width: 767px) {
  /** Header **/
  .header {
    height: 66px;
    background-size: 100% 66px; }
    .header::after {
      bottom: -10px;
      height: 20px; }
    .header .header-inner {
      padding: 13px; }
    .header .page-title {
      position: absolute;
      z-index: 10;
      left: 0;
      width: 100%;
      bottom: -60px; }
  .site-logo img {
    height: 32px; } }

@media (min-width: 768px) and (max-width: 991px) {
  .header {
    background-size: auto 200px; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .header {
    background-size: auto 200px; } }

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  height: 65px;
  font-size: 16px; }
  @media (max-width: 767px) {
    .footer {
      height: 60px;
      padding: 1em 0;
      font-size: 12px; } }
  .footer--sticky {
    position: fixed; }
  .footer__button-container {
    display: flex;
    align-items: center;
    height: 100%; }
  .footer .container:before,
  .footer .container:after {
    content: none; }
  .footer .next-chevron {
    fill: currentColor;
    height: 16px;
    width: 9px;
    margin-bottom: 3px; }
  .footer__back-link {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 1em;
    padding: 0.75em 0;
    text-transform: uppercase;
    transition: color 0.2s;
    margin-right: auto; }
    .footer__back-link:hover {
      text-decoration: none; }
    .footer__back-link .next-chevron {
      margin-right: 1.125em; }
    .footer__back-link .mobile {
      display: none; }
    .footer__back-link .full {
      display: inline; }
    @media (max-width: 767px) {
      .footer__back-link {
        padding: 12px 0px 12px 5px;
        font-size: 12px; }
        .footer__back-link .mobile {
          display: inline; }
        .footer__back-link .full {
          display: none; }
        .footer__back-link .next-chevron {
          margin-right: 0.5em;
          margin-bottom: 1px; } }
  .footer__next-link {
    background-image: linear-gradient(134deg, #fff 0%, #fff 100%);
    border-radius: 5px;
    border: none;
    color: #15b6b7;
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 1em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75em 2em;
    margin-left: auto;
    transition: opacity 0.2s; }
    .footer__next-link .next-chevron {
      margin-left: 0.9375em; }
    .footer__next-link:disabled, .footer__next-link:hover, .footer__next-link.focus {
      color: #fff;
      text-decoration: none;
      outline: 0;
      text-decoration: none;
      opacity: 0.8; }
    .footer__next-link__loading-text {
      visibility: hidden;
      height: 0; }
    .footer__next-link:disabled {
      background-image: none;
      background-color: #999; }
      .footer__next-link:disabled .footer__next-link__text {
        visibility: hidden;
        height: 0; }
      .footer__next-link:disabled .footer__next-link__loading-text {
        visibility: visible;
        height: auto; }

.next-chevron {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  vertical-align: middle; }
  .next-chevron--forward {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }

/*
/* Class "vs-mobile-sharer-open" should be applied to body to:
/* show the social buttons with the background blurred
*/
vs-share-button,
.vs-share-button {
  float: right; }
  vs-share-button:before, vs-share-button:after,
  .vs-share-button:before,
  .vs-share-button:after {
    content: " ";
    display: table; }
  vs-share-button:after,
  .vs-share-button:after {
    clear: both; }

.vs-share-button__content {
  display: inline-flex;
  overflow: hidden;
  padding: .063rem;
  text-align: center; }

.vs-share-button__icon-button {
  z-index: 301;
  transition: all .3s;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  font-size: 1.375rem;
  height: 3.125rem;
  line-height: 3.125rem;
  margin: 0 .625rem;
  position: relative;
  text-align: center;
  width: 3.125rem; }

.vs-share-button__icon-button.vs-share-button__icon-share {
  background-color: transparent; }

.vs-share-button__icon-button.vs-share-button__icon-share:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: white;
  opacity: 0.2;
  border-radius: 50%; }

.vs-share-button__icon-button.vs-share-button__icon-share {
  font-size: 1rem;
  margin-left: .313rem;
  height: 1.875rem;
  line-height: 1.875rem;
  width: 1.875rem; }
  .vs-share-button__icon-button.vs-share-button__icon-share > i {
    height: 1.875rem;
    line-height: 1.875rem;
    width: 1.875rem;
    padding-right: .188rem; }
  .vs-share-button__icon-button.vs-share-button__icon-share:hover span {
    width: 2rem;
    height: 2rem;
    margin: -1rem; }

.vs-share-button__icon-button span {
  position: absolute;
  display: block;
  background-color: transparent;
  border-radius: 0;
  height: 0;
  left: 50%;
  margin: 0;
  top: 50%;
  width: 0; }

.vs-share-button__icon-button:hover span {
  transition: background-color 0.3s ease-in-out;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  margin: -1.625rem; }

.vs-share-button__icon-twitter:hover span {
  background-color: #4099ff; }

.vs-share-button__icon-facebook:hover span {
  background-color: #3B5998; }

.vs-share-button__icon-email:hover span {
  background-color: #919191; }

.vs-share-button__icon-share:hover span {
  opacity: .7;
  background-color: white; }

.vs-share-button__icon-button i {
  background: none;
  color: white;
  height: 3.125rem;
  left: 0;
  line-height: 3.125rem;
  position: absolute;
  top: 0;
  width: 3.125rem;
  z-index: 10; }

.vs-share-button__icon-button .icon-twitter,
.vs-share-button__icon-button .icon-facebook,
.vs-share-button__icon-button [class*='icon-email'] {
  color: #919191; }

.vs-share-button__icon-button .icon-share {
  color: white; }

.vs-share-button__icon-button:hover .icon-twitter,
.vs-share-button__icon-button:hover .icon-facebook,
.vs-share-button__icon-button:hover [class*='icon-email'] {
  transition: color 0.3s ease-in-out;
  color: white; }

.vs-share-button__icon-button:hover .icon-share {
  transition: color 0.3s ease-in-out;
  color: #919191; }

.vs-share-button__social-links {
  visibility: hidden; }

.vs-mobile-sharer-open .vs-share-button__social-links {
  visibility: visible; }

@media (max-width: 767px) {
  .vs-share-button__icon-button.vs-share-button__icon-share {
    margin: 0; }
  .vs-mobile-sharer-open .vs-mobile-sharer__overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .vs-share-button__social-links {
    position: absolute;
    top: calc(50% - 3.125rem);
    margin-top: 2.063rem;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3.125rem;
    padding: 0; }
  .vs-mobile-sharer__title {
    transition: visibility 0s, all 0.3s ease;
    position: absolute;
    top: calc(50% - 3.125rem);
    bottom: 0;
    left: 0;
    right: 0;
    height: 1rem;
    font-family: 'EuclidFlex', Georgia, "Times New Roman", Times, serif;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .0125rem;
    text-transform: uppercase;
    z-index: 10;
    text-align: center;
    opacity: 0;
    visibility: hidden; }
    .vs-mobile-sharer-open .vs-mobile-sharer__title {
      visibility: visible;
      opacity: 1; }
  .vs-share-button__icon-share--active {
    display: none; }
  .vs-share-button__social-links a:first-child {
    transition: visibility 0s, all .3s ease;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    position: absolute;
    opacity: 0;
    left: calc(50% - 1.875rem);
    visibility: hidden; }
  .vs-share-button__social-links a:nth-child(2) {
    transition: visibility 0s, all .3s ease;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    position: absolute;
    opacity: 0;
    left: calc(50% - 1.563rem);
    visibility: hidden; }
  .vs-share-button__social-links a:last-child {
    transition: visibility 0s, all .3s ease;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    position: absolute;
    opacity: 0;
    left: calc(50% - 2.25rem);
    visibility: hidden; }
  .vs-mobile-sharer-open .vs-share-button__social-links a:first-child {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    left: calc(50% - 6.563rem);
    position: absolute;
    opacity: 1;
    visibility: visible; }
  .vs-mobile-sharer-open .vs-share-button__social-links a:nth-child(2) {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    left: calc(50% - 2.188rem);
    position: absolute;
    opacity: 1;
    visibility: visible; }
  .vs-mobile-sharer-open .vs-share-button__social-links a:last-child {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    left: calc(50% + 2.188rem);
    position: absolute;
    opacity: 1;
    visibility: visible; } }

@media (min-width: 768px) {
  .vs-mobile-sharer {
    display: none; }
  .vs-share-button__content {
    display: block;
    min-height: 3.125rem;
    min-width: 16.25rem;
    text-align: right; }
  .vs-share-button__social-links {
    display: inline-flex;
    margin: auto;
    padding: 0; }
  .vs-share-button__icon-button.vs-share-button__icon-share {
    font-size: 1.375rem;
    height: 3.125rem;
    line-height: 3.125rem;
    width: 3.125rem;
    margin-right: 0; }
    .vs-share-button__icon-button.vs-share-button__icon-share > i {
      height: 3.125rem;
      line-height: 3.125rem;
      width: 3.125rem; }
    .vs-share-button__icon-button.vs-share-button__icon-share:hover span {
      width: 3.25rem;
      height: 3.25rem;
      margin: -1.625rem; }
  .vs-share-button__social-links a:first-child {
    transition: visibility 0s, all 0.2s ease 0.05s;
    opacity: 0;
    left: 100%;
    visibility: hidden;
    margin-left: 0; }
  .vs-share-button__social-links a:nth-child(2) {
    transition: visibility 0s, all 0.2s ease 0.08s;
    opacity: 0;
    left: calc(100% - 4.563rem);
    visibility: hidden; }
  .vs-share-button__social-links a:last-child {
    transition: visibility 0s, all 0.2s ease 0.1s;
    opacity: 0;
    left: calc(100% - 8.875rem);
    visibility: hidden; }
  .vs-share-button__social-links--active a:first-child,
  .vs-share-button__social-links--active a:nth-child(2),
  .vs-share-button__social-links--active a:last-child {
    visibility: visible;
    left: 0;
    opacity: 1; } }

.vs-share-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  transition: all .3s ease-in-out; }
  @media (max-width: 767px) {
    .vs-share-bg {
      display: block;
      background-color: rgba(0, 0, 0, 0.47); } }
  .vs-share-bg--hidden {
    display: none; }

.vs-share-blurred {
  transition: all 0.5s; }
  @media (max-width: 767px) {
    .vs-share-blurred {
      -webkit-filter: blur(30px);
              filter: blur(30px); } }

[class*=" icon-"], [class^=icon-] {
  font-family: virgin-sport-icons !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-share:before {
  content: "\E91F"; }

.icon-twitter:before {
  content: "\E904"; }

.icon-facebook:before {
  content: "\E901"; }

.icon-email-filled:before {
  content: "\E900"; }

.small-share-button {
  transition: visibility 0s,all .2s ease .05s;
  display: inline-block;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #999;
  text-align: center;
  line-height: 25px;
  font-size: 12px; }
  .small-share-button:hover {
    text-decoration: none;
    color: white; }
  .small-share-button--twitter i {
    vertical-align: middle; }
  .small-share-button--twitter:hover {
    background-color: #4099ff; }
  .small-share-button--facebook:hover {
    background-color: #3B5998; }

@media (max-width: 767px) {
  .only-screen {
    height: 100vh;
    overflow: hidden; } }

.social-svg-wrapper {
  margin-left: 20px;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  border: none; }

svg.social-svg rect {
  transition: opacity ease-in-out 0.2s; }
  svg.social-svg rect:hover {
    opacity: 0.8; }

.justgiving__switch-login {
  margin-bottom: 10px;
  max-width: 100%;
  white-space: normal; }

.justgiving-logo {
  display: block;
  max-width: 300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px; }

.justgiving-pagename {
  margin-bottom: 10px; }
  .justgiving-pagename__input-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 660px;
    width: 100%; }
    .justgiving-pagename__input-wrapper .form-widget__input-wrapper {
      min-width: 250px;
      flex-wrap: wrap;
      flex-direction: row; }
    .justgiving-pagename__input-wrapper .form-widget__error-label {
      width: 100%; }
  .justgiving-pagename__input {
    display: inline-block;
    flex: 1 1 0%;
    flex-basis: 250px; }
  .justgiving-pagename__address-pre {
    vertical-align: baseline;
    margin-right: 5px;
    font-size: 15px; }
  .justgiving-pagename__ok {
    position: absolute;
    right: -28px; }

.justgiving-login__forgot-password {
  display: block; }

.justgiving-imageupload {
  padding-top: 10px; }
  .justgiving-imageupload__title {
    display: block;
    margin-bottom: 0; }
  .justgiving-imageupload__drop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 100px;
    background: #c2c2c2;
    border-radius: 4px;
    transition: opacity 0.2s; }
    .justgiving-imageupload__drop:hover {
      cursor: pointer;
      opacity: 0.8; }
  .justgiving-imageupload__drop-text {
    margin-bottom: 0;
    text-align: center; }
  .justgiving-imageupload__preview-container {
    position: relative; }
    .justgiving-imageupload__preview-container img {
      max-height: 300px;
      max-width: 300px; }
    .justgiving-imageupload__preview-container button {
      position: absolute;
      top: 10px;
      right: 10px;
      background: lightgray;
      border: 1px black dashed;
      font-size: 0.8em;
      opacity: 0.5; }

.justgiving-complete__title {
  text-align: center;
  margin-bottom: 20px; }

.justgiving-complete__link {
  margin: 10px 0; }

.justgiving-thanks {
  padding-top: 10px;
  clear: both; }
  .justgiving-thanks__title {
    text-align: center; }
  .justgiving-thanks__link {
    margin: 10px 0; }
  .justgiving-thanks__logo {
    margin-left: 15px; }

/* =========================================================================
   Custom Styling
   ========================================================================= */
.widget-heading {
  padding-top: 20px;
  padding-bottom: 10px;
  color: #88b123; }
  .widget-heading--small-top-pad {
    padding-top: 10px; }

.widgets-form .form-widget-element {
  margin-bottom: 10px; }
  .widgets-form .form-widget-element:last-child {
    margin-bottom: 0; }

.form-widget {
  align-items: center;
  font-size: 15px; }
  .form-widget__input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 660px; }
  .form-widget__input-options-wrapper {
    display: flex;
    flex-wrap: wrap; }
  .form-widget label {
    margin-bottom: 0;
    margin-right: 0; }
  .form-widget textarea,
  .form-widget input[type="text"],
  .form-widget input[type="email"] {
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  .form-widget--paragraph {
    width: 100%; }
  .form-widget__input {
    width: 100%;
    max-width: 660px;
    font-size: 15px;
    display: inline-block;
    box-shadow: none;
    color: #000;
    height: 50px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 12px 10px 0;
    line-height: 1em;
    box-shadow: none;
    font-family: "Open Sans", sans-serif; }
    .form-widget__input--select-multi {
      display: inline-block;
      width: 30%;
      border: none; }
  .form-widget--disabled .form-widget__input {
    background-color: #d8d8d8; }
  .form-widget__read-only {
    padding-left: 10px;
    padding-top: 18px; }
  .form-widget--confirm-email {
    margin-top: 10px; }
    .form-widget--confirm-email .form-widget__input {
      background-color: #efefef; }
  .form-widget--half-width .form-widget__input-wrapper {
    max-width: 330px; }
  .form-widget textarea {
    height: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    margin-bottom: -6px;
    padding-top: 20px; }

@-moz-document url-prefix() {
  .form-widget textarea {
    margin-top: 5px;
    margin-bottom: 0; } }
  .form-widget__floating-label {
    position: absolute;
    font-weight: normal;
    color: #666;
    transition: 0.2s ease all;
    font-weight: normal;
    pointer-events: none;
    left: 10px;
    top: 14px;
    max-width: 650px; }
  .form-widget__required-check {
    color: #ea5e5e; }
  .form-widget--text-area .form-widget__floating-label {
    top: 6px; }
  .form-widget__text-area-wrapper {
    width: 100%;
    max-width: 660px;
    border: 1px solid #cccccc;
    border-radius: 4px; }
  .form-widget--has-error .form-widget__text-area-wrapper {
    border-color: #ea5e5e !important; }
  .form-widget__input:focus ~ .form-widget__floating-label,
  .form-widget--float-label .form-widget__floating-label {
    top: 2px;
    font-size: 10px; }
  .form-widget__label-large {
    text-transform: none;
    padding-top: 0;
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif; }
  .form-widget__radio__option {
    display: inline-block;
    margin-right: 1.5em;
    margin-bottom: 10px; }
    .form-widget__radio__option .radio-image {
      overflow: visible;
      margin-left: -28px;
      margin-right: 8px;
      cursor: pointer;
      vertical-align: middle; }
    .form-widget__radio__option label {
      cursor: pointer;
      font-weight: normal;
      padding-left: 28px; }
  .form-widget__checkbox {
    display: flex;
    position: relative; }
    .form-widget__checkbox .check-image {
      overflow: visible;
      cursor: pointer;
      vertical-align: middle;
      margin-top: -2px;
      margin-right: 8px;
      margin-left: -25px; }
    .form-widget__checkbox--terms .form-widget__input-wrapper {
      width: 100%;
      max-width: 100%; }
    .form-widget__checkbox .form-widget__label-html p {
      display: inline; }
    .form-widget__checkbox label {
      cursor: pointer;
      font-weight: normal;
      padding-left: 25px; }
  .form-widget--check, .form-widget--radio {
    padding-top: 10px; }
  .form-widget__radio__option input, .form-widget__checkbox input {
    position: absolute;
    opacity: 0; }
  .form-widget__radio__option input:focus ~ label svg, .form-widget__checkbox input:focus ~ label svg {
    outline: auto;
    outline: -webkit-focus-ring-color auto 5px; }
  .form-widget__radio__option label, .form-widget__checkbox label {
    position: relative; }
    .form-widget__radio__option label .popover-trigger, .form-widget__checkbox label .popover-trigger {
      top: 0; }
  .form-widget__radio__option--fullwidth {
    width: 100%; }
  .form-widget--charity label, .form-widget--waiver label {
    font-weight: normal; }
  .form-widget--waiver textarea {
    margin-top: 0;
    max-width: 660px; }
  .form-widget__html {
    color: #666;
    margin-bottom: 1em;
    font-size: 10px;
    line-height: 1.2;
    max-width: 358px; }
    .form-widget__html p {
      margin-bottom: 1em; }
  .form-widget__address-manual {
    position: absolute;
    top: 7px;
    left: 335px; }
  .form-widget .Select.is-focused:not(.is-open) {
    outline: auto;
    outline: -webkit-focus-ring-color auto 5px; }
  .form-widget .Select--single {
    display: inline-block; }
  .form-widget .Select-value {
    color: #000;
    font-size: 15px; }
  .form-widget .dropdown-select.Select,
  .form-widget .multi-select.Select {
    max-width: 660px;
    width: 100%; }
  .form-widget .dropdown-select.Select--single .Select-value,
  .form-widget .multi-select.Select--single .Select-value {
    margin-top: 14px; }
  .form-widget .dropdown-select .Select-input,
  .form-widget .multi-select .Select-input {
    padding-top: 12px;
    padding-left: 0; }
  .form-widget .dropdown-select .Select-control,
  .form-widget .multi-select .Select-control {
    display: table;
    color: #000;
    font-size: 14px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 1px 10px;
    position: relative;
    min-height: 50px; }
  .form-widget .dropdown-select.Select--multi .Select-multi-value-wrapper,
  .form-widget .multi-select.Select--multi .Select-multi-value-wrapper {
    padding-top: 10px; }
  .form-widget .Select-placeholder {
    text-transform: capitalize;
    padding-left: 0;
    color: #666;
    font-size: 15px; }
  .form-widget .stacked-select {
    margin-right: 1.5%; }
    .form-widget .stacked-select.date-day {
      width: 28.5%; }
    .form-widget .stacked-select.date-month {
      width: 38.5%; }
    .form-widget .stacked-select.date-year {
      width: 28.5%; }
    .form-widget .stacked-select.Select {
      margin-top: 5px; }
    .form-widget .stacked-select .Select-control {
      display: table;
      color: #000;
      font-size: 14px;
      border: none;
      height: 25px; }
    .form-widget .stacked-select .Select-input {
      height: 25px; }
    .form-widget .stacked-select .Select-value {
      line-height: 25px;
      padding-left: 0; }
    .form-widget .stacked-select .Select-placeholder {
      line-height: 25px; }
  .form-widget__error-label {
    color: #ea5e5e !important;
    font-size: 10px;
    margin-bottom: 0; }
  .form-widget--has-error .form-widget__input,
  .form-widget--has-error .Select-control {
    border-color: #ea5e5e !important; }
  .form-widget .popover-trigger {
    position: absolute;
    right: -30px; }
    @media (max-width: 730px) {
      .form-widget .popover-trigger {
        position: relative;
        margin-left: 5px;
        right: 0px; } }

.charity {
  max-width: 358px; }
  .charity label {
    color: black;
    font-size: 1em; }

.widget-heading + div .form-widget--radio,
.widget-heading + div .form-widget--check {
  padding-top: 0px; }

.Select-menu-outer {
  max-width: 660px; }

.Select-menu {
  font-size: 14px; }

.address-toggle {
  color: #000;
  text-decoration: underline; }
  .address-toggle:hover {
    color: #7f7f7f; }
  .address-toggle:focus {
    outline-width: 1px;
    outline-style: solid;
    outline-offset: 1px;
    outline-color: initial; }

html {
  font-size: 15px;
  box-sizing: border-box; }
  html *,
  html *:before,
  html *:after {
    box-sizing: inherit; }

body {
  background-color: #f0f0f0;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
  line-height: 1.6; }

a {
  color: #ff0040;
  text-decoration: none;
  cursor: pointer; }
  a:hover {
    color: #ff0040;
    text-decoration: underline;
    outline: 0; }
  a:active, a:focus {
    outline: 0; }

p {
  margin-bottom: 20px; }

h1, h2, h3, h4, h5 {
  font-family: "Open Sans", sans-serif;
  color: #000;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 0.3em;
  text-transform: none; }

h1 {
  font-size: 2.000em;
  line-height: 1.267em; }

h3 {
  font-size: 1.625em;
  line-height: 1em; }

h4 {
  font-size: 1.067em;
  line-height: 1.250em; }

/* Hide visually but not from screen readers */
.hide {
  position: absolute !important;
  left: -9999em !important; }

/* Image Replacement */
.ir {
  display: block;
  position: relative;
  overflow: hidden; }
  .ir span {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; }

/* Acessibility navigation */
.accessibility-nav {
  position: absolute;
  top: 0;
  left: -9999em;
  z-index: 1000; }
  .accessibility-nav a {
    position: absolute;
    top: 0;
    white-space: nowrap; }
  .accessibility-nav a:active,
  .accessibility-nav a:focus {
    left: 9999em; }

/** Common classes **/
.show-mob {
  display: none; }

.strike {
  text-decoration: line-through; }

.fade-info {
  opacity: 0.5; }

.alert {
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  background-color: #88b123;
  border: none;
  border-radius: 0;
  color: #fff;
  line-height: 1.059em;
  height: 60px;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media (max-width: 767px) {
    .alert {
      font-size: 12px; } }
  .alert .close-cross {
    color: #fff;
    opacity: 1; }

.img-holder img {
  max-width: 100%;
  height: auto; }

.white-wrapper {
  border-radius: 2px;
  background-color: #fff;
  padding: 30px 20px;
  margin-bottom: 20px;
  overflow: visible; }

.white-wrapper.thin-bottom {
  margin-bottom: 5px; }
  @media (max-width: 767px) {
    .white-wrapper.thin-bottom {
      margin-bottom: 10px; } }

.white-wrapper.only-side-pad {
  padding: 10px 20px 0; }

.white-wrapper.form-small-pad {
  padding: 20px; }

.white-wrapper.relative {
  position: relative; }

.large-pad {
  padding: 40px; }

.no-pad {
  padding: 0; }

.pos-r {
  position: relative; }

.align-center {
  text-align: center; }

.footer-bottom-sec {
  background-color: #fff;
  padding: 25px 40px; }
  .footer-bottom-sec.shadow {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); }

.show-mob {
  display: none; }

.errorpage {
  padding: 100px; }
  .errorpage h2 {
    text-transform: none; }

#myContent {
  min-height: 100vh;
  position: relative;
  padding-bottom: 100px; }
  #myContent.iframe {
    min-height: 0;
    padding-bottom: 0; }

@media (max-width: 767px) {
  #myContent {
    padding-bottom: 60px; } }

/* Container */
/* Navigation */
/* Content */
.content {
  padding: 30px 0 0; }

@media (max-width: 767px) {
  .content {
    padding: 0 0 0; } }

.details-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 638px;
  margin-left: auto;
  margin-right: auto; }

/** Athelete table **/
table.athelete-table th {
  color: #666;
  font-weight: normal;
  padding-right: 10px; }

table.athelete-table td {
  color: #000; }

/** Order Summary page **/
.order-summary {
  font-size: 16px; }
  .order-summary h4 {
    margin-bottom: 0; }
  .order-summary .border-info {
    border-top: 1px solid #d8d9da;
    display: inline-block;
    padding-top: 15px;
    text-transform: none; }
  .order-summary table {
    width: 100%; }
    .order-summary table td:last-child {
      text-align: right; }
  .order-summary table.total h3 {
    margin-bottom: 0; }
  .order-summary table.total td:last-child {
    font-size: 2.250em; }

.title-wrapper {
  color: #fff;
  margin-bottom: 100px; }
  .title-wrapper .secondary-title {
    color: #fff;
    font-size: 3.333em;
    margin-bottom: 0; }
  .title-wrapper .secondary-sub-title {
    color: #fff;
    font-size: 2.267em;
    margin-bottom: 0; }

@media (max-width: 767px) {
  body {
    font-size: 10px; }
  h1, h2, h3, h4, h5 {
    padding-top: 0.2em; }
  h3 {
    font-size: 18px; }
  h4 {
    font-size: 14px; }
  .container {
    padding-left: 5px;
    padding-right: 5px; }
  .show-mob {
    display: block; }
  .hide-mob {
    display: none; }
  /** Ticket details page **/
  .details-wrapper {
    padding: 20px 15px; }
  /** Payment Details **/
  .payment-details .top-section {
    padding: 20px 15px; }
  .payment-details .content-inner {
    padding: 20px 15px; }
  .payment-details .radio-inline {
    margin: 10px 0; }
  .payment-details .stored-card a {
    margin-top: 0; }
  .payment-details .stored-card br {
    display: none; }
  /** Forms **/
  .radio-inline {
    display: block;
    margin: 20px 0; }
  /** White wrapper **/
  .white-wrapper {
    margin-bottom: 10px; } }

@media (max-width: 420px) {
  /** Order summary **/
  .order-summary {
    font-size: 14px; }
    .order-summary h3 {
      font-size: 16px; }
    .order-summary table.total td {
      font-size: 10px; }
    .order-summary table.total td:last-child {
      font-size: 16px; }
  /** payment details **/
  .payment-details .card-img {
    padding-top: 10px; } }

.basket-wrapper {
  border-radius: 2px;
  background-color: #fff;
  padding: 30px 80px 30px; }
  @media (max-width: 768px) {
    .basket-wrapper {
      padding: 0; } }

.basket-table {
  width: 100%; }
  @media (max-width: 767px) {
    .basket-table thead {
      display: none; }
    .basket-table tbody tr {
      display: block;
      overflow: hidden;
      padding-left: 15px;
      padding-right: 15px; }
    .basket-table tbody td {
      display: block; } }
  .basket-table .img-holder {
    margin-bottom: 20px;
    margin-top: 28px; }
    @media (max-width: 768px) {
      .basket-table .img-holder {
        margin-bottom: 30px; } }
  .basket-table__header {
    font-family: "Open Sans", sans-serif;
    font-size: 1.067em;
    font-weight: normal;
    letter-spacing: 0.2px;
    line-height: 1.25em;
    opacity: 0.5;
    padding: 10px;
    text-transform: uppercase; }
    .basket-table__header--item-label {
      width: 67%; }
    .basket-table__header--qty-label {
      padding-left: 1.33333em; }
    .basket-table__header--amount-label {
      text-align: right;
      padding-right: 0; }

@media (max-width: 767px) {
  .ticket-row {
    border-bottom: 1px solid #d8d9da; } }

.ticket-row td {
  line-height: 1.42857;
  vertical-align: middle;
  padding-top: 20px;
  padding-bottom: 20px; }

.ticket-row__details {
  text-align: left;
  padding-left: 8px;
  padding-right: 8px; }
  @media (max-width: 767px) {
    .ticket-row__details {
      float: none;
      width: 100%;
      padding-top: 0; } }

.ticket-row__qty {
  background-color: rgba(216, 216, 216, 0.35);
  text-align: center;
  width: 9.33333em;
  padding-left: 1.33333em;
  padding-right: 2.2em; }
  @media (max-width: 767px) {
    .ticket-row__qty {
      background-color: transparent !important;
      float: left;
      padding: 0;
      text-align: left !important; } }

.ticket-row__price {
  background-color: transparent;
  font-weight: bold;
  font-size: 16px;
  text-align: right;
  padding-left: 10px;
  padding-right: 0; }
  @media (max-width: 767px) {
    .ticket-row__price {
      font-size: 25px;
      float: right;
      padding: 0; } }

.ticket-row__bulk-purchase {
  font-size: 14px;
  font-weight: 400;
  background-image: linear-gradient(134deg, #fff 0%, #fff 100%);
  border: none;
  color: #15b6b7;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75em 2em;
  transition: opacity 0.2s;
  border-radius: 5px; }
  .ticket-row__bulk-purchase:disabled, .ticket-row__bulk-purchase:hover, .ticket-row__bulk-purchase.focus {
    color: #fff;
    opacity: 0.8; }

.ticket-row__bulk-purchase-info {
  margin-left: 1em; }

.basket-view-events a:hover {
  text-decoration: none; }

.basket-view-events .ticket__chevron {
  color: inherit;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.67em; }
  .basket-view-events .ticket__chevron--expanded {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  .basket-view-events .ticket__chevron g {
    fill: #ff0040; }

.basket-view-events__event-details {
  color: #666;
  margin-bottom: 4px;
  margin-top: 2px; }
  .basket-view-events__event-details .event-name {
    margin-right: 1em; }

.basket-view-events__subtitle-header {
  margin-bottom: 0; }

.basket-total-row__container {
  margin-bottom: 40px; }
  @media (max-width: 767px) {
    .basket-total-row__container {
      margin-bottom: 25px; } }

.basket-total-row__total-label {
  float: left;
  padding: 0; }
  @media (max-width: 767px) {
    .basket-total-row__total-label {
      font-size: 12px; } }

.basket-total-row__discount-name {
  padding-left: 1em;
  font-size: 12px; }

.basket-total-row__fade-info {
  font-size: 14px;
  color: #666; }
  @media (max-width: 767px) {
    .basket-total-row__fade-info {
      font-size: 13px; } }

.basket-total-row__total-amount {
  float: right;
  font-weight: bold;
  font-size: 16px; }
  .basket-total-row__total-amount--grand {
    font-size: 36px;
    font-weight: normal; }
  .basket-total-row__total-amount--disabled {
    color: #999; }

.restore-info {
  font-weight: normal; }
  .restore-info h4 {
    display: inline; }
  .restore-info a {
    text-decoration: underline; }
  @media (max-width: 767px) {
    .restore-info {
      font-size: 10px; } }

.form-widget--discount {
  position: relative; }

.discount-form-row .form-widget {
  margin-top: 20px;
  margin-bottom: 30px; }
  @media (min-width: 700px) {
    .discount-form-row .form-widget {
      margin-top: 36px; } }

.discount-form-row .discount-redeem {
  width: 13.57143em !important;
  height: 2.57143em !important;
  line-height: 22px !important;
  margin-top: 15px;
  margin-left: 0 !important; }
  @media (min-width: 700px) {
    .discount-form-row .discount-redeem {
      position: absolute;
      top: 7px;
      left: 335px;
      margin-top: 0;
      margin-left: 25px !important; } }
  .discount-form-row .discount-redeem:hover {
    color: #fff; }

/** Empty Basket page **/
.empty-msg .title {
  display: inline-block;
  font-size: 2.4em;
  text-transform: uppercase;
  margin-bottom: 25px; }
  @media (max-width: 475px) {
    .empty-msg .title {
      display: block;
      margin-bottom: 10px; } }

.empty-msg p {
  font-size: 1.133em; }

.empty-msg a {
  text-decoration: underline; }

.empty-msg .basket-empty-icon {
  margin-right: 40px; }
  @media (max-width: 767px) {
    .empty-msg .basket-empty-icon {
      margin-right: 20px; } }

@media (max-width: 475px) {
  .empty-msg br {
    display: none; } }

.basket-empty-icon {
  display: inline-block;
  height: 92px; }
  @media (max-width: 767px) {
    .basket-empty-icon {
      height: 50px; } }
  .basket-empty-icon__stroke {
    fill: none;
    stroke: #000;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55px; }

@media (min-width: 768px) and (max-width: 991px) {
  .basket-wrapper {
    padding: 20px; } }

.ticket-details {
  font-family: "Open Sans", sans-serif; }
  .ticket-details .details-wrapper {
    padding-top: 20px; }

.fieldset__legend {
  color: #ff0040; }

/** Mutiple tickets page **/
.ticket-details.multiple .details-wrapper {
  display: none; }

.ticket-details.multiple .no-pad h3 {
  margin-top: 0; }

.white-wrapper .ticket {
  margin-bottom: 0; }

.dis-link {
  margin-bottom: 10px; }
  .dis-link a {
    color: #666;
    font-size: 10px;
    text-decoration: underline;
    font-weight: normal; }

.ukathlete-urnwrapper {
  position: relative; }
  .ukathlete-urnwrapper .form-widget {
    margin-top: 10px; }

.ukathlete-submit {
  margin-left: 0 !important;
  margin-top: 10px;
  min-width: 159px;
  height: 36px;
  line-height: 22px; }
  .ukathlete-submit:hover {
    color: #fff; }

.buy-gear {
  background: #f0f0f0 url(/images/teams-bg.jpg) no-repeat center top;
  background-size: cover; }

.buygear-items .container {
  padding-bottom: 47px; }
  @media (max-width: 767px) {
    .buygear-items .container {
      padding-bottom: 35px; } }

.merch-item {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  overflow: visible;
  margin-bottom: 20px;
  width: 100%; }
  @media (max-width: 767px) {
    .merch-item {
      border-radius: 0;
      margin-bottom: 0;
      padding: 15px;
      padding-bottom: 0;
      border-top: 1px #c2c2c2 solid; }
      .merch-item:first-of-type {
        border-top: none;
        border-radius: 10px 10px 0 0; }
      .merch-item:last-of-type {
        border-radius: 0 0 10px 10px; } }
  .merch-item__details-container {
    margin-top: 20px;
    width: 100%; }
    @media (max-width: 767px) {
      .merch-item__details-container {
        margin-top: 10px; } }
  .merch-item__title {
    margin-bottom: 0; }
    @media (max-width: 767px) {
      .merch-item__title {
        font-size: 18px; } }
  @media (max-width: 767px) {
    .merch-item__item-price {
      font-size: 12px;
      margin-bottom: 15px; } }
  .merch-item__description {
    color: #666;
    margin-bottom: 25px; }
    @media (max-width: 767px) {
      .merch-item__description {
        color: #000;
        font-size: 10px;
        margin-bottom: 15px; } }
  .merch-item__img-holder {
    margin-right: 65px;
    width: 35%; }
    .merch-item__img-holder img {
      max-width: 100%; }
    @media (max-width: 767px) {
      .merch-item__img-holder {
        margin: 0 0 20px;
        width: auto;
        text-align: center; }
        .merch-item__img-holder img {
          width: auto; } }
  .merch-item__button-wrapper {
    display: flex;
    max-width: 330px;
    margin-bottom: 5px; }
    @media (max-width: 767px) {
      .merch-item__button-wrapper {
        justify-content: space-between; } }
    .merch-item__button-wrapper .grey-btn.counter {
      margin-right: 25px; }
  .merch-item__price {
    font-size: 25px;
    color: #000; }
  .merch-item__items-container {
    margin-top: 15px;
    margin-bottom: 20px; }

.item-detail {
  margin-bottom: 10px; }
  .item-detail__label {
    display: block;
    text-transform: uppercase;
    font-weight: normal; }
    @media (max-width: 767px) {
      .item-detail__label {
        font-size: 12px; } }

.merchandise-delivery .widget-heading {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: initial; }

.merchandise-delivery .details-wrapper {
  padding-left: 376px; }
  @media (max-width: 1199px) {
    .merchandise-delivery .details-wrapper {
      padding-left: 290px; } }
  @media (max-width: 991px) {
    .merchandise-delivery .details-wrapper {
      padding-left: 162px; } }
  @media (max-width: 767px) {
    .merchandise-delivery .details-wrapper {
      padding-left: 15px; } }

.form-widget--merch-attribute {
  display: inline-block;
  width: 180px !important;
  margin-right: 10px;
  vertical-align: top; }
  .form-widget--merch-attribute .Select {
    width: 180px !important; }
  @media (max-width: 767px) {
    .form-widget--merch-attribute {
      display: block;
      width: 100% !important; }
      .form-widget--merch-attribute .Select {
        width: 100% !important;
        max-width: 330px; } }

/** Delivery details page **/
.delivery-form .white-wrapper .content-inner {
  margin: 0 auto;
  max-width: 348px;
  width: 100%; }
  .delivery-form .white-wrapper .content-inner label {
    font-size: 1.067em;
    margin-bottom: 20px; }

/** Merchandise order summary **/
.merchandise-purchase .content-inner {
  padding: 15px; }
  @media (max-width: 767px) {
    .merchandise-purchase .content-inner {
      padding: 0; } }

.merchandise-purchase .del-add {
  border-top: 1px solid #d8d8d8;
  padding: 20px 0 0 20px; }
  .merchandise-purchase .del-add h4 {
    margin-bottom: 0; }
  .merchandise-purchase .del-add p {
    font-family: "Open Sans", sans-serif;
    color: #666;
    opacity: 0.6;
    font-size: 0.933em;
    line-height: 1.286em; }

@media (max-width: 767px) {
  .merchandise-purchase table.table thead {
    display: none; } }

.merchandise-purchase table.table th {
  color: #666;
  text-transform: uppercase;
  padding: 25px;
  border-bottom: none;
  font-family: "Lato", sans-serif; }

.merchandise-purchase table.table > tbody > tr > td {
  border-top: none;
  vertical-align: middle;
  padding: 25px; }

.merchandise-purchase table.table h3,
.merchandise-purchase table.table h4 {
  margin-bottom: 0; }

@media (max-width: 767px) {
  /** Merchandise order summary **/ }

@media (max-width: 767px) {
  .merchandise-purchase table, .merchandise-purchase thead, .merchandise-purchase tbody {
    display: block; } }

@media (min-width: 768px) {
  .merch-summary-item:nth-child(odd) {
    background-color: rgba(216, 216, 216, 0.25); } }

@media (max-width: 767px) {
  .merch-summary-item {
    border-bottom: 1px solid #d8d9da;
    padding: 20px 15px !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; } }

@media (max-width: 767px) {
  .merch-summary-item__label {
    display: block;
    padding: 0 !important;
    width: 100%; } }

.merch-summary-item__label h4 {
  text-align: left; }

.merch-summary-item__attributes, .merch-summary-item__prices {
  font-family: "Lato", sans-serif;
  font-weight: 500; }
  @media (max-width: 767px) {
    .merch-summary-item__attributes, .merch-summary-item__prices {
      font-size: 10px;
      display: inline-block; } }

.merch-summary-item__prices {
  text-align: right; }

@media (max-width: 767px) {
  .merch-summary-shipping {
    padding: 20px 15px; } }

@media (max-width: 767px) {
  .merch-summary-shipping__label h4 {
    font-size: 10px; } }

.merch-summary-shipping__price {
  text-align: right;
  font-family: "Lato", sans-serif;
  font-weight: 500; }
  @media (max-width: 767px) {
    .merch-summary-shipping__price {
      font-size: 10px; } }

.merch-summary-total__label {
  font-size: 1.067em;
  text-align: right;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif; }
  @media (max-width: 767px) {
    .merch-summary-total__label {
      float: left; } }

.merch-summary-total__price {
  text-align: right;
  font-size: 36px; }
  @media (max-width: 767px) {
    .merch-summary-total__price {
      float: right; } }

.fans-page {
  background: black url(/images/fans-bg.jpg) no-repeat center top;
  background-size: cover; }
  .fans-page .main-container {
    padding-bottom: 47px; }
    @media (max-width: 768px) {
      .fans-page .main-container {
        padding-bottom: 20px; } }

.fans-input-group {
  display: flex;
  flex-wrap: wrap; }
  .fans-input-group .form-widget-element {
    margin-bottom: 10px; }

.fans-input-wrapper {
  width: 348px; }

.fans-info-text {
  max-width: 500px; }
  @media (max-width: 767px) {
    .fans-info-text {
      font-size: 12px;
      max-width: 330px; } }

.fans-footer-buttons {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between; }
  @media (max-width: 767px) {
    .fans-footer-buttons {
      justify-content: center;
      max-width: 330px;
      margin-top: 20px; } }
  .fans-footer-buttons__invite {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    border-radius: 5px;
    background-color: #999;
    border: 2px solid #999;
    text-transform: uppercase;
    color: #fff;
    height: 36px;
    width: 190px;
    transition: opacity 0.2s; }
    .fans-footer-buttons__invite:hover {
      opacity: 0.8; }
    @media (max-width: 767px) {
      .fans-footer-buttons__invite {
        font-size: 12px;
        width: 260px; } }

.fan-item {
  width: 100%; }
  .fan-item__email, .fan-item__name {
    color: white;
    display: inline-block; }
  .fan-item__email {
    max-width: calc(100% - 200px);
    margin-left: 20px;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    margin-bottom: 25px;
    vertical-align: text-top;
    word-wrap: break-word; }
    @media (max-width: 767px) {
      .fan-item__email {
        margin-left: 0;
        margin-bottom: 15px;
        max-width: 100%; } }
  .fan-item__name {
    width: 180px;
    text-transform: capitalize;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    margin-bottom: 0; }
    @media (max-width: 767px) {
      .fan-item__name {
        font-size: 12px;
        width: 100%; } }

.fans-list {
  background: url(/images/wave_ongradient-02.png), linear-gradient(126deg, #ea2322 0%, #232073 100%);
  background-size: 100%; }
  @media (max-width: 767px) {
    .fans-list {
      padding: 0 !important;
      background-size: 200%; } }
  .fans-list .content-inner {
    padding: 35px 40px 30px;
    -webkit-column-count: 2;
            column-count: 2; }
    @media (max-width: 767px) {
      .fans-list .content-inner {
        padding: 20px 15px 30px;
        -webkit-column-count: 1;
                column-count: 1; } }

.fans-list-titlecontainer {
  border-bottom: 1px solid white; }
  .fans-list-titlecontainer h3 {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
    margin-bottom: 0;
    color: white; }
    @media (max-width: 767px) {
      .fans-list-titlecontainer h3 {
        padding: 15px; } }

.fans-content .ticket {
  margin-bottom: 5px; }

@media (max-width: 767px) {
  .fans-form {
    padding: 20px 15px 30px; } }

.summary__user,
.summary__email {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.3; }

.summary-widget {
  font-size: 15px;
  line-height: 1.3; }
  .summary-widget dt {
    font-size: 12px;
    color: #666;
    font-weight: normal; }

.white-wrapper.payment-table {
  padding-top: 10px;
  padding-bottom: 40px; }
  @media (max-width: 767px) {
    .white-wrapper.payment-table {
      padding-top: 0;
      padding-bottom: 23px; } }

.white-wrapper.total-table {
  padding-top: 23px;
  padding-bottom: 23px; }

.summary-payment-table {
  font-size: 15px;
  width: 100%; }
  .summary-payment-table__total-row {
    vertical-align: middle; }
    .summary-payment-table__total-row .label {
      color: #ff0040;
      font-size: 25px;
      line-height: 1em;
      font-family: "Open Sans", sans-serif;
      font-weight: normal;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .summary-payment-table__total-row .label {
          font-size: 18px; } }
    .summary-payment-table__total-row .total {
      font-size: 36px;
      font-family: "Open Sans", sans-serif; }
      @media (max-width: 767px) {
        .summary-payment-table__total-row .total {
          font-size: 18px; } }
  .summary-payment-table__merch-row {
    vertical-align: middle; }
    .summary-payment-table__merch-row .label {
      font-size: 18px; }
    .summary-payment-table__merch-row .attributes-desc {
      font-size: 12px; }
    .summary-payment-table__merch-row .total {
      font-size: 18px;
      font-family: "Open Sans", sans-serif; }
  .summary-payment-table__note {
    text-align: left !important; }
    @media (max-width: 767px) {
      .summary-payment-table__note {
        font-size: 12px;
        padding-top: 10px; } }

/** Teams page **/
.teams-page {
  background: #f0f0f0 url(/images/fans-bg.jpg) no-repeat center top;
  background-size: cover; }

.teams-manage-page {
  background: #f0f0f0 url(/images/manage-teams-bg.jpg) no-repeat center top;
  background-size: cover;
  background-color: black; }

.team-manage .container {
  padding-bottom: 60px; }
  @media (max-width: 768px) {
    .team-manage .container {
      padding-bottom: 33px; } }

.team-wrapper .ticket {
  margin-bottom: 5px; }

.team-wrapper .top-section {
  margin-bottom: 0; }

.team-wrapper form .form-group:first-child {
  margin-bottom: 20px; }

/** Team page banner **/
.teams-banner-layout {
  border-radius: 2px;
  background-image: linear-gradient(134deg, #fff 0%, #fff 100%);
  height: 290px;
  width: 100%;
  overflow: hidden; }
  .teams-banner-layout .item {
    display: table;
    height: 100%;
    text-align: center;
    width: 100%; }
  .teams-banner-layout .content-inner {
    display: table-cell;
    vertical-align: middle;
    height: 100%; }
  .teams-banner-layout h2,
  .teams-banner-layout h4 {
    color: #fff;
    margin-bottom: 0; }

/** Team logged in page **/
.team-joined .white-wrapper {
  margin-bottom: 5px; }

.team-joined .title {
  padding: 32px 0 35px; }
  .team-joined .title h3 {
    margin-bottom: 0; }

/** Team members section **/
.team-members .content-inner {
  padding: 10px 40px; }

.team-members h4 {
  margin-bottom: 0; }

.teams-activity-pane {
  font-family: "Open Sans", sans-serif; }
  .teams-activity-pane .content-inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: none; }
  .teams-activity-pane .activity {
    margin: 0 auto;
    max-width: 404px;
    width: 100%; }
    .teams-activity-pane .activity .item {
      margin-bottom: 52px; }
    .teams-activity-pane .activity .item:last-child {
      margin-bottom: 36px; }
    .teams-activity-pane .activity .cnt-right {
      color: #000;
      width: calc(100% - 136px); }
    .teams-activity-pane .activity h4 {
      font-size: 1.200em;
      margin-bottom: 0;
      text-transform: none;
      padding-top: 0; }
    .teams-activity-pane .activity span {
      display: block;
      font-size: 0.800em;
      margin-bottom: 4px; }
  .teams-activity-pane a.link {
    color: #7f7f7f;
    font-size: 1.133em;
    line-height: 1.529em;
    text-decoration: underline; }

@media (max-width: 767px) {
  .team-join-pane .content-inner,
  .team-create-pane .content-inner,
  .teams-manage-pane .content-inner {
    max-width: none; } }

.teams-contact-pane .content-inner {
  padding-left: 40px;
  padding-right: 40px;
  max-width: none; }

.teams-contact-pane form .form-control {
  max-width: none; }

.teams-contact-pane form label {
  font-size: 1.200em; }

.team-activity-social-link {
  margin: 0;
  padding: 0; }
  .team-activity-social-link li {
    list-style: none;
    display: inline-block;
    margin-right: 20px; }

.team-icon {
  fill: none;
  stroke: #2083fe;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 30px; }
  @media (max-width: 767px) {
    .team-icon {
      width: 20px;
      height: 20px; } }

.teams-footer {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  padding: 0 40px 40px;
  width: 100%; }
  @media (max-width: 767px) {
    .teams-footer {
      justify-content: center;
      max-width: 330px; }
      .teams-footer .btn-grey-pill {
        font-size: 12px;
        width: 260px; }
      .teams-footer .btn-grey-pill:first-of-type {
        margin-top: 20px; } }

.team-members-table {
  width: 100%; }
  .team-members-table tr {
    border: none !important; }
    .team-members-table tr td {
      padding-top: 10px;
      padding-bottom: 10px;
      vertical-align: middle; }
      @media (max-width: 767px) {
        .team-members-table tr td {
          padding: 0; } }
    @media (max-width: 767px) {
      .team-members-table tr {
        border-bottom: 0.5px solid #d0d0d0;
        display: block;
        padding: 10px 0; } }

.team-list-member a, .team-list-member h4 {
  font-family: "Lato", sans-serif; }

.team-list-member__name {
  width: 200px; }
  .team-list-member__name h4 {
    font-size: 15px; }
    @media (max-width: 767px) {
      .team-list-member__name h4 {
        font-size: 12px; } }
  @media (max-width: 767px) {
    .team-list-member__name {
      display: block;
      width: 100%; } }

.team-list-member__email a {
  color: #000;
  font-size: 0.800em;
  font-size: 12px;
  text-transform: uppercase; }

@media (max-width: 767px) {
  .team-list-member__email {
    font-size: 12px;
    display: block;
    width: 100%; } }

.team-list-member__link a, .team-list-member__remove a {
  font-size: 15px;
  text-decoration: underline; }
  @media (max-width: 767px) {
    .team-list-member__link a, .team-list-member__remove a {
      font-size: 12px; } }

.team-list-member__remove {
  width: 90px; }
  .team-list-member__remove a {
    color: #7f7f7f; }

.team-list-member__link {
  width: 135px; }
  .team-list-member__link a {
    color: #fb4c04; }

@media (max-width: 767px) {
  .title-wrapper {
    margin-bottom: 30px; }
  .teams-banner-layout {
    height: 200px; }
  /** Team joined page **/
  .team-joined .title {
    padding: 25px 10px 15px; }
  .team-joined .teams-contact-pane .content-inner,
  .team-joined .team-members .content-inner,
  .team-joined .teams-activity-pane .content-inner {
    padding: 20px 15px; }
  .teams-activity-pane .activity .round {
    margin-right: 15px;
    width: 80px;
    height: 80px;
    line-height: 80px; }
  .teams-activity-pane .activity .cnt-right {
    width: calc(100% - 95px); } }

.team-registration-section {
  margin-top: 8px; }

.thank-you {
  background: none; }
  .thank-you .main-container {
    padding-bottom: 115px; }
    @media (max-width: 767px) {
      .thank-you .main-container {
        padding-bottom: 40px; } }
    .thank-you .main-container div.text-wrapper {
      padding-bottom: 30px; }

@media (max-width: 767px) {
  .thank-you .page-title {
    color: #fff; } }

.top-links {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
  align-items: center; }
  .top-links__view-receipt {
    display: inline-block;
    text-transform: uppercase;
    background-color: #fff;
    color: #000;
    font-size: 0.93333em;
    height: 50px;
    line-height: 50px;
    padding: 0 35px;
    width: 170px;
    border-radius: 5px;
    text-align: center;
    margin-left: 30px;
    transition: opacity 0.2s; }
    @media (max-width: 767px) {
      .top-links__view-receipt {
        font-size: 10px; } }
    .top-links__view-receipt:hover, .top-links__view-receipt:focus, .top-links__view-receipt:active {
      text-decoration: none;
      color: #000;
      opacity: 0.8; }
  .top-links__ref {
    font-size: 0.93333em;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    margin-left: 100px; }
    @media (max-width: 767px) {
      .top-links__ref {
        font-size: 10px; } }

.msg-section {
  color: #fff;
  padding-top: 50px;
  padding-left: 0;
  padding-right: 0;
  max-width: 765px;
  width: 100%; }
  @media (max-width: 767px) {
    .msg-section {
      padding: 20px 15px 0; } }
  .msg-section__heading {
    color: inherit;
    font-size: 2.5em;
    line-height: 1.1em; }
    @media (max-width: 767px) {
      .msg-section__heading {
        font-size: 18px;
        line-height: 26px; } }
  .msg-section__body {
    font-size: 1.063em; }
    @media (max-width: 767px) {
      .msg-section__body {
        font-size: 12px; } }

/** Img layout **/
.thanks-images {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  text-align: center; }
  .thanks-images__item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 50%;
    min-width: 430px;
    height: 430px;
    color: #fff;
    padding-left: 32px;
    padding-right: 32px;
    background-color: black;
    overflow: hidden;
    padding: 0;
    border-image-width: 0; }
    .thanks-images__item:hover .thanks-images__item__image {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      opacity: 1; }
    @media (max-width: 767px) {
      .thanks-images__item {
        padding: 0;
        min-width: 280px;
        width: 100%;
        height: 280px;
        flex-basis: 100%; } }
    .thanks-images__item:nth-last-child(3):first-child {
      flex-basis: 100%; }
    .thanks-images__item__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100.5%;
      height: 100.5%;
      -o-object-fit: cover;
         object-fit: cover;
      background-size: cover;
      opacity: 0.5;
      transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
      transition: transform 0.2s ease-out, opacity 0.2s ease-out;
      transition: transform 0.2s ease-out, opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
      border-image-width: 0; }
    .thanks-images__item__bottom {
      z-index: 10; }
    .thanks-images__item__title {
      display: table-cell;
      color: inherit;
      font-size: 2.5em;
      vertical-align: middle;
      padding-top: 176px;
      font-size: 40px;
      z-index: 11; }
      @media (max-width: 767px) {
        .thanks-images__item__title {
          padding-top: 90px;
          font-size: 20px; } }
    .thanks-images__item__desc {
      font-size: 12px;
      max-width: 452px; }
      @media (max-width: 767px) {
        .thanks-images__item__desc {
          width: 256px;
          font-size: 11px; } }
    .thanks-images__item__btn {
      border: 2px solid #fff;
      border-radius: 5px;
      color: #fff;
      display: inline-block;
      font-size: 0.875em;
      height: 36px;
      line-height: 32px;
      text-transform: uppercase;
      width: 180px;
      transition: opacity 0.2s;
      margin-bottom: 30px; }
      .thanks-images__item__btn:hover {
        text-decoration: none;
        opacity: 0.6;
        color: #fff; }

.tickets-header {
  margin-bottom: 2em;
  font-size: 1.333em;
  line-height: 1.250em;
  opacity: 0.5; }
  @media (max-width: 767px) {
    .tickets-header {
      margin-bottom: 1em; } }

.tickets-table {
  margin-bottom: 0; }
  @media (max-width: 767px) {
    .tickets-table {
      margin-bottom: 0;
      font-size: 12px; } }

.ticket-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
  padding: 14px 40px; }
  .ticket-actions__remove {
    transition: color 0.2s;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center; }
    .ticket-actions__remove:hover {
      color: #999999; }
    .ticket-actions__remove:hover {
      text-decoration: none; }
    .ticket-actions__remove .close-cross {
      height: 1.2em;
      width: 1.2em;
      margin-right: 0.5em; }
  .ticket-actions__next, .ticket-actions__prev {
    transition: color 0.2s;
    color: #000; }
    .ticket-actions__next:hover, .ticket-actions__prev:hover {
      color: #666666; }
    .ticket-actions__next:hover, .ticket-actions__prev:hover {
      text-decoration: none; }
  .ticket-actions__next {
    margin-left: auto; }
  @media (max-width: 500px) {
    .ticket-actions {
      flex-direction: column;
      align-items: stretch; }
      .ticket-actions__remove, .ticket-actions__next, .ticket-actions__prev {
        font-size: 12px;
        padding-top: 11px;
        padding-bottom: 11px;
        text-align: center;
        border: 2px #999 solid;
        border-radius: 5px;
        transition: color 0.2s, background-color 0.2s, border-color 0.2s;
        margin: 0; }
      .ticket-actions__remove {
        color: #999;
        justify-content: center;
        margin-bottom: 20px; }
      .ticket-actions__remove:hover {
        color: #cccccc;
        border-color: #cccccc; }
      .ticket-actions__next, .ticket-actions__prev {
        background-color: #999;
        color: #fff;
        margin-bottom: 16px; }
      .ticket-actions__next:hover, .ticket-actions__prev:hover {
        background-color: #cccccc;
        border-color: #cccccc;
        color: #fff; } }

.event-address {
  background-color: #e1e1e1;
  border-radius: 3px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  height: 250px;
  position: relative;
  width: 100%;
  cursor: pointer; }

/** Payment Details **/
.payment-amount {
  border-bottom: 1px solid #f0f0f0;
  padding: 40px 0 40px 0; }
  .payment-amount__wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 660px;
    display: flex;
    align-items: baseline;
    justify-content: space-between; }
    @media (max-width: 767px) {
      .payment-amount__wrapper {
        margin-left: 15px;
        margin-right: 15px; } }
  .payment-amount__label {
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif; }
  .payment-amount__amount {
    font-family: "Open Sans", sans-serif;
    font-size: 2.400em;
    font-weight: normal; }

.payment-form {
  padding: 10px 0 30px 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 660px; }
  @media (max-width: 767px) {
    .payment-form {
      padding-left: 15px;
      padding-right: 15px; } }
  .payment-form .img-holder {
    margin-bottom: 20px; }

.payment-page .container {
  padding-bottom: 47px; }
  @media (max-width: 768px) {
    .payment-page .container {
      padding-bottom: 20px; } }

.purchase_history-page {
  background-color: white;
  height: 100%; }

.purchase-transaction {
  border-bottom: 1px solid #D0D0D0;
  padding-bottom: 15px; }

.purchase-transaction:last-of-type {
  border-bottom: none; }

.transaction-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 30px;
  padding-bottom: 40px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif; }
  @media (max-width: 767px) {
    .transaction-meta {
      align-items: baseline;
      padding-left: 0;
      padding-right: 0;
      padding-top: 15px;
      padding-bottom: 10px;
      font-size: 10px; } }
  @media (max-width: 767px) {
    .transaction-meta__date__label {
      display: none; } }
  .transaction-meta__ref-container {
    display: flex;
    align-items: center;
    flex-direction: row; }
    @media (max-width: 767px) {
      .transaction-meta__ref-container {
        flex-direction: column-reverse;
        align-items: flex-end; } }
  .transaction-meta__ref {
    text-transform: uppercase; }
  .transaction-meta__link {
    text-transform: uppercase;
    border: 2px solid rgba(0, 0, 0, 0.4);
    border-radius: 1.75em;
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
    text-transform: uppercase;
    font-family: "sf_ui_textmedium", "Helvetica Neue", Helvetica, serif;
    font-size: 1em;
    line-height: 2.57143em;
    padding: 0;
    min-width: 13.57143em;
    transition: all 0.2s;
    margin-left: 30px; }
    .transaction-meta__link:hover {
      text-decoration: none;
      color: rgba(0, 0, 0, 0.6);
      border-color: rgba(0, 0, 0, 0.6); }
    @media (max-width: 767px) {
      .transaction-meta__link {
        margin-bottom: 15px; } }

.transaction-table {
  width: 100%; }
  @media (max-width: 767px) {
    .transaction-table thead {
      display: none; } }
  @media (max-width: 767px) {
    .transaction-table tbody {
      display: block; } }
  .transaction-table tbody tr td:first-child {
    padding-left: 25px; }
    @media (max-width: 767px) {
      .transaction-table tbody tr td:first-child {
        padding-left: 10px; } }
  .transaction-table tbody tr td:last-child {
    padding-right: 25px; }
    @media (max-width: 767px) {
      .transaction-table tbody tr td:last-child {
        padding-right: 10px; } }
  .transaction-table__heading {
    font-family: "Open Sans", sans-serif;
    font-size: 1.067em;
    font-weight: normal;
    letter-spacing: 0.2px;
    line-height: 1.250em;
    opacity: 0.5;
    text-transform: uppercase;
    padding-bottom: 35px; }
    .transaction-table__heading--item {
      padding-left: 25px; }
    .transaction-table__heading--amount {
      text-align: right;
      padding-right: 25px; }
  .transaction-table__amount {
    text-align: right;
    padding-bottom: 5px;
    margin-bottom: 0px; }
  .transaction-table .ticket-row:nth-child(odd) {
    background-color: rgba(216, 216, 216, 0.25); }
  @media (max-width: 767px) {
    .transaction-table .ticket-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; } }
  @media (max-width: 767px) {
    .transaction-table .ticket-row__ticket-col, .transaction-table .ticket-row__recipient-col {
      width: 100%; } }
  @media (max-width: 767px) {
    .transaction-table .ticket-row__ticket-col {
      padding-top: 10px;
      padding-bottom: 0; } }
  @media (max-width: 767px) {
    .transaction-table .ticket-row__recipient-col {
      padding-top: 0;
      padding-bottom: 10px; } }
  .transaction-table .ticket-row__ticket-name {
    font-size: 25px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px; }
  .transaction-table .ticket-row__festival-name {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px; }
    @media (max-width: 767px) {
      .transaction-table .ticket-row__festival-name {
        margin-bottom: 10px; } }
  .transaction-table .ticket-row__recipient {
    display: flex;
    justify-content: space-between; }
    @media (max-width: 767px) {
      .transaction-table .ticket-row__recipient {
        padding-left: 10px; } }
    .transaction-table .ticket-row__recipient__name {
      font-size: 16px;
      font-family: "Open Sans", sans-serif;
      padding-bottom: 5px;
      margin-bottom: 0px;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .transaction-table .ticket-row__recipient__name {
          font-size: 10px; } }
  .transaction-table .ticket-row__note {
    font-size: 10px;
    font-family: "Open Sans", sans-serif;
    margin-top: 7px;
    margin-bottom: 0; }
    @media (max-width: 767px) {
      .transaction-table .ticket-row__note {
        font-size: 8px; } }
  @media (max-width: 767px) {
    .transaction-table .subtotal-row {
      display: flex;
      justify-content: space-between; } }
  .transaction-table .subtotal-row__label, .transaction-table .subtotal-row__amount {
    padding-top: 15px;
    padding-bottom: 15px; }
    @media (max-width: 767px) {
      .transaction-table .subtotal-row__label, .transaction-table .subtotal-row__amount {
        padding-top: 10px;
        padding-bottom: 5px; } }
  .transaction-table .subtotal-row__label {
    text-transform: uppercase;
    text-align: left;
    font-size: 16px;
    font-family: "Open Sans", sans-serif; }
    @media (max-width: 767px) {
      .transaction-table .subtotal-row__label {
        font-size: 10px; } }
  .transaction-table .subtotal-row__amount {
    text-align: right;
    font-size: 16px;
    font-family: "Open Sans", sans-serif; }
    @media (max-width: 767px) {
      .transaction-table .subtotal-row__amount {
        font-size: 10px; } }
  @media (max-width: 767px) {
    .transaction-table .total-row {
      display: flex;
      justify-content: space-between; } }
  .transaction-table .total-row__label {
    text-transform: uppercase;
    text-align: right;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    vertical-align: top;
    line-height: 50px; }
    @media (max-width: 767px) {
      .transaction-table .total-row__label {
        font-size: 10px;
        text-align: left;
        line-height: 35px; } }
  .transaction-table .total-row__amount {
    text-align: right;
    font-size: 36px;
    font-family: "Open Sans", sans-serif; }
    @media (max-width: 767px) {
      .transaction-table .total-row__amount {
        font-size: 25px; } }
  @media (max-width: 767px) {
    .transaction-table .total-row__label, .transaction-table .total-row__amount {
      padding-top: 5px; } }

.terms--default-line {
  margin-bottom: 0.39cm; }

.terms--no-text-decoration {
  text-decoration: none; }

.terms--uppercase {
  text-transform: uppercase; }

.terms--avoid-page-break {
  page-break-after: avoid; }

.terms--avoid-page-before {
  page-break-before: always; }

.terms-ol--small-margin {
  padding-left: 1em; }

.terms-page p,
.terms-page li {
  line-height: 1.1; }

.terms-page ol {
  padding-left: 20px; }

.terms--letter-list li {
  display: list-item !important;
  list-style-type: lower-alpha !important; }

.terms--letter-list li:before {
  content: "" !important; }

.groupsales-terms-page h4 {
  display: inline-block;
  margin-bottom: 1em; }

.groupsales-terms-page ol {
  counter-reset: item; }

.groupsales-terms-page li {
  display: block; }

.groupsales-terms-page li:before {
  content: counters(item, ".") " ";
  counter-increment: item; }

.groupsales .tab-pane {
  padding: 2em; }

.groupsales-event-headerinfo {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .groupsales-event-headerinfo p:last-of-type {
    margin-bottom: 0; }

.group-sales-email__options {
  margin-bottom: 2em; }

.group-sales__payment-spinner {
  height: 200px; }

.disabled-tabs {
  position: absolute;
  width: 100%;
  height: 100%;
  background: red; }
