.loading-bar {
  pointer-events: none;
  opacity: 1;
  transition: opacity 200ms linear; }
  .loading-bar-finished {
    opacity: 0; }
  .loading-bar-inner {
    background: #29d;
    height: 2px;
    left: 0;
    position: fixed;
    top: 0;
    transition: width 200ms linear;
    z-index: 10; }
  .loading-bar-shadow {
    box-shadow: 0 0 10px #29d, 0 0 5px #29d;
    display: block;
    height: 100%;
    opacity: 1;
    position: absolute;
    right: 0;
    transform: rotate(3deg) translate(0px, -4px);
    width: 100px; }

.empty-state {
  padding: 48px 16px;
  text-align: center; }
  .empty-state-title {
    color: #aaa;
    font-size: 18px;
    font-weight: 600; }
  .empty-state-subtitle {
    color: #aaa;
    font-size: 14px;
    margin-top: 4px; }

.app-tab {
  border: 0;
  z-index: 5; }
  .app-tab-container {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: -1px; }
    .app-tab-container .container-fluid {
      padding: 0; }
  .app-tab .app-tab-link {
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 12px 16px;
    text-transform: uppercase; }
    .app-tab .app-tab-link.active {
      border-bottom-color: #333;
      color: #333; }

@charset "UTF-8";
.details-list {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 0; }
  .details-list .list-inline-item {
    display: inline; }
    .details-list .list-inline-item:not(:last-child) {
      margin-right: 4px; }
      .details-list .list-inline-item:not(:last-child)::after {
        content: '\B7';
        margin-left: 4px; }
  .details-list-icon {
    fill: currentColor;
    height: 16px;
    margin-top: -3px;
    margin-right: 4px;
    width: 16px; }
  .details-list-sm {
    font-size: 12px; }

.app-image {
  height: 100%;
  width: 100%; }
  .app-image-hover {
    background-color: #000;
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: opacity 200ms;
    width: 100%; }
  .app-image-link {
    outline: none; }
    .app-image-link:active .app-image-hover, .app-image-link:focus .app-image-hover, .app-image-link:hover .app-image-hover {
      opacity: 0.1; }
  .app-image-border {
    display: block;
    overflow: hidden;
    position: relative; }
    .app-image-border::after {
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: inherit;
      bottom: 0;
      content: '';
      left: 0;
      position: absolute;
      right: 0;
      top: 0; }
  .app-image-rounded {
    border-radius: 50%; }

.course-pin {
  background-color: #c50;
  border-radius: 50% 50% 0;
  height: 32px;
  transform: rotate(45deg) translate(calc(-32px - 6px), calc(-32px / 2));
  width: 32px; }
  .course-pin-img {
    background-color: #e5e5e5;
    left: 4px;
    top: 4px;
    transform: rotate(-45deg); }

.course-map-marker {
  background-color: #007bff;
  border: 2px solid #fff;
  height: 16px;
  border-radius: 999px;
  margin-left: calc(16px / 2 - 16px);
  margin-top: calc(16px / 2 - 16px);
  width: 16px; }
  .course-map-marker-start {
    background-color: #27ae60; }
  .course-map-marker-finish {
    background-color: #000; }

.mouse-indicator-data text {
  font-size: 10px; }

.mouse-indicator-line {
  stroke: rgba(0, 0, 0, 0.4);
  stroke-width: 1px; }

.elevation-chart .area {
  fill: #000;
  fill-opacity: 0.1; }
  .elevation-chart .area.progress {
    fill: rgba(0, 123, 255, 0.5);
    fill-opacity: 1; }

.elevation-chart .axis text {
  fill: rgba(0, 0, 0, 0.3);
  font-size: 10px; }

.elevation-chart .axis path,
.elevation-chart .axis line {
  fill: none;
  stroke: rgba(0, 0, 0, 0.05);
  shape-rendering: crispEdges; }

.elevation-chart .axis .domain {
  stroke: none; }

.elevation-chart .x-axis text {
  text-anchor: start;
  transform: translate(3px, -10px); }

.elevation-chart .y-axis text {
  text-anchor: start;
  transform: translate(10px, -8px); }

.elevation-chart .y-axis-background text {
  display: none; }

.elevation-chart-indicator {
  pointer-events: none;
  top: -10px !important; }
  .elevation-chart-indicator-inner {
    text-align: left; }

.icon-button {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.7);
  height: 36px;
  outline: none !important;
  padding: 0;
  text-align: center;
  transition-duration: 200ms;
  transition-property: background-color, color;
  width: 36px;
  z-index: 5; }
  .icon-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: black; }
  .icon-button:active {
    background-color: rgba(0, 0, 0, 0.1); }
  .icon-button-light {
    color: rgba(255, 255, 255, 0.7); }
    .icon-button-light:hover {
      background-color: rgba(255, 255, 255, 0.25);
      color: white; }
    .icon-button-light:active {
      background-color: rgba(255, 255, 255, 0.4); }
  .icon-button-icon {
    fill: currentColor;
    height: 24px;
    width: 24px; }
  .icon-button-small {
    height: 24px;
    width: 24px; }
    .icon-button-small .icon-button-icon {
      height: 17px;
      margin-top: -2px;
      width: 17px; }

.close {
  font-weight: 300; }
  .close-lg {
    font-size: 2rem; }

.cover-photo {
  background-color: #e5e5e5;
  height: 132px;
  overflow: hidden;
  position: relative; }
  .cover-photo img {
    left: 50%;
    position: absolute;
    top: 25%;
    transform: translate(-50%, -25%); }

@media (min-width: 992px) {
  .cover-photo {
    height: 144px; } }

.app-form-label {
  color: #aaa;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase; }

.table {
  margin-bottom: 0; }
  .table thead th {
    color: #aaa;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05); }
  .table th:first-child,
  .table td:first-child {
    padding-left: 16px; }
  .table th:last-child,
  .table td:last-child {
    padding-right: 16px; }
  .table-responsive td, .table-responsive th {
    white-space: nowrap; }
  .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.03); }
  .table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05); }
  .table-sm td, .table-sm th {
    border: 0;
    font-size: 13px;
    line-height: 1;
    padding: 8px; }
  .table-sticky-header thead th {
    border: 0;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0; }
  .table-empty-row {
    background-color: transparent !important; }

