@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Colors */
:root {
  --color-default: #2c1a00;
  --color-primary: #7d0000;
  --color-secondary: #fff3d7;
  --color-yellow: #d3b800;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-hover: #ec2727;
  --color-border: #c9b9a3;
  --color-bg-opicity: #130b00;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
body {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Roboto Slab", serif;
  color: var(--color-default);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background: var(--color-secondary);
  margin: 0;
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-hover);
  text-decoration: none;
}
a:active,
a:hover {
  outline: 0;
}
p a,
p a:active,
p a:visited {
  color: #7d0000;
  text-decoration: underline;
}
p em {
  text-decoration: underline;
  font-style: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
b,
strong {
  font-weight: 700;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
img {
  max-width: 100%;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
textarea {
  overflow: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
}
h1 {
  font-size: 2.2rem;
  text-align: center;
}
.no-padding {
  padding: 0;
}
@media (min-width: 576px) {
  h1 {
    font-size: 3rem;
  }
}
h2 {
  font-size: 1.75rem;
  margin: 0 0 1rem 0;
  line-height: 1;
}
h2.large {
  font-size: 2.5rem;
}
h2 small {
  display: block;
  font-size: 50%;
  margin-top: 0.5rem;
}
h3 {
  font-size: 1.8rem;
  margin: 0.25rem 0;
}
h4 {
  font-size: 1.66rem;
  margin: 0.25rem 0;
}
h5 {
  font-size: 1.5rem;
  margin: 0.25rem 0;
}
h6 {
  font-size: 1rem;
  margin: 0.25rem 0;
}
a.cta,
button.cta {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--color-secondary);
  min-width: 200px;
  padding: 1.15rem;
  margin: 2rem auto;
  background: var(--color-primary);
  border: none;
  transition: all 0.3s;
}
.buy-sell > div a.cta {
  width: 100%;
  max-width: 100%;
}
a.cta:hover,
button.cta:hover {
  background: #b00000;
}
a:active:hover,
a:hover,
a:visited:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#site-nav-bar {
  position: fixed;
  top: 0;
  z-index: 1030;
  width: 100%;
  background: var(--color-primary);
  border-bottom: 4px solid var(--color-primary);
}
.upper-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0 1rem;
  max-width: 1440px;
  margin: 0 auto;
}
.upper-bar {
  height: 80px;
}
.site-brand {
  padding: 0;
  margin: 0;
  flex: 1 0 0;
}
.site-brand a {
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .site-brand a {
    text-align: left;
  }
}
.site-brand a img {
  width: 100%;
  max-width: 210px;
}
@media (min-width: 576px) {
  .site-brand a img {
    max-width: 275px;
  }
}
.utility-section {
  list-style: none;
  margin: 0;
}
@media (min-width: 768px) {
  ul.utility-section {
    display: block;
  }
}
@media (min-width: 992px) {
  ul.utility-section {
    display: flex;
    align-items: center;
  }
}
ul.utility-section li {
  color: var(--color-secondary);
  font-size: 1.15rem;
  margin-left: 3rem;
}
@media (min-width: 576px) {
  ul.utility-section li {
    font-size: 1.05rem;
    margin-top: 0rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  ul.utility-section li {
    flex: 1 0 auto;
  }
  ul.utility-section li.search-bar {
    flex: 2 0 auto;
  }
}
ul.utility-section li > span {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
ul.utility-section a {
  color: var(--color-secondary);
  text-decoration: none;
}
@media (min-width: 992px) {
  ul.utility-section a:hover {
    text-decoration: underline;
  }
}
ul.utility-section i.material-icons {
  margin-right: 0.5rem;
  font-size: 1rem;
}
@media (min-width: 576px) {
  ul.utility-section i.material-icons {
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  ul.utility-section i.material-icons {
    font-size: 1.15rem;
  }
}

[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
.company-phone-number {
  color: var(--color-secondary);
  font-size: 1.15rem;
}
.company-phone-number a {
  font-size: 24px;
}
@media (min-width: 992px) {
  .company-phone-number {
    color: var(--color-secondary);
    font-size: 1.15rem;
  }
  .company-phone-number a {
    font-size: 24px;
  }
}
.mobile-view-header {
  display: none;
}
@media (max-width: 991px) {
  .mobile-view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .company-phone-number {
    display: inline-flex;
    align-items: center;
    color: var(--color-black);
    font-weight: 400;
  }
  .company-phone-number small {
    margin-right: 10px;
  }
  .utility-section .company-phone-number {
    display: none;
  }
}
.company-phone-number small {
  display: block;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .search-bar {
    padding: 0;
  }
}
.screen-reader-text,
.visibility-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  word-wrap: normal !important;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
.search-bar div.search-label {
  display: none;
}
.search-bar input[type="text"] {
  height: auto;
  min-height: initial;
  border-radius: 0;
  padding: 0.375rem 0.75rem;
  background: var(--color-secondary);
  border: 1px solid #ced4da;
  color: #2c1a00;
  font-weight: 400;
}
.search-bar input[type="text"]:focus {
  outline: none;
}
.search-bar fieldset {
  border: none;
  outline: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .site-brand a img {
    max-width: 40vw;
  }
}
@media (min-width: 992px) {
  .site-brand a img {
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  .site-brand a img {
    max-width: 325px;
  }
}
@media (min-width: 768px) {
  div.upper-bar {
    height: 80px;
  }
}
.lower-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 0 1rem;
  background: var(--color-secondary);
  box-shadow: 0 0 15px rgba(44, 26, 0, 0.5);
}
@media (min-width: 768px) {
  .lower-bar {
    height: auto;
    overflow: visible;
    justify-content: center;
    padding: 0;
  }
}
/*--------------------------------------------------------------
  # Desktop Navigation
  --------------------------------------------------------------*/
@media (min-width: 991px) {
  .navbar {
    padding: 0;
    display: block;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }
  .navbar li {
    position: relative;
  }
  .navbar > .menu-lsb-header-menu-container > ul > li {
    width: 100%;
  }
  .navbar > .menu-lsb-header-menu-container > ul > li::before {
    position: absolute;
    right: 14px;
    top: 14px;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px 10px 10px;
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 0.9308rem + 0.1923vw, 1.05rem);
    font-weight: 400;
    color: var(--color-black);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    border-right: 1px solid var(--color-border);
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-black);
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #f2e7cd;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 0px;
  }
  .navbar .dropdown ul li {
    min-width: 100%;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    justify-content: space-between;
    border-right: none;
    border-top: 1px solid #b6a183;
  }
  .navbar .dropdown ul li:first-of-type a {
    border: none;
  }
  .navbar > .menu-lsb-header-menu-container > ul > li:last-of-type a {
    border: none;
  }
  .navbar > .menu-lsb-header-menu-container > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar > .menu-lsb-header-menu-container > ul > li > a:hover:before {
    width: 100%;
    visibility: visible;
  }

  .navbar
    > .menu-lsb-header-menu-container
    > ul
    > li
    > a:before
    .navbar
    .dropdown
    ul
    a
    i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .navbar .dropdown ul {
    min-width: 250px;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media (min-width: 1025px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
/*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-family: var(--font-secondary);
    border-bottom: 1px solid #973b3b;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover,
  .navbar li:hover > a {
    color: var(--color-white);
  }
  .navbar .active,
  .navbar .active:focus {
    color: var(--color-white);
    border-color: var(--color-primary);
  }
  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 0px;
    transition: all 0.5s ease-in-out;
    border: none;
    background: #640000;
  }
  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }
  .navbar > .menu-lsb-header-menu-container > ul > li::before {
    position: absolute;
    right: 14px;
    top: 20px;
    color: var(--color-white);
    z-index: -1;
  }
  .mobile-nav-show {
    color: var(--color-black);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 0px;
  }
  .mobile-nav-hide {
    color: var(--color-white);
    font-size: 39px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 4px;
    top: 8px;
    z-index: 9999;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
  .site-brand a img {
    width: 100%;
    max-width: 330px;
    margin: 0;
    display: block;
  }
  .right-top-header .utility-section {
    padding-left: 0;
    margin: 0px 12px;
  }
  .right-top-header .search-bar {
    margin-left: 0;
  }
  .right-top-header .search-bar input {
    width: 100%;
  }
  .upper-bar {
    max-width: 100%;
  }
  .lower-bar {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .upper-bar {
    height: auto;
    display: block;
    padding: 14px 0px;
  }
  .site-brand a img {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
.navbar button.sub-menu-toggle {
  display: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  margin-top: 5rem;
  font-size: 14px;
  background-color: var(--color-primary);
  padding: 50px 0;
  color: var(--color-secondary);
}
.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: var(--color-secondary);
  text-align: center;
  background: #730000;
}

@media (min-width: 768px) {
  .footer h4 {
    text-align: left;
    background: none;
  }
  .footer .company-info {
    border: none;
    border-left: 1px solid var(--color-secondary);
    padding-left: 28px;
  }
}

.footer .footer-links {
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li a {
  color: var(--color-secondary);
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: var(--color-white);
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  color: rgba(255, 255, 255, 0.7);

  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}
li.widget_block {
  list-style: none;
}

/*--------------------------------------------------------------
# Main Wrapper Area
--------------------------------------------------------------*/
.main-wrapper-area {
  margin-top: 130px;
}
.n2-ss-slider-3 {
  margin-top: 130px;
}
/*--------------------------------------------------------------
# Home Page Css
--------------------------------------------------------------*/

/* ---------auction-partner-section-css------------- */

.auctions-partner-section {
  margin: 0 !important;
  gap: 4px;
}
.auctions-partner-section h4 {
  font-size: 1.15rem;
  text-align: center;
  color: var(--color-white);
  padding: 0.15rem 0;
  margin: 0;
  background: var(--color-primary);
  width: 100%;
}

.auctions-partner-section div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .auctions-partner-section div {
    flex: 0 0 49.7%;
  }
}

.auctions-partner-section div a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 75px;
  color: var(--color-default);
  font-size: 1rem;
  text-decoration: none;
  padding: 0.5rem;
  background: rgba(201, 185, 163, 0.2);
  transition: all 0.3s;
  position: relative;
}

@media (min-width: 992px) {
  .auctions-partner-section div a {
    flex-flow: column wrap;
    height: 100%;
    font-size: 1rem;
    min-height: initial;
  }
}

@media (min-width: 992px) {
  .auctions-partner-section div a:hover {
    background: rgba(201, 185, 163, 0.4);
  }

  .auctions-partner-section div a:hover span.new-tab-warning {
    opacity: 1;
  }
}

.auctions-partner-section div span {
  display: flex;
  flex: 1;
  align-items: center;
  width: 75px;
  height: 75px;
  border: 1px solid var(--color-secondary);
  box-shadow: 2px 2px 5px rgba(44, 26, 0, 0.2);
}

@media (min-width: 992px) {
  .auctions-partner-section div span {
    flex: 1 0 auto;
    height: 60px;
    width: auto;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
    border: none;
    box-shadow: none;
    background: 0 0;
  }
}

.auctions-partner-section div span.new-tab-warning {
  text-indent: -10000px;
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  font-size: 0.75rem;
  height: auto;
  width: auto;
  box-shadow: none;
  background: 0 0;
  border: none;
}

@media (min-width: 992px) {
  .auctions-partner-section div span.new-tab-warning {
    opacity: 0;
    transition: all 0.3s;
  }
}

.auctions-partner-section div span.new-tab-warning img {
  width: 15px;
  opacity: 0.5;
}

@media (min-width: 992px) {
  .auctions-partner-section div span.new-tab-warning img {
    width: 20px;
  }
}

.auctions-partner-section div h5 {
  font-weight: 700;
  font-size: 0.75rem;
  flex: 2;
  text-align: left;
  color: var(--color-default);
  padding: 0 1.25rem;
}

@media (min-width: 992px) {
  .auctions-partner-section div h5 {
    font-size: 0.85rem;
    text-align: center;
    flex: 2 0 auto;
  }
}

@media (min-width: 992px) {
  .auctions-partner-section div h5::after {
    content: "– click here –";
    display: block;
    color: var(--color-primary);
    font-size: 80%;
    text-align: center;
    text-align: center;
    padding: 0.25rem 0 0 0;
    margin: 0.25rem 0 0 0;
    border-top: 1px solid var(--color-default);
  }
}

.auctions-partner-section div img {
  width: 75px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .auctions-partner-section div img {
    width: 100px;
  }
}

/* ---------home-banner-section-css------------- */
@media (max-width: 992px) {
  .n2-ss-slider-wrapper-inside h2 {
    font-size: 200% !important;
  }
}

.n2-ss-slide {
  background: url(https://lsbauctions.com/wp-content/themes/lsb-auctions/dist/assets/images/tiles/2x2-stripe-tile.png)
    repeat center center rgba(44, 25, 0, 0.2);
}
.left-side-img {
  border: 2px solid var(--color-default);
  box-shadow: 0 0 50px rgba(44, 26, 0, 0.75);
}
.sold-price h3 {
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  font-size: 2rem !important;
  background: var(--color-white);
  max-width: 250px;
  margin: 10px auto !important;
  border: 1px solid var(--color-primary);
}
.sold-price h3 span {
  color: var(--color-white);
  display: block;
  max-width: 250px;
  font-size: 50%;
  margin: auto;
  font-style: oblique;
  padding: 0.5rem 0;
  background: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .sold-price h3 {
    font-size: 2.5rem !important;
    margin-top: 24px !important;
  }
}
.home-banner-newsletter input[type="email"] {
  height: 35px;
  background: var(--color-white);
  padding: 0.5rem 1rem !important;
  border: 1px solid var(--color-primary);
}
.home-banner-newsletter input[type="submit"] {
  background: #7d0000;
  opacity: 1;
  padding: 1rem;
  box-shadow: none;
  border: 0px solid RGBA(0, 0, 0, 1);
  margin-top: 20px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 0px;
  min-width: 150px;
}

/* ---------client-review-slider-section-css------------- */
.banner {
  width: 100%;
  padding: 0.25rem;
  border: 1px solid var(--color-default);
  width: 100%;
}
.banner.inline p {
  max-width: initial;
}
.banner h2 {
  text-align: center;
}
.banner h4 {
  line-height: 1;
  color: var(--color-white);
}
.banner p {
  line-height: 1.15;
  margin: 1rem auto;
}
@media (min-width: 576px) {
  .banner p {
    max-width: 55%;
  }
}
.banner .banner-wrapper {
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-default);
}
.banner .banner-content {
  max-width: 70%;
  padding: 2rem 0;
  margin: 0 auto;
  color: var(--color-white);
  text-align: center;
}
.banner .banner-content .heading-flourish {
  max-width: 250px;
}
.banner .banner-content.no-background {
  max-width: 90%;
}
.banner .banner-content.no-background h4 {
  color: var(--color-primary);
}
.banner .banner-content.no-background p {
  color: var(--color-default);
}
.banner .cta {
  margin: 0 auto;
}
.bg-banner-block .banner-wrapper {
  background: url(../images/banner-flourish_rectangle.svg) no-repeat center
    center var(--color-default);
}

.client-review-slider {
  position: relative;
  height: 100%;
  margin-top: 1rem;
}
.client-review-slider .testimonial-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.client-review-slider .testimonial-slider-wrap .slick-track {
  display: flex;
  align-items: center;
}
.client-review-slider .testimonial-slider-wrap .testimonial {
  padding: 1.5rem 0;
}
.client-review-slider .testimonial-slider-wrap .testimonial .five-stars-icon {
  max-width: 100px;
  margin: 0.5rem auto;
}
.client-review-slider .testimonial-slider-wrap .testimonial p {
  font-size: 1.15rem;
  font-style: oblique;
  line-height: 1.5;
  color: var(--color-secondary);
  padding: 0 1rem;
}
@media (min-width: 576px) {
  .client-review-slider .testimonial-slider-wrap .testimonial p {
    font-size: 1.35rem;
  }
}
@media (min-width: 768px) {
  .client-review-slider .testimonial-slider-wrap .testimonial p {
    max-width: 80%;
    padding: 0;
    margin: 0 auto;
  }
}
.client-review-slider .testimonial-slider-wrap .testimonial cite {
  display: block;
  font-size: 1.25rem;
  max-width: 80%;
  color: var(--color-secondary);
  text-align: center;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.client-review-slider .slick-dots {
  bottom: -15px;
}
.client-review-slider .slick-dots li button::before {
  color: var(--color-secondary);
  font-size: 40px;
}
.client-review-slider .slick-dots li.slick-active button::before {
  color: var(--color-secondary);
  opacity: 1;
}

/* ---------lsb-about-section-css------------- */
.page-content {
  padding-top: 3rem;
  padding-bottom: 0rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
header.page-header {
  width: 100%;
  text-align: center;
}
header.page-header h1.page-title {
  margin-top: 0;
  border-bottom: 1px solid var(--color-default);
  font-weight: 400;
}
header.page-header h1.page-title::after {
  margin-bottom: -27px;
  max-width: 125px;
}
header.page-header h1.page-title::after {
  display: block;
  content: url(../images/heading_flourish.svg);
  max-width: 130px;
  margin: 0 auto;
  margin-bottom: 0;
  position: relative;
  margin-bottom: -27px;
}
.about-buy-sell {
  display: block;
  background-repeat: no-repeat;
  margin-top: 50px;
}

@media (min-width: 576px) {
  .about-buy-sell {
    display: flex;
    padding-bottom: 250px;
    background-image: url(../images/buy-sell_background.png);
    background-position: center bottom;
  }
}

@media (min-width: 992px) {
  .about-buy-sell {
    padding-bottom: 0;
    background-position: left bottom;
  }
}

@media (max-width: 991px) {
  .about-buy-sell {
    background-image: none !important;
  }
}

.about-buy-sell h2 {
  text-align: center;
  font-weight: 400;
}

.about-buy-sell img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.about-buy-sell > div {
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  padding-bottom: 2rem;
}

.about-buy-sell > div a.cta {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 991px) {
  .about-buy-sell > div a.cta {
    margin-bottom: 0;
  }
}

.why-lsb-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .why-lsb-block ul {
    display: flex;
    flex-flow: row wrap;
  }
}

.why-lsb-block ul li {
  margin-top: 2rem;
}
.why-lsb-block ul li h3 {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .why-lsb-block ul li {
    width: 50%;
  }
}

.why-lsb-block ul li p {
  margin: 0;
}

@media (min-width: 576px) {
  .why-lsb-block ul li p {
    max-width: 90%;
  }
}

.lsb-difference ul li {
  margin-bottom: 1rem;
}

.lsb-difference ul h3 {
  position: relative;
  width: 100%;
  color: var(--color-default);
  text-transform: none;
  font-weight: 700;
}

.user-feedback p {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .user-feedback p {
    max-width: 80%;
  }

  .user-feedback p em {
    font-style: initial;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: underline;
  }
}

.feedback-link {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .feedback-link {
    margin-bottom: 0;
  }
}

.feedback-link a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  background: var(--color-default);
  height: 100%;
}

.feedback-link a img {
  display: block;
  margin: 1.75rem auto;
  width: initial;
  max-width: 150px;
  height: 55px;
}

.feedback-link a span {
  display: block;
  color: var(--color-white);
  text-align: center;
  padding: 0.25rem 0;
  background: var(--color-primary);
}
h2.section-heading {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  h2.section-heading {
    background: url(../images/dark_brown.gif) repeat-x center center;
    padding: 0 5rem;
  }
}
h2.section-heading span {
  text-align: center;
  background: var(--color-secondary);
  font-weight: 400;
}
@media (min-width: 768px) {
  h2.section-heading span {
    padding: 0 2rem;
  }
}

/* ---------lsb-card-section-css------------- */
.article-card-block a {
  display: block;
  height: 100%;
}
.article-card-block.card {
  margin: 0 0 2rem 0;
  background: 0 0;
  border: none;
}
@media (min-width: 576px) {
  .article-card-block.card {
    padding: 0.75rem;
  }
}
.article-card-block .card-body {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  text-decoration: none;
  padding: 0 0 3rem 0;
  background: rgba(201, 185, 163, 0.45);
  border: 1px solid rgba(44, 26, 0, 0.5);
  border-radius: 0.25rem;
  transition: all 0.3s;
  overflow: hidden;
}
.article-card-block .card-body:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
  background: rgba(201, 185, 163, 0.2);
}
.article-card-block .card-body:hover .post-thumbnail img {
  scale: 1.05;
}
.article-card-block .card-body .entry-header h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0;
  padding: 0 0.75rem;
  text-align: center;
  color: var(--color-primary);
}
.article-card-block .card-body .entry-header h2 a {
  color: var(--color-primary);
}
.article-card-block .card-body .entry-header h2 a:hover {
  text-decoration: underline;
}
.article-card-block .card-body .entry-summary {
  display: none;
  padding: 1rem;
}
.article-card-block .card-body .entry-summary p {
  line-height: 1.15;
}
.article-card-block .card-body .post-thumbnail {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  height: 235px;
  overflow: hidden;
}
.article-card-block .card-body .post-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  transition: all 0.3s;
}
.article-card-block .card-body .entry-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 1rem 0.5rem 1rem;
}
.article-card-block .card-body .entry-footer .entry-meta {
  font-size: 0.875rem;
  color: #ad9473 !important;
  border-top: 1px solid #ad9473;
  text-align: right;
  padding-top: 0.25rem;
}
.article-card-block .card-body .entry-footer .entry-meta .posted-on time {
  font-size: 0.875rem;
  color: #ad9473;
}
.article-card-block
  .card-body
  .entry-footer
  .entry-meta
  .posted-on
  time.updated {
  display: none;
}
.article-card-block
  .card-body
  .entry-footer
  .entry-meta
  .posted-on
  time.published.updated {
  display: inline;
}
.article-card-block .card-body .entry-footer .entry-meta .byline {
  display: none;
}
.article-card-block .tags {
  display: block;
}
.article-card-block .tags > span {
  display: block;
  width: 100%;
  padding: 0 0.75rem;
}
.article-card-block .tags > span::before {
  display: block;
  font-weight: 700;
  width: 100%;
  font-size: 0.75rem;
}
.article-card-block .tags > span.cat-links {
  margin-bottom: 1rem;
}
.article-card-block .tags > span.cat-links::before {
  content: "Appears In Category:";
}
.article-card-block .tags > span.cat-links a {
  text-decoration: underline;
}
.article-card-block .tags > span.cat-links a:hover {
  text-decoration: none;
}
.article-card-block .tags > span.tags-links::before {
  content: "Tags:";
}
.article-card-block .tags > span.tags-links span {
  border-radius: 2px;
  background: #c0ad93;
}
.article-card-block .tags > span span {
  border-radius: 0;
  color: var(--color-default) !important;
  background: 0 0;
}
.article-card-block .tags > span span a {
  font-weight: 400;
  color: var(--color-default);
}
.cta-section-footer {
  display: flex;
  width: 100%;
  margin-bottom: 2rem;
}
.cta-section-footer::after,
.cta-section-footer::before {
  content: "";
  display: block;
  flex: 1;
  background: url(../images/dark_brown.gif) repeat-x center center;
}
.cta-section-footer::before {
  margin-right: 1rem;
}
.cta-section-footer::after {
  margin-left: 1rem;
}

