.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 18px;
  font: 15px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  line-height: 24px;
}

.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  margin-left: -13px;
  border: 2px solid #cccccc;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  outline: none !important;
}

.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -15px;
  padding-left: 6px;
  padding-top: 3px;
  font-size: 11px;
  color: #555555;
  line-height: 1.5;
  font-size: 12px;
  outline: none !important;
}

.checkbox input[type="checkbox"], .checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.checkbox input[type="checkbox"]:focus + label::before, .checkbox input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked + label::after, .checkbox input[type="radio"]:checked + label::after {
  font-family: "market";
  content: "\e91d";
}

.checkbox input[type="checkbox"]:indeterminate + label::after, .checkbox input[type="radio"]:indeterminate + label::after {
  display: block;
  content: "";
  width: 10px;
  height: 3px;
  background-color: #555555;
  border-radius: 2px;
  margin-left: -16.5px;
  margin-top: 7px;
}

.checkbox input[type="checkbox"]:disabled, .checkbox input[type="radio"]:disabled {
  cursor: not-allowed;
}

.checkbox input[type="checkbox"]:disabled + label, .checkbox input[type="radio"]:disabled + label {
  opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled + label::before, .checkbox input[type="radio"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}

.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox input[type="checkbox"]:checked + label::before, .checkbox input[type="radio"]:checked + label::before {
  background-color: #6BA53C;
  border-color: #6BA53C;
}

.checkbox input[type="checkbox"]:checked + label::after, .checkbox input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-primary input[type="checkbox"]:checked + label::before, .checkbox-primary input[type="radio"]:checked + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:checked + label::after, .checkbox-primary input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before, .checkbox-danger input[type="radio"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after, .checkbox-danger input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before, .checkbox-info input[type="radio"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after, .checkbox-info input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before, .checkbox-warning input[type="radio"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after, .checkbox-warning input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before, .checkbox-success input[type="radio"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after, .checkbox-success input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::before, .checkbox-primary input[type="radio"]:indeterminate + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::after, .checkbox-primary input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::before, .checkbox-danger input[type="radio"]:indeterminate + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::after, .checkbox-danger input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::before, .checkbox-info input[type="radio"]:indeterminate + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::after, .checkbox-info input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::before, .checkbox-warning input[type="radio"]:indeterminate + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::after, .checkbox-warning input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::before, .checkbox-success input[type="radio"]:indeterminate + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::after, .checkbox-success input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.radio {
  padding-left: 7px;
}

.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 12px;
  font: 15px/24px 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}

.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 16px;
  height: 16px;
  left: 4px;
  top: 4px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #6BA53C;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33), -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}

.radio input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.radio input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.radio input[type="radio"]:disabled {
  cursor: not-allowed;
}

.radio input[type="radio"]:disabled + label {
  opacity: 0.65;
}

.radio input[type="radio"]:disabled + label::before {
  cursor: not-allowed;
}

.radio.radio-inline {
  margin-top: 0;
}

.radio-primary input[type="radio"] + label::after {
  background-color: #337ab7;
}

.radio-primary input[type="radio"]:checked + label::before {
  border-color: #337ab7;
}

.radio-primary input[type="radio"]:checked + label::after {
  background-color: #337ab7;
}

.radio-danger input[type="radio"] + label::after {
  background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::before {
  border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::after {
  background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
  background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::before {
  border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::after {
  background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
  background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
  background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::before {
  border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::after {
  background-color: #5cb85c;
}

input[type="checkbox"].styled:checked + label:after {
  font-family: 'market';
  content: "\e91d";
}

input[type="radio"].styled:checked + label:after {
  font-family: 'FontAwesome';
}

input[type="checkbox"] .styled:checked + label::before, input[type="radio"] .styled:checked + label::before, input[type="checkbox"] .styled:checked + label::after, input[type="radio"] .styled:checked + label::after {
  color: #fff;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: 'gibson-regular', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #777776;
  /*padding-top: 134px;*/
}

body.headerv2 {
  padding-top: 90px;
}

a, .btn {
  -webkit-transition: all .35s;
  transition: all .35s;
}

hr {
  max-width: 100px;
  margin: 25px auto 0;
  border-width: 1px;
  border-color: rgba(34, 34, 34, 0.1);
}

hr.light {
  border-color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'rf_rufobold', sans-serif;
}

p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
}

.btn {
  -webkit-transition: all .35s;
  transition: all .35s;
}

.row-gutters8 {
  margin-right: -8px;
  margin-left: -8px;
}

.row-gutters8 > [class*="col-"] {
  padding-right: 8px;
  padding-left: 8px;
}

section {
  padding: 100px 0;
  position: relative;
}

section .triangle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 19px 19px 0 19px;
  border-color: #202020 transparent transparent transparent;
  z-index: 5;
}

@font-face {
  font-family: 'Gibson-Light';
  src: local("Gibson Light"), local("Gibson-Light"), url("../fonts/Gibson-Light.woff2") format("woff2"), url("../fonts/Gibson-Light.woff") format("woff"), url("../fonts/Gibson-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gibson-Regular';
  src: local("Gibson Regular"), local("Gibson-Regular"), url("../fonts/Gibson.woff2") format("woff2"), url("../fonts/Gibson.woff") format("woff"), url("../fonts/Gibson.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gibson-SemiBold';
  src: local("Gibson Semi Bold"), local("Gibson-Semi-Bold"), url("../fonts/Gibson-SemiBold.woff2") format("woff2"), url("../fonts/Gibson-SemiBold.woff") format("woff"), url("../fonts/Gibson-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Gibson-Bold';
  src: local("Gibson Bold"), local("Gibson-Bold"), url("../fonts/Gibson-Bold.woff2") format("woff2"), url("../fonts/Gibson-Bold.woff") format("woff"), url("../fonts/Gibson-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'rf_rufobold';
  src: url("../fonts/rf_rufo_bold-webfont.woff2") format("woff2"), url("../fonts/rf_rufo_bold-webfont.woff") format("woff"), url("../fonts/rf_rufo_bold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'rf_ruforegular';
  src: url("../fonts/rf_rufo_regular-webfont.woff2") format("woff2"), url("../fonts/rf_rufo_regular-webfont.woff") format("woff"), url("../fonts/rf_rufo_regular-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'rf_rufosemibold';
  src: url("../fonts/rf_rufo_semibold-webfont.woff2") format("woff2"), url("../fonts/rf_rufo_semibold-webfont.woff") format("woff"), url("../fonts/rf_rufo_semibold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'market';
  src: url("../fonts/market.eot?y35e8m");
  src: url("../fonts/market.eot?y35e8m#iefix") format("embedded-opentype"), url("../fonts/market.ttf?y35e8m") format("truetype"), url("../fonts/market.woff?y35e8m") format("woff"), url("../fonts/market.svg?y35e8m#market") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'market' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-prev:before {
  content: "\e901";
}

.icon-arrow-next:before {
  content: "\e900";
}

.icon-button-arrow:before {
  content: "\e902";
}

.icon-dropdown-arrow:before {
  content: "\e903";
}

.icon-shop-cart:before {
  content: "\e904";
}

.icon-user:before {
  content: "\e905";
}

.icon-bag:before {
  content: "\e906";
}

.icon-card:before {
  content: "\e907";
}

.icon-help:before {
  content: "\e908";
}

.icon-logout:before {
  content: "\e909";
}

.icon-point:before {
  content: "\e90a";
}

.icon-tool:before {
  content: "\e90b";
}

.icon-watch:before {
  content: "\e90c";
}

.icon-plus:before {
  content: "\e90d";
}

.icon-trash:before {
  content: "\e90e";
}

.icon-delivery:before {
  content: "\e90f";
}

.icon-help2:before {
  content: "\e910";
}

.icon-home:before {
  content: "\e911";
}

.icon-logout2:before {
  content: "\e912";
}

.icon-payment:before {
  content: "\e913";
}

.icon-point2:before {
  content: "\e914";
}

.icon-shop-cart2:before {
  content: "\e915";
}

.icon-watch2:before {
  content: "\e916";
}

.icon-pen:before {
  content: "\e917";
}

.icon-point3:before {
  content: "\e918";
}

.icon-search:before {
  content: "\e919";
}

.icon-arrow-left:before {
  content: "\e91a";
}

.icon-arrow-right:before {
  content: "\e91b";
}

.icon-calendar:before {
  content: "\e91c";
}

.icon-check:before {
  content: "\e91d";
}

.icon-driver:before {
  content: "\e91e";
}

.icon-message:before {
  content: "\e91f";
}

.icon-card-payment:before {
  content: "\e920";
}

.icon-cash-payment:before {
  content: "\e921";
}

.icon-pos-payment:before {
  content: "\e922";
}

#topbar {
  /*height: 90px;*/
  height: 67px;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #ffffff!important;
  /*padding: 15px 0;*/
  padding: 5px 0;
  z-index: 1050;
}

#topbar.topbar-scrolled {
  top: -60px;
}

#topbar .contact-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#topbar .contact-info li {
  display: inline-block;
  padding: 0;
  color: #000000;
}

#topbar .contact-info li + li {
  margin-left: 18px;
}

#topbar .contact-info a {
  color: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #f6b024;
  padding-right: 4px;
}

#topbar .cta {
  background: transparent;
}

#topbar .cta a {
  color: #fff;
  background: #f6b024;
  padding: 6px 24px 8px 24px;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px;
}

#topbar .cta a:hover {
  background: #f1a40a;
}

#topbar .logo {
  display: inline-block;
}

#topbar .navbar-toggler {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  font-size: 12px;
  padding: 8px 10px;
  color: #ffffff;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

#topbar .navbar-toggler span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 2px;
  background-color: #6BA53C;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#topbar .navbar-toggler span::before, #topbar .navbar-toggler span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -1px;
  width: 20px;
  height: 2px;
  background-color: #6BA53C;
}

#topbar .navbar-toggler span::before, #topbar .navbar-toggler span::after {
  content: '';
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#topbar .navbar-toggler span::before {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#topbar .navbar-toggler span::after {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

#topbar .navbar-toggler.open span {
  height: 0;
}

#topbar .navbar-toggler.open span:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#topbar .navbar-toggler.open span:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-brand {
  padding: 0;
  margin-top: -15px;
}

.search-form, .search-form-mobile {
  padding: 8px 0;
}

.search-form .form-control, .search-form-mobile .form-control {
  height: 40px;
  border-radius: 0;
  border: 3px solid #DDE1EC;
  font-family: 'Gibson-Regular', sans-serif;
  font-size: 16px;
  color: #929EAF;
  border-width: 3px 0 3px 3px;
}

.search-form .btn-search, .search-form-mobile .btn-search {
  color: #495263;
  background: #ffffff;
  border: 3px solid #DDE1EC;
  border-width: 3px 3px 3px 0;
  border-radius: 0;
  height: 40px;
}

.search-form-mobile {
  padding: 10px 15px;
  /*position: fixed;*/
  top: 70px;
  width: 100%;
  z-index: 55;
  background: #ffffff;
}

.search-mobile {
  text-align: center;
}

.search-mobile .btn-open {
  padding: 0;
  margin-top: 18px;
  margin-right: -8px;
}

@media (min-width: 992px) {
  .search-mobile {
    display: none;
  }
}

#topbar .header-control-mobile ul, #topbar #header-control.header-control ul{
	/*justify-content: end;*/
}

.header-control, .header-control-mobile {
  /*padding: 8px 0;*/
}

.header-control ul, .header-control-mobile ul {
  /*padding: 0;*/
  margin-bottom: 5px;
  text-align: right;
}

.header-control ul li, .header-control-mobile ul li {
  display: inline-block;
  /*padding: 0 14px;*/
  position: relative;
  /*height: 37px;*/
  vertical-align: top;
}

/*.header-control ul li .user-acount, .header-control-mobile ul li .user-acount {*/
/*  padding-top: 9px;*/
/*  position: relative;*/
/*}*/

/*.header-control ul li .user-acount .dropdown-toggle, .header-control-mobile ul li .user-acount .dropdown-toggle {*/
/*  color: #000000;*/
/*  font-size: 16px;*/
/*  text-decoration: none;*/
/*  position: relative;*/
/*  z-index: 5555;*/
/*}*/

/*.header-control ul li .user-acount .dropdown-toggle:after, .header-control-mobile ul li .user-acount .dropdown-toggle:after {*/
/*  font-family: market;*/
/*  content: "\e903";*/
/*  font-size: 6px;*/
/*  border: 0;*/
/*  display:none;*/
/*}*/

.header-shopcart .dropdown-toggle::after{
	display:none;
}

/*.header-control ul li .user-acount .dropdown-menu, .header-control-mobile ul li .user-acount .dropdown-menu {*/
/*  top: 0 !important;*/
/*  left: -22px !important;*/
/*  padding-top: 38px;*/
/*  border-radius: 0;*/
  background: rgb(49, 170, 55)/*#2C0E0F*/;
/*  width: 100%;*/
/*  min-width: 180px;*/
/*  margin: 0;*/
/*  border: 0;*/
/*  border-radius: 0;*/
/*}*/

/*.header-control ul li .user-acount .dropdown-menu .dropdown-item, .header-control-mobile ul li .user-acount .dropdown-menu .dropdown-item {*/
/*  font: 17px/1.5 'rf_ruforegular', sans-serif;*/
/*  color: #ffffff;*/
/*  margin-bottom: 5px;*/
/*}*/

/*.header-control ul li .user-acount .dropdown-menu .dropdown-item i, .header-control-mobile ul li .user-acount .dropdown-menu .dropdown-item i {*/
/*  font-size: 12px;*/
/*  width: 20px;*/
/*  display: inline-block;*/
/*}*/

/*.header-control ul li .user-acount .dropdown-menu .dropdown-item i.icon-card, .header-control-mobile ul li .user-acount .dropdown-menu .dropdown-item i.icon-card {*/
/*  font-size: 9px;*/
/*}*/

/*.header-control ul li .user-acount .dropdown-menu .dropdown-item:hover, .header-control-mobile ul li .user-acount .dropdown-menu .dropdown-item:hover {*/
/*  background: #507B2D;*/
/*}*/

/*.header-control ul li .user-acount.show .dropdown-toggle, .header-control-mobile ul li .user-acount.show .dropdown-toggle {*/
/*  color: #ffffff;*/
/*}*/

/*.header-control ul li .header-shopcart, .header-control-mobile ul li .header-shopcart {*/
/*  padding-top: 9px;*/
/*}*/

/*.header-control ul li .header-shopcart a, .header-control-mobile ul li .header-shopcart a {*/
/*  color: #000000;*/
/*  font-size: 16px;*/
/*  text-decoration: none;*/
/*  position: relative;*/
/*}*/

/*.header-control ul li .header-shopcart a .items-number, .header-control-mobile ul li .header-shopcart a .items-number {*/
/*  position: absolute;*/
/*  top: -12px;*/
  /*right: -15px;*/
/*  right: 0px;*/
/*  background: #BF3245;*/
/*  padding: 0 3px;*/
/*  font-size: 10px;*/
/*  color: #ffffff;*/
/*  border-radius: 3px;*/
/*}*/

/*.header-control .address, .header-control-mobile .address {*/
/*  font: 11px 'rf_ruforegular', sans-serif;*/
/*  color: #2C0E0F;*/
/*  text-align: left;*/
  /*position: relative;*/
  /*padding-left: 20px;*/
/*}*/

/*.header-control .address i, .header-control-mobile .address i {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  top: 50%;*/
/*  -webkit-transform: translateY(-50%);*/
/*  transform: translateY(-50%);*/
/*}*/

/*.header-control-mobile {*/
/*  background: #ffffff;*/
/*  border-radius: 10px;*/
/*  padding: 10px;*/
/*}*/

/*.header-control-mobile ul {*/
/*  text-align: center;*/
/*}*/

/*.header-control-mobile p {*/
/*  margin: 0;*/
/*}*/

.header-control > ul, .header-control-mobile > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0;
  margin-bottom: 0;
}

.header-control > ul > li, .header-control-mobile > ul > li {
  position: relative;
  vertical-align: top;
}

.header-control > ul > li + li, .header-control-mobile > ul > li + li {
  /*margin-left: 20px;*/
  color: #000000;
}

.header-control > ul > li .user-acount, .header-control-mobile > ul > li .user-acount {
  position: relative;
}

.header-control > ul > li .user-acount .dropdown-toggle, .header-control-mobile > ul > li .user-acount .dropdown-toggle {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  color: #000000;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  /*z-index: 5555;*/
  display: inline-block;
  border-radius: 100%;
  text-align: center;
  line-height: 28px;
}

.header-control > ul > li .user-acount .dropdown-toggle::after, .header-control-mobile > ul > li .user-acount .dropdown-toggle::after {
  content: none;
}

.header-control > ul > li .user-acount .dropdown-menu, .header-control-mobile > ul > li .user-acount .dropdown-menu {
  top: 130% !important;
  left: inherit !important;
  right: 0;
  padding-top: 10px;
  border-radius: 10px;
  background: #ffffff;
  width: 100%;
  min-width: 180px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.header-control > ul > li .user-acount .dropdown-menu::before, .header-control-mobile > ul > li .user-acount .dropdown-menu::before {
  border-bottom: 12px solid rgba(0, 0, 0, 0.2);
  border-left: 12px solid rgba(0, 0, 0, 0);
  border-right: 12px solid rgba(0, 0, 0, 0);
  content: "";
  display: inline-block;
  right: 5%;
  position: absolute;
  top: -11px;
}

.header-control > ul > li .user-acount .dropdown-menu::after, .header-control-mobile > ul > li .user-acount .dropdown-menu::after {
  border-bottom: 11px solid #ffff00;
  border-left: 12px solid rgba(0, 0, 0, 0);
  border-right: 12px solid rgba(0, 0, 0, 0);
  content: "";
  display: inline-block;
  right: 5%;
  position: absolute;
  top: -10px;
}

.header-control > ul > li .user-acount .dropdown-menu .dropdown-item-text, .header-control-mobile > ul > li .user-acount .dropdown-menu .dropdown-item-text {
  font: 700 14px "Poppins", sans-serif;
  color: #194621;
}

.header-control > ul > li .user-acount .dropdown-menu .dropdown-item, .header-control-mobile > ul > li .user-acount .dropdown-menu .dropdown-item {
  font: 14px/1.5 "Poppins", sans-serif;
  color: #194621;
  margin-bottom: 5px;
}

.header-control > ul > li .user-acount .dropdown-menu .dropdown-item i, .header-control-mobile > ul > li .user-acount .dropdown-menu .dropdown-item i {
  font-size: 12px;
  width: 20px;
  display: inline-block;
}

.header-control > ul > li .user-acount .dropdown-menu .dropdown-item i.icon-card, .header-control-mobile > ul > li .user-acount .dropdown-menu .dropdown-item i.icon-card {
  font-size: 9px;
}

.header-control > ul > li .user-acount .dropdown-menu .dropdown-item:hover, .header-control-mobile > ul > li .user-acount .dropdown-menu .dropdown-item:hover {
  background: #ffff00;
  color: #194621;
}

.header-control > ul > li .user-acount.show .dropdown-toggle, .header-control-mobile > ul > li .user-acount.show .dropdown-toggle {
  color: #000000;
}

.header-control > ul > li .header-shopcart .dropdown-toggle, .header-control-mobile > ul > li .header-shopcart .dropdown-toggle {
  width: 40px;
  height: 40px;
  /*background: #FFFF00;*/
  border-radius: 100%;
  display: inline-block;
  color: #000000;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  line-height: 28px;
  position: relative;
}

.header-control > ul > li .header-shopcart .dropdown-toggle::after, .header-control-mobile > ul > li .header-shopcart .dropdown-toggle::after {
  content: none;
}

.header-control > ul > li .header-shopcart .dropdown-toggle .items-number, .header-control-mobile > ul > li .header-shopcart .dropdown-toggle .items-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background: #fc163f;
  padding: 0 3px;
  font-size: 10px;
  color: #ffffff;
  border-radius: 12px;
}

.shopping-cartmini .shopping-carttotal {
    padding: 20px 12px;
}

.shopping-cartmini .shopping-carttotal .btn-pay{
	height: 30px;
    /*background: #194621;*/
    border-radius: 10px;
    font: 700 14px/1 "Poppins", sans-serif;
    color: #ffffff;
}

.header-control > ul > li .header-shopcart .dropdown-menu, .header-control-mobile > ul > li .header-shopcart .dropdown-menu {
  top: 130% !important;
  left: inherit !important;
  right: 0;
  border: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.header-control > ul > li .header-shopcart .dropdown-menu::before, .header-control-mobile > ul > li .header-shopcart .dropdown-menu::before {
  /*border-bottom: 12px solid rgba(0, 0, 0, 0.2);*/
  border-left: 12px solid rgba(0, 0, 0, 0);
  border-right: 12px solid rgba(0, 0, 0, 0);
  content: "";
  display: inline-block;
  right: 5%;
  position: absolute;
  top: -11px;
}

.header-control > ul > li .header-shopcart .dropdown-menu::after, .header-control-mobile > ul > li .header-shopcart .dropdown-menu::after {
  border-bottom: 11px solid #FFFFFF;
  border-left: 12px solid rgba(0, 0, 0, 0);
  border-right: 12px solid rgba(0, 0, 0, 0);
  content: "";
  display: inline-block;
  right: 5%;
  position: absolute;
  top: -10px;
}

.header-control .address, .header-control-mobile .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width:12em;
}

.header-control .address .icon, .header-control-mobile .address .icon {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #FFFFFF;
  text-align: center;
  line-height: 40px;
  margin-right: 6px;
}

.header-control ._search .icon, .header-control-mobile ._search .icon {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #FFFFFF;
  text-align: center;
  line-height: 40px;
  /*margin-right: 6px;*/
}



.header-control .address p, .header-control-mobile .address p {
  font: 11px "Poppins", sans-serif;
  color: #194621;
  margin: 0;
}

.header-control-mobile {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
}

.header-control-mobile ul {
  text-align: center;
}

.header-control-mobile p {
  margin: 0;
}
.header-control > ul > li .menu_nav_header .dropdown-menu::after, .header-control-mobile > ul > li .menu_nav_header .dropdown-menu::after{
	    border-bottom: 11px solid #ffffff!important;
	    display:none!important;
}




.header-control > ul > li .menu_nav_header .dropdown-menu::before, .header-control-mobile > ul > li .menu_nav_header .dropdown-menu::before,
.header-control > ul > li .menu_nav_header .dropdown-menu::after, .header-control-mobile > ul > li .menu_nav_header .dropdown-menu::after{
	/*right: 48%!important;*/
	/*right:auto!important;*/
	display:none!important;
}

.header-control > ul > li .menu_nav_header .dropdown-menu, .header-control-mobile > ul > li .menu_nav_header .dropdown-menu {
    /*width: 20em!important;
    top: 130% !important;
    left: inherit !important;
    right: -9em!important;
    padding-top: 10px;
    border-radius: 10px;
    background: #ffffff;
    margin: 0;
    border: 0;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);*/
    right:auto!important;
}

#mainNav {
  border-color: rgba(34, 34, 34, 0.05);
  -webkit-transition: all .35s;
  transition: all .35s;
  font-family: 'Gibson-SemiBold', sans-serif;
  font-weight: 200;
  padding: 0;
  top: 90px;
  background-color: #6BA53C;
}

#mainNav .container {
  display: inline-block;
}

