:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sway {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
    animation-timing-function: ease-in;
  }
}
@keyframes slideInLeft {
  0% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
      visibility: visible;
  }
  to {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
  }
}
@keyframes slideOutLeft {
  0% {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
  }
  to {
      visibility: hidden;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
  }
}
@keyframes bounceIn {
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1);
      transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
      -webkit-transform: scale3d(0.9, 0.9, 0.9);
      transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
      opacity: 1;
      -webkit-transform: scale3d(1.03, 1.03, 1.03);
      transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
      -webkit-transform: scale3d(0.97, 0.97, 0.97);
      transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
      opacity: 1;
      -webkit-transform: scaleX(1);
      transform: scaleX(1);
  }
}
/*  */
.brdr_box {
  box-sizing: border-box !important;
}

/* Layout */

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media only screen and (min-width: 1600px) {
  .container.product_markers_explanation_container,
  .container.product__filters-container,
  .container.product__display {
    max-width: 1430px;
  }
}

.row {
  display: flex;
  /* flex-wrap: wrap; */
  flex-wrap: nowrap;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, 
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, 
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, 
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, 
.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto 
{
  position: relative;
  width: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .col-sm-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .col-md-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-12 {
    width: 100%;
  }
}

.col-8 {
  max-width: 66.666667%;
}
@media only screen and (max-width: 767px) and (min-width: 576px) {
  .col-sm-8 {
    width: 66.666667%;
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .col-md-8 {
    width: 66.666667%;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 992px) {
  .col-lg-8 {
    width: 66.666667%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-8 {
    width: 66.666667%;
  }
}

.col-6 {
  width: 50%;
}
@media only screen and (max-width: 767px) and (min-width: 576px) {
  .col-sm-6 {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 992px) {
  .col-lg-6 {
    width: 50%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-6 {
    width: 50%;
  }
}

.col-4 {
  width: 33.33333333%;
}
@media only screen and (max-width: 767px) and (min-width: 576px) {
  .col-sm-4 {
    width: 33.33333333%;
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .col-md-4 {
    width: 33.33333333%;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 992px) {
  .col-lg-4 {
    width: 33.33333333%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-4 {
    width: 33.33333333%;
  }
}

.col-3 {
  width: 25%;
}
@media only screen and (min-width: 576px) {
  .col-sm-3 {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) {
  .col-md-3 {
    width: 25%;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-3 {
    width: 25%;
  }
}

.col-2 {
  width: 16.6666666667%;
}
@media only screen and (min-width: 576px) {
  .col-sm-2 {
    width: 16.6666666667%;
  }
}
@media only screen and (min-width: 768px) {
  .col-md-2 {
    width: 16.6666666667%;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg-2 {
    width: 16.6666666667%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-2 {
    width: 16.6666666667%;
  }
}

.col-1 {
  width: 8.33333333333%;
}
@media only screen and (min-width: 576px) {
  .col-sm-1 {
    width: 8.33333333333%;
  }
}
@media only screen and (min-width: 768px) {
  .col-md-1 {
    width: 8.33333333333%;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg-1 {
    width: 8.33333333333%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-1 {
    width: 8.33333333333%;
  }
}

/* end of Layout */

body.page-id-4392 {
  overflow: hidden;   
}
#landing__page .landing {
  position: absolute;
  top: 46%;
  left: 50%;
  right: 0;
  max-width: 1280px;
  max-height: 720px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
#landing__page .landing.svg-middle {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
#landing__page .splash {
  opacity: 1;
  transition: opacity 0.2s;
}
#landing__page .splash.inactive {
  opacity: 0;
  transition: opacity 0.2s;
}
#landing__page .landing_main-cloud_wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 52.6%;
  display: block;
}
#landing__page .landing_main-cloud {
  animation: jackInTheBox 1s, pulse 4s 1.2s infinite;
}
#landing__page .landing_starburst_wrapper {
  position: absolute;
  top: 48%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 50.2%;
  display: block;
}
#landing__page .landing_starburst {
  animation: hide 0.1s, jackInTheBox 1s 0.1s, sway 3s 1s infinite;
  animation-direction: alternate;
}
#landing__page .landing_welcome_wrapper {
  position: absolute;
  top: 28.4%;
  left: 0;
  right: 5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 19.5%;
  display: block;
}
#landing__page .landing_welcome {
  animation: hide 0.2s, bounceIn 0.8s 0.2s;
}
#landing__page .landing_tothe_wrapper {
  position: absolute;
  top: 36%;
  left: 0;
  right: 3.3%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 15.9%;
  display: block;
}
#landing__page .landing_tothe {
  animation: hide 0.4s, bounceIn 0.8s 0.4s;
}
#landing__page .landing_mindcafe_wrapper {
  position: absolute;
  top: 51.5%;
  left: 0;
  right: 1.5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 33.4%;
  display: block;
}
#landing__page .landing_mindcafe {
  animation: hide 0.6s, bounceIn 0.8s 0.6s;
}
#landing__page .landing_dice_wrapper {
  position: absolute;
  top: 28.2%;
  left: 0;
  right: 37.6%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 11.2%;
  display: block;
}
#landing__page .landing_dice {
  animation: hide 0.5s, bounceIn 0.8s 0.5s;
}
#landing__page .landing_cards_wrapper {
  position: absolute;
  top: 20%;
  left: 0;
  right: -27.2%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 8.5%;
  display: block;
}
#landing__page .landing_cards {
  animation: hide 0.7s, bounceIn 0.8s 0.7s;
}
#landing__page .landing_logo_wrapper {
  position: absolute;
  top: 83%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 15.2%;
  display: block;
}
#landing__page .landing_logo {
  animation: hide 0.8s, bounceIn 0.8s 0.8s;
}
#landing__page .landing_events,
#landing__page .landing_walkins {
  position: absolute;
  top: 8%;
  left: 0;
  right: 0;
  z-index: 100;
  margin: 15px auto;
  width: 100%;
  max-width: 650px;
  background: #fff7d7;
  border: 10px solid #ffffff;
  border-radius: 30px;
  padding: 40px 50px;
  text-align: center;
  box-shadow: 0 0 200px #fe9902;
  opacity: 0;
  transition: opacity 0.3s;
  animation: zoomOut 0.3s;
}
#landing__page .landing_events.active,
#landing__page .landing_walkins.active {
  opacity: 1;
  transition: opacity 0.5s;
  animation: bounceIn 0.5s;
}
#landing__page .landing_events h2,
#landing__page .landing_walkins h2 {
  text-transform: uppercase;
}
#landing__page .landing_events ul,
#landing__page .landing_walkins ul {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  padding-left: 20px;
}
#landing__page .landing_events ul li,
#landing__page .landing_walkins ul li {
  line-height: 1.4;
  margin: 10px 0 0;
}
#landing__page .landing_events .button,
#landing__page .landing_walkins .button {
  background: #fe9902;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.2;
  display: block;
  padding: 15px;
  border-radius: 4px;
}
#landing__page .landing_events .button:active, #landing__page .landing_events .button:focus, #landing__page .landing_events .button:hover,
#landing__page .landing_walkins .button:active,
#landing__page .landing_walkins .button:focus,
#landing__page .landing_walkins .button:hover {
  background: #ff19e5;
}
#landing__page .landing_events .close_button,
#landing__page .landing_walkins .close_button {
  font-family: "FontAwesome";
  font-size: 50px;
  font-style: normal;
  position: absolute;
  top: 7px;
  right: 10px;
  cursor: pointer;
}
#landing__page .landing_events .close_button .fas,
#landing__page .landing_walkins .close_button .fas {
  font-style: normal;
}
#landing__page .home main.vertical .landing_events,
#landing__page .home main.vertical .landing_walkins {
  top: -22%;
}
#landing__page .landing_walkins_wrapper {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 15px auto;
  width: 30.4%;
  opacity: 0;
}
#landing__page .landing_walkins_wrapper.active {
  opacity: 1;
}
#landing__page .landing_walkins_wrapper.active .landing_walkins {
  animation: bounceIn 0.5s;
}
#landing__page .landing_smallcloudsleft_wrapper {
  position: absolute;
  top: 36%;
  left: -60%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 13.3%;
  opacity: 0;
}
#landing__page .landing_smallcloudsleft_wrapper.active {
  opacity: 1;
}
#landing__page .landing_smallcloudsleft_wrapper.active .landing_small-clouds-left {
  animation: fadeInUp 0.3s;
}
#landing__page .landing_smallcloudsleft_wrapper.vertical {
  display: none;
}
#landing__page .landing_smallcloudsright_wrapper {
  position: absolute;
  top: 36%;
  left: 0;
  right: -56%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 13.3%;
  opacity: 0;
}
#landing__page .landing_smallcloudsright_wrapper.active {
  opacity: 1;
}
#landing__page .landing_smallcloudsright_wrapper.active .landing_small-clouds-right {
  animation: fadeInUp 0.3s;
}
#landing__page .landing_smallcloudsright_wrapper.vertical {
  display: none;
}
#landing__page .landing_arrow-left_wrapper,
#landing__page .landing_arrow-right_wrapper {
  width: 20%;
  display: block;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0;
}
#landing__page .landing_arrow-left_wrapper {
  left: 0;
}
#landing__page .landing_arrow-left_wrapper.vertical {
  left: 25%;
  top: 80%;
  width: 24%;
}
#landing__page .landing_arrow-right_wrapper {
  right: 0;
}
#landing__page .landing_arrow-right_wrapper.vertical {
  right: 25%;
  top: 80%;
  width: 24%;
}
#landing__page .landing_arrow-left {
  animation: hide 0.8s, zoomInRight 1s 0.8s;
  -webkit-transform: translate(0px);
  -ms-transform: translate(0px);
  -moz-transform: translate(0px);
  -o-transform: translate(0px);
  transform: translate(0px);
  transition: all 0.2s ease-in-out;
}
#landing__page .landing_arrow-left:active, #landing__page .landing_arrow-left:focus, #landing__page .landing_arrow-left:hover {
  -webkit-transform: translate(-10px);
  -ms-transform: translate(-10px);
  -moz-transform: translate(-10px);
  -o-transform: translate(-10px);
  transform: translate(-10px);
  transition: all 0.2s ease-in-out;
}
#landing__page .landing_arrow-right {
  animation: hide 1.3s, zoomInLeft 1s 1.3s;
  -webkit-transform: translate(0px);
  -ms-transform: translate(0px);
  -moz-transform: translate(0px);
  -o-transform: translate(0px);
  transform: translate(0px);
  transition: all 0.2s ease-in-out;
}
#landing__page .landing_arrow-right:active, #landing__page .landing_arrow-right:focus, #landing__page .landing_arrow-right:hover {
  -webkit-transform: translate(10px);
  -ms-transform: translate(10px);
  -moz-transform: translate(10px);
  -o-transform: translate(10px);
  transform: translate(10px);
  transition: all 0.2s ease-in-out;
}

