@charset "UTF-8";
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: url(/images/main-background.jpg);
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.owl-nav.disabled {
  display: none;
}

input,
textarea,
select,
body {
  font-family: BrownStd, Arial, sans-serif;
}

.mobileOnly {
  display: none;
}

.listingHolder > li {
  margin-bottom: 0px;
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1300px;
    width: 1300px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}
.contact-form .successMessage {
  margin: 60px 0;
}

header {
  background-color: #000000;
  padding: 26px 0;
  border-bottom: 13px solid #b99855;
}
@media only screen and (min-width: 992px) {
  header {
    position: fixed;
    width: 100%;
    z-index: 100;
  }
}
header .burger-icon {
  display: none;
}
header .logo {
  width: 240px;
}
header .logo-1999 {
  width: 95px;
  margin-left: 15px;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .highlighed-links {
  display: flex;
}
header .highlighed-links li {
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
header .highlighed-links li:not(:last-child) {
  padding-right: 45px;
}
header .highlighed-links li a {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 2px solid #b99855;
  border-radius: 3px;
  position: relative;
  padding-left: 37px;
  min-width: 130px;
  display: inline-block;
  text-align: center;
}
header .highlighed-links li a .icon {
  display: inline-block;
  height: 47px;
  width: 47px;
  border: 2px solid #b99855;
  border-radius: 50%;
  position: absolute;
  left: -16px;
  top: -9px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
header .highlighed-links li.promotions {
  -webkit-animation: promotion 1s ease-in-out infinite alternate;
  animation: promotion 1s ease-in-out infinite alternate;
}
header .highlighed-links li.promotions:hover {
  animation-play-state: paused;
}
header .highlighed-links li.promotions a {
  background-color: #73654b;
}
header .highlighed-links li.promotions a .icon {
  background: url(/images/promotions.svg) no-repeat;
  background-size: 23px;
  background-color: #8d7e63;
  background-position: 9px 7px;
}
header .highlighed-links li.lanches a {
  background-color: #3c3c3c;
}
header .highlighed-links li.lanches a .icon {
  background: url(/images/new.svg) no-repeat;
  background-size: 33px;
  background-color: #555555;
  background-position: 5px 13px;
}
header .highlighed-links li.auction a {
  background-color: #85694f;
  -webkit-animation-name: gradient-shadow;
  animation-name: gradient-shadow;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
header .highlighed-links li.auction a .icon {
  z-index: 2;
  display: block;
  background: url(/images/auction.svg) no-repeat;
  background-size: 28px;
  background-color: #85694f;
  background-position: 8px 8px;
}
header .highlighed-links li.auction a .icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
  box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
  z-index: -1;
  -webkit-animation-name: gradient-shadow;
  animation-name: gradient-shadow;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
header .highlighed-links li.auction a {
  background-color: #85694f;
}
header .highlighed-links li.auction a .icon {
  background: url(/images/Mallet-Animation-01.gif) no-repeat;
  background-size: 34px;
  background-color: #85694f;
  background-position: 5px 5px;
}
header .highlighed-links li:hover.auction .icon {
  background-size: 38px;
  background-position: 3px 3px;
}
header .highlighed-links li:hover .icon {
  -moz-transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -o-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}
header .cart-success-message, header .wishlist-success-message {
  display: none;
  position: absolute;
  top: 44px;
  right: 0;
  border: 2px solid #b29863;
  border-radius: 10px;
  background-color: #272727;
  padding: 30px;
  width: 310px;
  z-index: 10;
}
header .cart-success-message h5, header .wishlist-success-message h5 {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 22px;
  margin-bottom: 16px;
  font-weight: 400;
}
header .cart-success-message p, header .wishlist-success-message p {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22px;
}
header .cart-success-message .buttons, header .wishlist-success-message .buttons {
  display: flex;
  padding-top: 15px;
  border-top: 1px solid rgba(151, 151, 151, 0.18);
  justify-content: space-between;
  margin-top: 15px;
}
header .cart-success-message .buttons .button, header .wishlist-success-message .buttons .button {
  font-size: 10px;
}
header .cart-success-message .close-btn, header .wishlist-success-message .close-btn {
  height: 15px;
  width: 15px;
  display: inline;
  position: absolute;
  top: 13px;
  right: 11px;
  background: url(../images/close.svg) no-repeat;
  background-size: contain;
  display: inline-block;
}

@media only screen and (min-width: 992px) {
  header + main {
    padding-top: 133px;
  }
}

.e-com-nav {
  display: flex;
  position: relative;
}
.e-com-nav > li {
  position: relative;
}
.e-com-nav > li:not(:last-child) {
  padding-right: 15px;
}
.e-com-nav > li a {
  display: inline-block;
  background-size: contain !important;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.e-com-nav > li a:hover {
  opacity: 0.8;
}
.e-com-nav #wishlist-cart-header {
  display: flex;
}
.e-com-nav #cart-header-icon {
  padding-bottom: 30px;
  margin-bottom: -30px;
}
.e-com-nav #cart-header-icon:hover .cart-success-message {
  display: block !important;
}
.e-com-nav #wishlist-header-icon {
  padding-bottom: 30px;
  margin-bottom: -30px;
  padding-right: 15px;
  position: relative;
}
.e-com-nav #wishlist-header-icon:hover .wishlist-success-message {
  display: block !important;
}
.e-com-nav .search {
  height: 18px;
  width: 17px;
  background-image: url(/images/search.svg);
}
.e-com-nav .wishlist {
  height: 21px;
  width: 23px;
  background-image: url(/images/wishlist.svg);
}
.e-com-nav .account {
  background-image: url(/images/account.svg);
  background-size: 22px 20px !important;
}
.e-com-nav .account:not(.loggedIn) {
  width: 20px;
  height: 22px;
}
.e-com-nav .account span:not(.mobileOnly) {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  display: inline-block;
}
.e-com-nav .account.loggedIn {
  padding-left: 25px;
  padding-right: 16px;
}
.e-com-nav .account.loggedIn:after {
  content: "";
  position: absolute;
  right: 0;
  top: 7px;
  height: 11px;
  width: 11px;
  background: url(/images/arrow-right.svg) no-repeat center;
  background-size: contain;
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.e-com-nav .cart {
  height: 22px;
  width: 23px;
  background-image: url(/images/cart.svg);
}
.e-com-nav .logged-in-container {
  padding-bottom: 28px;
  margin-bottom: -28px;
}
@media only screen and (min-width: 992px) {
  .e-com-nav .logged-in-container:hover > ul {
    display: block;
  }
}
.e-com-nav .logged-in-container ul {
  display: none;
  width: 183px;
  border-radius: 9px;
  background-color: #b99855;
  position: absolute;
  right: 0;
  top: 41px;
  padding: 20px;
  z-index: 10;
}
.e-com-nav .logged-in-container ul li:not(:last-child) {
  margin-bottom: 13px;
}
.e-com-nav .logged-in-container ul li a {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 14px;
  text-transform: uppercase;
}
.e-com-nav #cartCount,
.e-com-nav #wishCount {
  display: inline-block;
  height: 18px;
  width: 18px;
  border: 1px solid #b99855;
  background-color: #000000;
  color: #ffffff;
  font-family: BrownStd;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 16px;
  border-radius: 50%;
  text-align: center;
  padding: 0 2px;
  position: absolute;
  right: 5px;
  top: -4px;
}

footer {
  margin-top: 20px;
  background-color: black;
  border-top: 13px solid #b99855;
}
footer > .container {
  padding: 20px 0;
}
footer a {
  color: #B99855;
}
footer a:hover {
  opacity: 0.7;
}
footer .footer-text-holder {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: #dddddd;
  font-weight: bold;
  line-height: 20px;
}
footer .footer-text-holder ul li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 15px;
  color: #dddddd;
}
footer .footer-text-holder ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #b99855;
  border-radius: 50%;
  display: inline-block;
  margin-right: 7px;
}
footer .bottom {
  margin-top: 30px;
  display: flex;
  align-items: flex-end;
}
footer .bottom > * {
  width: 33%;
}
footer .bottom > *:nth-child(2) {
  text-align: center;
}
footer .bottom > *:last-child {
  text-align: right;
}
footer .bottom .payment-icons > img {
  width: 41px;
}
footer .bottom small {
  opacity: 0.8;
  font-size: 12px;
  color: white;
}