#mainNav .navbar-brand {
  color: #F0C52E;
  font-family: 'Gibson-Bold', sans-serif;
  font-weight: 700;
  font-size: 26px;
  padding: 0;
}

#mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
  color: #fcbd20;
}

#mainNav .navbar-brand img {
  display: block;
}

#mainNav .navbar-nav > .nav-item > a {
  font: 17px/1.2 'rf_rufosemibold', sans-serif;
  color: #ffffff;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 40px;
  text-transform: uppercase;
}

#mainNav .navbar-nav > .nav-item > a.active {
  color: #599EDF !important;
  background-color: transparent;
}

#mainNav .navbar-nav > .nav-item > a.active:hover {
  background-color: transparent;
}

#mainNav .navbar-nav > .nav-item > a:focus {
  color: #ffffff;
}

#mainNav .navbar-nav .dropdown-menu {
  border-radius: 0;
  background: #2C0E0F;
  width: 100%;
  margin: 0;
  min-width: 142px;
  border: 0;
}

#mainNav .navbar-nav .dropdown-menu .dropdown-item {
  font: 17px/1.3 'rf_rufosemibold', sans-serif;
  color: #ffffff;
  padding: 8px 1.5rem;
}

#mainNav .navbar-nav .dropdown-menu .dropdown-item:hover {
  background: #6BA53C;
}

#mainNav .navbar-nav .dropdown-menu .dropdown-item.active, #mainNav .navbar-nav .dropdown-menu .dropdown-item:active {
  background: #2C0E0F;
}

#mainNav .nav-pills .nav-link.active,
#mainNav .nav-pills .show > .nav-link {
  background: #2C0E0F;
  color: #ffffff;
  border-radius: 0;
}

#mainNav .dropdown-toggle::after {
  font-family: 'market';
  content: "\e903";
  font-size: 6px;
  border: 0;
  margin-left: 5px;
}

#mega-menu {
  width: 100%;
}

@media (min-width: 992px) {
  #mainNav {
    border-color: transparent;
  }
  #mainNav .navbar-brand:hover, #mainNav .navbar-brand:focus {
    color: white;
  }
  #mainNav .navbar-nav {
    width: 100%;
  }
  #mainNav .navbar-nav > .nav-item {
    margin-left: 20px;
  }
  #mainNav .navbar-nav > .nav-item > a {
    color: #ffffff;
    padding-right: 10px;
    padding-left: 10px;
  }
  #mainNav .navbar-nav > .nav-item > a:focus {
    color: #ffffff;
  }
  #mainNav .navbar-nav > .nav-item:last-child > a {
    padding-right: 0;
  }
  #mainNav.navbar-shrink {
    border-color: rgba(34, 34, 34, 0.1);
    background-color: white;
    -webkit-box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.1);
    top: 74px;
  }
  #mainNav.navbar-shrink .navbar-brand {
    color: #222222;
  }
  #mainNav.navbar-shrink .navbar-brand:hover, #mainNav.navbar-shrink .navbar-brand:focus {
    color: #000000;
  }
  #mainNav.navbar-shrink .navbar-nav > li > a {
    color: #222222;
  }
  #mainNav.navbar-shrink .navbar-nav > li > a:focus {
    color: #222222;
  }
  #mainNav.navbar-shrink .navbar-nav > li > a:hover, #mainNav.navbar-shrink .navbar-nav > li > a:focus:hover {
    color: #ffffff;
  }
  #mainNav.navbar-shrink .navbar-nav > li > a:focus {
    color: #ffffff;
  }
  #topbar.topbar-shrink {
    /*height: 74px;*/
    /*padding: 5px 0;*/
  }
  #topbar.topbar-shrink .navbar-brand {
    margin-top: -5px;
  }
}

@media (max-width: 991px) {
  body {
    /*padding-top: 90px;*/
  }
  #search-box {
    display: none;
  }
  .search-form-mobile {
    top: 90px;
  }
}

@media (max-width: 767px) {
  #topbar .row {
    margin-right: 0;
    margin-left: 0;
  }
  #topbar .row > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
  }
  .header-control, .header-control-mobile {
    padding: 7px 0 0;
  }
  .header-control .address, .header-control-mobile .address {
    padding-left: 14px;
    font-size: 14px;
    margin: 4px 0 0 0;
  }
  .header-control ul li, .header-control-mobile ul li {
    padding: 0 7px;
  }
  .header-control ul li .user-acount .dropdown-menu, .header-control-mobile ul li .user-acount .dropdown-menu {
    top: 100% !important;
    transform: translate3d(0px, 13px, 0px) !important;
    /*left: 18px !important;*/
  }
  .search-form-mobile {
    top: 70px;
  }
  #mainNav {
    padding: 0;
    top: 70px;
  }
  #mainNav .navbar-brand {
    margin-left: 15px;
  }
  #mainNav .navbar-brand img {
    width: 230px;
  }
  #mainNav.navbar-shrink {
    background-color: #fff;
    padding: 0;
  }
  #mainNav .navbar-collapse {
    min-height: 59px;
    background: #6BA53C;
    padding: 10px 15px 30px 15px;
  }
  #mainNav .navbar-nav {
    margin-top: 10px;
  }
  #mainNav .navbar-nav > .nav-item > a {
    color: #ffffff;
    padding: 15px;
  }
  
  .header-fixed-home {
  	top: 4em!important;
  }
  
  .header-control ul li .header-shopcart .dropdown-menu, .header-control-mobile ul li .header-shopcart .dropdown-menu {
    top: 100% !important;
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
}
}