/*--------------------------------------------------------------
# About Page Css
--------------------------------------------------------------*/

/* ---------common-banner-section-css------------- */
.hero-cover {
  position: absolute;
  z-index: 777;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-opicity);
}
.banner-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 340px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-color: var(--color-bg-opicity);
}
@media (min-width: 576px) {
  .banner-section {
    height: 35vh;
    max-height: 400px;
    min-height: 375px;
  }
}
.banner-section .banner-content {
  text-align: center;
}
@media (min-width: 576px) {
  .banner-section .banner-content {
    max-width: 700px;
  }
}
@media (min-width: 992px) {
  .banner-section .banner-content {
    max-width: 900px;
  }
}
.banner-section.about .lsb-brand {
  max-width: 200px;
}
.banner-section .banner-content h1,
.banner-section .banner-content h2 {
  position: relative;
  display: block;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 20px var(--color-black);
  padding: 0 2rem;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 1.4076rem + 1.5217vw, 3.5rem);
}
.banner-section .banner-content h1 em,
.banner-section .banner-content h2 em {
  font-style: initial;
  text-decoration: underline;
}
.banner-section .common-banner-image {
  height: 100%;
}
.banner-section .common-banner-image picture {
  display: block;
  height: 100%;
}
.banner-section .common-banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.banner-section.consignment {
  background-image: url(../images/hero-consignment-sm.jpg);
}
@media (min-width: 768px) {
  .banner-section.consignment {
    background-image: url(../images/hero-consignment-lg.jpg);
  }
}
.banner-section.about .lsb-brand {
  max-width: 200px;
}
@media (max-width: 767px) {
  .banner-section.about .lsb-brand {
    max-width: 90px;
    margin-bottom: 10px;
  }
}
.banner-section.process {
  background-image: url(../images/hero-process-sm.jpg);
}
@media (min-width: 768px) {
  .banner-section.process {
    background-image: url(../images/hero-process-lg.jpg);
  }
}
.banner-section.auctions {
  background-image: url(../images/hero-auctions-sm.jpg);
}
@media (min-width: 768px) {
  .banner-section.auctions {
    background-image: url(../images/hero-auctions-lg.jpg);
  }
}
.banner-section.get-started {
  background-image: url(../images/hero-start-sm.jpg);
}
@media (min-width: 576px) {
  .banner-section.get-started {
    height: 50vh;
    max-height: 700px;
    min-height: 375px;
    border-bottom: 5px solid var(--color-primary);
  }
}
@media (min-width: 768px) {
  .banner-section.get-started {
    background-image: url(../images/hero-start-lg.jpg);
  }
}
.banner-section.careers {
  background-image: url(../images/hero-about-lg.jpg);
}
.banner-section.sell {
  background-image: url(../images/hero-sell-lg.jpg);
}
@media (min-width: 768px) {
  .banner-section.sell {
    background-image: url(../images/hero-sell-lg.jpg);
  }
}
.banner img {
  width: 100%;
}
.banner-section.spencer a.play-btn {
  display: block;
  margin: 0 auto;
}
.banner-section.spencer a.play-btn img {
  max-width: 100px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .banner-section.spencer a.play-btn img {
    max-width: 60px;
    margin-bottom: 10px;
  }
}
.banner-section.spencer a.play-btn:hover img {
  opacity: 1;
}
.banner-section.spencer p {
  color: var(--color-white);
  text-shadow: 0 0 4px var(--color-default);
}
.note-block {
  font-style: oblique;
  font-weight: 700;
  font-size: 80%;
  margin: 1rem auto;
  text-align: center;
}
ol.circle-checkmark,
ul.circle-checkmark {
  list-style: none;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  ol.two-col,
  ul.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 5rem;
  }
}
.lsb-difference ul li {
  margin-bottom: 1rem;
}
ol.circle-checkmark li,
ul.circle-checkmark li {
  position: relative;
}
ol.circle-checkmark li::before,
ul.circle-checkmark li::before {
  display: block;
  position: absolute;
  display: block;
  left: -30px;
  top: 4px;
  content: url(../images/circle-checkmark.svg);
}
.lsb-difference ul h3 {
  position: relative;
  width: 100%;
  color: var(--color-default);
  text-transform: none;
  font-weight: 700;
  font-size: 1rem;
}
.history-section h2 {
  font-weight: 400;
}

