@charset "UTF-8";
/*! =======================================================
                      VERSION  9.9.0              
========================================================= */
/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
  *
 * bootstrap-slider is released under the MIT License
 * Copyright (c) 2017 Kyle Kemp, Rohit Kalkur, and contributors
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * ========================================================= */
.slider {
  display: block;
  vertical-align: middle;
  position: relative;
}

.slider.slider-horizontal {
  width: 210px;
  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-tick, .slider.slider-horizontal .slider-handle {
  margin-left: -10px;
}

.slider.slider-horizontal .slider-tick.triangle, .slider.slider-horizontal .slider-handle.triangle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #2e6da4;
  margin-top: 0;
}

.slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}

.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}

.slider.slider-horizontal.slider-rtl .slider-track {
  left: initial;
  right: 0;
}

.slider.slider-horizontal.slider-rtl .slider-tick, .slider.slider-horizontal.slider-rtl .slider-handle {
  margin-left: initial;
  margin-right: -10px;
}

.slider.slider-horizontal.slider-rtl .slider-tick-container {
  left: initial;
  right: 0;
}

.slider.slider-vertical {
  height: 210px;
  width: 20px;
}

.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  left: 25%;
  top: 0;
}

.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}

.slider.slider-vertical .slider-track-low, .slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}

.slider.slider-vertical .slider-tick, .slider.slider-vertical .slider-handle {
  margin-top: -10px;
}

.slider.slider-vertical .slider-tick.triangle, .slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #2e6da4;
  border-right-color: #2e6da4;
  margin-left: 0;
  margin-right: 0;
}

.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}

.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}

.slider.slider-vertical.slider-rtl .slider-track {
  left: initial;
  right: 25%;
}

.slider.slider-vertical.slider-rtl .slider-selection {
  left: initial;
  right: 0;
}

.slider.slider-vertical.slider-rtl .slider-tick.triangle, .slider.slider-vertical.slider-rtl .slider-handle.triangle {
  border-width: 10px 10px 10px 0;
}

.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
  padding-left: initial;
  padding-right: 4px;
}

.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top, #dfdfdf 0, #bebebe 100%);
  background-image: -o-linear-gradient(top, #dfdfdf 0, #bebebe 100%);
  background-image: linear-gradient(to bottom, #dfdfdf 0, #bebebe 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffdfdfdf",endColorstr="#ffbebebe",GradientType=0);
}

.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top, #e5e5e5 0, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0, #e9e9e9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffe5e5e5",endColorstr="#ffe9e9e9",GradientType=0);
  cursor: not-allowed;
}

.slider input {
  display: none;
}

.slider .tooltip.top {
  margin-top: -36px;
}

.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}

.slider .hide {
  display: none;
}

.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0, #f9f9f9 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0, #f9f9f9 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0, #f9f9f9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff5f5f5",endColorstr="#fff9f9f9",GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.slider-selection {
  position: absolute;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff9f9f9",endColorstr="#fff5f5f5",GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}