.main-nav {
  position: fixed;
  z-index: 12;
  /*top: 90px;*/
  top: 67px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
}

.main-nav.navbar-shrink {
  /*top: 74px;*/
  top: 67px;
}

.main-nav .navbar-nav .nav-link {
  text-align: left;
  font-family: 'Gibson-Regular', sans-serif;
  font-size: 14px;
  color: #2A2D35;
  border-radius: 0;
}

.main-nav .navbar-nav .nav-link::after {
  content: none;
}

.main-nav .navbar-nav .nav-link i {
  font-size: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main-nav .navbar-nav .nav-link.active,
.main-nav .navbar-nav .show > .nav-link {
  color: #6BA53C;
  background: transparent;
}

.main-nav .navbar-nav .dropdown-menu {
  border: 0;
}

.main-nav .navbar-nav .dropdown-item {
  padding: .5rem 1rem;
  font-family: 'Gibson-Regular', sans-serif;
  font-size: 14px;
  color: #2A2D35;
}

.main-nav .navbar-nav .dropdown-item:hover {
  color: #6BA53C;
  background: transparent;
}

@media (min-width: 768px) {
  .main-nav .navbar-wrapp {
    padding-left: 120px;
  }
  .main-nav .navbar {
    padding: 0;
  }
  .main-nav .navbar-nav {
    width: 100%;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 28px 0;
  }
  .main-nav .navbar-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 149px;
    width: 1px;
    height: 100%;
    background: #e6e6e6;
  }
  .main-nav .navbar-nav .nav-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
  }
  .main-nav .navbar-nav .nav-link {
    width: 150px;
    position: relative;
  }
  .main-nav .navbar-nav .nav-link:hover {
    color: #6BA53C;
    background: transparent;
  }
  .main-nav .navbar-nav .dropdown-menu {
    top: 28px;
    left: 150px;
    position: absolute;
    width: calc(100% - 150px);
    margin: 0;
    padding: 0 0 0 20px;
  }
  .main-nav .navbar-nav .dropdown-menu .col-group {
    float: left;
    width: 20%;
  }
}

.navbar-toggler-trigger {
  float: right;
  display: inline-block;
  position: relative;
  padding: 0 46px 0 20px;
  font-family: 'gibson-regular', sans-serif;
  font-size: 16px;
  background-color: #F3F3F4;
  color: #2A2D35;
  border-radius: 3px;
  text-decoration: none;
  height: 36px;
  line-height: 36px;
  margin-top: 10px;
}

.navbar-toggler-trigger span {
  position: absolute;
  top: 50%;
  left: 90%;
  margin-left: -18px;
  width: 16px;
  height: 2px;
  background-color: #2A2D35;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.navbar-toggler-trigger span::before, .navbar-toggler-trigger span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -1px;
  width: 16px;
  height: 2px;
  background-color: #2A2D35;
}

.navbar-toggler-trigger span::before, .navbar-toggler-trigger span::after {
  content: '';
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.navbar-toggler-trigger span::before {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.navbar-toggler-trigger span::after {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.navbar-toggler-trigger:hover {
  text-decoration: none;
  color: #6BA53C;
}

.navbar-toggler-trigger:hover span {
  background-color: #6BA53C;
}

.navbar-toggler-trigger:hover span:before, .navbar-toggler-trigger:hover span:after {
  background-color: #6BA53C;
}

.navbar-toggler-trigger.open {
  color: #6BA53C;
}

.navbar-toggler-trigger.open span {
  height: 0;
}

.navbar-toggler-trigger.open span:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #6BA53C;
}

.navbar-toggler-trigger.open span:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #6BA53C;
}

.no-touch .navbar-toggler-trigger:hover {
  background-color: #171b46;
}

@media only screen and (min-width: 1024px) {
  .navbar-toggler-trigger.open {
    background-color: #F3F3F4;
  }
  .no-touch .navbar-toggler-trigger.open:hover {
    background-color: #F3F3F4;
  }
}

@media (max-width: 767px) {
  .navbar-toggler-trigger {
    padding: 0;
    width: 20px;
    margin-top: 6px;
  }
  .navbar-toggler-trigger .text {
    display: none;
  }
  .navbar-toggler-trigger span {
    left: 98%;
  }
  .main-nav {
    top: 71px;
  }
  .main-nav.navbar-shrink {
    top: 71px;
  }
  .main-nav .navbar-nav .nav-link i {
    top: 14px;
    -webkit-transform: none;
    transform: none;
  }
}

.banner-section {
  position: relative;
  padding: 0 !important;
}

.home-carousel {
  position: relative;
}

.home-carousel .container {
  position: static;
  height: 100%;
}

.home-carousel .slide-item {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0;
  height: 410px;
}

.home-carousel .slide-item:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0px;
  right: 0px;
  z-index: 1;
}

.home-carousel .slide-item .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home-carousel .content-box {
  position: relative;
  display: block;
  z-index: 5;
  width: 100%;
  text-align: center;
}