.event-results {
  display: flex;
  flex-direction: column; }
  .event-results-form-container {
    padding: 12px 16px; }

.live-badge:empty {
  display: inline-block;
  padding: 5px; }

.profile-photo {
  background-color: #e5e5e5;
  background-size: cover;
  border-radius: inherit;
  height: 100%;
  width: 100%; }
  .profile-photo-border {
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block; }
  .profile-photo-container {
    background-color: #fff;
    border-radius: inherit;
    padding: 2px; }

.app-modal .modal-content {
  border: 0; }

.app-modal-header {
  align-items: center;
  border-color: rgba(0, 0, 0, 0.05);
  padding: 8px 8px 8px 16px;
  margin-bottom: -1px;
  z-index: 1; }

.app-modal-title {
  font-size: 18px;
  font-weight: 600; }

.app-modal-body, .app-modal-footer {
  border-color: rgba(0, 0, 0, 0.05);
  padding: 12px 16px; }

.app-modal-loader {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1; }

@media (max-width: 576px) {
  .app-modal-dialog {
    margin: 0; }
  .app-modal .modal-content {
    border-radius: 0; } }

.pane-header {
  align-items: center;
  background-color: #fff;
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  margin-bottom: -1px;
  padding: 12px 16px; }
  .pane-header-button-container {
    margin-right: 12px; }
  .pane-header-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase; }

@media (min-width: 992px) {
  .pane-header-button-container {
    display: none; } }

.entity-image {
  background-color: rgba(0, 0, 0, 0.1); }

