/* IMAGES PATH
################################################## */
/* DIMENSIONS
################################################## */
/* FONTS
################################################## */
/* COLORS
################################################## */
/* main */
/* platforms */
/* SHADOW
################################################## */
/* MORE
################################################## */
/* TRANSITIONS
################################################## */
/* NON-SELECTABLE
################################################## */
/* OPACITY
################################################## */
/* GRADIENT
################################################## */
/* GRAYSCALE IMAGES
################################################## */
/* BORDER RADIUS
################################################## */
/* ANIMATE LESS
https://github.com/machito/animate.less
http://daneden.github.io/animate.css/
################################################## */
body {
  -webkit-backface-visibility: hidden;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
/* BUTTONS: PAYPAL
################################################## */
.btn-paypal {
  color: #fff;
  background-color: #ffc439;
  border-color: #ffc439;
}
.btn-paypal:hover,
.btn-paypal:active,
.btn-paypal.active {
  color: #fff;
  background-color: #ffb810;
  border-color: #ffb810;
}
.btn-paypal:focus,
.btn-paypal.focus,
.btn-paypal:active,
.btn-paypal.active {
  box-shadow: 0 0 0 0.2rem rgba(255, 184, 16, 0.5);
}
/* BUTTONS: FACEBOOK
################################################## */
.btn-facebook {
  color: #fff;
  background-color: #4267b2;
  border-color: #4267b2;
}
.btn-facebook:hover,
.btn-facebook:active,
.btn-facebook.active {
  color: #fff;
  background-color: #375694;
  border-color: #375694;
}
.btn-facebook:focus,
.btn-facebook.focus,
.btn-facebook:active,
.btn-facebook.active {
  box-shadow: 0 0 0 0.2rem rgba(55, 86, 148, 0.5);
}
/* BUTTONS: TWITTER
################################################## */
.btn-twitter {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}
.btn-twitter:hover,
.btn-twitter:active,
.btn-twitter.active {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}
.btn-twitter:focus,
.btn-twitter.focus,
.btn-twitter:active,
.btn-twitter.active {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
/* BUTTONS: YOUTUBE
################################################## */
.btn-youtube {
  color: #fff;
  background-color: #ff0000;
  border-color: #ff0000;
}
.btn-youtube:hover,
.btn-youtube:active,
.btn-youtube.active {
  color: #fff;
  background-color: #d60000;
  border-color: #d60000;
}
.btn-youtube:focus,
.btn-youtube.focus,
.btn-youtube:active,
.btn-youtube.active {
  box-shadow: 0 0 0 0.2rem rgba(214, 0, 0, 0.5);
}
/* BUTTONS: PINTEREST
################################################## */
.btn-pinterest {
  color: #fff;
  background-color: #c8232c;
  border-color: #c8232c;
}
.btn-pinterest:hover,
.btn-pinterest:active,
.btn-pinterest.active {
  color: #fff;
  background-color: #a51d24;
  border-color: #a51d24;
}
.btn-pinterest:focus,
.btn-pinterest.focus,
.btn-pinterest:active,
.btn-pinterest.active {
  box-shadow: 0 0 0 0.2rem rgba(165, 29, 36, 0.5);
}
/* BUTTONS: WHATSAPP
################################################## */
.btn-whatsapp {
  color: #fff;
  background-color: #25d366;
  border-color: #25d366;
}
.btn-whatsapp:hover,
.btn-whatsapp:active,
.btn-whatsapp.active {
  color: #fff;
  background-color: #1da851;
  border-color: #1da851;
}
.btn-whatsapp:focus,
.btn-whatsapp.focus,
.btn-whatsapp:active,
.btn-whatsapp.active {
  box-shadow: 0 0 0 0.2rem rgba(32, 185, 89, 0.5);
}
/* BUTTONS: INSTAGRAM
################################################## */
.btn-instagram {
  color: #fff;
  background-color: #fb3958;
  border-color: #fb3958;
}
.btn-instagram:hover,
.btn-instagram:active,
.btn-instagram.active {
  color: #fff;
  background-color: #fa072e;
  border-color: #fa072e;
}
.btn-instagram:focus,
.btn-instagram.focus,
.btn-instagram:active,
.btn-instagram.active {
  box-shadow: 0 0 0 0.2rem rgba(250, 27, 63, 0.5);
}
/* BUTTONS: LINKEDIN
################################################## */
.btn-linkedin {
  color: #fff;
  background-color: #0e76a8;
  border-color: #0e76a8;
}
.btn-linkedin:hover,
.btn-linkedinlinkedin:active,
.btn-linkedin.active {
  color: #fff;
  background-color: #0a5579;
  border-color: #0a5579;
}
.btn-linkedin:focus,
.btn-linkedin.focus,
.btn-linkedin:active,
.btn-linkedin.active {
  box-shadow: 0 0 0 0.2rem rgba(12, 27, 140, 0.5);
}
/* BUTTONS: TELEGRAM
################################################## */
.btn-telegram {
  color: #fff;
  background-color: #229ED9;
  border-color: #229ED9;
}
.btn-telegram:hover,
.btn-telegramtelegram:active,
.btn-linkedin.active {
  color: #fff;
  background-color: #1b7ead;
  border-color: #1b7ead;
}
.btn-telegram:focus,
.btn-telegram.focus,
.btn-telegram:active,
.btn-telegram.active {
  box-shadow: 0 0 0 0.2rem rgba(30, 139, 191, 0.5);
}
/* BUTTONS: TIKTOK
################################################## */
.btn-tiktok {
  color: #fff;
  text-shadow: 0px 1px 1px rgba(255, 0, 80, 0.5);
  background-color: #000000;
  border-color: #000000;
}
.btn-tiktok:hover,
.btn-tiktoktiktok:active,
.btn-tiktok.active {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}
.btn-tiktok:focus,
.btn-tiktok.focus,
.btn-tiktok:active,
.btn-tiktok.active {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.paypal {
  background-image: url("../img/cc/paypal.png");
}
.amex {
  background-image: url("../img/cc/amex.png");
}
.discover {
  background-image: url("../img/cc/discover.png");
}
.mastercard {
  background-image: url("../img/cc/mastercard.png");
}
.visa {
  background-image: url("../img/cc/visa.png");
}
.diners {
  background-image: url("../img/cc/diners.png");
}
/* PLUGINS
################################################## */
/* ALERTABLE
################################################## */
.alertable {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background: white;
  border-radius: 0.25rem;
  padding: 30px;
  margin: 0 auto;
}
.alertable-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.alertable-message,
.alertable-prompt {
  margin-bottom: 20px;
}
.alertable-message {
  font-size: 0.9em;
}
.alertable-message.question {
  font-weight: 700;
}
.alertable-message span {
  padding: 0 3px;
  font-weight: 700;
  color: #7f002a;
  background-color: #ffe5ee;
  border-radius: 2px;
}
.alertable-message ul {
  margin-top: 5px;
  padding-left: 20px;
  list-style-type: square;
}
.alertable-buttons {
  display: flex;
}
.alertable-buttons .btn {
  flex: 1;
}
.slider {
  display: block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 100%;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
}
.slider.slider-horizontal.slider-rtl .slider-track {
  left: initial;
  right: 0;
}
.slider.slider-horizontal.slider-rtl .slider-handle {
  margin-left: initial;
  margin-right: -10px;
}
.slider.slider-disabled .slider-handle {
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
  background-repeat: repeat-x;
}
.slider.slider-disabled .slider-track {
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  background-repeat: repeat-x;
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background-color: #fff;
  border-top: 1px solid #ebebeb;
  border-radius: 4px;
}
.slider-selection {
  position: absolute;
  background: #dfdfdf;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #b8b8b8;
  border: 1px solid #acacac;
}
.slider-handle:hover {
  cursor: pointer;
}
.slider-handle.round {
  border-radius: 50%;
}
/* AUTOCOMPLETE
################################################## */
.autocomplete-suggestions {
  overflow: auto;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 0.25rem;
}
.autocomplete-suggestion {
  padding: 15px;
  white-space: nowrap;
  overflow: hidden;
  color: #5f5f5f;
}
.autocomplete-suggestion strong {
  font-weight: 700;
}
.autocomplete-selected {
  background: #f8f8f8;
  cursor: pointer;
}
/* COMMON
################################################## */
/* ANIMATION
################################################## */
.alert {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
/* HTML / BODY
################################################## */
html {
  scroll-behavior: smooth;
}
body {
  cursor: default;
  color: #464646;
}
a {
  outline: none;
}
/* FONT STYLES
################################################## */
body {
  font-family: "Open Sans", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu", sans-serif;
}
.btn {
  font-family: "Ubuntu", sans-serif;
}
h1 {
  font-size: 2.1em;
}
h2 {
  font-size: 1.9em;
}
/* ICONS
################################################## */
.fa-solid::before,
.fa-regular::before,
.fa-brands::before {
  text-decoration: none;
  width: 1.5em;
  text-align: center;
  text-transform: none;
  line-height: 1em;
  margin: 0 5px;
}
.icon-sm {
  font-size: 0.875em;
}
.icon-lg {
  font-size: 1.33em;
}
.icon-flip-horizontal {
  display: inline-block;
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.icon-spin {
  display: inline-block;
  animation: spin 2s linear infinite;
}
@keyframes beat {
  to {
    transform: scale(1.2);
  }
}
.icon-beat {
  display: inline-block;
  animation: beat 0.4s infinite alternate;
}
/* FORMS
################################################## */
.required::after {
  content: "*";
  color: #ec1f49;
}
.form-control-lg.loading {
  background: url("../img/loading.gif") no-repeat right 7px center;
  background-size: 32px 32px;
}
.form-control-lg.yes {
  background-image: url("../img/loading.yes.png");
}
.form-control-lg.no {
  background-image: url("../img/loading.no.png");
}
input[type="number"] {
  text-align: right;
}
.invalid-feedback a {
  text-decoration: underline;
  color: #ec1f49;
}
/* BOOTSTRAP: GRID
################################################## */
.modal-header h5.modal-title {
  font-weight: 700;
}
.modal-header button {
  outline: 0;
}
/* BOOTSTRAP: TABS
################################################## */
div.nav-tabs a {
  font-weight: 700;
}
/* BOOTSTRAP: LABELS
################################################## */
label {
  font-weight: 700;
  font-size: 0.9em;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
}
.custom-checkbox label {
  font-weight: 400;
  font-size: 0.95em;
}
.custom-radio label {
  font-weight: 400;
  font-size: 0.95em;
}
/* PLACEHOLDERS
################################################## */
::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 0.9em;
  color: #c5c5c5 !important;
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 0.9em;
  color: #c5c5c5 !important;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-size: 0.9em;
  color: #c5c5c5 !important;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  font-size: 0.9em;
  color: #c5c5c5 !important;
}
/* ALERTS
################################################## */
.alert {
  margin-bottom: 15px;
  padding: 15px;
  font-size: 0.9em;
}
.alert button:focus {
  outline: none;
}
.alert h4.alert-heading {
  font-size: 1.3em;
  font-weight: 700;
}
.alert p {
  margin-bottom: 15px;
}
.alert p.extra {
  margin-bottom: 0;
  line-height: 15px;
  font-size: 0.8em;
}
/* STEPS
################################################## */
.steps {
  position: relative;
  overflow: hidden;
  *zoom: 1;
  border-radius: 0.25rem;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.steps::before,
.steps::after {
  display: table;
  line-height: 0;
  content: "";
}
.steps::after {
  clear: both;
}
.steps ul {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none outside none;
}
.steps ul li {
  width: 25%;
  position: relative;
  float: left;
  height: 46px;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 14px;
  line-height: 46px;
  background: #f8f8f8;
}
.steps ul li:first-child {
  -webkit-border-radius: 0;
  -webkit-border-top-left-radius: 0.25rem;
  -webkit-border-bottom-left-radius: 0.25rem;
  -moz-border-radius: 0;
  -moz-border-radius-topleft: 0.25rem;
  -moz-border-radius-bottomleft: 0.25rem;
  border-radius: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.steps ul li:last-child {
  -webkit-border-radius: 0;
  -webkit-border-top-right-radius: 0.25rem;
  -webkit-border-bottom-right-radius: 0.25rem;
  -moz-border-radius: 0;
  -moz-border-radius-topright: 0.25rem;
  -moz-border-radius-bottomright: 0.25rem;
  border-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.steps ul li .chevron {
  position: absolute;
  top: 0;
  right: -14px;
  z-index: 10;
  display: block;
  border: 24px solid transparent;
  border-right: 0;
  border-left: 14px solid #d2d2d2;
}
.steps ul li .chevron::before {
  position: absolute;
  top: -24px;
  right: 1px;
  display: block;
  border: 24px solid transparent;
  border-right: 0;
  border-left: 14px solid #f8f8f8;
  content: "";
}
.steps ul li:last-child .chevron {
  display: none;
}
.steps ul li a {
  display: block;
  cursor: default;
}
.steps ul li.complete {
  color: #acacac;
  background-color: #797979;
}
.steps ul li.complete .chevron {
  border-left-color: #5f5f5f;
}
.steps ul li.complete .chevron::before {
  border-left-color: #797979;
}
.steps ul li.active {
  background: #464646;
}
.steps ul li.active .chevron {
  border-left-color: #464646;
}
.steps ul li.active .chevron::before {
  border-left-color: #464646;
}
.steps ul li .title {
  color: #929292;
}
.steps ul li.active .title,
.steps ul li.complete .title {
  color: #fff;
}
.steps ul li .badge {
  margin-right: 8px;
  font-weight: 700;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 4px 0;
  font-size: 12px;
  line-height: 1.45em;
  border-radius: 15px;
  color: #797979;
  background-color: #dfdfdf;
}
.steps ul li.complete .badge {
  color: #525252;
  background-color: #d2d2d2;
}
.steps ul li.active .badge {
  color: #464646;
  background-color: #fff;
}
@media (max-width: 767px) {
  .steps ul li .title {
    display: none;
  }
  .steps ul li .badge {
    margin-left: 16px;
    margin-right: 0;
  }
  .steps ul li:first-child .badge {
    margin-left: 8px;
  }
}
/* STATUSES
################################################## */
.badge.badge-quote-pending {
  color: #fff;
  background-color: #9c27b0;
}
.badge.badge-quote-assigned {
  color: #fff;
  background-color: orange;
}
.badge.badge-quote-sold {
  color: #fff;
  background-color: #4caf50;
}
.badge.badge-quote-sent {
  color: #fff;
  background-color: #03a9f4;
}
.badge.badge-quote-no-answer {
  color: #fff;
  background-color: #9e9e9e;
}
.badge.badge-quote-canceled {
  color: #fff;
  background-color: #f44336;
}
.badge.badge-whatsapp_order-pending {
  color: #fff;
  background-color: #9c27b0;
}
.badge.badge-whatsapp_order-assigned {
  color: #fff;
  background-color: orange;
}
.badge.badge-whatsapp_order-sold {
  color: #fff;
  background-color: #4caf50;
}
.badge.badge-whatsapp_order-sent {
  color: #fff;
  background-color: #03a9f4;
}
.badge.badge-whatsapp_order-no-answer {
  color: #fff;
  background-color: #9e9e9e;
}
.badge.badge-whatsapp_order-canceled {
  color: #fff;
  background-color: #f44336;
}
.badge.badge-new {
  color: #fff;
  background-color: #9c27b0;
}
.badge.badge-warehouse {
  color: #fff;
  background-color: #ffc107;
}
.badge.badge-transit {
  color: #fff;
  background-color: #ff5722;
}
.badge.badge-sent {
  color: #fff;
  background-color: #03a9f4;
}
.badge.badge-delivered {
  color: #fff;
  background-color: #4caf50;
}
.badge.badge-pending {
  color: #fff;
  background-color: #9e9e9e;
}
.badge.badge-verifying {
  color: #fff;
  background-color: #03a9f4;
}
.badge.badge-paid {
  color: #fff;
  background-color: #4caf50;
}
.badge.badge-returned {
  color: #fff;
  background-color: #ffc107;
}
.badge.badge-canceled {
  color: #fff;
  background-color: #f44336;
}
.badge.badge-inactive {
  color: #fff;
  background-color: #9e9e9e;
}
.badge.badge-active {
  color: #fff;
  background-color: #4caf50;
}
.badge.badge-expired {
  color: #fff;
  background-color: #f44336;
}
.badge.badge-whatsapp-pending {
  color: #fff;
  background-color: #9e9e9e;
}
.badge.badge-whatsapp-notified {
  color: #fff;
  background-color: #4caf50;
}
#logo_for_print_style {
  display: none;
  width: 100%;
  text-align: center;
}
@media print {
  #logo_for_print_style {
    display: block;
  }
}
#logo_for_print_style img {
  max-width: 60%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 200px;
}
/* STORE
################################################## */
/* news ITEM
*********************/
.carousel-news {
  position: relative;
}
.carousel-news .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
.carousel-news .news-title {
  padding: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: white;
  text-shadow: 0px 0px 4px #000000;
}
.carousel-news .news-title .category {
  text-transform: uppercase;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 575px) {
  .carousel-news .news-title .category {
    display: none;
  }
}
.carousel-news .news-title .title {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .carousel-news .news-title .title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .carousel-news .news-title .title {
    font-size: 20px;
  }
}
.carousel-news .news-title .title a {
  color: white;
}
.carousel-news .news-title .btn {
  padding: 15px;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
}
.carousel-news .news-title .btn:hover {
  background-color: #ffffff;
  color: #464646;
  text-shadow: none;
}
@media (max-width: 767px) {
  .carousel-news .news-title .btn {
    display: none;
  }
}
.news-card {
  position: relative;
  width: 100%;
  height: auto;
}
.news-card .news-content:hover img {
  opacity: 0.8;
}
.news-card .news-content .date {
  font-size: 0.8em;
}
.news-card .news-content .img-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.news-card .news-content .img-container img {
  max-width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card .news-content .img-container .category {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: black;
  color: white;
  text-transform: uppercase;
  padding: 2px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
}
.news-card .news-content .text-container {
  width: 100%;
  margin: 10px 0;
  font-weight: 600;
  font-size: 18px;
  color: #464646;
}
.news-card .news-content .text-container:hover {
  text-decoration: none;
  color: #464646;
}
.news-card .news-content .text-container p {
  margin: 10px 0 5px 0;
}
.news-card .news-content small {
  display: block;
  font-size: 14px;
}
.news-card .news-social {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 10px 0;
}
.news-card .news-social .btn {
  width: 100%;
  font-size: 12px;
  color: white;
}
@media (max-width: 991px) {
  .news-header .col-12 {
    justify-content: flex-end !important;
  }
}
.news-header h2 {
  margin: 0 !important;
  padding: 15px 0;
  align-self: center;
}
.news-header #clean_news_filter {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0px;
}
#news-detail .instagram-media {
  width: 100%;
}
@media (max-width: 575px) {
  #news-detail .instagram-media {
    width: 100%;
  }
}
#news-detail .tiktok-embed {
  width: 100%;
}
@media (max-width: 575px) {
  #news-detail .tiktok-embed {
    width: 100%;
  }
}
#news-detail .news-details .news-content img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#news-detail .news-details div.share .title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.1em;
  color: #858585;
}
#news-detail .news-details div.share a {
  margin-right: 5px;
}
#news-detail .news-details div.share a:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  #news-detail .news-details .news-social .btn span {
    display: none;
  }
}
#news-detail .related-news {
  display: flex;
  flex-wrap: wrap;
}
#news-detail .related-news .related-card {
  width: 100%;
}
@media (max-width: 767px) {
  #news-detail .related-news .related-card {
    max-width: 100%;
  }
}
#news-detail #photos_carousel .divider {
  width: 100%;
  height: 2px;
  background-color: #f8f8f8;
  margin-bottom: 15px;
}
#news-detail #photos_carousel #news_photos .modal-img {
  border-right: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  width: 100%;
  max-height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