#landing__page {
  background: linear-gradient(to bottom, #f7981d 0%, #fed100 100%);
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.landing--page-wrapper {
  height: 95%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.landing--page-wrapper.vertical {
  height: 50%;
  margin: 25% 0 12%;
}
.landing-page-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: auto;
  z-index: 1;
}
.social-links-cart {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 9999;
}
.social-links-cart.sttc {
  position: static;
}
.svg-middle {
  position: relative;
  z-index: 2;
}
.social--links {
  padding-bottom: 10px;
  border-bottom: 2px solid #3A0202;
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}
.social--links .socmed-icon {
  margin-right: 10px;
}
.social--links .socmed-icon:last-child {
  margin-right: 0;
}
.cart--elem {
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}
.number-of-items {
  background-color: #fff;
  color: #3A0202;
  border-radius: 20px;
  padding: 0 15px;
  font-size: 13px;
}
.number-of-items a {
  color: inherit;
}
.cart__link:hover {
  text-decoration: none;
}
.footer-elements {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}
.copyright__txt {
  font-family: 'Catamaran', sans-serif;
  font-size: 13px;
  color: #3A0202;
  text-align: center;
}
.cart--elem .cart__icon {
  margin-right: 10px;
}
.footer__logo {
  display: none;
}
#sideNav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 328px;
  background-color: #F8A416;
  z-index: 99999;
  padding-top: 50px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#sideNav.active {
  display: block;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
#sideNav.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
#sideNav .menu-header-sidebar-container {
  margin-top: 50px;
}
#sideNavMenuList {
  padding: 0;
}
#sideNavMenuList li {
  list-style: none;
  margin-left: 0;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 60px;
}
#sideNavMenuList li:hover {
  background-color: #3A0202;
  cursor: pointer;
}
#sideNavMenuList li a {
  font-family: 'Catamaran', sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
