/* Global styling */

html {
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 160%;
  min-height: 100%;
  height: 100%;
  color: #747474;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  image-rendering: -moz-auto;
  image-rendering: -o-auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -ms-interpolation-mode: nearest-neighbor;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

/* Logo */

.logo {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

/* Global basic component styles */

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', 'Helvetica neue', 'arial', sans-serif;
  font-weight: 800;
  color: #000;
  word-break: break-word;
  hyphens: auto;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: #000;
}

h1,
h2,
h3,
h4,
h5 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
}

h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

h4 {
  font-size: 18px;
}

p a {
  color: #c00830;
}

a {
  color: #4A4A4A;
}

a:hover,
a:focus,
a:active {
  color: #4A4A4A;
  text-decoration: none;
}

a.password-lost {
  text-decoration: underline;
}

.btn {
  color: #fff;
  border: none;
  padding: 8px 18px 9px;
  font-family: 'Montserrat', 'Helvetica neue', 'arial', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.43px;
  cursor: pointer;
  transition: none;
  font-weight: 500;
  border-radius: 100px;
}

.btn a:focus,
.btn a:active,
.btn a:hover,
.btn:focus,
.btn:active,
.btn:hover {
  color: #fff;
}

.btn:not(:hover) {
  transition: 0.2s ease all;
}

.btn:hover {
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2), 0 0 20px 0 rgba(0, 0, 0, 0.2);
  transition: 0.2s ease all;
  transform: scale(1.03);
}

.btn:focus,
.btn:active {
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease all;
}

.btn.btn-default {
  color: #555;
  border-color: #ccc;
  border: 1px solid #ccc;
  background-color: rgba(255,255,255,1);
}

.btn.btn-default:hover,
.btn.btn-default:focus,
.btn.btn-default:active {
  background-color: rgba(44,44,44,1);
  color: #fff;
}

.btn.btn-outline{
  background-color: rgba(0,0,0,0);
  border: 1px solid #fff !important;
}

.input-group .btn-outline{
  border-radius: 0;
}

.input-group .btn-outline:hover,
.input-group .btn-outline:focus,
.input-group .btn-outline:active{
  border-radius: 0;
    background-color: rgba(33,33,33,1);
  color: #fff;
  transform: none;
  box-shadow: none;
}

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

.btn.btn-primary,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
  background-image: -webkit-linear-gradient(right, #C7022B 0%, #DE2349 97%);
  background-image: -o-linear-gradient(right, #C7022B 0%, #DE2349 97%);
  background-image: linear-gradient(to left, #C7022B 0%, #DE2349 97%);
  background-color: #C7022B;
  border: none;
  color: #fff;
}

.btn.btn-secondary,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
  background-color: #333;
}

.btn.btn-success,
.btn.btn-success:hover,
.btn.btn-success:focus,
.btn.btn-success:active {
  background-color: #96b138;
}

.btn.btn-warning,
.btn.btn-warning:hover,
.btn.btn-warning:focus,
.btn.btn-warning:active {
  background-color: #f3b611;
}

.btn.btn-danger,
.btn.btn-danger:hover,
.btn.btn-danger:focus,
.btn.btn-danger:active {
  background-color: #a81818;
}

.btn.btn-inactive,
.btn.btn-inactive:focus,
.btn.btn-inactive:active {
  background-color: #fff;
  color: #ACACAC;
  border: 1px solid #ddd;
}

.btn.btn-inactive:hover {
  color: #FFFFFF;
  background-color: #DD0970;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #DD0970;
  border-color: #DD0970;
}

/* Padding utilities */

.p-30 {
  padding: 30px;
}

/* Tables */

.table-bordered {
  border-top: 1px solid #f00;
}

/* Inputs */

.input-wrap {
  position: relative;
}

.input-inline {
  display: inline-block;
}

label.label {
  margin-bottom: 5px;
}

/* Word wraps */

.word-wrap {
  word-break: keep-all;
  display: inline-block;
}


/* Global container/grid styles */

.wrapper {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  flex-shrink: 0;
}

footer {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  margin: auto 0 0 0;
  width: 100%;
  flex-shrink: 0;
  box-shadow: inset 0 0 10px #000000;
  position: relative;
}

.footer-bar {
  background-color: #fff;
  color: #bbb;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  width: 100%;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid #eee;
  text-align: center;
}

footer .sponsors {
  background-color: #f0f0f0;
  padding: 50px 30px 40px;
  border-top: 1px solid #e8e8e8;
}

footer .sponsors hr {
  border-color: #D9D9D9;
  margin-top: 30px;
  margin-bottom: 30px;
}

footer .sponsors .sponsor-image, footer .sponsors .main-sponsor {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 20px 15px 20px;
}

footer .main-sponsor img {
  width: 200px;
  margin-bottom: 25px;
}

footer .sponsors .sponsor-image img {
  max-width: calc(70px + 20%);
  max-height: 70px;
}

footer .sponsors .sponsor-image a {
  margin-bottom: auto;
  margin-top: auto;
}

footer .socials {
  background: #2E2E2E;
  padding: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}

footer .social-share-option {
  margin-left: 10px;
  margin-right: 10px;
  height: 30px;
  width: 30px;
  font-size: 16px;
}

footer .links.main {
  background: #262626;
  padding-top: 10px;
  padding-bottom: 10px;
}

footer .links.secondary {
  background: #1C1C1C;
  padding-top: 10px;
  padding-bottom: 10px;
}

footer .links a {
  color: #fff;
  opacity: 0.5;
}

footer h3 {
  text-align: left;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.8;
  padding-top: 15px;
}

footer ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

footer ul li {
  padding-bottom: 3px;
  padding-top: 3px;
}

.footer-links {
  padding: 20px 20px 15px;
}

.footer-links ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
}

