/* BASE */

iframe {
  display: block;
}

/* HELPERS */
.height-fluid {
  height: 100%;
}

.relative {
  position: relative;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/* SCREEN READER */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* CONTAINER */

.woa-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .woa-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .woa-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .woa-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .woa-container {
    max-width: 1140px;
  }
}

.woa-container .container {
  width: 100%;
  padding:0;
}

/* GRID */

.grid {
  display: grid;
}

/* FLEX JUSTIFY */

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

/* NAVBAR TOGGLER */

.woa-navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  /* border: 1px solid transparent; */
  border:0;
  border-radius: 0.25rem;
}

.woa-navbar-toggler:hover, .woa-navbar-toggler:focus {
  text-decoration: none;
}

.woa-navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.woa-navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

/* NAVBAR */

.woa-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.woa-navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
}

/* .woa-navbar > .woa-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
} */

.woa-navbar-brand {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.woa-navbar-brand:hover, .woa-navbar-brand:focus {
  text-decoration: none;
}

.woa-navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.woa-navbar-nav .nav-link {
  padding: 14px 0px;
  line-height: 1;
}

.woa-navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.woa-navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.woa-navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

/* NAVBAR EXPAND */

@media (max-width: 767px) {
  .woa-navbar-expand-md.open #main-menu {
    height: var(--woa-navbar-height);
  }
  .woa-navbar-expand-md #main-menu {
    height: 0;
    overflow: scroll;
    transition: height .15s ease-in;
  }
  .woa-navbar-expand-md .dropdown-menu  {
    display: block;
    background: transparent;
    border: 0;
    text-align: right;
    padding: 0 1rem 0 0; 
  } 
}

@media (min-width: 768px) {
  .woa-navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .woa-navbar-expand-md .woa-navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .woa-navbar-expand-md .woa-navbar-nav .dropdown-menu {
    position: absolute;
  }
  .woa-navbar-expand-md .woa-navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .woa-navbar-expand-md > .woa-container,
  .woa-navbar-expand-md > .woa-container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .woa-navbar-expand-md .woa-navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .woa-navbar-expand-md .woa-navbar-toggler {
    display: none;
  } 
}

@media (max-width: 991px) {
  .woa-navbar-expand-lg.open #main-menu {
    height: var(--woa-navbar-height);
  }
  .woa-navbar-expand-lg #main-menu {
    height: 0;
    overflow: scroll;
    transition: height .15s ease-in;
  }
  .woa-navbar-expand-lg .dropdown-menu  {
    display: block;
    background: transparent;
    border: 0;
    text-align: right;
    padding: 0 1rem 0 0; 
  } 
}

@media (min-width: 992px) {
  .woa-navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .woa-navbar-expand-lg .woa-navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .woa-navbar-expand-lg .woa-navbar-nav .dropdown-menu {
    position: absolute;
  }
  .woa-navbar-expand-lg .woa-navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .woa-navbar-expand-lg > .woa-container,
  .woa-navbar-expand-lg > .woa-container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .woa-navbar-expand-lg .woa-navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .woa-navbar-expand-lg .woa-navbar-toggler {
    display: none;
  }
}

/* NAVBAR DARK/LIGHT */

.woa-navbar-light .woa-navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.woa-navbar-light .woa-navbar-brand:hover, .woa-navbar-light .woa-navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.woa-navbar-light .woa-navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.woa-navbar-light .woa-navbar-nav .nav-link:hover, .woa-navbar-light .woa-navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.woa-navbar-light .woa-navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.woa-navbar-light .woa-navbar-nav .show > .nav-link,
.woa-navbar-light .woa-navbar-nav .active > .nav-link,
.woa-navbar-light .woa-navbar-nav .nav-link.show,
.woa-navbar-light .woa-navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.woa-navbar-light .woa-navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.woa-navbar-light .woa-navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.woa-navbar-light .woa-navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.woa-navbar-light .woa-navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.woa-navbar-light .woa-navbar-text a:hover, 
.woa-navbar-light .woa-navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.woa-navbar-dark .woa-navbar-brand {
  color: #fff;
}

.woa-navbar-dark .woa-navbar-brand:hover, 
.woa-navbar-dark .woa-navbar-brand:focus {
  color: #fff;
}

.woa-navbar-dark .woa-navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.woa-navbar-dark .woa-navbar-nav .nav-link:hover, 
.woa-navbar-dark .woa-navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.woa-navbar-dark .woa-navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.woa-navbar-dark .woa-navbar-nav .show > .nav-link,
.woa-navbar-dark .woa-navbar-nav .active > .nav-link,
.woa-navbar-dark .woa-navbar-nav .nav-link.show,
.woa-navbar-dark .woa-navbar-nav .nav-link.active {
  color: #fff;
}