#other-news {
  background-color: #f4f4f4;
}
#news-filter {
  background-color: #f4f4f4;
  padding: 20px 0;
}
#news-filter .form-group {
  margin-bottom: 0;
}
.news-cover {
  position: relative;
}
.news-cover .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
.news-cover .news-title {
  padding: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: white;
  text-shadow: 0px 0px 4px #000000;
}
.news-cover .news-title .category {
  text-transform: uppercase;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background-color: black;
  border-color: black;
  color: white;
  text-decoration: none;
  padding: 2px 7px;
}
@media (max-width: 575px) {
  .news-cover .news-title .category {
    display: none;
  }
}
.news-cover .news-title .title {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.01em;
  margin: 20px 0;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .news-cover .news-title .title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .news-cover .news-title .title {
    font-size: 20px;
    margin: 10px 0;
  }
}
#index_news {
  /*
  .big-new {
    @media (max-width: (@medium - 1px)) {
      margin-bottom: 15px;
    }

    img {
      max-width: 100%;
      height: auto;
      object-fit: cover;
      margin-bottom: 16px;
    }
    
    .category {
      text-transform: uppercase;
      margin: 0;
    }

    .title {
      margin: 8px 0;
      font-size: 1.5rem;
      font-weight: 700;

      a {
        color: @color_text;
      }
    }
  }
  */
}
#index_news .title-section {
  margin-bottom: 15px;
  line-height: 30px;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#index_news .big-new {
  padding-top: 4px;
  padding-bottom: 4px;
}
@media (max-width: 575px) {
  #index_news .big-new {
    margin-bottom: 15px;
  }
  #index_news .big-new:last-child {
    margin-bottom: 0;
  }
}
#index_news .big-new a {
  display: block;
  height: 100%;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 0.25rem;
}
#index_news .big-new a.static {
  cursor: default;
}
#index_news .big-new a div.content {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  border-radius: 0.25rem;
  transition:  padding 0.2s 0s ease, background-color 0.2s 0s ease;
}
#index_news .big-new a div.content div.title {
  padding: 0 5px;
  line-height: 40px;
  font-weight: 700;
  font-size: 1.2em;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-border-bottom-left-radius: 0.25rem;
  -webkit-border-bottom-right-radius: 0.25rem;
  -moz-border-radius-bottomleft: 0.25rem;
  -moz-border-radius-bottomright: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  transition:  border-radius 0.2s 0s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  #index_news .big-new a div.content div.title {
    font-size: 1em;
  }
}
#index_news .big-new a:hover .content {
  padding-bottom: 15px;
  background-color: rgba(0, 0, 0, 0.5);
}
#index_news .big-new a:hover .content div.title {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#index_news .small-news .simple-new {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #f4f4f4;
  padding-top: 4px;
  padding-bottom: 4px;
}
#index_news .small-news .simple-new:hover {
  text-decoration: none;
}
#index_news .small-news .simple-new:last-child {
  border-bottom: none;
}
#index_news .small-news .simple-new img {
  width: 25%;
  height: auto;
  min-height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
#index_news .small-news .simple-new .info-container {
  padding: 0 15px;
}
#index_news .small-news .simple-new .info-container .title {
  font-weight: 700;
  font-size: 1rem;
  color: #464646;
}
#index_news .small-news .simple-new .info-container .date {
  color: #464646;
}
.parallax {
  position: relative;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .parallax {
    background-attachment: inherit;
  }
}
/* ANIMATION
################################################## */
#logo {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
@media (max-width: 767px) {
  #search_form {
    animation-duration: 1s;
    animation-delay: 0s;
    animation-fill-mode: both;
    animation-name: fadeIn;
  }
}
#options .badge {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
#navbar_categories .col {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}
@media (max-width: 991px) {
  #filter {
    animation-duration: 1s;
    animation-delay: 0s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
  }
}
#product .main .price > .value {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-name: flash;
}
#cart_checkout_ready_submit.now {
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-name: flash;
}
/* BODY
################################################## */
html {
  scroll-behavior: smooth;
}
::-moz-selection {
  color: #7aa62f;
  background-color: #d4f699;
}
::selection {
  color: #7aa62f;
  background-color: #d4f699;
}
/* HEADER ALERT
################################################## */
.header-alert {
  padding: 10px 0;
  text-align: center;
  background-size: cover;
  background-position: center center;
}
.header-alert p {
  display: inline;
}
.header-alert .header-alert-btn-action {
  margin-left: 10px;
}
.header-alert .header-alert-btn-action:hover {
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .header-alert .header-alert-btn-action {
    display: block;
    margin: 5px auto 0 auto;
    max-width: 200px;
  }
}
.header-alert .header-alert-close {
  float: right;
  font-size: 1.5em;
  cursor: pointer;
}
@media (max-width: 991px) {
  .header-alert .header-alert-close {
    display: none;
  }
}
.header-alert .header-alert-close i {
  color: #555;
  text-shadow: 0.5px 0.5px 0px rgba(255, 255, 255, 0.5);
}
.header-alert .header-alert-close i:hover {
  color: #444;
}
/* CORE
################################################## */
@media (min-width: 992px) {
  #core.overlay_special {
    -webkit-opacity: 0.2;
    -moz-opacity: 0.2;
    opacity: 0.2;
    transition:  opacity 0.3s 0s ease;
  }
  #core.overlay_special a {
    cursor: default !important;
    pointer-events: none !important;
  }
}
@media (max-width: 991px) {
  #core.overlay_sidebar {
    -webkit-opacity: 0.2;
    -moz-opacity: 0.2;
    opacity: 0.2;
    transition:  opacity 0.3s 0s ease;
  }
  #core.overlay_sidebar a {
    cursor: default !important;
    pointer-events: none !important;
  }
}
/* MAIN
################################################## */
#main {
  font-size: 0.95em;
}
#main .spacer {
  padding-top: 15px;
  padding-bottom: 15px;
}
#main .contrast {
  background-color: #f8f8f8;
}
#main h2.section {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.5em;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  #main h2.section {
    display: none;
  }
}
#main h2 a {
  text-decoration: none;
}
#main h2.order-header {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  #main h2.order-header {
    display: block;
  }
  #main h2.order-header a,
  #main h2.order-header i {
    display: none;
  }
}
@media (max-width: 991px) {
  #main #print_button {
    display: none;
  }
}
#main .content p {
  margin-bottom: 15px;
  line-height: 24px;
}
#main .content p:last-child {
  margin-bottom: 0;
}
#main .content ul,
#main .content ol {
  margin-bottom: 15px;
  line-height: 24px;
}
#main .content ol {
  padding-left: 25px;
}
#main .content ul {
  padding-left: 18px;
  list-style-type: square;
}
#main .toolbar {
  color: #c5c5c5;
}
#main .toolbar .breadcrumb {
  background-color: #f8f8f8;
  padding: 0 15px;
  line-height: 40px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#main .toolbar .breadcrumb .breadcrumb-item {
  display: inline;
}
#main .toolbar .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  font-weight: 700;
}
#main .toolbar .breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
#main .toolbar .breadcrumb .breadcrumb-item .count {
  color: #c5c5c5;
}
#main .toolbar .orderBy {
  display: flex;
  align-items: center;
  float: right;
  height: 40px;
}
@media (max-width: 991px) {
  #main .toolbar .orderBy {
    float: none;
  }
}
#main .toolbar .orderBy .orderby-option {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 991px) {
  #main .toolbar .orderBy .orderby-option.quantity {
    display: none;
  }
}
#main .toolbar .orderBy .orderby-option .orderby-label {
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  color: #464646;
  font-size: 14px;
  padding: 5px 10px;
  height: 100%;
}
#main .toolbar .orderBy .orderby-option .form-group {
  margin: 0;
  height: 100%;
}
#main .toolbar .orderBy .orderby-option .form-control {
  height: 100%;
  font-size: 14px;
  padding: 5px 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#main .aside {
  padding: 15px;
  height: 100%;
  background-color: #f8f8f8;
  border-radius: 0.25rem;
}
#main .aside .actions {
  display: flex;
  flex-wrap: no-wrap;
  align-items: center;
  justify-content: flex-end;
}
#main .aside .actions .btn-secondary {
  margin-right: 10px;
}
#main .aside h3 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.2em;
  color: #464646;
}
#main .aside h3:first-child {
  margin-top: 0;
}
#main .aside .block {
  margin-bottom: 10px;
}
#main .aside .block p {
  margin: 0;
  line-height: 20px;
  font-size: 0.95em;
}
#main .aside .block p.extra {
  font-size: 0.8em;
  color: #797979;
}
#main .aside .list-group {
  font-size: 0.95em;
}
#main .aside .list-group a.list-group-item {
  padding: 10px;
  line-height: 25px;
  color: #6c6c6c;
  border-color: #ebebeb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:  background-color 0.1s 0s ease;
}
#main .aside .list-group a.list-group-item .count {
  float: right;
  padding: 0 10px;
  display: block;
  line-height: 25px;
  font-size: 0.8em;
  font-weight: 700;
  color: #fff;
  background-color: #c5c5c5;
  border-radius: 0.25rem;
}
#main .aside .list-group a.list-group-item .count.empty {
  background-color: #ebebeb;
}
#main .aside .list-group a.list-group-item .icon {
  margin-right: 5px;
}
#main .aside .list-group a.list-group-item:hover {
  background-color: #fbfbfb;
}
#main .aside .list-group a.list-group-item.selected {
  font-weight: 700;
  background-color: #fbfbfb;
}
#main .aside .list-group a.list-group-item.active {
  font-weight: 700;
  color: #fff;
}
#main .aside .list-group a.list-group-item.active .count {
  background-color: #fff;
}
#main .aside .list-group.extra {
  margin-top: 15px;
}
#main .aside .divider {
  height: 12px;
  margin: 6px 0 16px 0;
  text-align: center;
  border-bottom: 1px solid #f8f8f8;
}
#main .aside .divider span {
  font-size: 0.75em;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 15px;
  background-color: #fff;
  color: #9f9f9f;
}
@media (max-width: 767px) {
  #main .aside.arrange-horizontally {
    margin-bottom: 15px;
    height: auto;
  }
  #main .aside.arrange-horizontally h3 {
    display: none;
  }
  #main .aside.arrange-horizontally .list-group {
    flex-direction: row;
  }
  #main .aside.arrange-horizontally .list-group a.list-group-item {
    padding: 5px;
    text-align: center;
  }
  #main .aside.arrange-horizontally .list-group a.list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  #main .aside.arrange-horizontally .list-group a.list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  #main .aside.arrange-horizontally .list-group a.list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  #main .aside.arrange-horizontally .list-group a.list-group-item i,
  #main .aside.arrange-horizontally .list-group a.list-group-item span {
    display: block;
  }
  #main .aside.arrange-horizontally .list-group a.list-group-item i:before {
    width: auto;
  }
  #main .aside.arrange-horizontally .list-group.extra {
    display: none;
  }
}
@media (max-width: 575px) {
  #main .aside.arrange-horizontally .list-group a.list-group-item span {
    display: none;
  }
}
#main .aside .me {
  text-align: center;
}
#main .aside .me img.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
#main .aside .me h4 {
  margin: 10px 0;
  font-weight: 700;
  font-size: 1.2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#main .aside .me h4 i {
  color: #acacac;
}
#main .aside .me .mobile_actions {
  margin-bottom: 15px;
  font-size: 0.9em;
}
#main .aside .me .mobile_actions a {
  text-decoration: underline;
  color: #929292;
}
@media (max-width: 767px) {
  #main .aside .me img.avatar {
    display: none;
  }
  #main .aside .me h4 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
