

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
@font-face {
  font-family: 'nexa_boldregular';
  src: url('https://atlanticbkln.com/wp-content/themes/voguetheatre/fonts/nexa_bold-webfont.woff2') format('woff2'),
       url('https://atlanticbkln.com/wp-content/themes/voguetheatre/fonts/nexa_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
	--white: #fff;
	--black: #000;
	--accent-colour: #C99B3C;
    --red:#AB181C;
    --darkred: #7c1113;
	--regular-copy: 16px;
  --headings-font: 'nexa_boldregular', serif;
  --copy-font: 'proxima-nova', serif;
}

/*------------------
## Colours
-------------------*/

.accent-colour {
  color: var(--accent-colour);
}
.black {
  color: var(--black);
}
.white {
  color: var(--white);
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/

a {
  text-decoration: underline;   
  color: var(--accent-colour);
  transition: .3s;  
}
a:hover {
  color: var(--accent-colour);	
  opacity: .7;
}
nav a {
	text-decoration: none;
	color: var(--white);
	transition: .4s;
}
nav a:hover {
	color: var(--white);  
	text-decoration: none;  	
}
.nav-socials a {
  color: var(--accent-colour);
}
#events a,
#page-search a {
  text-decoration: none;
}
#mobile-overlay a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn,
#wpforms-submit-30125 {
  background-color: var(--red);
  color: var(--white);
	padding: 10px 30px;
  border-radius: 0;
  border: none;
	text-transform: uppercase;
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  transition: .3s;
  text-decoration: none;
}
#wpforms-submit-30125 {
  padding: 2px 30px;
  width: 100%;
  margin-top: 20px;
}
.btn:hover,
.btn-hover:active {
  color: var(--white);
  background-color: #9d1417;  
  opacity: 1;
}
.btn-more {
  position: relative;
  margin-top: -35px;
  transition: .3s;
}
.btn-more.active .fas{
  transform: rotate(45deg);
} 
.btn-round {
  display: inline-block;
  min-width: 40px;
  text-align: center;
  background-color: var(--red);
  margin-top: 10px;
}
.more-events {
  display: block;
  width: 100%;
}
@media screen and (min-width: 665px) {
  .more-events {
    max-width: 49%;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

h1 {
  font-family: var(--headings-font);
	font-size: 22px;
  font-weight: 700;
}
h2 {
  font-size: 16px;
  font-family: var(--headings-font); 
  color: var(--accent-colour);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/*--------------------------
## Navigation
--------------------------*/
/* Nav background */
.bg-nav {
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 65%);
  height: 150px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.bg-nav.active {
  background: rgba(0,0,0,.5);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  height: 75px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
nav.desktop-nav {
	padding-top: 7px;
	display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
nav.desktop-nav ul {
	list-style: none;
	display: inline-flex;
	flex-direction: row;
	text-transform: uppercase;
	font-size: 13px;
	padding-top: 13px;
}
nav.desktop-nav li:not(:last-child) {
	margin-right: 15px;
}
img.logo {
	display: inline-flex;
	height: 60px;
}
.nav-socials {
  margin-left: 30px;
}
.fas,
.fab {
  color: var(--accent-colour);
  transition: .3s;
}
.fa-search {
  color: var(--white);
}
#search-form {
  display: flex;
  width: 100%;
}
#scroll-to-top {
  position: fixed;
  z-index: 10;
  bottom: 30px;
  right: 30px;
  display: none;
}
#scroll-to-top img {
  height: 30px;
}

/* Dropdown */

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown:hover {
  cursor: pointer;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
  text-decoration: none;
  display: block;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/*--------------------------
## Mobile Nav
--------------------------*/

.mobile-nav img {
  position: absolute;
  top: 8px;
  left: 22px;
}
#mobile-overlay {
	position: fixed;
	top: -100vh;
	left: 0;
	z-index: 100;
	height: 0vh;
	width: 100vw;
	opacity: 0;
	background-color: var(--black);
	transition: .5s;
  font-size: 25px;
  padding-top: 60px;
}
#mobile-overlay.is-active {
	height: 100vh;
	opacity: 1;
	top: 0;
}	
#mobile-overlay .mobile-links {
  display: flex;
  flex-direction: column;
}
.mobile-nav-socials {
  display: flex;
  margin-top: 30px;
}
.mobile-nav-socials li {
  margin-right: 40px;
}
#mobile-overlay li:not(:last-child) {
	padding-bottom: 20px;
}
#js-ham--menu {
  top: 12px;
  right: 15px;
  z-index: 101;
  position: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 50px;
}
.ham {
  font-size: inherit;
  cursor: pointer;
  display: inline-block;
  outline: none;
  position: relative;
  z-index: 16;
  -webkit-appearance: none;
  border-radius: 0;
  background-color: transparent;
  border: none;
  transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ham--menu.is-active span:first-child {
  top: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ham--menu.is-active span:last-child {
  top: -0.313em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.ham--menu span {
  position: relative;
  top: 0;
  display: block;
  width: 25px;
  height: 2px;
  margin-bottom: 7px;
  background-color: var(--white);
  transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ham--menu span:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px){
  nav.desktop-nav{
    display: none;
  }
}
@media screen and (min-width: 768px){
  nav.mobile-nav{
    display: none;
  }
}
input#mobile-search,
input#desktop-search {
  border: 1px solid var(--white);
  width: 100%;
  padding: 10px;
  margin-right: 15px;
}
.mobile-search-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.mobile-search-container button,
.desktop-search-container button{
  background-color: transparent;
  border: none;
}
.mobile-search-container svg,
.desktop-search-container svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  fill: var(--white);
}
.search-icon-desktop svg{
  width: 16px;
  height: 15px;
  vertical-align: middle;
  fill: var(--white);
}
.desktop-search-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -30px;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
  transition-timing-function: ease;
  transition-timing-function: cubic-bezier(.54,-0.02,.26,.95);
  transform: scale(0.85);
}
.desktop-search-container.active {
  opacity: 1;
  visibility: visible;
  margin-top: 40px;
  transform: scale(1);
}