#closeSideNav {
  padding-left: 60px;
  font-size: 18px;
  font-family: 'Catamaran', sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  font-weight: 900;
  padding-top: 7px;
  padding-bottom: 7px;
}
#closeSideNav:hover {
  background-color: #3A0202;
  cursor: pointer;
}
.x-icon {
  font-size: 20px;
}
#documentOverlay {
  display: none;
  position: absolute;
  z-index: 9;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
#documentOverlay.active {
  display: block;
}
#modal_landingPage,
#modal2_landingPage,
.modal-landing-page {
  display: none;
  background-color: #fff;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  top: 8%;
  left: 0;
  right: 0;
  z-index: 100;
  margin: 15px auto;
  width: 100%;
  max-width: 650px;
  border-radius: 30px;
  box-shadow: 0 0 200px #fe9902;
  z-index: 8;
}
#modal_landingPage.active,
#modal2_landingPage.active,
.modal-landing-page.active {
  display: block;
  opacity: 1;
  transition: opacity 0.5s;
  animation: bounceIn 0.5s;
}
.modal-content-container {
  position: relative;
  background-color: #FFF7D7;
  border-radius: 10px;
  display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
  padding: 40px 50px;
}
#modal_landingPage img,
#modal2_landingPage img,
.modal-landing-page img {
  width: 200px;
}
#modal_landingPage h2,
#modal2_landingPage h2,
.modal-landing-page h2 {
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #3A0202;
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 5px;
}
#modal_landingPage ul,
#modal2_landingPage ul,
.modal-landing-page ul{
  padding-left: 0;
}
#modal_landingPage ul li,
#modal2_landingPage ul li,
.modal-landing-page ul li {
  font-family: 'Catamaran', sans-serif;
  font-weight: 700;
  color: #3A0202;
  font-size: 18px;
  margin-top: 10px;
  line-height: 1.4;
}
#modal2__trigger {
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 60px;
  color: rgb(58, 2, 2);
  background-color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  bottom: 20px;
  text-decoration: none;
}
#modal2__trigger:hover {
  cursor: pointer;
  background-color: #3A0202;
  color: #fff;
}
#close_button,
#close_button_2 {
  color: #FE9902;
  font-size: 42px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
}
#close_button:hover,
#close_button_2:hover {
  color: #FF19E5;
  transition: color 0.2s;
}
.book__now {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  background-color: #FE9902;
  width: 100%;
  padding: 15px;
  border-radius: 4px;
  line-height: 1.2;
  text-align: center;
}
.book__now:hover {
  background-color: #FF19E5;
  transition: color 0.2s;
  text-decoration: none;
}
@media only screen and (max-width: 1079px) {
  #landing__page .landing_arrow-right_wrapper {
    right: 25%;
    top: 73%;
    width: 24%;
  }
  #landing__page .landing_arrow-left_wrapper {
    left: 25%;
    top: 73%;
    width: 24%;
  }
  #landing__page .landing_logo_wrapper {
    display: none;
  }
  .footer__logo {
    display: block;
    width: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .social-links-cart {
    top: 20px;
    right: 30px;
  }
  #modal_landingPage,
  #modal2_landingPage,
  .modal-landing-page {
    max-width: 500px;
  }
  .modal-content-container {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 575px) {
  .social-links-cart {
    top: 20px;
    right: 20px;
  }
  #modal_landingPage,
  #modal2_landingPage,
  .modal-landing-page {
    max-width: 400px;
  }
  .copyright__txt {
    width: 250px;
    margin-right: auto;
    margin-left: auto;
  }
  #sideNav,
  #documentOverlay {
    height: 800px;
  }
}
@media only screen and (max-width: 400px) {
  .landing--page-wrapper.vertical {
    margin: 50% 0 12%;
  }
}
@media only screen and (max-width: 374px) {
  #sideNav {
    width: 92%;
  }
  #modal_landingPage,
  #modal2_landingPage,
  .modal-landing-page {
    max-width: 320px;
  }
}