button,
.button {
  display: inline-block;
  background-color: #B99855;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
button:hover,
.button:hover {
  background: transparent;
  color: #B99855 !important;
  opacity: 1;
}
button:hover,
.button:hover {
  opacity: 1;
}
button.clear,
.button.clear {
  display: inline-block;
  background-color: transparent;
  border-radius: 20px;
  color: #B99855;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
button.clear:hover,
.button.clear:hover {
  background: #B99855;
  color: white !important;
  opacity: 1;
}

h2.blockTitle {
  font-weight: 400;
}

.confirm-age .confirm-age-page-content {
  text-align: center;
}
.confirm-age .confirm-age-page-content.page-content {
  padding: 53px 32px 35px 32px;
  max-width: 644px;
  margin: 0 auto;
  margin-top: 200px;
  background-color: #202121;
  opacity: 0;
  transition-delay: 0.5s;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.confirm-age .confirm-age-page-content .head img {
  display: block;
  width: 380px;
  margin: 0 auto;
}
.confirm-age .confirm-age-page-content hr {
  margin-left: -32px;
  margin-right: -32px;
  margin-bottom: 45px;
  border: solid #B99855;
  border: 0 0 8px 0;
}
.confirm-age .confirm-age-page-content p {
  max-width: 490px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  margin: 0 auto;
}
.confirm-age .confirm-age-page-content .confirmation {
  margin-top: 45px;
  text-align: center;
}
.confirm-age .confirm-age-page-content .confirmation > a:first-child {
  margin-right: 15px;
}
.confirm-age .confirm-age-page-content.fade {
  opacity: 1;
}
.confirm-age .confirm-age-page-content .sm-notice {
  margin-top: 30px;
  font-size: 14px;
  position: relative;
  padding-left: 28px;
}
.confirm-age .confirm-age-page-content .sm-notice:before {
  content: "";
  height: 25px;
  width: 18px;
  position: absolute;
  left: auto;
  margin-left: -28px;
  background: url(../images/phone.png) no-repeat center;
  background-size: contain;
}

.main-container {
  padding-top: 20px;
}
.main-container .sidebar {
  padding-left: 0;
  padding-right: 0;
}
.main-container .sidebar .sidebar-nav {
  border: 2px solid #b99855;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.97);
  padding: 12px 0px;
  margin-bottom: 9px;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li {
  padding: 13px 20px 0 20px;
  position: relative;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: #ffffff;
  font-family: BrownStd;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
  line-height: 18px;
  display: inline-block;
  width: 100%;
  padding-bottom: 14px;
  position: relative;
  z-index: 10;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li:hover:before {
  background-color: #171818;
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: calc(100% + 1px);
  z-index: 10;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li:hover > a {
  border-color: #171818;
  color: #b99855;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li.hasSubmenu {
  position: relative;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li.hasSubmenu > a {
  border-bottom: none;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li.hasSubmenu .ddSecondLevel {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  padding-bottom: 7px;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li.hasSubmenu .ddSecondLevel .secondLevelTitle {
  display: none;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li.hasSubmenu .ddSecondLevel li a {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 15px;
  border-bottom: none;
  padding-bottom: 10px;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li.hasSubmenu .ddSecondLevel li a:hover {
  color: #b99855;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li.hasSubmenu .ddSecondLevel li a.active {
  font-weight: bold;
  color: #b99855;
}
.main-container .sidebar .sidebar-nav .mainMenu > ul > li.hasSubmenu:hover .ddSecondLevel {
  transition-delay: 0.2s;
  opacity: 1;
  visibility: visible;
}
.main-container .sidebar .browse-catalog {
  border: 2px solid #b99855;
  border-radius: 10px;
  background-color: #2d2d2d;
  padding: 14px;
  text-align: center;
  margin-bottom: 9px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.main-container .sidebar .browse-catalog img {
  display: block;
  margin: 0 auto 9px auto;
  max-width: 39px;
}
.main-container .sidebar .browse-catalog a {
  text-align: center;
  color: #b99855;
  font-family: BrownStd;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 18px;
}
.main-container .sidebar .browse-catalog:hover {
  background-color: #b99855;
}
.main-container .sidebar .browse-catalog:hover a {
  color: #fff;
}
.main-container .sidebar .browse-catalog:hover a img {
  filter: brightness(0) invert(1);
}
.main-container .sidebar .mobileFriendly {
  padding: 15px 23px 15px 55px;
  margin: 20px 0;
  background: #73654B;
  border-radius: 10px;
  color: white;
}
.main-container .sidebar .mobileFriendly p {
  position: relative;
}
.main-container .sidebar .mobileFriendly p:before {
  content: "";
  height: 30px;
  width: 21px;
  background: url(../images/phone-white.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
}
.main-container .sidebar .sidebar-info {
  padding: 22px 20px;
  border: 2px solid #b99855;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.97);
}
.main-container .sidebar .sidebar-info ul li:not(:last-child) {
  margin-bottom: 15px;
}
.main-container .sidebar .sidebar-info ul li a {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 16px;
  position: relative;
  display: inline-flex;
}
.main-container .sidebar .sidebar-info ul li a:hover {
  color: #B99855;
}
.main-container .sidebar .sidebar-info ul li a img {
  height: 17px;
  width: 17px;
  margin-right: 7px;
}
.main-container .sidebar .contact-list {
  margin-top: 20px;
}
.main-container .sidebar .contact-list h5 {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 18px;
  margin-bottom: 13px;
}
.main-container .sidebar .contact-list ul {
  display: flex;
}
.main-container .sidebar .contact-list ul li {
  margin-right: 13px;
}
.main-container .sidebar .contact-list ul li a {
  display: inline-flex;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: 0.84px solid #b99855;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
  align-items: center;
  justify-content: center;
}
.main-container .sidebar .e-com-nav {
  display: none;
}

.sliderMain {
  margin-bottom: 20px;
}
.sliderMain .fullBg {
  width: 100%;
  height: 336px;
  background-size: cover !important;
  border-radius: 10px;
  position: relative;
}
.sliderMain .fullBg .sliderHeight {
  position: absolute;
  left: 19px;
  bottom: 19px;
  min-height: 150px;
  padding: 25px;
  width: 509px;
  max-width: calc(100% - 40px);
  border: 1px solid #b99855;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.48);
}
.sliderMain .fullBg .sliderHeight .col-md-12 {
  padding: 0;
}
.sliderMain .fullBg .sliderHeight h2 a {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 28px;
  display: inline-block;
  margin-bottom: 19px;
}
.sliderMain .fullBg .sliderHeight strong {
  color: #B99855;
  font-size: 1.2em;
}
.sliderMain .fullBg .sliderHeight .sliderBtnHolder a {
  display: inline-block;
  background-color: #B99855;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.sliderMain .fullBg .sliderHeight .sliderBtnHolder a:hover {
  background: transparent;
  color: #B99855 !important;
  opacity: 1;
}
.sliderMain .owl-dots {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.sliderMain .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border: 1px solid #b99855;
}
.sliderMain .owl-dots .owl-dot.active, .sliderMain .owl-dots .owl-dot:hover {
  height: 16px;
  width: 16px;
  position: relative;
}
.sliderMain .owl-dots .owl-dot.active:after, .sliderMain .owl-dots .owl-dot:hover:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 12px;
  width: 12px;
  background-color: #b99855;
  border-radius: 50%;
}

.popup,
.popUp,
.forget-password-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 101;
}
.popup[open],
.popUp[open],
.forget-password-popup[open] {
  display: flex;
}
.popup > div,
.popUp > div,
.forget-password-popup > div {
  position: relative;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .popup > div,
.popUp > div,
.forget-password-popup > div {
    width: 75%;
  }
}
.popup .close-icon,
.popup .closePopUp,
.popUp .close-icon,
.popUp .closePopUp,
.forget-password-popup .close-icon,
.forget-password-popup .closePopUp {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 19px;
  right: 21px;
}

.popUp .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid #b99855;
  border-radius: 20px;
  padding: 20px 30px;
  background-color: #272727;
  max-width: 650px;
  min-height: 400px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.popUp .container h1 {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 400;
}
.popUp .container p {
  color: #FFFFFF;
  font-family: BrownStd;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 18px;
  text-align: center;
}
.popUp .container #productImage {
  margin-bottom: 10px;
}
.popUp .container #productTitle {
  font-size: 16px;
  margin-bottom: 5px;
}
.popUp .container #productPrice {
  margin-bottom: 15px;
  font-size: 16px;
}
.popUp .container .primaryBtn {
  display: inline-block;
  background-color: #B99855;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.popUp .container .primaryBtn:hover {
  background: transparent;
  color: #B99855 !important;
  opacity: 1;
}
.popUp .container .closeAllPopups {
  display: inline-block;
  background-color: transparent;
  border-radius: 20px;
  color: #B99855;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.popUp .container .closeAllPopups:hover {
  background: #B99855;
  color: white !important;
  opacity: 1;
}
.popUp .container #confirm-delete,
.popUp .container #confirm-movecart {
  margin-right: 10px;
}
.popUp .closePopUp {
  height: 22px;
  width: 22px;
  background: url(../images/close.svg) no-repeat;
  background-size: contain;
  display: inline-block;
}
.popUp .popup-btns {
  display: flex;
}
.popUp .message {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  margin-bottom: 20px;
}

.forget-password-popup .closePopUp {
  height: 22px;
  width: 22px;
  background: url(../images/close.svg) no-repeat;
  background-size: contain;
  display: inline-block;
}
.forget-password-popup .popup-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid #b99855;
  border-radius: 20px;
  padding: 20px 30px;
  background-color: #272727;
  max-width: 650px;
  min-height: 326px;
}
.forget-password-popup h3 {
  color: #ffffff !important;
  font-family: BrownStd;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 29px;
  font-weight: 400;
  margin-bottom: 10px;
}
.forget-password-popup .success-msg {
  text-align: center;
  color: #ffffff !important;
  font-family: BrownStd;
  font-size: 21px;
  padding: 90px 0;
}
.forget-password-popup p {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
}

.mobileFriendy-popup .container {
  max-width: 450px;
  padding-bottom: 0;
}
.mobileFriendy-popup .container img {
  width: 306px;
  margin-top: 22px;
}
.mobileFriendy-popup .closePopUp {
  top: 15px;
  right: 15px;
}

.owl-carousel.default-nav .owl-nav .owl-next > span,
.owl-carousel.default-nav .owl-nav .owl-prev > span {
  display: none;
}
.owl-carousel.default-nav .owl-nav .owl-next::after,
.owl-carousel.default-nav .owl-nav .owl-prev::after {
  content: "";
  display: inline-block;
  background-image: url("/images/arrow-carousel-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  left: 0;
  width: 25.96px;
  height: 17.33px;
  transform: translateX(-20px);
}
.owl-carousel.default-nav .owl-nav .owl-next::after {
  background-image: url("/images/arrow-carousel-right.svg");
  right: 0;
  transform: translateX(20px);
}

.removePromoCode {
  text-decoration: underline;
}

#StoreCreditContainer {
  margin-bottom: 5px;
}

/* PHILIPPE */
.main-content {
  color: white;
  font-family: BrownStd;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.main-content.fade {
  opacity: 1;
}
.main-content .row.m-0 {
  margin: 0;
}
.main-content hr {
  margin: 25px 0;
  border: solid rgba(255, 255, 255, 0.16);
  border-width: 0 0 1px 0;
}
.main-content .brand-hash-link {
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.main-content .brand-hash-link > img {
  width: 25px;
  height: 25px;
  margin-left: 10px;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
}
.main-content .brand-hash-link:hover {
  opacity: 1;
}
.main-content .toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.main-content .toolbar .page-body {
  font-size: 14px;
}
.main-content .toolbar .dk-select {
  width: 200px;
}
.main-content .toolbar > div {
  display: flex;
  align-items: flex-end;
  flex: 0 0 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
}
.main-content .toolbar > div:last-child {
  align-items: center;
  justify-content: flex-end;
}
.main-content .toolbar > div:last-child .sort-by {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.main-content .toolbar > div:last-child .sort-by p {
  margin-right: 10px;
}
.main-content .pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 20px;
}
.main-content .pagination .prev,
.main-content .pagination .next {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: white;
  border: solid white;
  padding: 0 0 0 19px;
  margin: 0 0 0 19px;
}
.main-content .pagination .prev {
  border-width: 0 1px 0 0;
  padding: 0 19px 0 0;
  margin: 0 19px 0 0;
}
.main-content .pagination > ul {
  display: flex;
  align-items: flex-end;
}
.main-content .pagination > ul > li {
  padding: 0 19px;
  position: relative;
  display: none;
}
.main-content .pagination > ul > li a {
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: block;
}
.main-content .pagination > ul > li[selected] {
  display: block;
}
.main-content .pagination > ul > li[selected]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  border: 1px solid #B99855;
  border-radius: 100px;
}
.main-content .pagination > ul > li[selected] a {
  color: #B99855;
}
.main-content .pagination > ul > li[selected] + li, .main-content .pagination > ul > li[selected] + li + li {
  display: block;
}
.main-content .pagination .next {
  border-width: 0 0 0 1px;
}
.main-content .display-type {
  display: flex;
  align-items: center;
}
.main-content .display-type > div {
  padding: 10px;
  cursor: pointer;
  opacity: 0.3;
}
.main-content .display-type > div img {
  display: block;
}
.main-content .display-type > div[selected] {
  opacity: 1;
  background-color: #B99855;
  border-radius: 100px;
}
.main-content a.forgot-password {
  font-size: 13px;
  line-height: 22px;
  color: white;
  text-decoration: underline;
}
.main-content .inputEntity,
.main-content .promoinput {
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.main-content .inputEntity label,
.main-content .promoinput label {
  color: #B99855;
  font-size: 14px;
  margin-bottom: 5px;
}
.main-content .inputEntity input,
.main-content .inputEntity textarea,
.main-content .inputEntity select,
.main-content .promoinput input,
.main-content .promoinput textarea,
.main-content .promoinput select {
  border: 1px solid #3b3d3d;
  background-color: #3b3d3d;
  border-radius: 4px;
  color: #B99855;
  font-size: 14px;
}
.main-content .inputEntity input:focus,
.main-content .inputEntity textarea:focus,
.main-content .promoinput input:focus,
.main-content .promoinput textarea:focus {
  background: rgba(32, 33, 33, 0.85);
  border: 1px solid #b29863;
}
.main-content .inputEntity select,
.main-content .promoinput select {
  width: 100%;
  padding-left: 6px;
  position: relative;
}
.main-content .inputEntity input,
.main-content .inputEntity select,
.main-content .promoinput input,
.main-content .promoinput select {
  height: 44px;
}
.main-content .inputEntity input[type=text],
.main-content .inputEntity input[type=email],
.main-content .inputEntity input[type=number],
.main-content .promoinput input[type=text],
.main-content .promoinput input[type=email],
.main-content .promoinput input[type=number] {
  display: block;
  width: 100%;
  padding: 0 10px;
}
.main-content .inputEntity input[type=checkbox]:not(old),
.main-content .inputEntity input[type=radio]:not(old),
.main-content .promoinput input[type=checkbox]:not(old),
.main-content .promoinput input[type=radio]:not(old) {
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  border: none !important;
}
.main-content .inputEntity input[type=checkbox]:not(old) + label:before,
.main-content .inputEntity input[type=checkbox]:not(old) + input[type=hidden] + label:before,
.main-content .promoinput input[type=checkbox]:not(old) + label:before,
.main-content .promoinput input[type=checkbox]:not(old) + input[type=hidden] + label:before {
  border: 1px solid #B99855;
  border-radius: 2px;
  background-repeat: no-repeat;
  background-size: 80% 80%;
  background-position: 50% 65%;
  margin: 2px 5px 0 0;
  float: left;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
}
.main-content .inputEntity input [type=checkbox]:not(old):checked + label:before,
.main-content .inputEntity input[type=checkbox]:not(old):checked + input[type=hidden] + label:before,
.main-content .promoinput input [type=checkbox]:not(old):checked + label:before,
.main-content .promoinput input[type=checkbox]:not(old):checked + input[type=hidden] + label:before {
  background-image: url("/images/check-true.svg");
}
.main-content .inputEntity input[type=number]::-webkit-outer-spin-button,
.main-content .inputEntity input[type=number]::-webkit-inner-spin-button,
.main-content .promoinput input[type=number]::-webkit-outer-spin-button,
.main-content .promoinput input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.main-content .inputEntity .inputWrapper,
.main-content .promoinput .inputWrapper {
  position: relative;
}
.main-content .inputEntity .inputWrapper > .arrows,
.main-content .promoinput .inputWrapper > .arrows {
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-content .inputEntity .inputWrapper > .arrows .arrow,
.main-content .promoinput .inputWrapper > .arrows .arrow {
  display: block;
  padding: 5px;
  cursor: pointer;
}
.main-content .inputEntity .inputWrapper > .arrows .arrow:hover,
.main-content .promoinput .inputWrapper > .arrows .arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.main-content .inputEntity .passwordWrapper,
.main-content .promoinput .passwordWrapper {
  position: relative;
}
.main-content .inputEntity .passwordWrapper > .toggle-view,
.main-content .promoinput .passwordWrapper > .toggle-view {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.main-content .inputEntity .passwordWrapper > .toggle-view > img,
.main-content .promoinput .passwordWrapper > .toggle-view > img {
  display: block;
  width: 19px;
  height: 19px;
  object-fit: contain;
  object-position: center center;
  border-radius: 32px;
}
.main-content .inputEntity input[type=number],
.main-content .promoinput input[type=number] {
  -moz-appearance: textfield;
}
.main-content .inputEntity.check,
.main-content .promoinput.check {
  user-select: none;
}
.main-content .inputEntity.check label,
.main-content .promoinput.check label {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: white;
}
.main-content .inputEntity.check label::before,
.main-content .promoinput.check label::before {
  width: 18px;
  height: 18px;
  border: 0.88px solid rgba(255, 255, 255, 0.58);
  border-radius: 2px;
  margin-top: 0;
  background-color: transparent;
}
.main-content .inputEntity.check input,
.main-content .promoinput.check input {
  height: 18px;
}
.main-content .inputEntity textarea,
.main-content .promoinput textarea {
  height: auto;
  padding: 0.5rem;
}
.main-content .inputEntity.selectInput::after,
.main-content .promoinput.selectInput::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 40px;
  bottom: 0;
  height: 12px;
  width: 15px;
  background-image: url("/images/dropdown.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.main-content .multi-select {
  display: flex;
}
.main-content .multi-select > .dk-select {
  flex-basis: 100%;
}
.main-content .multi-select > .dk-select:not(:nth-last-child(2)) {
  margin-right: 10px;
}
.main-content .formActions {
  text-align: inherit;
}
.main-content .action-buttons {
  margin-top: 27px;
  display: flex;
  justify-content: right;
  gap: 1rem;
}
.main-content .dk-select {
  color: #B99855;
  height: 44px;
}
.main-content .dk-select .dk-selected {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  border: 1px solid #3b3d3d;
  border-radius: 4px;
  background-color: #3b3d3d;
}
.main-content .dk-select .dk-selected > div {
  width: 100%;
  margin-right: 20px;
  overflow: hidden;
}
.main-content .dk-select .dk-selected::after {
  border: none;
}
.main-content .dk-select .dk-selected::before {
  border: none;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 15px;
  background-image: url("/images/dropdown.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.main-content .dk-select ul {
  margin-top: 5px;
  background-color: #202121;
  border: 1px solid #b29863;
  border-radius: 4px;
}
.main-content .dk-select ul > li.dk-option-highlight {
  background-color: #B99855;
}
.main-content .dk-select.dk-select-open-down .dk-selected {
  background-color: rgba(32, 33, 33, 0.85);
  border: 1px solid #b29863;
}
.main-content a.back {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 41px;
  font-weight: 700;
  color: white;
  position: relative;
  padding-left: 25px;
}
.main-content a.back::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 21px;
  height: 21px;
  background-image: url("/images/back.svg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  margin-right: 8px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.main-content a.back:hover:before {
  left: -5px;
}
.main-content .status-light::before {
  content: "•";
  margin-right: 5px;
  font-size: 20px;
}
.main-content .status-light.pending::before {
  color: #606060;
}
.main-content .status-light.on-hold::before {
  color: #8d7e63;
}
.main-content .status-light.cancelled::before {
  color: #85694f;
}
.main-content .status-light.paid::before {
  color: #b29863;
}
.main-content .why-promocigar {
  margin-bottom: 22px;
}
.main-content .why-promocigar.page-content {
  padding-top: 24px;
  padding-bottom: 40px;
}
.main-content .why-promocigar h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
.main-content .why-promocigar .listingHolder {
  display: flex;
  width: 100%;
}
.main-content .why-promocigar .listingHolder .listingItemLI {
  flex-basis: 20%;
  width: 20%;
  max-width: 20%;
  flex-shrink: 0;
  flex-grow: 0;
  text-align: center;
  padding: 0 10px;
}
.main-content .why-promocigar .listingHolder .listingItemLI .reason > div {
  height: 40px;
}
.main-content .why-promocigar .listingHolder .listingItemLI .reason p {
  margin: 10px 0 6px 0;
  line-height: 19px;
}
.main-content .why-promocigar .listingHolder .listingItemLI .reason small {
  font-size: 12px;
  line-height: 15px;
  color: #b3b3b3;
  display: block;
}
.main-content .why-promocigar .listingHolder .listingItemLI .reason img {
  margin: 0 auto;
  width: auto;
  max-height: 100%;
}
.main-content .why-promocigar .listingHolder .listingItemLI:not(:last-child) {
  border: solid rgba(151, 151, 151, 0.1);
  border-width: 0 1px 0 0;
}
.main-content .why-promocigar .listingHolder .listingItemLI:last-child .listingImage {
  height: 114px;
}
.main-content .why-promocigar .listingHolder .listingItemLI:last-child .listingImage img {
  height: 100%;
}
.main-content .why-promocigar .listingHolder .listingItemLI:last-child p {
  display: none;
}
.main-content .client-reviews {
  margin-bottom: 22px;
}
.main-content .client-reviews.page-content {
  padding-top: 21px;
  padding-bottom: 37px;
}
.main-content .client-reviews h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.main-content .client-reviews .listingHolder {
  padding-right: 160px;
  position: relative;
}
.main-content .client-reviews .listingHolder .review {
  display: flex;
  align-items: stretch;
  margin: 5px 0;
}
.main-content .client-reviews .listingHolder .review img {
  display: block;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  margin-right: 51px;
}
.main-content .client-reviews .listingHolder .review > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-content .client-reviews .listingHolder .review small {
  font-size: 14px;
  color: #b3b3b3;
}
.main-content .client-reviews .listingHolder .review small::before, .main-content .client-reviews .listingHolder .review small::after {
  content: "-";
}
.main-content .client-reviews .listingHolder::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  width: 91px;
  background-image: url("/images/quote.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
.main-content .client-reviews .owl-carousel {
  position: relative;
}
.main-content .client-reviews .owl-carousel .owl-dots {
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.main-content .client-reviews .owl-carousel .owl-dots .owl-dot {
  display: block;
  height: 10px;
  width: 10px;
  border: 1px solid #b99855;
  margin: 0 0 5px 0;
}
.main-content .client-reviews .owl-carousel .owl-dots .owl-dot.active, .main-content .client-reviews .owl-carousel .owl-dots .owl-dot:hover {
  height: 16px;
  width: 16px;
  position: relative;
}
.main-content .client-reviews .owl-carousel .owl-dots .owl-dot.active:after, .main-content .client-reviews .owl-carousel .owl-dots .owl-dot:hover:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 12px;
  width: 12px;
  background-color: #b99855;
  border-radius: 50%;
}
.main-content .why-promocigar.page-content,
.main-content .review.page-content,
.main-content .latest-promotions.page-content,
.main-content .latest-promotions-home.page-content,
.main-content .new-launches.page-content,
.main-content .hard-to-find.page-content {
  padding-top: 23px;
  padding-bottom: 24px;
}
.main-content .why-promocigar .section-title,
.main-content .review .section-title,
.main-content .latest-promotions .section-title,
.main-content .latest-promotions-home .section-title,
.main-content .new-launches .section-title,
.main-content .hard-to-find .section-title {
  font-size: 24px;
}
.main-content .latest-promotions-home,
.main-content .latest-promotions,
.main-content .hard-to-find {
  margin-bottom: 20px;
}
.main-content .latest-promotions-home.page-content,
.main-content .latest-promotions.page-content,
.main-content .hard-to-find.page-content {
  background-color: #73654b;
}
.main-content .latest-promotions-home h2,
.main-content .latest-promotions h2,
.main-content .hard-to-find h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 11px;
  font-weight: 400;
}
.main-content .latest-promotions-home ul,
.main-content .latest-promotions ul,
.main-content .hard-to-find ul {
  margin: 0;
}
.main-content .latest-promotions-home .owl-carousel .owl-nav .owl-next > span,
.main-content .latest-promotions-home .owl-carousel .owl-nav .owl-prev > span,
.main-content .latest-promotions .owl-carousel .owl-nav .owl-next > span,
.main-content .latest-promotions .owl-carousel .owl-nav .owl-prev > span,
.main-content .hard-to-find .owl-carousel .owl-nav .owl-next > span,
.main-content .hard-to-find .owl-carousel .owl-nav .owl-prev > span {
  display: none;
}
.main-content .latest-promotions-home .owl-carousel .owl-nav .owl-next::after,
.main-content .latest-promotions-home .owl-carousel .owl-nav .owl-prev::after,
.main-content .latest-promotions .owl-carousel .owl-nav .owl-next::after,
.main-content .latest-promotions .owl-carousel .owl-nav .owl-prev::after,
.main-content .hard-to-find .owl-carousel .owl-nav .owl-next::after,
.main-content .hard-to-find .owl-carousel .owl-nav .owl-prev::after {
  content: "";
  display: inline-block;
  background-image: url("/images/arrow-carousel-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  width: 25.96px;
  height: 17.33px;
  margin: 0 0 0 10px;
}
.main-content .latest-promotions-home .owl-carousel .owl-nav .owl-next::after,
.main-content .latest-promotions .owl-carousel .owl-nav .owl-next::after,
.main-content .hard-to-find .owl-carousel .owl-nav .owl-next::after {
  background-image: url("/images/arrow-carousel-right.svg");
  margin: 0 10px 0 0;
}
.main-content .latest-promotions-home .arrow-link,
.main-content .latest-promotions .arrow-link,
.main-content .hard-to-find .arrow-link {
  display: block;
  text-align: center;
}
.main-content .latest-promotions-home .blockTitle,
.main-content .latest-promotions .blockTitle {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: promotion 1s ease-in-out infinite alternate;
  animation: promotion 1s ease-in-out infinite alternate;
}
.main-content .new-launches {
  margin-bottom: 20px;
}
.main-content .new-launches.page-content {
  background-color: #3c3c3c;
}
.main-content .hard-to-find.page-content {
  background-color: rgba(32, 33, 33, 0.9);
}
.main-content .new-launches h2,
.main-content .hard-to-find h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 17px;
}
.main-content .new-launches .owl-carousel .owl-nav .owl-next > span,
.main-content .new-launches .owl-carousel .owl-nav .owl-prev > span,
.main-content .hard-to-find .owl-carousel .owl-nav .owl-next > span,
.main-content .hard-to-find .owl-carousel .owl-nav .owl-prev > span {
  display: none;
}
.main-content .new-launches .owl-carousel .owl-nav .owl-next::after,
.main-content .new-launches .owl-carousel .owl-nav .owl-prev::after,
.main-content .hard-to-find .owl-carousel .owl-nav .owl-next::after,
.main-content .hard-to-find .owl-carousel .owl-nav .owl-prev::after {
  content: "";
  display: inline-block;
  background-image: url("/images/arrow-carousel-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  width: 25.96px;
  height: 17.33px;
  margin: 0 0 0 10px;
}
.main-content .new-launches .owl-carousel .owl-nav .owl-next::after,
.main-content .hard-to-find .owl-carousel .owl-nav .owl-next::after {
  background-image: url("/images/arrow-carousel-right.svg");
  margin: 0 10px 0 0;
}
.main-content .new-launches .arrow-link,
.main-content .hard-to-find .arrow-link {
  display: block;
  text-align: center;
  margin-top: 24px;
}
.main-content .products-listing .product-item {
  padding-left: 15px;
  padding-right: 15px;
}
.main-content .products-listing .product-item .listingItem {
  border: 1px solid #B99855;
  border-radius: 11px;
  overflow: hidden;
}
.main-content .products-listing .product-item .listingItem .listingImage {
  position: relative;
  height: 192px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-content .products-listing .product-item .listingItem .listingImage img {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.main-content .products-listing .product-item .listingItem .listingImage .productStatus {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.53);
}
.main-content .products-listing .product-item .listingItem .listingImage .productStatus.soldOut {
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 22px;
}
.main-content .products-listing .product-item .listingItem .listingImage .productStatus.discount {
  top: 10px;
  right: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 16px;
  border-radius: 10rem;
}
.main-content .products-listing .product-item .listingItem .listingInfos {
  padding: 20px 15px;
}
.main-content .products-listing .product-item .listingItem .listingInfos .productTitle {
  min-height: 60px;
  font-size: 14px;
  line-height: 19px;
}
.main-content .products-listing .product-item .listingItem .listingInfos .productTitle > a {
  color: white;
}
.main-content .products-listing .product-item .listingItem .listingInfos .productTitle > a:hover {
  opacity: 1;
  color: #B99855;
  text-decoration: underline;
}
.main-content .products-listing .product-item .listingItem .listingInfos .productPrice {
  font-weight: 700;
}
.main-content .products-listing .product-item .listingItem .listingInfos .productLinks {
  width: 100%;
}
.main-content .products-listing .product-item .listingItem .listingInfos .productLinks > ul {
  width: 100%;
}
.main-content .products-listing .product-item .listingItem .listingInfos .productLinks > ul > li:not(:first-child) {
  margin-top: 10px;
}
.main-content .products-listing .product-item .listingItem .listingInfos .productLinks > ul > li:not(.small) {
  flex-basis: 100%;
  width: 100%;
}
.main-content .products-listing .product-item .listingItem .listingInfos .productLinks > ul > li a {
  width: 100%;
}
.main-content .productPrice {
  font-size: 18px;
  margin: 10px 0 16px 0;
}
.main-content .productPrice .oldPrice:empty {
  display: none;
}
.main-content .productPrice .oldPrice {
  position: relative;
  margin-right: 15px;
  color: #909090;
}
.main-content .productPrice .oldPrice:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 3px;
  left: 0;
  background: url(/images/strikethrough.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%, auto;
}
.main-content a {
  color: #B99855;
}
.main-content a.inherit {
  color: inherit;
}
.main-content a.inherit:hover {
  opacity: inherit;
}
.main-content a.arrow-link {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}
.main-content a.arrow-link::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 9px;
  background-image: url("/images/arrow-right-secondary.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  margin-left: 10px;
}
.main-content a.share-link {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 17px;
  text-transform: uppercase;
  padding-left: 26px;
  position: relative;
}
.main-content a.share-link::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/images/share.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  margin-right: 8px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-content a.share-link:hover {
  text-decoration: underline;
}
.main-content .offer-countdown {
  text-align: center;
  padding: 11px;
  border: 1px solid #b29863;
  border-radius: 3px;
  font-size: 13px;
  line-height: 15px;
}
.main-content .quote {
  background-position: 50% 50%;
  background-size: cover;
  padding: 108px 2rem;
  margin: 0 -32px 0 -32px;
  font-size: 20px;
  line-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
.main-content .quote > p {
  max-width: 672px;
  z-index: 10;
}
.main-content .quote::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.57;
}
.main-content .breadcrumb-holder {
  margin-bottom: 22px;
}
.main-content .breadcrumb-holder ul {
  display: flex;
  font-size: 12px;
}
.main-content .breadcrumb-holder ul li {
  position: relative;
}
.main-content .breadcrumb-holder ul li a {
  color: #9d9d9d;
}
.main-content .breadcrumb-holder ul li:not(:last-child)::after {
  content: "/";
  color: inherit;
  position: absolute;
  right: -0.65rem;
  color: #9d9d9d;
}
.main-content .breadcrumb-holder ul li:not(:last-child) {
  margin-right: 1rem;
}
.main-content .breadcrumb-holder ul li:last-child a {
  color: white;
  opacity: 1;
}
.main-content .breadcrumb-holder.breadcrumb-steps ul li {
  list-style-type: disc;
  margin-right: 25px;
  margin-left: 16px;
  color: #B99855;
}
.main-content .breadcrumb-holder.breadcrumb-steps ul li::marker {
  font-size: 15px;
  color: inherit;
}
.main-content .breadcrumb-holder.breadcrumb-steps ul li:not(:last-child)::after {
  content: "";
}
.main-content .breadcrumb-holder.breadcrumb-steps ul li[selected] {
  color: white;
}
.main-content .breadcrumb-holder.breadcrumb-steps ul li[selected] ~ li {
  color: #909090;
}
.main-content .breadcrumb-holder.breadcrumb-steps ul li a {
  color: inherit;
  font-size: 15px;
}
.main-content .page-title, .main-content .page-title.banner-title h1 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 36px 0;
  color: #fff !important;
}
.main-content .page-title.big, .main-content .page-title.banner-title h1.big {
  font-size: 34px;
}
.main-content .page-title.m-0, .main-content .page-title.banner-title h1.m-0 {
  margin: 0;
}
.main-content .page-title.back, .main-content .page-title.banner-title h1.back {
  text-transform: none;
  font-weight: 400;
  font-size: 30px;
  width: max-content;
}
.main-content .page-title.no-breadcrumb, .main-content .page-title.banner-title h1.no-breadcrumb {
  margin-top: 0;
}
.main-content .page-title.banner-title, .main-content .page-title.banner-title h1.banner-title {
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px 0;
}
.main-content .page-title.banner-title::before, .main-content .page-title.banner-title h1.banner-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.34);
}
.main-content .page-title.banner-title img {
  display: block;
  width: 100%;
}
.main-content .page-title.banner-title h1 {
  margin: 0;
  position: absolute;
  bottom: 28px;
  left: 25px;
}
.main-content .page-title.cont, .main-content .page-title.banner-title h1.cont {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.main-content .page-title.cont > .page-title, .main-content .page-title.banner-title h1.cont > .page-title, .main-content .page-title.banner-title .page-title.cont > h1, .main-content .page-title.banner-title h1.cont > h1 {
  line-height: 30px;
  margin: 0;
}
.main-content .section-title {
  font-size: 26px;
  font-weight: 400;
}
.main-content .section-subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.main-content .section-sub-title {
  font-size: 22px;
  line-height: 27px;
  font-weight: 400;
}
.main-content .tabs {
  display: flex;
  border: 1px solid #B99855;
  border-radius: 100px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto 36px auto;
}
.main-content .tabs > li {
  flex-shrink: 1;
  flex-basis: 100%;
  padding: 13px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-content .tabs > li[selected] {
  background-color: #B99855;
}
.main-content .tabs > li a {
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.main-content .tabs > li:not(:last-child) {
  border: solid #B99855;
  border-width: 0 1px 0 0;
}
.main-content .page-content {
  padding: 36px 32px 31px 32px;
  background-color: rgba(48, 48, 48, 0.85);
  border: 2px solid #b29863;
  border-radius: 10px;
  font-size: 16px;
}
.main-content .page-content.no-title {
  margin-top: 25px;
}
.main-content .page-content.no-borders {
  border: none;
}
.main-content .description {
  font-size: 1.2rem;
  line-height: 32px;
  margin-bottom: 40px;
}
.main-content .cigar-types {
  margin-top: 41px;
  margin-bottom: 43px;
}
.main-content .cigar-types .listingItemLI {
  margin-bottom: 41px;
}
.main-content .cigar-types .listingItemLI .listingImage {
  margin-bottom: 18px;
  border-radius: 15px;
  overflow: hidden;
}
.main-content .cigar-types .listingItemLI .listingImage > img {
  display: block;
  max-width: 100%;
}
.main-content .experience-quote {
  background-image: url("/images/about/Experience.jpg");
}
.main-content .satisfaction-rules {
  margin-bottom: 44px;
}
.main-content .satisfaction-rules p,
.main-content .satisfaction-rules .blockTitle {
  margin-bottom: 28px;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}
.main-content .satisfaction-rules ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.main-content .satisfaction-rules ul li {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: calc(50% - 1rem);
  position: relative;
  padding-left: 40px;
  margin-bottom: 26px;
  margin-right: 1rem;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main-content .satisfaction-rules ul li {
    flex-basis: calc(50% - 4rem);
  }
}
.main-content .satisfaction-rules ul li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background-image: url("/images/Check.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.main-content .contact-prompt {
  display: flex;
  align-items: center;
  padding: 25px 94px 28px 40px;
  border: 2px solid #b29863;
  border-radius: 10px;
}
.main-content .contact-prompt > div {
  margin-right: 36px;
}
.main-content .contact-prompt p {
  line-height: 27px;
}
.main-content .contact-prompt a:hover {
  text-decoration: underline;
}
.main-content .section-title {
  margin-bottom: 27px;
}
.main-content .contact-info {
  margin-bottom: 31px;
}
.main-content .contact-info .blockTitle {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 27px;
}
.main-content .contact-info .blockBody {
  padding: 45px 1rem 58px 1rem;
  border: 1px solid #b28863;
  border-radius: 10px;
}
.main-content .contact-info .contact-medium {
  text-align: center;
}
.main-content .contact-info .contact-medium > div {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-content .contact-info .contact-medium p {
  margin: 23px 0 7px 0;
  font-size: 14px;
  color: #e4e4e4;
}
.main-content .contact-info .contact-medium strong {
  font-size: 18px;
  font-weight: 400;
}
.main-content form .action-buttons {
  display: block;
  text-align: right;
}
.main-content form .action-buttons > input:not(:last-child) {
  margin-right: 17px;
}
.main-content .contact-quote {
  background-image: url("/images/contact/contact-quote.jpg");
}
.main-content .contact-form {
  margin-top: 27px;
}
.main-content .contact-form .section-title {
  margin-bottom: 4px;
}
.main-content .contact-form > p {
  font-size: 14px;
}
.main-content .contact-form .form-intro {
  font-family: BrownStd;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22px;
  margin-bottom: 20px;
}
.main-content .contact-form .form-intro h3 {
  font-family: BrownStd;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 32px;
  font-weight: 300;
}
.main-content .contact-form .formFieldTextArea {
  flex: 0 0 100%;
  max-width: 100%;
}
.main-content .contact-form .formFieldTextArea textarea {
  min-height: 168px;
}
.main-content .contact-form .formActions {
  text-align: right;
  margin-bottom: 40px;
}
.main-content .contact-form .formActions .requiredStar {
  display: none;
}
.main-content .contact-form .resetHolder .reset {
  display: inline-block;
  background-color: transparent;
  border-radius: 20px;
  color: #B99855;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 17px;
}
.main-content .contact-form .resetHolder .reset:hover {
  background: #B99855;
  color: white !important;
  opacity: 1;
}
.main-content .contact-form .primaryBtn {
  display: inline-block;
  background-color: #B99855;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.main-content .contact-form .primaryBtn:hover {
  background: transparent;
  color: #B99855 !important;
  opacity: 1;
}
.main-content .promotions-page-content.page-content {
  padding-bottom: 0px;
}
.main-content .promotions-page-content a {
  color: inherit;
}
@media (min-width: 767px) and (max-width: 1200px) {
  .main-content .promotions .listingItemLI {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.main-content .promotions .listingItemLI > a {
  color: inherit;
}
.main-content .promotions .promotion-item {
  position: relative;
  height: 15rem;
  border: 2px solid #B99855;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 19px;
  overflow: hidden;
  background-size: cover;
  margin-bottom: 31px;
}
.main-content .promotions .promotion-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.main-content .promotions .promotion-item .listingDescription {
  z-index: 10;
  font-size: 13px;
}
.main-content .promotions .promotion-item .listingTitle {
  font-size: 20px;
  position: relative;
  z-index: 10;
}
.main-content .promotions .promotion-item .badge {
  position: relative;
  display: inline-block;
  z-index: 10;
  margin-left: -19px;
  margin-bottom: 10px;
  padding: 1px 5px;
  font-size: 14px;
  background-color: #B99855;
  width: fit-content;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: promotion 1s ease-in-out infinite alternate;
  animation: promotion 1s ease-in-out infinite alternate;
}
.main-content .promotions .viewAllBottom {
  text-align: center;
}
.main-content .promotions .viewAll {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  border: none;
}
.main-content .promotions .viewAll::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 9px;
  background-image: url("/images/arrow-right-secondary.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  margin-left: 10px;
}
.main-content .promotions .viewAll:hover {
  background-color: transparent;
}
.main-content .regular-cigars-page-content {
  padding-top: 28px;
  padding-bottom: 28px;
}
.main-content .regular-cigars-page-content h2.m-0 {
  margin-bottom: 32px;
}
.main-content .regular-cigars-page-content .regular-category:not(:last-child) {
  margin-bottom: 48px;
}
.main-content .regular-cigars-page-content .regular-category h3 {
  margin-bottom: 10px;
}
.main-content .regular-cigars-page-content .regular-category ul {
  width: 100%;
  display: flex;
  margin: 0;
}
.main-content .regular-cigars-page-content .regular-category ul > li {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: calc(20% - 10px);
  min-width: calc(20% - 10px);
  border: 1px solid rgba(185, 152, 85, 0.31);
  border-radius: 11px;
  height: 174px;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
}
.main-content .regular-cigars-page-content .regular-category ul > li .listingImage img,
.main-content .regular-cigars-page-content .regular-category ul > li .listingTitle {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.main-content .regular-cigars-page-content .regular-category ul > li > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main-content .regular-cigars-page-content .regular-category ul > li > a .listingImage {
  flex-grow: 1;
  height: 85px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 15px 0 15px;
}
.main-content .regular-cigars-page-content .regular-category ul > li > a .listingImage > img {
  width: 100%;
  max-height: 85px;
  width: auto;
}
.main-content .regular-cigars-page-content .regular-category ul > li > a .listingInfos {
  margin-top: 5px;
  padding-bottom: 15px;
  flex-grow: 0;
}
.main-content .regular-cigars-page-content .regular-category ul > li:hover {
  border: 2px solid #b99855;
}
.main-content .regular-cigars-page-content .regular-category ul > li:hover .listingImage img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.main-content .regular-cigars-page-content .regular-category ul > li:hover .listingTitle {
  color: #B99855;
}
.main-content .empty-cart-page-content.page-content {
  padding-top: 80px;
  padding-bottom: 64px;
}
.main-content .empty-cart-page-content .cart-empty {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-content .empty-cart-page-content .cart-empty img {
  margin-bottom: 30px;
}
.main-content .empty-cart-page-content .cart-empty .big-text {
  margin: 0 0 35px 0;
  font-size: 26px;
  line-height: 30px;
  text-align: center;
}
.main-content .empty-cart-page-content .cart-empty .big-text span {
  color: #B99855;
}
.main-content .empty-cart-page-content .cart-empty p {
  margin-bottom: 41px;
  font-size: 16px;
  opacity: 0.62;
  text-align: center;
}
.main-content .cart-page-content > .page-content,
.main-content .order-history-table > .page-content {
  padding-top: 30px;
}
.main-content .cart-page-content .itemRow,
.main-content .order-history-table .itemRow {
  overflow-y: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 0;
  border: solid rgba(255, 255, 255, 0.16);
  border-width: 0 0 1px 0;
  margin-left: -9px;
  margin-right: -9px;
}
.main-content .cart-page-content .itemRow > .col,
.main-content .order-history-table .itemRow > .col {
  padding: 0 9px;
}
.main-content .cart-page-content .itemRow.row:not(.table-header) > .col:nth-child(1),
.main-content .order-history-table .itemRow.row:not(.table-header) > .col:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-content .cart-page-content .itemRow .colDetails,
.main-content .order-history-table .itemRow .colDetails {
  padding-left: 20px;
}
.main-content .cart-page-content .itemRow .colName a,
.main-content .order-history-table .itemRow .colName a {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
}
.main-content .cart-page-content .itemRow .colImage img,
.main-content .order-history-table .itemRow .colImage img {
  max-width: 56px;
}
.main-content .cart-page-content .tableActions,
.main-content .order-history-table .tableActions {
  margin: 0 -9px;
  padding: 12px 9px;
  border: solid rgba(255, 255, 255, 0.16);
  border-width: 0 0 1px 0;
  direction: rtl;
}
.main-content .cart-page-content .tableActions a,
.main-content .order-history-table .tableActions a {
  color: white;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
.main-content .cart-page-content .actions,
.main-content .order-history-table .actions {
  padding-right: 0;
}
.main-content .cart-page-content .actions a:first-child,
.main-content .order-history-table .actions a:first-child {
  margin-right: 17px;
}
.main-content .cart-page-content .terms,
.main-content .order-history-table .terms {
  font-size: 14px;
  margin-top: 30px;
}
.main-content .cart-page-content .terms a,
.main-content .order-history-table .terms a {
  margin-left: 22px;
}
.main-content .cart-page-content .quantityForm .number,
.main-content .order-history-table .quantityForm .number {
  position: relative;
}
.main-content .cart-page-content .quantityForm .number .plus,
.main-content .order-history-table .quantityForm .number .plus {
  position: absolute;
  right: 8px;
  z-index: 1;
  cursor: pointer;
  background-image: url(/images/number-up.svg);
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  height: 12px;
  width: 17px;
  background-size: 12px;
  top: 8px;
}
.main-content .cart-page-content .quantityForm .number .plus:hover,
.main-content .order-history-table .quantityForm .number .plus:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.main-content .cart-page-content .quantityForm .number .minus,
.main-content .order-history-table .quantityForm .number .minus {
  position: absolute;
  right: 8px;
  z-index: 1;
  bottom: 8px;
  cursor: pointer;
  background-image: url(/images/number-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  height: 12px;
  width: 17px;
  background-size: 12px;
}
.main-content .cart-page-content .quantityForm .number .minus:hover,
.main-content .order-history-table .quantityForm .number .minus:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.main-content .cart-page-content .table-header, .main-content .wishlist-page-content .table-header {
  display: flex;
}
.main-content .profileLinks .currentPage {
  background-color: rgba(32, 33, 33, 0.85);
  border: 1px solid #b29863;
  border-radius: 4px;
  color: #b99855;
  height: 44px;
  line-height: 42px;
  position: relative;
  padding: 0 10px;
}
.main-content .profileLinks .currentPage:after {
  content: "";
  border: none;
  position: absolute;
  right: 15px;
  bottom: 0;
  top: 0;
  width: 15px;
  background-image: url(/images/dropdown.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.main-content .profileLinks .tabs {
  display: none;
  flex-direction: column;
  border-radius: 0;
  margin-top: 5px;
}
.main-content .profileLinks .tabs li {
  text-align: left;
  justify-content: flex-start;
  width: 100%;
  border-left: none;
  padding: 13px 10px;
}
.main-content .profileLinks + .back {
  margin-top: 10px;
}
.main-content .profileLinks + .section-header, .main-content .profileLinks + .section-title {
  display: none;
}
.main-content .orderSummary {
  margin: 0 -9px;
  margin-top: 28px;
}
.main-content .orderSummary > * {
  padding: 0 9px;
}
.main-content .orderSummary .orderPrice {
  text-align: right;
}
.main-content .orderSummary .orderPrice > div {
  display: inline-block;
}
.main-content .orderSummary .orderPrice > div > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.main-content .orderSummary .orderPrice > div > div.discountRow {
  flex-wrap: nowrap;
  align-items: flex-start;
  font-size: 16px;
}
.main-content .orderSummary .orderPrice > div > div.discountRow span {
  font-size: 14px;
}
.main-content .orderSummary .orderPrice > div > div > * {
  padding: 0 9px;
  font-size: 14px;
}
.main-content .orderSummary .orderPrice > div > div > *:first-child {
  margin-right: 32px;
  font-size: 17px;
  text-align: left;
}
.main-content .orderSummary .orderPrice > div > div:last-child {
  margin-top: 18px;
}
.main-content .orderSummary .orderPrice > div > div:last-child > *:first-child {
  font-size: 16px;
  text-transform: uppercase;
}
.main-content .orderSummary .orderPrice > div > div:last-child > *:last-child {
  font-size: 18px;
}
.main-content .orderSummary .actions {
  text-align: right;
}
.main-content .faq-page-content.page-content {
  padding-top: 0;
}
.main-content .faq-page-content .toggleItem {
  border: solid rgba(255, 255, 255, 0.16);
  border-width: 0 0 1px 0;
}
.main-content .faq-page-content .toggleItem .toggleTitle {
  font-size: 18px;
  line-height: 32px;
  padding: 23px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.main-content .faq-page-content .toggleItem .toggleTitle::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  margin-right: 9px;
  width: 19px;
  height: 20px;
  background-image: url("/images/expand.svg");
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.main-content .faq-page-content .toggleItem .toggleTitle.active::before {
  background-image: url("/images/collapse.svg");
}
.main-content .faq-page-content .toggleItem .toggleContent {
  display: none;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 34px;
}
.main-content .faq-page-content .toggleItem .toggleContent strong {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: #B99855;
  text-transform: uppercase;
  margin: 20px 0 12px 0;
  display: block;
}
.main-content .faq-page-content .toggleItem .toggleContent ul {
  padding-left: 16px;
  font-size: 15px;
}
.main-content .faq-page-content .toggleItem .toggleContent ul > li {
  list-style: disc;
  margin-bottom: 4px;
}
.main-content .referral-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .referral-page-content h2 {
  margin-bottom: 25px;
}
.main-content .referral-page-content .steps {
  margin-top: 23px;
}
.main-content .referral-page-content .steps .blockTitle {
  margin-bottom: 0;
  color: #ffffff;
  font-family: BrownStd;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 27px;
  font-weight: 400;
}
.main-content .referral-page-content .steps .form-intro {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 23px;
}
.main-content .referral-page-content .steps .listingHolder {
  border: 1px solid rgba(178, 152, 99, 0.83);
  border-radius: 10px;
  padding: 45px 16px 35px 16px;
  margin: 0;
}
.main-content .referral-page-content .steps li {
  text-align: center;
}
.main-content .referral-page-content .steps li:not(:last-child):after {
  content: "";
  position: absolute;
  height: 146px;
  width: 1px;
  border: 1px solid #979797;
  opacity: 0.1;
  right: 0;
  top: 0;
}
.main-content .referral-page-content .steps li > div {
  height: 47px;
}
.main-content .referral-page-content .steps li p {
  margin: 20px 0 10px 0;
  line-height: 19px;
}
.main-content .referral-page-content .steps li small {
  font-size: 14px;
  line-height: 22px;
  color: #cacaca;
}
.main-content .referral-page-content .refer {
  margin: 70px 0;
}
.main-content .referral-page-content .refer .title {
  text-align: center;
  margin-bottom: 52px;
}
.main-content .referral-page-content .refer .title .strong-info {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}
.main-content .referral-page-content .refer .title p {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
}
.main-content .referral-page-content .refer .referral-way {
  text-align: center;
}
.main-content .referral-page-content .refer .referral-way input {
  color: #B99855;
  background-color: #3b3d3d;
  padding: 11px 16px;
  display: block;
  width: 75%;
  margin: 0 auto;
  border-radius: 4px;
  font-size: 14px;
}
.main-content .referral-page-content .refer .referral-way small {
  font-size: 14px;
  margin: 18px 0 7px 0;
  display: block;
}
.main-content .referral-page-content .refer .referral-way a.button {
  margin-top: 22px;
  width: 200px;
}
.main-content .referral-page-content .refer .referral-way:nth-child(2) {
  border: solid rgba(195, 195, 195, 0.1);
  border-width: 0 1px 0 0;
}
.main-content .edit-profile-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .edit-profile-page-content h2 {
  margin-bottom: 33px;
}
.main-content .edit-profile-page-content .title {
  font-size: 20px;
  line-height: 24px;
}
.main-content .edit-profile-page-content form {
  margin-top: 27px;
  margin-top: 17px;
}
.main-content .edit-profile-page-content form .row + .address {
  margin-top: 40px;
}
.main-content .edit-profile-page-content button:not(.edit-button) {
  margin: 0 0 0 auto;
  display: block;
  min-width: 250px;
}
.main-content .edit-profile-page-content > p {
  font-size: 15px;
  margin-bottom: 5px;
}
.main-content .edit-profile-page-content .formActions > a {
  float: right;
}
.main-content .addressWrapper {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(178, 152, 99, 0.86);
  border-radius: 10px;
  margin: 20px 0;
  clear: both;
}
.main-content .addressWrapper .blockTitle {
  margin-bottom: 21px;
  color: #ffffff;
  font-family: BrownStd;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 24px;
}
.main-content .addressWrapper h6 {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 18px;
}
.main-content .addressWrapper p,
.main-content .addressWrapper .description {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.main-content .addressWrapper p b,
.main-content .addressWrapper .description b {
  display: inline-block;
  margin-right: 8px;
  font-size: 15px;
}
.main-content .addressWrapper .primaryBtn {
  display: inline-block;
  background-color: #B99855;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 30px;
}
.main-content .addressWrapper .primaryBtn:hover {
  background: transparent;
  color: #B99855 !important;
  opacity: 1;
}
.main-content .addressWrapper .editAddress {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 0;
  width: 22px;
  height: 22px;
  display: block;
  border: none;
  font-size: 0;
  background-size: contain;
  background-image: url(../images/edit-icon.svg);
}
.main-content .addressWrapper .editAddress img {
  display: block;
}
.main-content .myAddresses {
  margin-top: 40px;
}
.main-content .myAddresses .blockTitle {
  font-size: 22px;
  font-weight: 400;
}
.main-content .myAddresses .noAddresses {
  font-size: 14px;
  margin: 15px 0;
}
.main-content .add-address-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .add-address-page-content .section-title {
  margin: 26px 0 24px 0;
}
.main-content .add-address-page-content button {
  display: block;
  margin: 0 0 0 auto;
}
.main-content .add-address-page-content .formActions {
  margin: 0;
}
.main-content .add-address-page-content .secondaryBtn {
  display: inline-block;
  background-color: transparent;
  border-radius: 20px;
  color: #B99855;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.main-content .add-address-page-content .secondaryBtn:hover {
  background: #B99855;
  color: white !important;
  opacity: 1;
}
.main-content .brand-products-page-content {
  padding-top: 22px;
  padding-bottom: 22px;
  margin-bottom: 24px;
}
.main-content .brand-products-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .brand-products-page-content .toolbar {
  margin-top: 10px;
}
.main-content .brand-products-page-content .products-listing .product-item {
  margin-bottom: 40px;
}
.main-content .brand-products-page-content .products-listing .product-item .listingItem .listingInfos .productPrice {
  font-weight: 400;
}
.main-content .brand-products-page-content .products-listing .product-item .listingItem .listingInfos .productPrice .oldPrice {
  position: relative;
  margin-right: 15px;
  color: #909090;
}
.main-content .brand-products-page-content .products-listing .product-item .listingItem .listingInfos .productPrice .oldPrice:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 3px;
  left: 0;
  background: url(/images/strikethrough.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%, auto;
}
.main-content .brand-listing-page-content {
  margin-bottom: 24px;
}
.main-content .brand-listing-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
  padding-top: 22px;
}
.main-content .brand-listing-page-content .toolbar {
  margin-bottom: 23px;
}
.main-content .brand-listing-page-content .pagination {
  margin-top: 40px;
}
.main-content .brand-about-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .brand-about-page-content .brand-title {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}
.main-content .brand-about-page-content .brand-title .brand-logo {
  margin-right: 34px;
  display: block;
  width: 110px;
}
.main-content .brand-about-page-content .row {
  align-items: center;
}
.main-content .brand-about-page-content .row > div {
  margin-bottom: 30px;
}
.main-content .brand-about-page-content .row img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
.main-content .brand-about-page-content .row p {
  font-size: 16px;
  line-height: 24px;
}
.main-content .promotion-details-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .promotion-details-page-content .title-section {
  display: flex;
  justify-content: space-between;
}
.main-content .promotion-details-page-content .title-section span {
  color: #B99855;
}
.main-content .promotion-details-page-content .title-section > div:first-child {
  margin-right: 32px;
}
.main-content .promotion-details-page-content .title-section .section-subtitle {
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  margin-left: 28px;
  margin-top: 12px;
}
.main-content .promotion-details-page-content .page-title.back::before, .main-content .promotion-details-page-content .page-title.banner-title h1.back::before, .main-content .page-title.banner-title .promotion-details-page-content h1.back::before {
  margin-right: 16px;
}
.main-content .promotion-details-page-content .table {
  margin-top: 35px;
}
.main-content .promotion-details-page-content .pagination {
  margin-top: 40px;
}
.main-content .login-page-content {
  overflow: hidden;
  border-radius: 20px;
}
.main-content .login-page-content.page-content {
  background-color: #1a1a1a;
}
.main-content .login-page-content .section-subtitle {
  margin-bottom: 7px;
}
.main-content .login-page-content p {
  margin-bottom: 16px;
}
.main-content .login-page-content .loginForm {
  padding-right: 30px;
}
.main-content .login-page-content form .forgot-password {
  display: block;
  margin: 10px 0 18px 0;
}
.main-content .login-page-content form input[type=submit] {
  display: block;
  margin: 0 0 0 auto;
}
.main-content .login-page-content .newUser {
  padding-left: 20px;
  padding-right: 20px;
}
.main-content .login-page-content .newUser .section-subtitle {
  margin-bottom: 18px;
}
.main-content .login-page-content .newUser::before {
  content: "";
  position: absolute;
  top: -36px;
  right: -32px;
  left: 0;
  bottom: -32px;
  background-color: #272727;
}
.main-content .login-page-content .newUser > * {
  position: relative;
}
.main-content .login-page-content .newUser a.button {
  display: block;
  margin: 35px 0 0 auto;
  width: fit-content;
}
.main-content .login-page-content .normalBtn {
  display: inline-block;
  background-color: #B99855;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 10px;
}
.main-content .login-page-content .normalBtn:hover {
  background: transparent;
  color: #B99855 !important;
  opacity: 1;
}
.main-content .login-page-content .facebook-login {
  border-top: 1px solid rgba(151, 151, 151, 0.3);
  padding-top: 31px;
  margin-bottom: 20px;
  margin-top: 28px;
  padding-right: 15px;
}
.main-content .login-page-content .facebook-login h5 {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  margin-right: 15px;
  font-weight: normal;
  display: inline-block;
}
.main-content .login-page-content .facebook-login .facebook-button {
  border-radius: 20px;
  background-color: #3b5998;
  color: #ffffff;
  font-family: BrownStd;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 14px;
  text-align: center;
  padding: 12px 23px 12px 40px;
  position: relative;
}
.main-content .login-page-content .facebook-login .facebook-button::before {
  content: "";
  position: absolute;
  height: 17px;
  width: 10px;
  left: 20px;
  top: 12px;
  background: url(../images/facebook-icon.svg) no-repeat center;
  background-size: contain;
}
.main-content .register-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .register-page-content form .row {
  margin-bottom: 30px;
}
.main-content .register-page-content form .row.column {
  flex-direction: column;
  flex-wrap: wrap;
  height: 50rem;
  height: 264px;
}
.main-content .register-page-content form .row.column > .row-50 {
  width: 33%;
  padding: 0 15px;
}
.main-content .register-page-content form h2:not(.shipping-title) {
  margin-bottom: 15px;
}
.main-content .register-page-content form input[type=submit] {
  display: block;
  margin: 0 0 0 auto;
}
.main-content .register-page-content form .same-as-billing {
  margin-top: 8px;
}
.main-content .cigar-details-page-content {
  margin-bottom: 18px;
}
.main-content .cigar-details-page-content .page-title, .main-content .cigar-details-page-content .page-title.banner-title h1, .main-content .page-title.banner-title .cigar-details-page-content h1 {
  margin-top: 23px;
}
.main-content .cigar-details-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.85);
}
.main-content .cigar-details-page-content .productPrice {
  font-size: 25px;
  line-height: 30px;
  margin: 31px 0 28px 0;
}
.main-content .cigar-details-page-content .selection {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
}
.main-content .cigar-details-page-content .selection .inputEntity {
  margin-bottom: 0;
  font-size: 15px;
}
.main-content .cigar-details-page-content .selection .inputEntity label {
  color: #ffffff;
  margin-bottom: 11px;
}
.main-content .cigar-details-page-content .selection .variation {
  width: calc(100% - 87px);
  margin: 0;
}
.main-content .cigar-details-page-content .selection .type {
  width: 100%;
  margin-right: 19px;
}
.main-content .cigar-details-page-content .selection .quantity {
  width: 87px;
  position: static;
}
.main-content .cigar-details-page-content .selection .quantity > input {
  width: 100%;
}
.main-content .cigar-details-page-content .selection #cartQuantityNote {
  color: #FFFFFF;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  position: absolute;
  display: block;
  left: 0;
  padding-top: 10px;
}
.main-content .cigar-details-page-content .specs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.main-content .cigar-details-page-content .specs ul {
  font-size: 14px;
  width: 200px;
  max-width: calc(50% - 20px);
}
.main-content .cigar-details-page-content .specs ul:first-child {
  margin-right: 40px;
}
.main-content .cigar-details-page-content .specs ul > li {
  padding: 8px 0 6px 0;
}
.main-content .cigar-details-page-content .specs ul > li:first-child {
  font-size: 16px;
  font-weight: 700;
}
.main-content .cigar-details-page-content .specs ul > li:not(:last-child) {
  border: solid rgba(255, 255, 255, 0.42);
  border-width: 0 0 1px 0;
}
.main-content .cigar-details-page-content p {
  font-size: 16px;
  line-height: 25px;
  margin-top: 31px;
}
.main-content .cigar-details-page-content .productImg-wrapper {
  height: 390px;
  border: 1px solid #b29863;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.main-content .cigar-details-page-content .productImg-wrapper > img {
  max-height: 100%;
  width: auto;
  margin: 0 auto;
  max-width: 100%;
}
.main-content .cigar-details-page-content .thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.main-content .cigar-details-page-content .thumbnail .discount {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 65px;
  height: 65px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background-color: #8d7e63;
  border: 2.5px solid #B99855;
  border-radius: 77px;
}
.main-content .cigar-details-page-content .thumbnail .discount span::after {
  content: "%";
  font-size: 15px;
  vertical-align: baseline;
}
.main-content .cigar-details-page-content .image-infos .thumbnail-selector {
  margin: 14px 0 30px 0;
  padding: 0;
}
.main-content .cigar-details-page-content .image-infos .thumbnail-selector .owl-carousel .owl-stage {
  width: 100%;
}
.main-content .cigar-details-page-content .image-infos .thumbnail-selector .owl-item {
  background: #fff;
  border-radius: 10px;
}
.main-content .cigar-details-page-content .image-infos .thumbnail-selector .owl-item img {
  border-radius: 10px;
}
.main-content .cigar-details-page-content .image-infos .thumbnail-selector .owl-item:not(.current) {
  opacity: 0.5;
}
.main-content .cigar-details-page-content .measurement > img {
  display: block;
  width: 100%;
}
.main-content .cigar-details-page-content .outOfStock {
  font-size: 12px;
  border-radius: 5px;
  border: 1px solid #b99855;
  background-color: #73654b;
  padding: 5px 10px;
}
.main-content .cigar-details-page-content .product-info-box {
  border-radius: 10px;
  background-color: rgba(39, 39, 39, 0.85);
  padding: 30px;
}
.main-content .cigar-details-page-content .product-info-box .info-list {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.main-content .cigar-details-page-content .product-info-box .info-list li {
  margin-bottom: 12px;
}
.main-content .cigar-details-page-content .product-info-box .info-list li span:first-child {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px;
  display: inline-block;
  min-width: 90px;
}
.main-content .cigar-details-page-content .product-info-box .info-list li small {
  padding-left: 90px;
}
.main-content .cigar-details-page-content .product-info-box .info-list .oldPrice {
  margin-right: 20px;
  color: #fff;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px;
}
.main-content .cigar-details-page-content .product-info-box .info-list .oldPrice::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 3px;
  left: 0;
  background: url("/images/strikethrough.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%, auto;
}
.main-content .cigar-details-page-content .product-info-box .info-list .newPrice {
  color: #b99855;
  font-size: 16px;
  font-weight: bold;
  line-height: 19px;
}
.main-content .cigar-details-page-content .product-info-box .info-list .availability {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 17px;
}
.main-content .cigar-details-page-content .product-info-box .productLinks {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.main-content .cigar-details-page-content .product-info-box .productLinks .addToWishlistLink {
  margin-right: 18px;
}
.main-content .cigar-details-page-content .product-info-box .quantity + .productLinks {
  margin-left: 10px;
}
.main-content .related-products-page-content {
  margin-left: 0;
  margin-right: 0;
}
.main-content .related-products-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.85);
  padding: 24px 34px;
}
.main-content .related-products-page-content h2 {
  margin-bottom: 16px;
}
.main-content .order-confirmation-page-content p {
  margin: 9px 0 10px 0;
  font-size: 16px;
  line-height: 19px;
}
.main-content .order-confirmation-page-content .cartTable {
  margin-top: 43px;
}
.main-content .select-address-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
  padding: 20px;
}
.main-content .select-address-page-content p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 18px;
}
.main-content .select-address-page-content .selected-addresses {
  margin-left: -9px;
  margin-right: -9px;
  margin-bottom: 12px;
}
.main-content .select-address-page-content .selected-addresses > div {
  padding: 0 9px;
  margin-bottom: 15px;
}
.main-content .select-address-page-content .selected-addresses .selected-address {
  padding: 15px;
  border: 1px solid rgba(185, 152, 85, 0.86);
  border-radius: 10px;
}
.main-content .select-address-page-content .selected-addresses .selected-address h6 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
  font-weight: 400;
}
.main-content .select-address-page-content .selected-addresses .selected-address small {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  display: block;
}
.main-content .select-address-page-content .selected-addresses .selected-address p {
  font-size: 15px;
  line-height: 24px;
}
.main-content .select-address-page-content .address-selector {
  display: flex;
  align-items: center;
  margin-bottom: 23px;
}
.main-content .select-address-page-content .address-selector .dk-select {
  max-width: 60%;
  flex-basis: 69%;
  flex-shrink: 1;
  flex-grow: 0;
}
.main-content .select-address-page-content .address-selector .or {
  padding: 0 10px;
}
.main-content .select-address-page-content .address-selector .add-address-button {
  padding-left: 8px;
  padding-right: 8px;
  flex-basis: 31%;
  flex-shrink: 1;
  flex-grow: 0;
  font-size: 11px;
}
.main-content .select-address-page-content .addAddressDiv {
  margin-top: 20px;
}
.main-content .select-address-page-content form {
  margin-bottom: 31px;
}
.main-content .select-address-page-content form h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 14px;
}
.main-content .select-address-page-content form .formActions {
  justify-content: flex-end;
  text-align: right;
}
.main-content .select-address-page-content form .formActions .tertiary-btn {
  margin-right: 10px;
}
.main-content .select-address-page-content .notes label {
  font-size: 20px;
  line-height: 24px;
  color: white;
  margin-bottom: 10px;
}
.main-content .select-address-page-content .proceed-button {
  text-align: right;
}
.main-content .select-address-page-content .addAdressWrapper h3 {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 14px;
}
.main-content .checkout-summary-page-content {
  padding: 15px;
  margin-bottom: 9px;
}
.main-content .checkout-summary-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .checkout-summary-page-content h6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 19px;
}
.main-content .checkout-summary-page-content .promoinput {
  margin: 11px 0;
  display: flex;
  align-items: center;
}
.main-content .checkout-summary-page-content .promoinput input {
  margin-right: 16px;
}
.main-content .checkout-summary-page-content .promoinput .applyPromoCode {
  display: inline-block;
  background-color: #B99855;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.main-content .checkout-summary-page-content .promoinput .applyPromoCode:hover {
  background: transparent;
  color: #B99855 !important;
  opacity: 1;
}
.main-content .checkout-summary-page-content .promoCodeArea.storeCreditArea {
  border: 1px solid rgba(178, 152, 99, 0.16);
  border-radius: 10px;
  padding: 18px 14px;
  margin-bottom: 19px;
  margin-top: 19px;
}
.main-content .checkout-summary-page-content .promoCodeArea.storeCreditArea .promoinput {
  margin: 0;
  justify-content: space-between;
}
.main-content .checkout-summary-page-content .promo {
  font-size: 14px;
  line-height: 22px;
  padding: 13px 18px;
  border: 1px solid rgba(185, 152, 85, 0.16);
  border-radius: 10px;
  margin-bottom: 20px;
}
.main-content .checkout-summary-page-content .promo > div {
  display: flex;
  justify-content: space-between;
}
.main-content .checkout-summary-page-content .promo > div:not(:last-child) {
  margin-bottom: 4px;
}
.main-content .checkout-summary-page-content .promomsg div {
  display: flex;
  justify-content: space-between;
}
.main-content .checkout-summary-page-content .promomsg div .description {
  margin-bottom: 20px;
}
.main-content .checkout-summary-page-content .promomsg div:first-child {
  margin-bottom: 10px;
}
.main-content .checkout-summary-page-content .to-be-paid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 15px;
  line-height: 18px;
}
.main-content .checkout-summary-page-content .to-be-paid > div:last-child {
  font-size: 20px;
  font-weight: 700;
}
.main-content .checkout-summary-page-content .price-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
}
.main-content .checkout-summary-page-content .payment-infos {
  display: flex;
  align-items: flex-end;
}
.main-content .checkout-summary-page-content .payment-infos > div {
  margin-right: 16px;
}
.main-content .checkout-summary-page-content .payment-infos > div span {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 15px;
  display: block;
  padding-bottom: 5px;
}
.main-content .checkout-summary-page-content .summary-table .row {
  margin-left: 0;
  margin-right: 0;
  padding: 13px 0;
  border-bottom: 1px solid #b2986342;
}
.main-content .checkout-summary-page-content .summary-table .row:first-child {
  border-top: 1px solid #b2986342;
}
.main-content .checkout-summary-page-content .summary-table .row:first-child .col {
  font-size: 12px;
  padding: 0;
  text-transform: uppercase;
}
.main-content .checkout-summary-page-content .summary-table .row .col {
  padding-left: 7px;
  padding-right: 7px;
}
.main-content .checkout-summary-page-content .summary-table .row .col:first-child {
  padding-left: 0;
}
.main-content .charges-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .charges-page-content.page-content {
  padding: 23px;
}
.main-content .charges-page-content p {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}
.main-content .payment-page-content {
  border-radius: 20px;
  background-color: #1a1a1a;
}
.main-content .payment-page-content h3 {
  margin-bottom: 6px;
}
.main-content .payment-page-content form {
  margin-top: 23px;
}
.main-content .payment-page-content .powered-by {
  display: flex;
  align-items: center;
}
.main-content .payment-page-content .powered-by p {
  margin-right: 13px;
}
.main-content .wishlist-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
  padding-bottom: 104px;
}
.main-content .wishlist-page-content .section-title {
  margin-bottom: 17px;
}
.main-content .wishlist-page-content .explanation {
  margin-bottom: 40px;
}
.main-content .wishlist-page-content .explanation p {
  margin-bottom: 5px;
}
.main-content .wishlist-page-content .explanation ul {
  padding-left: 16px;
}
.main-content .wishlist-page-content .explanation ul > li {
  list-style-type: disc;
  margin-bottom: 5px;
}
.main-content .wishlist-page-content .addToCartLink {
  text-align: left;
}
.main-content .order-history-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .order-history-page-content .section-header {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.main-content .order-history-page-content .section-header > div {
  display: flex;
  align-items: center;
}
.main-content .order-history-page-content .section-header > div .dk-select {
  width: 5rem;
  margin-left: 25px;
}
.main-content .order-history-page-content .section-header > div p {
  font-size: 17px;
  font-weight: 300;
}
.main-content .order-history-page-content .pagination {
  justify-content: right;
  margin-top: 30px;
}
.main-content .order-details-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .order-details-page-content .title-header {
  display: flex;
  justify-content: space-between;
  margin-top: 23px;
}
.main-content .order-details-page-content .table-header {
  display: flex;
}
.main-content .order-details-page-content .status-light {
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 28px;
}
.main-content .order-details-page-content .status-light::before {
  font-size: 28px;
}
.main-content .order-details-page-content .addresses {
  margin-top: 45px;
}
.main-content .order-details-page-content .addresses .address {
  border: 1px solid #b29863;
  border-radius: 10px;
  padding: 26px 32px;
}
.main-content .order-details-page-content .addresses .address h6 {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 18px;
}
.main-content .order-details-page-content .addresses .address p {
  font-size: 16px;
  line-height: 24px;
}
.main-content .change-password-page-content.page-content {
  background-color: rgba(32, 33, 33, 0.95);
}
.main-content .change-password-page-content .section-title {
  margin-bottom: 10px;
}
.main-content .change-password-page-content .title {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.main-content .change-password-page-content .submitEntity {
  text-align: right;
}

.order-details-page-content .table-header {
  display: flex;
}

.addToCartLink::before,
.addToNotificationsLink::before,
.addToWishlistLink::before {
  content: "";
  flex-shrink: 0;
  width: 15px;
  height: 16px;
  margin-right: 7px;
  background-image: url("/images/add-to-notifications.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.addToCartLink {
  display: inline-block;
  background-color: #B99855;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}
.addToCartLink:hover {
  background: transparent;
  color: #B99855 !important;
  opacity: 1;
}
.addToCartLink:hover::before {
  background-image: url("/images/add-to-cart-secondary.svg");
}
.addToCartLink::before {
  width: 19px;
  height: 17px;
  background-image: url("/images/add-to-cart.svg");
}

.addToWishlistLink {
  display: inline-block;
  background-color: transparent;
  border-radius: 20px;
  color: #B99855;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.addToWishlistLink:hover {
  background: #B99855;
  color: white !important;
  opacity: 1;
}
.addToWishlistLink:hover::before {
  background-image: url("/images/like-white.svg");
}
.addToWishlistLink::before {
  width: 17px;
  height: 15px;
  background-image: url("/images/like.svg");
}
.addToWishlistLink.small {
  padding: 0;
}
.addToWishlistLink.small::before {
  margin: 0;
  width: 40px;
}

.addToNotificationsLink {
  display: inline-block;
  background-color: transparent;
  border-radius: 20px;
  color: #B99855;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  text-align: left;
}
.addToNotificationsLink:hover {
  background: #B99855;
  color: white !important;
  opacity: 1;
}
.addToNotificationsLink:hover::before {
  background-image: url("/images/add-to-notifications-white.svg");
}

.addToCartLink,
.addToNotificationsLink,
.addToWishlistLink {
  font-size: 11px;
  padding: 0 2em 0 2em;
  height: 40px;
  display: flex;
  align-items: center;
  width: fit-content;
  justify-content: center;
}
.addToCartLink:hover,
.addToNotificationsLink:hover,
.addToWishlistLink:hover {
  opacity: 1;
}

.cart-table-with-delete.no-delete .row > .col:nth-child(2), .orderDetails.no-delete .row > .col:nth-child(2) {
  text-align: center;
}
.cart-table-with-delete.no-delete img, .orderDetails.no-delete img {
  max-width: 56px;
}
.cart-table-with-delete.no-delete .table-header, .orderDetails.no-delete .table-header {
  display: flex;
}
.cart-table-with-delete .table-header .col:first-child, .orderDetails .table-header .col:first-child {
  padding-left: 80px !important;
}
.cart-table-with-delete .inputEntity, .orderDetails .inputEntity {
  margin: 0;
}
.cart-table-with-delete .itemName, .orderDetails .itemName {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.cart-table-with-delete img, .orderDetails img {
  border-radius: 5px;
}
.cart-table-with-delete .row > .col:nth-child(1), .orderDetails .row > .col:nth-child(1) {
  flex-basis: calc(55px + 21.5% - 0.215 * 36px);
  width: calc(55px + 21.5% - 0.215 * 36px);
}
.cart-table-with-delete .row > .col:nth-child(2), .orderDetails .row > .col:nth-child(2) {
  flex-basis: calc(13.9% - 10px - 0.139 * 36px);
  width: calc(13.9% - 10px - 0.139 * 36px);
}
.cart-table-with-delete .row > .col:nth-child(3), .orderDetails .row > .col:nth-child(3) {
  flex-basis: calc(16.1% - 12px - 0.161 * 36px);
  width: calc(16.1% - 12px - 0.161 * 36px);
  text-align: center;
}
.cart-table-with-delete .row > .col:nth-child(4), .orderDetails .row > .col:nth-child(4) {
  flex-basis: calc(16.1% - 12px - 0.161 * 36px);
  width: calc(16.1% - 12px - 0.161 * 36px);
  text-align: center;
}
.cart-table-with-delete .row > .col:nth-child(5), .orderDetails .row > .col:nth-child(5) {
  position: relative;
  flex-basis: calc(16.1% - 12px - 0.161 * 36px);
  width: calc(16.1% - 12px - 0.161 * 36px);
  text-align: center;
  z-index: 10;
}
.cart-table-with-delete .row > .col:nth-child(6), .orderDetails .row > .col:nth-child(6) {
  flex-basis: calc(16.1% - 12px - 0.161 * 36px);
  width: calc(16.1% - 12px - 0.161 * 36px);
  text-align: center;
}
.cart-table-with-delete .row > .col:nth-child(7), .orderDetails .row > .col:nth-child(7) {
  flex-basis: 36px;
  width: 36px;
}
.cart-table-with-delete .row:not(.table-header) > .col:nth-child(1), .orderDetails .row:not(.table-header) > .col:nth-child(1) {
  display: flex;
  align-items: center;
}
.cart-table-with-delete .row:not(.table-header) > .col:nth-child(1) .colDetails,
.cart-table-with-delete .row:not(.table-header) > .col:nth-child(1) .itemName, .orderDetails .row:not(.table-header) > .col:nth-child(1) .colDetails,
.orderDetails .row:not(.table-header) > .col:nth-child(1) .itemName {
  padding-left: 20px;
}
.cart-table-with-delete .row:not(.table-header) > .col:nth-child(1) .colDetails a,
.cart-table-with-delete .row:not(.table-header) > .col:nth-child(1) .itemName a, .orderDetails .row:not(.table-header) > .col:nth-child(1) .colDetails a,
.orderDetails .row:not(.table-header) > .col:nth-child(1) .itemName a {
  color: inherit;
}
.cart-table-with-delete .row:not(.table-header) > .col:nth-child(3), .orderDetails .row:not(.table-header) > .col:nth-child(3) {
  font-size: 19px;
  font-weight: 300;
}
.cart-table-with-delete .row:not(.table-header) > .col:nth-child(4), .orderDetails .row:not(.table-header) > .col:nth-child(4) {
  font-size: 19px;
  font-weight: 300;
}
.cart-table-with-delete .row:not(.table-header) > .col:nth-child(5), .orderDetails .row:not(.table-header) > .col:nth-child(5) {
  font-size: 19px;
  font-weight: 400;
}
.cart-table-with-delete .row:not(.table-header) > .col:nth-child(6), .orderDetails .row:not(.table-header) > .col:nth-child(6) {
  font-size: 19px;
  font-weight: 400;
}

.cart-table-without-delete.no-delete .row > .col:nth-child(2), .orderDetails.no-delete .row > .col:nth-child(2) {
  text-align: center;
}
.cart-table-without-delete.no-delete img, .orderDetails.no-delete img {
  max-width: 56px;
}
.cart-table-without-delete.no-delete .table-header, .orderDetails.no-delete .table-header {
  display: flex;
}
.cart-table-without-delete .table-header .col:first-child, .orderDetails .table-header .col:first-child {
  padding-left: 80px !important;
}
.cart-table-without-delete .inputEntity, .orderDetails .inputEntity {
  margin: 0;
}
.cart-table-without-delete .itemName, .orderDetails .itemName {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.cart-table-without-delete img, .orderDetails img {
  border-radius: 5px;
}
.cart-table-without-delete .row > .col:nth-child(1), .orderDetails .row > .col:nth-child(1) {
  flex-basis: calc(55px + 21.5% - 0.215 * 0px);
  width: calc(55px + 21.5% - 0.215 * 0px);
}
.cart-table-without-delete .row > .col:nth-child(2), .orderDetails .row > .col:nth-child(2) {
  flex-basis: calc(13.9% - 10px - 0.139 * 0px);
  width: calc(13.9% - 10px - 0.139 * 0px);
}
.cart-table-without-delete .row > .col:nth-child(3), .orderDetails .row > .col:nth-child(3) {
  flex-basis: calc(16.1% - 12px - 0.161 * 0px);
  width: calc(16.1% - 12px - 0.161 * 0px);
  text-align: center;
}
.cart-table-without-delete .row > .col:nth-child(4), .orderDetails .row > .col:nth-child(4) {
  flex-basis: calc(16.1% - 12px - 0.161 * 0px);
  width: calc(16.1% - 12px - 0.161 * 0px);
  text-align: center;
}
.cart-table-without-delete .row > .col:nth-child(5), .orderDetails .row > .col:nth-child(5) {
  position: relative;
  flex-basis: calc(16.1% - 12px - 0.161 * 0px);
  width: calc(16.1% - 12px - 0.161 * 0px);
  text-align: center;
  z-index: 10;
}
.cart-table-without-delete .row > .col:nth-child(6), .orderDetails .row > .col:nth-child(6) {
  flex-basis: calc(16.1% - 12px - 0.161 * 0px);
  width: calc(16.1% - 12px - 0.161 * 0px);
  text-align: center;
}
.cart-table-without-delete .row > .col:nth-child(7), .orderDetails .row > .col:nth-child(7) {
  flex-basis: 36px;
  width: 36px;
}
.cart-table-without-delete .row:not(.table-header) > .col:nth-child(1), .orderDetails .row:not(.table-header) > .col:nth-child(1) {
  display: flex;
  align-items: center;
}
.cart-table-without-delete .row:not(.table-header) > .col:nth-child(1) .colDetails,
.cart-table-without-delete .row:not(.table-header) > .col:nth-child(1) .itemName, .orderDetails .row:not(.table-header) > .col:nth-child(1) .colDetails,
.orderDetails .row:not(.table-header) > .col:nth-child(1) .itemName {
  padding-left: 20px;
}
.cart-table-without-delete .row:not(.table-header) > .col:nth-child(1) .colDetails a,
.cart-table-without-delete .row:not(.table-header) > .col:nth-child(1) .itemName a, .orderDetails .row:not(.table-header) > .col:nth-child(1) .colDetails a,
.orderDetails .row:not(.table-header) > .col:nth-child(1) .itemName a {
  color: inherit;
}
.cart-table-without-delete .row:not(.table-header) > .col:nth-child(3), .orderDetails .row:not(.table-header) > .col:nth-child(3) {
  font-size: 19px;
  font-weight: 300;
}
.cart-table-without-delete .row:not(.table-header) > .col:nth-child(4), .orderDetails .row:not(.table-header) > .col:nth-child(4) {
  font-size: 19px;
  font-weight: 300;
}
.cart-table-without-delete .row:not(.table-header) > .col:nth-child(5), .orderDetails .row:not(.table-header) > .col:nth-child(5) {
  font-size: 19px;
  font-weight: 400;
}
.cart-table-without-delete .row:not(.table-header) > .col:nth-child(6), .orderDetails .row:not(.table-header) > .col:nth-child(6) {
  font-size: 19px;
  font-weight: 400;
}

.list-view-holder {
  margin-bottom: 30px;
}
.list-view-holder .table-header {
  display: flex;
  color: #B99855;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 0 10px 0;
  text-transform: uppercase;
  border: solid #B99855;
  border-width: 2px 0 2px 0;
  margin: 0;
}
.list-view-holder .table-header .col:nth-child(5)::before {
  top: -12px !important;
  height: calc(100% + 22px) !important;
}
.list-view-holder .listingItem.grid-view {
  display: none;
}
.list-view-holder .row.list-view {
  display: flex;
}
.list-view-holder .row.list-view > .col {
  padding: 0 9px;
}
.list-view-holder .row.list-view > .col:nth-child(1) {
  flex-basis: 80px;
  width: 80px;
  padding-left: 0;
}
.list-view-holder .row.list-view > .col:nth-child(2) {
  flex-basis: calc(35% - 125px);
  width: calc(35% - 125px);
}
.list-view-holder .row.list-view > .col:nth-child(3) {
  flex-basis: calc(21.4% - 77px);
  width: calc(21.4% - 77px);
  text-align: center;
}
.list-view-holder .row.list-view > .col:nth-child(4) {
  flex-basis: calc(21.4% - 77px);
  width: calc(21.4% - 77px);
  text-align: center;
}
.list-view-holder .row.list-view > .col:nth-child(5) {
  position: relative;
  flex-basis: calc(21.4% - 77px);
  width: calc(21.4% - 77px);
  text-align: center;
  z-index: 10;
}
.list-view-holder .row.list-view > .col:nth-child(5)::before {
  content: "";
  position: absolute;
  background-color: #363636;
  left: 0;
  right: 0;
  top: -16px;
  height: calc(100% + 32px);
  z-index: -10;
}
.list-view-holder .row.list-view > .col:nth-child(6) {
  flex-basis: 138px;
  width: 138px;
  padding-right: 0;
}
.list-view-holder .row.list-view > .col:nth-child(7) {
  flex-basis: 138px;
  width: 138px;
}
.list-view-holder .row.list-view > .col .addToWishlistLink,
.list-view-holder .row.list-view > .col .addToCartLink,
.list-view-holder .row.list-view > .col .addToNotificationsLink {
  width: 100%;
  font-size: 10px;
  padding: 0 15px 0 15px;
}
.list-view-holder .row.list-view > .col .addToNotificationsLink {
  font-size: 9px;
}
.list-view-holder .row.list-view > .col img {
  display: block;
  width: 100%;
  border-radius: 5px;
}
.list-view-holder .products-listing .product-item {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0 !important;
}
.list-view-holder .products-listing .product-item .addToWishlistLink {
  text-align: left;
}
.list-view-holder .products-listing .row {
  overflow-y: hidden;
  padding: 16px 0;
  border: solid rgba(255, 255, 255, 0.16);
  border-width: 0 0 1px 0;
  margin-left: 0;
  margin-right: 0;
}
.list-view-holder .products-listing .row:not(.table-header) > .col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-view-holder .products-listing .row:not(.table-header) > .col:nth-child(2) a {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
}
.list-view-holder .products-listing .row:not(.table-header) > .col:nth-child(3) {
  font-size: 19px;
  font-weight: 300;
}
.list-view-holder .products-listing .row:not(.table-header) > .col:nth-child(4) {
  font-size: 19px;
  font-weight: 300;
}
.list-view-holder .products-listing .row:not(.table-header) > .col:nth-child(5) {
  font-size: 19px;
  font-weight: 400;
}

.grid-view-holder .table-header,
.grid-view-holder .list-view {
  display: none;
}
.grid-view-holder .product-item .listingItem:hover .listingImage img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.table-header {
  display: none;
}

.table .row {
  overflow-y: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 0;
  border: solid rgba(255, 255, 255, 0.16);
  border-width: 0 0 1px 0;
  margin-left: -9px;
  margin-right: -9px;
}
.table .table-header {
  color: #B99855;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 0 10px 0;
  text-transform: uppercase;
  border: solid #B99855;
  border-width: 2px 0 2px 0;
  margin: 0;
}
.table .table-header .col:first-child {
  padding-left: 0;
}
.table.summary-table .row > .col {
  width: 15%;
  flex-basis: 15%;
  text-align: center;
  font-size: 13px;
  line-height: 17px;
  font-weight: 300;
}
.table.summary-table .row > .col:first-child {
  width: 35%;
  flex-basis: 35%;
  text-align: left;
  font-weight: 400;
  line-height: 22px;
}
.table.wishlist-table .row > .col:nth-child(1) {
  width: 80px;
  flex-basis: 80px;
}
.table.wishlist-table .row > .col:nth-child(2) {
  width: calc(26.8% - 64px);
  flex-basis: calc(26.8% - 64px);
}
.table.wishlist-table .row > .col:nth-child(3) {
  width: calc(18.2% - 44px);
  flex-basis: calc(18.2% - 44px);
}
.table.wishlist-table .row > .col:nth-child(4) {
  width: calc(18.2% - 44px);
  flex-basis: calc(18.2% - 44px);
  text-align: center;
}
.table.wishlist-table .row > .col:nth-child(5) {
  width: calc(18.2% - 44px);
  flex-basis: calc(18.2% - 44px);
  text-align: center;
}
.table.wishlist-table .row > .col:nth-child(6) {
  width: calc(18.2% - 44px);
  flex-basis: calc(18.2% - 44px);
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 0 5px;
}
.table.wishlist-table .row > .col:nth-child(6) a.addToNotificationsLink {
  padding: 0 10px;
  font-size: 10px;
}
.table.wishlist-table .row > .col:nth-child(7) {
  width: 138px;
  flex-basis: 138px;
}
.table.wishlist-table .row > .col:nth-child(8) {
  width: 50px;
  flex-basis: 50px;
}
.table.wishlist-table .row.table-header .col:nth-child(7) {
  display: none;
}
.table.wishlist-table .row.wishlist-item .col:nth-child(3), .table.wishlist-table .row.wishlist-item .col:nth-child(5) {
  font-size: 19px;
  text-align: center;
}
.table.wishlist-table .row.wishlist-item .col:nth-child(4) {
  font-size: 16px;
}
.table.wishlist-table .inputEntity {
  margin: 0;
}
.table.wishlist-table img {
  border-radius: 5px;
  max-width: 100%;
}
.table.order-history-table .table-header {
  display: flex;
}
.table.order-history-table .row > .col {
  width: calc(25% - 40px);
  flex-basis: calc(25% - 40px);
  text-align: center;
}
.table.order-history-table .row > .col:nth-child(2) {
  text-align: left;
}
.table.order-history-table .row > .col:last-child {
  width: 130px;
  flex-basis: 130px;
  text-align: left;
}
.table.order-history-table .row:not(.table-header) > .col {
  font-size: 17px;
}
.table.order-history-table .row:not(.table-header) > .col:last-child {
  font-size: 15px;
}
.table.orderDetails .table-header > .col:first-child {
  padding-left: 65px;
}
.table.orderDetails .row.productRow {
  margin-left: 0;
  margin-right: 0;
}
.table.orderDetails .row > .col {
  text-align: center;
  font-weight: 300;
}
.table.orderDetails .row > .col:first-child {
  text-align: left;
  font-weight: 400;
  line-height: 22px;
}
.table.orderDetails .row > .col.itemDetails {
  display: flex;
  padding-left: 0;
}
.table.orderDetails .row > .col.itemDetails img {
  display: block;
  max-width: 56px;
  border-radius: 5px;
  margin-right: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .table .row > .col {
    margin-right: -10px;
    margin-left: -10px;
  }
  .table .row > .col > * {
    max-width: calc(100% - 20px);
  }
  .table .row > .col::before {
    left: 20px !important;
    right: 20px !important;
  }
}

.messageContainer {
  position: fixed;
  top: 0;
  width: 100%;
  visibility: hidden;
  background-color: #3c3c3c;
  opacity: 0;
  height: 0;
  z-index: 101;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.messageContainer .container {
  padding: 15px 20px;
  color: white;
}
.messageContainer h3 {
  display: block;
  margin-bottom: 10px;
}
.messageContainer .messageBody {
  font-size: 16px;
  line-height: 19px;
}
.messageContainer.show {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  height: 120px;
  visibility: visible;
}

.search-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  width: 477px;
  background-color: #1e1f1f;
  z-index: 101;
  padding: 50px 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -o-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.search-sidebar.open {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.search-sidebar h4 {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 29px;
  margin-bottom: 36px;
  font-weight: 400;
}
.search-sidebar .search-side-input {
  position: relative;
}
.search-sidebar .search-side-input:after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  height: 20px;
  width: 20px;
  background: url(../images/search-icon-bar.svg) no-repeat;
  background-size: contain;
}
.search-sidebar .search-side-input input[type=text] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  width: 100%;
  height: 35px;
  padding-left: 34px;
  padding-bottom: 15px;
}
.search-sidebar .search-side-input ::-webkit-input-placeholder {
  color: #8e8e8e;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-transform: uppercase;
}
.search-sidebar .search-side-input :-moz-placeholder {
  color: #8e8e8e;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-transform: uppercase;
}
.search-sidebar .search-side-input ::-moz-placeholder {
  color: #8e8e8e;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-transform: uppercase;
}
.search-sidebar .search-side-input :-ms-input-placeholder {
  color: #8e8e8e;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-transform: uppercase;
}
.search-sidebar .products-search-list {
  margin-top: 24px;
}
.search-sidebar .products-search-list .product-search-item {
  padding-bottom: 21px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.search-sidebar .products-search-list .product-search-item .first-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 21px;
}
.search-sidebar .products-search-list .product-search-item .first-row .product-search-info {
  display: flex;
}
.search-sidebar .products-search-list .product-search-item .btns-row {
  display: flex;
  justify-content: space-between;
}
.search-sidebar .products-search-list .product-search-item .btns-row > a {
  width: 180px;
}
.search-sidebar .products-search-list .product-search-item .product-search-image {
  width: 50px;
  margin-right: 20px;
}
.search-sidebar .products-search-list .product-search-item .product-search-image img {
  width: 100%;
}
.search-sidebar .products-search-list .product-search-item .product-search-title {
  max-width: 60%;
}
.search-sidebar .products-search-list .product-search-item .product-search-title h3 {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  font-weight: 400;
}
.search-sidebar .products-search-list .product-search-item .product-search-price {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}
.search-sidebar .products-search-list .product-search-item .product-search-price .oldPrice {
  position: relative;
  margin-right: 10px;
  color: #909090;
}
.search-sidebar .products-search-list .product-search-item .product-search-price .oldPrice:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 3px;
  left: 0;
  background: url(/images/strikethrough.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%, auto;
}
.search-sidebar .close-search {
  position: absolute;
  top: 37px;
  right: 20px;
  height: 22px;
  width: 22px;
  background: url(../images/close.svg) no-repeat;
  background-size: contain;
  display: inline-block;
}
.search-sidebar #view-all-search-results {
  color: #B99855;
  position: relative;
}
.search-sidebar #view-all-search-results::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 9px;
  background-image: url("/images/arrow-right-secondary.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  margin-left: 10px;
}

.products-search-count {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 17px;
  margin-bottom: 25px;
}

.search-page-title {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 37px;
  margin-bottom: 14px;
  font-weight: 400;
}

.cart-table-with-delete .deleteItem img {
  margin-top: 9px;
}

.email-verified-message .formActions {
  margin-top: 20px;
}

span.errorMessage {
  font-size: 12px;
  position: absolute;
  right: 0;
  bottom: 51px;
  max-width: 50%;
}

.ajaxLoader, #ajaxLoader {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 15;
}
.ajaxLoader:before, #ajaxLoader:before {
  content: "";
  left: 50%;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  top: 50%;
  border: 4px solid #d8d8d8;
  border-top-color: #B99855;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
}

.sharePopup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 50;
}
.sharePopup .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid #b99855;
  border-radius: 20px;
  padding: 20px 30px;
  background-color: #272727;
  max-width: 650px;
  min-height: 300px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.sharePopup .at-expanded-menu-service-list {
  display: flex;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.sharePopup .at-expanded-menu-service-list li {
  text-align: center;
}
.sharePopup .at-expanded-menu-service-list .at-expanded-menu-button {
  border: none;
  background-color: transparent;
}
.sharePopup .at-expanded-menu-service-list .at-expanded-menu-button .at-icon-wrapper {
  display: block;
  width: 40px !important;
  line-height: 56px !important;
  height: 40px !important;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
  border-radius: 50%;
}
.sharePopup .at-expanded-menu-service-list .at-expanded-menu-button .at-icon-wrapper svg {
  fill: white;
  width: 27px;
}
.sharePopup .at-expanded-menu-service-list .at-expanded-menu-button-label {
  display: block;
  text-align: center;
  color: #fff;
  padding-top: 10px;
  font-weight: 300;
}
.sharePopup .at-expanded-menu-close {
  height: 22px;
  width: 22px;
  background: url(../images/close.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
}

.resetPasswordMain h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}
.resetPasswordMain .intro {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.resetPasswordMain form,
.resetPasswordMain .row {
  width: 100%;
}
.resetPasswordMain .submitEntity {
  text-align: right;
}
.resetPasswordMain .submitEntity .button {
  min-width: 130px;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #3b3d3d inset !important;
  box-shadow: 0 0 0 30px #3b3d3d inset !important;
  -webkit-text-fill-color: #b99855 !important;
}

.cigar-holder {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.cigar-holder .cigar-img {
  margin-bottom: 30px;
}
.cigar-holder .ruler-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.cigar-holder .ruler-wrapper img {
  max-width: 728px;
}
.cigar-holder .ruler-img-wrapper {
  overflow-y: auto;
}

.switch input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.switch input[type=checkbox]:checked + label::after {
  left: calc(100% - 4px);
  transform: translateX(-100%);
}

.switch {
  display: inline-flex;
  margin: 10px 0 0 30px;
  align-items: center;
}
.switch span {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
}
.switch label {
  cursor: pointer;
  width: 48px;
  height: 24px;
  background: transparent;
  border: 1px solid #B99855;
  display: block;
  border-radius: 24px;
  margin-left: 5px !important;
  margin: 0 5px;
  position: relative;
}
.switch label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #B99855;
  border-radius: 16px;
  transition: 0.3s;
}
.switch label:before {
  content: none !important;
}

.unit-converter {
  display: flex;
  flex-wrap: wrap;
}
.unit-converter label:first-child {
  color: #ffffff;
  font-family: BrownStd;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  display: inline-block;
  margin-bottom: 12px;
}
.unit-converter .switch {
  margin-left: 0;
  margin-top: 0;
}
.unit-converter .unit-input {
  display: flex;
  margin-bottom: 0;
}
.unit-converter .unit-input input[type=text] {
  width: 176px;
}
.unit-converter .unit-input .primaryBtn {
  display: inline-block;
  background-color: #B99855;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 6px;
}
.unit-converter .unit-input .primaryBtn:hover {
  background: transparent;
  color: #B99855 !important;
  opacity: 1;
}
.unit-converter .length-results {
  margin-top: 26px;
  color: #ffffff;
  font-family: BrownStd;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  padding: 15px;
  width: 100%;
  border: 1.5px solid #b99855;
  border-radius: 3px;
  background-color: #73654b;
  text-align: center;
}

.size-tables {
  padding-top: 58px;
}
.size-tables table {
  width: 100%;
}
.size-tables table thead {
  border-top: 2px solid #b99855;
  border-bottom: 2px solid #b99855;
}
.size-tables table thead tr th {
  color: #b99855;
  font-family: BrownStd;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 17px;
  padding: 14px 0;
  text-align: left;
}
.size-tables table thead tr th:nth-child(2) {
  padding-left: 30px;
}
.size-tables table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.size-tables table tbody td {
  width: 50%;
  color: #ffffff;
  font-family: BrownStd;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22px;
  padding: 5px 0;
}
.size-tables table tbody td:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}
.size-tables table tbody td:nth-child(2) {
  padding-left: 30px;
}

.htmlError header {
  position: fixed;
  width: 100%;
  z-index: 100;
  transition: height 0.2s ease-in-out, top 0.4s ease-in-out, background-color 0.3s ease-in-out;
  top: 0;
}
.htmlError main {
  padding-top: 200px;
}
.htmlError .body-holder {
  min-height: calc(100vh - 350px);
  padding: 0px 20%;
  margin-bottom: 50px;
}
.htmlError .body-holder .error500 {
  padding: 100px 0 120px 0;
  box-sizing: border-box;
  border: 2px solid #B29863;
  border-radius: 10px;
  background-color: rgba(32, 33, 33, 0.85);
}
.htmlError .body-holder .error500 .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 100%;
}
.htmlError .body-holder .error500 .container img {
  padding-bottom: 60px;
}
.htmlError .body-holder .error500 .container h1 {
  color: #FFFFFF;
  font-family: BrownStd;
  font-size: 34px;
  letter-spacing: 0;
  line-height: 32px;
  padding-bottom: 30px;
}
.htmlError .body-holder .error500 .container p {
  color: #FFFFFF;
  font-family: BrownStd;
  font-size: 16px;
  letter-spacing: 0;
  padding-bottom: 40px;
  line-height: 26px;
}
.htmlError .body-holder .error500 .container a {
  display: inline-block;
  background-color: #B99855;
  border-radius: 20px;
  color: #FFFFFF !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.errorWrapper {
  box-sizing: border-box;
  text-align: center;
  padding: 100px 0 120px 0;
  border: 2px solid #B29863;
  border-radius: 10px;
  background-color: rgba(32, 33, 33, 0.85);
}
.errorWrapper .container {
  max-width: 100%;
}
.errorWrapper .container img {
  padding-bottom: 50px;
}
.errorWrapper .container h1 {
  padding-bottom: 30px;
}
.errorWrapper .container p {
  padding-bottom: 40px;
}
.errorWrapper .container a {
  border-radius: 20px;
  background-color: #B99855;
  color: white;
  padding: 12px 35px;
  color: #FFFFFF;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
}

.highlighed-links {
  position: relative;
}
.highlighed-links .closed-in {
  display: flex;
}
.highlighed-links .auctionCountdown {
  color: #b99855;
  position: absolute;
  right: 0;
  bottom: -30px;
  font-weight: bold;
}
.highlighed-links .auctionCountdown .timeWrapper {
  display: flex;
}
.highlighed-links .auctionCountdown .time-numbers div {
  display: flex;
}
.highlighed-links .auctionCountdown .time-numbers div .time {
  margin-left: 4px;
}
.highlighed-links .auctionCountdown .time-numbers div .number {
  margin-left: 4px;
}

.ContetClosed-in {
  color: white;
}
.ContetClosed-in .closed-in-text {
  margin-bottom: 5px !important;
}
.ContetClosed-in .timeWrapper {
  display: flex;
}
.ContetClosed-in .timeWrapper .time-numbers {
  margin-right: 4px;
}
.ContetClosed-in .timeWrapper .time-numbers div {
  display: flex;
}
.ContetClosed-in .timeWrapper .time-numbers div .number {
  margin-right: 4px;
}

.auctionPopUpWrapper {
  z-index: 100;
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.auctionPopUpWrapper .auctionPopUp {
  width: 820px;
  max-width: 820px;
  padding: 35px 40px;
  background-color: #1a1a1a;
  border: 3px solid #B99855;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  max-height: 90%;
  overflow-y: auto;
  transition: all 1s;
  transition-delay: 0.3s;
}
.auctionPopUpWrapper .auctionPopUp.show {
  transform: translate(-50%, -50%) scale(1);
}
.auctionPopUpWrapper .auctionPopUp::-webkit-scrollbar-track {
  display: none;
}
.auctionPopUpWrapper .auctionPopUp::-webkit-scrollbar {
  display: none;
}
.auctionPopUpWrapper .auctionPopUp::-webkit-scrollbar-thumb {
  display: none;
}
.auctionPopUpWrapper .auctionPopUp .closeAuctionPopUp {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpHeader {
  display: flex;
  gap: 25px;
  margin-bottom: 22px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpHeader .icon-wrapper {
  width: 70px;
  height: 70px;
  border: 0.94px solid #B99855;
  background-color: #85694F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpHeader .icon-wrapper img {
  width: 90%;
  height: auto;
  max-height: 80%;
  object-fit: contain;
  border-radius: 50%;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpHeader .text h2 {
  color: #FFFFFF;
  font-size: 32px;
  line-height: 44px;
  font-weight: 500;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpHeader .text h6 {
  color: #B99855;
  font-family: "Cormorant Garamond";
  font-size: 23px;
  font-style: italic;
  font-weight: 500;
  line-height: 26px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpInfo {
  margin-bottom: 28px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpInfo .notice-text {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
  text-align: center;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpInfo .auctionPopUpInfoWrapper {
  padding: 25px;
  padding-bottom: 10px;
  margin-bottom: 8px;
  border: 1px solid rgba(185, 152, 85, 0.9);
  border-radius: 10px;
  background-color: #202121;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpInfo .auctionPopUpInfoWrapper .listItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpInfo .auctionPopUpInfoWrapper .listItem .img-wrapper {
  width: 35px;
  height: 35px;
  margin-bottom: 12px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpInfo .auctionPopUpInfoWrapper .listItem .img-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpInfo .auctionPopUpInfoWrapper .listItem h5 {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  margin-bottom: 5px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpInfo .auctionPopUpInfoWrapper .listItem p {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpNotification {
  padding: 28px 40px;
  border: 1px solid #B99855;
  border-radius: 10px;
  background-color: rgba(185, 152, 85, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpNotification h3 {
  flex: 0 0 45%;
  color: #fff;
  font-size: 29px;
  letter-spacing: 0;
  line-height: 35px;
  font-weight: 500;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpNotification .links-wrapper {
  min-width: 295px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpNotification .links-wrapper .notify-me-link {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 27px;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.23);
  padding: 15px 30px;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpNotification .links-wrapper .notify-me-link img {
  height: 21px;
  width: 18px;
  filter: brightness(0);
  transition: all 0.3s;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpNotification .links-wrapper .notify-me-link:hover {
  color: #B99855;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpNotification .links-wrapper .notify-me-link:hover img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(33%) saturate(581%) hue-rotate(2deg) brightness(93%) contrast(86%);
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpNotification .links-wrapper .sign-in-link {
  border: 1px solid #FFFFFF;
  border-radius: 27px;
  padding: 18px 35px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpNotification .links-wrapper .sign-in-link:hover {
  color: #B99855;
  background-color: #fff;
  border-color: #B99855;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpSubscribeForm {
  position: relative;
  padding: 18px 100px 18px 40px;
  border: 1px solid #B99855;
  opacity: 0.9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpSubscribeForm .emptyField {
  color: red;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpSubscribeForm .closeSubscribe {
  position: absolute;
  top: 15px;
  right: 25px;
  cursor: pointer;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpSubscribeForm label {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 17px;
  flex-shrink: 0;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpSubscribeForm input {
  flex-grow: 1;
  border-radius: 3px;
  background-color: #3B3D3D;
  padding: 13px;
  color: #ffffff;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpSubscribeForm a {
  flex-shrink: 0;
  border-color: #fff;
  color: #fff;
  background-color: transparent;
  font-weight: 500;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpSubscribeForm a:hover {
  border-color: #B99855;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .section-title {
  color: #FFFFFF;
  font-size: 22px;
  line-height: 27px;
  margin-bottom: 6px;
  font-weight: 500;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem {
  border: 1px solid #B99855;
  border-radius: 10px;
  padding: 14px;
  padding-right: 25px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .top img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 5px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .top .text .title {
  color: #FFFFFF;
  font-size: 13px;
  line-height: 23px;
  margin-bottom: 2px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .top .text .value {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 19px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  justify-content: space-between;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .lostBid {
  padding: 7px 10px;
  border: 1px solid #B99855;
  border-radius: 4px;
  min-width: 140px;
  margin-right: 15px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .lostBid .title {
  color: #FFFFFF;
  font-size: 12px;
  line-height: 14px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .lostBid .value {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 22px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .lostBid .value span {
  font-size: 14px;
  line-height: 17px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .closed-in {
  display: block;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .closed-in .closed-in-text {
  color: #FFFFFF;
  font-size: 11px;
  line-height: 14px;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-weight: 300;
  width: 100%;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .closed-in .timeWrapper {
  display: flex;
  align-items: center;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .closed-in .timeWrapper .time-numbers {
  padding-right: 20px;
  position: relative;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .closed-in .timeWrapper .time-numbers:last-child {
  padding-right: 0px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .closed-in .timeWrapper .time-numbers:last-child::after {
  display: none;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .closed-in .timeWrapper .time-numbers::before {
  display: none;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .closed-in .timeWrapper .time-numbers::after {
  content: "";
  display: block;
  height: 15px;
  width: 1px;
  border: 1px solid #979797;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .closed-in .timeWrapper .time-numbers .number {
  color: #FFFFFF;
  font-size: 21px;
  line-height: 25px;
  text-align: center;
  font-weight: 300;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .middle .closed-in .timeWrapper .time-numbers .time {
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 15px;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .bidNowBtn {
  width: fit-content;
  margin-left: auto;
}
.auctionPopUpWrapper .auctionPopUp .auctionPopUpFeatured .featuredItem .bidNowBtn a {
  font-weight: 300;
  margin-bottom: 0;
}
.auctionPopUpWrapper .startBiddingLink {
  display: inline-block;
  background-color: #B99855;
  border: 1px solid #B99855;
  color: white;
  border-radius: 20px;
  color: white !important;
  font-family: BrownStd;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 15px;
  text-align: center;
  padding: 12px 25px;
  border: 1px solid #B99855;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  margin-bottom: 15px;
}
.auctionPopUpWrapper .startBiddingLink.notifyBtn {
  position: relative;
}
.auctionPopUpWrapper .startBiddingLink.notifyBtn#askAuthorization:before {
  content: none;
}
.auctionPopUpWrapper .startBiddingLink.notifyBtn:hover:before {
  background: url("/images/Notify-gold.png") no-repeat center;
  background-size: contain;
}
.auctionPopUpWrapper .startBiddingLink.notifyBtn::before {
  content: "";
  background-size: contain;
  position: absolute;
  padding: 0;
  transform: translateY(-50%);
  left: 33%;
  top: 45%;
  margin: 0;
  background: url("/images/Notify-white.png") no-repeat center;
  width: 20px;
  background-size: contain;
  height: 20px;
}
.auctionPopUpWrapper .startBiddingLink:hover {
  background: transparent;
  color: #B99855 !important;
  opacity: 1;
  color: #B99855 !important;
  background-color: white;
  border: 1px solid white;
}
.auctionPopUpWrapper .startBiddingLink:hover::before {
  content: "";
  background-image: url("/images/start-bidding-gold.png");
}
.auctionPopUpWrapper .startBiddingLink::before {
  content: "";
  width: 19px;
  background-size: contain;
  height: 17px;
  background-image: url("/images/start-bidding-white.png");
  background-repeat: no-repeat;
  background-position: left;
  padding-right: 25px;
  margin-right: 10px;
  margin-bottom: 5px;
  padding-top: 5px;
}

@-webkit-keyframes half-yellow-shadow {
  0% {
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
  }
  16.66% {
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
  }
  32.32% {
    top: 0;
    left: 50%;
    height: 50%;
    width: 50%;
  }
  49.98% {
    top: 50%;
    left: 50%;
    height: 50%;
    width: 50%;
  }
  66.64% {
    top: 50%;
    left: 0;
    height: 50%;
    width: 100%;
  }
  83.3% {
    top: 50%;
    left: 0;
    height: 50%;
    width: 50%;
  }
  100% {
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
  }
}
@keyframes half-yellow-shadow {
  0% {
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
  }
  16.66% {
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
  }
  32.32% {
    top: 0;
    left: 50%;
    height: 50%;
    width: 50%;
  }
  49.98% {
    top: 50%;
    left: 50%;
    height: 50%;
    width: 50%;
  }
  66.64% {
    top: 50%;
    left: 0;
    height: 50%;
    width: 100%;
  }
  83.3% {
    top: 50%;
    left: 0;
    height: 50%;
    width: 50%;
  }
  100% {
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
  }
}
@-webkit-keyframes gradient-shadow {
  0% {
    -webkit-box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
    box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
  }
  80% {
    -webkit-box-shadow: 0 0 17px 3px transparent, 0 0 4px 2px transparent;
    box-shadow: 0 0 17px 3px transparent, 0 0 4px 2px transparent;
  }
  100% {
    -webkit-box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
    box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
  }
}
@keyframes gradient-shadow {
  0% {
    -webkit-box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
    box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
  }
  80% {
    -webkit-box-shadow: 0 0 17px 3px transparent, 0 0 4px 2px transparent;
    box-shadow: 0 0 17px 3px transparent, 0 0 4px 2px transparent;
  }
  100% {
    -webkit-box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
    box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
  }
}

/*# sourceMappingURL=promoCigar.css.map */
