

.main-bg {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}

.nav-container {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  transition: .5s;
}

.nav-logo-container img {
  height: 82px;
}

.nav-spacer {
  height: 132px;
  display: block;
}

.nav-wrapper {
  padding: 25px 5vw;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: calc(1300px + 10vw);
  margin: 0 auto;
  display: flex;
  width: 100%;
}

.wrapper {
  max-width: calc(1300px + 10vw);
  width: 100%;
  margin: 0 auto;
  padding: 50px 5vw;
  display: flex;
  flex-wrap: wrap;
}

.nav-light {
  position: fixed;
  background-color: transparent;
}

.menu-trigger {
  width: 27px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
}

.menu-trigger div {
  width: 100%;
  height: 2px;
  background-color: #000;
}

.nav-light .menu-trigger div {
  background-color: #fff;
}

.nav-menu-wrapper {
  position: fixed;
  height: 100vh;
  background-color: #000;
  width: 25%;
  top: 0;
  right: -25%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  transition: .5s;
}

.nav-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-content-wrapper .nav-content-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-content-wrapper .nav-content-left > div {
  margin-right: 25px;
}

.nav-light .my-account {
  color: #fff;
}

.nav-menu-upper {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.nav-menu-upper.nav-menu-upper-mobile {
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
}

.nav-menu-upper > li > a{
  border: 2px solid #000;
  color: #000;
  margin-left: 20px;
  padding: 8px 15px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  /* max-width: 180px; */
}

.nav-menu-upper > li > a:hover {
  text-decoration: none;
  background-color: #000;
  color: #fff;
}

.nav-light .nav-menu-upper > li > a
 {
  border-color: #fff;
  color: #fff;
}

.nav-light .nav-menu-upper > li > a:hover {
  background-color: #fff;
  color: #000;
}


@media all and (max-width: 1500px) {
  .nav-menu-wrapper {
    width: 400px;
    right: -400px;
  }
}

.nav-menu-wrapper.menu-active {
  right: 0;
  box-shadow: 4px 0px 200px 0px #FFFFFF;
}

.nav-menu-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.nav-menu-header .nav-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  cursor: pointer;
}

.nav-menu-header span {
  color: #fff;
  font-size: 14px;
}

.nav-menu-header .nav-close:before,
.nav-menu-header .nav-close:after {
  width: 100%;
  height: 2px;
  content: '';
  background-color: #fff;
  position: absolute;
}

.nav-menu-header .nav-close:after {
  transform: rotate(90deg);
}

.nav-menu-content {
  width: 100%;
}