#main .aside .checkout {
  padding: 15px;
  border-radius: 0.25rem;
  background-color: #fff;
}
#main .aside .checkout p.instructions {
  margin: 15px 0 0 0;
  font-size: 0.9em;
  color: #858585;
}
#main .aside .checkout table.table tr.total th:first-child {
  background-color: #eeeeee;
  border-bottom-left-radius: 0.25rem;
}
#main .aside .checkout table.table tr.total td {
  background-color: #f8f8f8;
  border-bottom-right-radius: 0.25rem;
}
#main .aside .checkout table.table tr th,
#main .aside .checkout table.table tr td {
  vertical-align: middle;
  border-color: #eeeeee;
  width: 50%;
}
#main .aside .checkout table.table tr th {
  text-transform: uppercase;
  font-size: 0.8em;
  color: #464646;
  background-color: #f8f8f8;
}
#main .aside .checkout table.table tr td.final {
  text-align: right;
  font-size: 1em;
}
#main form label {
  font-size: 1em;
  line-height: 20px;
}
#main .link-container {
  display: block;
  width: 100%;
  height: 100%;
}
#main .link-container:hover {
  text-decoration: none;
  cursor: pointer;
}
#main .link-container:hover h5 {
  text-decoration: underline;
}
/* COVER
################################################## */
#cover.single {
  height: 600px;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 991px) {
  #cover.single {
    height: 500px;
  }
}
@media (max-width: 767px) {
  #cover.single {
    height: 350px;
  }
}
@media (max-width: 575px) {
  #cover.single {
    height: 250px;
  }
}
@media (max-width: 383px) {
  #cover.single {
    height: 180px;
  }
}
#cover .carousel-item {
  transform-style: preserve-3d;
}
#cover .carousel-item.has-cta {
  cursor: pointer;
}
#cover .carousel-control-next-icon,
#cover .carousel-control-prev-icon {
  width: 40px;
  height: 40px;
}
#cover .carousel-indicators li {
  height: 5px;
}
#cover .carousel-item,
#cover .carousel-picture {
  height: 600px;
}
@media (max-width: 991px) {
  #cover .carousel-item,
  #cover .carousel-picture {
    height: 500px;
  }
}
@media (max-width: 767px) {
  #cover .carousel-item,
  #cover .carousel-picture {
    height: 350px;
  }
}
@media (max-width: 575px) {
  #cover .carousel-item,
  #cover .carousel-picture {
    height: 250px;
  }
}
@media (max-width: 383px) {
  #cover .carousel-item,
  #cover .carousel-picture {
    height: 180px;
  }
}
#cover .carousel-picture {
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition:  transform 3s 0s ease;
}
#cover .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: initial;
}
#cover .carousel-caption h2 {
  margin-bottom: 1px;
  line-height: 35px;
}
@media (max-width: 575px) {
  #cover .carousel-caption h2 {
    font-size: 1.5em;
    line-height: 30px;
  }
}
#cover .carousel-caption p {
  margin: 0;
}
@media (max-width: 575px) {
  #cover .carousel-caption p.description {
    display: none;
  }
}
#cover .carousel-caption p.carousel-cta {
  margin-top: 15px;
}
#cover .carousel-caption p.carousel-cta .btn {
  font-weight: 700;
  border-width: 0;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
#cover .carousel-caption h2.depth,
#cover .carousel-caption p.description.depth {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
#cover_mobile.single {
  height: 600px;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 991px) {
  #cover_mobile.single {
    height: 500px;
  }
}
@media (max-width: 767px) {
  #cover_mobile.single {
    height: 350px;
  }
}
@media (max-width: 575px) {
  #cover_mobile.single {
    height: 250px;
  }
}
@media (max-width: 383px) {
  #cover_mobile.single {
    height: 180px;
  }
}
#cover_mobile .carousel-item {
  transform-style: preserve-3d;
}
#cover_mobile .carousel-item.has-cta {
  cursor: pointer;
}
#cover_mobile .carousel-control-next-icon,
#cover_mobile .carousel-control-prev-icon {
  width: 40px;
  height: 40px;
}
#cover_mobile .carousel-indicators li {
  height: 5px;
}
#cover_mobile .carousel-item,
#cover_mobile .carousel-picture {
  width: 100%;
  height: 100%;
  aspect-ratio: 0.8;
}
#cover_mobile .carousel-picture {
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition:  transform 3s 0s ease;
}
#cover_mobile .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: initial;
}
#cover_mobile .carousel-caption h2 {
  margin-bottom: 1px;
  line-height: 35px;
}
@media (max-width: 575px) {
  #cover_mobile .carousel-caption h2 {
    font-size: 1.5em;
    line-height: 30px;
  }
}
#cover_mobile .carousel-caption p {
  margin: 0;
}
#cover_mobile .carousel-caption p.carousel-cta {
  margin-top: 15px;
}
#cover_mobile .carousel-caption p.carousel-cta .btn {
  font-weight: 700;
  border-width: 0;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
#cover_mobile .carousel-caption h2.depth,
#cover_mobile .carousel-caption p.description.depth {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
/* BRANDS
################################################## */
#brands img {
  padding: 0 30px;
  max-width: 100%;
}
/* CATALOGUE
################################################## */
#catalogue #toggler {
  margin-bottom: 15px;
}
#catalogue .toolbar {
  border-radius: 0.25rem;
}
#catalogue .toolbar .btn-group {
  margin-left: 15px;
  float: right;
}
@media (max-width: 575px) {
  #catalogue .toolbar .btn-group {
    margin-left: 0;
  }
}
#catalogue .toolbar .btn-group .btn {
  line-height: 26px;
  font-size: 0.8em;
  text-transform: uppercase;
}
#catalogue .toolbar .dropdown-menu {
  text-transform: uppercase;
  font-size: 0.8em;
}
#catalogue .toolbar .dropdown-menu h6.dropdown-header {
  font-size: 0.9em;
  text-transform: none;
}
#catalogue .catalogue-toolbar {
  display: flex;
  margin-bottom: 1rem;
}
#catalogue .catalogue-toolbar .btn-group {
  float: none;
  width: 100%;
  order: 2;
}
#catalogue .catalogue-toolbar .orderBy {
  order: 1;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