/*--------------------------------------------------------------
# Our Staff Page Css
--------------------------------------------------------------*/
.our-staff-block .staff-bio {
  text-align: left;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 15px solid var(--color-border);
}
.our-staff-block .staff-bio:last-of-type {
  border: none;
}
@media (min-width: 768px) {
  .our-staff-block .staff-bio:nth-last-child(2) {
    border: none;
  }
}
.our-staff-block .staff-bio header {
  text-align: center;
}
@media (min-width: 768px) {
  .our-staff-block .staff-bio header {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .our-staff-block .staff-bio header {
    display: flex;
    align-items: center;
    justify-content: flext-start;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .our-staff-block .staff-bio header {
    display: flex;
    align-items: center;
    justify-content: flext-start;
    text-align: left;
  }
}
.our-staff-block .staff-bio header h2 {
  text-transform: none;
  margin-top: 0.5rem;
  line-height: 1.25;
  font-weight: 400;
}
@media (min-width: 992px) {
  .our-staff-block .staff-bio header h2 {
    text-align: left;
    padding-left: 1.5rem;
    margin-top: 0;
  }
}
.our-staff-block .staff-bio header h2 small {
  display: block;
  color: var(--color-default);
  text-transform: uppercase;
  font-size: 64%;
  line-height: 1.5;
}
.our-staff-block .staff-bio header div.headshot {
  padding: 0.25rem;
  border: 1px solid var(--color-default);
  display: inline-block;
}
@media (min-width: 992px) {
  .our-staff-block .staff-bio header div.headshot {
    display: block;
  }
}
.our-staff-block .staff-bio header div.headshot img {
  width: 200px;
  min-width: 200px;
  min-height: 280px;
  border: 1px solid var(--color-default);
}
.our-staff-block .staff-bio p {
  margin: 1rem 0 0 0;
}
.our-staff-block .staff-bio header h2 small {
  display: block;
  color: var(--color-default);
  text-transform: uppercase;
  font-size: 70%;
  line-height: 1.5;
}
.our-staff-block .staff-bio header div.headshot {
  padding: 0.25rem;
  border: 1px solid var(--color-default);
  display: inline-block;
}
@media (min-width: 992px) {
  .our-staff-block .staff-bio header div.headshot {
    display: block;
  }
}
.our-staff-block .staff-bio header div.headshot img {
  width: 200px;
  min-width: 200px;
  min-height: 280px;
  border: 1px solid var(--color-default);
}
.our-staff-block .staff-bio p {
  margin: 1rem 0 0 0;
}

/*--------------------------------------------------------------
# Spencer Page Css
--------------------------------------------------------------*/
.spencer-img-block .headshot {
  display: block;
  max-width: 250px;
  padding: 0.25rem;
  margin: 0 auto 2rem auto;
  border: 1px solid var(--color-default);
  width: 100%;
}

/*--------------------------------------------------------------
# Contact Page Css
--------------------------------------------------------------*/

ul.company-info {
  list-style: none;
  padding: 0;
}
@media (min-width: 992px) {
  ul.company-info {
    padding-left: 10px;
  }
}
ul.company-info li {
  padding: 1rem 0 0 0;
  border-top: 1px dotted var(--color-border);
}
ul.company-info li:first-of-type {
  border: none;
}

/*--------------------------------------------------------------
# Payments Page Css
--------------------------------------------------------------*/

.payment-title {
  text-align: center;
  color: var(--color-secondary);
  padding: 1rem;
  background: var(--color-default);
}
.privacy-content .dropdown-privacy-statement .cmplz-subtitle {
  font-weight: 600;
  font-size: 14px;
}
.privacy-content .dropdown-privacy-statement ul li {
  font-size: 14px;
}
.privacy-content .dropdown-privacy-statement h4 {
  font-size: 15px;
  margin-top: 10px;
}
.privacy-content .dropdown-privacy-statement p {
  font-size: 14px;
}
.privacy-content .dropdown-privacy-statement ol li {
  font-size: 14px;
}
.privacy-content .dropdown-privacy-statement ul li {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Get Started Page Css
--------------------------------------------------------------*/

.get-started-content {
  position: relative;
  top: -10rem;
  padding-bottom: 0;
}
.get-started-content .mid-banner {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .action-link {
    padding: 0;
  }
}
.action-link-content {
  text-align: center;
  padding: 4rem 2.2rem;
  background: var(--color-border);
  border: 10px solid var(--color-secondary);
  min-height: 370px;
}
.action-link-content a.cta {
  margin-bottom: 0;
}
.action-link-content h2 {
  color: var(--color-default);
  text-align: center;
  font-weight: 700;
}
.mid-banner .banner-wrapper {
  background: url(../images/banner-flourish_rectangle.svg) no-repeat center
    center var(--color-default);
}

/*--------------------------------------------------------------
# Privacy Statement Page Css
--------------------------------------------------------------*/

.privacy-content h2 {
  margin: 2rem 0 0;
  font-size: 22px;
  text-align: left;
  padding-bottom: 10px;
}
.privacy-content summary div {
  background: var(--color-white);
  display: flex;
}
.privacy-content summary {
  display: block;
  background: var(--color-white);
  margin: 5px 0;
  padding: 5px 10px;
  align-items: center;
  justify-items: stretch;
}
.privacy-content summary h3 {
  padding: 0 5px;
  font-size: 16px;
  border-bottom: 0;
  width: 100%;
  text-transform: initial;
}
.privacy-content summary p {
  text-align: right;
  padding: 0;
  margin: 0;
  font-size: 14px;
  border-bottom: 0;
}
.privacy-content summary div:after {
  cursor: pointer;
  content: "";
  background: url(../images/chevron-down.svg) no-repeat;
  transform: rotate(0);
  transition: all 0.5s ease;
  background-size: cover;
  height: 18px;
  width: 18px;
  margin: 3px;
}

/*--------------------------------------------------------------
# terms of Service Page Css
--------------------------------------------------------------*/
.terms-content-block h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Careers Page Css
--------------------------------------------------------------*/

.banner-section .lsb-logo {
  max-width: 200px;
}
.careers .job-listing {
  width: 100%;
  text-align: left;
  padding: 0 0 4rem 0;
}
.job-listing h2 {
  font-size: 1.5rem;
  font-weight: 400;
}
.careers .job-listing .cta {
  margin: 0;
}
.careers-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.careers-nav a {
  flex: 1;
  min-width: auto;
  margin: 1rem;
}
.job-post-content ul {
  margin: 24px 0px;
}
.job-post-content ul li {
  margin-bottom: .875rem;
}

/*--------------------------------------------------------------
# Acquisition Page Css
--------------------------------------------------------------*/

.summary-opening {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

section.our-team-members {
  justify-content: center;
  margin-top: 0;
}

section.our-team-members h2 {
  text-align: center;
  font-weight: 400;
}

section.our-team-members .team-person {
  padding: 0 10px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  section.our-team-members .team-person {
    padding: 0 15px;
    max-width: 222px;
  }
}

section.our-team-members .team-person .img-box {
  max-width: 250px;
  padding: 0.25rem;
  margin: 0 auto 0.5rem;
  border: 1px solid var(--color-default);
}

section.our-team-members .team-person .img-box img {
  border: 1px solid var(--color-default);
  width: 100%;
}

section.our-team-members .team-person h3 {
  font-size: 1.05rem;
  text-transform: capitalize;
  font-weight: 700;
  max-width: 250px;
  margin: auto;
}

@media (min-width: 576px) {
  section.our-team-members .team-person h3 {
    font-size: 1.25rem;
  }
}

section.our-team-members .team-person h3 small {
  display: block;
  font-size: 80%;
  color: var(--color-default);
  margin-top: 0.25rem;
}

.shipment-details figure {
  margin: 0 0 2rem;
}

.shipment-details figure img {
  border: 10px solid var(--color-default);
}

.shipment-details figure figcaption {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

.shipment-details figure figcaption em {
  color: var(--color-primary);
}

.shipment-details ul {
  list-style: none;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .shipment-details ul {
    padding-bottom: 2rem;
  }
}

.shipment-details ul li {
  margin-bottom: 3rem;
}

.shipment-details h3 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 1.15rem;
  margin-top: 0;
}

.banner-cta {
  border: 1px solid var(--color-default);
  padding: 4px;
}

.banner-cta div {
  text-align: center;
  background: rgba(44, 26, 0, 0.1);
  border: 1px solid var(--color-default);
}

/*--------------------------------------------------------------
# Auction Page Css
--------------------------------------------------------------*/
.auction-listing {
  padding-top: 2rem;
}

.auction-listing img {
  display: block;
  width: auto;
  height: 70px;
  margin: 0 auto 2rem;
}

.auction-listing a.auction-list-btn {
  display: block;
  align-items: center;
  position: relative;
  color: var(--color-secondary);
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--color-default);
  padding: 0;
  transition: all 0.3s;
}

.auction-listing a.auction-list-btn:hover {
  padding-left: 70px;
}

.auction-listing a.auction-list-btn:hover i.auction-icons {
  width: 80px;
}

.auction-listing a.auction-list-btn span {
  flex: 3;
}

.auction-listing a.auction-list-btn i.auction-icons {
  height: 50px;
  width: 0;
  overflow: hidden;
  line-height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-primary);
  transition: all 0.3s;
}

.auction-listing h3 {
  text-transform: none;
  padding: 0 0 0.5rem 0;
  margin: 1rem 0 0 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.auction-listing p {
  margin: 0 0 1rem 0;
}

/*--------------------------------------------------------------
# Our Process Page Css -
--------------------------------------------------------------*/
.process-step {
  margin-bottom: 4rem;
}
@media (min-width: 576px) {
  .process-step {
    display: flex;
  }
}
@media (min-width: 768px) {
  .process-step {
    display: block;
  }
}
.process-step header img {
  width: 75px;
  margin-bottom: 1rem;
}
.process-step header h3 {
  font-weight: 700;
  text-transform: none;
}
.process-step header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .process-step header {
    flex: 1;
  }
}
@media (min-width: 576px) {
  .process-step p {
    flex: 2;
  }
}
@media (min-width: 768px) {
  .process-step p {
    padding: 0 1rem;
  }
}

/*--------------------------------------------------------------
# FAQ Page Css -
--------------------------------------------------------------*/
.faq-list {
  padding: 0;
  margin-top: 3rem;
}
.faq-inner-block .accordion-item {
  background: transparent;
  border: none;
}
.faq-inner-block .accordion-header .accordion-button {
  background: transparent;
  padding: 1rem 0 0 0;
  border-top: 1px solid rgba(44, 26, 0, 0.4);
  padding-bottom: 12px;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 6px;
  font-weight: 400;
}
.faq-inner-block .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.faq-inner-block .accordion-header .accordion-button.collapsed {
  color: var(--color-default);
  font-weight: 400;
}
.faq-inner-block .accordion-collapse.collapse .accordion-body {
  transition: all 0.3s ease-out;
  background: rgba(201, 185, 163, 0.2);
}
.faq-inner-block .accordion-collapse.collapse .faq-title {
  font-size: 1rem;
  color: var(--color-primary);
}
.faq-inner-block .accordion-button.collapsed:after {
  transform: rotate(-90deg);
  transition: all 0.3s;
}
.faq-inner-block .accordion-button:not(.collapsed):after {
  transform: rotate(0deg);
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .faq-sidebar {
    margin-top: 0;
    padding-left: 3rem;
  }
}
@media (max-width: 767px) {
  .faq-sidebar {
    margin-top: 2rem;
  }
}
.faq-sidebar h2 {
  text-align: center;
  font-weight: 400;
}
.faq-sidebar h2 small {
  line-height: 1.2;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Collection Page Css -
--------------------------------------------------------------*/

.search-filter-block {
  margin: 3rem 0;
}
.search-filter-block .search-wrapper {
  display: none;
  width: 100%;
  padding: 0.5rem 1rem 0 1rem;
  box-shadow: inset 0 0 8px rgba(44, 26, 0, 0.3);
  border-radius: 0 0 0.25rem 0.25rem;
  background: rgba(44, 26, 0, 0.05);
}
@media (min-width: 768px) {
  .search-filter-block .search-wrapper {
    display: block;
    padding: 1rem;
    border-radius: 0.25rem;
  }
}
.search-filter-block .search-wrapper h5 {
  display: none;
}
@media (min-width: 768px) {
  .search-filter-block .search-wrapper h5 {
    display: block;
    padding-left: 0.5rem;
  }
}
.search-filter-block .search-wrapper.archive-search {
  display: block;
}
.search-filter-block .search-wrapper.archive-search h5 {
  display: block;
  font-weight: 400;
}
.search-filter-block form.archive-search-form ul {
  width: 100%;
  padding: 0;
  display: inline-block;
}
@media (min-width: 768px) {
  .search-filter-block form.archive-search-form ul {
    display: flex;
    list-style: none;
  }
}
.archive-search-form li {
  list-style: none;
  display: inline-block;
  padding-right: 10px;
}
.search-filter-block form.archive-search-form ul li {
  width: 100%;
  padding: 0;
}
@media (min-width: 768px) {
  .search-filter-block form.archive-search-form ul li {
    flex: 3;
  }
}
.search-filter-block form.archive-search-form ul li:last-of-type {
  flex: 1;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .search-filter-block form.archive-search-form ul li:last-of-type {
    margin-top: 0;
    padding-left: 1rem;
  }
}
.search-filter-block input,
select,
textarea {
  min-height: 45px;
  border: 1px solid var(--color-border);
  background: rgba(44, 26, 0, 0.1);
  margin: 0;
  border-radius: 3px;
}
.search-filter-block form.archive-search-form ul li input {
  height: 50px;
  width: 100%;
  padding: 0px 10px;
  box-sizing: border-box;
}
.search-filter-block form.archive-search-form ul li input::-moz-placeholder {
  color: var(--color-default);
}
.search-filter-block form.archive-search-form ul li input:focus {
  outline: none;
}
.search-filter-block
  form.archive-search-form
  ul
  li
  input:-ms-input-placeholder {
  color: var(--color-default);
}
.search-filter-block form.archive-search-form ul li input::placeholder {
  color: var(--color-default);
}
input[type="submit"] {
  display: block;
  text-transform: uppercase;
  min-width: 150px;
  height: auto;
  color: var(--color-secondary);
  padding: 1rem;
  margin: 0 auto;
  background-color: var(--color-primary);
  border: none;
  transition: background-color 0.3s;
}
input[type="submit"]:hover {
  background: #b00000;
}
.collection-block article.card.article-card-block {
  padding: 0px;
}
.collection-block article.card.article-card-block .card-title {
  min-height: 60px;
}
.right-collection-block .widget {
  border-bottom: none !important;
}
.right-collection-block .widget .wp-block-heading {
  font-size: 1.5rem;
  color: var(--color-primary);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-default);
  font-weight: 400;
}
.collection-widget-area {
  background: 0 0;
  border: none;
}
@media (min-width: 992px) {
  .collection-widget-area {
    padding: 0 0 2rem 2rem;
  }
}
.collection-widget-area ul {
  list-style: none;
  margin-top: 2rem;
}
.collection-widget-area ol,
.collection-widget-area ul {
  line-height: 1.15;
  padding-left: 1rem;
}
@media (min-width: 576px) {
  .collection-widget-area ol,
  .collection-widget-area ul {
    display: flex;
    flex-flow: row wrap;
  }
}
@media (min-width: 992px) {
  .collection-widget-area ol,
  .collection-widget-area ul {
    display: block;
  }
}
.collection-widget-area ul li {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--color-border);
}
.collection-widget-area ol li,
.collection-widget-area ul li {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .collection-widget-area ol li,
  .collection-widget-area ul li {
    flex: 50%;
  }
}
@media (min-width: 576px) {
  .collection-widget-area ol li:nth-of-type(odd),
  .collection-widget-area ul li:nth-of-type(odd) {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .collection-widget-area ol li:nth-of-type(odd),
  .collection-widget-area ul li:nth-of-type(odd) {
    padding-right: 0;
  }
}
.collection-widget-area ul li::before {
  position: absolute;
  left: -25px;
  top: -3px;
  display: block;
  width: 25px;
  content: url(../images/icon-triangle-right.svg);
}
.collection-widget-area ol a,
.collection-widget-area ol a:active,
.collection-widget-area ol a:visited,
.collection-widget-area ul a,
.collection-widget-area ul a:active,
.collection-widget-area ul a:visited {
  color: var(--color-default);
}
.custom-pagination {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto 3rem;
}
.custom-pagination .page-numbers {
  color: var(--color-secondary);
  padding: 0 0.75rem;
  background: var(--color-default);
  border: none;
  text-align: center;
  margin-right: 4px;
  width: 45px;
  height: 45px;
  display: inline-block;
  line-height: 3em;
}
.custom-pagination .page-numbers:hover {
  background: var(--color-primary);
  border: none;
}
.custom-pagination .current {
  background: var(--color-primary);
  border: none;
}

/*--------------------------------------------------------------
# Sell Page Css -
--------------------------------------------------------------*/
.sell-heading-block .required-field-block {
  box-sizing: border-box;
}
.sell-form-shortcode {
  margin-top: 2rem;
}
.sell-form-shortcode .form-title-block {
  border-bottom: 1px solid var(--color-black);
  padding: 0 16px 8px 0;
  margin-bottom: 30px;
}
.form-title-block .sell-form-title {
  font-size: 1.2rem;
  font-weight: 400;
}
.common-from-block p {
  margin-bottom: 8px;
}
.common-from-block .form-group p {
  display: block;
}
.common-from-block p .form-label label {
  font-weight: 600;
}
@media (min-width: 992px) {
  .common-from-block .form-group p {
    display: flex;
    justify-content: space-between;
  }
}
.common-from-block .form-group p label {
  width: 100%;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .common-from-block .form-group p label:first-child {
    padding-right: 1rem;
  }
  .common-from-block .form-group p label:last-child {
    padding-left: 1rem;
  }
}
.common-from-block .form-group .content-area {
  width: 100%;
}
.common-from-block .form-group .content-area select {
  width: 100%;
}
.common-from-block .form-group .content-area select:focus {
  outline: none;
}
.common-from-block .form-group p span {
  display: block;
}
.common-from-block .form-group p .label-tag {
  font-weight: 400;
  font-size: 0.875rem;
  padding-top: 5px;
}
.common-from-block p input {
  width: 100%;
  min-height: 45px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  background: rgba(44, 26, 0, 0.1);
  margin: 0;
  border-radius: 3px;
}
.common-from-block p input:focus {
  outline: none;
}
.common-from-block .contact-form-group p {
  display: block;
}
@media (min-width: 992px) {
  .common-from-block .contact-form-group p {
    display: flex;
    justify-content: space-between;
  }
}
.contact-form-group p .form-label {
  display: block;
}
.contact-form-group p .form-label .info-label {
  padding-left: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-form-group p label {
  width: 100%;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.contact-form-group p label span {
  display: block;
}
.contact-form-group p label .required-tag {
  display: inline-block;
}
@media (min-width: 992px) {
  .contact-form-group p label:first-child {
    padding-right: 1rem;
  }
  .contact-form-group p label:last-child {
    padding-left: 1rem;
  }
}
.contact-form-group p label span select {
  width: 100%;
  padding: 0.5rem 0.5rem;
  font-weight: 400;
}
.contact-form-group p label span select:focus {
  outline: none;
}
.info-inner-block {
  margin-top: 30px;
}
.item-info-block {
  margin-bottom: 30px;
}
.item-info-block .form-label label {
  margin-bottom: 8px;
}
.item-info-block .content-area {
  width: 100%;
}
.item-info-block .label-tag {
  font-weight: 400;
  font-size: 0.875rem;
  padding-top: 5px;
}
.item-info-block .content-area textarea {
  width: 100%;
  padding: 0.5rem 1rem;
}
.item-info-block .content-area textarea:focus {
  outline: none;
}
.item-info-block .img-upload-block label {
  width: 100%;
  background: rgba(0, 0, 0, 0.02);
  border: 1px dashed #ccc;
  border-radius: 4px;
  margin-bottom: 8px;
  padding: 32px;
  text-align: center;
}
.item-info-block .img-upload-block label input {
  background: none;
  border: none;
  text-align: center;
  margin: 0 auto;
  width: auto;
}
.item-info-block .upload-info-msg {
  font-size: 15px;
  padding-top: 6px;
  display: block;
}
.item-info-block .resume-upload-block label {
  width: 100%;
  background: rgba(0, 0, 0, 0.02);
  border: 1px dashed #ccc;
  border-radius: 4px;
  margin-bottom: 8px;
  text-align: left;
}
.country-field-block label {
  width: 100%;
}
.country-field-block span {
  display: block;
  width: 100%;
}
.country-field-block span select {
  width: 100%;
  display: block;
}
.country-field-block span select:focus {
  outline: none;
}
.faq-field-block label .label-tag {
  margin-bottom: 10px;
  display: block;
  font-size: 0.875rem;
  padding-top: 4px;
}
.faq-field-block .item-info-block {
  margin-bottom: 20px;
}
.required-tag {
  color: #c02b0a;
  display: inline-block;
  font-size: 13.008px;
  box-sizing: border-box;
}
.common-from-block input[type="submit"] {
  display: block;
  text-transform: uppercase;
  min-width: 150px;
  height: auto;
  color: var(--color-secondary);
  padding: 1rem;
  margin: 0 auto;
  background-color: var(--color-primary);
  border: none;
  transition: background-color 0.3s;
  width: auto;
  margin-top: 3rem;
}
.common-from-block input[type="submit"]:hover {
  background-color: #b00000;
}

/*--------------------------------------------------------------
# Single Post Content Page Css
--------------------------------------------------------------*/
body.single-post {
  background: linear-gradient(to bottom, #c9b9a3 20%, #fff3d7 60%);
  background-attachment: fixed;
}
.single-main-block .post_image {
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.single-main-block .post_image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  border: 10px solid #fff3d7;
}
.single-post-title {
  padding: 0 2rem;
}
.single-post-title h2 {
  margin: 0 auto 2rem auto;
  max-width: 800px;
  text-align: center;
  font-weight: 500;
  line-height: initial;
  font-size: 2rem;
}
@media (min-width: 576px) {
  .single-post-title h2 {
    margin: 2rem auto;
  }
}
@media (min-width: 992px) {
  .single-post-content {
    max-width: 80%;
    margin: 0 auto;
  }
}
.single-post-content .button-sec {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  margin: 0 0 2rem 0;
  border-top: 1px solid #2c1a00;
  border-bottom: 1px solid #2c1a00;
}
@media (min-width: 576px) {
  .single-post-content .button-sec {
    display: flex;
  }
}
a.cta.with-icon,
button.cta.with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-post-content .button-sec .cta {
  text-decoration: none;
  width: 100%;
  max-width: 100%;
  margin: 0.25rem;
}
@media (min-width: 576px) {
  .single-post-content .button-sec .cta {
    flex: 0 1 auto;
  }
}
.single-post-content figure.wp-caption {
  max-width: 350px;
  width: auto;
  margin: 0;
}
.single-post-content figure.wp-caption img {
  width: 100%;
  height: auto;
  padding: 0.5rem;
}
.search_main_wrapper {
  margin-top: 150px;
}
#search_filters {
  margin: 3rem 0;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  #search_filters #toggle_search_filters {
    display: none;
  }
}
#search_filters #toggle_search_filters {
  width: 100%;
  background: #c9b9a3;
  border: 1px solid #000;
  padding: 1rem;
}
#search_filters .search-wrapper {
  width: 100%;
  padding: 0.5rem 1rem 0 1rem;
  box-shadow: inset 0 0 8px rgba(44, 26, 0, 0.3);
  border-radius: 0 0 0.25rem 0.25rem;
  background: rgba(44, 26, 0, 0.05);
}
@media (min-width: 768px) {
  #search_filters .search-wrapper {
    display: block;
    padding: 1rem;
    border-radius: 0.25rem;
  }
}
#search_filters form.search-filters ul {
  padding: 0 0 0 0.5rem;
}
#search_filters form.search-filters ul li {
  width: 33%;
  padding: 0 0.25rem;
}
.searchandfilter li {
  list-style: none;
  display: inline-block;
  padding-right: 10px;
}
#search_filters form.search-filters ul li h4 {
  text-transform: none;
  margin: 0 0 0.25rem;
  font-size: 14px;
}
#search_filters form.search-filters ul li input,
#search_filters form.search-filters ul li select {
  width: 100%;
}
input,
select {
  height: 45px;
}
input,
select,
textarea {
  min-height: 45px;
  padding: 0.5rem 1rem !important;
  border: 1px solid #c9b9a3;
  background: rgba(44, 26, 0, 0.1);
  margin: 0;
  border-radius: 3px;
}
input {
  line-height: normal;
}
#search_filters form.search-filters ul li:nth-of-type(3),
#search_filters form.search-filters ul li:nth-of-type(4) {
  width: 17%;
}
#search_filters form.search-filters ul li:last-of-type {
  width: 100%;
  margin: 2rem auto 0;
}

