/* Root Elements */

:root {
  --Fb: 1rem;
  --black: #000000;
  --white: #ffffff;
  --lightGold: #ceb573;
  --lightGrey: #f5f5f5;
  --grey: #d9d9d9;
  --darkGrey: #808080;
  --fg: var(--black);
  --bg: var(--white);
  --Pm: 1.25rem;
  --Pg: 1.25rem;
  --Ph: calc(0.5 * var(--Pg));
  --Pd: calc(2 * var(--Pg));
  --Hh: 2.5rem;
  --Hs: calc(100vh - var(--Hh));
  --Wf: calc(100% + (2 * var(--Pg)));
  --Wg: calc(100% + var(--Pg));
  --Ml: calc(-1 * var(--Pg));
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
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;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

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

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.hidden {
  display: none !important;
}

textarea,
input,
button,
select {
  font-family: inherit;
  font-size: inherit;
  text-align: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}

button[disabled] {
  pointer-events: none;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  background: inherit;
  color: inherit;
  border: none;
  padding: 0;
  outline: inherit;
  opacity: 1;
}

input,
textarea,
input::placeholder,
textarea::placeholder {
  background: inherit;
  color: inherit;
  border: none;
  padding: 0;
  outline: inherit;
  opacity: 1;
}

textarea {
  resize: none;
}

input:not([type='submit']),
textarea {
  display: block;
  width: 100%;
  border-radius: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type='number'] {
  -moz-appearance: textfield;
}

select {
  background: none;
  width: 100%;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 0;
  color: var(--fg);
  margin: 0;
  padding: 0;
}

select option {
  color: var(--fg);
  margin: 0;
  padding: 0;
  background: var(--bg);
}

select:focus {
  outline: none;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

/* Input Elements */

button,
input[type='submit'],
input[type='reset'],
div[role='button'] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type='button'],
input[type='button']:focus {
  outline: none;
}

a:link,
a:visited,
a:link span,
a:visited span {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

/* Details Elements */

summary,
summary:focus {
  outline: none;
  list-style-type: none;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

details summary::marker,
details summary::-webkit-details-marker {
  content: '';
  visibility: hidden;
  position: absolute;
  z-index: -10;
  list-style-type: none;
  display: none;
}

summary > * {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

summary > *::after {
  content: url('/assets/icons/plus.svg');
  margin-left: var(--Pm);
  transition: transform 0.2s ease-in;
}

details[open] summary > *::after {
  transform: rotate(45deg);
}

details[open] summary ~ * {
  animation: appear 0.4s ease-in;
  -webkit-animation: appear 0.4s ease-in;
}

details.closing summary ~ * {
  animation: close 0.4s ease;
}

@keyframes appear {
  0% {
    opacity: 0;
    max-height: 0;
  }

  100% {
    opacity: 1;
    max-height: 100vh;
  }
}

@keyframes close {
  0% {
    opacity: 1;
    max-height: 100vh;
  }

  100% {
    opacity: 0;
    max-height: 0;
  }
}

html {
  scroll-behavior: smooth;
}

/* Image/Video Elements */

.aspectholder > * {
  display: block;
}

.aspectholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.vsc-controller {
  height: 0 !important;
  width: 0 !important;
  -o-object-fit: unset !important;
  object-fit: unset !important;
}

/* Typography */

@import url('https://p.typekit.net/p.css?s=1&k=uej0ubl&ht=tk&f=10879&a=1634100&app=typekit&e=css');

@font-face {
  font-family: 'futura-pt';
  src: url('https://use.typekit.net/af/2cd6bf/00000000000000000001008f/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3')
      format('woff2'),
    url('https://use.typekit.net/af/2cd6bf/00000000000000000001008f/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3')
      format('woff'),
    url('https://use.typekit.net/af/2cd6bf/00000000000000000001008f/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3')
      format('opentype');
  font-display: auto;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
}

h1,
h2,
h3,
p,
a,
button {
  font-family: 'futura-pt', helvetica;
}

h1,
.h1 {
  font-size: 72px;
  line-height: 116%;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 120%;
}

h3,
.h3,
.h3 *,
.venue-body p {
  font-size: 24px;
  line-height: 135%;
}
p {
  font-size: 18px;
  line-height: 135%;
}

.caption,
.caption p,
.caption a,
.career-story-body .h3 p {
  font-size: 16px;
  line-height: 135%;
}

.body-medium {
  font-size: 18px;
}

.body-large {
  font-size: 36px;
}

.opaque {
  opacity: 50%;
}

.mini {
  font-size: 13px;
  line-height: 125%;
}

/* Button Styles */
.primary-button {
  background-color: black;
  display: inline-block;
  color: white !important;
  padding: 8px 28px;
  border-radius: 50px;
  font-size: 16px;
  line-height: 125%;
  transition: background-color ease-in 150ms;
}

.primary-button:hover {
  background-color: #bd993a;
}

.cta {
  transition: all 300ms ease-in;
  position: relative;
  text-decoration: underline !important;
  text-decoration-color: transparent !important;
  text-underline-offset: 3px;
  cursor: pointer;
  display: block;
}

.cta::before {
  content: url('/assets/icons/rectangle-black.svg');
  transition: opacity 300ms ease-in;
  -webkit-transition: opacity 300ms ease-in;
  margin-right: 8px;
}

.cta::after {
  content: url('/assets/icons/rectangle-gold.svg');
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 300ms ease-in;
  -webkit-transition: opacity 300ms ease-in;
  margin-right: 8px;
}
.cta:hover {
  text-decoration-color: black !important;
}

.cta:hover::before {
  opacity: 0;
}
.cta:hover::after {
  opacity: 1;
}

/* Site Styles */

section {
  margin-bottom: 120px;
  scroll-margin-top: 152px;
}

.no-bottom-margin {
  margin-bottom: 0px;
}

.header + section {
  margin-top: 0px;
  padding-top: 196px;
}

.page-navigation-wrapper ~ section {
  scroll-margin-top: 304px;
}

.page-navigation-wrapper {
  top: 76px !important;
}

.small-margin {
  margin-bottom: 40px;
}

.medium-margin {
  margin-bottom: 80px;
}

.large-margin {
  margin-bottom: 120px;
}

.section-margin {
  margin-inline: 40px;
}

.page-content {
  padding-top: 76px;
}

.page-head {
  margin-top: 120px;
}

.page-head-image figure {
  grid-column: span 12;
  aspect-ratio: 2/1;
}

/* Navigation */

.header,
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  height: 76px;
  top: 0;
  width: 100%;
  padding-inline: 40px;
  background-color: white;
  z-index: 3;
}

.mobile-navigation-toggle-container {
  display: none;
}

.mobile-navigation-container {
  display: none;
}

.events-mobile {
  display: none;
}

.page-navigation {
  margin: 0 auto;
}

.page-navigation a:not(:last-child) {
  margin-right: 24px;
}

.header-cta {
  width: 181px;
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
}

/* .header-cta a {
  float: right;
} */

nav a,
.submenu-item:not(.city-title) {
  transition: text-decoration-color 150ms ease-in;
  text-decoration: underline !important;
  text-decoration-color: transparent !important;
  text-underline-offset: 3px;
}

.header-navigation a:not(:last-child) {
  margin-right: 24px;
}

nav a:hover,
.submenu-item:not(.city-title):hover {
  text-decoration-color: black !important;
}

.nav-submenu {
  top: 76px;
  padding: 50px 40px 60px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: white;
  opacity: 0;
  visibility: hidden;
  transition: visibility 300ms ease-in, opacity 300ms ease;
  z-index: 200;
}

.nav-submenu.active {
  opacity: 1;
  visibility: visible;
}

.submenu-item {
  margin-inline: 0px !important;
}

.submenu-column {
  display: flex;
  flex-direction: column;
}

.submenu-item:not(:last-child) {
  margin-bottom: 12px;
}

/* Grid */

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

main {
  min-height: 100vh;
}

/* Page Header */

.bg-lightGold {
  background-color: var(--lightGold);
}

.bg-lightGrey {
  background-color: var(--lightGrey);
}

.bg-grey {
  background-color: var(--grey);
}

.page-title h1,
.body-large p {
  grid-column: span 8;
}

.body-large p {
  font-size: 36px;
  line-height: 120%;
}

.body-medium p {
  grid-column: span 6;
}

.image-block {
  padding: 40px;
}

.image-block figure {
  height: calc(100vh - 156px);
}

.image-block.landscape figure {
  height: auto;
}

.career-story-item figure {
  height: calc(100vh - 232px);
}

.image-block.image-right figure {
  grid-column: 8 / span 5;
}
.image-block.image-right.landscape figure {
  grid-column: 7 / span 6;
}
.image-block.image-left figure {
  grid-column: 1 / span 5;
}
.image-block.image-left.landscape figure {
  grid-column: 1 / span 6;
}

.image-block-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.image-block.image-right .image-block-text {
  grid-column: 1 / span 6;
}
.image-block.image-right.landscape .image-block-text {
  grid-column: 1 / span 5;
}

.image-block.image-left .image-block-text {
  grid-column: 7 / span 6;
}
.image-block.image-left .image-block-text {
  grid-column: 8 / span 5;
}

.image-block-body .cta {
  margin-top: 16px;
}

.venue-title {
  margin: 18px 0;
}

.venue-carousel {
  padding-inline: 30px;
  overflow: hidden;
}

.swiper-slide {
  width: calc(100% / 3 - 17px);
}
.swiper-container {
  height: 32vw;
  padding-inline: 40px;
  overflow: hidden;
}

.career-stories-swiper .swiper-wrapper {
  height: auto;
}

.swiper-container .swiper-slide {
  height: 100%;
  width: auto;
}

.swiper-container .swiper-slide figure {
  height: 100%;
}

.swiper-container .swiper-slide figure img {
  height: 100%;
  width: auto;
}

.swiper-button-next {
  background-image: url('/assets/icons/next.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.swiper-button-prev {
  background-image: url('/assets/icons/prev.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  height: 16px;
  width: 18px;
}
.carousel-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-inline: 40px;
}
.carousel-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 76px;
}

/* accordian */

.accordian-title {
  grid-column: 1 / span 4;
}

.accordian-content {
  grid-column: 7 / span 6;
  margin-top: 120px;
}

.accordian-content details {
  padding: 20px 0;
  border-top: 1px solid black;
}
.accordian-content details:last-child {
  border-bottom: 1px solid black;
}

.accordian-content details a {
  text-decoration: underline;
  transition: opacity 150ms ease-in;
}
.accordian-content details a:hover {
  opacity: 0.5;
}

.accordian_inner {
  margin-top: 20px;
}

.careers-locations,
.careers-hero {
  grid-column: span 12;
}

.careers-hero p,
.team-hero p {
  max-width: 50%;
}

.careers-hero .h3 {
  margin-bottom: 18px;
}

.card,
.event-card {
  grid-column: span 3;
}
.venue-card {
  grid-column: span 4;
}

.venue-card a {
  margin-top: 18px;
}

.venue-card figure {
  aspect-ratio: 3/2;
}

.filter a {
  margin-right: 24px;
}

.filter .active {
  text-decoration-color: black !important;
}

.event-card:first-child {
  grid-column: span 6;
}

.event-card figure {
  aspect-ratio: 1/1;
}

.career-story-item {
  width: 100%;
  height: auto;
}

.career-story-item.mobile {
  display: none;
}

.image-block-title .h3 {
  font-size: 24px;
  line-height: 125%;
}

.career-story-body .cta {
  margin-top: 16px;
}

.career-story-item .image-block-title {
  margin-bottom: 80px;
}

.current-vacancies {
  row-gap: 40px;
}

.vacancy-title {
  margin-top: 12px;
  margin-bottom: 8px;
}

.filter-item:not(:last-child) {
  margin-right: 24px;
}

.body-content {
  display: grid;
}

.about-item {
  margin-bottom: 120px;
  grid-column: span 12;
}
.about-title {
  grid-column: span 2;
}

.about-body {
  grid-column: 7 / span 6;
}

.body-content figure {
  aspect-ratio: 4/5;
  grid-column: 7 / span 6;
}

.hero {
  grid-column: span 12;
}

.team-hero {
  grid-column: span 12;
}
.about-team-title {
  margin-top: 10px;
}
.city-hero {
  grid-column: span 12;
}

footer .grid nav {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
}

.venue-details {
  grid-column: span 3;
}

.venue-body {
  grid-column: 7 / span 6;
}

.venue-body p:not(:last-child) {
  margin-bottom: 32px;
}

.venue-details-item,
.contact-item {
  margin-bottom: 20px;
}

.venues-grid {
  row-gap: 80px;
}

.contact-item {
  max-width: 70%;
}

.contact-item:last-child,
.venue-details-item:last-child {
  margin-bottom: 0px;
}

.contact-venues {
  row-gap: 120px;
}

.event-grid {
  row-gap: 120px;
}

.event-grid-btn {
  row-gap: 40px;
}

.event-card figure img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.current-vacancies .card figure {
  aspect-ratio: 3/2;
}

.vacancies-grid .card figure {
  aspect-ratio: 3/4;
}

.vacancies-grid {
  row-gap: 40px;
}

.mobile-events {
  display: none;
}

.current-vacancies .venue-swiper {
  display: none;
}

.current-vacancies {
  padding-inline: 40px;
}

.card-copy {
  margin-top: 18px;
}

.text-body {
  margin-bottom: 28px;
  width: 50%;
}

.card-description {
  margin: 18px 0;
}

.event-title {
  margin: 8px 0;
}

.event-venue {
  margin-bottom: 8px;
}

.event-date {
  margin-top: 16px;
}

.event-details {
  grid-column: span 6;
}

.event-image-wrapper {
  grid-column: 8 / span 5;
}

.event-image-wrapper figure {
  aspect-ratio: 1/1;
}

.event-page {
  margin-bottom: 240px;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.section-active {
  transform: translateY(0);
  opacity: 1;
}

/* Loading Animation */

.loader-container {
  position: fixed;
  background-color: white;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  top: 0;
  align-items: center;
  justify-content: space-around;
  /* transition: opacity 800ms ease-in-out, visibility 800ms ease-in-out; */
}

.loader-container[sequence-completion='true'][in-process='false'] {
  opacity: 0;
  display: none;
}
.loader-container[sequence-completion='false'][in-process='true'] {
  opacity: 1;
  transition: opacity 800ms ease;
}
.loader-container[sequence-completion='false'][in-process='false'] {
  opacity: 0;
  transition: opacity 800ms ease;
}
/* 
.show { 
  display: flex
}

.hide { 
  opacity: 0;
  visibility: hidden;
} */

.loader-container figure {
  width: 33%;
  margin: 40vh auto 0;
  height: auto;
  max-width: 800px;
  opacity: 1;
  transition: opacity 800ms ease-in;
}
.show-logo {
  opacity: 1 !important;
}

.loader-container figure svg {
  width: 100%;
  height: 100%;
}

.career-stories-swiper {
  overflow: hidden;
}

/* error block */

.error .h3 {
  grid-column: 1 / span 6;
}

.error a {
  opacity: 50%;
  transition: opacity 150ms ease-in;
}

.error a:hover {
  opacity: 1;
}

/* gift card */
.gift-card {
  min-height: calc(100vh + 200px);
  margin-bottom: 120px;
}

.gift-card figure {
  grid-column: 1 / span 6;
  aspect-ratio: 5/6;
}

.gift-card .body {
  margin-top: 60px;
  grid-column: 8 / span 4;
}

.gift-card-form {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  min-height: 750px;
}

.gift-card-page {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in 300ms;
}

.gift-card-page.active {
  opacity: 1;
  visibility: visible;
}

#formSubmitBtn {
  margin-top: 0px;
}

.gift-card-form .form-title {
  width: 100%;
}

.gift-card-label {
  cursor: pointer;
  font-family: 'futura-pt', helvetica;
  text-align: center;
  background-color: var(--lightGrey);
  transition: all 150ms ease-in;
  padding: 10px 0;
  width: 100%;
  display: block;
}

.gift-card-label:hover {
  background-color: var(--grey);
}

.gift-card-input-group {
  width: 20%;
}

.gift-card-input:checked + .gift-card-label,
.gift-card-input:checked + .gift-card-label:hover {
  background-color: black;
  color: white;
}

.gift-card .body .primary-button {
  cursor: pointer;
  margin-top: 40px;
  width: 100%;
  text-align: center;
}

.gift-card-custom-input::-moz-placeholder {
  color: var(--darkGrey);
}

.gift-card-custom-input::placeholder {
  color: var(--darkGrey);
}
.gift-card-custom-input::before {
  content: '$';
}

/* Landing Popup */

.landing-container {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  visibility: hidden;
  opacity: 0;
  background: rgb(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: all 350ms ease-in;
}

.landing-container[in-progress='true'] {
  visibility: visible;
  opacity: 1;
}

.landing-inner {
  background-color: white;
  width: 60vw;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
}

.landing-inner figure {
  width: 30vw;
  height: auto;
  max-width: 400px;
  min-width: 80px;
}

.landing-inner figure svg {
  width: 100%;
  height: 100%;
}

.landing-inner .h3 {
  margin-top: 80px;
  text-align: center;
}

.landing-inner .primary-button {
  cursor: pointer;
  margin-top: 80px;
  text-align: center;
}

.cart {
  height: 100vh;
  top: 0;
  right: 0;
  background-color: white;
  position: fixed;
  z-index: 99;
  transform: translateX(100%);
  transition: transform ease 200ms;
  width: 33vw;
  padding: 40px;
}

.cart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-active .cart {
  transform: translateX(0);
}

.cart__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.cart__items::scrollbar {
  display: none;
}
.cart__items {
  flex: 1;
  max-height: calc(100% - 100px);
  overflow-x: scroll;
}

.cart__bg {
  inset: 0;
  position: fixed;
  z-index: 99;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  background-color: black;
  transition: all ease 200ms;
}

.cart-active .cart__bg {
  opacity: 0.3;
  visibility: visible;
}

.cart__items {
  border-top: 1px solid #d9d9d9;
}

.cart-item {
  display: flex;
  -moz-column-gap: 12px;
  column-gap: 12px;
  padding-block: 12px;
  border-bottom: 1px solid #d9d9d9;
}

.cart__att-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
  -moz-column-gap: 6px;
  column-gap: 6px;
}
.cart__att-item {
  display: flex;
  flex-direction: column;
}

.cart-item__remove-btn {
  color: #7a7a7a;
  transition: color ease 200ms;
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-end;
  margin-left: auto;
}
.cart-item__remove-btn:hover {
  color: black;
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.cart-item .aspectholder {
  aspect-ratio: 1;
  width: 100%;
}

.cart__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart__empty {
  padding-top: 24px;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