.woa-navbar-dark .woa-navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.woa-navbar-dark .woa-navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.woa-navbar-dark .woa-navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.woa-navbar-dark .woa-navbar-text a {
  color: #fff;
}

.woa-navbar-dark .woa-navbar-text a:hover, .woa-navbar-dark .woa-navbar-text a:focus {
  color: #fff;
}

@media (max-width: 767px) {
  .woa-navbar-expand-md .woa-navbar-nav .dropdown-menu a {
    padding: 15px;
  }
  .woa-navbar-dark.woa-navbar-expand-md .woa-navbar-nav .dropdown-menu a {
    color: #fff;
  }
  .woa-navbar-light.woa-navbar-expand-md .woa-navbar-nav .dropdown-menu a {
    color: #222;
  }
}

@media (max-width: 991px) {
  .woa-navbar-expand-lg .woa-navbar-nav .dropdown-menu a {
    padding: 15px;
  }
  .woa-navbar-dark.woa-navbar-expand-lg .woa-navbar-nav .dropdown-menu a {
    color: #fff;
  }
  .woa-navbar-light.woa-navbar-expand-lg .woa-navbar-nav .dropdown-menu a {
    color: #222;
  }
}

/* COLLAPSE */

@media(max-width:991px) {
  .collapse:not(.show) {
    display: none;
  }
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}


/* DROPDOWN */

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu[x-placement^="bottom"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:first-child {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.dropdown-item:last-child {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

/* BUTTONS */

.btn:disabled,
.woa-btn:disabled {
  opacity: .5;
}

.btn-xs {
  font-size: .75rem;
  padding: .25rem .5rem;
  line-height: 1rem;
}

.woa-btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

a.woa-btn {
  text-decoration: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  .woa-btn {
    transition: none;
  }
}

.woa-btn:hover {
  color: #212529;
  text-decoration: none;
}

.woa-btn:focus, .woa-btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.woa-btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.woa-btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.woa-btn-primary:focus, .woa-btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.woa-btn-sm {
  padding: 0.25em 0.5em;
  font-size: 0.875em;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.woa-btn-lg {
  padding: 0.5em 1em;
  font-size: 1.25em;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* PANELS */

.woa-panel {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.woa-panel-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

/* TYPOGRAPHY */

h1, h1.entry-title {
  font-size: 2.4em;
}


/* FORM */

input, textarea, select {
  /* border: 1px solid #ccc;
  margin: 5px 0;
  padding: 5px 10px; */
}

.form-control::placeholder {
  color: #ccc;
}

@media(min-width: 576px) {
  .woa-form-center {
    width: 50%;
    margin: 0 auto;
  }
}

.woa-form-group {
  margin-bottom: 1rem;
}

.woa-form-label {
  display: inline-block;
  margin-bottom: .5rem;
  font-weight: bold;
}

.woa-form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

textarea.woa-form-control {
  height: auto;
}

sup.required {
  color: #C00;
  font-weight: bold;
  font-size: 1.25rem;
  top: -0.1rem;
}

/* CF7 */

form div.wpcf7-response-output {
  position: relative;
  padding: .75rem 1.25rem;
  margin:0;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  text-align: center;
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

form .wpcf7-response-output.wpcf7-validation-errors {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

/* AUCTION NAV LINKS */
.auction-nav-links.nav-pills>li {
  margin-bottom:5px;
}

/* WPCF7 STYLING */
.wpcf7.wpcf7 form .wpcf7-response-output {
  margin: 0 0 1.5rem;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.wpcf7.wpcf7 form .wpcf7-response-output {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.wpcf7.wpcf7 form.init .wpcf7-response-output,
.wpcf7.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7.wpcf7 form.sent .wpcf7-response-output {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.wpcf7.wpcf7 form.failed .wpcf7-response-output,
.wpcf7.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7.wpcf7 form.spam .wpcf7-response-output {
	color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.wpcf7.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7.wpcf7 form.payment-required .wpcf7-response-output {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-size: .9rem;
}

.wpcf7-spinner {
  vertical-align: text-bottom;
}

/* TABLE */

.vertical-align-top td {
  vertical-align: top;
}

/* AUCTIONS */

.woa-styles.woa-styles.container {
  max-width: none;
}

@media (min-width: 576px) {
  .woa-styles .woa-global-message-box .woa-btn-collapse {
    top: 1rem;
  }
}

/* SOCIAL ICONS */
.wbtrnws-social-media-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wbtrnws-social-media-links a svg {
  display: block;
  width: 30px;
  height: 30px;
  opacity: .6;
  transition: opacity .3s ease-out;
}
.wbtrnws-social-media-links a:hover svg {
  opacity: 1;
}

/* FOOTER  */
#menu-footer-menu {
  font-size: .825rem;
}