/*--------------------------
## Carousel
--------------------------*/
#slide-container {
  position: relative;
  height: 68vh;
  padding: 0;
}
.slides {
  position: relative;
  height: 100%;
  width: 100%;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: .9s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);  
}
.slide-content {
  width: 35%;
  position: absolute;
  right: 5%;
  bottom: 30px;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .slide-content {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 70px;
  }
} 
.slide.active {
  opacity: 1;
  visibility: visible;
}
#slide-controller {
  display: flex;
  position: absolute;
  bottom: 30px;
  left: 5%;
  z-index: 9;
}
@media screen and (max-width: 800px) {
  #slide-controller {
    display: flex;
    justify-content: center;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
}
#slide-controller li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--white);
}
#slide-controller li:not(:last-child){
  margin-right: 10px;
}
@media screen and (max-width:768px){
  #slide-controller li {
    width: 13px;
    height: 13px;
  }
  #slide-controller li:not(:last-child){
    margin-right: 25px;
  }
}
#slide-controller li:hover {
  cursor: pointer;
}
#slide-controller li.active {
  background-color: var(--accent-colour);
  border: 1px solid var(--accent-colour);
}

/*--------------------------
## Events
--------------------------*/

#events {
  position: relative;
  background-image: url("https://atlanticbkln.com/wp-content/themes/voguetheatre/images/main.jpg");
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff;
  padding-top: 30px;
  min-height: 750px;
}
@media screen and (max-width: 665px) {
  #events {
    background-image: url("https://atlanticbkln.com/wp-content/themes/voguetheatre/images/main-mbl.jpg");
    padding-bottom: 80%;
    min-height: 10px;
  }
}
.event-tile{
  position: relative;
  height: 200px;
  background-size: cover;
  background-position:top center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}