#catalogue .cover {
  margin-bottom: 15px;
  height: 380px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.25rem;
}
@media (max-width: 767px) {
  #catalogue .cover {
    height: 250px;
  }
}
@media (max-width: 575px) {
  #catalogue .cover {
    height: 200px;
  }
}
@media (max-width: 383px) {
  #catalogue .cover {
    height: 150px;
  }
}
#catalogue .alert {
  margin-bottom: 0;
}
#catalogue .results {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 40px;
  text-align: center;
  color: #acacac;
  background-color: #f8f8f8;
  border-radius: 0.25rem;
}
#catalogue #loader_holder {
  margin-top: 30px;
  margin-bottom: 45px;
  text-align: center;
}
#catalogue #loader_holder .btn {
  text-transform: none;
}
@media (max-width: 383px) {
  #catalogue #loader_holder .btn {
    display: block;
    width: 100%;
  }
}
#brand_grid {
  margin-top: 30px;
}
#brand_grid a.brand {
  margin-bottom: 30px;
  display: block;
  text-align: center;
  font-size: 0.9em;
  text-decoration: none;
  color: #464646;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#brand_grid a.brand img {
  margin-bottom: 5px;
  border-radius: 0.25rem;
  transition:  transform 0.2s 0s ease;
}
#brand_grid a.brand:active img {
  transform: scale(0.9);
}
#brand_products_carousel a.brand {
  display: block;
  text-align: center;
  font-size: 1em;
  text-decoration: none;
  color: #464646;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#brand_products_carousel a.brand img {
  margin-bottom: 5px;
}
/* FILTER
################################################## */
#filter h3 {
  text-transform: uppercase;
  font-size: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#filter #filter_id_brand_current {
  margin-bottom: 5px;
  line-height: 20px;
  color: #464646;
}
#filter #filter_id_brand_current img {
  margin-right: 5px;
  width: 65px;
  height: 65px;
  border-radius: 0.25rem;
}
#filter #filter_id_brand_current p {
  margin-bottom: 5px;
}
#filter #filter_id_brand_current p:last-child {
  margin-bottom: 0;
}
#filter #filter_id_brand_current p a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85em;
  color: #797979;
}
#filter #tree {
  border-top: 1px solid #ebebeb;
}
#filter #tree a {
  border-radius: 0;
}
#filter #tree .list-cat a.list-group-item {
  border-top-width: 0;
}
#filter #tree .list-cat .list-subcat a.list-group-item {
  padding-left: 31px;
}
#filter #filter_range_holder .slider {
  margin: 15px auto 0 auto;
  width: 94%;
  margin-top: 10px;
}
#filter #filter_range_holder i:before {
  width: auto;
}
#filter #filter_color_holder #filter_color_list {
  font-size: 2em;
}
#filter #filter_color_holder #filter_color_list i {
  cursor: pointer;
}
#filter .sep {
  margin-top: 22.5px;
  padding-top: 22.5px;
  border-top: 1px solid #e4e4e4;
}
#filter .sep:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top-width: 0;
}
#filter .btn {
  text-transform: uppercase;
}
/* PRODUCT GRID
################################################## */
#products .highlight {
  color: #111;
  background-color: #fbc02d;
}
#products .product {
  margin-bottom: 30px;
}
/* SWIPER FOR CAROUSELS
################################################## */
.swiper {
  /*
	.carousel-inner .carousel-item-right.active,
	.carousel-inner .carousel-item-next {
	    transform: translateX(50%);
	}
	.carousel-inner .carousel-item-left.active,
	.carousel-inner .carousel-item-prev {
	    transform: translateX(-50%);
	}
	@media (min-width: @medium) and (max-width: @large) {
	    .carousel-inner .carousel-item-right.active,
	    .carousel-inner .carousel-item-next {
	        transform: translateX(33.333333333333333%);
	    }
	    .carousel-inner .carousel-item-left.active,
	    .carousel-inner .carousel-item-prev {
	        transform: translateX(-33.333333333333333%);
	    }
	}
	@media (min-width: @large) and (max-width: @xlarge) {
	    .carousel-inner .carousel-item-right.active,
	    .carousel-inner .carousel-item-next {
	        transform: translateX(25%);
	    }
	    .carousel-inner .carousel-item-left.active,
	    .carousel-inner .carousel-item-prev {
	        transform: translateX(-25%);
	    }
	}
	@media (min-width: @xlarge) {
	    .carousel-inner .carousel-item-right.active,
	    .carousel-inner .carousel-item-next {
	        transform: translateX(16.666666666666667%);
	    }
	    .carousel-inner .carousel-item-left.active,
	    .carousel-inner .carousel-item-prev {
	        transform: translateX(-16.666666666666667%);
	    }
	}
	.carousel-inner .carousel-item-right,
	.carousel-inner .carousel-item-left{
	    transform: translateX(0);
	}
	*/
}
.swiper h2 {
  margin-bottom: 15px;
  line-height: 30px;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swiper .navigation {
  float: right;
  margin-left: 10px;
}
.swiper .navigation a {
  margin-right: 1px;
  float: left;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  transition:  background-color 0.1s 0s ease, opacity 0.1s 0s ease;
}
.swiper .navigation a.prev {
  -webkit-border-radius: 0;
  -webkit-border-top-left-radius: 0.25rem;
  -webkit-border-bottom-left-radius: 0.25rem;
  -moz-border-radius: 0;
  -moz-border-radius-topleft: 0.25rem;
  -moz-border-radius-bottomleft: 0.25rem;
  border-radius: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.swiper .navigation a.next {
  -webkit-border-radius: 0;
  -webkit-border-top-right-radius: 0.25rem;
  -webkit-border-bottom-right-radius: 0.25rem;
  -moz-border-radius: 0;
  -moz-border-radius-topright: 0.25rem;
  -moz-border-radius-bottomright: 0.25rem;
  border-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.swiper .carousel-inner .carousel-item.active,
.swiper .carousel-inner .carousel-item-next,
.swiper .carousel-inner .carousel-item-prev {
  display: flex;
}
.swiper .carousel-item {
  transition: transform 0.9s ease-in-out;
}
/* RANKING STARS
################################################## */
.stars i {
  color: #dfdfdf;
}
.stars i.active {
  color: #ff9800;
}
/* PRICES
################################################## */
.price span.free {
  font-weight: 700;
}
.price span.value {
  font-weight: 700;
}
.price span.value:before {
  margin-right: 3px;
  font-family: 'FontAwesome';
  content: "\24";
}
.price span.cents {
  top: -0.45em;
  font-size: 0.8em;
}
.price span.strike {
  margin-left: 6px;
  position: relative;
}
@media (max-width: 383px) {
  .price span.strike {
    display: none;
  }
}
.price span.strike:before {
  content: " ";
  display: block;
  width: 100%;
  border-top: 2px solid rgba(146, 146, 146, 0.8);
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 2px;
  transform: rotate(-15deg);
}
.price span.strike:after {
  content: " ";
  display: block;
  width: 100%;
  border-top: 2px solid rgba(146, 146, 146, 0.8);
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(15deg);
}
.price span.strike span.value {
  font-weight: 700;
  color: #9f9f9f;
}
.price span.strike span.value:before {
  color: #c5c5c5;
}
.price span.strike span.cents {
  text-decoration: none;
  color: #9f9f9f;
}
/* PRODUCT ITEM FOR GRIDS AND CAROUSELS
################################################## */
.product {
  border-color: #e9e9e9;
}
.product .badge {
  position: absolute;
  text-transform: uppercase;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.product .badge-new {
  margin: 10px 0 0 10px;
  left: 0;
  color: #000;
  background-color: #fdd835;
}
.product .badge-promo {
  margin: 10px 10px 0 0;
  right: 0;
  color: #fff;
  background-color: #e53935;
}
.product img.card-img-top {
  width: 100%;
  height: auto;
}
.product .card-body {
  padding: 10px;
}
.product .card-body .card-title {
  margin: 0;
  font-size: 1.1em;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575px) {
  .product .card-body .card-title {
    font-size: 1.05em;
    text-align: center;
  }
}
@media (max-width: 383px) {
  .product .card-body .card-title {
    font-size: 0.95em;
  }
}
.product .card-body .card-title a {
  text-decoration: none;
  color: #464646;
}
.product .card-body .card-title.simple {
  margin-bottom: 5px;
  text-align: center;
}
.product .card-body .card-text {
  margin-bottom: 5px;
  font-size: 0.85em;
  color: #5f5f5f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 383px) {
  .product .card-body .card-text {
    display: none;
  }
}
.product .card-body .card-text .path a {
  font-weight: 700;
  color: #797979;
}
.product .card-body .card-text .path i {
  color: #acacac;
}
.product .card-body .card-text .path i.icon:before {
  width: 1.1em;
}
.product .card-body .card-price {
  margin-bottom: 5px;
  text-align: center;
  line-height: 30px;
  font-size: 1.2em;
  color: #929292;
  border: 1px solid #e9e9e9;
  border-radius: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 383px) {
  .product .card-body .card-price {
    font-size: 1.1em;
  }
}
@media (max-width: 575px) {
  .product .card-body .card-price {
    line-height: 25px;
    border-width: 0;
  }
}
.product .card-body .card-price .text {
  padding: 0 5px;
  font-size: 0.8em;
  font-style: italic;
  color: #acacac;
}
.product .card-body .btn {
  font-size: 0.85em;
  text-transform: uppercase;
}
@media (max-width: 383px) {
  .product .card-body .btn .text {
    display: none;
  }
}
#product_count_holder {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  right: 10px;
  background-color: red;
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
@media (max-width: 575px) {
  #product_count_holder {
    width: 35px;
    height: 35px;
  }
}
#product_count_holder span {
  color: white;
}
/* PRODUCT PAGE
################################################## */
#product #gallery {
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 10px 10px 0 10px;
  text-align: center;
  background-color: #fdfdfd;
  border: 2px dashed #f3f3f3;
  border-radius: 0.25rem;
}
#product #gallery img {
  margin: 0 5px 10px 5px;
  width: 60px;
  height: 60px;
}
#product #gallery img:last-child {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  #product #gallery img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 383px) {
  #product #gallery img {
    width: 40px;
    height: 40px;
  }
}
#product #video_holder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 250px;
  background: #000;
}
@media (max-width: 767px) {
  #product #video_holder {
    height: 0;
    padding-bottom: 56.25%;
  }
}
#product #video_holder #ytplayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#product #photo_holder #photo {
  border-radius: 0.25rem;
}
#product #photo_holder div.instructions {
  text-align: center;
  line-height: 20px;
  font-size: 0.8em;
  color: #929292;
}
#product div.block {
  margin-top: 15px;
}
#product div.block .form-group {
  margin-bottom: 15px;
}
#product div.block .form-group:last-child {
  margin-bottom: 0;
}
#product div.block label {
  margin-bottom: 5px;
  display: block;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6c6c6c;
}
#product div.main h2 {
  margin-bottom: 0;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 28px;
}
#product div.main div.flags {
  margin-bottom: 5px;
  font-size: 0.8em;
}
#product div.main div.flags a {
  font-weight: 700;
  text-decoration: none;
}
#product div.main div.flags a:hover {
  text-decoration: underline;
}
#product div.main div.flags .badge {
  text-transform: uppercase;
  font-size: 1.2em;
}
#product div.main div.flags .badge.badge-new {
  color: #000;
  background-color: #fdd835;
}
#product div.main div.flags .badge.badge-featured {
  color: #fff;
  background-color: #e53935;
}
#product div.main div.reviews {
  font-size: 0.9em;
  color: #929292;
}
#product div.main div.reviews a {
  color: #929292;
}
#product div.main div.reviews span.stars {
  margin-right: 5px;
}
#product div.main div.reviews span.badge {
  margin-right: 5px;
}
#product div.main div.price {
  font-size: 1.5em;
}
@media (max-width: 383px) {
  #product div.main div.price span.strike {
    display: inline;
  }
}
#product div.main div.price span.strike:before {
  height: 16px;
  left: 4px;
}
#product div.main div.price span.strike:after {
  height: 16px;
}
#product div.main div.price span.label {
  display: block;
  font-size: 0.5em;
  font-style: italic;
  color: #797979;
}
#product div.main div.description {
  font-size: 0.95em;
}
#product div.main div.description p {
  margin-bottom: 10px;
}
#product div.main div.description ul,
#product div.main div.description ol {
  padding-left: 18px;
}
#product div.main div.description ul {
  list-style-type: square;
}
#product div.main div.more {
  margin-bottom: 10px;
  text-transform: lowercase;
}
#product div.main div.more i:before {
  width: auto;
}
#product div.main div.extras {
  display: block;
  font-size: 0.75em;
  text-transform: lowercase;
  color: #797979;
}
#product div.main div.extras span.sep {
  color: #c5c5c5;
}
#product div.main div.extras ul {
  list-style-type: square;
  padding-left: 15px;
}
@media (max-width: 575px) {
  #product div.main div.extras ul {
    padding-left: 0;
    list-style-type: none;
  }
  #product div.main div.extras ul li {
    display: inline;
  }
  #product div.main div.extras ul li:after {
    content: " / ";
  }
  #product div.main div.extras ul li:last-child:after {
    content: "";
  }
}
#product div.main div.tags a {
  margin-right: 5px;
  padding: 0 5px;
  font-size: 0.9em;
  font-weight: 700;
  text-decoration: none;
  color: #464646;
  background-color: #f8f8f8;
  white-space: nowrap;
  border-radius: 0.25rem;
  transition:  background-color 0.1s 0s ease;
}
#product div.main div.tags a:hover {
  background-color: #dfdfdf;
}
@media (max-width: 575px) {
  #product div.main {
    text-align: center;
  }
  #product div.main div.description ol {
    text-align: left;
  }
  #product div.main div.description ul {
    padding-left: 0;
    list-style-type: none;
  }
}
#product div.options {
  /*
		@media (max-width: (@small - 1px)) {
			text-align: center;
			div.attributes,
			div.add
			{
				margin-left: auto;
				margin-right: auto;
			}
		}
		*/
}
#product div.options div.attributes .custom-select {
  margin-bottom: 10px;
}
#product div.options div.attributes .custom-select:last-child {
  margin-bottom: 0;
}
#product div.options div.colors #color_list {
  font-size: 2em;
}
#product div.options div.colors #color_list i {
  cursor: pointer;
  transition:  opacity 0.2s 0s ease;
}
#product div.options div.colors #color_list i.off {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
#product div.options div.custom {
  margin-top: 15px;
  padding-top: 22.5px;
  border-top: 1px solid #f8f8f8;
}
#product div.options div.add .input-group {
  margin-bottom: 2px;
}
#product div.options div.add #product_addtocart_q {
  text-align: center;
}
#product div.options div.add .btn {
  font-size: 0.9em;
  text-transform: uppercase;
}
#product div.options div.add .btn:disabled {
  cursor: not-allowed;
}
#product div.main.product_buttons_position_col_1 {
  max-width: 100%;
}
@media (max-width: 991px) {
  #product div.main.product_buttons_position_col_1 {
    max-width: 100%;
  }
}
#product div.options.product_buttons_position_col_1 {
  max-width: 64%;
}
@media (max-width: 575px) {
  #product div.options.product_buttons_position_col_1 {
    text-align: center;
  }
  #product div.options.product_buttons_position_col_1 div.attributes,
  #product div.options.product_buttons_position_col_1 div.add {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 991px) {
  #product div.options.product_buttons_position_col_1 {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  #product div.options.product_buttons_position_col_2 {
    text-align: center;
  }
  #product div.options.product_buttons_position_col_2 div.attributes,
  #product div.options.product_buttons_position_col_2 div.add {
    margin-left: auto;
    margin-right: auto;
  }
}
#product div.alert {
  margin-top: 5px;
}
#product .additional {
  text-align: left;
  font-size: 0.8em;
  color: #9f9f9f;
}
@media (max-width: 575px) {
  #product .additional {
    margin-top: 22.5px;
    border-top: 1px solid #f8f8f8;
  }
}
#product .additional div.title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.1em;
  color: #858585;
}
#product .additional div.share a {
  margin-right: 5px;
}
#product .additional div.share a:last-child {
  margin-right: 0;
}
#product .additional div.payment .cc .item {
  float: left;
  display: block;
  margin-bottom: 5px;
  margin-right: 5px;
  width: 38px;
  height: 25px;
  background-size: 38px 25px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 0.25rem;
}
#product .additional div.payment .cc .item:last-child {
  margin-right: 0;
}
#product .additional div.payment ul {
  margin-bottom: 5px;
  padding-left: 16px;
  list-style-type: square;
}
#product .additional div.payment ul li {
  margin: 0;
  line-height: 18px;
}
#product .additional div.payment p.instructions {
  margin-bottom: 15px;
  line-height: 15px;
  font-size: 0.9em;
}
#product #extras div.nav-tabs {
  display: none;
}
@media (max-width: 991px) {
  #product #extras div.nav-tabs a {
    flex: 1;
    text-align: center;
  }
}
#product #extras div.tab-content {
  margin-top: 15px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  #product #extras div.tab-content {
    margin-top: 0;
  }
}
#product #extras .holder .toggler a {
  margin-bottom: 10px;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 700;
  color: #fff;
  background-color: #acacac;
  border-radius: 0.25rem;
  transition:  background-color 0.1s 0s ease;
}
#product #extras .holder .toggler a.collapsed {
  color: #797979;
  background-color: #f8f8f8;
}
#product #extras .holder .toggler a.collapsed:hover {
  background-color: #ebebeb;
}
@media (min-width: 768px) {
  #product #extras div.nav-tabs {
    display: flex;
  }
  #product #extras .holder .toggler {
    display: none;
  }
  #product #extras .holder .collapse {
    display: block;
  }
}
@media (max-width: 767px) {
  #product #extras .tab-pane {
    display: block !important;
    opacity: 1;
  }
}
#product #extras .specification {
  margin-bottom: 15px;
  line-height: 25px;
  font-size: 0.95em;
}
#product #extras .specification p {
  margin-bottom: 10px;
}
#product #extras .specification p:last-child {
  margin-bottom: 0;
}
#product #extras .specification ul,
#product #extras .specification ol {
  padding-left: 18px;
}
#product #extras .specification ul {
  list-style-type: square;
}
#product #extras .questions {
  margin-top: 45px;
  margin-bottom: 60px;
  line-height: 20px;
  text-align: center;
}
#product #extras .questions p.title {
  margin-bottom: 0;
  font-size: 1.1em;
  font-weight: 700;
  color: #797979;
}
#product #extras .questions p.subtitle {
  margin-bottom: 10px;
  font-size: 0.9em;
  color: #acacac;
}
@media (max-width: 575px) {
  #product #extras .questions p.title {
    font-size: 1em;
  }
  #product #extras .questions p.subtitle {
    font-size: 0.8em;
  }
}
#product_addtocart_confirmation h5 {
  color: #525252;
}
#product_addtocart_confirmation h3 {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.3em;
  line-height: 20px;
  color: #525252;
}
#product_addtocart_confirmation .product_addtocart_quantity {
  color: #525252;
}
#product_addtocart_confirmation p.code {
  margin-bottom: 5px;
}
#product_addtocart_confirmation div.price {
  font-size: 1.3em;
}
#product_addtocart_confirmation ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  font-size: 0.9em;
  color: #5f5f5f;
}
#product_addtocart_confirmation #product_addtocart_confirmation_color {
  padding: 0 3px;
  text-transform: lowercase;
  border-radius: 0.25rem;
}
#product_addtocart_confirmation #product_addtocart_confirmation_color.white {
  border: 1px solid #acacac;
}
#product_addtocart_confirmation .btn {
  font-size: 0.95em;
}
@media (max-width: 383px) {
  #product_addtocart_confirmation .modal-header {
    display: none;
  }
  #product_addtocart_confirmation .btn {
    font-size: 0.9em;
  }
  #product_addtocart_confirmation .btn i {
    display: block;
  }
}
.zoom {
  display: inline-block;
  position: relative;
  border-radius: 0.25rem;
}
@media (min-width: 576px) {
  .zoom:after {
    content: '';
    display: block;
    width: 33px;
    height: 33px;
    position: absolute;
    top: 0;
    right: 0;
    background: url("../img/magnifier.png") repeat left center;
  }
}
.zoom img {
  display: block;
}
.zoom img::-moz-selection {
  background-color: transparent;
}
.zoom img::selection {
  background-color: transparent;
}
/* REVIEWS
################################################## */
#reviews .col-12 {
  margin-bottom: 15px;
}
#reviews .card {
  border-width: 0;
}
#reviews .card .card-header,
#reviews .card .card-footer {
  padding: 10px;
  font-size: 0.9em;
  background-color: #ebebeb;
  border-width: 0;
}
#reviews .card .card-header .stars i:not(.active) {
  color: #acacac;
}
#reviews .card .card-body {
  padding: 10px;
  background-color: #fdfdfd;
}
#reviews .card .card-body h5.card-title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 0.95em;
}
#reviews .card .card-body p.card-text {
  margin: 0;
  font-size: 0.9em;
}
#reviews .card .card-footer {
  font-weight: 700;
  color: #929292;
}
/* FAQ
################################################## */
#faq .item {
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 0.25rem;
}
#faq .item:last-child {
  margin-bottom: 0;
}
#faq .item h3 {
  margin: 0;
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  color: #acacac;
}
#faq .item h3 i {
  display: block;
  font-size: 1.4em;
  color: #c5c5c5;
}
@media (max-width: 767px) {
  #faq .item h3 {
    margin-bottom: 10px;
    text-align: left;
  }
  #faq .item h3 i {
    display: inline;
  }
}
@media (max-width: 575px) {
  #faq .item h3 {
    text-transform: uppercase;
  }
}
#faq .item .card {
  border-color: #e4e4e4;
}
#faq .item .card .card-header {
  padding: 0;
}
#faq .item .card .card-header h4 {
  margin: 0;
  padding: 15px;
  font-size: 1.2em;
  font-weight: 700;
  color: #464646;
  background-color: #e4e4e4;
  cursor: pointer;
  transition:  background-color 0.1s 0s ease;
}
#faq .item .card .card-header h4 .action {
  margin-right: 15px;
}
#faq .item .card .card-header h4 .action i.fa-plus-square {
  display: none;
}
#faq .item .card .card-header h4 .action i.fa-minus-square {
  display: inline;
}
#faq .item .card .card-header h4 .action i:before {
  width: auto;
}
#faq .item .card .card-header h4.collapsed {
  color: #797979;
  background-color: #fff;
}
#faq .item .card .card-header h4.collapsed .action {
  color: #acacac;
}
#faq .item .card .card-header h4.collapsed .action i.fa-minus-square {
  display: none;
}
#faq .item .card .card-header h4.collapsed .action i.fa-plus-square {
  display: inline;
}
@media (max-width: 767px) {
  #faq .item .card .card-header h4 {
    font-size: 1.1em;
  }
}
#faq .item .card .card-body {
  color: #464646;
}
#faq .item .card .card-body p:last-child {
  margin-bottom: 0;
}
/* ABOUT
################################################## */
@media (max-width: 991px) {
  #about h2.section {
    display: block !important;
  }
}
#about .timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0%;
  width: 100%;
}
#about .timeline .history {
  width: 45%;
  list-style: none;
}
@media (max-width: 991px) {
  #about .timeline .history {
    width: 40%;
  }
}
@media (max-width: 767px) {
  #about .timeline .history {
    width: 100%;
    padding: 10px;
  }
}
#about .timeline .history .history-heading {
  position: relative;
  width: 100%;
  padding: 10px;
}
#about .timeline .history .history-heading h2 {
  margin: 0;
  color: white;
  font-size: 20px;
}
#about .timeline .history .history-body {
  width: 100%;
}
#about .timeline .history .history-body .img-container {
  background-color: #fefefe;
}
#about .timeline .history .history-body .img-container img {
  max-width: 100%;
  height: auto;
}
#about .timeline .history .history-body .text {
  padding: 20px 10px;
  background-color: #f8f8f8;
}
#about .timeline .history .history-body .text h3 {
  font-size: 20px;
  font-weight: 600;
}
#about .timeline .history .out-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-style: solid;
  border-width: 2px;
  border-color: red;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  #about .timeline .history .out-circle {
    display: none;
  }
}
#about .timeline .history .out-circle .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
}
#about .timeline .left .history-heading .arrow {
  position: absolute;
  width: 0;
  height: 0;
  right: -25px;
  top: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}