.nav-menu-main > li {
  padding: 15px 50px;
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.nav-menu-main {
  width: 100%;
  padding: 0;
  list-style: none;
}

.nav-menu-content {
  max-height: calc(100vh - 133px);
  overflow-y: auto;
}

.smc-header {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  /*cursor: pointer;*/
}

.smc-container {
  padding: 10px 0;
}

.smc-header a,
.smc-header span{
  width: calc(100% - 40px);
  font-weight: 500;
  color: #fff;
  margin: 0;
  font-size: 1.8em;
  text-decoration: none;
}

.smc-header > a:hover {
  text-decoration: none;
  color: #fff;
}

.smc-body {
  padding-top: 20px;
}

.smc-trigger {
  cursor: pointer;
}

.smc-trigger::before {
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color:#fff;
  content: '';
  display: inline-block;
  height: 21px;
  position: relative;
  vertical-align: top;
  width: 21px;
  top: 10px;
  right: 10px;
  transform: rotate(-45deg);
  transition: .2s;
}

.smc-header .smc-trigger.collapsed::before {
  transform: rotate(135deg);
  top: -5px;
}

.smc-item {
  margin-bottom: 20px;
}

.smc-item a {
  color: #fff;
}

.smc-item a:hover {
  color: #fff;
  text-decoration: none;
}

.smc-item input {
  margin-right: 5px;
}

.smc-item label {
  margin-bottom: 0;
}

.footer-main {
  width: 70%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-main > div {
  flex: 1;
  padding: 15px;
}

.footer-socials {
  padding: 15px;
}

.footer-v2 {
  background-color: #000;
}

.footer-hashtag {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.footer-v2 .wrapper > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

footer .social-media-container a {
  color: #fff;
  margin: 5px 20px 5px 0;
  font-size: 18px;
  text-decoration: none;
}

footer .social-media-container a:hover {
  color: #fff;
  text-decoration: none;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li a {
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
}

footer ul li a:hover {
  color: #fff;
  text-decoration: underline;
}


footer p {
  color: #fff;
  font-weight: 400;
}



.footer-v2-copyright p {
  opacity: .6;
  font-size: 14px;
}

.footer-v2-copyright a,
.footer-v2-copyright a:hover{
  text-decoration: underline;
  color: #fff;
}


footer .footer-subscribe {
  padding: 10px;
  color: #fff;
  border: 2px solid #fff;
  background-color: transparent;
  font-size: .7em;
  width: 130px;
  cursor: pointer;
  transition: .5s;
}

footer .footer-subscribe:hover {
  color: #000;
  background-color: #fff;
}

.banner .prompt {
  display: none;
}

.footer-v2-copyright {
  width: 100%;
  margin-top: 50px;
}

@media all and (max-width: 992px) {

  .nav-menu-upper.nav-menu-upper-mobile {
    display: flex;
    padding: 15px 50px;
  }

  .nav-menu-upper.nav-menu-upper-desktop {
    display: none;
  }

  .nav-menu-upper > li > a {
    margin-left: unset;
    margin-right: 20px;
  }

  .nav-logo-container img {
    height: 50px;
  }

  .footer-v2 .wrapper > div {
    flex-wrap: wrap;
  }
  .footer-main {
    width: 100%;
    flex-wrap: wrap;
  }

  .footer-main > div {
    width: 100%;
    padding: 15px 0;
    flex: unset;
  }

  .footer-socials {
    width: 100%;
    padding: 15px 0;
  }

  .smc-header a, .smc-header span {
    font-size: 1.4em;
  }

  .nav-menu-header {
    padding: 25px 50px;
  }

  .nav-spacer {
    height: 100px;
  }

}

@media all and (max-width: 400px) {
  .nav-menu-wrapper {
    width: 100%;
    right: -100%;
  }
}

.filters.filters-v2 {
  flex-wrap: wrap;
}

.filters.filters-v2 > div {
  margin: 0 10px 10px 0;
  width: calc(33.3% - 12px);
}

.filters.filters-v2 .date-picker input {
  background-color: #fff;
  color: #000;
  font-size: 16px;
  padding: 8px 16px;
}

.event-filters-v2 .search > input {
  color: #fff;
  background-color: #000;
  border: 2px solid #fff;
  padding-left: 35px;
  outline: none;
}

.filters.filters-v2  .date-picker {
  background-color: #fff;
  height: 42px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.filters.filters-v2 .ce-date-trigger {
  margin-right: 15px;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filters.filters-v2 .ce-date-trigger img {
  height: 20px;
}

.filters.filters-v2 .submit-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0 0;
}

.event-filters-v2 #filter-datepicker {
  top: 42px;
}

.event-filter-mobile {
  display: none;
}
.event-filters.event-filters-v2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px 15px;
}

.event-filters-v2 .filters.filters-v2 {
  margin: 0;

}

.event-filters-v2 .search {
  margin-right: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.event-filters-v2 .search img {
  position: absolute;
  left: 10px;
}

.event-filters-v2 .filters.filters-v2 {
  width: calc(100% - 430px);
}


.right-section .left-section {
  width: 215px;
}

.event-filters.event-filters-v2 .ce-date-filter .ui-datepicker th,
.event-filters.event-filters-v2 .ce-date-filter .ui-datepicker td a,
.event-filters.event-filters-v2 .ce-date-filter .ui-datepicker td span {
  height: 30px;
}

.event-filters.event-filters-v2 #filter-datepicker {
  padding: 5px 15px;
  min-width: 265px;
}

.event-filters.event-filters-v2 .ce-date-filter .ui-datepicker .ui-datepicker-next {
  right: 15px;
}

.event-filters.event-filters-v2 .ce-date-filter .ui-datepicker .ui-datepicker-prev {
  left: 15px;
}

.event-filters-v2 .ce-date-filter {
  min-height: unset;
  padding: 0;
}

.nav-container {
  border-bottom: 1px solid rgba(0,0,0,.2);
}

.nav-container.nav-light {
  border-bottom: none;
}

.nav-container.sticky-nav,
.nav-container.nav-clear.sticky-nav{
  top: -50%;
  transition: .5s;
}

.nav-container.nav-light.sticky-nav {
  background-color: #000;
}

.nav-container.sticky-nav.sticky-active {
  top: 0;
}

.my-account {
  cursor: pointer;
}

.event-filters-v2 .ce-date-filter input::placeholder {
  color: #000;
}

.event-filters-v2 .search > input::placeholder {
  color: #fff;
}

@media all and (max-width: 1300px) {
  .right-section {
    display: none !important;
  }

  .event-filter-mobile {
    display: flex;
    margin-right: 18px;
  }

  .left-section {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .event-filters-v2 .filters.filters-v2 {
    width: 100%;
  }

  .event-filters.event-filters-v2 {
    flex-wrap: wrap;
  }
}

@media all and (max-width: 800px) {
  .filters.filters-v2 > div {
    width: calc(50% - 12px);
    min-height: 42px;
  }
}




@media all and (max-width: 450px) {

  .left-section {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .event-filters-v2 .search,
  .event-filters-v2 .search > input{
    width: 100%;
  }

  .event-filter-mobile {
    width: 100%;
  }
  .filters.filters-v2 > div {
    width: 100%;
    min-height: 42px;
    margin-right: 0;
  }
}