.event-tile-large {
  height: 350px;
}
.event-tile-overlay{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.4s;
}
.event-tile-content{
  width: 100%;
  position: relative;
  z-index: 8;
}
@media screen and (max-width: 665px) {
  .event-tile-content{
    text-align: center;
  }
} 
.event-buttons {
  margin-top: 20px;
}
.tile h2,
.tile-small h2 {
  font-size: 30px;
  font-family: var(--headings-font);
  color: var(--white);
}
.tile-small h2 {
  font-size: 20px;
}
.tile h3,
.tile-small h3,
.event-more-info h3 {
  font-size: 20px;
  color: var(--accent-colour);
  font-family: var(--headings-font);
}
.tile-small h3,
.event-more-info h3 {
  font-size: 18px; 
}
.tile p, .tile-small p {
  color: var(--white);
}
.event-more-info {
  background-color: var(--black);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-out;
  padding:0;
  height: 0;
  position: relative;
}
.event-more-info.active {
  opacity: 1;
  visibility: visible;
  padding:15px 10px 45px 10px;
  height: auto;
  transition: .5s;
}
.second-row h2{
  padding-bottom: 10px;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.ticker-wrap {
  overflow: hidden;
  height: 4rem;
  padding-left: 100%;
  box-sizing: content-box;
  border-top: 2px solid var(--accent-colour);
  border-bottom: 2px solid var(--accent-colour);
}
.ticker-wrap .ticker {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 30s;
  animation-duration: 35s;
}
.ticker-wrap .ticker:hover{
  animation-play-state: paused;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 20px;
}
.ticker a {
  color: var(--black);
}
.ticker a span{
  color: var(--red);
  padding-left: 10px;
}
.just-announced {
  max-width: 100%;
}
.just-announced-header {
  text-align: center;
  background-color: var(--black);
  text-transform: uppercase;
  width: 150px;
}
.just-announced-header h1{
  font-size: 12px;
}
.event-tile:hover .event-tile-overlay,
.slide:hover .event-tile-overlay{
  background-color: rgba(0, 0, 0, 0.1);
}

/*--------------------------
## Section Title
--------------------------*/
.section-title  h1 {
  letter-spacing: 25px;
  text-transform: uppercase;
  display: block;
  margin: 0 auto;
  margin-right: -25px;  
  text-align: center;
  padding-bottom: 150px;
}
.all-events h1 {
  padding-bottom: 70px; 
}
@media screen and (max-width: 665px) {
  .section-title  h1 {
    letter-spacing: 22px;
    font-size: 22px;
    padding-bottom: 100px;
  }
} 

/*--------------------------------------------------------------
# Search Page
--------------------------------------------------------------*/
#page-search p {
  font-size: 18px;
}
#page-search h1 {
  font-size: 30px;
  color: var(--accent-colour);
  text-transform: uppercase;
  padding-top: 20px;
}
#page-search {
  padding-top: 150px;
}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
/*--------------------------
## Sections
--------------------------*/
section {
  padding: 75px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding-bottom: 45px;
  }  
}
/*--------------------------
## Info
--------------------------*/
#info {
  padding-top: 0;
  position: relative;
  min-height: 630px;
  margin-top: -100px;
}
@media screen and (max-width: 665px) {
  .mobile-only{display: block;}
  .desktop-only{display: none;}
}
@media screen and (min-width: 665px) {
  .mobile-only{display: none;}
  .desktop-only{display: block;}  
}

.tabs-home {
  text-align: center;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 60px;
}
.tablinks {
  margin-right: 0;
  min-height: 30px;
  color: #696a67;
  padding:0 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 2px solid #696a67;
  cursor: pointer;
  transition: .3s;
}
.tablinks.active {
  color: var(--accent-colour);
  border-bottom-color: var(--accent-colour);
}
.tab-copy {
  display: none;
  animation: fadeEffect .8s;
}
.tab-copy.active  {
  display: block;
}
@keyframes fadeEffect {
  0% {
    opacity: 0;
  }
  15%, 20% {
    margin-top: 10px;
    opacity: 0;
  }
  100%{
    margin-top: 0;
    opacity: 1;
  }
}
/*--------------------------
## INFO MOBILE
--------------------------*/
.accordion h2{
  color: var(--white);
  font-family: var(--regular-copy);
  text-transform: uppercase;
}
.accordion h3{
  color: var(--white);
  font-family: var(--regular-copy);  
}
.accordion.active h2,
.accordion.active h3{
  color: var(--accent-colour);
}
.accordion-box {
  margin: 15px; 
}
/*--------------------------
## FAQ
--------------------------*/