@media (max-width: 767px) {
  #about .timeline .left .history-heading .arrow {
    display: none;
  }
}
#about .timeline .right {
  align-self: flex-end;
}
#about .timeline .right .history-heading .arrow {
  position: absolute;
  width: 0;
  height: 0;
  left: -25px;
  top: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}
@media (max-width: 767px) {
  #about .timeline .right .history-heading .arrow {
    display: none;
  }
}
#about .timeline .divider {
  position: absolute;
  height: 100%;
  border-right: 2px solid #f8f8f8;
  align-self: center;
}
@media (max-width: 767px) {
  #about .timeline .divider {
    display: none;
  }
}
.cart-shipping-block i {
  font-size: 2.5em;
}
.cart-shipping-block p {
  color: #000000;
  font-size: 0.9em;
}
/* TIPS
################################################## */
.tips {
  padding-top: 6px;
  padding-bottom: 6px;
  text-align: center;
}
.tips i {
  display: block;
  font-size: 1.7em;
  padding: 5px 0;
}
.tips .title {
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 700;
  color: #444;
}
@media (max-width: 767px) {
  .tips .title {
    font-size: 0.85em;
  }
}
.tips .description {
  font-size: 0.9em;
  color: #777;
}
@media (max-width: 991px) {
  .tips .description {
    display: none;
  }
}
/* PORTFOLIOS
################################################## */
#portfolios .title {
  font-size: 0.9em;
  font-weight: 700;
}
@media (max-width: 767px) {
  #portfolios .title {
    font-size: 0.85em;
  }
}
#portfolios .description {
  font-size: 0.9em;
}
@media (max-width: 767px) {
  #portfolios .description {
    font-size: 0.85em;
  }
}
/* SOCIAL
################################################## */
@media (min-width: 768px) {
  #contact #social {
    margin-bottom: 0;
  }
}
/* SESSION
################################################## */
#connecting {
  padding: 90px 0;
  text-align: center;
  text-transform: lowercase;
  font-size: 0.9em;
  font-weight: 700;
  color: #797979;
}
#connecting h2 {
  margin-bottom: 0;
}
#connecting h2 i {
  display: block;
  font-size: 1.4em;
}
#welcome h2 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#login div.holder {
  padding: 15px 0;
}
#login div.holder h2 {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.3em;
  font-weight: 700;
}
#login .divider {
  height: 13px;
  margin: 15px 0 23px 0;
  text-align: center;
  border-bottom: 1px solid #f8f8f8;
}
#login .divider span {
  font-size: 0.8em;
  line-height: 25px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 15px;
  background-color: #fff;
  color: #9f9f9f;
}
@media (max-width: 991px) {
  #login #login_provider_google {
    margin-bottom: 5px;
  }
}
#login #login_holder_anonymously {
  border-radius: 0.25rem;
}
#login #login_holder_anonymously #login_holder_anonymously_div_icon {
  text-align: center;
  font-size: 2em;
}
@media (max-width: 1199px) {
  #login #login_holder_anonymously {
    margin-top: 15px;
    background-color: transparent;
  }
  #login #login_holder_anonymously .holder {
    padding: 15px;
    border-radius: 0.25rem;
  }
}
#login p.instructions {
  margin-bottom: 15px;
  font-size: 0.9em;
  color: #5f5f5f;
}
#login .btn.btn-login {
  padding-left: 45px;
  text-align: left;
  text-transform: none;
  font-size: 1em;
  line-height: 24px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 38px 38px;
}
#login .btn.btn-login.btn-google {
  color: #fff;
  background-color: #4285f4;
  border-color: #4285f4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='3 3 40 40'%3E%3Cfilter height='200%25' width='200%25' id='A' y='-50%25' x='-50%25'%3E%3CfeOffset in='SourceAlpha' dy='1'/%3E%3CfeGaussianBlur stdDeviation='.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.168 0' result='C'/%3E%3CfeOffset in='SourceAlpha'/%3E%3CfeGaussianBlur stdDeviation='.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.084 0' result='F'/%3E%3CfeMerge%3E%3CfeMergeNode in='C'/%3E%3CfeMergeNode in='F'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3Cg transform='translate(-1 -1)'%3E%3Cpath fill='%23fff' d='M2 0h36a2 2 0 0 1 2 2v36a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z' transform='translate(4 4)' stroke-width='5.745' filter='url(%23A)'/%3E%3Cpath fill='%234285f4' d='M32.64 24.205a10.47 10.47 0 0 0-.164-1.841H24v3.48h4.844c-.21 1.125-.843 2.08-1.796 2.717v2.258h2.91c1.7-1.567 2.684-3.875 2.684-6.615z'/%3E%3Cpath fill='%2334a853' d='M24 33c2.43 0 4.467-.806 5.957-2.18l-2.91-2.258c-.806.54-1.837.86-3.048.86-2.344 0-4.328-1.582-5.036-3.7h-3.007v2.332C17.438 30.983 20.482 33 24 33z'/%3E%3Cpath fill='%23fbbc05' d='M18.964 25.7c-.18-.54-.282-1.116-.282-1.7a5.44 5.44 0 0 1 .282-1.71v-2.332h-3.007C15.348 21.173 15 22.548 15 24a9.01 9.01 0 0 0 .957 4.042l3.007-2.332z'/%3E%3Cpath fill='%23ea4335' d='M24 18.58c1.32 0 2.508.454 3.44 1.346l2.58-2.58C28.463 15.892 26.426 15 24 15c-3.518 0-6.562 2.017-8.043 4.958l3.007 2.332c.708-2.127 2.692-3.7 5.036-3.7z'/%3E%3C/g%3E%3C/svg%3E");
}
#login .btn.btn-login.btn-facebook {
  color: #fff;
  background-color: #4267b2;
  border-color: #4267b2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cfilter width='200%25' height='200%25' id='A' y='-50%25' x='-50%25'%3E%3CfeOffset in='SourceAlpha' dy='1'/%3E%3CfeGaussianBlur stdDeviation='.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.168 0' result='A'/%3E%3CfeOffset in='SourceAlpha'/%3E%3CfeGaussianBlur stdDeviation='.5'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.084 0' result='B'/%3E%3CfeMerge%3E%3CfeMergeNode in='A'/%3E%3CfeMergeNode in='B'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3Cg filter='url(%23A)'%3E%3Cpath fill='%23fff' d='M2.036 0h36a2 2 0 0 1 2 2v36a2 2 0 0 1-2 2h-36a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z'/%3E%3C/g%3E%3Cpath fill='%234267b2' d='M20.966 33.282V21.907h3.816l.57-4.435h-4.4V14.64c0-1.284.347-2.16 2.197-2.16h2.34V8.514c-.407-.052-1.8-.173-3.42-.173-3.387 0-5.703 2.066-5.703 5.86v3.27h-3.828v4.435h3.828v11.367l4.578.001.012.007z'/%3E%3C/svg%3E");
}
#login .nav-tabs {
  margin-bottom: 30px;
}
@media (max-width: 383px) {
  #login .nav-tabs i {
    display: none;
  }
}
#login .agreement {
  margin-top: 15px;
}
#login .agreement ul {
  margin-top: 0.25rem;
  list-style: none;
  padding-left: 0;
  font-size: 0.8em;
}
#login .agreement ul a {
  text-decoration: underline;
}
#login .agreement .custom-control-label {
  overflow: hidden;
}
/* ORDERS
################################################## */
#orders .card {
  margin-bottom: 15px;
}
#orders .card .card-header {
  padding: 10px;
}
#orders .card .card-header .badge {
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
}
#orders .card .card-body {
  padding: 15px;
}
#orders .card .card-body h6.card-title {
  margin: 0;
  font-weight: 700;
}
#orders .card .card-body ul {
  margin-bottom: 15px;
  padding-left: 17px;
  list-style-type: square;
  font-size: 0.9em;
}
#orders .card .card-body .table {
  margin-bottom: 0;
}
#orders .card .card-body .table-bordered th,
#orders .card .card-body .table-bordered td {
  vertical-align: middle;
}
#orders .card .card-body .table-bordered th {
  border-color: #797979;
}
#orders .card .card-body .table-bordered td {
  border-color: #ebebeb;
}
#orders .card .card-body .table thead {
  font-size: 0.8em;
  text-transform: uppercase;
}
#orders .card .card-body .table thead tr th {
  color: #c9d0d7;
  background-color: #525252;
  border-bottom: 0;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
}
#orders .card .card-body .table thead tr th.photo,
#orders .card .card-body .table tbody tr td.photo {
  width: 60px;
  text-align: center;
}
#orders .card .card-body .table tbody tr td.thumbnail {
  white-space: normal;
  overflow: hidden;
  text-overflow: clip;
}
#orders .card .card-body .table tbody tr td.thumbnail img {
  border-radius: 0.25rem;
}
#orders .card .card-body .table thead tr th.number,
#orders .card .card-body .table tbody tr td.number {
  width: 105px;
  text-align: center;
}
#orders .card .card-body .table thead tr th.money,
#orders .card .card-body .table tbody tr td.money {
  width: 140px;
  text-align: right;
}
#orders .card .card-body .table tbody tr th.table-pretotal {
  color: #fff;
  background-color: #acacac;
  border-color: #9f9f9f;
}
#orders .card .card-body .table tbody tr th.table-total {
  color: #fff;
  background-color: #929292;
  border-color: #929292;
}
#orders .card .card-body .table tbody tr td.money.table-soft {
  background-color: #f0f0f0;
  border-color: #d7d7d7;
}
#orders .card .card-body .table tbody tr td.money.table-hard {
  background-color: #d7d7d7;
  border-color: #cacaca;
}
/* CART
################################################## */
@media (max-width: 767px) {
  #cart .aside {
    margin-bottom: 15px;
    height: auto;
  }
}
#cart #cart_list {
  background-color: white;
}
#cart #cart_list table.table tr.multiple {
  background-color: #fbfbfb;
}
#cart #cart_list table.table tr.subtotal {
  background-color: #f0f0f0;
  border-bottom: 2px solid #fff;
}
#cart #cart_list table.table tr.subtotal td {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 0.95em;
}
#cart #cart_list table.table tr.subtotal td.info {
  font-size: 0.85em;
  font-weight: 700;
  color: #5f5f5f;
}
#cart #cart_list table.table tr.subtotal td.info span {
  text-transform: uppercase;
}
#cart #cart_list table.table tr.subtotal td.value .price .value {
  color: #5f5f5f;
}
#cart #cart_list table.table tr.subtotal td.value .price .cents {
  color: #797979;
}
#cart #cart_list table.table tr.subtotal td.value .price .value:before {
  color: #797979;
}
#cart #cart_list table.table td {
  padding: 10px;
  vertical-align: middle;
}
#cart #cart_list table.table td.thumbnail {
  width: 80px;
}
#cart #cart_list table.table td.thumbnail img {
  padding: 5px;
  width: 80px;
  height: 80px;
  border: 1px solid #eeeeee;
  border-radius: 0.25rem;
}
@media (max-width: 575px) {
  #cart #cart_list table.table td.thumbnail {
    vertical-align: top;
    width: 40px;
  }
  #cart #cart_list table.table td.thumbnail img {
    padding: 0;
    width: 40px;
    height: 40px;
  }
}
#cart #cart_list table.table td.info h4 {
  margin-bottom: 0;
  font-size: 1.1em;
  font-weight: 700;
}
@media (max-width: 575px) {
  #cart #cart_list table.table td.info h4 {
    font-size: 1em;
  }
}
#cart #cart_list table.table td.info h4 span.strike {
  text-decoration: line-through;
  color: #797979;
}
#cart #cart_list table.table td.info h4 span.stock {
  display: block;
  font-size: 0.7em;
  color: #43A047;
}
#cart #cart_list table.table td.info h4 span.stock.low {
  color: #e53935;
}
#cart #cart_list table.table td.info .properties {
  margin: 3px 0 7px 0;
  font-size: 0.9em;
}
#cart #cart_list table.table td.info .properties .item strong {
  color: #525252;
}
#cart #cart_list table.table td.info .properties .color .label {
  margin-right: 10px;
  padding: 0 3px;
  font-weight: 700;
  border-radius: 0.25rem;
}
#cart #cart_list table.table td.info .properties .color .label.white {
  border: 1px solid #acacac;
}
#cart #cart_list table.table td.info .properties .attribute {
  margin-right: 10px;
}
#cart #cart_list table.table td.info .properties .attribute:last-child {
  margin-right: 0;
}
#cart #cart_list table.table td.info .properties .product_custom_value {
  display: block;
  margin-top: 3px;
  font-size: 0.9em;
  line-height: 16px;
}
@media (max-width: 991px) {
  #cart #cart_list table.table td.info .properties .item {
    display: block;
  }
  #cart #cart_list table.table td.info .properties .color .label {
    margin-right: 0;
  }
  #cart #cart_list table.table td.info .properties .attribute {
    margin-right: 0;
  }
}
#cart #cart_list table.table td.info .amount {
  font-size: 0.7em;
  line-height: 30px;
}
#cart #cart_list table.table td.info .amount select {
  float: left;
  width: auto;
  font-size: 0.8rem;
}
#cart #cart_list table.table td.info .amount .delete {
  margin-left: 5px;
  text-transform: uppercase;
  text-decoration: underline;
  color: #acacac;
  cursor: pointer;
}
#cart #cart_list table.table td.value {
  text-align: right;
  white-space: nowrap;
}
#cart #cart_list table.table td.value .full {
  font-size: 1.2em;
}
#cart #cart_list table.table td.value .tax {
  font-size: 0.95em;
  font-weight: 700;
  color: #b8b8b8;
}
#cart #cart_list table.table td.value .tax i {
  color: #d2d2d2;
}
#cart #cart_list table.table td.value .tax .price .value {
  color: #acacac;
}
#cart #cart_list table.table td.value .tax .price .cents {
  color: #c5c5c5;
}
#cart #cart_list table.table td.value .tax .price .value:before {
  color: #c5c5c5;
}
@media (max-width: 575px) {
  #cart #cart_list table.table td.value .full {
    font-size: 1em;
  }
  #cart #cart_list table.table td.value .tax {
    font-size: 0.8em;
  }
}
#cart #cart_list table.table.placeholder td div {
  border-radius: 0.25rem;
  background-color: #f8f8f8;
}
#cart #cart_list table.table.placeholder td div.title {
  width: 50%;
}
#cart #cart_list table.table.placeholder td div.description {
  margin-top: 5px;
  width: 100%;
}
#cart #cart_keep {
  margin-top: 15px;
}
/* QUOTE
################################################## */
@media (max-width: 767px) {
  #quote .aside {
    margin-bottom: 15px;
    height: auto;
  }
}
#quote .aside .checkout {
  background-color: transparent;
}
#quote #cart_list {
  background-color: white;
}
#quote #cart_list table.table tr.multiple {
  background-color: #fbfbfb;
}
#quote #cart_list table.table tr.subtotal {
  background-color: #f0f0f0;
  border-bottom: 2px solid #fff;
}
#quote #cart_list table.table tr.subtotal td {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 0.95em;
}
#quote #cart_list table.table tr.subtotal td.info {
  font-size: 0.85em;
  font-weight: 700;
  color: #5f5f5f;
}
#quote #cart_list table.table tr.subtotal td.info span {
  text-transform: uppercase;
}
#quote #cart_list table.table tr.subtotal td.value .price .value {
  color: #5f5f5f;
}
#quote #cart_list table.table tr.subtotal td.value .price .cents {
  color: #797979;
}
#quote #cart_list table.table tr.subtotal td.value .price .value:before {
  color: #797979;
}
#quote #cart_list table.table td {
  padding: 10px;
  vertical-align: middle;
}
#quote #cart_list table.table td.thumbnail {
  width: 80px;
}
#quote #cart_list table.table td.thumbnail img {
  padding: 5px;
  width: 80px;
  height: 80px;
  border: 1px solid #eeeeee;
  border-radius: 0.25rem;
}
@media (max-width: 575px) {
  #quote #cart_list table.table td.thumbnail {
    vertical-align: top;
    width: 40px;
  }
  #quote #cart_list table.table td.thumbnail img {
    padding: 0;
    width: 40px;
    height: 40px;
  }
}
#quote #cart_list table.table td.info h4 {
  margin-bottom: 0;
  font-size: 1.1em;
  font-weight: 700;
}
@media (max-width: 575px) {
  #quote #cart_list table.table td.info h4 {
    font-size: 1em;
  }
}
#quote #cart_list table.table td.info h4 span.strike {
  text-decoration: line-through;
  color: #797979;
}
#quote #cart_list table.table td.info h4 span.stock {
  display: block;
  font-size: 0.7em;
  color: #43A047;
}
#quote #cart_list table.table td.info h4 span.stock.low {
  color: #e53935;
}
#quote #cart_list table.table td.info .properties {
  margin: 3px 0 7px 0;
  font-size: 0.9em;
}
#quote #cart_list table.table td.info .properties .item strong {
  color: #525252;
}
#quote #cart_list table.table td.info .properties .color .label {
  margin-right: 10px;
  padding: 0 3px;
  font-weight: 700;
  border-radius: 0.25rem;
}
#quote #cart_list table.table td.info .properties .color .label.white {
  border: 1px solid #acacac;
}
#quote #cart_list table.table td.info .properties .attribute {
  margin-right: 10px;
}
#quote #cart_list table.table td.info .properties .attribute:last-child {
  margin-right: 0;
}
#quote #cart_list table.table td.info .properties .product_custom_value {
  display: block;
  margin-top: 3px;
  font-size: 0.9em;
  line-height: 16px;
}
@media (max-width: 991px) {
  #quote #cart_list table.table td.info .properties .item {
    display: block;
  }
  #quote #cart_list table.table td.info .properties .color .label {
    margin-right: 0;
  }
  #quote #cart_list table.table td.info .properties .attribute {
    margin-right: 0;
  }
}
#quote #cart_list table.table td.info .amount {
  font-size: 0.7em;
  line-height: 30px;
}
#quote #cart_list table.table td.info .amount select {
  float: left;
  width: auto;
  font-size: 0.8rem;
}
#quote #cart_list table.table td.info .amount .delete {
  margin-left: 5px;
  text-transform: uppercase;
  text-decoration: underline;
  color: #acacac;
  cursor: pointer;
}
#quote #cart_list table.table td.value {
  text-align: right;
  white-space: nowrap;
}
#quote #cart_list table.table td.value .full {
  font-size: 1.2em;
}
#quote #cart_list table.table td.value .tax {
  font-size: 0.95em;
  font-weight: 700;
  color: #b8b8b8;
}
#quote #cart_list table.table td.value .tax i {
  color: #d2d2d2;
}
#quote #cart_list table.table td.value .tax .price .value {
  color: #acacac;
}
#quote #cart_list table.table td.value .tax .price .cents {
  color: #c5c5c5;
}
#quote #cart_list table.table td.value .tax .price .value:before {
  color: #c5c5c5;
}
@media (max-width: 575px) {
  #quote #cart_list table.table td.value .full {
    font-size: 1em;
  }
  #quote #cart_list table.table td.value .tax {
    font-size: 0.8em;
  }
}
#quote #cart_list table.table.placeholder td div {
  border-radius: 0.25rem;
  background-color: #f8f8f8;
}
#quote #cart_list table.table.placeholder td div.title {
  width: 50%;
}
#quote #cart_list table.table.placeholder td div.description {
  margin-top: 5px;
  width: 100%;
}
#quote #cart_keep {
  margin-top: 15px;
}
#quote .agreement {
  margin-top: 10px;
  font-size: 0.9em;
}
#quote .agreement ul {
  margin-top: 0.25rem;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  font-size: 0.8em;
}
#quote .agreement a {
  color: #797979;
  text-decoration: underline;
}
#quote .agreement .custom-control-label {
  overflow: hidden;
}
/* CHECKOUT
################################################## */
#checkout .steps {
  margin-bottom: 15px;
}
#checkout .steps ul li {
  font-weight: 700;
}
#checkout h3.step {
  display: none;
  margin-bottom: 15px;
  font-size: 1.4em;
  font-weight: 700;
}
@media (max-width: 767px) {
  #checkout h3.step {
    display: block;
  }
}
@media (max-width: 991px) {
  #checkout div.aside {
    margin-top: 15px;
    height: auto;
  }
}
#checkout div.aside button:disabled {
  cursor: not-allowed;
}
#checkout #checkout_address_tab {
  margin-bottom: 15px;
}
#checkout #checkout_address #checkout_address_edit_holder {
  padding: 15px;
  text-align: center;
  background-color: #f8f8f8;
  border: 5px dashed #ebebeb;
  border-radius: 0.25rem;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
}
#checkout #checkout_address .select_item .item {
  margin-top: 15px;
  border: 3px solid #f8f8f8;
  background-color: white;
  border-radius: 0.25rem;
}
#checkout #checkout_address .select_item .item label {
  font-weight: 700;
  text-transform: uppercase;
}
#checkout #checkout_address .select_item .item .info {
  padding: 10px 10px 5px 10px;
}
#checkout #checkout_address .select_item .item .info .address {
  line-height: 20px;
}
#checkout #checkout_address .select_item .item .info .instructions {
  font-size: 0.95em;
  color: #797979;
}
#checkout #checkout_address .select_item .item .info .location {
  margin-bottom: 5px;
  font-size: 0.95em;
  color: #929292;
}
#checkout #checkout_address .select_item .item .info .location i {
  margin-right: 5px;
}
#checkout #checkout_address .select_item .item .info .location i:before {
  width: auto;
}
#checkout #checkout_address .select_item .item .actions {
  padding: 10px;
  text-align: right;
  background-color: #f8f8f8;
  transition:  background-color 0.5s 0s ease;
}
#checkout #checkout_address .select_item .item .actions .makeprincipal {
  margin-right: 5px;
}
#checkout #checkout_address .select_item .item .actions .delete {
  margin-left: 5px;
}
#checkout #checkout_address .select_item .item.placeholder {
  padding: 10px;
}
#checkout #checkout_address .select_item .item.placeholder div {
  border-radius: 0.25rem;
  background-color: #f8f8f8;
}
#checkout #checkout_address .select_item .item.placeholder div.title {
  width: 50%;
}
#checkout #checkout_address .select_item .item.placeholder div.description {
  margin-top: 5px;
  width: 100%;
}
@media (max-width: 767px) {
  #checkout #checkout_address .select_item .item.placeholder:not(:first-child) {
    display: none;
  }
}
#checkout #checkout_payment ul.methods {
  list-style-type: none;
  padding: 5px;
  background-color: #f8f8f8;
  /* desktop */
  /* mobile */
}
#checkout #checkout_payment ul.methods li a {
  display: block;
  text-decoration: none;
  color: #929292;
  background-color: #f0f0f0;
  transition:  color 0.1s 0s ease, box-shadow 0.75s 0s ease;
}
#checkout #checkout_payment ul.methods li a:hover {
  color: #5f5f5f;
}
#checkout #checkout_payment ul.methods li a.active {
  font-weight: 600;
  background-color: #fff;
}
@media (min-width: 992px) {
  #checkout #checkout_payment ul.methods {
    height: 100%;
    padding-right: 0;
    -webkit-border-radius: 0;
    -webkit-border-top-left-radius: 0.25rem;
    -webkit-border-bottom-left-radius: 0.25rem;
    -moz-border-radius: 0;
    -moz-border-radius-topleft: 0.25rem;
    -moz-border-radius-bottomleft: 0.25rem;
    border-radius: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  #checkout #checkout_payment ul.methods li {
    margin-bottom: 5px;
  }
  #checkout #checkout_payment ul.methods li:last-child {
    margin-bottom: 0;
  }
  #checkout #checkout_payment ul.methods li a {
    padding-right: 10px;
    line-height: 40px;
    text-align: right;
  }
  #checkout #checkout_payment ul.methods li a i {
    float: left;
    margin: 5px 0 0 5px;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #acacac;
    border-radius: 50%;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
    transition:  background-color 0.1s 0s ease, transform 0.1s 0s ease;
  }
  #checkout #checkout_payment ul.methods li a i:before {
    width: auto;
  }
  #checkout #checkout_payment ul.methods li a:active i {
    transform: scale(0.8);
  }
  #checkout #checkout_payment ul.methods li a.active i {
    margin: 3px 0 0 3px;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 1.1em;
  }
}
@media (max-width: 991px) {
  #checkout #checkout_payment ul.methods {
    display: flex;
    padding-bottom: 0;
    -webkit-border-top-left-radius: 0.25rem;
    -webkit-border-top-right-radius: 0.25rem;
    -moz-border-radius-topleft: 0.25rem;
    -moz-border-radius-topright: 0.25rem;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  #checkout #checkout_payment ul.methods li {
    flex: 1;
    margin-right: 5px;
    margin-bottom: 0;
  }
  #checkout #checkout_payment ul.methods li:last-child {
    margin-right: 0;
  }
  #checkout #checkout_payment ul.methods li a {
    padding: 5px 0;
    line-height: 25px;
    text-align: center;
    -webkit-border-top-left-radius: 0.25rem;
    -webkit-border-top-right-radius: 0.25rem;
    -moz-border-radius-topleft: 0.25rem;
    -moz-border-radius-topright: 0.25rem;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  #checkout #checkout_payment ul.methods li a i {
    display: block;
    font-size: 1.5em;
  }
  #checkout #checkout_payment ul.methods li a.active {
    box-shadow: 0 -1px 3px 0 rgba(121, 121, 121, 0.2);
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  #checkout #checkout_payment ul.methods li a {
    font-size: 0.9em;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  #checkout #checkout_payment ul.methods li a {
    padding: 10px 0;
  }
  #checkout #checkout_payment ul.methods li a span {
    display: none;
  }
}
#checkout #checkout_payment_list table.table {
  margin-bottom: 0;
}
#checkout #checkout_payment_list table.table td.thumbnail {
  vertical-align: top;
  padding: 10px 10px 10px 0;
  width: 50px;
}
#checkout #checkout_payment_list table.table td.thumbnail img {
  width: 50px;
  height: 50px;
  border-radius: 0.25rem;
}
#checkout #checkout_payment_list table.table td.info {
  vertical-align: middle;
  padding: 10px 0;
}
#checkout #checkout_payment_list table.table td.info h6 {
  margin-bottom: 3px;
  font-size: 0.9em;
  font-weight: 700;
  color: #464646;
}
#checkout #checkout_payment_list table.table td.info .properties {
  font-size: 0.85em;
}
#checkout #checkout_payment_list table.table td.info .properties .item {
  display: block;
}
#checkout #checkout_payment_list table.table td.info .properties .item strong {
  color: #525252;
}
#checkout #checkout_payment_list table.table td.info .properties .color .label {
  padding: 0 3px;
  font-weight: 700;
  border-radius: 0.25rem;
}
#checkout #checkout_payment_list table.table td.info .properties .color .label.white {
  border: 1px solid #acacac;
}
#checkout #checkout_done div.thanks {
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-align: center;
  font-weight: 700;
  color: #5f5f5f;
  background-color: #ffffff;
  border: 5px dashed #f3f3f3;
  border-radius: 0.25rem;
}
#checkout #checkout_done div.thanks i.icon-thumbs-up {
  display: block;
  font-size: 2em;
  color: #9f9f9f;
}
#checkout #checkout_done div.thanks .ready {
  margin-bottom: 10px;
  font-size: 1.4em;
  line-height: 25px;
}
#checkout #checkout_done div.thanks .ready .name {
  color: #464646;
}
#checkout #checkout_done div.thanks .order {
  margin-bottom: 10px;
  font-size: 1.1em;
}
#checkout #checkout_done div.thanks .order a {
  text-decoration: underline;
  color: #525252;
}
#checkout #checkout_done div.thanks ul.type {
  margin-bottom: 10px;
  padding-left: 0;
  list-style-type: none;
  font-size: 0.85em;
}
#checkout #checkout_done div.thanks .extras {
  font-size: 0.75em;
  font-weight: 400;
}
#checkout #checkout_done div.thanks .extras a {
  text-decoration: underline;
  color: #5f5f5f;
}
@media (max-width: 767px) {
  #checkout #checkout_done div.thanks {
    font-size: 0.9em;
  }
}
@media (max-width: 575px) {
  #checkout #checkout_done div.thanks {
    font-size: 0.8em;
  }
}
#checkout #checkout_done div.aside table.table {
  margin-bottom: 0;
}
#checkout #checkout_done #checkout_done_data_delivery_address .label {
  font-weight: 700;
}
#checkout #checkout_done #checkout_done_data_delivery_address .address {
  line-height: 20px;
}
#checkout #checkout_done #checkout_done_data_delivery_address .instructions {
  font-size: 0.95em;
  color: #797979;
}
#checkout #checkout_done #checkout_done_data_delivery_address .location {
  font-size: 0.95em;
}
#checkout #checkout_done #checkout_done_data_delivery_address .location i {
  margin-right: 5px;
}
#checkout #checkout_done #checkout_done_data_delivery_address .location i:before {
  width: auto;
}
#checkout .agreement {
  margin-top: 10px;
  font-size: 0.9em;
}
#checkout .agreement ul {
  margin-top: 0.25rem;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  font-size: 0.8em;
}
#checkout .agreement a {
  color: #797979;
  text-decoration: underline;
}
#checkout .agreement .custom-control-label {
  overflow: hidden;
}
#checkout h5 {
  font-size: 1.2em;
  font-weight: 700;
}
#checkout h5.extra {
  margin-top: 30px;
  margin-bottom: 10px;
}
#checkout p.additional {
  margin-bottom: 15px;
}
#checkout div.bullets {
  border-radius: 0.25rem;
}
#checkout div.bullets div.step {
  margin-bottom: 30px;
  color: #6c6c6c;
}
#checkout div.bullets div.step:last-child {
  margin-bottom: 0;
}
#checkout div.bullets div.step div.title {
  margin-bottom: 5px;
  padding: 2px;
  font-weight: 700;
  text-transform: uppercase;
}
#checkout div.bullets div.step p {
  margin: 0;
  line-height: 20px;
  font-size: 0.95em;
}
#checkout div.bullets div.step div.bank {
  margin: 10px 0;
}
#checkout div.bullets div.step div.bank img {
  max-width: 100%;
}
#checkout div.bullets div.step ul {
  margin: 10px 0;
  padding-left: 30px;
  list-style-type: square;
  line-height: 20px;
  font-size: 0.95em;
}
#checkout div.bullets div.step ul li {
  margin-bottom: 10px;
}
#checkout div.bullets div.step .holder {
  margin-top: 15px;
}
#checkout #support_checkout {
  margin-top: 15px;
  text-transform: none;
}
#checkout .cancel-btn-icon {
  outline: none;
  box-shadow: none;
}
#checkout .cancel-btn-icon:hover {
  color: red;
}
#checkout #promo-container {
  padding: 0 15px;
}
#checkout #promo-container #have_promo_label {
  color: #acacac;
}
#checkout #promo-container #have_promo_label:hover {
  color: #464646;
  font-weight: 500;
}
#checkout #promo-container input {
  height: 100%;
  width: 100%;
  border: 1px solid #a0a0a0;
  text-transform: uppercase;
}
#checkout #promo-container .label-ask {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: black;
  text-decoration: underline;
}
#checkout #promo-container .label-ask:hover {
  cursor: pointer;
  text-decoration: underline;
  color: blue;
}
#checkout #promo-container .input-container {
  margin-bottom: 1rem;
}
#checkout #promo-container .input-container .apply-btn {
  margin-top: 0.5rem;
  color: white;
  background-color: #a0a0a0;
  border-color: #a0a0a0;
  width: 100%;
  border: 1px solid transparent;
}
#checkout #promo-container .input-container .apply-btn:hover {
  background-color: #6d6d6d;
  border-color: #6d6d6d;
}
#checkout #promo-container .input-container .cancel-btn {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: none;
  color: black;
  font-size: 16px;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}