.thrive-shop {
  display: none !important;
}
.thrive-blog-list {
  display: none !important;
}
.tcb-pagination.thrv_wrapper {
  display: none !important;
}
.product_markers_explanation {
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
}
.product_markers_explanation p {
  font-family: 'Catamaran', sans-serif !important;
  color: #450F0C !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
.product_markers_explanation p > span {
  border-radius: 50%;
  padding: 1px 11px;
  color: #fff;
  background-color: #450F0C;
  margin-right: 10px;
}
.product_markers_explanation p.for_play {
  margin-right: 20px;
}
.product__filters {
  font-family: 'Catamaran', sans-serif;
  color: #450F0C;
  font-size: 18px;
}
#product_Filters.product__filters p,
#product_Filters.product__filters span,
#product_Filters.product__filters a,
#product_Filters.product__filters ul li {
  font-family: 'Catamaran', sans-serif;
  color: #450F0C;
  font-size: 18px;
}
#product_Filters.product__filters .category span.cat_count {
  color: #DDD3B1;
}
#product_Filters.product__filters .category.new_games > span {
  color: #FB6C05;
}
#product_Filters.product__filters .sort-by-container {
  position: relative;
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
}
#product_Filters.product__filters .sort-by-container .label {
  margin-right: 10px;
}
#product_Filters.product__filters .cstm-select {
  position: relative;
  width: 175px;
  font-weight: 700;
  margin-left: 0;
  padding-bottom: 0;
  background-color: #F9F2D9;
  margin-left: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
}
#product_Filters.product__filters .cstm-select:hover {
  cursor: pointer;
  color: #F9F2D9;
  background-color: #450F0C;
  transition: background-color 0.2s, color 0.2s;
}
#product_Filters.product__filters .cstm-select:hover .drpdwn-selected {
  color: #F9F2D9;
  transition: color 0.2s;
}
#product_Filters.product__filters .cstm-select .fa-sort-down {
  position: absolute;
  position: absolute;
  top: 3px;
  right: 10px;
}
#product_Filters.product__filters ul {
  padding-left: 0;
  list-style: none;
}
#product_Filters.product__filters .sort-by {
  display: none;
  width: 320px;
  background-color: #F9F2D9;
  border: 3px solid #fff;
  position: absolute;
  top: 55px;
  left: 50px;
  z-index: 9;
  border-radius: 12px;
  padding: 40px 0 40px 50px;
}
#product_Filters.product__filters .sort-by.active {
  display: block;
}
#product_Filters.product__filters .sort-by li {
  margin-left: 0;
}
#product_Filters.product__filters .sort-by > li {
  padding-right: 50px;
}
#product_Filters.product__filters .sort-by li > p, 
#product_Filters.product__filters .sort-by li > ul > li > span 
{
  font-weight: 700;
  padding-bottom: 0;
}
#product_Filters.product__filters .sort-by li:hover > p,
#product_Filters.product__filters .sort-by li > ul > li > span:hover {
  cursor: pointer;
  text-decoration: underline;
  font-weight: 900;
  transition: text-decoration 0.2s, font-weight 0.2s;
}
.product__filters-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 5px;
}
.show_no_of_products {
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	align-content: stretch;
}
#product_Filters.product__filters .label {
  font-weight: 700;
}
#product_Filters.product__filters .show_no_of_products .label {
  margin-right: 10px;
}
#product_Filters.product__filters .show_no_of_products ul.show,
#product_Filters.product__filters .show_no_of_products ul.change-layout
{
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
  padding: 0;
}
#product_Filters.product__filters .show_no_of_products ul.show {
  margin-right: 50px;
}
#product_Filters.product__filters .show_no_of_products ul.show li,
#product_Filters.product__filters .show_no_of_products ul.change-layout li {
  font-weight: 900;
  margin-left: 0;
  padding-bottom: 0;
  background-color: #F9F2D9;
  margin-left: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
}
#product_Filters.product__filters .show_no_of_products ul.change-layout li {
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
  padding: 7px  10px;
}
#product_Filters.product__filters .show_no_of_products ul.show li:hover,
#product_Filters.product__filters .show_no_of_products ul.change-layout li:hover
{
  cursor: pointer;
  color: #F9F2D9;
  background-color: #450F0C;
  transition: background-color 0.2s, color 0.2s;
}
#product_Filters.product__filters .label.filter-games_label,
#product_Filters.product__filters .label.categories_label {
  color: #000000;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}