@media (min-width: 768px) {
  footer .social-share-option {
    height: 40px;
    width: 40px;
    font-size: 18px;
  }

  footer h3 {
    font-size: 18px;
  }

  footer .links.main {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  footer .links.secondary {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.flex-container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  position: relative;
  padding: 0 15px;
}

header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  z-index: 99;
}

.logo img {
  width: 100px
}

nav.main-nav {
  width: 100%;
  background-color: #000;
  height: 110px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  color: #333;
}

.nav-fixed-top {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
}

.nav-fixed-top + div {
  margin-top: 110px;
  border: none;
  top: 0;
  left: 0;
  right: 0;
  position: relative;
}

.navigation {
  transition: all 0.2s ease;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

/* Responsive utilities */

.menu {
  position: fixed;
  background-color: rgba(0, 0, 0, 1);
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: 0;
  padding: 0;
  width: 80vw;
  max-width: 320px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
  transition: left 0.4s ease;
  z-index: 99;
}

.menu li a .icon,
.menu li label .icon{
  display: inline-block;
  text-align: center;
  width: 20px;
  color: #f00;
  margin-right: 10px;
}

#navigation:not(:checked) ~ header .menu {
  left: -80vw;
  transition: left 0.4s ease;
  box-shadow: none;
}

.menu a,
.menu label{
  color: #333;
  display: block;
  width: 100%;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu a:hover,
.menu label:hover{
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.1);
}

#navigation:checked ~ header .nav-toggle {
  border-top: 2px solid RGBA(255, 255, 255, 0);
  margin-top: 4px;
}

#navigation:checked ~ header .nav-toggle::after {
  transform: rotate(45deg);
  top: 8px;
  right: 0.5px;
}

#navigation:checked ~ header .nav-toggle::before {
  transform: rotate(-45deg);
  top: 8px;
  left: 0.5px;
}

.nav-toggle {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border-top: 2px solid RGBA(255, 255, 255, 1);
  width: 22px;
  height: 30px;
  transition: 0.3s ease all;
  margin-top: 13px;
  z-index: 3;
}

.nav-toggle:after {
  content: "";
  border-top: 2px solid RGBA(255, 255, 255, 1);
  position: absolute;
  left: 0;
  bottom: 21px;
  width: 22px;
  transition: 0.3s ease all;
  top: -9px;
}

.nav-toggle:before {
  content: "";
  border-top: 2px solid RGBA(255, 255, 255, 1);
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 22px;
  transition: 0.3s ease all;
  top: 5px;
}

.hidden-toggle {
  position: fixed;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 4;
}

#navigation:not(:checked) ~ header .hidden-toggle {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.4s ease;
}

.menu li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

.menu li:last-child {
  margin-right: 0;
}

/* Global advanced component styles */