.question {
  font-weight: 700;
  color: var(--accent-colour);
}
.accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.panel-home {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-box{
  border-bottom: 1px solid #888;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.accordion.active .fas{
  transform: rotate(45deg);
} 

/*--------------------------
## Section Seating
--------------------------*/
img.seat-map {
  max-width: 420px;
  margin-top: 12px
}
img.seat-map-modal {
  width: 600px;
}

/*--------------------------
## Section Photos
--------------------------*/
.photos-box {
  position: relative;
  max-width: 100%;
  overflow: scroll;
  transition: .3s;
}
.arrow-right {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 30px;
  z-index: 9;
}
.arrow-left {
  position: absolute;
  bottom: 40px;
  right: 90px;
  width: 30px;
  z-index: 9;
  transform: rotate(180deg)
}
@media screen and (max-width: 760px){
  .arrow-right {
    bottom: 15px;
    right: 10px;
  }
  .arrow-left {
    bottom: 16px;
    right: 60px;
  } 
}
.arrow-right:hover,
.arrow-left:hover {
  cursor: pointer;
}
.photos-box::-webkit-scrollbar {
  display: none;
}
ul.thumbnails{
  display: flex;
}
ul.thumbnails li:not(:last-child){
  margin-right: 20px;
}
img.thumbnail-item {
  max-width: 600px;
  height: auto;
}
.modal-open:hover {
  cursor: pointer;
}
.modal-content-layer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}
.modal-content-layer img {
  max-width: 100%;
  padding: 0 15px;
  max-height: 85vh;
}
@media only screen and (max-width: 700px){
  img.thumbnail-item {
    max-width: 250px;
  }
}
/*	Modal overlay styles */
.modal-overlay {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(28, 28, 28, 0.9);
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content-layer {
    width: 100%;
  }
}
/*	Modal close button position and size */		
#modal-close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 20px;
  height: auto;
  cursor: pointer;
}

/*	Modal close button styles */	
.close-svg{
  fill:none;
  stroke:#fff;
  stroke-width:5;
}
.fullsize-item {
  display: none;
}
.fullsize-item.active-modal {
  display: block;
}

/*--------------------------------------------------------------
# CONTACT
--------------------------------------------------------------*/
#contact {
  background-image: url("https://atlanticbkln.com/wp-content/themes/voguetheatre/images/contact.jpg");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 665px) {
  #contact {
    background-size: contain;  
  }
}

#contact input,
nav input,
#contact textarea{
  background-color: transparent;
  color: var(--white);
  font-size: 16px;
  border: none;
  padding-left: 0;
  border-radius: 0;
}
#contact input.wpforms-smart-phone-field {
  padding-left: 40px;
}

#contact input,
#contact textarea {
  border-bottom: 1px solid var(--white);
}
label {
  font-size: 14px;
}
.form-row .col-md-6 {
  padding:0 20px;
}
.form-group.col-md-6 {
  padding-left: 15px;
  padding-right: 15px;  
}
::placeholder {
  color: var(--white);
  font-size: 12px;
}
.padding-top {
  margin-top: 62px;
}


/*--------------------------------------------------------------
# ALL EVENTS
--------------------------------------------------------------*/