/*--------------------------------------------------------------
# Error Page Css
--------------------------------------------------------------*/
.error-wrapper-block {
  background-image: url(../images/404-bg-canyon-lg.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 90vh;
}
#error_page.page-content {
  min-height: 1000px;
}
.error404 .footer {
  margin-top: 0;
}
#error_page .intro-text {
  max-width: 800px;
  margin: 0 auto
}

#error_page .intro-text h6 {
  text-align: center
}

#error_page .intro-text p {
  display: block;
  margin: 20px auto;
  text-align: center
}

#error_page ul.alt-links {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  list-style: none;
  padding: 0
}

#error_page ul.alt-links li {
  width: 100%
}

@media (min-width: 768px) {
  #error_page ul.alt-links li {
      width:33%
  }
}

#error_page ul.alt-links li a {
  text-align: center;
  display: block;
  color: #fff3d7;
  background: #2c1a00;
  padding: .5rem;
  margin: 1rem
}
@media (max-width: 767px) {
  #error_page.page-content {
    padding-top: 6rem;
  }
}

/*--------------------------------------------------------------
# Search Filter Page Css
--------------------------------------------------------------*/

.no-results.not-found {
  background: 0 0;
  border: none
}

.no-results.not-found .page-content {
  padding: 1rem 0
}