.list-group-action-item {
  background-color: #fff;
  cursor: pointer; }
  .list-group-action-item:hover, .list-group-action-item:active {
    background-color: #f8f9fa; }
  .list-group-action-item-active, .list-group-action-item-active:hover {
    background-color: #e9ecef; }

.entity-body {
  flex-basis: 0;
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.4;
  margin-left: 12px;
  margin-top: 3px;
  min-width: 0; }

.entity-header {
  align-items: center;
  display: flex;
  justify-content: space-between; }
  .entity-header-primary {
    margin-right: 12px;
    min-width: 0; }

.entity-title {
  color: #333;
  font-size: 14px;
  margin-bottom: 1px; }
  .entity-title-link {
    color: inherit;
    outline: none; }
    .entity-title-link:active, .entity-title-link:focus, .entity-title-link:hover {
      color: inherit;
      text-decoration: underline; }

.entity-contents {
  margin-top: 4px; }

.topline {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0; }
  .topline-item {
    color: #aaa;
    flex: 1;
    font-size: 10px;
    line-height: 1em;
    padding-bottom: 2px;
    padding-top: 2px; }
    .topline-item-label {
      letter-spacing: 0.5px;
      margin-bottom: 4px;
      text-transform: uppercase; }
    .topline-item-data {
      color: #333;
      font-size: 28px;
      font-weight: 500;
      line-height: 1em;
      position: relative; }
    .topline-item + .topline-item {
      border-left: 1px solid rgba(0, 0, 0, 0.05);
      margin-left: 8px;
      padding-left: 8px; }
    .topline-item-annotation {
      margin-top: 4px; }
  .topline-center {
    text-align: center; }
    .topline-center .topline-item:first-child {
      padding-left: 8px; }
    .topline-center .topline-item:last-child {
      padding-right: 8px; }
  .topline-right {
    text-align: right; }
  .topline-delta {
    margin-left: 4px;
    position: absolute;
    top: 5px; }
    .topline-delta-icon {
      fill: #fff;
      height: 12px;
      margin: -4px 0 -2px -2px;
      width: 12px; }
  .topline-sm .topline-item {
    font-size: 9px; }
    .topline-sm .topline-item-data {
      font-size: 16px; }
  .topline-sm .topline-delta {
    top: 0; }

/* Tablet & Mobile */
@media (max-width: 767px) {
  .topline-item {
    font-size: 9px; }
    .topline-item-data {
      font-size: 18px; }
  .topline-delta {
    top: 0; }
    .topline-delta-icon {
      margin-right: -2px; }
    .topline-delta-number {
      display: none; }
  .topline-sm .topline-item-data {
    font-size: 14px; } }

.photo-uploader-button .icon-button-icon {
  height: 20px;
  margin-top: -4px;
  width: 20px; }

.photo-uploader-file-input {
  visibility: hidden;
  height: 0;
  width: 0; }

.app-nav {
  background-color: #fff;
  flex-direction: column;
  height: 100%;
  padding: 12px; }
  .app-nav-icon {
    fill: currentColor;
    height: 24px;
    margin-right: 8px;
    width: 24px; }
  .app-nav-item {
    border-radius: 999px; }
  .app-nav-link {
    align-items: center;
    color: #aaa;
    display: flex;
    flex-direction: row;
    height: 48px;
    padding: 10px 12px;
    text-align: center;
    text-align: left;
    width: auto; }
    .app-nav-link:focus, .app-nav-link:hover {
      background-color: rgba(0, 0, 0, 0.05);
      color: #333; }
    .app-nav-link:active,
    .app-nav .app-nav-link.active {
      background-color: rgba(0, 0, 0, 0.1);
      color: #333; }
  .app-nav-label {
    font-weight: 600; }
  .app-nav-divider {
    background-color: rgba(0, 0, 0, 0.05);
    height: 1px;
    margin: 12px -12px; }

@media (min-width: 992px) {
  .app-nav-icon {
    margin: 0; }
  .app-nav-label {
    display: none; } }

@media (min-width: 1200px) {
  .app-nav-icon {
    margin-right: 8px; }
  .app-nav-label {
    display: inline-block; } }

.settings-form-label {
  display: flex;
  justify-content: space-between; }

.settings-form-cover-photo {
  margin: -12px -16px 0;
  position: relative; }

.settings-form-profile-photo {
  display: inline-block;
  margin-bottom: 8px;
  margin-top: -96px;
  position: relative; }

.settings-form-photo-upload-button {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; }

.app-toast {
  border: 0; }
  .app-toast-header {
    justify-content: space-between;
    padding: 12px 16px; }
    .app-toast-header h3 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-top: 2px;
      text-transform: uppercase; }
  .app-toast-close-button {
    margin: -4px; }
  .app-toast-body {
    line-height: 1.4;
    padding: 12px 16px; }
  .app-toast-error .app-toast-header {
    background-color: #dc3645;
    color: #fff; }
  .app-toast-error .app-toast-body {
    background-color: #dc36451c;
    color: #dc3645; }

.profile-header {
  background-color: #fff;
  position: relative; }
  .profile-header-content {
    padding: 12px 16px;
    position: relative; }
  .profile-header-photo {
    margin-top: -76px; }
    .profile-header-photo-container {
      align-items: flex-start;
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px; }
  .profile-header-title {
    font-size: 24px;
    margin-bottom: 8px; }
  .profile-header-description {
    color: #aaa;
    font-size: 14px;
    margin-top: 8px; }
  .profile-header-sm .cover-photo {
    height: 96px; }
  .profile-header-sm .profile-header-photo {
    margin-top: -55px; }
  .profile-header-sm .profile-header-title {
    font-size: 20px; }

@media (min-width: 992px) {
  .profile-header-content {
    padding: 24px; }
  .profile-header-sm .profile-header-content {
    padding: 16px; } }

.entity-card {
  border-radius: .3rem;
  cursor: pointer;
  height: 100%;
  overflow: hidden;
  position: relative; }
  .entity-card:focus, .entity-card:hover {
    background-color: rgba(0, 0, 0, 0.02); }
  .entity-card::after {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: inherit;
    content: ' ';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    position: absolute; }
  .entity-card-profile-header {
    background-color: transparent; }

.rbt-menu {
  margin-bottom: 2px; }
  .rbt-menu > li {
    overflow: hidden;
    text-overflow: ellipsis; }
    .rbt-menu > li:focus {
      outline: none; }

.rbt .rbt-input-main::-ms-clear {
  display: none; }

.rbt-loader {
  -moz-animation: loader-animation 600ms infinite linear;
  -webkit-animation: loader-animation 600ms infinite linear;
  animation: loader-animation 600ms infinite linear;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  border-top-color: #1f8dd6;
  display: block;
  height: 16px;
  width: 16px; }
  .rbt-loader-lg {
    height: 20px;
    width: 20px; }

.rbt-aux {
  align-items: center;
  display: flex;
  bottom: 0;
  justify-content: center;
  pointer-events: none;
  /* Don't block clicks on the input */
  position: absolute;
  right: 0;
  top: 0;
  width: 34px; }
  .rbt-aux-lg {
    width: 46px; }

.has-aux .rbt-input {
  padding-right: 34px; }

.entity-search .dropdown-item.active .entity-title,
.entity-search .dropdown-item.active .details-list {
  color: #fff; }

@keyframes loader-animation {
  to {
    transform: rotate(1turn); } }

.layout-base-alert {
  left: 50%;
  position: absolute;
  top: 32px;
  transform: translateX(-50%);
  z-index: 10; }

.layout {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }
  .layout-container {
    display: flex;
    flex-direction: column;
    height: 100%; }
  .layout-nav {
    margin-right: -1px;
    z-index: 5; }
  .layout-contents {
    display: flex;
    flex: 1;
    flex-direction: column;
    height: 100%; }
  .layout-header {
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    margin-bottom: -1px;
    padding: 8px; }
    .layout-header-title {
      flex: 1;
      font-size: 18px;
      font-weight: 600;
      margin-left: 8px; }
  .layout-main {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: scroll; }
  .layout-primary {
    display: flex;
    flex-grow: 1;
    flex-direction: column; }

@media (max-width: 991px) {
  .layout-container.nav-open {
    overflow: hidden; }
  .layout-nav {
    display: none; }
    .layout-nav-container {
      height: 100%;
      width: 275px; }
    .layout-nav-overlay {
      background-color: rgba(0, 0, 0, 0.5);
      bottom: 0;
      display: none;
      position: absolute;
      top: 0;
      width: 100%;
      z-index: -1; }
    .nav-open .layout-nav {
      display: block;
      height: 100%;
      position: fixed;
      width: 100%;
      z-index: 10; }
    .nav-open .layout-nav-overlay {
      display: block; } }

@media (min-width: 992px) {
  .layout-header {
    display: none; }
  .layout-container {
    flex-direction: row;
    overflow: hidden; }
  .layout-nav {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
    min-width: 73px;
    width: 73px; }
  .layout-main {
    flex-direction: row;
    justify-content: center; }
  .layout-primary {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    margin-left: -1px;
    overflow: hidden;
    z-index: 5; }
    .layout-primary:first-child {
      margin-left: 0; }
  .layout-secondary {
    flex: 0 0 40%;
    max-width: 40%; } }

@media (min-width: 1200px) {
  .layout-nav {
    min-width: 216px;
    width: 216px; } }

.scroll-container {
  height: 100%;
  overflow: unset; }

@media (min-width: 992px) {
  .scroll-container {
    overflow: scroll; } }

.sticky-container {
  position: sticky;
  top: 0;
  z-index: 5; }


.index .hero-image {
  margin: 0;
  padding: 120px 0; }
  .index .hero-image-container {
    max-width: 600px;
    padding: 24px; }
    .index .hero-image-container p {
      color: #999;
      font-size: 18px;
      margin: 5px 0 20px; }

.index .featured-entity-container {
  padding: 24px; }

.index .featured-entity-row {
  margin-bottom: 24px; }
  .index .featured-entity-row:last-child {
    margin-bottom: 0; }

.index h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase; }

@media (max-width: 575px) {
  .index .hero-image {
    padding: 80px 0; }
    .index .hero-image-container {
      padding: 16px; }
    .index .hero-image h1 {
      font-size: 36px; }
  .index .featured-entity-container {
    padding: 16px; } }

.event-list-entity {
  flex-wrap: wrap; }

.event-list-badge {
  align-self: center;
  margin-left: 12px; }

.event-list-results {
  margin-top: 8px;
  width: 100%; }

@media (min-width: 768px) {
  .event-list-results {
    margin-top: 0;
    text-align: right;
    width: 50%; } }

.profile-info-col {
  margin-top: -210px; }

.profile-map {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1025px;
  height: 250px;
  position: relative; }

.profile-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  margin-bottom: 6px;
  overflow: hidden;
  display: inline-block; }
  .profile-card-body {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    padding: 4px 8px; }
  .profile-card h3 {
    flex-grow: 1;
    font-size: 16px;
    margin: 0; }
  .profile-card-icon {
    margin-top: -4px; }

.profile-nav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  .profile-nav-item {
    padding: 12px 32px 12px 16px; }
    .profile-nav-item:focus, .profile-nav-item:active, .profile-nav-item.active {
      outline: none; }
    .profile-nav-item-icon {
      fill: #aaa;
      height: 24px;
      position: absolute;
      right: 12px;
      width: 24px; }
    .active .profile-nav-item-icon {
      fill: #495057; }

.centered-container {
  display: grid;
  height: 100%;
  align-items: center;
  justify-content: center; }

.layout-full {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }
  .layout-full-close-button {
    position: fixed;
    right: 20px;
    top: 10px; }

.login-button {
  border: 0; }
  .login-button-icon {
    fill: #fff;
    float: left;
    height: 28px;
    margin-top: 1px;
    width: 28px; }
  .login-button-facebook {
    background-color: #3b5998; }
    .login-button-facebook:hover, .login-button-facebook:active, .login-button-facebook:not(:disabled):not(.disabled):active {
      background-color: #344e86; }
    .login-button-facebook:focus, .login-button-facebook:not(:disabled):not(.disabled):active:focus {
      box-shadow: 0 0 0 0.2rem rgba(59, 89, 152, 0.35); }
  .login-button-google {
    background-color: #ea4335; }
    .login-button-google:hover, .login-button-google:active, .login-button-google:not(:disabled):not(.disabled):active {
      background-color: #e82e1e; }
    .login-button-google:focus, .login-button-google:not(:disabled):not(.disabled):active:focus {
      box-shadow: 0 0 0 0.2rem rgba(234, 67, 53, 0.35); }
  .login-button-twitter {
    background-color: #1da1f2; }
    .login-button-twitter:hover, .login-button-twitter:active, .login-button-twitter:not(:disabled):not(.disabled):active {
      background-color: #0d95e8; }
    .login-button-twitter:focus, .login-button-twitter:not(:disabled):not(.disabled):active:focus {
      box-shadow: 0 0 0 0.2rem rgba(29, 161, 242, 0.35); }
  .login-button + .login-button {
    margin-top: 20px; }

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

.login .button-container {
  margin: 30px 0 100px; }

.login .disclaimer {
  font-size: .75rem;
  color: #aaa; }

.logo {
  color: inherit;
  fill: currentColor; }

@charset "UTF-8";
.footer {
  background-color: rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.3);
  padding: 24px; }
  .footer a {
    color: rgba(0, 0, 0, 0.3); }
    .footer a:hover {
      color: rgba(0, 0, 0, 0.4); }
  .footer-logo {
    flex: 1; }
  .footer-list {
    list-style: none;
    margin: 0;
    padding: 0; }

@media (min-width: 575px) {
  .footer {
    display: flex; }
    .footer-list-item {
      display: inline-block; }
      .footer-list-item + .footer-list-item:before {
        content: "\B7";
        margin: 0 10px; } }

@media (max-width: 576px) {
  .footer-list {
    margin-top: 12px; } }

.layout-marketing-nav {
  background-color: #fff;
  justify-content: space-between;
  padding: 12px 24px; }

.layout-marketing-container {
  font-size: 16px;
  padding: 24px; }

.layout-marketing h1, .layout-marketing h2 {
  margin-bottom: 24px; }

.layout-marketing section {
  margin-top: 60px; }

@media (min-width: 1200px) {
  .layout-marketing-container {
    max-width: 960px; } }

@media (min-width: 576px) {
  .layout-marketing-container {
    font-size: 20px;
    padding-bottom: 60px;
    padding-top: 60px; }
  .layout-marketing .btn-sm {
    display: none; } }

@media (max-width: 575px) {
  .layout-marketing h1, .layout-marketing h2 {
    margin-bottom: 12px; }
  .layout-marketing h1 {
    font-size: 36px; }
  .layout-marketing h2 {
    font-size: 24px; }
  .layout-marketing section {
    margin-top: 32px; }
  .layout-marketing .btn-md {
    display: none; } }