.home-carousel .content-box h1 {
  position: relative;
  display: block;
  opacity: 0;
  font: 700 55px "rf_ruforegular", sans-serif;
  color: #ffffff;
  margin-bottom: 4px;
  text-transform: uppercase;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.home-carousel .active .content-box h1 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.home-carousel .content-box p {
  position: relative;
  display: block;
  font: 700 32px "rf_ruforegular", sans-serif;
  color: #ffffff;
  opacity: 0;
  text-transform: uppercase;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1300ms ease;
  transition: all 1300ms ease;
}

.home-carousel .active .content-box p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-section .home-carousel .content-box a.theme-btn {
  padding: 14px 47px;
}

.home-carousel .content-box .btn-box {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1600ms ease;
  transition: all 1600ms ease;
}

.home-carousel .content-box .btn-box .btn-comprar {
  width: 190px;
  height: 40px;
  background: #2C0E0F;
  font: 20px "rf_ruforegular", sans-serif;
  color: #ffffff;
  border-radius: 0;
}

.home-carousel .content-box .btn-box .btn-comprar i {
  font-size: 14px;
  margin-left: 10px;
}

.home-carousel .content-box .btn-box .btn-comprar:hover {
  background: #6BA53C;
  color: #ffffff;
}

.home-carousel .active .content-box .btn-box {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.home-carousel .owl-nav {
  margin-top: 0;
}

.home-carousel .owl-nav button.owl-prev, .home-carousel .owl-nav button.owl-next {
  font-size: 20px;
  height: 50px;
  border-radius: 50%;
  left: 45px;
  line-height: 50px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 50px;
  background: #2C0E0F;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 600ms ease 0ms;
  transition: all 600ms ease 0ms;
  opacity: 0;
  visibility: hidden;
}

.home-carousel .owl-nav button.owl-prev:focus, .home-carousel .owl-nav button.owl-next:focus {
  outline: none;
}

.home-carousel:hover .owl-nav button.owl-prev, .home-carousel:hover .owl-nav button.owl-next {
  opacity: 1;
  visibility: visible;
}

.home-carousel:hover .owl-nav button.owl-prev {
  left: 15px;
}

.home-carousel:hover .owl-nav button.owl-prev:hover {
  background: #6BA53C;
}

.home-carousel:hover .owl-nav button.owl-prev:hover i {
  color: #ffffff;
}

.home-carousel:hover .owl-nav button.owl-next {
  right: 15px;
}

.home-carousel:hover .owl-nav button.owl-next:hover {
  background: #6BA53C;
}

.home-carousel:hover .owl-nav button.owl-next:hover i {
  color: #ffffff;
}

.home-carousel .owl-nav button.owl-next {
  left: auto;
  right: 45px;
}

.home-carousel .owl-nav button i {
  color: #fff;
}

.home-carousel .owl-dots {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 20px;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.home-carousel .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid #ffffff;
}

.home-carousel .owl-dots .owl-dot:hover span {
  background: #ffffff;
}

.home-carousel .owl-dots .owl-dot.active span {
  background: #ffffff;
}

.home-carousel .owl-dots .owl-dot:focus {
  outline: none;
}

.search-mobile {
    text-align: center;
    display: inline-block;
    display: none;
}

@media (max-width: 767px) {
  .home-carousel .content-box h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .home-carousel .content-box p.discount {
    font-size: 20px;
  }
}

.home-content {
  background: url("../img/content-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.masthead {
  position: relative;
  width: 100%;
  color: white;
  background-position: center;
  background-size: cover;
}

.masthead .carousel-control-next,
.masthead .carousel-control-prev {
  font-size: 30px;
}

.masthead .carousel-item {
  position: relative;
}

.masthead .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.masthead .carousel-item .img-fluid {
  width: 100%;
}

.masthead .carousel-item img {
  display: block;
  width: 100%;
}

.masthead .carousel-caption {
  top: 50%;
  bottom: inherit;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}

.masthead .carousel-caption h1 {
  font-family: 'rf_rufobold', sans-serif;
  font-size: 65px;
  color: #ffffff;
}

.masthead .carousel-caption p {
  font-family: 'rf_rufobold', sans-serif;
  font-size: 32px;
  color: #ffffff;
}

.masthead .carousel-caption .btn-comprar {
  width: 215px;
  height: 50px;
  background: #5BABFC;
  font-family: 'rf_rufobold', sans-serif;
  font-size: 16px;
  color: #ffffff;
}

.masthead .carousel-caption .btn-comprar i {
  font-size: 10px;
  margin-left: 10px;
}

.masthead .carousel-caption .btn-comprar:hover {
  background: #d44e2f;
}

.masthead-slider {
  width: 100%;
}

.masthead-slider .carousel-item {
  height: 360px;
}

.masthead-slider .carousel-item .carousel-caption {
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: inherit;
  text-align: left;
}

.masthead-slider .carousel-item .carousel-caption h1 {
  font: 700 40px/1 'rf_ruforegular', sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
}

.masthead-slider .carousel-item .carousel-caption h3 {
  font: 700 20px/1 'rf_ruforegular', sans-serif;
  color: #599EDF;
  margin-top: 10px;
  margin-bottom: 30px;
}

.masthead-slider .carousel-item .carousel-caption p {
  font: 300 25px/1 'rf_ruforegular', sans-serif;
  color: #ffffff;
}

.masthead-slider .carousel-item .carousel-caption p.text-get {
  font: 300 20px/1 'rf_ruforegular', sans-serif;
  margin-bottom: 0;
}

.masthead-slider .carousel-item .carousel-caption .btn-order {
  background: #5BA1DF;
  padding: 20px 20px;
  font: 700 17px/1 'rf_ruforegular', sans-serif;
  color: #ffffff;
  border-radius: 15px;
}

.masthead-slider .carousel-control-next,
.masthead-slider .carousel-control-prev {
  top: 50%;
  margin-top: -62px;
  width: 60px;
  height: 60px;
  background: #363636;
  border-radius: 100%;
  font-size: 20px;
  opacity: 1;
  z-index: 999;
}

.masthead-slider .carousel-control-next:hover,
.masthead-slider .carousel-control-prev:hover {
  color: #F0C52E;
}

.masthead-slider .carousel-control-next {
  right: -120px;
}

.masthead-slider .carousel-control-prev {
  left: -120px;
}

.masthead-slider .carousel-indicators {
  bottom: 40px;
}

@media (max-width: 767px) {
  .masthead-slider .carousel-control-next {
    right: 0;
  }
  .masthead-slider .carousel-control-prev {
    left: 0;
  }
}

section .section-heading {
  text-align: center;
  margin-bottom: 50px;
}

section .section-heading h2 {
  font: 700 40px/48px 'rf_ruforegular', sans-serif;
  color: #253566;
}

section .section-heading p {
  font: 300 15px/1 'rf_ruforegular', sans-serif;
  color: #666666;
}

section.feature {
  padding-top: 54px;
}

.feature-single {
  overflow: hidden;
  margin-bottom: 30px;
}

.feature-single .icon {
  width: 100px;
  height: 100px;
  line-height: 94px;
  border-radius: 100%;
  border: 3px solid #C1E2FF;
  background: #ffffff;
  color: #3F6EC0;
  font-size: 35px;
  display: inline-block;
  margin-bottom: 30px;
}

.feature-single .caption h4 {
  margin: 0;
}

.feature-single .caption h4 a {
  display: block;
  width: 100%;
  padding: 8px 15px;
  font-family: 'rf_rufobold', sans-serif;
  font-size: 26px;
  line-height: 30px;
  color: #ffffff;
  text-decoration: none;
}

.feature-single .image img {
  width: 100%!important;
  object-fit: fill!important;
}

.feature-single p {
  font: 300 14px/1.5 'rf_ruforegular', sans-serif;
  color: #777776;
}

.feature-single.orange {
  background: #CE9633;
}

.feature-single.green {
  background: #6BA53C;
}

.feature-single.light-blue {
  background: #5BABFC;
}

.feature-single.brown {
  background: #2C0E0F;
}

.feature-single.white {
  background: #ffffff;
}

.feature-single.white .caption h4 a {
  color: #D44E2F;
}

.feature-single.white .image {
  text-align: right;
}

/*********************************
 *4.1 Home Slider
 *********************************/
.home_slider_container {
  display: block;
  width: 100%;
  height: 410px;
  z-index: 10;
  position: relative;
}

.home_slider_container .owl-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
}

.home_slider_container .owl-theme .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
  background: transparent;
  margin: 5px 10px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}

.home_slider_container .owl-theme .owl-dots .owl-dot.active span {
  background: #ffffff;
}

.home_slider, .home_slider_item {
  width: 100%;
  height: 100%;
}

.home_slider_item {
  position: relative;
}

.home_slider_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.home_slider_background {
  width: 100%;
  height: 410px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.home_slider_content {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 11;
}

.home_slider_content h1 {
  font-family: 'rf_rufobold', sans-serif;
  font-size: 55px;
  color: #ffffff;
}

.home_slider_content p {
  font-family: 'rf_rufobold', sans-serif;
  font-size: 32px;
  color: #ffffff;
}

.home_slider_content .btn-comprar {
  width: 190px;
  height: 40px;
  background: #2C0E0F;
  border-radius: 0;
  font-family: 'rf_rufobold', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 28px;
}

.home_slider_content .btn-comprar i {
  font-size: 10px;
  margin-left: 10px;
}

.home_slider_content .btn-comprar:hover {
  background: #6BA53C;
}

.home_slider_button {
  margin-top: 70px;
}

.flipInX {
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}

/*********************************
 *4.2 Home Slider Nav
 **********************************/
.home_slider_nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 11;
  cursor: pointer;
  font-size: 30px;
  line-height: 30px;
  color: #ffffff;
}

.home_slider_prev {
  left: 50px;
}

.home_slider_next {
  right: 50px;
}

.home_slider_prev:hover .nav_path, .home_slider_prev:hover .nav_arrow {
  fill: url(#home_grad_prev);
}

.home_slider_next:hover .nav_arrow, .home_slider_next:hover .nav_path {
  fill: url(#home_grad_next);
}

footer {
  padding: 25px 0;
  color: #ffffff;
  background-color: #6BA53C;
}

footer p.copy {
  font: 700 15px 'rf_ruforegular', sans-serif;
  margin-bottom: 20px;
  text-align: center;
}

footer .list-info li {
  display: inline-block;
  font-family: 'rf_ruforegular', sans-serif;
  font-size: 14px;
  color: #ffffff;
}

footer .list-info li + li {
  margin-left: 20px;
}

footer .list-info li .icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #6BA53C;
  margin-right: 5px;
  text-align: center;
  border-radius: 100%;
  font-size: 11px;
  line-height: 22px;
}

footer .list-info li a {
  font-family: 'rf_ruforegular', sans-serif;
  font-size: 14px;
  color: #ffffff;
}

footer .list-info li a:hover {
  color: #ffffff;
}

footer .list-nav li {
  display: inline-block;
  font-family: 'rf_ruforegular', sans-serif;
  font-size: 14px;
  color: #ffffff;
}

footer .list-nav li + li {
  margin-left: 10px;
}

footer .list-nav li a {
  font-family: 'rf_ruforegular', sans-serif;
  font-size: 12px;
  color: #ffffff;
}

footer .list-nav li a:hover {
  color: #ffffff;
}

footer .app-area h4 {
  font-family: 'rf_rufobold', sans-serif;
  font-size: 19px;
  color: #ffffff;
}

footer .app-area .list-app li {
  display: inline-block;
}

footer .app-area .list-app li .btn-app {
  width: 60px;
  height: 60px;
  line-height: 42px;
  background: #ffffff;
  border-radius: 0;
  text-align: center;
}

footer .app-area .list-app li .btn-app img {
  vertical-align: middle;
}

footer .social-buttons {
  text-align: right;
}

footer .social-buttons ul {
  margin-bottom: 0;
}

footer .social-buttons ul li a {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.07);
  line-height: 44px;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  border-radius: 100%;
}

footer .social-buttons ul li a:hover, footer .social-buttons ul li a:focus, footer .social-buttons ul li a:active, footer .social-buttons ul li a.active {
  text-decoration: none;
}

footer .social-buttons ul li a:hover {
  background: #C82326;
}

@media (min-width: 1025px) {
  footer .app-area .list-app li + li {
    margin-left: 35px;
  }
}

header.heading {
  position: relative;
  background-image: url("../img/heading-bg.jpg");
  background-position: center;
  background-size: cover;
  padding: 79px 0;
}

header.heading h1 {
  text-align: center;
  font: 40px/1 'rf_ruforegular', sans-serif;
  color: #ffffff;
  margin: 0;
}

section.content {
  padding: 52px 0 40px;
  min-height: 530px;
  background: url("../img/content-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

section.content.product {
  padding-top: 50px;
}

section.content.account {
  padding-top: 44px;
  padding-bottom: 56px;
}

section.content .page-title {
  text-align: center;
  padding: 30px 0 30px;
}

section.content .page-title h1 {
  font: 22px/1 'rf_rufobold', sans-serif;
  color: #2C0E0F;
  text-transform: uppercase;
}

.breadcrumb-nav .breadcrumb {
  padding: 0;
  background: #ffffff;
  margin: 0;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item {
  font: 16px/25px 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item img {
  margin-right: 10px;
  vertical-align: top;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item a {
  font: 16px/25px 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
  display: inline-block;
}

.accordion {
  margin-bottom: 50px;
}

.accordion .btn {
  width: 100%;
  cursor: pointer;
  position: relative;
  text-align: left;
  font: 18px/1 'rf_rufobold', sans-serif;
  color: #6BA53C;
  padding: 17px 36px 17px 10px;
  text-decoration: none;
}

.accordion .btn .icon-pm {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  width: 9px;
  height: 9px;
}

.accordion .btn .icon-pm:before {
  background: #6BA53C;
  content: '';
  height: 9px;
  width: 1px;
  position: absolute;
  left: 4px;
  top: 0px;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  border-radius: 2px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion .btn .icon-pm:after {
  background: #6BA53C;
  content: '';
  height: 1px;
  width: 9px;
  position: absolute;
  left: 0;
  top: 4px;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform-origin: center;
  transform-origin: center;
  border-radius: 2px;
}

.accordion .btn.collapsed .icon-pm:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion .card {
  border: 0;
  background: #F3F3F4;
  border-radius: 10px;
  margin-bottom: 15px;
}

.accordion .card .card-header {
  margin-bottom: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.accordion .card .card-body p {
  font: 15px/1.5 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.accordion .card .card-body ul {
  list-style-type: none;
  padding: 0;
}

.accordion .card .card-body ul li {
  font: 15px/1.5 'rf_ruforegular', sans-serif;
  color: #383F4A;
  margin-bottom: 15px;
}

.modal {
  z-index: 1070;
}

.modal-backdrop {
  z-index: 1060;
  background-color: #495263;
  opacity: 0.8;
}

.modal-dialog .modal-content {
  border-radius: 0;
  border: 0;
}

.modal-dialog .modal-header {
  border: 0;
}

.modal-dialog .modal-header .modal-header-content {
  width: 100%;
  position: relative;
  padding: 15px 0;
}

.modal-dialog .modal-header .modal-header-content h5 {
  font: 22px/1 'rf_rufobold', sans-serif;
  color: #2C0E0F;
  margin: 0;
  text-transform: uppercase;
}

.modal-dialog .modal-header .modal-header-content .close {
  position: absolute;
  top: 0;
  right: -20px;
  width: 36px;
  height: 36px;
  background: #F3F3F4;
  border-radius: 100%;
  padding: 0;
  font-size: 18px;
  margin: 0;
  color: #000000;
  opacity: 1;
}

.modal-dialog .modal-header .modal-header-content .close:hover {
  color: #6BA53C;
}

.modal-dialog .modal-header .modal-header-content .back {
  position: absolute;
  top: 0;
  left: -20px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 0;
  border-radius: 100%;
  padding: 0;
  font-size: 18px;
  margin: 0;
  color: #000000;
}

.modal-dialog .modal-body {
  padding: 0 30px 30px;
}

.modal-dialog .modal-body .form-control {
  height: 30px;
  border-color: #D4D5DB;
  border-radius: 5px;
  font: 16px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  border-radius: 0;
}

.modal-dialog .modal-body .checkbox label {
  font: 12px/26px 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.modal-dialog .modal-body .checkbox label a {
  color: #383F4A;
  text-decoration: underline;
}

.modal-dialog .modal-body .button {
  text-align: center;
}

.modal-dialog .modal-body .btn-popup {
  width: 100%;
  max-width: 122px;
  height: 30px;
  font: 18px 'rf_rufosemibold', sans-serif;
  background: #6BA53C;
  color: #fff;
  border-radius: 5px;
  line-height: 18px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 5px .75rem;
}

.modal-dialog .modal-body .btn-popup.btn-resend {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.modal-dialog .modal-body .btn-full {
  width: 100%;
  height: 36px;
  font: 18px 'rf_rufobold', sans-serif;
  background: #6BA53C;
  color: #fff;
  border-radius: 5px;
  line-height: 18px;
  text-transform: uppercase;
  border-radius: 0;
}

.modal-dialog.modal-codigo .modal-body {
  text-align: center;
}

.modal-dialog.modal-codigo .modal-body .code-info p.phone {
  font: 30px/1 'rf_ruforegular', sans-serif;
  color: #383F4A;
  letter-spacing: 0.2em;
  color: #2C0E0F;
}

.modal-dialog.modal-codigo .modal-body .code-info p.message {
  font: 13px/1 'rf_ruforegular', sans-serif;
  color: #6BA53C;
}

.modal-dialog.modal-cellphonenumber .modal-header h5 {
  text-align: center;
}

.modal-dialog.modal-stores .modal-header h5 {
  text-align: center;
}

.modal-dialog.modal-stores .store-address-wrapp {
  text-align: center;
}

.modal-dialog.modal-stores .store-address {
  background: #F3F3F4;
  padding: 15px 15px;
  text-align: center;
  margin-bottom: 30px;
  display: inline-block;
}

.modal-dialog.modal-stores .store-address p {
  margin: 0;
  font: 18px/1 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.modal-dialog.modal-stores .store-address p span {
  color: #2C0E0F;
  font: 18px/1 'rf_rufosemibold', sans-serif;
}

.modal-dialog.modal-stores .store-address p span i {
  margin: 0 10px;
}

.modal-dialog.modal-stores .store-box {
  min-height: 230px;
  margin-bottom: 25px;
}

.modal-dialog.modal-stores .store-box .store-brand {
  min-height: 158px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal-dialog.modal-stores .store-box .store-image img {
  width: 100%;
  display: block;
}

.modal-dialog.modal-stores .store-box .store-info {
  text-align: right;
  height: 82px;
  border-bottom: 2px solid #2C0E0F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal-dialog.modal-stores .store-box .store-info h6 {
  font: 20px/1 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
}

.modal-dialog.modal-stores .store-box .store-info p {
  margin-bottom: 10px;
  font: 16px/1 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
  margin: 0;
}

.modal-dialog.modal-search-address .modal-header h5 {
  text-align: center;
}

.carousel-stores .carousel-control-prev,
.carousel-stores .carousel-control-next {
  color: #000000;
  font-size: 30px;
  width: 32px;
  margin-top: -26px;
}

.carousel-stores .carousel-control-prev {
  left: -32px;
}

.carousel-stores .carousel-control-next {
  right: -32px;
}

.modal-cellphonenumber .login-form .form-group.row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-cellphonenumber .login-form .form-info {
  width: 100%;
  max-width: 292px;
  margin: 0 auto;
  text-align: center;
}

.modal-cellphonenumber .login-form .form-info p {
  margin-bottom: 20px;
  font: 13px/1.3 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.modal-search-address .address-search-form {
  padding: 15px 0!important;
}

.modal-search-address .address-search-form .form-control {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  border: 3px solid #DDE1EC;
  font-family: 'rf_ruforegular', sans-serif;
  font-size: 16px;
  color: #929EAF;
  border-radius: 0;
  border-width: 3px 0 3px 3px;
}

.modal-search-address .address-search-form .input-group {
  padding-right: 40px;
}

.modal-search-address .address-search-form .input-group-append {
  position: absolute;
  top: 0;
  right: 0;
}

.modal-search-address .address-search-form .btn-search {
  color: #495263;
  background: #ffffff;
  border: 3px solid #DDE1EC;
  border-width: 3px 3px 3px 0;
  border-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 40px;
}

.modal-search-address .reference-form {
  /*padding-top: 40px;*/
}

.modal-ingresa-codigo .code-form .form-group {
  text-align: center;
}

.modal-ingresa-codigo .code-form .form-control {
  width: 50px;
  height: 60px;
  display: inline-block;
  margin: 0 5px;
  text-align: center;
  font: 24px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
}

.modal-ingresa-codigo .code-message {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
  padding-top: 25px;
}

.modal-ingresa-codigo .code-message p {
  font: 13px/1.3 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.modal-ingresa-codigo .code-message p.green {
  color: #6BA53C;
}

.modal-complementos .modal-header h5 {
  text-align: center;
}

.modal-complementos .modal-body h6 {
  font: 18px/1 'rf_rufobold', sans-serif;
  color: #6BA53C;
}

.modal-complementos .modal-body p {
  font: 16px/1.3 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.modal-complementos .modal-body p.orange {
  color: #D44E2F;
}

.modal-complementos .modal-body p.brown {
  color: #2C0E0F;
}

.modal-complementos .modal-body .radio label {
  font: 12px/24px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  margin-bottom: 10px;
}

.modal-complementos .modal-body .radio label span {
  color: #6BA53C;
}

.modal-complementos .form-group {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .modal-dialog .modal-header {
    padding: 10px 30px;
  }
  .modal-register {
    max-width: 608px;
  }
  .modal-register .modal-header {
    padding: 10px 30px;
  }
  .modal-register .modal-header h5 {
    text-align: center;
  }
  .modal-codigo, .modal-ingresa-codigo {
    max-width: 600px;
  }
  .modal-codigo .modal-header h5, .modal-ingresa-codigo .modal-header h5 {
    text-align: center;
  }
  .modal-codigo .modal-body, .modal-ingresa-codigo .modal-body {
    padding: 0 50px 50px;
  }
  .modal-stores {
    max-width: 920px;
  }
  .modal-stores .modal-body {
    padding: 0 50px 50px;
  }
  .modal-cellphonenumber {
    max-width: 600px;
  }
  .modal-cellphonenumber .modal-body {
    padding: 20px 50px 50px;
  }
  .modal-search-address {
    max-width: 920px;
  }
  .modal-search-address .modal-body {
    padding: 0 50px 50px;
  }
  .modal-complementos {
    max-width: 648px;
  }
  .modal-complementos .modal-body {
    padding: 0 50px 50px;
  }
}

@media (max-width: 767px) {
  .modal-dialog .modal-header .modal-header-content {
    padding: 20px 0 0;
  }
  .modal-dialog .modal-header .modal-header-content .close {
    top: -10px;
    right: -10px;
  }
  .modal-dialog .modal-header .modal-header-content .back {
    top: -10px;
    left: -10px;
  }
  .modal-dialog .modal-body {
    padding: 20px 15px 30px;
  }
  .frequent-questions {
    padding-top: 30px;
  }
}

.products-area {
  padding-top: 27px;
}

.product-item {
  padding: 0;
  margin-bottom: 16px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.product-item .prod-image {
  text-align: center;
}

.product-item .prod-image img {
  vertical-align: middle;
  width:100%;
}

.product-item .prod-caption {
  padding: 20px 17px;
}

.product-item .prod-description {
  text-align: center;
  display: inline-block;
  width: 100%;
  min-height: 72px;
  padding: 0 20px;
}

.product-item .prod-description h3 {
  margin: 0;
}

.product-item .prod-description h3 a {
  font: 20px/1 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
}

.product-item .prod-description p {
  line-height: 1.2;
  margin-bottom: 0;
}

.product-item .prod-description p a {
  font: 16px/1.2 'rf_ruforegular', sans-serif;
  color: #6A6F7A;
}

.product-item .prod-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-item .prod-price.and-oldprice {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-item .prod-price p {
  font: 20px/1 'rf_rufobold', sans-serif;
  color: #2C0E0F;
  margin-bottom: 12px;
}

.product-item .prod-price p.old-price {
  color: #ACADAC;
  text-decoration: line-through;
  font-family: 'rf_ruforegular', sans-serif;
}

.product-item .prod-add {
  height: 30px;
}

.product-item .prod-add .btn-add {
  font: 18px/1 'rf_rufobold', sans-serif;
  color: #6BA53C;
  background: #ffffff;
  border: 1px solid #6BA53C;
  height: 30px;
  border-radius: 0;
}

.product-item .prod-add .btn-add i {
  font-size: 11px;
  margin-right: 5px;
}

.product-item .prod-add .btn-add:hover {
  color: #d44e2f;
}

.product-item .prod-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #F3F3F4;
  height: 30px;
  padding: 0 5px;
}

.product-item .prod-action.with-quantity {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-item .prod-action .btn-trash {
  width: 26px;
  height: 26px;
  border-radius: 100%;
  font-size: 14px;
  padding: 0;
}

.product-item .prod-action .btn-trash:hover {
  color: red;
}

.product-item .prod-action .btn-plus {
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 100%;
  font-size: 10px;
  padding: 6px 0px;
}

.product-item .prod-action .btn-plus:hover {
  color: #66BDDD;
}

.product-item .prod-action .quantity {
  font: 18px/1 'rf_rufobold', sans-serif;
  color: #2C0E0F;
}

.pagination-nav {
  margin-top: 30px;
}

.pagination-nav .pagination .page-item {
  font: 14px 'Gibson-SemiBold', sans-serif;
  line-height: 36px;
}

.pagination-nav .pagination .page-item + .page-item {
  margin-left: 15px;
}

.pagination-nav .pagination .page-item .page-link {
  border-radius: 0;
  padding: 5px;
  width: 36px;
  height: 36px;
  font: 16px 'rf_ruforegular', sans-serif;
  line-height: 26px;
  color: #2C0E0F;
  text-align: center;
  background: #ffffff;
  border-color: #E6E6E6;
}

.pagination-nav .pagination .page-item .page-link:hover {
  background: #6BA53C;
  color: #ffffff;
  border-color: #6BA53C;
}

.pagination-nav .pagination .page-item.active .page-link {
  background: #6BA53C;
  color: #ffffff;
  border-color: #6BA53C;
}

.product-wrapper {
  background: #ffffff;
}

.product-gallery {
  width: 100%;
  max-width: 484px;
}

.product-gallery .product-image {
  text-align: center;
}

.product-gallery .product-image img {
  width: auto;
  max-width: 100%;
  display: inline-block;
}

.owl-thumbs {
  text-align: center;
  margin-top: 10px;
}

.owl-thumbs .owl-thumb-item {
  height: 120px;
  width: 100%;
  max-width: 130px;
  background: transparent;
  border: 1px solid #DDE1EC;
  overflow: hidden;
}

.owl-thumbs .owl-thumb-item img {
  max-width: 100%;
  height: auto;
}

.owl-thumbs .owl-thumb-item + .owl-thumb-item {
  margin-left: 20px;
}

.product-details {
  padding: 50px 38px 50px 0;
}

.product-details .code {
  font: 14px/1 'rf_ruforegular', sans-serif;
  color: #ACADAC;
  margin-bottom: 4px;
}

.product-details h2 {
  font: 40px/1 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
  margin-bottom: 12px;
}

.product-details .brand {
  font: 13px/1 'rf_ruforegular', sans-serif;
  color: #929EAF;
}

.product-details .price p {
  font: 30px/1 'rf_rufobold', sans-serif;
  color: #6BA53C;
  display: inline-block;
}

.product-details .price p.old-price {
  font-family: 'rf_ruforegular', sans-serif;
  font-size: 17px;
  color: #929EAF;
  text-decoration: line-through;
}

.product-details .price p + p {
  margin-left: 30px;
}

.product-details .button {
  padding: 23px 0;
  border-top: 1px solid #EBEBEB;
}

.product-details .btn-agregar {
  width: 140px;
  height: 42px;
  background: #6BA53C;
  font: 22px/1 'rf_rufobold', sans-serif;
  color: #ffffff;
  border-radius: 0;
  text-transform: uppercase;
}

.product-details .btn-agregar:hover {
  background: #2C0E0F;
}

.product-details .description {
  padding: 30px 0;
  border-top: 1px solid #EBEBEB;
}

.product-details .description p {
  font: 17px/1 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
}

.products-interest {
  background: #ffffff;
  margin-top: 60px;
  border-radius: 10px;
}

.products-interest .title {
  background: #2C0E0F;
  text-align: center;
  padding: 12px 0;
}

.products-interest .title h3 {
  font: 17px/1 'rf_rufosemibold', sans-serif;
  color: #ffffff;
  margin: 0;
}

.products-interest .products-interest-wrapp {
  padding: 30px 28px;
}

@media (max-width: 767px) {
  .product-wrapper {
    padding: 15px;
  }
  .owl-thumbs .owl-thumb-item {
    height: 108px;
    max-width: 98px;
  }
  .owl-thumbs .owl-thumb-item + .owl-thumb-item {
    margin-left: 10px;
  }
  .product-details {
    padding: 30px 0 30px 0;
  }
  .product-details .btn-agregar {
    width: 100%;
  }
  .pagination-nav .pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.account .account-title {
  font: 20px 'rf_rufosemibold', sans-serif;
  color: #2C0E0F;
  text-align: center;
  text-transform: uppercase;
}

.account-wrapp {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
}

.account-menu {
  border: 1px solid #D4D5DB;
  padding-top: 20px;
}

.account-menu ul {
  list-style-type: none;
  padding: 0;
}

.account-menu ul li {
  margin-bottom: 21px;
}

.account-menu ul li a {
  border-left: 4px solid #ffffff;
  padding-left: 15px;
  font: 14px/20px 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
  display: inline-block;
  width: 100%;
  text-decoration: none;
}

.account-menu ul li a i {
  margin-right: 8px;
  font-size: 16px;
}

.account-menu ul li a.active, .account-menu ul li a:hover {
  border-color: #6BA53C;
  color: #6BA53C;
}

.account-menu-mobile .btn-dropdown {
  font: 16px/20px 'rf_rufobold', sans-serif;
  color: #ffffff;
  background: #6BA53C;
}

.account-menu-mobile .dropdown-item {
  border-left: 4px solid #ffffff;
  padding-left: 15px;
  font: 14px/20px 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
  display: inline-block;
  width: 100%;
  text-decoration: none;
}

.account-menu-mobile .dropdown-item i {
  margin-right: 8px;
  font-size: 16px;
}

.account-menu-mobile .dropdown-item.active, .account-menu-mobile .dropdown-item:hover {
  border-color: #6BA53C;
  color: #6BA53C;
  background: #ffffff;
}

.account-menu-mobile .dropdown-item:active {
  background: #ffffff;
}

.card-information .title-card {
  text-align: center;
  font: 22px/1 'rf_rufobold', sans-serif;
  color: #2C0E0F;
}

.card-information .profile {
  text-align: center;
  padding: 10px 0 30px;
}

.card-information .profile .avatar {
  display: inline-block;
  position: relative;
}

.card-information .profile .avatar img {
  border-radius: 10px;
}

.card-information .profile .avatar .btn-edit {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  font-size: 10px;
  background: #F3F3F4;
  padding: 0;
}

.perfil-form .form-group {
  margin-bottom: 25px;
}

.perfil-form label {
  font: 14px 'rf_ruforegular', sans-serif;
  color: #6A6F7A;
}

.perfil-form .form-control {
  font: 14px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  border-radius: 0;
}

.perfil-form .button {
  text-align: right;
  padding-top: 20px;
}

.perfil-form .button .btn-save {
  width: 178px;
  height: 36px;
  background: #6BA53C;
  font: 18px 'rf_rufosemibold', sans-serif;
  color: #ffffff;
  border-radius: 0;
}

.perfil-form .button .btn-save:hover {
  background: #2C0E0F;
}

.prime-form {
  padding-top: 30px;
}

.prime-form p {
  font: 14px 'rf_ruforegular', sans-serif;
  color: #383f4a;
  margin-bottom: 30px;
}

.prime-form .form-group {
  margin-bottom: 25px;
}

.prime-form label {
  font: 14px 'rf_ruforegular', sans-serif;
  color: #6A6F7A;
}

.prime-form .form-control {
  font: 14px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  border-radius: 0;
}

.prime-form .form-control[readonly] {
  background: #ffffff;
}

.prime-form .nice-select {
  height: 35px;
  line-height: 24px;
  border-color: #ced4da;
}

.prime-form .checkbox label {
  line-height: 24px;
}

.prime-form .button {
  text-align: right;
  padding-top: 20px;
}

.prime-form .button .btn-save {
  width: 178px;
  height: 36px;
  background: #6BA53C;
  font: 18px 'rf_rufosemibold', sans-serif;
  color: #ffffff;
  border-radius: 0;
}

.prime-form .button .btn-save:hover {
  background: #2C0E0F;
}

.shopping-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 25px;
}

.shopping-item + .shopping-item {
  border-top: 1px solid #F2F2F2;
  padding-top: 25px;
}

.shopping-item .product-thumb {
  width: 15%;
}

.shopping-item .product-descrip {
  width: 60%;
}

.shopping-item .product-descrip h4 {
  font: 18px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
}

.shopping-item .product-descrip p {
  font: 15px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  margin-bottom: 10px;
}

.shopping-item .product-descrip p.brand {
  color: #383F4A;
}

.shopping-item .product-price {
  width: 25%;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.shopping-item .product-price p {
  font: 14px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
  text-align: center;
}

.shopping-item .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.shopping-item .input-group {
  border: 1px solid #D4D5DB;
  border-radius: 0;
  width: 120px;
}

.shopping-item .input-group .form-control {
  text-align: center;
  font: 16px 'rf_rufosemibold', sans-serif;
  color: #383F4A;
  border: 0;
}

.shopping-total {
  border-top: 1px solid #F2F2F2;
}

.shopping-total .cart-subtotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shopping-total .cart-subtotal span {
  font: 18px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  padding: 10px 0;
}

.shopping-total .cart-subtotal span.price {
  padding-right: 30px;
}

.shopping-total .cart-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shopping-total .cart-total span {
  font: 18px 'rf_rufobold', sans-serif;
  color: #383F4A;
  padding: 10px 0;
}

.shopping-total .cart-total span.price {
  padding-right: 30px;
}

.shopping-total .table {
  border-top: 1px solid #F2F2F2;
}

.shopping-total .table td {
  border: 0;
  font: 18px 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.shopping-buttons {
  text-align: right;
  border-top: 1px solid #F2F2F2;
  margin-top: 20px;
  padding-top: 20px;
}

.shopping-buttons .btn {
  font: 16px 'rf_rufosemibold', sans-serif;
  height: 36px;
  border-radius: 5px;
  line-height: 22px;
  border-radius: 0;
}

.shopping-buttons .btn + .btn {
  margin-left: 15px;
}

.shopping-buttons .btn-seguir {
  width: 185px;
  background: #F3F3F4;
  color: #383F4A;
}

.shopping-buttons .btn-seguir:hover {
  background: #6BA53C;
  color: #ffffff;
}

.shopping-buttons .btn-continuar {
  width: 178px;
  background: #6BA53C;
  color: #ffffff;
}

.shopping-buttons .btn-continuar:hover {
  background: #2C0E0F;
}

.payment-methods h3 {
  font: 14px 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.payment-form {
  padding-top: 30px;
}

.payment-form .input-group-text {
  border: 0;
  background: #ffffff;
}

.payment-form .icon-card {
  font-size: 14px;
  color: #2C0E0F;
}

.payment-form .form-control {
  border-radius: 5px;
  border-color: #D4D5DB;
  min-width: 286px;
  font: 13px 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.payment-form .btn-trash {
  font-size: 14px;
  padding: 3px .75rem;
}

.payment-form .button {
  padding-top: 30px;
}

.payment-form .btn-agregar {
  width: 164px;
  height: 30px;
  font: 18px 'rf_rufobold', sans-serif;
  background: #6BA53C;
  color: #ffffff;
  border-radius: 0;
  line-height: 20px;
  padding: 4px .75rem;
}

.payment-form .btn-agregar:hover {
  background: #2C0E0F;
}

.address-list .divider {
  width: 100%;
  height: 1px;
  background: #E6E6E6;
  margin: 35px 0;
}

.address-list .address-buttons {
  text-align: right;
  padding-top: 40px;
}

.address-list .address-buttons .button {
  padding: 5px 0;
}

.address-list .address-buttons .btn {
  font: 18px/20px 'rf_rufobold', sans-serif;
  height: 30px;
  border-radius: 0;
  line-height: 22px;
  padding: 4px .75rem;
  text-transform: uppercase;
}

.address-list .address-buttons .btn-agregar {
  width: 202px;
  background: #6BA53C;
  color: #ffffff;
}

.address-list .address-buttons .btn-agregar:hover {
  background: #2C0E0F;
}

.address-list .address-buttons .btn-guardar {
  width: 185px;
  background: #F3F3F4;
  color: #383F4A;
}

.address-list .address-buttons .btn-guardar:hover {
  background: #6BA53C;
  color: #ffffff;
}

.address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.address-item .address-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F3F3F4;
  padding: 12px;
  width: 85%;
  
  padding-right: 2em;
}

.address-item .address-box .icon {
  width: 32px;
  font-size: 24px;
  color: #2C0E0F;
  margin-right: 5px;
}

.address-item .address-box .address h5 {
  font: 18px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
  margin-bottom: 3px;
}

.address-item .address-box .address p {
  font: 15px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  margin-bottom: 0;
}

.address-item .address-box .button {
  margin-left: auto;
}

.address-item .address-box .button .btn-edit {
  width: 92px;
  height: 30px;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid #6BA53C;
  font: 16px 'rf_rufobold', sans-serif;
  color: #6BA53C;
  padding: 4px .75rem;
}

.address-item .address-box .button .btn-edit i {
  font-size: 9px;
  margin-left: 10px;
}

.address-item .address-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
}

.address-item .address-actions .checkbox {
  padding-top: 6px;
}

.address-item .address-actions .checkbox label {
  padding-left: 10px;
}

.address-item .address-actions .btn-trash {
  font-size: 18px;
  padding: 3px .75rem;
}

.my-orders .driver-box {
  background: #F3F3F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}

.my-orders .driver-box .icon {
  width: 37px;
  height: 37px;
  border-radius: 100%;
  text-align: center;
  line-height: 37px;
  background: #D4D5DB;
  display: inline-block;
}

.my-orders .driver-box .driver {
  padding-left: 16px;
}

.my-orders .driver-box .driver p {
  margin: 0;
  font: 15px 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.my-orders .driver-box .driver h5 {
  margin: 0;
  font: 18px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
}

.my-orders .driver-box .btn-message {
  position: absolute;
  top: -24px;
  right: 40px;
  width: 48px;
  height: 48px;
  line-height: 40px;
  background: #6BA53C;
  border-radius: 100%;
  color: #ffffff;
  font-size: 23px;
}

.my-orders .address-box {
  padding: 30px 25px 20px 25px;
}

.my-orders .address-box p {
  font: 15px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  position: relative;
  padding-left: 25px;
}

.my-orders .address-box p i {
  position: absolute;
  left: 0;
  top: 3px;
}

.my-orders .address-box p i.icon-card {
  font-size: 10px;
}

.my-orders .address-box p i.icon-calendar {
  font-size: 13px;
}

.my-orders .address-box p i.icon-point3 {
  font-size: 14px;
}

.my-orders .orders-list .list-group-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.my-orders .orders-list .order-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.my-orders .orders-list .order-item .descript {
  position: relative;
  padding: 0 25px;
}

.my-orders .orders-list .order-item .descript .icon-check {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 10px;
  color: #75AC40;
}

.my-orders .orders-list .order-item .descript p {
  font: 15px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  margin: 0;
}

.my-orders .orders-list .order-item .descript p.title {
  font-family: 'rf_rufobold', sans-serif;
  font-size: 18px;
  color: #2C0E0F;
  margin-bottom: 5px;
}

.my-orders .orders-list .order-item .price p {
  font: 18px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
}

.purchase-item {
  margin-bottom: 16px;
}

.purchase-item .purchase-box {
  background: #F3F3F4;
  border-radius: 10px;
  padding: 14px;
  position: relative;
}

.purchase-item .purchase-box .address-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.purchase-item .purchase-box .address-area .address h5 {
  font: 20px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
  margin-bottom: 3px;
}

.purchase-item .purchase-box .address-area .address p {
  font: 15px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  margin-bottom: 0;
}

.purchase-item .purchase-box .address-area .button {
  margin-left: auto;
}

.purchase-item .purchase-box .address-area .button .btn-edit {
  /*width: 92px;*/
  height: 30px;
  border-radius: 0;
  background: #ffffff;
  font: 18px 'rf_rufobold', sans-serif;
  color: #6BA53C;
  border: 1px solid #6BA53C;
  text-transform: uppercase;
  padding: 4px .75rem;
}

.purchase-item .purchase-box .address-area .button .btn-edit i {
  font-size: 9px;
  margin-left: 10px;
}

.purchase-item .purchase-box .icon {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  color: #000000;
  margin-right: 10px;
  text-align: center;
  color: #ffffff;
  background: #6BA53C;
}

.purchase-item .purchase-box .icon.green {
  background: #7BB087;
}

.purchase-item .purchase-box .icon.tomato {
  background: #BD6475;
}

.purchase-item .purchase-box .icon.lightblue {
  background: #66BDDD;
}

.purchase-item .purchase-box .icon i {
  vertical-align: middle;
}

.purchase-item .purchase-box .purchase-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.purchase-item .purchase-box .purchase-title h5 {
  font: 20px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
  margin: 0;
}

.purchase-item .purchase-box .purchase-title p {
  font: 12px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  margin-bottom: 0;
}

.purchase-item .purchase-box .cash-payment {
  width: 100%;
  max-width: 300px;
  padding-left: 56px;
  padding-top: 5px;
}

.purchase-item .purchase-box .cash-payment label {
  font: 15px 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.purchase-item .purchase-box .cash-payment .form-control {
  height: 32px;
  border-radius: 5px;
}

.purchase-item .purchase-box .corner-checkbox {
  position: absolute;
  top: 14px;
  right: 6px;
}

.purchase-item .purchase-box .card-payment, .purchase-item .purchase-box .pos-payment {
  padding-top: 10px;
}

.purchase-item .purchase-box .pos-payment p {
  font: 15px 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.purchase-item .purchase-box .card-payment {
  padding-left: 56px;
}

.purchase-item .purchase-box .card-payment .button {
  text-align: right;
}

.purchase-item .purchase-box .card-payment .button .btn-agregar {
  height: 30px;
  border-radius: 0;
  background: #fff;
  font: 18px 'rf_rufobold', sans-serif;
  color: #6ba53c;
  border: 1px solid #6ba53c;
  text-transform: uppercase;
  padding: 4px .75rem;
}

.purchase-item .purchase-box .card-payment .button .btn-agregar i {
  font-size: 8px;
  margin-right: 6px;
}

.purchase-item .purchase-box .card-payment .button .btn-agregar:hover {
  background: #2C0E0F;
  color: #ffffff;
  border-color: #2C0E0F;
}

.purchase-item .purchase-box .voucher-payment {
  /*padding: 0 50px 0 56px;*/
}

.purchase-item .purchase-box .total-table .table {
  border-top: 1px solid #dee2e6;
}

.purchase-item .purchase-box .total-table .table tr.sub-total td {
  font: 14px 'rf_ruforegular', sans-serif;
  color: #383F4A;
  text-align: right;
  border: 0;
}

.purchase-item .purchase-box .total-table .table tr.sub-total td:first-child {
  padding-left: 56px;
}

.purchase-item .purchase-box .total-table .table tr.sub-total td:last-child {
  /*padding-right: 50px;*/
  width: 20%;
}

.purchase-item .purchase-box .total-table .table tr.total td {
  font: 15px 'rf_rufobold', sans-serif;
  color: #383F4A;
  text-align: right;
}

.purchase-item .purchase-box .total-table .table tr.total td:first-child {
  padding-left: 56px;
}

.purchase-item .purchase-box .total-table .table tr.total td:last-child {
  /*padding-right: 50px;*/
}

.purchase-item .buttons {
  text-align: right;
  padding-top: 20px;
}

.purchase-item .buttons .btn + .btn {
  margin-left: 15px;
}

.purchase-item .buttons .btn {
  height: 30px;
  border-radius: 0;
  padding: 5px .75rem;
  text-transform: uppercase;
}

.purchase-item .buttons .btn-atras {
  width: 185px;
  font: 16px 'rf_rufobold', sans-serif;
  background: #ffffff;
  color: #6BA53C;
  border: 1px solid #6BA53C;
  line-height: 20px;
}

.purchase-item .buttons .btn-atras:hover {
  background: #6BA53C;
  color: #ffffff;
}

.purchase-item .buttons .btn-confirmar {
  width: 202px;
  font: 18px 'rf_rufobold', sans-serif;
  background: #6BA53C;
  color: #ffffff;
  line-height: 20px;
}

.purchase-item .buttons .btn-confirmar:hover {
  background: #2C0E0F;
}

.voucher-form {
  padding-top: 20px;
}

.voucher-form .form-control {
  height: 32px;
  border-radius: 5px;
  font: 13px 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.orders-history ul {
  list-style-type: none;
  padding: 0;
}

.orders-history ul .order-history-item {
  padding: 20px 0 15px;
  border-bottom: 2px solid #EBEBEB;
}

.orders-history ul .order-history-item p {
  margin-bottom: 5px;
  font: 14px 'rf_ruforegular', sans-serif;
  color: #383F4A;
}

.orders-history ul .order-history-item p.code {
  font-family: 'rf_rufosemibold', sans-serif;
}

.orders-history ul .order-history-item p.canceled {
  font-size: 16px;
  color: #D44E2F;
}

.orders-history ul .order-history-item p.delivered {
  font-size: 16px;
  color: #66BDDD;
}

.orders-history ul .order-history-item .date-action {
  text-align: right;
}

@media (min-width: 768px) {
  .account-menu-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .account-menu {
    display: none;
  }
  .addresses,
  .purchase,
  .shopping-list,
  .payment-methods,
  .my-orders {
    padding-top: 30px;
  }
  .perfil-form .button .btn-save {
    width: 100%;
  }
  .shopping-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .shopping-item .product-thumb, .shopping-item .product-descrip, .shopping-item .product-price {
    width: 100%;
    text-align: center;
  }
  .shopping-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .shopping-buttons .btn + .btn {
    margin-left: 0;
  }
  .purchase-item .purchase-box .card-payment {
    padding-left: 0;
  }
  .purchase-item .purchase-box .card-payment .button .btn-agregar {
    width: 100%;
  }
  .purchase-item .purchase-box .voucher-payment {
    padding: 0;
  }
  .purchase-item .purchase-box .total-table .table td:first-child {
    padding-left: 0;
  }
  .purchase-item .purchase-box .total-table .table td:last-child {
    padding-right: 0;
  }
  .purchase-item .buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .purchase-item .buttons .btn + .btn {
    margin-left: 0;
  }
  .card-information .title-card {
    padding-top: 30px;
  }
  .address-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .address-item .address-box, .address-item .address-actions {
    width: 100%;
  }
  .address-item .address-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .address-item .address-actions {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .address-list .address-buttons .btn {
    width: 100%;
  }
  .payment-form .input-group-text {
    padding: .375rem 10px .375rem 0;
  }
  .payment-form .form-control {
    min-width: inherit;
  }
  .payment-form .btn-trash {
    position: absolute;
    top: 0;
    right: 0;
  }
  .orders-history ul .order-history-item .date-action {
    text-align: left;
    padding-top: 10px;
  }
}

.contact {
  padding-top: 50px;
  background: #FDFAF2;
}

.contact-wrapp {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 15px 24px;
}

.contact-wrapp .inner {
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
}

.contact-box {
  background: #F3F3F4;
  padding: 20px 20px;
  min-height: 186px;
  margin-bottom: 26px;
}

.contact-box h3 {
  font: 16px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contact-box .social-networks {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.contact-box .social-networks li {
  display: inline-block;
  margin: 0 10px;
}

.contact-box .social-networks li .btn-social {
  width: 68px;
  height: 68px;
  line-height: 52px;
  background: #ffffff;
  text-align: center;
}

.contact-box .social-networks li .btn-social img {
  vertical-align: middle;
}

.contact-box .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-box .contact-info .icon {
  width: 68px;
  height: 68px;
  line-height: 66px;
  background: #ffffff;
  text-align: center;
  margin-right: 20px;
}

.contact-box .contact-info .icon img {
  vertical-align: middle;
}

.contact-box .contact-info p {
  font: 26px 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
  margin: 0;
}

.contact-box .contact-info p.text-sm {
  font-size: 18px;
}

.contact-box-outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #D4D5DB;
  border-radius: 10px;
  padding: 20px 20px;
  margin-bottom: 26px;
}

.contact-box-outline .icon {
  margin-right: 15px;
}

.contact-box-outline .icon img {
  vertical-align: middle;
}

.contact-box-outline p {
  font: 26px 'rf_ruforegular', sans-serif;
  color: #2C0E0F;
  margin: 0;
}

.login {
  padding-top: 50px;
  background: #FDFAF2;
}

.login-wrapp {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 15px 24px;
}

.login-wrapp .inner {
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
}

.login-box {
  background: #F3F3F4;
  padding: 30px 20px;
  min-height: 186px;
  margin-bottom: 26px;
  text-align: center;
}

.login-box .btn-login {
  width: 68px;
  height: 68px;
  line-height: 52px;
  background: #ffffff;
  text-align: center;
}

.login-box .btn-login img {
  vertical-align: middle;
}

.login-box h3 {
  font: 16px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
  text-align: center;
  margin-top: 20px;
}

.login-box h3 a {
  font: 16px 'rf_rufobold', sans-serif;
  color: #2C0E0F;
  text-decoration: none;
}

.login-box h3 a:hover {
  color: #6BA53C;
}

.contact-single {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 50px;
}

.contact-single .icon {
  width: 100px;
  height: 100px;
  line-height: 94px;
  border-radius: 100%;
  background: #EDF5FD;
  color: #3F6EC0;
  font-size: 35px;
  display: inline-block;
  margin-bottom: 30px;
}

.contact-single h4 {
  font: 700 20px/1 'Gibson-Regular', sans-serif;
  color: #3F6EC0;
  margin-bottom: 20px;
}

.contact-single p {
  font: 300 14px/1.5 'Gibson-Regular', sans-serif;
  color: #777776;
}

.price-features .table {
  border-bottom: 1px solid #e6e6e6;
}

.price-features .table thead th {
  text-align: center;
  font: 700 14px/1.5 'Gibson-Regular', sans-serif;
  color: #3F6EC0;
  border: 0;
  padding: 15px .75rem;
}

.price-features .table thead th:nth-child(2) {
  color: #39B54A;
}

.price-features .table tbody td {
  text-align: center;
  font: 700 14px/1.5 'Gibson-Regular', sans-serif;
  color: #3F6EC0;
  border-color: #E6E6E6;
  padding: 15px .75rem;
}

.price-features .table tbody td:first-child {
  text-align: left;
  font-weight: 300;
  color: #777776;
}

.price-features .table tbody td:nth-child(2) {
  color: #39B54A;
}

.list-check {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.list-check li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.check {
  position: absolute;
  top: 3px;
  left: 4px;
  display: inline-block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  height: 12px;
  width: 7px;
  border-bottom: 2px solid #39B54A;
  border-right: 2px solid #39B54A;
}

@media (min-width: 992px) {
  #topbar .navbar-toggler {
    display: none;
  }
  header.masthead {
    height: 482px;
  }
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0rem);
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

@media (max-width: 767px) {
	
	.address-box .address {
	  
	  
	  padding-right: 1em!important;
	}
	
  body {
    padding-top: 76px;
  }
  body.headerv2 {
    padding-top: 76px;
  }
  #topbar {
    height: auto;
    /*padding: 10px 0;*/
  }
  #topbar .navbar-brand img {
    max-width: 130px;
  }
  header.masthead {
    padding-top: 66px;
    padding-bottom: 20px;
  }
  .home_slider_content h1 {
    font-size: 35px;
  }
  .home_slider_content p {
    font-size: 18px;
  }
  .home_slider_prev {
    left: 10px;
  }
  .home_slider_next {
    right: 10px;
  }
  .masthead-slider .carousel-item {
    height: 500px;
  }
  .masthead-slider .carousel-item .carousel-caption {
    padding: 0 10px 0 10px;
  }
  .masthead-slider .carousel-item .carousel-caption h1 {
    font-size: 30px;
  }
  .masthead-slider .carousel-item .carousel-caption h3 {
    font-size: 22px;
    margin-bottom: 0;
  }
  .masthead-slider .carousel-item .carousel-caption img {
    width: 36%;
    margin: 0 auto;
    display: inherit;
  }
  .masthead-slider .carousel-item .carousel-caption p {
    font-size: 16px;
  }
  .masthead-slider .carousel-item .carousel-caption .button {
    text-align: center;
  }
  .masthead-slider .carousel-item .carousel-caption .button .btn-order {
    padding: 14px 20px;
    font-size: 14px;
  }
  .masthead-slider .carousel-control-next,
  .masthead-slider .carousel-control-prev {
    width: 48px;
    height: 48px;
  }
  .masthead-slider .carousel-indicators {
    bottom: 0;
  }
  section {
    padding-top: 40px !important;
    padding-bottom: 40px;
  }
  section.ready {
    padding: 60px 0 60px !important;
  }
  section .section-heading h2 {
    font-size: 28px;
    line-height: 32px;
  }
  .feature-single.white .caption h4 a {
    text-align: center;
  }
  footer .list-info li {
    width: 100%;
    text-align: center;
    line-height: 28px;
  }
  footer .list-info li + li {
    margin-left: 0;
  }
  footer .list-nav {
    text-align: center;
    margin-bottom: 25px;
  }
  footer .app-area h4 {
    text-align: center;
    margin-bottom: 15px;
  }
  footer .list-app {
    text-align: center;
  }
  footer .social-buttons ul {
    text-align: center;
    margin-top: 10px;
  }
  header.heading {
    padding: 30px 0;
  }
  header.heading h1 {
    font-size: 28px;
  }
  section.content h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .accordion .btn {
    font-size: 16px;
  }
}



/*========== TEMPLATE WEB*/

.content-controls-tienda{
	margin-top: -0.9em;
}

.active_footer_info{
		display:block!important;
	}
	
	.active_footer_info_div{
		display:flex!important;
		justify-content:center;
	}

/*._info:active .list{*/
/*	color:red;*/
/*	display:block;*/
/*}*/

.lits-apps-f{
		display:flex;
		/*gap:1em;*/
		/*justify-content: center;*/
		align-items:center;
	}
	

 .phone-icon-data{
	margin-right:1em
}

.code-form{
	margin-top:1em;
}

.footer_final_info{
	background: #6ba53c;
    /*color: #fff;*/
    padding-bottom: 0.1px;

}

.cont-footer-page a{
    color: #FFFFFF;
	font-size:14px;
}

.btn-libro-reclamaciones {
	border-color: #f8f9fa;
	&:hover {
		color: #fff;
	}
}
    
.footer_final_info hr{
	margin:0;
	padding-bottom:1em;
	max-width:100%;
	border-color: #ffffff;
}

.footer_final_info p{
	/*margin:0;*/
	/*padding:0;*/
}


.footer-apps-pago ul li .btn-app{
	width: 48px;
    height: 48px;
    background: #ffffff;
    text-align: center;
    line-height: 34px;
    border-radius: 10px;
    
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 0;
}

/*._footer-apps ul li .btn-app{*/
	/*width: 52px;*/
    /*height: 52px;*/
    /*background: #ffffff;*/
/*    text-align: center;*/
    /*line-height: 34px;*/
    /*border-radius: 10px;*/
/*}*/

.list-apps{
	display: grid;
    /*grid-template-columns: 60px 60px 60px;*/
    grid-template-columns: 48px 48px 48px;
    gap: 1em;
    
}

.btn-yape img{
	margin: -0.6em;
    width: 50px;
    height:50px;
}

.card_apps_footer{
	width:190px;
	height:48px;
	    display: flex;
    /*gap: 1em;*/
    
    background: #171919;
    border-radius: 8px;
    /*padding: 0.5em;*/
    /*width: 15em;*/
    align-items: center;
}

._legales{
	max-width:20%;
}

.footer_final_info p{
	/*font-family: 'Poppins';*/
	color:#FFFFFF;
}

.footer_icons_text_info{
	display:grid;
}

.card_apps_footer a{
	margin:0;
	/*font-family: 'Poppins';*/
	
	line-height: 1em;
	text-align: start;
	color:#FFFFFF;
}

.text-apps{
	font-size:10px!important;
	font-weight:400!important;
	/*padding-bottom: 0.3em;*/
}

.title_apple{
	font-size:24px!important;
	font-weight:500;
	line-height: 1em;
	/*margin-top: -0.5em!important;*/
}

.title_google{
	font-size:20px!important;
	font-weight:500;
}

.list-apps-f{
	    display: flex;
    align-items: center;
}

.container-page-footer-info h6{
	font-size:14px;
}

.cash-payment label{
	display:none;
}


.carousel_promociones ._btn-minus{
	    margin-top: -3.1em;
	position: absolute;
    right: 10em;
    /*top: 2em;*/
    width: 28px;
    height: 28px;
    border-radius: 100%;
    line-height: 26px;
    padding: 0;
    background-color: #fff;
    box-shadow: 0px 2px 12px rgb(0 0 0 / 12%);
}

.carousel_promociones ._btn-plus{
	    margin-top: -3.1em;
	position: absolute;
  right: 8em;
  /*top: -2em;*/
  width: 28px;
  height: 28px;
  /*border: 1px solid #000000;*/
  border-radius: 100%;
  /*color: #000000;*/
  background-color:#fff;
  line-height: 26px;
  padding: 0;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
  /*box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);*/
  /*top:1.6em;*/
  /*top:.5em;*/
}

.container-btn-promociones{
background:#FFFFFF;	
}

.promociones-content .category-title h2{
	border-color:#FAF8F8;
	margin:0.1em;
	
	display: grid;
    grid-template-columns: 6em 75%;
    align-items:center;
}

.promociones-content .category-title hr{
	min-width:100%;
	margin:0.5em;
	border:1.2px solid #EEEEEC;
	background:#EEEEEC;
}

.carousel-promociones .item {
  /*align-items: center;*/
  /*background-color: tomato;*/
  /*color: white;*/
  display: flex;
  height: 300px;
  justify-content: center;
  border:1px solid #D1CECB;
  border-radius:20px;
  padding:0.5em
}

.carousel-promociones .owl-item img {
	object-fit: cover;
    height: 100%;
}

.owl-theme .owl-dots .owl-dot{
	outline: none;
}

.gm-ui-hover-effect{
	outline:none!important;
}

.card-information  .price-quantity .btn{
	border-radius:0!important;
	background:#FFFFFF!important;
	
}

.card-information .cart-plus-minus-box{
	background:#FFFFFF!important;
	border-radius:0!important;
	border-top: 2px solid #EEEEEC!important;
    border-bottom: 2px solid #EEEEEC!important;
}

.card-information  .price-quantity .button-up{
	border-top-left-radius: 10px!important;
    border-bottom-left-radius: 10px!important;
    
    border-top: 2px solid #EEEEEC!important;
    border-bottom: 2px solid #EEEEEC!important;
    border-left: 2px solid #EEEEEC!important;
}

.card-information  .price-quantity .button-down{
	border-top-right-radius: 10px!important;
    border-bottom-right-radius: 10px!important;
    
    border-top: 2px solid #EEEEEC!important;
    border-bottom: 2px solid #EEEEEC!important;
    border-right: 2px solid #EEEEEC!important;
}

.price-data .prod-action{
	    border-radius: 5px;
    border: 2px solid #e8e8e8;
}

.product-gallery__featured .owl-thumbs{
	display:none;
}

.description-parrafo{
	white-space:none!important;
}

.purchase-box .fa-trash-alt:before{
	color:#000000!important;
}

.menu_nav_header{
	/*display:none;*/
}

.list_menu_nav{
	display:none;
}


#topbar-web i, .header-web i,.header-web .header-control .address p, .header-control-mobile .address p{
	color:#000000!important;
}


.content-controls-tienda .nav-link {
    color:#000000;
}

.header-web .header-control .address, .header-control-mobile .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 12em;
}

#cont_direccion_entrega {
    max-height: inherit;
    min-width: 40px;
}

.header-web .header-control .address .icon, .header-control-mobile .address .icon {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    /* background: #FFFFFF; */
    text-align: center;
    line-height: 40px;
    margin-right: 6px;
        
}

.header-web #lbl_direccion_entrega{
	margin: 0;
}

.header-web .header-control ul li .user-acount,.header-web .header-control-mobile ul li .user-acount{
	padding:0;
}


.header-web .header-control ul li .header-shopcart, .header-web .header-control-mobile ul li .header-shopcart{
	padding:0;	
}


.header-control > ul > li .header-shopcart .dropdown-menu, .header-control-mobile > ul > li .header-shopcart .dropdown-menu {
    top: 130% !important;
    right: 0 !important;
    left: inherit !important;
    border: 0;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

.shopping-cartmini .shopping-carttotal {
    padding: 20px 12px;
}


.content-sliders-categorias-card .store-menu {
    /*background: #F3F3F3;*/
}

.content-web-mipedido .store-menu {
    padding: 10px!important;
}

.rubros-bar .__carousel_items {
    max-width: 100%!important;
}

.rubros-bar .carousel-wrapp {
    padding-right: 30px;
    position: relative;
}

.rubros-bar .carousel-wrapp {
    padding-left: 30px;
}

.rubros-bar .carousel-wrapp ._btn-minus {
    left: -1em!important;
}

.rubros-bar .carousel-wrapp ._btn-minus {
    position: absolute;
    left: 0;
    /*top: -2px;*/
    width: 28px;
    height: 28px;
    /* border: 1px solid; */
    border-radius: 100%;
    line-height: 26px;
    padding: 0;
    background-color: #fff;
    box-shadow: 0px 2px 12px rgb(0 0 0 / 12%);
    /*top: 1.6em;*/
     top: 1.45em; 
    /* box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 50%); */
}

.rubros-bar .carousel-wrapp ._btn-plus {
    position: absolute;
    right: -1em;
    /* top: -2px; */
    width: 28px;
    height: 28px;
    /* border: 1px solid #000000; */
    border-radius: 100%;
    /* color: #000000; */
    background-color: #fff;
    line-height: 26px;
    padding: 0;
    box-shadow: 0px 2px 12px rgb(0 0 0 / 12%);
    /* box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 50%); */
    /*top: 1.6em;*/
     top: 1.45em; 
}

.carousel-rubros .btn {
  background: transparent;
  text-align: center;
  text-decoration: none;
  padding: 3px 6px;
  border-radius: 10px;
  /*font: 700 13px/14px "Poppins", sans-serif;*/
  font: 500 13.5px "Poppins", sans-serif;
  color: #171919;
}

.carousel-rubros .btn.active {
  /*background: #fc163f;*/
  /*color: #ffffff;*/
  
  background:#FFFF01;
  color: #000;
  font-weight:bold;
}

.card_slide_item_cat {
    /* border: 2px solid red; */
    display: flex;
    align-items: center;
    /* margin: 1em; */
    padding: 0.5em 1em;
    background-color: #fff;
    /* border-radius: 5%; */
    /* box-shadow: 0px 2px 12px rgb(0 0 0 / 12%); */
}


.categorias-sliders-header{
	padding:0!important
}

.container-tienda-home {
    background: #F3F3F3;
    /* padding: 0.5em; */
    padding: 0.5em 0 2em;
}

.tienda-cont p {
    flex: 1;
    margin: 0;
    font-family: "rawsonregular", sans-serif;
    color: #094C43;
}

.tienda-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    align-items: center;
    padding: 1em;
    background: #FFF;
    /* border-radius: 10px; */
    height: 70.6px;
}

.tienda-cont a {
    /* flex: 1; */
    width: 120px;
    height: 30px;
    border: 0;
    font: 600 15px/26px "rawsonregular", sans-serif;
    color: #FFFFFF;
    padding: 0.15rem 0.75rem;
    border-radius: 6px;
}


.content-sliders-categorias-card{
		background: #F3F3F3;
	}


@media (max-width: 425px){
	
	/*.header-control > ul > li .header-shopcart .dropdown-menu, .header-control-mobile > ul > li .header-shopcart .dropdown-menu{*/
	/*	top:0!important;*/
	/*	right:auto!important;*/
	/*}*/
	
	.header-control .address{
		display:none;
	}
	.header-fixed-home{
		    /*top: -3.5em!important;*/
	}
	
	.content-sliders-categorias-card .store-menu{
		background: #F3F3F3;
	}
	
	.rubros-bar .carousel-wrapp ._btn-minus{
		opacity:0;
	}
	
	.rubros-bar .carousel-wrapp ._btn-plus{
		opacity:0;
	}
	
	.tienda-cont p {
	    font-size: 0.6em;
	}
	.container-page-footer-info {
	    grid-template-columns: 1fr;
	}
	
	._legales {
    max-width: 100%!important;
}
.container-page-footer-info .list {
    display: none;
}
.list-apps_pago {
    /* display: flex!important; */
    justify-content: center;
    gap: 0.5em;
}
}


@media(max-width: 425px){
	
	.btn-send{
		width:100%;
		margin-bottom:0.5em;
		height:100%;
	}
	
	.header_main_css{
		margin-top:0.6em;
	}
	
	.header_superior img{
		/*display:none;*/
		width:100%;
	}
	
	.home_slider_container, .home_slider_background {
	    height: 270px!important;
	    
	}
	
	section {
	    /*padding-top: 0 !important;*/
	}
	
	.home_slider_background{
		/*background-size: contain!important;*/
	}
	
	.list_menu_nav{
		display:block;
	}
	
	/*.menu_nav_header{*/
	/*	display:block;*/
		/*background: #E9E9F7;*/
	/*  height: 30px;*/
	/*  border-radius: 10px;*/
	/*  padding: 6px 15px 6px 35px;*/
	/*  line-height: 20px;*/
	/*  font-size: 12px;*/
	/*  margin-left:4.5em;*/
	/*  width:0;*/
	/*}*/
	
	.header-control div.address #lbl_direccion_entrega{
		display:none!important;
	}
	
	
	.tienda-cont p{
		font-size: 0.7em;
	}
	
	.tienda-cont img{
		height:33px;
	}
	
	.carousel-promociones .item{
		height:210px!important;
		padding:0.3em!important;
	}
	
	.menu-mobile .navbar-toggler-trigger span,.menu_nav_header span{
		left:29%;
	}
	
	.menu-mobile .navbar-toggler-trigger {
	    background: #ffffff;
	    padding:0;
	    /*margin-left: 7.5em;*/
	    margin-left: 4em;
	    border-radius: 100%;
	    height: 40px;
	    width: 40px;
	    text-align: center;
	}
	
	#topbar .logo {
    margin-left: -1.2em;
}

/*#topbar .navbar-brand{*/
/*	margin-left:1rem!important;*/
/*}*/
	
	.header-control-mobile ul li, .header-control ul li{
		padding:0!important;
	}
	
	.carousel_promociones ._btn-minus{
		    right: 4em!important;
	}
	
	.carousel_promociones ._btn-plus{
		    right: 2em!important;
	}
	
	.promociones-content .category-title hr{
		min-width:30%!important;
	}
	
	.promociones-content .category-title h2{
		
	    /*grid-template-columns: 6em 25%;*/
	    font-size:1.2em;
	}
	
	._main_content_slide{
		/*margin-top:-.3em;*/
		margin-top:-0.9em;
		
	}
	
	.direccion_modal_item_chk .checkbox label{
		    margin-right: 3em;
	}
	
	.rubros-bar .carousel-wrapp{
		padding-left:0!important;
		padding-right:0!important;
		/*display:none;*/
	}
	
	.store-menu{
		padding:0!important;
	}
	.btn_link_title{
	    
		    /* line-height: 1.5em!important;*/
		    /*height: 3em!important;       */
		    /*overflow: hidden!important;  */
		    /*font-size: 14px!important;*/
	}
	
	.food-item{
		margin-left: 1.5em;
    	margin-right: 1.5em;
	}
	
	.food-item .card-body {
	      /*margin-left: 2.3em;*/
	}
	
	.text-descri{
		display:none;
	}
	
	.modal-header-content h5{
		    padding-left: 2em;
	    padding-right: 2em;
	    text-align: center;
	}
	
	.modal-cellphonenumber .login-form .form-control{
		height:40px;
	}
	
	.modal-cellphonenumber .login-form .form-control{
		font-size:16px;
	}
	
	.modal-dialog .modal-header .modal-header-content h5{
		font-size:15px;
	}
	
	.food-item .col-4{
		padding-right:0
	}
	.food-item .card-body{
		padding:15px;
	}
	/*.food-item .price-button {*/
	  
	/*      gap: 3.5em!important;*/
	/*}*/
	.food-item .price-button{
		gap: 5.5em!important;
	}
	.address-item .address-box .address h5 {
	  font: 12px "Poppins", sans-serif;
	}
	.header-control ul{
		gap:0em!important
	}
	
	.direccion_modal_item{
		width: 24em;
	}
	
	#direcciones_cont .address-item .address-actions .checkbox label{
		left:-3.5em;
	}
	
	.icons-direccion-lista-map {
	    top: 1.2em;
	    /*left: 4.7em;*/
	    /*left: 2.5em;*/
	    left: -7.5em;
	    /*left: 3.3em;*/
	}
	.food-item .price-button {
	  
	      gap: 5.1em;
	}
	
	.locations-map{
		margin-top:1em;
		height:30em;	
	}
	
	#cont_tiendas_zona_reparto .address-item .address-actions{
		width:3em!important;
	}
	
	.card_link_icon{
		padding:1em;
		width:8em;
		height:8em;
	}
	
	.card_link_icon img{
		width:6em;
		height:6em;
	}
	
	#frm_direccion_seleccionar .nav-tabs .nav-link{
		width:10em!important;
	}
	
	
	.tab-items-map .tab-content{
		width:21em;
	}
	
	.container-map-cards{
		display:grid;
		justify-content:center;
	}
	
	.card_slider_map {
		width:16em!important;
	}
	
	.icons-modal-dir{
		display:grid;
	}
	.img-prod-item{
		/*width:200px!important;	*/
	}
	.clock-icon-data{
		margin-left:0!important;
	}
	
	.food-item .card-image img{
		/*height:10.6em;*/
		    /*width: 10em!important;*/

	}
	
	.food-item{
		/*height:10.6em;*/
	}
	
	.food-item .card-body h4, .food-item .card-body .btn-link,.food-item .card-body p{
		/*text-overflow: ellipsis;*/
  /*  overflow: hidden;*/
  /*  white-space: nowrap;*/
	}
	
	.address-item .address-box .row {
		width: auto!important;
	} 
	
	.container-page-footer-info{
		   /* display: grid;*/
	    /*justify-content: center;*/
	    /*align-items: center;*/
	    grid-template-columns: 1fr;
	}
	
	.container-page-footer-info{
		text-align:center;
	}
	
	.container-page-footer-info h6{
		border-bottom: 1px solid #dedede;
		padding-bottom:1em;
	}
	
	.container-page-footer-info h6::after{
		
		content: "";
	    position: absolute;
	    right: 21px;
	    top: 4px;
	    width: 10px;
	    background: url("../img/icon_right.png") no-repeat;
	    height: 10px;
	    background-size: 100%;
	    transform: rotate(
	360deg);
	    transition: all .2s;
	}
	
	h6.active_info:after{
		transform: rotate(90deg);
	}
	    
	
	.container-page-footer-info .list{
		display:none;
	}
	
	
	._list_apps{
		display:grid!important;
		justify-content:center;
	}
	.lits-apps-f{
		/*display:flex;*/
		justify-content: center;
	}
	
	.footer-apps-pago{
		/*display:flex;*/
	}
	
	.list-apps_pago{
		/*display:flex!important;*/
		justify-content:center;
		gap:0.5em
	}
	
	._legales{
		max-width:100%!important;
	}
	
	._footer-apps{
		margin-left: 0!important;
		display:grid;
	}
	
	.navbar-toggler-trigger{
		display:none;
	}
	
	
	
}


@media (max-width: 768px) {
	
	.header_main_css{
		margin-top: 1.4em;
	}
	.navbar-toggler-trigger{
		display:none;
	}
	.list_menu_nav{
		display:block;
	}
	
	.navbar_items{
		display:none;
	}
	.home_slider_background{
		background-position: revert!important;
		/*height:540px!important;*/
	}
	
	section {
	    /*padding-top: 130px !important;*/
	}
	
	/*.container-page-footer-info{
		display: grid;
	    grid-template-columns: 10em 10Em 10em 14em;
	    justify-content: center;
	}
	
	._legales{
		max-width:100%;
	}
	
	._footer-apps{
		display: flex;
    gap: 1em;
	}*/
	
	.container-page-footer-info{
		   /* display: grid;*/
	    /*justify-content: center;*/
	    /*align-items: center;*/
	    grid-template-columns: 1fr;
	}
	
	.container-page-footer-info{
		text-align:center;
	}
	
	.container-page-footer-info h6{
		border-bottom: 1px solid #dedede;
		padding-bottom:1em;
	}
	
	.container-page-footer-info h6::after{
		
		content: "";
	    position: absolute;
	    right: 21px;
	    top: 4px;
	    width: 10px;
	    background: url("../img/icon_right.png") no-repeat;
	    height: 10px;
	    background-size: 100%;
	    transform: rotate(
	360deg);
	    transition: all .2s;
	}
	
	h6.active_info:after{
		transform: rotate(90deg);
	}
	    
	
	.container-page-footer-info .list{
		display:none;
	}
	
	
	._list_apps{
		display:grid!important;
		justify-content:center;
	}
	.lits-apps-f{
		/*display:flex;*/
		justify-content: center;
	}
	
	.footer-apps-pago{
		/*display:flex;*/
	}
	
	.list-apps_pago{
		/*display:flex!important;*/
		justify-content:center;
		gap:0.5em
	}
	
	._legales{
		max-width:100%!important;
	}
	
	._footer-apps{
		margin-left: 0!important;
		display:grid;
	}
	
	.menu-mobile .navbar-toggler-trigger span,.menu_nav_header span{
		left:29%;
	}
	
	.menu-mobile .navbar-toggler-trigger {
	    background: #ffffff;
	    padding:0;
	    /*margin-left: 7.5em;*/
	    margin-left: 4em;
	    border-radius: 100%;
	    height: 40px;
	    width: 40px;
	    text-align: center;
	}
}


@media (max-width: 767px){
.header-control .address, .header-control-mobile .address {
     /*display: none!important; */
    width: 2.8em!important;
}
}


/*._search{*/
/*	padding-top: 0.6em;*/
/*}*/


#totalcarritoweb{
	color:#000000!important;
}



.header-web .search-form-mobile {
  padding: 10px 15px;
  position: sticky!important;
  top: 70px;
  width: 100%;
  z-index: 55;
  background: #ffffff;
}

.categorias-sliders-header_home{
	padding: 0!important;
}

.categorias-sliders-header_home .store-menu{
	padding: .5em!important;
}

.header-control-mobile ul, #header-control.header-control ul{
	/*margin-bottom:0!important;*/
}

.header-fixed-home{
    position: fixed;
    z-index: 5;
    top: 4.6em;
    right:0;
    left:0;
    /*animation: navbarB 2s;*/
}

/*******************************************/

.search-form, .search-form-mobile {
    display: flex;
    column-gap: 1.5em;
}

.search-form {
    margin-left: 1em;
}

.navbar-toggler-trigger {
    display: inline-block!important;
    position: relative;
    /* padding: 0 46px 0 20px; */
    padding: 0 0 0 22px!important;
    font: 12px "Poppins", sans-serif!important;
    /* color: #2A2D35; */
    /*color: #fff;*/
    background: transparent!important;
    border-radius: 3px;
    text-decoration: none;
    height: 40px!important;
    line-height: 40px!important;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    font-weight: bold!important;
    margin-top: 0!important;
}

.navbar_ofertas, .navbar_items {
    font: 12px "Poppins", sans-serif;
    /* font: 12px "aileronbold", sans-serif; */
    /* color: #2A2D35; */
    /* background: #F2F3F7; */
    text-decoration: none!important;
    display: flex;
    align-items: center;
    color: #000000!important;
    column-gap: 0.5em;
    cursor: pointer;
    font-weight: 600;
}

.navbar-toggler-trigger span {
    left: 0!important;
}

.header-control-mobile ul, #header-control.header-control #content-header-customv3 {
    display: flex;
    /*margin-bottom: 15px;*/
    /*justify-content: end;*/
}

.header-control ul {
    gap: 0.5em;
}

.header-control div.address #lbl_direccion_entrega{
	-webkit-line-clamp: 1!important;
	margin-bottom:0;
}
.search-form-mobile {
    width: 100%;
    display: block;
    z-index: 999;
}

.home_slider_all_image .owl-stage {
    padding-top: 0;
    padding-bottom: 0;
}


@media (max-width: 767px){
#topbar .row {
    margin-right: 0;
    margin-left: 0;
}
}


/*.header-control .address, .header-control-mobile .address {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    width: 12em;*/
/*    margin-top: 10px;*/
/*}*/

#cont_direccion_entrega {
    overflow: hidden;
    max-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#cont_direccion_entrega {
    max-height: inherit!important;
    min-width: 40px!important;
}

.header-control .address .icon, .header-control-mobile .address .icon {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #FFFFFF;
    text-align: center;
    line-height: 40px;
    margin-right: 6px;
}
/*.header-control .address, .header-control-mobile .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 12em;
    margin-top: 5px;
}*/


.shopping-cartmini .shopping-cartitems {
    text-align: left;
}

.shopping-cartitems {
    padding: 0 0.5em;
}

.shopping-cartmini .shopping-cartitems li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #F2F2F2;
    padding: 12px;
    width:100%;
}

.shopping-cartmini .shopping-cartitems li .detail {
    padding-right: 10px;
}

.shopping-cartmini .shopping-cartitems li .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.shopping-cartmini .shopping-cartitems li .cart-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.shopping-cartmini .shopping-cartitems li .cart-quantity .btn-quantity {
    width: 22px;
    height: 18px;
    border: 0;
    border-radius: 0;
    font-size: 10px;
    line-height: 18px;
    padding: 0;
    margin-right: 6px;
}

.shopping-cartmini .shopping-cartitems li .cart-quantity .form-control {
    width: 22px;
    height: 18px;
    border: 0;
    border-radius: 0;
    font: 700 13px/18px "Poppins", sans-serif;
    text-align: center;
    margin-right: 6px;
    padding: 0;
}

.shopping-cartmini .shopping-cartitems li .actions .delete .btn-delete {
    width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 100%;
    background: #f2f2f2;
    font-size: 10px;
    line-height: 18px;
    color: #495263;
    vertical-align: top;
    margin-left: 5px;
}

.shopping-cartmini .shopping-carttotal p {
    margin-bottom: 10px;
    font: 14px/1 "Poppins", sans-serif;
}

.shopping-cartmini .shopping-carttotal p span {
    float: right;
}

.shopping-cartmini .shopping-cartitems li .detail p {
    font: 14px/1 "Poppins", sans-serif;
    color: #495263;
    margin-bottom: 10px;
}


#content-header-customv3{
	justify-content: end;
	margin: 0;
}

#confirmar_direccion_delivery .btn-trash{
	margin-top:0!important;
}

/**************************LOGIN */
.login-block {
    margin-bottom: 20px;
}

.login-block .btn-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #f5f5f5;
    height: 187px;
    border-radius: 20px;
}

.login-block .btn-login p {
    font: 16px "Poppins", sans-serif;
    color: #353F4E;
    margin: 0;
}

@media (min-width: 768px){
.menu-mobile {
    display: none;
}

.category-nav .navbar-nav .nav-link {
	text-align: left;
}

.category-nav {
    position: fixed;
    z-index: 5555;
    top: 67px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
}

.category-nav .navbar-nav {
    width: 100%;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 28px 0;
}
}

@media (max-width: 820px){
.navbar-toggler-trigger {
    display: none!important;
}
}

.reference-form .form-group {
	margin-bottom: 1rem!important;
}