.no-results.not-found .page-content p {
  font-size: 1.1rem;
  text-align: center
}

.search-inner-block .search-wrapper {
  width: 100%;
  padding: .5rem 1rem .5rem 1rem;
  box-shadow: inset 0 0 8px rgba(44,26,0,.3);
  border-radius: 0 0 .25rem .25rem;
  background: rgba(44,26,0,.05);
  margin: 2rem 0px;
}
@media (min-width: 768px) {
  .search-inner-block .search-wrapper {
      display:block;
      padding: 1rem;
      border-radius: .25rem
  }
}

.search-inner-block .search-wrapper h5 {
  font-weight: 400;
}

@media (min-width: 768px) {
  .search-inner-block .search-wrapper h5 {
      display:block;
      padding-left: .5rem
  }
}

.search-inner-block .search-wrapper .btn-clear-search {
  display: block;
  margin: 1rem auto;
  background: 0 0;
  border: 1px solid #2c1a00;
  border-radius: .25rem
}

.search-inner-block .search-wrapper.archive-search {
  display: block
}

.search-inner-block .search-wrapper.archive-search h5 {
  display: block
}

.search-inner-block form.archive-search-form ul {
  width: 100%;
  padding: 0
}

@media (min-width: 768px) {
  .search-inner-block form.archive-search-form ul {
      display:flex
  }
}