#checkout #promo-container .input-container .cancel-btn:hover {
  color: red;
}
#checkout_address_edit textarea {
  resize: none;
}
/* GATEWAY: DATAFAST
################################################## */
#gateway_holder_datafast {
  margin: 0 auto;
  min-height: 200px;
  max-width: 40em;
}
#gateway_holder_datafast .wpwl-form {
  margin: 30px auto 15px auto;
  max-width: 100%;
}
#gateway_holder_datafast .wpwl-label {
  font-weight: 700;
}
#gateway_holder_datafast .wpwl-control,
#gateway_holder_datafast input.wpwl-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#gateway_holder_datafast .wpwl-control:focus,
#gateway_holder_datafast input.wpwl-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #90c4f2;
  box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.25);
}
#gateway_holder_datafast .wpwl-brand {
  display: none;
}
#gateway_holder_datafast .wpwl-group-submit {
  margin-bottom: 0;
}
#gateway_holder_datafast .wpwl-button-pay {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-width: 1px;
  border-style: solid;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-transform: uppercase;
  border-radius: 0.25rem !important;
  outline: 0;
}
#gateway_holder_datafast table.table tr.total th:first-child {
  background-color: #eeeeee;
  border-bottom-left-radius: 0.25rem;
}
#gateway_holder_datafast table.table tr.total td {
  background-color: #ffffff;
  border-bottom-right-radius: 0.25rem;
}
#gateway_holder_datafast table.table tr th,
#gateway_holder_datafast table.table tr td {
  vertical-align: middle;
  border-color: #eeeeee;
  width: 50%;
}
#gateway_holder_datafast table.table tr th {
  text-transform: uppercase;
  font-size: 0.8em;
  color: #464646;
  background-color: #ffffff;
}
#gateway_holder_datafast table.table tr td.final {
  text-align: right;
  font-size: 1em;
}
/* GATEWAY: PAYMENTEZ
################################################## */
#gateway_holder_paymentez {
  margin: 30px auto 15px auto;
  max-width: 40em;
  text-align: center;
}
.payment-checkout-modal payment-checkout-modal--visible {
  z-index: 99999;
}
/* GATEWAY: PAYPHONE
################################################## */
.btn-payphone-primary::before {
  content: "";
  display: inline-block;
  background-image: url("../img/cc/payphone.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
  height: 1.6rem;
}
/* GATEGAY: coinbase
################################################## */
#checkout_payment_coinbase_overlay {
  z-index: 99999;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  min-height: 100%;
  min-width: 100%;
  max-height: 100%;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
#checkout_payment_coinbase_overlay div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  max-width: 350px;
}
#checkout_payment_coinbase_overlay div a {
  color: #ffffff;
  border-bottom: 1px solid white;
  text-decoration: none;
  font-weight: bold;
}
#checkout_payment_coinbase_overlay i {
  font-size: 2.2em;
}
#checkout_payment_stripe_overlay {
  z-index: 99999;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  min-height: 100%;
  min-width: 100%;
  max-height: 100%;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