body.modal-open {
  overflow-y: auto;
  width: calc(100% + 15px);
  overflow-x: hidden;
  padding-right: 0 !important;
  z-index: 10;
}

.modal-dialog {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  z-index: 11;
}

.modal > .modal-dialog,
.modal.open > .modal-dialog,
.modal.fade > .modal-dialog {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  transform: none;
  z-index: 12;
}

.modal-hero {
  position: relative;
  min-height: 150px;
  border-bottom: 1px solid #ccc;
  margin: -20px -20px 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 50px;
}

.modal-hero .close {
  position: absolute;
  right: 20px;
  top: 20px;
}

.modal-frame {
  background: #fff;
  pointer-events: all;
  background: #FFF;
  width: calc(100% - 40px);
  position: fixed;
  left: 0;
  top: 50%;
  right: 0;
  max-height: calc(100vh - 40px);
  max-width: 800px;
  margin: 0 auto;
  transform: translateY(-50%);
  padding: 20px;
  overflow-y: auto;
  z-index: 13;
}

/* Flex container */

@media (min-width: 576px) {
  .flex-container {
    max-width: 540px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .flex-container {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .flex-container {
    max-width: 960px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .flex-container {
    max-width: 1140px;
    margin: 0 auto;
  }

  .btn {
    color: #fff;
    border: none;
    padding: 6px 15px 7px;
  }
}

  /* Media queries */
  @media (min-width: 576px) {}

  @media (min-width: 768px) {
    .navigation-shop .nav-toggle{
      display: none;
      border: 2px solid #f00;
    }
    
    .navigation-shop .hidden-toggle{
      display: none;
    }
    
    .navigation-shop .menu {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      background-color: transparent;
      box-shadow: none;
      position: static;
      width: auto;
      left: auto;
      right: auto;
      width: auto;
      max-width: none;
      flex-direction: row;
      color: #333;
      align-items: center;
    }
    
    .navigation-shop .menu a,
    .navigation-shop .menu label{
      display: inline;
      width: auto;
      padding: 0;
      border-bottom: none;
      color: #333;
    }
    
    .navigation-shop .menu a:hover,
    .navigation-shop .menu label:hover{
      box-shadow: none;
    }
    
    .navigation-shop .menu li {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      margin-right: 50px;
      width: auto;
    }
    
    .navigation-shop .menu li a .icon,
    .navigation-shop .menu li label .icon{
      display: none;
    }
    
    .navigation-shop .menu li:last-child {
      margin-right: 0;
    }
    
    
    /* Globals */
    h1 {
      font-size: 34px;
    }

    h2 {
      font-size: 29px;
    }

    h3 {
      font-size: 24px;
    }

    h4 {
      font-size: 20px;
    }

    /* Nav */
    .logo img {
      width: 135px;
      margin-bottom: 1px;
    }

    nav.main-nav {
      width: 100%;
      background-color: #fff;
      height: 70px;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: center;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      color: #333;
    }

    .nav-fixed-top {
      position: fixed;
      left: 0;
      top: 0;
      right: 0;
    }

    .nav-fixed-top + div {
      margin-top: 120px;
      border: none;
      top: 0;
      left: 0;
      right: 0;
      position: relative;
    }
  }

  @media (min-width: 992px) { 
    /* Global advanced components styles */
    .modal.fade > .modal-dialog,
    .modal.show > .modal-dialog {
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      top: 50%;
      transform: translateY(-50%);
    }
    .modal-footer {
      flex-direction: row;
      align-items: center;
    }
    .modal-footer > :not(:last-child) {
      margin-bottom: 0;
      margin-right: .25rem;
    }
  }

  @media (min-width: 1200px) {
    /* Menu essentials */
    .nav-toggle {
      display: none;
    }
    .hidden-toggle {
      display: none;
    }
    nav .flex-container {
      justify-content: space-between;
      margin-bottom: 3px;
    }
    .menu {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      background-color: transparent;
      box-shadow: none;
      position: static;
      width: auto;
      left: auto;
      right: auto;
      width: auto;
      max-width: none;
      flex-direction: row;
      color: #333;
      align-items: center;
    }
    .menu a,
    .menu label{
      display: inline;
      width: auto;
      padding: 0;
      border-bottom: none;
      color: #333;
    }
    .menu a:hover,
    .menu label:hover{
      box-shadow: none;
    }
    .menu li {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      margin-right: 50px;
      width: auto;
    }
    .menu li a .icon,
    .menu li label .icon{
      display: none;
    }
    .menu li:last-child {
      margin-right: 0;
    }
  }

  @media (min-width: 1200px) {
    h1 {
      font-size: 42px;
    }

    h2 {
      font-size: 36px;
    }

    h3 {
      font-size: 30px;
    }

    h4 {
      font-size: 24px;
    }
  }
.spotlight-business {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  flex-wrap: wrap;

}

.spotlight-primary-business {
  width: 75%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}

.spotlight-primary-business .spotlight-search h1 {
  font-size: 30px;
  line-height: 30px;
}

.spotlight-primary-business .spotlight-search p{
  text-shadow: 0 0 5px rgba(0,0,0,1);
}

.spotlight-secondary-business {
  width: 25%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}

.tile-image.spotlight-secondary-business-item {
    box-shadow: inset 0 0 0 9999px rgba(0,0,0,0.2);
}

.spotlight-business .spotlight-search {
  width: 100%;
  max-width: 880px;
  margin: auto;
  padding: 40px 50px 50px;
}

.spotlight-primary-business:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.2s ease all;
}

.spotlight-primary-business:before {
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 53%, rgba(0, 0, 0, 0.00) 84%, rgba(0, 0, 0, 0.30) 100%);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 53%, rgba(0, 0, 0, 0.00) 84%, rgba(0, 0, 0, 0.30) 100%);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 53%, rgba(0, 0, 0, 0.00) 84%, rgba(0, 0, 0, 0.30) 100%);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  content: "";
  opacity: 0.2;
}