.search-inner-block form.archive-search-form ul li {
  width: 100%;
  padding: 0
}

@media (min-width: 768px) {
  .search-inner-block form.archive-search-form ul li {
      flex:3
  }
}

.search-inner-block form.archive-search-form ul li:last-of-type {
  flex: 1;
  margin-top: 1rem
}

@media (min-width: 768px) {
  .search-inner-block form.archive-search-form ul li:last-of-type {
      margin-top:0;
      padding-left: .5rem
  }
}

.search-inner-block form.archive-search-form ul li input {
  height: 50px;
  width: 100%
}

.search-inner-block form.archive-search-form ul li input::-moz-placeholder {
  color: #2c1a00
}

.search-inner-block form.archive-search-form ul li input:-ms-input-placeholder {
  color: #2c1a00
}

.search-inner-block form.archive-search-form ul li input::placeholder {
  color: #2c1a00
}

.search-inner-block form.search-filters ul {
  padding: 0
}

@media (min-width: 768px) {
  .search-inner-block form.search-filters ul {
      padding:0 0 0 .5rem
  }
}

.search-inner-block form.search-filters ul li {
  width: 100%;
  padding: 0;
  margin: 1rem 0
}

.search-inner-block form.search-filters ul li:nth-of-type(3),.search-inner-block form.search-filters ul li:nth-of-type(4) {
  width: 100%
}