main.all-events {
  padding-top: 100px;
}
#evcal_list {
  margin: 50px 0 75px 0!important;
}
.eventon_list_event{
  width: calc(50% - (25px /2)) !important;
  margin-right: 25px;
  margin-bottom: 25px !important;
}
.eventon_list_event:nth-child(2n){
  margin-right: 0;
}
#evcal_head{
  display: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  position: relative;
  padding: 75px 0;
  text-align: center;
  opacity: .8;
  background-color: #111;
}
footer a {
  text-decoration: none;
  color: var(--white);
  padding: 0 10px;
  font-size: 12px;
}
footer .fab {
  color: var(--white);
}
footer img.logo-footer {
  max-width: 80px;
  display: block;
  margin: 0 auto;
  padding-bottom: 30px;
}
footer p {
  display: block;
  width: 100%;
  font-size: 10px;
  letter-spacing: 2px;
  margin-top: 20px;
}
footer ul {
  display: inline-flex;
  text-transform: uppercase;
}
@media screen and (max-width: 665px) {
	ul.footer-nav {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.mt-30 {
  margin-top: 30px;
}
.mt-60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 750px) {
  .mt-30-mb {
    margin-top: 30px;
  }
  .mt-60-mb {
    margin-top: 60px;
  }
  .mb-30-mb {
    margin-bottom: 30px;
  }
} 
.mr-10 {
  margin-right: 10px;
}
.ml-10 {
  margin-left: 10px;
}
.wrapper {
  width: 100%;
  padding-right: 6.5%;
  padding-left: 6.5%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .wrapper {
    width: 95%;
  }
}
body {
  position: relative;
	background-color: var(--black);
	color: var(--white);
	font-family: var(--copy-font);
	font-size: var(--regular-copy);
  font-weight: 400;
  line-height: 2rem;
  font-size: 14px;
}
body.lock-scroll {
  height: 100vh;
  overflow: hidden;
}
.is-hidden {
  display: none;
}
input[type="text"],
input[type="email"],
select {
  border-radius: 0;
  -webkit-appearance:none;
  color: #fff;
}
@media screen and (max-width:768px){
  input[type="text"],
  input[type="email"],
  select {
    font-size: 16px;
  } 
}
.contact-us-home {
  margin-top: 35px;
}
input:focus,
textarea:focus  {
  outline: -webkit-focus-ring-color auto 5px !important;
}

.sold-out-container{
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: #3d4657;
    padding: 5px 10px;
}

.empty-banner{
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------------------
# POPUP STYLES
--------------------------------------------------------------*/
.popup-container{
    position: fixed;
    padding: 10px;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.popup-warning{
    position: relative;
    padding: 50px 25px 25px;
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    color: #000;
    line-height: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.popup-warning p{
    margin-bottom: 15px;
}
.popup-warning p:last-of-type{
    margin-bottom: 0;
}
.popup-warning .popup-close{
    position: absolute;
    top: 15px;
    right: 15px;
}
.popup-active{
    opacity: 1;
    visibility: visible;
}
.popup-img{
    width: 100%;
    max-width: 300px;
}

/* DRIP */
#contact .btn-nl{
    margin: 25px auto;

    border: none;
    clear: both;
    background-color: #AB181C;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.4s;
    font-size: 10px;
    width: 100%;
    padding: 2px 0;

}
#drip-email{
    width: 100%;
}



/*--------------------------------------------------------------
# WooCommerce Override Styles
--------------------------------------------------------------*/
.cart-contents:before {
    font-family:WooCommerce;
    content: "\e01d";
    font-size: 18px;
    margin-top:10px;
    font-style:normal;
    font-weight:400;
    padding-right:5px;
    vertical-align: bottom;
}
.cart-contents:hover {
    text-decoration: none;
}
.cart-contents-count {
    color: #9C1417;
    font-weight: bold;
    border-radius: 10px;
    line-height: 1;
    vertical-align: top;
}
.shop-main{
    padding: 100px 0;
    min-height: 62vh;
}
.shop-main .section-title h1{
    padding-bottom: 75px;
}
.woocommerce table.shop_table {
    border: 2px solid rgba(255,255,255, 1);
}
.woocommerce table.shop_table td{
    border-top: 2px solid rgba(255,255,255, 1);
}
.woocommerce button.button{
    background-color: var(--red);
    color: #fff;
}
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce a.button{
    color: #fff;
    background-color: var(--red);
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce a.button:hover{
    color: #fff;
    background-color: var(--darkred);
}
.woocommerce-billing-fields .form-row, .woocommerce-shipping-fields .form-row {
    display: block;
    text-align: left;
}

.woocommerce-billing-fields .form-row input, .woocommerce-shipping-fields .form-row input{
    background-color: transparent;
    color: var(--white);
    font-size: 16px;
    border: 2px solid #fff;
    padding: 10px 5px;
    border-radius: 0;
}

.woocommerce-privacy-policy-text p{
    color: #000;
}
.place-order{
    flex-direction: column;
    align-items: flex-start;
}
#order_review label{
    color: #000;
}
.woocommerce-info, .woocommerce-message{
    border-top-color: var(--red);
}
.woocommerce-message::before, .woocommerce-info::before{
    color: var(--red);
}
.woocommerce form .notes{
    display: block;
}
.select2-results__option {
    color: #000;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected]{
    background-color: var(--red);
}
.select2-container .select2-selection--single{
    height: 44px;
    display: flex;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 100%;
}
.woocommerce .woocommerce-ordering select{
    color: #000;
    padding: le
}
.woocommerce h1.page-title{
    padding-bottom: 75px;
    letter-spacing: 25px;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
    margin-right: -25px;
    text-align: center;
}
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering{
    display: none;
}
.woocommerce ul.products li.product .price, .woocommerce div.product p.price, .woocommerce div.product span.price{
    color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active{
    color: #000;
}
/*
     FILE ARCHIVED ON 06:05:29 Dec 02, 2021 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 05:28:14 Nov 08, 2023.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 92.15
  exclusion.robots: 0.747
  exclusion.robots.policy: 0.737
  cdx.remote: 0.063
  esindex: 0.008
  LoadShardBlock: 56.341 (3)
  PetaboxLoader3.datanode: 116.869 (5)
  load_resource: 116.401
  PetaboxLoader3.resolve: 28.448
  loaddict: 43.641
*/