.spotlight-primary-business * {
  z-index: 2
}

.spotlight-secondary-business-item {
  min-height: 200px
}

.spotlight-primary-business {
  width: 100%;
}

.spotlight-secondary-business {
  width: 100%
}

@media (min-width: 568px) {
  .spotlight-primary-business .spotlight-search h1 {
    font-size: 46px;
    line-height: 46px;
  }
}


@media (min-width: 768px) {
  .spotlight-primary-business {
    width: 60%;
    padding-top:2vw;
    padding-bottom:2vw;
  }

  .spotlight-primary-business .spotlight-search h1 {
    font-size: 36px;
    line-height: 36px;
  }

  .spotlight-secondary-business {
    width: 40%
  }

  .spotlight-secondary-business {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
  .spotlight-secondary-business-item {
    min-height: 300px
  }
}

@media (min-width: 992px) {
  .spotlight-primary-business .spotlight-search h1 {
    font-size: 50px;
    line-height: 50px;
  }

  .spotlight-primary-business {
    width: 70%;
  }

  .spotlight-secondary-business {
    width: 30%
  }
}

@media (min-width: 1200px) {
  .spotlight-primary-business .spotlight-search h1 {
    font-size: 70px;
    line-height: 70px;
  }

  .spotlight-primary-business {
    width: 75%;
  }

  .spotlight-secondary-business {
    width: 25%
  }
}


.setup-checkbox:checked + .setup-option {
  opacity: 1;
}

.setup-checkbox:checked + .setup-option .setup-display {
  opacity: 0.8;
}


.setup-option {
  width: calc(33% - 2px);
  padding-bottom: 33%;
  background: #f8f8f8;
  font-size: 10px;
  opacity: 1;
  position: relative;
  margin-top: 2px;
  margin-right: 1px;
  margin-left: 1px;
  margin-bottom: 0;
  transition: 0.2s ease all;
  cursor: pointer;
}


label.setup-option {
  opacity: 0.4;
}

@media (min-width:768px) {
  .setup-option {
    width: calc(50% - 2px);
    padding-bottom: 50%;
  }
}


.setup-option .setup-display {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 40%;
  margin: -11px auto 0;
  text-align: center;
  opacity: 0.5;
  transition: 0.2s ease all;
}

.setup-option .setup-display img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}

.setup-option .setup-name {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  text-align: center;
  color: #888;
}


.filter-setups {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (min-width:992px) {
  .setup-option {
    width: calc(33% - 2px);
    padding-bottom: 33%;
  }
}

@media (min-width:1400px) {
  .setup-option {
    width: calc(25% - 2px);
    padding-bottom: 25%;
    margin-top: 2px;
    margin-right: 1px;
    margin-left: 1px;
  }
}