.search-inner-block form.search-filters ul li:nth-of-type(3) input,.search-inner-block form.search-filters ul li:nth-of-type(4) input {
  display: block;
  margin: 0;
  width: 100%;
  min-width: 95%;
  position: relative;
  box-sizing: border-box
}

.search-inner-block form.search-filters ul li:nth-of-type(3) input::after,.search-inner-block form.search-filters ul li:nth-of-type(4) input::after {
  content: "From";
  position: absolute;
  left: 0;
  color: #7d0000;
  font-style: oblique;
  font-weight: 700;
  font-size: .875rem;
  display: block;
  bottom: -1.4rem
}

.search-inner-block form.search-filters ul li:nth-of-type(4) input::after {
  content: "To"
}

@media (min-width: 768px) {
  .search-inner-block form.search-filters ul li {
      width:32%;
      padding: 0 .25rem
  }

  .search-inner-block form.search-filters ul li:nth-of-type(3),.search-inner-block form.search-filters ul li:nth-of-type(4) {
      width: 17%
  }
}

.search-inner-block form.search-filters ul li:last-of-type {
  width: 100%;
  margin: 2rem auto 0
}

.search-inner-block form.search-filters ul li input,.search-inner-block form.search-filters ul li select {
  width: 100%;
  box-sizing: border-box;
}

.search-inner-block form.search-filters ul li input:focus {
  outline: none;
}

.search-inner-block form.search-filters ul li input::-moz-placeholder,.search-inner-block form.search-filters ul li select::-moz-placeholder {
  color: #2c1a00
}

.search-inner-block form.search-filters ul li input:-ms-input-placeholder,.search-inner-block form.search-filters ul li select:-ms-input-placeholder {
  color: #2c1a00
}

.search-inner-block form.search-filters ul li input::placeholder,.search-inner-block form.search-filters ul li select::placeholder {
  color: #2c1a00
}

.search-inner-block form.search-filters ul li h4 {
  text-transform: none;
  margin: 0 0 .25rem;
  font-size: 16px;
  font-weight: 400;
}
.search-wrapper .searchandfilter.search-filters {
  margin-bottom: 32px;
}