#product_Filters.product__filters .filter-games-li,
#product_Filters.product__filters .categories-li {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #DDD3B1;
}
#product_Filters.product__filters .filter-games-li {
  margin-top: 25px;
}
#product_Filters.product__filters .filter-games-li input[type=checkbox],
#product_Filters.product__filters .categories-li input[type=checkbox] {
  background: #FBCB05;
  margin-right: 5px;
  border: 2px solid #FBCB05;
}
#product_Filters.product__filters .category.new_games > span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f005";
  display: inline-block;
  padding-right: 3px;
  font-weight: 900;
}
.product__display .woocommerce-result-count,
.product__display .woocommerce-ordering {
  display: none;
}
.tve-theme-45 .content-section .product__display .shop-template-wrapper,
.tve-theme-50 .content-section .product__display .shop-template-wrapper,
.product__display .shop-template-wrapper {
  padding-top: 10px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.product__display .shop-template-wrapper ul.products {
  padding-left: 0;
}
/*.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product,
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product,*/ .woocommerce ul.products li.product {
  height: auto;
  padding: 25px 20px !important;
}
:not(#tve) .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product,
:not(#tve) .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product {
  border: 5px solid transparent !important;
}
:not(#tve) .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product:hover,
:not(#tve) .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product:hover {
  border: 5px solid #450F0C !important;
  overflow: visible !important;
  transition: border 0.2s;
}
.product__display .shop-template-wrapper ul.products li.product > .woocommerce-LoopProduct-link > img {
  height: auto;
  object-fit: contain;
  margin-top: 10px;
  margin-bottom: 0px;
  border: 0;
}
.product__display .shop-template-wrapper ul.products li.product > .woocommerce-LoopProduct-link .secondary-image {
	height: 300px;
	margin-top: 15px;
}
.product__display .shop-template-wrapper ul.products li.product .woocommerce-loop-product__title {
	margin-top: 40px;
}

.product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-LoopProduct-link > img {
  width: 35%;
  padding-right: 20px;
}
.product__display .shop-template-wrapper ul.products li.product .woocommerce-loop-product__title {
  text-align: center;
  font-family: 'Catamaran', sans-serif;
  font-weight: 700 !important;
  font-size: 24px !important;
  margin-bottom: 10px;
}
.product__display .shop-template-wrapper ul.products.list_layout li.product .woocommerce-loop-product__title {
  text-align: left;
}
.product__display .shop-template-wrapper ul.products li.product .price {
  text-align: center;
  color: #FE9902;
  font-size: 18px !important;
}
.product__display .shop-template-wrapper ul.products.list_layout li.product .price {
  text-align: left;
}
.product__display .shop-template-wrapper ul.products.list_layout li.product {
  width: 100% !important;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  margin-left: 0 !important;
}
.product__display .shop-template-wrapper ul.products li.product > .woocommerce-LoopProduct-link  {
  display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center !important;
	align-content: stretch;
  margin-bottom: 10px;
}
.product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-LoopProduct-link  {
  width: 75% !important;
  flex-direction: row;
  align-items: center !important;
  justify-content: flex-start !important;
}
.product__display .shop-template-wrapper ul.products li.product .woosq-btn,
/*.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product .button,
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product .button,*/ .woocommerce ul.products li.product .button {
  position: static;
  font-family: 'Catamaran', sans-serif;
  font-weight: normal;
  font-size: 16px !important;
}
.product__display .shop-template-wrapper ul.products li.product .woosq-btn {
  background-color: #FFFFFF;
  border: 2px solid #886762 !important;
  color: #A57A4C;
  border: 0;
  margin-right: 15px;
}
.product__display .shop-template-wrapper ul.products.list_layout li.product .woosq-btn {
  margin-right: 0;
  margin-bottom: 10px;
  padding-left: 70px;
  padding-right: 70px;
}
/*.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product .button,
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product .button,*/ .woocommerce a.button.add_to_cart_button, .woocommerce ul.products li.product .button {
  background-color: #FE9902 !important;
  border: 2px solid #FE9902 !important;
  padding: 10px 20px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 20px;
  border: 0;
  color: #fff;
}
.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .button,
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .button {
  padding-left: 70px !important;
  padding-right: 70px !important;
}
/*.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product .product_btns_container,
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product .product_btns_container,*/ .product_btns_container {
  width: 100%;
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}
@media (max-width:767px) {
	.product_btns_container {
		flex-wrap: wrap;
	}
	.product__display .shop-template-wrapper ul.products li.product .woosq-btn {
		margin: 0 0 10px 0;
	}
	.woocommerce ul.products li.product {
		height: auto;
	}
}
/*.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product > .product_btns_container,
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product > .product_btns_container,*/ .product_btns_container {
  margin-top: 20px;
  margin-bottom: 25px;
}
.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container,
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container {
  width: 25% !important;
  flex-direction: column;
}
.woocommerce-pagination {
  margin-top: 20px;
}
.thrv_wrapper nav.woocommerce-pagination ul.page-numbers li .next {
  padding: .5em;
}
.woocommerce-pagination ul.page-numbers li .page-numbers {
  background-color: transparent !important;
  border: 2px solid #450F0C;
  border-radius: 50% !important;
  color: #450F0C !important;
  margin-right: 10px;
  font-size: 24px;
}
.woocommerce-pagination ul.page-numbers li .page-numbers:hover,
.woocommerce-pagination ul.page-numbers li .page-numbers.current {
  background-color: #fff !important;
  transition: background-color 0.2s;
}
.container.product_markers_explanation_container {
  margin-bottom: 5px;
}
.tcb-flex-col[data-css="tve-u-177254d481b"] {
  position: relative;
}
.tcb-flex-col[data-css="tve-u-177254d484a"] > .tcb-col > .tcb-clear {
  display: none;
}
.icon.for_play,
.icon.for_purchase {
  position: absolute;
  top: 3px;
  left: 10px;
  width: 50px !important;
  height: 28px !important;
}
.prod-icons-container {
  position: absolute;
  top: 15px;
  left: 10px;
  display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: baseline;
	align-content: stretch;
	z-index: 999;
}
.icons.for_play,
.icons.for_purchase {
  width: 28px !important;
  height: 28px !important;
}
.woocommerce .product__display ul.products li.product .onsale {
  right: 10px;
  top: 5px;
  left: auto;
}
.product__display .shop-template-wrapper ul.products li.product.sale > .woocommerce-LoopProduct-link {
  flex-direction: column-reverse;
}
.product__display .shop-template-wrapper ul.products.list_layout li.product.sale > .woocommerce-LoopProduct-link {
  flex-direction: row-reverse;
}
.product__display .shop-template-wrapper ul.products li.product.sale > .price,
.product__display .shop-template-wrapper ul.products li.product > .price {
  display: none;
}
.single-product .related.products .product_btns_container {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: stretch;
}
.single-product .related.products .product_btns_container .woosq-btn,
.single-product .related.products .product_btns_container .button {
  position: static;
  font-family: 'Catamaran', sans-serif;
  font-weight: normal;
  font-size: 16px !important;
  padding: 10px !important;
}
.single-product .related.products .product_btns_container .woosq-btn {
  background-color: #FFFFFF;
  border: 2px solid #886762 !important;
  color: #A57A4C;
  border: 0;
  margin-right: 15px;
}
.single-product .related.products .product_btns_container .button {
  background-color: #FE9902 !important;
  border: 2px solid #FE9902 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 20px;
  border: 0;
  color: #fff;
}
.woocommerce ul.products.list_layout li.product .product_img_link strong {
  text-align: left !important;
}
ul.products.list_layout li.product .rating_sold_holder .woocommerce-review-link {
  width: auto !important;
  margin-right: 20px;
}
ul.products.list_layout li.product .rating_sold_holder .total_no_sold {
  float: none !important;
  width: auto !important;
  text-align: left !important;
}
.single-product .related.products ul.products li.product .woocommerce-LoopProduct-link > img {
  width: 250px;
  height: 250px;
  object-fit: contain;
}
.woocommerce ul.products li.product.sale a.woocommerce-loop-product__link {
  flex-direction: column-reverse;
}
.single-product.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Catamaran', sans-serif;
  font-weight: 700 !important;
  font-size: 24px !important;
  margin-bottom: 10px;
  text-align: center;
}
.single-product.woocommerce ul.products li.product .onsale {
  top: 0;
}
.list_layout .product_description {
  display: block !important;
}
.product_description p {
  font-size: 16px !important;
}
.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container, 
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container { 
  display: none;
}
.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container, 
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container { 
  display: none;
  width: auto !important;
  flex-direction: column;
  align-items: flex-start;
}
.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container, 
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container { 
  display: none;
  width: auto !important;
  flex-direction: column;
  align-items: flex-start;
}
.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container > .product_btns_container, 
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container > .product_btns_container {
  display: none;
}
.tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link, 
.tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link {
  width: 65%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.woocommerce .product_btns_container .added_to_cart.wc-forward {
  text-align: left !important;
  color: #FE9902;
  width: auto;
}
.woocommerce ul.products .product_btns_container .added_to_cart.wc-forward {
  position: absolute;
  bottom: 5px;
}
.woocommerce ul.products.list_layout .product_btns_container .added_to_cart.wc-forward {
  position: static;
}
.single-product.woocommerce .related.products {
  padding-top: 20px;
  border-top: 2px solid #450F0C;
}
.single-product.woocommerce .related.products > h2 {
  font-weight: 700;
  padding-bottom: 0;
}
.single-product.woocommerce .related.products > .products > li.product {
  height: auto;
  padding: 20px;
  border: 1px solid rgba(127,127,127,.16);
  -webkit-box-shadow: 0 1px 4px rgb(127 127 127 / 11%);
  box-shadow: 0 1px 4px rgb(127 127 127 / 11%);
  border-radius: 12px;
}
.single-product.woocommerce ul.products li.product a.woocommerce-loop-product__link .product_img_link {
  width: 100%;
}
.page-id-8 .woocommerce-form-login > p:first-child {
  background-color: transparent !important;
  padding-left: 3px !important;
  margin-left: 0 !important;
}
.page-id-8 .woocommerce-form-login > p label[for="username"] {
  font-family: 'Catamaran', sans-serif;
  color: #3B3B3B !important;
  font-size: 18px;
}
.page-id-8 .woocommerce-form-login .password-input .show-password-input {
  top: 7px;
}
.page-id-8 .woocommerce-form-login .password-input .show-password-input::after {
  margin: 0;
}
.page-id-8 .woocommerce-form-login .woocommerce-Input,
.page-id-8 .woocommerce-form-login .password-input.woocommerce-Input.woocommerce-Input--text {
  width: 100% !important
}
.product__display > .product__display {
  padding: 0;
}
/* Game Cards */

.woocommerce-review-link {
/*
  font-size: 13px !important;
  font-weight: 700 !important;   
  color: #450F0C;
	width:50% !important; 
	float: left !important;  
	text-align:left !important;
*/
	display: none;
}    
 
.total_no_sold {
  font-size: 13px !important;
  font-weight: 700 !important;
  padding-bottom: 0 !important;   
	float: right !important; 
	width:100% !important;
	text-align: right !important ;
}
.no_sold {
  color: #FE9902;
}
.rating_sold_holder{
	width:100% !important; 
} 
ul.products.list_layout li.product .rating_sold_holder {
  width: auto !important;
}

.post-wrapper{
	background-color:white !important;
	border-radius: 10px;
}

ul>li span.woocommerce-Price-amount, ol>li span bdi{
    line-height: inherit;
  //  display: none !important;
}
.product_btns_container{
	font-size: 16px !important;
}

/* End of Game Cards */

/* Media Queries */


/*
@media only screen and (max-width: 1600px) {
 .woocommerce-review-link { 
		display: block;
	} 
}
*/
@media only screen and (max-width: 1199px) {
	.product__display .shop-template-wrapper ul.products li.product .woocommerce-loop-product__title { 
		font-size: 18px !important; 
	}
	.product_btns_container button, .product_btns_container a  {  
		width:100%;
		text-align:center !important;
	}
  .single-product .related.products .product_btns_container .woosq-btn,
  .single-product .related.products .product_btns_container .button {
    width: auto;
  }
}


@media only screen and (min-width: 1200px) {
  #product_Filters.product__filters .show_no_of_products .show__container,
  #product_Filters.product__filters .show_no_of_products .view-as__container
  {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
  }
}
@media only screen and (min-width: 768px) {
  .mindLogo {
    position: absolute;
    width: 250px;
    left: -11px;
    top: 20px;
    z-index: 18;
  }
  .mindLogo {
    width: 175px !important;
    position: relative;
    top: 30px;
    background-color: #fff;
    border-bottom-left-radius: 90px;
    border-bottom-right-radius: 90px;
    padding-bottom: 40px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1299px) {
  .tcb-flex-col[data-css="tve-u-177254d481b"] > .tcb-col:first-child {
    left: 35px;
  }
  .thrv_symbol_497 .tcb-logo[data-css="tve-u-17729d2003e"] {
    top: 20px;
    width: 150px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1149px) {
  .thrv_symbol_497 .tcb-logo[data-css="tve-u-17729d2003e"] {
    top: 10px;
    width: 125px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tcb-flex-col[data-css="tve-u-177254d481b"] > .tcb-col:first-child {
    top: 0;
    left: 20px;
  }
  .thrv_symbol_497 .tcb-logo[data-css="tve-u-17729d2003e"] {
    top: 20px;
    width: 150px !important;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 769px) {
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products:not(.list_layout) li.product .product_btns_container,
  .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products:not(.list_layout) li.product .product_btns_container {
    flex-direction: column;
  }
  .product__display .shop-template-wrapper ul.products:not(.list_layout) li.product .woosq-btn {
    margin-right: 0;
    margin-bottom: 13px;
  }
}
@media only screen and (max-width: 1599px) {
  .product__display .shop-template-wrapper ul.products li.product .woosq-btn {
    padding: 10px;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product .button,
  .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product .button {
    padding: 10px !important;
  }
}
@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .product__display .shop-template-wrapper ul.products.list_layout li.product .woosq-btn {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .button {
    width: auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media only screen and (max-width: 1162px) {
  .single-product .related.products .product_btns_container {
    flex-direction: column;
    align-items: center;
  }
  .single-product .related.products .product_btns_container .woosq-btn {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .single-product .related.products .product_btns_container .woosq-btn, .single-product .related.products .product_btns_container .button {
    padding: 10px 40px !important;
  }
}
@media only screen and (max-width: 1199px) {
  #product_Filters.product__filters .sort-by-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #product_Filters.product__filters .cstm-select {
    margin-left: 0;
  }
  #product_Filters.product__filters .sort-by {
    top: 85px;
    left: 0px;
  }
  .product_markers_explanation {
    flex-direction: column;
    align-items: flex-start;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .button, .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .button {
    padding-left: 30px !important;
    padding-right: 30px !important;
    width: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .single-product .related.products .product_btns_container {
    flex-direction: column;
  }
  .single-product .related.products .product_btns_container .woosq-btn {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  #product_Filters > .container.product__filters-container {
    padding-right: 0;
    padding-left: 0;
  }
  #product_Filters.product__filters .sort-by {
    width: 300px;
    padding: 40px 0 40px 30px;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product {
    flex-direction: column;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-LoopProduct-link {
    width: auto;
    align-items: center !important;
    justify-content: flex-start !important;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container,
  .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container {
    width: 60% !important;
    flex-direction: row;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product .woosq-btn {
    width: auto;
    margin-right: 15px;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .button,
  .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .button {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .product__display .shop-template-wrapper ul.products li.product .price {
    text-align: center;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-LoopProduct-link {
    width: auto !important;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-LoopProduct-link > img {
    margin-right: 0;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link, 
  .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 30px;
  }
  /* .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .product_btns_container, 
  .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .product_btns_container {
    display: none;
  } */
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container, 
  .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 899px) {
  .page-id-6 #theme-content-section > .section-content table.shop_table {
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  .single-product .related.products .product_btns_container {
    flex-direction: row;
  }
  .single-product .related.products .product_btns_container .woosq-btn {
    margin-right: 15px;
    margin-bottom: 0;
  }
  .single-product .related.products .product_btns_container .woosq-btn, .single-product .related.products .product_btns_container .button {
    padding: 10px !important;
  }
  .page-id-6 #theme-content-section > .section-content table.shop_table #coupon_code {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 768px) {
  .container.product__display {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .thrv-columns[data-css="tve-u-177254c8c68"]:nth-child(4) {
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-right: 10px;
    border: 2px solid #450F0C;
    border-right: 0;
    background-color: #fff;
  }
  .tve_wp_shortcode[data-css="tve-u-17c0d1c2822"] {
    margin: 0;
  }
  .tcb-flex-col[data-css="tve-u-17c0d1c5b53"] {
    display: none;
  }
  .tcb-flex-col[data-css="tve-u-17c0d163965"] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: stretch;
  }
  .tcb-flex-col[data-css="tve-u-17c0d163965"] .social-links-cart {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-content: stretch;
  }
  .tcb-flex-col[data-css="tve-u-17c0d163965"] .social-links-cart .social--links {
    padding-bottom: 0;
    border-bottom: 0;
    border-right: 2px solid #450F0C;
    padding-right: 15px;
    margin-right: 15px;
  }
  .tcb-flex-col[data-css="tve-u-17c0d163965"] .social-links-cart .cart--elem {
    padding-top: 0;
  }
  .tcb-flex-col[data-css="tve-u-17c0d163965"] .social-links-cart .cart--elem.number-of-items {
      font-weight: 700;
  }
  .product__display .shop-template-wrapper ul.products li.product .woosq-btn,
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product .button,
  .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product .button {
    font-size: 14px !important;
    padding: 10px 15px !important;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container, .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container {
    width: 80% !important;
  }
  .tcb-clear[data-css="tve-u-17729d265cd"] {
    padding-right: 20px;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-LoopProduct-link > img {
    width: 120px;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products li.product,
  .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products li.product {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container, .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container {
    flex-direction: column;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-LoopProduct-link {
    align-items: flex-start !important;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product .woosq-btn {
    margin-right: 0;
    margin-bottom: 15px;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media only screen and (max-width: 650px) {
  .single-product.woocommerce .related.products > .products > li.product {
    width: 100% !important;
  }
  .single-product.woocommerce .related.products > .products > li.product > .woocommerce-LoopProduct-link  {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center !important;
    align-content: stretch;
  }
}
@media only screen and (max-width: 600px) {
  .container.product__display {
    padding-left: 0;
  }
}
@media only screen and (max-width: 589px) {
  .container.product_markers_explanation_container {
    padding: 0;
  }
}
@media only screen and (max-width: 575px) {
  .container.product__display {
    padding-left: 0;
  }
  .row.product__filters-container {
    flex-direction: column;
  }
  /* .row.product__filters-container div[class="col*"] {
    width: auto;
  } */
  .show_no_of_products {
    padding-top: 20px;
    justify-content: flex-start;
  }
  #product_Filters.product__filters .sort-by {
    top: 70px;
    left: 0;
    width: 250px;
  }
  #product_Filters.product__filters .product__filters-container {
    padding-bottom: 10px;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: stretch;
    margin-left: 0 !important;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container, .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container {
    width: 100% !important;
  }
  ul.products.list_layout li.product .rating_sold_holder {
    width: 100% !important;
  }
  .single-product .related.products ul.products li.product {
    width: 100% !important;
  }
  .single-product .related.products ul.products li.product .product_btns_container .woosq-btn,
  .single-product .related.products ul.products li.product .product_btns_container .button {
    width: auto;
  }
  .single-product.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    align-items: center !important;
  }
  .single-product .related.products .product_btns_container {
    justify-content: center;
  }
  .single-product.woocommerce .woocommerce-Tabs-panel iframe {
    width: auto;
  }
  .single-product.woocommerce ul.products li.product .woocommerce-loop-product__title {
    text-align: center;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-LoopProduct-link > img {
    width: 75px;
    height: auto;
    object-fit: none;
  }
  .list_layout .product_description {
    display: none !important;
  }
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container, .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-loop-product__link > .product_img_link > .product_btns_container {
    flex-direction: column;
    width: 100%;
  }
  .page-id-6 #theme-content-section > .section-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media only screen and (max-width: 374px) {
  #product_Filters.product__filters .show_no_of_products ul.show {
    margin-right: 20px;
  }
}

/* special css */
.product_btns_container > .woocommerce-loop-product__link {
  display: none !important;
}

@media only screen and (max-width: 991px) {
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container, .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container {
    width: 100% !important;
    margin-top: 10px;
    margin-bottom: 0;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product .woosq-btn {
    margin-bottom: 0;
    margin-right: 15px;
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product > .woocommerce-LoopProduct-link > img {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 452px) {
  .tve-theme-45 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container, .tve-theme-50 .content-section .product__display .shop-template-wrapper ul.products.list_layout li.product .product_btns_container {
    flex-direction: column
  }
  .product__display .shop-template-wrapper ul.products.list_layout li.product .woosq-btn {
    margin-bottom: 15px;
    margin-right: 0;
  }
}


/* Feb 2023 */
.woocommerce ul.products li.product .price {
	display: none;
}
/*
@media (min-width: 1000px) {
	.woocommerce ul.products li.product {
	height: 580px;
}
}
*/