.slider-selection.tick-slider-selection {
  background-image: -webkit-linear-gradient(top, #8ac1ef 0, #82b3de 100%);
  background-image: -o-linear-gradient(top, #8ac1ef 0, #82b3de 100%);
  background-image: linear-gradient(to bottom, #8ac1ef 0, #82b3de 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff8ac1ef",endColorstr="#ff82b3de",GradientType=0);
}

.slider-track-low, .slider-track-high {
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}

.slider-handle {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #337ab7;
  background-image: -webkit-linear-gradient(top, #337ab7 0, #2e6da4 100%);
  background-image: -o-linear-gradient(top, #337ab7 0, #2e6da4 100%);
  background-image: linear-gradient(to bottom, #337ab7 0, #2e6da4 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff337ab7",endColorstr="#ff2e6da4",GradientType=0);
  filter: none;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 0 solid transparent;
}

.slider-handle.round {
  border-radius: 50%;
}

.slider-handle.triangle {
  background: transparent none;
}

.slider-handle.custom {
  background: transparent none;
}

.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: "★";
  color: #726204;
}

.slider-tick {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff9f9f9",endColorstr="#fff5f5f5",GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0 solid transparent;
}

.slider-tick.round {
  border-radius: 50%;
}

.slider-tick.triangle {
  background: transparent none;
}

.slider-tick.custom {
  background: transparent none;
}

.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: "★";
  color: #726204;
}

.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top, #8ac1ef 0, #82b3de 100%);
  background-image: -o-linear-gradient(top, #8ac1ef 0, #82b3de 100%);
  background-image: linear-gradient(to bottom, #8ac1ef 0, #82b3de 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff8ac1ef",endColorstr="#ff82b3de",GradientType=0);
  opacity: 1;
}

.range-slider .slider-input-wrapper {
  position: relative;
  width: 100%;
  display: inline-block;
}
.range-slider .slider-input-wrapper .slider-input {
  width: 30%;
  text-align: center;
  position: relative;
  display: inline-block;
  top: 0;
  border-color: #000;
}
.range-slider .slider-input-wrapper .slider-input:first-child {
  left: 0;
}
.range-slider .slider-input-wrapper .slider-input:nth-child(2) {
  right: 0;
}

.slider-track-low, .slider-track-high {
  background-color: #b3b3b3;
  border-radius: 0;
  background-image: initial;
}

.slider-selection {
  background-color: #2153a1;
  border-radius: 0;
  background-image: initial;
}

div#price-label-min {
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 700;
}

div#price-label-max {
  position: absolute;
  right: 0;
  top: 10px;
  font-weight: 700;
}

.tooltip-min .tooltip-inner {
  display: none;
}

.tooltip-max .tooltip-inner {
  display: none;
}

.slider .tooltip.top {
  position: absolute;
}
.slider .tooltip-main.top {
  display: none;
}
.slider.slider-horizontal {
  margin: 15px auto;
  width: calc(100% - 15px);
}
.slider.slider-horizontal .slider-track {
  height: 3px;
}
.slider.slider-horizontal .slider-handle {
  margin-top: -4px;
  border: 2px solid #2153a1;
  background-color: #fff;
  background-image: initial;
  border-radius: 50%;
  min-width: 20px;
}
.slider:hover .tooltip-main.top {
  display: block;
}

.tooltip-main .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  bottom: -5px;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip-main .tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
  top: -25px;
  left: 36%;
}

.read-more { position: relative; overflow: hidden }
    .read-more .read-more-link-parent { display: block; position:absolute; align-items: center; cursor: pointer; bottom: -1px; left: 0; width: 100%; display: flex; align-items: center; font-size: 13px }
    .read-more-link:hover { opacity:1 !important; } 


@media screen and (max-width: 991) {
    .read-more-link { font-size: 1rem; }
}

.read-more-link { color: #2153a1; font-size: 14px; }
.high-stock,.mid-stock,.low-stock{font-size:14px;}.high-stock i,.mid-stock i,.low-stock i{vertical-align:middle;}.high-stock i{color:#249096;}.mid-stock i{color:#ff890a;}.low-stock i{color:#2153a1;}
.dropdown-heart-product{position:relative;}.dropdown-heart-product .dropdown-heart-product-items{display:none;position:absolute;top:51px;right:0;z-index:9;width:max-content;background-color:#fff;}.dropdown-heart-product:hover .dropdown-heart-product-items,.dropdown-heart-product.active .dropdown-heart-product-items{display:block;}.dropdown-heart-product .dropdown-heart-product-items:hover{display:block;}.dropdown-heart-product .fa-lg{font-size:1.6em;display:flex;justify-content:center;height:100%;align-items:center;}.dropdown-heart-product .heart-pp{width:52px;height:52px;padding:0;}.dropdown-heart-product .btn.heart-pp:hover{border-color:#d3d3d3;}@media screen and (max-width:575px){.dropdown-heart-product{width:initial;}.dropdown-heart-product .heart-pp{font-weight:300;}}.filters.position-sticky{top:160px;}.mt-product1{vertical-align:top;width:100%;padding-left:10px;padding-right:10px;}.mt-product1 a,.mt-product1 span.pointer{color:#212529;}.mt-product1 .box{position:relative;background-color:#fff;overflow:hidden;}.mt-product1 .box:hover span.action-wishlist span{opacity:1;}.mt-product1 .box.large .title{font-size:16px;}.mt-product1 .box .action-wishlist i{font-size:1.2rem;}.mt-product1 .box .dropdown-heart{position:relative;display:inline-block;border:1px solid #d3d3d3;border:0;overflow:visible;}.mt-product1 .box .dropdown-heart img{width:auto;height:auto;padding:0;position:relative;}.mt-product1 .box .dropdown-heart img:hover{opacity:.5;}.mt-product1 .box img{display:block;margin:0 auto;}.mt-product1 .action-wishlist{bottom:15px;right:15px;text-align:left;position:absolute;font-size:1.2rem;}.mt-product1 .action-wishlist span{opacity:0;transition:all ease-in-out .25s;}.mt-product1 .price{font-size:14px;text-align:right;font-weight:500;}.mt-product1 .price.sales s{color:#949494;font-weight:400;font-size:14px;}.mt-product1 .price-on-demand{font-size:14px;text-align:right;font-weight:500;}.mt-product1 .txt{overflow:hidden;}.mt-product1 .txt .title{margin:0 0 5px;color:#000;font-size:14px;text-transform:capitalize;overflow:hidden;}.mt-product1 .txt .title:hover{opacity:.5;}@media screen and (max-width:761px){.mt-product1 .txt .title{text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;}}.mt-side-menu-feature .filter .checkbox{padding:.5rem 0;}.overview-slider .container-img{border-bottom:3px solid transparent;}.overview-slider .container-img.active,.overview-slider .container-img:hover,.overview-slider .container-img:active,.overview-slider .container-img:focus{border-bottom-color:#2153a1;}.overview-slider .container-img{position:relative;}.overview-slider .container-img img{background-color:#808080;}.overview-slider .container-img .btn-image{position:absolute;bottom:10px;left:0;right:0;}.overview-slider .container-img .btn-image .btn-default{width:79%;display:flex;margin:auto;justify-content:center;border-radius:30px;background-color:#fff;padding:0;border-color:#fff;font-size:17px;}.overview-slider .container-img .btn-image .btn-default:hover{background-color:#fff;color:#2153a1;opacity:1;}.bg-related{background-color:#812c2d;}.bg-brand{background-color:#8acbc9;}.bg-accessory{background-color:#a8be13;}.product-overview-title-card{padding:20px;font-size:28px;font-weight:300;color:#fff;height:96%;margin-top:15px;}.banner{position:absolute;right:0;top:0;font-weight:700;text-transform:uppercase;padding:5px 10px;font-size:1rem;border-radius:30px 0 0 30px;z-index:9;}.banner.promotion{background:#ff95a6;color:#fff;text-transform:lowercase;}
#popup-cookie-settings .modal-body{padding-bottom:0;}#popup-cookie-settings .modal-title{display:flex;align-items:center;font-size:1.5rem;font-weight:500;}#popup-cookie-settings .modal-footer{border-top:0;}#popup-cookie-settings .card{border:0;}#popup-cookie-settings .card .card-header{background:initial;padding:15px 0;}#popup-cookie-settings .card:first-child .card-header{border-top:1px solid rgba(0,0,0,.125);}#popup-cookie-settings .card .card-title{margin-bottom:0;}#popup-cookie-settings .card .card-body{padding:1rem 0;}#cookie-consent{display:none;position:fixed;bottom:0;left:0;right:0;z-index:1000;background-color:#2153a1;color:#fff;padding:30px 15px;}#cookie-consent .main-text{display:flex;align-items:center;}#cookie-consent .cookie-settings a{display:flex;align-items:center;justify-content:center;}
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative;}.owl-carousel{display:none;width:100%;z-index:1;}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden;}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0);}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none;}.owl-carousel .owl-item img{display:block;}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none;}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block;}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:0;padding:0!important;font:inherit;}.owl-carousel.owl-loading{opacity:0;display:block;}.owl-carousel.owl-hidden{opacity:0;}.owl-carousel.owl-refresh .owl-item{visibility:hidden;}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.owl-carousel.owl-grab{cursor:move;cursor:grab;}.owl-carousel.owl-rtl{direction:rtl;}.owl-carousel.owl-rtl .owl-item{float:right;}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both;}.owl-carousel .owl-animated-in{z-index:0;}.owl-carousel .owl-animated-out{z-index:1;}.owl-carousel .fadeOut{animation-name:fadeOut;}@keyframes fadeOut{0%{opacity:1;}100%{opacity:0;}}.owl-height{transition:height .5s ease-in-out;}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease;}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0;}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d;}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000;}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease;}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3);}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none;}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease;}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%;}.owl-carousel{display:block;}.owl-carousel .item:not(:first-child){display:none;}.owl-carousel .owl-stage{display:flex;}.owl-carousel .owl-stage-outer{height:auto!important;}.owl-carousel .owl-item .item img{margin:auto;}.owl-carousel .owl-nav .owl-prev,.owl-carousel .owl-nav .owl-next{color:var(--color-primary);position:absolute;top:0;bottom:0;}.owl-carousel .owl-nav .owl-prev>*,.owl-carousel .owl-nav .owl-next>*{background-color:#fff!important;width:30px;height:30px;border-radius:50%;display:flex;justify-content:center;align-items:center;font-size:1.5rem;margin-left:15px;margin-right:15px;}.owl-carousel .owl-nav .owl-prev{left:15px;}.owl-carousel .owl-nav .owl-next{right:15px;}
#mt-footer{background-color:#f5f5f5;border-top:.5px solid #4a4a4a;}#mt-footer table td{padding:5px 50px;padding-left:0;}#mt-footer table td:last-child{padding-right:0;}#mt-footer .top-footer{padding:10px 0;}#mt-footer .top-footer .row-elements *{float:left;}#mt-footer .top-footer .row-elements p{margin-bottom:0;}#mt-footer .top-footer .row-elements i{padding:5px;}#mt-footer.style1{margin:0 auto;max-width:unset;font-weight:300;line-height:30px;}#mt-footer .dark{background-color:#2153a1;position:relative;}#mt-footer h4{font-size:14px!important;font-weight:900!important;}#mt-footer .social-network li{width:30px;display:inline-block;}#mt-footer .social-network li a{-webkit-transition:all .25s linear;transition:all .25s linear;}#mt-footer .social-network li a :hover{color:#ff6060;}#mt-footer .footer-menu h4{color:#fff;font-size:22px!important;font-weight:700!important;margin-bottom:2rem;}#mt-footer .footer-menu .showroom .time{display:inline-flex;color:#fff;font-size:1rem;font-weight:400;width:100%;padding-bottom:15px;}#mt-footer .footer-menu .showroom .time div:first-of-type{width:50%;}#mt-footer .footer-menu ul{list-style:none;padding:0;margin:0;}#mt-footer .footer-menu ul li{margin-top:.75rem;}#mt-footer .footer-menu ul li a{color:#fff;}#mt-footer .footer-menu a{color:#fff;}#mt-footer .menu-social-media .social-network i{font-size:2em;}#mt-footer .footer-bottom{color:#fff;}
.payment-list-item-footer figure{float:left;width:50px;margin:0 30px 0 0;}.payment-list-item-footer figure img{width:100%;}
.mt-side-menu-header-title{font-size:15px;font-weight:900;}#login-menu{display:none;}.mt-side-menu{top:0;right:0;bottom:0;width:450px;max-width:100%;z-index:9999;position:fixed;overflow-y:auto;background-color:#fff;transform:translateX(100%);-ms-transform:translateX(100%);-webkit-transform:translateX(100%);}.mt-side-menu .shop-info-item{border-top:1px solid #ededed;}.mt-side-menu .shop-info-item:first-child{border-top:none !important;}.mt-side-menu .shop-info-item ul{list-style:none;padding:0;}.mt-side-menu .mt-side-menu-header{border-bottom:1px solid #ededed;}.mt-side-menu .mt-side-menu-header .mt-side-menu-header-title{font-size:18px;font-weight:500;color:#2153a1;}.mt-side-menu .mt-side-menu-header .mt-side-menu-header-icons{font-size:24px;text-align:right;line-height:1rem;}.mt-side-menu .mt-side-menu-header .mt-side-menu-header-icons .nav-icon{position:relative;margin-right:15px;padding-bottom:16px;top:3px;}.mt-side-menu .mt-side-menu-header .mt-side-menu-header-icons .nav-icon.active{border-bottom:2px solid #949494;}.mt-side-menu .mt-side-menu-header .mt-side-menu-header-icons .mt-side-menu-close{margin-left:15px;}@media(max-width:992px){.mt-side-menu .filter .border-title{border-top:none;}}.mt-side-menu .mt-side-menu-content .form-control{text-align:left;padding-left:15px;padding-right:15px;}.mt-side-menu .mt-side-menu-content .price{display:inline;font-size:1rem;}.mt-side-menu .mt-side-menu-content.cart-items{overflow-y:auto;height:calc(100vh - 247px);}.mt-side-menu .mt-side-menu-content.cart-items .banner{font-weight:700;padding:5px 10px;border-radius:0 30px 30px 0;}.mt-side-menu .mt-side-menu-content.cart-items .banner.promotion{background:#ff95a6;color:#fff;text-transform:lowercase;}.mt-side-menu .mt-side-menu-content.loading::before{height:108vh;}.mt-side-menu .mt-side-menu-content .or-divider{text-align:center;border:1px solid #e6e6e6;margin:auto;border-radius:50px;font-weight:700;padding:10px 12px;font-size:.9rem;color:#808080;}.mt-side-menu .mt-side-menu-content .mt-side-menu-subtitle,.mt-side-menu .mt-side-menu-content h5{font-size:1.1rem;font-weight:500;}.mt-side-menu .mt-side-menu-content .dropdown-heart .fa-heart{border:1px solid #343a40;height:35px;width:35px;align-items:center;display:flex;justify-content:center;}.mt-side-menu .mt-side-menu-content .close{color:#fff;top:0;left:15px;font-size:20px;background-color:#2153a1;border-radius:50%;width:20px;font-weight:100;text-shadow:none;position:absolute;z-index:9999;text-decoration:none;opacity:1;}.mt-side-menu .mt-side-menu-content .close:hover,.mt-side-menu .mt-side-menu-content .close:not(:disabled):not(.disabled):focus,.mt-side-menu .mt-side-menu-content .close:not(:disabled):not(.disabled):hover{opacity:.5 !important;color:#fff;}.mt-side-menu .mt-side-menu-content .banner{position:relative;display:inline-block;}.mt-side-menu .mt-side-menu-content .item-title{color:#000;font-weight:300;}.mt-side-menu .mt-side-menu-content .item-title a{font-weight:400;}.mt-side-menu .mt-side-menu-content .item-title a:hover{color:#ff6060;text-decoration:none;}.mt-side-menu .mt-side-menu-content .item-price-title{color:#000;width:70px;display:inline-block;}.mt-side-menu#side-menu-wishlist .mt-side-menu-content{overflow-y:auto;height:calc(100vh - 58px);}.mt-side-menu#side-menu-groups .icons-mobile-header{background:#f2f2f2;display:flex;}.mt-side-menu#side-menu-groups .icons-mobile-header a{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%;text-align:center;position:relative;width:100%;padding-right:15px;padding-left:15px;margin-bottom:15px;}.mt-side-menu#side-menu-groups .icons-mobile-header a img{height:30px;}.mt-side-menu#side-menu-groups .icons-mobile-header a span{display:block;margin-top:5px;}.mt-side-menu#side-menu-groups .group-menu{font-size:1.3rem;}.mt-side-menu#side-menu-groups .group-menu .group-2{font-size:1rem;}.mt-side-menu#side-menu-groups .content-menu a{display:block;margin-top:1.5rem;}.mt-side-menu#side-menu-groups .social-media-menu ul li{font-size:2rem;padding-right:15px;float:left;}.mt-side-menu .mt-side-menu-footer{bottom:0;position:fixed;z-index:9999;width:100%;background-color:#fff;}.mt-side-menu .mt-side-menu-footer::before{content:'';border-top:1px solid #d3d3d3;width:100%;margin:0 15px;padding-bottom:1rem;}.mt-side-menu .mt-side-menu-footer .mt-total-txt{float:right;}@media only screen and (max-width:767px){.mt-side-menu{transform:translateX(100%);-ms-transform:translateX(100%);-webkit-transform:translateX(100%);}}