#checkout_payment_stripe_overlay div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  max-width: 350px;
}
#checkout_payment_stripe_overlay div a {
  color: #ffffff;
  border-bottom: 1px solid white;
  text-decoration: none;
  font-weight: bold;
}
#checkout_payment_stripe_overlay i {
  font-size: 2.2em;
}
#checkout_payment_coinbase {
  background-color: #0249f6;
  color: white;
}
#checkout_payment_coinbase:hover {
  background-color: #0241dd;
}
#checkout_payment_stripe {
  background-color: #556cd6;
  color: white;
}
#checkout_payment_stripe:hover {
  background-color: #405ad1;
}
#checkout_payment_mercadopago {
  background-color: #023263;
  color: white;
}
#checkout_payment_mercadopago:hover {
  background-color: #01254a;
}
#checkout_payment_mercadopago_overlay {
  z-index: 99999;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  min-height: 100%;
  min-width: 100%;
  max-height: 100%;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
#checkout_payment_mercadopago_overlay div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  max-width: 350px;
}
#checkout_payment_mercadopago_overlay div a {
  color: #ffffff;
  border-bottom: 1px solid white;
  text-decoration: none;
  font-weight: bold;
}
#checkout_payment_mercadopago_overlay i {
  font-size: 2.2em;
}
#product_whatsapp_modal .agreement {
  margin-top: 10px;
  font-size: 0.9em;
}
#product_whatsapp_modal .agreement ul {
  margin-top: 0.25rem;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  font-size: 0.8em;
}
#product_whatsapp_modal .agreement a {
  color: #797979;
  text-decoration: underline;
}
#product_whatsapp_modal .agreement .custom-control-label {
  overflow: hidden;
}
#contact .agreement {
  margin-top: 10px;
  font-size: 0.9em;
}
#contact .agreement ul {
  margin-top: 0.25rem;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  font-size: 0.8em;
}
#contact .agreement a {
  color: #797979;
  text-decoration: underline;
}
#contact .agreement .custom-control-label {
  overflow: hidden;
}
/* WHATSAPP
################################################## */
#whatsapp_now {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 18px;
  right: 18px;
  text-align: center;
  font-size: 2.2em;
  color: #fff;
  background-color: #25d366;
  border: 2px solid #61e392;
  border-radius: 50%;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition:  transform 0.2s 0s ease, background-color 0.3s 0s ease;
}
#whatsapp_now.move {
  bottom: 80px;
}
#whatsapp_now:active {
  transform: scale(0.9);
}
#whatsapp_now:hover {
  background-color: #21bd5c;
}
/* COPYRIGHT
################################################## */
#copyright {
  padding: 15px 0;
  font-size: 0.8em;
  line-height: 20px;
  color: #666;
  background-color: #000;
}
@media (max-width: 575px) {
  #copyright {
    text-align: center;
  }
}
@media (max-width: 383px) {
  #copyright {
    text-align: center;
    font-size: 0.65em;
  }
}
#copyright .links a {
  text-decoration: underline;
  color: #666;
}
#copyright .links a:hover {
  color: #999;
}
#copyright .logos {
  margin-top: 5px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
}
#copyright .logos a {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
  transition:  opacity 0.1s 0s ease;
}
#copyright .logos a:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
#copyright a.top {
  float: right;
  margin-top: 15px;
  font-size: 3em;
  color: #666;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  transition:  color 0.1s 0s ease, transform 0.1s 0s ease;
}
#copyright a.top:hover {
  color: #999;
}
#copyright a.top:active {
  transform: scale(0.9);
}
/* LEGAL
################################################## */
#legal ul.nav {
  font-size: 0.9em;
  font-weight: 700;
}
#legal h2 {
  margin-bottom: 15px;
  font-size: 1.5em;
  font-weight: 700;
}
#legal a {
  color: #ec1f49;
}
#legal .print {
  word-break: keep-all;
  word-wrap: break-word;
  font-family: "Lucida Console", "Courier New", Courier, monospace;
  font-size: 0.9em;
}
@media print {
  body {
    -webkit-print-color-adjust: exact;
    transform: scale(0.8);
  }
  .store-header,
  #main .aside,
  #footer,
  #copyright,
  #whatsapp_now,
  .nav {
    display: none;
  }
  #orders > div > div.col-12.col-md-8.col-lg-8.col-xl-9 > a {
    display: none;
  }
  .no-print {
    display: none !important;
  }
  @page {
    size: A4;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .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,
  .col-auto,
  .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,
  .col-sm-auto,
  .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,
  .col-md-auto,
  .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,
  .col-lg-auto,
  .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,
  .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    /* Evitar que se rompa verticalmente */
    page-break-inside: avoid;
    /* Previene el salto de página dentro de la columna */
  }
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
#maintenance {
  width: 100%;
  padding: 30px;
  margin: auto;
  text-align: center;
  color: #555;
  background-color: #fff;
  border: 15px solid #c5c5c5;
  border-radius: 0.25rem;
}
#maintenance img {
  margin-bottom: 15px;
  max-width: 300px;
}
#maintenance h2 {
  margin-bottom: 10px;
  font-size: 1.3em;
  font-weight: 700;
  color: #929292;
}
#maintenance p {
  margin-bottom: 15px;
  font-size: 0.85em;
  line-height: 18px;
}
#maintenance p.code {
  margin-bottom: 15px;
  padding: 15px;
  font-size: 0.7em;
  font-family: "Lucida Console", "Courier New", monospace;
  color: #ec1f49;
  background-color: #f8f8f8;
  border-radius: 0.25rem;
}
#maintenance p.copyright {
  margin-bottom: 0;
  font-size: 0.8em;
  color: #888;
}
#maintenance p.copyright a {
  text-decoration: underline;
  color: #acacac;
}
#maintenance a.btn {
  margin-bottom: 15px;
}
.iti {
  width: 100%;
}
.ql-align-center {
  text-align: center;
}
.ql-align-right {
  text-align: right;
}
.ql-align-justify {
  text-align: justify;
}
/*
	recipes

#main-recatus-home.product-multi-slider{
	padding: 6% 0 0;
	text-align: center;
	padding-bottom: 0;
	margin: 0;
	@media (max-width: @medium){
		padding: 35px 0 0;
	}
	.container{
		@media (max-width: 1429px){
			max-width: 1050px;
		}
	}
	.carousel-multi-item{
		@media (max-width: 1429px){
			//padding: 0 45px;
		}
	}
	h2 {
		// margin-bottom: @item;
		margin-bottom: 85px;
		line-height: 30px;
		font-size: 1.5em;
		font-weight: 700;
		position: relative;
		text-align: center;
		padding: 10px 0px;
		.more();	
		overflow: inherit;
		color: @color_title !important;
		display: flex;
		align-items: center;
		justify-content: center;
		@media (max-width: 991px){
			margin-bottom: 45px;
		}
			&:after {
				content: '';
				position: absolute;
				width: 100px;
				height: 2px;
				background-color: #c5a679;
				bottom: -18px;
				left: 50%;
				transform: translateX(-50px);
				@media (max-width: 991px){
					bottom: -10px;
				}
			}
	
	}
	.product{
		a{
			position: relative;
			.details{
				opacity: 0;
				visibility: hidden;
				position: absolute;
				bottom: 0;
				width: 100%;
				text-align: center;
				background: #0a6e92;
				height: 45px;
				display: flex;
				align-items: center;
				justify-content: center;
				color: #fff;
				transition: all 0.5s;
				p{
					margin: 0;
					font-size: 13px;
				}
			}
			&:hover{
				.details{
					opacity: 1;
					visibility: visible;
					transition: all 0.5s;
				}
			}
		}
		img.card-img-top{
			max-height: 384px;
			object-fit: cover;
		}
	}
	.controls-top{
		a {
			color: #0a6e92;
			position: absolute;
			top: 38%;
			transform: translateY(-38%);
			background: transparent !important;
			text-decoration: none;
			&:hover {
				color: darken(#0a6e92, 10%);
			}
			&:first-child{
				left: -60px;
				@media (max-width: 1199px){
					display: none;
				}
			}
			&:last-child{
				right: -60px;
				@media (max-width: 1199px){
					display: none;
				}
			}
			p{
				margin: 0;
				text-transform: uppercase;
				font-size: 15px;
				padding-top: 5px;
				color: #666;
			}
		}
	}
}

#main-recatus{
	background-color: #f4f4f4;
	padding: 5% 0 50px;
	text-align: center;

	.no-gutters{
		box-shadow: 0 0 10px 1px #00000042;
		@media (max-width: @medium - 1px){
			margin-bottom: 30px;
		}
		.col-md-6{
			@media (max-width: @large){
				flex: 0 0 100%;
				max-width: 100%;
			}
			.d-flex{
				@media (max-width: @small - 1px){
					flex-wrap: wrap;
				}
			}
		}
	}

	#loader_holder {
		margin-top: @item*2;
		margin-bottom: @item*3;
		text-align: center;

		#loader {
			background-color: #1B45A4;
			border-color: #1B45A4;
			color: white;
		}

		.btn {
			text-transform: none;
			@media (max-width: @smaller - 1px) {
				display: block;
				width: 100%;
			}
		}
	}

	.btn-primary {
		background-color: #ebebeb;
		border-color: #ebebeb;
		color: #666;
		width: fit-content;
		margin: auto;

		&:hover{
			background-color: #0a6e92;
			border-color: #0a6e92;
			color: white;
		}

		i{
			margin-right: 7px;
		}

		span {
			
		}
	}

	h3{
		position: relative;
		padding: 0 0 20px;
		margin-bottom: 35px;

		&::after{
			content: '';
			position: absolute;
			width: 100px;
			height: 2px;
			background-color: #0a6e92;
			bottom: 0;
			left: 50%;
			transform: translateX(-50px);

		}
	}

	.recipe_card_new {
		display: flex;
		flex-direction: column;
		box-shadow: 0 0 10px 1px #00000042;
		margin-bottom: 5%;

		.card_details_spawn {
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			height: 100%;
			width: 100%;
			opacity: 0;
			transition: .2s ease;
			background-color: #000a6e92;
			&:hover {
				z-index: 1;
				opacity: 1;
			}

			.btn_card_details {
				position: absolute;
				color: white;
				font-size: 20px;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				text-align: center;
				a {
					background-color: #c5a679;
				}
			}
		}

		.img_layer {
			position: relative;
		}

		.recipe_card_img {
			width: 100%;
			height: auto;
			min-height: 300px;
			object-fit: cover;
		}

		.recipe_info {
			display: flex;
			width: 100%;
			justify-content: center;
			flex-direction: column;
			justify-content: center;
			background-color: white;
			padding: 20px;
			min-height: 160px;
			&:hover {
				z-index: 0;
			}

			@media (max-width: @small){
				margin: 0;
			}

			h5 {
				color: #0a6e92;
				font-family: @font;
				letter-spacing: 1px;
				text-transform: uppercase;
				font-size: 18px;
				margin: 0;
			}
			h6 {
				color: #000;
				padding: 10px 0px;
				font-size: 20px;
			}
		}

		.recipe_attributes {
			display: flex;
			justify-content: center;

			.btn_recipe{
				border-radius: 20px;
				box-shadow: 3px 3px 10px #f4f4f4;
				color: #0a6e92;
				border-color: #0a6e92;
				padding: 4px 10px;
				font-size: 12px;
				margin: 0 5px;
				@media (max-width: 575px){
					margin: 5px 5px;
					display: block;
					width: 100%;
				}
				&:hover{
					background-color: transparent;
				}
				i{
					margin-right: 7px;
				}
			}
		}
	}

	///// OLD
	.recipe_card {
		position: relative;
		margin-bottom: 5%;

		&:hover .recipe_card_img {
			opacity: 0.3;
		}
		&:hover .recipe_info {
			opacity: 0.3;
		}

		.card_details_spawn {
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			height: 100%;
			width: 100%;
			opacity: 0;
			transition: .2s ease;
			background-color: #002a86c2;
			&:hover {
				z-index: 1;
				opacity: 1;
			}

			.btn_card_details {
				position: absolute;
				color: white;
				font-size: 20px;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				text-align: center;
				a {
					background-color: #c5a679;
				}
			}
		}

		@media (max-width: @large){
			position: static;
			display: flex;
			flex-direction: column;
			box-shadow: 0 0 10px 1px #00000042;
			&:hover .recipe_info {
				opacity: 1;
			}
		}

		.img_layer {
			@media (max-width: @large){
				position: relative;
			}
		}

		.recipe_card_img {
			width: 100%;
			height: auto;
			min-height: 300px;
			object-fit: cover;
		}

		.recipe_info {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			display: flex;
			flex-direction: column;
			justify-content: center;
			background-color: white;
			padding: 10px;
			margin: auto;
			max-width: 50%;
			min-height: 160px;
			&:hover {
				z-index: -1;
				@media (max-width: @large){
					z-index: 0;
				}
			}

			@media (max-width: @large){
				position: static;
				transform: none;
				margin: 0;
				padding: 20px;
				max-width: 100%;
			}

			h5 {
				color: #c5a679;
				font-family: @font;
				letter-spacing: 1px;
				text-transform: uppercase;
				font-size: 18px;
				margin: 0;
			}
			h6 {
				color: #000;
				padding: 10px 0px;
				font-size: 20px;
			}
		}

		.recipe_attributes {
			display: flex;
			justify-content: center;

			.btn_recipe{
				border-radius: 20px;
				box-shadow: 3px 3px 10px #f4f4f4;
				color: #0a6e92;
				border-color: #0a6e92;
				padding: 4px 10px;
				font-size: 12px;
				margin: 0 5px;
				@media (max-width: 575px){
					margin: 5px 5px;
					display: block;
					width: 100%;
				}
				&:hover{
					background-color: transparent;
				}
				i{
					margin-right: 7px;
				}
			}
		}
	}

	.recatus-left{
		position: relative;
		height: 100%;
			&:hover 
			.image-layer {
				opacity: 0.3;
				background-color: #0a6e92;
			}
			img {
				width:100%;
				height: 100%;
				object-fit: cover;
			}
	}
			.image-layer {
			opacity: 1;
			display: block;
			width: 100%;
			height: auto;
			transition: .5s ease;
			backface-visibility: hidden;
			}
		.middle {
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			height: 100%;
			width: 100%;
			opacity: 0;
			transition: .5s ease;
			background-color: #002a86c2;
		}
		
		.recatus-left:hover .middle {
			opacity: 1;
		}
		.recatus-left:hover .text {
			opacity: 1;
		}
		  
		.text {
			color: white;
		  font-size: 20px;
		  position: absolute;
		  opacity: 0;
		  top: 50%;
		  left: 50%;
		  transform: translate(-50%, -50%);
		  text-align: center;
			a{
				background-color: #c5a679;
			}
		}
		
		.pagination{
			margin-top: 70px;
			@media (max-width: 991px){
				margin-top: 40px;
			}
			@media (max-width: 575px){
				margin-top: 10px;
			}
			.page-item{
				padding: 0px 5px;
				.page-link{
					color: #000;
					background-color: #fff;
					border: 1px solid #dee2e6;
					width: 37px;
					height: 37px;
					&:hover{
						color: #fff;
						background: #0a6e92;
					}
				}
			}
		}
}
.recatus-right{
	padding: 30px 20px !important;
	background-color: #fff;
	h4{
		color: #c5a679;
		font-family: "DM Sans", 'sans-serif';
		letter-spacing: 1px;
		text-transform: uppercase;
		font-size: 18px;
		margin: 0;
	}
	h5{
		color: #000;
		padding:10px 0px;
		font-size: 26px;
	}
	p{
		line-height: 1.2;
	}
	.btn{
		border-radius: 20px;
		box-shadow: 3px 3px 10px #f4f4f4;
		color: #0a6e92;
		border-color: #0a6e92;
		padding: 4px 12px;
		font-size: 13px;
		margin: 0 5px;
		@media (max-width: 575px){
			margin: 5px 5px;
			display: block;
			width: 100%;
		}
		&:hover{
			background-color: transparent;
		}
		i{
			margin-right: 7px;
		}
	}
}

.image-hover:hover .middle {
	opacity: 1;
}
.image-hover:hover .text {
	opacity: 1;
}

.carousel-recetas-page{
	.carousel-inner{
		.carousel-caption{
			padding-top: 0;
			padding-bottom: 0;
			max-width: 520px;
			top: 50%;
			transform: translateY(-50%);
			bottom: inherit;
			.recatus-right{
				padding: 40px !important;
				@media (max-width: 991px){
					padding: 25px !important;
				}
				h5{
					font-size: 37px;
					@media (max-width: 991px){
						font-size: 20px;
					}
					@media (max-width: @small){
						margin-bottom: 0;
					}
				}
				p{
					color: #000;
					font-size: 18px;
					@media (max-width: 991px){
						font-size: 16px;
					}
				}
				.d-flex {
					padding-top: 15px;
					@media (max-width: @small){
						display: none !important;
					}
				}
			}
		}
	}
}

.carousel.slide.recetas-page{
	.carousel-inner{
		.carousel-item{
			div {
				.img_recipe_banner {
					width: 100%;
					object-fit: cover;
					height: 600px;

					@media (max-width: @large) {
						height: 500px;
					}
				}
			}
			a {
				.img_recipe_banner {
					width: 100%;
					object-fit: cover;
					height: 600px;

					@media (max-width: @large) {
						height: 500px;
					}
				}
			}
			a{
				&:hover{
					.carousel-caption{
						.recatus-right{
							h5{
								text-decoration: underline;
							}
						}
					}
				}
			}
			img{
				@media (max-width: 767px){
					height: 380px;
					object-fit: cover;
				}
			}
			.carousel-caption{
				.recatus-right{
					@media (max-width: 767px){
						padding: 15px !important;
						h5{
							font-size: 16px;
						}
						p{
							font-size: 16px;
							@media (max-width: @small) {
								display: none;
							}
						}
						.d-flex{
							flex-wrap: wrap;
							.btn{
								font-size: 12px;
								margin: 0px 5px 10px;
								display: block;
								width: 100%;
							}
						}
					}
					
				}
			}
		}
	}
}

#racetus-details-main{
	background-color: #f4f4f4;
	padding: 35px 0;
	.product-side{
		background-color: #fff;
		padding: 3% 2%;
		h3{
			margin-bottom: 30px;
			text-transform: uppercase;
			font-family: "DM Sans", 'sans-serif';
			font-size: 18px;
			font-weight: bold;
		}
		.reacetus-product {
			margin-bottom: 20px;
			&:hover{
				.reacetus-img{
					.middle {
						opacity: 1;
					}
					.text {
						opacity: 1;
					}
				}
				.reacetus-text{
					.span-price{
						color: #0a6e92;
						text-decoration: underline;
					}
				}
			}
			.reacetus-img {
				width: 140px;
				position: relative;
				img{
					width: 140px;
					height: 140px;
					object-fit: cover;
				}
				.middle{
					position: absolute;
					top: 0;
					bottom: 0;
					left: 0;
					right: 0;
					height: 100%;
					width: 100%;
					opacity: 0;
					transition: 0.5s ease;
					background-color: #012c8887;
				}
				.text {
					color: white;
					font-size: 20px;
					position: absolute;
					opacity: 0;
					top: 50%;
					left: 50%;
					transform: translate(-50%, -50%);
					text-align: center;
					.btn{
						background-color: #c5a679;
					}
				}
			}
			.reacetus-text {
				padding-left: 15px;
				span.head-colr {
					font-size: 16px;
					text-transform: uppercase;
					padding-top: 0;
					padding-bottom: 6px;
					display: block;
				}
				.span-text {
					color: #000;
					font-size: 20px;
					font-family: "DM Serif Text", "sans-serif";
					display: block;
				}
			}
		}
		&.racetus-iframe-details{
			h4.head-colr {
				font-size: 17px;
				text-transform: uppercase;
				font-family: "DM Sans", 'sans-serif';
				margin: 0;
			}
			h3{
				font-size: 38px;
				font-family: "DM Serif Text", "sans-serif";
				color: #000;
				border-bottom: 1px solid #0000002b;
				margin: 0;
				padding-bottom: 20px;
				margin-bottom: 20px;
				@media (max-width: 767px){
					font-size: 23px;
				}
			}
			.Preparacion {
				width: 20%;
				@media (max-width: 767px){
					width: 50%;
				}
				span {
					font-size: 17px;
					color: #000;
					display: block;
					i{
						margin-right: 5px;
						color: #0a6e92;
					}
				}
				.grey-head {
					color: #c2c2c2;
					padding-bottom: 10px;
					text-transform: uppercase;
				}
				margin-bottom: 15px;
			}
			h3.head-colr {
				font-size: 21px;
				font-family: "DM Sans", 'sans-serif';
				color: #c5a679;
				border: 0;
				margin: 0;
			}
			.inger-text{
				margin-bottom: 10px;
				ul {
					margin: 0;
					padding: 0;
					list-style: none;
					display: flex;
					flex-wrap: wrap;
					li{
						width: 50%;
						padding-left: 40px;
						margin-bottom: 12px;
						position: relative;
						@media (max-width: 767px){
							width: 100%;
							padding-left: 20px;
						}
						&:before{
							position: absolute;
							content: '';
							width: 6px;
							height: 6px;
							background: #000;
							left: 0;
							border-radius: 100px;
							top: 50%;
							transform: translateY(-50%);
						}
					}
				}
			}
			.pasos-detail {
				ul {
					margin: 0;
					padding: 0;
					list-style: none;
					li{
						margin-bottom: 12px;
						color: #000;
					}
				}
				ol {
					list-style: none;
					margin: 0;
					padding: 0;
					li{
						padding-left: 40px;
						margin-bottom: 12px;
						position: relative;
						@media (max-width: 767px){
							padding-left: 20px;
						}
						&:before{
							position: absolute;
							content: counter(list-item) ".";
							left: 0;
							top: 0;
						}
					}
				}
			}
			.button {
				padding-top: 30px;
				padding-bottom: 10px;
				text-transform: uppercase;
			}
		}
	}
	.recatus-details-button{
		background-color: #0a6e92;
		border-color: #0a6e92;
		color: white;
		margin-top: 40px;
		text-transform: uppercase;

		&:hover {
			background-color: darken(#0a6e92, 10%);
			border-color: darken(#0a6e92, 10%);
		}
	}
	.recatus-details-button-down{
		width: fit-content;
		display: block;
		background-color:	#0a6e92;
		border-color: #0a6e92;
		color:white;
		margin: auto;
	}
	.height-control{
		height: calc(100% - 65px);
	}

}

#custom-menu-section{
	padding: 4% 0px;
	text-align: center;
	@media (max-width: 991px){
		padding: 3rem 0px 2rem;
	}
	@media (max-width: 767px){
		padding: 2rem 0;
	}
	.col-md-3.col-12{
		@media (max-width: 991px){
			flex: 0 0 50%;
			max-width: 50%;
			margin-bottom: 30px;
		}
		@media (max-width: 575px){
			flex: 0 0 100%;
			max-width: 100%;
		}
	}
	h3{
		position: relative;
		padding: 10px 0px;
		font-size: 30px;
		color: #000;
		margin-bottom: 50px;
		&::after{
			content: '';
			position: absolute;
			width: 100px;
			height: 3px;
			background-color: #c5a679;
			bottom: -12px;
			left: 50%;
			transform: translateX(-50px);
	
		}
	}
	.image-hover{
		position: relative;
		&:hover 
		.image-layer {
			opacity: 1;
			background-color: #0a6e92;
		  }
	}
	.image-layer {
			opacity: 1;
			display: block;
			width: 100%;
			height: auto;
			transition: .5s ease;
			backface-visibility: hidden;
		  }
		.middle {
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			height: 100%;
			width: 100%;
			opacity: 0;
			transition: .5s ease;
			background-color: #012c88b5;
			z-index: 3;
		}
		.middle-text {
			position: absolute;
			top: 9%;
			left: 0;
			right: 0;
			max-width: 90%;
			margin: 0 auto;
			z-index: 9;
			h5 {
				text-shadow: 2px 2px #666666;
				font-size: 28px;
				color: #fff;
				line-height: 1;
			}
		}
	
	.image-hover:hover .middle {
		opacity: 1;
	  }
	  .image-hover:hover .text {
		opacity: 1;
	  }
	  .text {
		color: white;
		font-size: 20px;
		position: absolute;
		opacity: 0;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
		z-index: 5;
		a{
			background-color: #c5a679;
		}
	  }
	
		.popular_recipe {
			height: 400px;
			width: auto;
	
			img {
				height: 400px;
				object-fit: cover;
			}
		}
	}
*/
