.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 34px;
  font: 14px "Gibson-Regular", sans-serif;
  color: #495263;
  line-height: 24px;
}

.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  border: 1px solid #cccccc;
  border-radius: 4px;
  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: -2px;
  padding-left: 6px;
  padding-top: 3px;
  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;
  position: absolute;
}

.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: #DF040B;
  border-color: #DF040B;
}

.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;
  line-height: 20px;
}

.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  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::before:focus {
  outline: none;
}

.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #DF040B;
  -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 label::after:focus {
  outline: none;
}

.radio label:focus {
  outline: none;
}

.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;
}

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

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

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

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

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

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

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

@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: 'market';
  src: url("../fonts/market.eot?xt104j");
  src: url("../fonts/market.eot?xt104j#iefix") format("embedded-opentype"), url("../fonts/market.ttf?xt104j") format("truetype"), url("../fonts/market.woff?xt104j") format("woff"), url("../fonts/market.svg?xt104j#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-next:before {
  content: "\e900";
}

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

.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";
}

.icon-arrow-prev2:before {
  content: "\e923";
}

.icon-arrow-next2:before {
  content: "\e924";
}

.icon-happy-face:before {
  content: "\e925";
}

.icon-clock:before {
  content: "\e926";
}

.icon-cutlery:before {
  content: "\e927";
}

.icon-category:before {
  content: "\e928";
}

.icon-register-1:before {
  content: "\e929";
}

.icon-register-2:before {
  content: "\e92a";
}

.icon-register-3:before {
  content: "\e92b";
}

.icon-register-4:before {
  content: "\e92c";
}

.icon-register-5:before {
  content: "\e92d";
}

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

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

.icon-book:before {
  content: "\e930";
}

.icon-info:before {
  content: "\e931";
}

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

body {
  width: 100%;
  height: 100%;
  font-family: "Gibson-Regular", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #353F4E;
  padding-top: 130px;
}

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: "Gibson-Bold", sans-serif;
}

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

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

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

.btn-primary {
  height: 42px;
  background: #DF040B;
  font: 16px/28px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 21px;
  border: 0;
  min-width: 142px;
  padding: .375rem 1.75rem;
}

.btn-primary i {
  margin-left: 5px;
}

.btn-primary:hover {
  background: #FFDC19;
  color: #000000;
}

.btn-primary:focus, .btn-primary:active {
  background: #FFDC19;
  color: #000000;
}

.btn-pink {
  height: 42px;
  background: #DF040B;
  font: 16px/28px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 21px;
  padding: .375rem 1.85rem;
}

.btn-pink:hover {
  background: #FFDC19;
  color: #000000;
}

.btn-outline {
  height: 42px;
  border: 2px solid #dbdce0;
  border-radius: 21px;
  font: 16px/28px "Gibson-SemiBold", sans-serif;
  color: #353F4E;
  padding: .375rem 1.75rem;
}

.btn-outline:hover {
  border-color: #DF040B;
  background: #DF040B;
  color: #ffffff;
}

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

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

.row-gutters9 {
  margin-right: -9px;
  margin-left: -9px;
}

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

.row-gutters13 {
  margin-right: -13px;
  margin-left: -13px;
}

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

.row-gutters14 {
  margin-right: -14px;
  margin-left: -14px;
}

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

.home-section {
  padding: 60px 0;
  position: relative;
}

.home-section.bg-white {
  background: #ffffff !important;
}

.home-section.featured-category {
  padding: 60px 0 34px;
}

.home-section.featured-product {
  padding: 44px 0 0;
}

.home-section .section-title h2 {
  font: 26px/32px "Gibson-SemiBold", sans-serif;
  color: #495263;
  position: relative;
  border-bottom: 3px solid #DDE1EC;
  padding-bottom: 10px;
}

.home-section .section-title h2 span {
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 80px;
  }
}

.col-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xl-15 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

@media (min-width: 540px) {
  .col-sm-15 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 720px) {
  .col-md-15 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 960px) {
  .col-lg-15 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 1140px) {
  .col-xl-15 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

#topbar {
  height: 90px;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #ffffff;
  padding: 16px 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: #d44e2f;
  -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: #d44e2f;
}

#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);
}

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

.search-form .form-control, .search-form-mobile .form-control {
  height: 40px;
  border-radius: 20px;
  border: 3px solid #F2F3F7;
  font: 14px "core_sans_a_45_regularregular", sans-serif;
  color: #929EAF;
  border-width: 3px 0 3px 3px;
  background: #F2F3F7;
}

.search-form .btn-search, .search-form-mobile .btn-search {
  width: 60px;
  height: 40px;
  color: #ffffff;
  background: #DF040B;
  border: 3px solid #DF040B;
  border-width: 3px 3px 3px 0;
  border-radius: 10px;
  font-size: 16px;
}

#modalSearchProducts .modal-content{
	background:transparent!important;
}
.search-form-mobile {
  padding: 10px 15px;
  /*position: fixed;*/
  top: 70px;
  width: 100%;
  z-index: 55;
  background: transparent;
  display: block;
}

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

.search-mobile .btn-open {
  padding: 0;
  margin-top: 2px;
  margin-left: 20px;
}

.menu-mobile {
  display: inline-block;
}

.menu-mobile .navbar-toggler-trigger {
  background: #E9E9F7;
  height: 30px;
  border-radius: 10px;
  padding: 6px 15px 6px 35px;
  line-height: 20px;
  font-size: 12px;
}

.menu-mobile .navbar-toggler-trigger::before {
  content: none;
}

.menu-mobile .navbar-toggler-trigger span {
  margin-left: 0;
  left: 10%;
}

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

.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;
}

.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: #F2F3F7;
  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: #495263;
  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 */
  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 #495263;
  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 */
  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: 14px "core_sans_a_65_boldregular", sans-serif;
  color: #ffffff;
}

.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 "core_sans_a_45_regularregular", 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: #DF040B;
  color: #ffffff;
}

.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: #F2F3F7;
  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: #DF040B;
  padding: 0 3px;
  font-size: 10px;
  color: #ffffff;
  border-radius: 12px;
}

.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 */
  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 */
  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;
}

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

.header-control .address p, .header-control-mobile .address p {
  font: 10px "core_sans_a_45_regularregular", sans-serif;
  color: #353F4E;
  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;
}

#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: #DF040B;
}

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

#mainNav .navbar-brand {
  color: #F0C52E;
  font-family: "core_sans_a_65_boldregular", 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: 12px/14px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 40px;
  text-transform: uppercase;
}

#mainNav .navbar-nav > .nav-item > a.active {
  color: #DF040B !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: #DF040B;
  width: 100%;
  margin: 0;
  min-width: 142px;
  border: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

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

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

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

#mainNav .nav-pills .nav-link.active,
#mainNav .nav-pills .show > .nav-link {
  background: #DF040B;
  color: #ffffff;
  border-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

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

#mega-menu {
  width: 100%;
}

.shopping-cartmini {
  width: 265px;
}

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

.shopping-cartmini .shopping-carttotal p {
  margin-bottom: 10px;
  font: 14px/1 "aileronregular", sans-serif;
}

.shopping-cartmini .shopping-carttotal p span {
  float: right;
}

.shopping-cartmini .shopping-carttotal p.bold {
  font-family: "aileronbold", sans-serif;
}

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

.shopping-cartmini .shopping-carttotal .btn-pay:hover {
  background: #FFDC19;
  color: #000000;
}

.shopping-cartmini .shopping-cartitems {
  text-align: left;
}

.shopping-cartmini .shopping-cartitems li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #F2F2F2;
  padding: 12px;
}

.shopping-cartmini .shopping-cartitems li .detail {
  padding-right: 10px;
}

.shopping-cartmini .shopping-cartitems li .detail p {
  font: 14px/1 "aileronregular", sans-serif;
  color: #495263;
  margin-bottom: 10px;
}

.shopping-cartmini .shopping-cartitems li .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.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-cartitems li .actions .delete .btn-delete:hover {
  background: #EA0000;
  color: #ffffff;
}

.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: 13px/18px "aileronbold", sans-serif;
  text-align: center;
  margin-right: 6px;
  padding: 0;
}

@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 > a {
    color: #ffffff;
    padding-right: 10px;
    padding-left: 10px;
  }
  #mainNav .navbar-nav > .nav-item > a:focus {
    color: #ffffff;
    outline: none;
  }
  #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: #000000;
  }
  #mainNav.navbar-shrink .navbar-nav > li > a:focus {
    color: #000000;
  }
  #topbar.topbar-shrink {
    height: 74px;
    padding: 5px 0;
    border-bottom: 1px solid #e6e6e6;
  }
}

@media (min-width: 1200px) {
  #topbar .row > .col-lg-3 {
    -ms-flex: 0 0 17%;
    -webkit-box-flex: 0;
    flex: 0 0 17%;
    max-width: 17%;
  }
  #topbar .row > .col-lg-5 {
    -ms-flex: 0 0 58%;
    -webkit-box-flex: 0;
    flex: 0 0 58%;
    max-width: 58%;
  }
  #topbar .row > .col-lg-4 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 767px) {
  #topbar .row {
    margin-right: 0;
    margin-left: 0;
  }
  #topbar .row > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
  }
  .search-form, .search-form-mobile {
    display: none;
  }
  .search-form-mobile {
    display: block;
  }
  .header-control, .header-control-mobile {
    padding: 7px 0 0;
  }
  .header-control .address, .header-control-mobile .address {
    /*display: none;*/
  }
  .header-control ul li .user-acount .dropdown-menu, .header-control-mobile ul li .user-acount .dropdown-menu {
    top: 100% !important;
    -webkit-transform: translate3d(0px, 13px, 0px) !important;
    transform: translate3d(0px, 13px, 0px) !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, 13px, 0px) !important;
    transform: translate3d(0px, 13px, 0px) !important;
  }
  #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: #d44e2f;
    padding: 10px 15px 30px 15px;
  }
  #mainNav .navbar-nav {
    margin-top: 10px;
  }
  #mainNav .navbar-nav > .nav-item > a {
    color: #ffffff;
    padding: 15px;
  }
}

.category-nav {
  position: fixed;
  z-index: 5555;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
}

.category-nav.category-shrink {
  top: 74px;
}

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

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

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

.category-nav .navbar-nav .nav-link.active,
.category-nav .navbar-nav .show > .nav-link {
  color: #EA0000;
  background: transparent;
}

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

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

.category-nav .navbar-nav .dropdown-item:hover {
  color: #EA0000;
  background: transparent;
}

@media (min-width: 768px) {
  .category-nav .navbar-wrapp {
    padding-left: 120px;
  }
  .category-nav .navbar {
    padding: 0;
  }
  .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;
  }
  .category-nav .navbar-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 149px;
    width: 1px;
    height: 100%;
    background: #e6e6e6;
  }
  .category-nav .navbar-nav .nav-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
  }
  .category-nav .navbar-nav .nav-link {
    width: 150px;
    position: relative;
  }
  .category-nav .navbar-nav .nav-link:hover {
    color: #EA0000;
    background: transparent;
  }
  .category-nav .navbar-nav .dropdown-menu {
    top: 28px;
    left: 150px;
    position: absolute;
    width: calc(100% - 150px);
    margin: 0;
    padding: 0 0 0 20px;
  }
  .category-nav .navbar-nav .dropdown-menu .col-group {
    float: left;
    width: 20%;
  }
}

.navbar-toggler-trigger {
  display: inline-block;
  position: relative;
  padding: 0 46px 0 20px;
  font: 14px "core_sans_a_45_regularregular", sans-serif;
  color: #2A2D35;
  background: #F2F3F7;
  border-radius: 3px;
  text-decoration: none;
  height: 40px;
  line-height: 40px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.navbar-toggler-trigger::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: 18px;
  background: #cccccc;
  z-index: 5;
}

.navbar-toggler-trigger span {
  position: absolute;
  top: 50%;
  right: 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: #EA0000;
}

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .navbar-toggler-trigger {
    padding: 0;
    margin-top: 6px;
  }
  .category-nav {
    top: 71px;
  }
  .category-nav.navbar-shrink {
    top: 71px;
  }
  .category-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;
}

.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%;
}

.home-carousel .content-box h1 {
  position: relative;
  display: block;
  opacity: 0;
  font: 40px/48px "Gibson-SemiBold", 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: 35px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  opacity: 0;
  -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: 204px;
  height: 46px;
  background: #DF040B;
  font: 14px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 23px;
}

.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: #FFDC19;
  color: #000000;
}

.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 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: #DF040B;
  -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: #FFDC19;
}

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

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

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

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

.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: right;
  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;
}

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

.swiper-slide {
  position: relative;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}

#carousel-home .carousel-indicators {
  width: 100%;
  max-width: 1170px;
  padding: 0 16px;
  margin: 0 auto;
  -ms-flex-pack: flex-end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 40px;
}

#carousel-home .carousel-indicators li {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  margin-right: 5px;
  margin-left: 5px;
  border: 1px solid #ffffff;
  background: transparent;
}

#carousel-home .carousel-indicators li.active {
  width: 16px;
  height: 16px;
  background: #ffffff;
}

.carousel-item {
  position: relative;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  background: no-repeat center center scroll;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.slide-item {
  height: 400px;
  background: no-repeat center center scroll;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
}

.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;
  height: 400px;
}

.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%);
  text-align: left;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  max-width: 1140px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.masthead .carousel-caption .caption {
  width: 100%;
  max-width: 500px;
}

.masthead .carousel-caption h1 {
  font: 40px/48px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.masthead .carousel-caption p.offer {
  font-family: "Gibson-SemiBold", sans-serif;
  font-size: 18px;
  color: #FFDC19;
  margin-top: 4px;
  margin-bottom: 64px;
}

.masthead .carousel-caption p.offer span {
  font-family: "Gibson-Regular", sans-serif;
  color: #ffffff;
}

.masthead .carousel-caption p.flash {
  font-family: "aileronblack", sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 37px;
}

.masthead .carousel-caption p.flash span {
  font-size: 30px;
  color: #FFDC19;
  margin-left: 10px;
}

.masthead .carousel-caption p.discount {
  font: 35px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
}

.masthead .carousel-caption .btn-comprar {
  width: 204px;
  height: 46px;
  background: #DF040B;
  font: 14px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 15px;
}

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

.masthead .carousel-caption .btn-comprar:hover {
  background: #FFDC19;
  color: #000000;
}

.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: #DF040B;
  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: #FFDC19;
  color: #000000;
}

.home_slider_button {
  margin-top: 70px;
}

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

.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);
}

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

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

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

section.why-hire-us {
  background: #EDF5FD;
}

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

.feature-single {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #FFDFF0;
}

.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 {
  background: #DF040B;
}

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

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

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

.feature-single.orange {
  background: #fde9b6;
  background: -webkit-gradient(linear, left top, right top, from(#fde9b6), to(#fad882));
  background: linear-gradient(90deg, #fde9b6 0%, #fad882 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fde9b6",endColorstr="#fad882",GradientType=1);
}

.feature-single.orange .caption {
  background: #FAD882;
}

.feature-single.green {
  background: #94C75E;
}

.feature-single.light-blue {
  background: #e4f8ff;
  background: -webkit-gradient(linear, left top, right top, from(#e4f8ff), to(#b4d8e6));
  background: linear-gradient(90deg, #e4f8ff 0%, #b4d8e6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e4f8ff",endColorstr="#b4d8e6",GradientType=1);
}

.feature-single.light-blue .caption {
  background: #B4D8E6;
}

.feature-single.tomato {
  background: #f9edd7;
  background: -webkit-gradient(linear, left top, right top, from(#f9edd7), to(#f5cdc6));
  background: linear-gradient(90deg, #f9edd7 0%, #f5cdc6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f9edd7",endColorstr="#f5cdc6",GradientType=1);
}

.feature-single.tomato .caption {
  background: #F5CDC6;
}

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

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

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

.featured-product {
  background: #F2F3F7;
  padding-bottom: 0;
}

.featured-product .feature-single {
  border-radius: 20px;
  overflow: hidden;
  background: #495263;
  margin: 0;
}

.featured-product .feature-single .caption {
  padding-left: 36px;
  background: transparent;
}

.featured-product .feature-single .caption p {
  font: 20px/24px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  margin-bottom: 0;
}

.featured-product .feature-single .caption h3 {
  font: 28px/34px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  margin-bottom: 10px;
}

.featured-product .feature-single .caption .btn {
  width: 204px;
  height: 42px;
  font: 16px/32px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 21px;
  border: 0;
}

.featured-product .feature-single .caption .btn:hover {
  color: #000000;
}

.featured {
  background: #f7f7f7;
  padding-top: 30px;
  padding-bottom: 0;
}

.promotion {
  background: #ffffff;
  padding-bottom: 0;
  padding-top: 50px;
}

.promotion .section-title h2 {
  margin-bottom: 0;
}

.home-products1 .nav-tabs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 90px;
  border: 0;
  margin-bottom: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: right;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.home-products1 .nav-tabs .nav-link {
  font: 14px "Gibson-Regular", sans-serif;
  color: #353F4E;
  padding: .5rem 4px;
  background: #ffffff;
  border-radius: 10px;
}

.home-products1 .nav-tabs .nav-link:hover {
  border-color: transparent;
  color: #DF040B;
}

.home-products1 .nav-tabs .nav-link.active {
  color: #ffffff;
  border-color: transparent;
  background: #DF040B;
}

.home-products1 .owl-carousel .owl-stage-outer {
  padding-top: 20px;
  padding-bottom: 10px;
  width: 100%;
}

.home-products1 .owl-carousel .owl-nav {
  position: absolute;
  top: -42px;
  right: 20px;
}

.home-products1 .owl-carousel .owl-nav .owl-prev, .home-products1 .owl-carousel .owl-nav .owl-next {
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  line-height: 28px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.home-products1 .owl-carousel .owl-nav .owl-prev:hover, .home-products1 .owl-carousel .owl-nav .owl-next:hover {
  background: #DF040B;
  color: #ffffff;
}

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

.home-products1 .owl-carousel .owl-nav .owl-next {
  margin-left: 6px;
}

.home-products1 .card-item {
  background: #ffffff;
  border-radius: 15px;
  position: relative;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
}

.home-products1 .card-item .discount {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 18px;
  background: #DF040B;
  font: 14px/18px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  padding: 0 5px 0 2px;
}

.home-products1 .card-item .discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 7px 9px 0;
  border-color: transparent #DF040B transparent transparent;
}

.home-products1 .card-item .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #FFDC19;
  border-radius: 100%;
  color: #DF040B;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
}

.home-products1 .card-item .card-image {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 20px 18px 4px;
}

.home-products1 .card-item .card-image img {
  max-height: 202px;
  width: auto;
  margin: 0 auto;
}

.home-products1 .card-item .card-body {
  padding: 0 20px;
}

.home-products1 .card-item .card-body .title {
  text-align: center;
  line-height: 18px;
}

.home-products1 .card-item .card-body .title a {
  font: 15px/1 "Gibson-Regular", sans-serif;
  color: #495263;
}

.home-products1 .card-item .card-body .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 11px;
}

.home-products1 .card-item .card-body .price p {
  margin: 0;
  font: 18px/20px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.home-products1 .card-item .card-body .old-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-products1 .card-item .card-body .old-price p {
  font: 12px/14px "Gibson-Regular", sans-serif;
  color: #504F4F;
  text-decoration: line-through;
}

.home-products1 .card-item .card-body .discount {
  position: relative;
  height: 18px;
  background: #DF040B;
  font: 14px/18px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  padding: 0 5px 0 2px;
}

.home-products1 .card-item .card-body .discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 7px 9px 0;
  border-color: transparent #DF040B transparent transparent;
}

.home-products1 .card-item .card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
  border: 0;
  padding: 0 15px 20px;
}

.home-products1 .card-item .card-footer .btn-buy {
  width: 112px;
  height: 30px;
  background: #ffffff;
  border: 2px solid #DBDCE0;
  border-radius: 10px;
  color: #DF040B;
  font: 16px/16px "Gibson-SemiBold", sans-serif;
  padding: .3rem .75rem;
}

.home-products1 .card-item .card-footer .btn-buy i {
  font-size: 12px;
  margin-left: 5px;
}

.home-products1 .card-item .card-footer .btn-buy:hover {
  background: #DF040B;
  color: #ffffff;
  border-color: #DF040B;
}

.home-products1 .card-item .card-footer .btn-heart {
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: #C7C9CB;
  padding: 0;
  text-align: center;
  line-height: 30px;
  background: #ffffff;
  border-radius: 100%;
  -webkit-transition: all .40s ease-in-out;
  transition: all .40s ease-in-out;
}

.home-products1 .card-item .card-footer .btn-heart.active {
  color: #DF040B;
}

.most-requested {
  background: #ffffff;
  padding-bottom: 70px;
}

.most-requested .section-title h2 {
  margin-bottom: 0;
}

.home-products2 .nav-tabs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 90px;
  border: 0;
  margin-bottom: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: right;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.home-products2 .nav-tabs .nav-link {
  font: 14px "Gibson-Regular", sans-serif;
  color: #353F4E;
  padding: .5rem 4px;
  background: #ffffff;
  border-radius: 10px;
}

.home-products2 .nav-tabs .nav-link:hover {
  border-color: transparent;
  color: #DF040B;
}

.home-products2 .nav-tabs .nav-link.active {
  color: #ffffff;
  border-color: transparent;
  background: #DF040B;
}

.home-products2 .owl-carousel .owl-stage-outer {
  padding-top: 20px;
  padding-bottom: 10px;
  width: 100%;
}

.home-products2 .owl-carousel .owl-nav {
  position: absolute;
  top: -42px;
  right: 20px;
}

.home-products2 .owl-carousel .owl-nav .owl-prev, .home-products2 .owl-carousel .owl-nav .owl-next {
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  line-height: 28px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.home-products2 .owl-carousel .owl-nav .owl-prev:hover, .home-products2 .owl-carousel .owl-nav .owl-next:hover {
  background: #DF040B;
  color: #ffffff;
}

.home-products2 .owl-carousel .owl-nav .owl-next {
  margin-left: 6px;
}

.home-products2 .card-item {
  background: #ffffff;
  border-radius: 10px;
  position: relative;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
}

.home-products2 .card-item .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #FFDC19;
  border-radius: 100%;
  color: #DF040B;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
}

.home-products2 .card-item .badge-info {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFDC19;
  font: 12px/14px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
  padding: 2px 7px;
}

.home-products2 .card-item .badge-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 7px 9px 0;
  border-color: transparent #fee500 transparent transparent;
}

.home-products2 .card-item .card-image {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 18px 22px 2px;
}

.home-products2 .card-item .card-image img {
  max-height: 300px;
  width: auto;
  margin: 0 auto;
}

.home-products2 .card-item .card-body {
  padding: 10px 24px 10px;
}

.home-products2 .card-item .card-body .title {
  text-align: center;
  line-height: 18px;
}

.home-products2 .card-item .card-body .title a {
  font: 18px/24px "Gibson-Regular", sans-serif;
  color: #495263;
}

.home-products2 .card-item .card-body .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 16px;
}

.home-products2 .card-item .card-body .price p {
  margin: 0;
  font: 20px/24px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.home-products2 .card-item .card-body .price p span {
  font: 12px/14px "Gibson-Regular", sans-serif;
  color: #A4A4A4;
  text-decoration: line-through;
}

.home-products2 .card-item .card-body .old-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 16px;
}

.home-products2 .card-item .card-body .old-price p {
  font: 12px/14px "Gibson-Regular", sans-serif;
  color: #A4A4A4;
  text-decoration: line-through;
}

.home-products2 .card-item .card-footer {
  background: #ffffff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 0;
  padding: 6px 26px 30px;
}

.home-products2 .card-item .card-footer .btn {
  width: 112px;
  height: 30px;
  border: 2px solid #DF040B;
  border-radius: 10px;
  color: #DF040B;
  font: 14px/16px "Gibson-SemiBold", sans-serif;
}

.home-products2 .card-item .card-footer .rating-stars {
  text-align: center;
}

.home-products2 .card-item .card-footer .rating-stars .fa-star {
  color: #A4A4A4;
  font-size: 16px;
}

.home-products2 .card-item .card-footer .rating-stars .fa-star + .fa-star {
  margin-left: 10px;
}

.home-products2 .card-item .card-footer .rating-stars .fa-star.fas {
  color: #FF8F00;
}

.other-products .card-item {
  position: relative;
  min-height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  background: #F2F3F7;
}

.other-products .card-item.green {
  background: #caea8b;
  background: linear-gradient(49deg, #caea8b 0%, #88be4c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#caea8b",endColorstr="#88be4c",GradientType=1);
}

.other-products .card-item.pink {
  background: #ffc3d2;
  background: linear-gradient(49deg, #ffc3d2 0%, #e77c89 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffc3d2",endColorstr="#e77c89",GradientType=1);
}

.other-products .card-item .caption {
  padding-left: 32px;
  max-width: 236px;
  position: relative;
  z-index: 5;
}

.other-products .card-item .caption p {
  font: 20px/24px "Gibson-Regular", sans-serif;
  color: #495263;
  margin-top: 3px;
  margin-bottom: 2px;
}

.other-products .card-item .caption h3 {
  font: 28px/34px "Gibson-SemiBold", sans-serif;
  color: #495263;
  margin-bottom: 15px;
}

.other-products .card-item .caption .btn {
  width: 204px;
  height: 42px;
  font: 16px/32px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 21px;
  border: 0;
}

.other-products .card-item .caption .btn i {
  margin-left: 10px;
}

.other-products .card-item .caption .btn:hover {
  color: #000000;
}

.other-products .card-item .image {
  position: absolute;
  top: 0;
  right: 0;
}

.home-blog {
  padding-bottom: 45px;
}

.home-blog .section-title h2 {
  margin-bottom: 50px;
}

.home-blog .blog-post .image img {
  border-radius: 10px;
  width: 100%;
}

.home-blog .blog-post .caption {
  padding: 27px 0 20px;
}

.home-blog .blog-post .caption h4 {
  margin-bottom: 6px;
}

.home-blog .blog-post .caption h4 a {
  font: 20px/24px "Gibson-SemiBold", sans-serif;
  color: #495263;
}

.home-blog .blog-post .caption p {
  font: 14px/22px "Gibson-Regular", sans-serif;
  color: #495263;
}

.home-blog .blog-post .caption p.post-date {
  color: #A4A4A4;
  margin-bottom: 10px;
}

.home-blog .blog-post .caption .btn-link {
  font: 16px/19px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
  padding: 2px 0;
}

.home-blog .blog-post .caption .btn-link i {
  margin-left: 10px;
  font-size: 14px;
}

.featured-category {
  background: #F2F3F7;
}

.featured-category .btn-category {
  padding: 0;
  width: 100%;
  margin-bottom: 4px;
}

.featured-category .btn-category .image {
  width: 100%;
  height: 200px;
  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: #ffffff;
  border-radius: 25px;
  padding: 10px;
}

.featured-category .btn-category .title {
  text-align: center;
  padding: 16px 0 10px;
}

.featured-category .btn-category .title p {
  font: 20px "Gibson-Regular", sans-serif;
  color: #495263;
  letter-spacing: 0.02em;
}

.featured-category .btn-category.btn-lightgreen .image {
  background: #79e9a8;
}

.featured-category .btn-category.btn-palegreen .image {
  background: #72dc79;
}

.featured-category .btn-category.btn-royalblue .image {
  background: #71a4f1;
}

.featured-category .btn-category.btn-violet .image {
  background: #eca6f8;
}

.featured-category .btn-category.btn-lightblue .image {
  background: #B7F2FF;
}

.featured-category .btn-category.btn-blue .image {
  background: #658cf1;
}

.featured-category .btn-category.btn-turquoise .image {
  background: #92e6ff;
}

.featured-category .btn-category.btn-yellow .image {
  background: #ffd040;
}

.featured-category .btn-category.btn-green .image {
  background: #CCD93D;
}

.featured-category .btn-category.btn-orange .image {
  background: #fcb460;
}

@media (min-width: 992px) {
  .home-products1 .nav-tabs .nav-link {
    padding: .5rem 18px;
  }
  .home-products2 .nav-tabs .nav-link {
    padding: .5rem 18px;
  }
}

@media (min-width: 1200px) {
  .home-blog .row > .col-lg-5 {
    -ms-flex: 0 0 44.5%;
    -webkit-box-flex: 0;
    flex: 0 0 44.5%;
    max-width: 44.5%;
  }
  .home-blog .row > .col-lg-7 {
    -ms-flex: 0 0 55.5%;
    -webkit-box-flex: 0;
    flex: 0 0 55.5%;
    max-width: 55.5%;
  }
}

@media (min-width: 1200px) {
  .masthead .carousel-caption {
    padding-left: 36px;
  }
  .home-products1 .container {
    max-width: 1180px;
  }
  .home-products1 .nav-tabs {
    margin-top: -46px;
  }
  .home-products2 .container {
    max-width: 1180px;
  }
  .home-products2 .nav-tabs {
    margin-top: -46px;
  }
}

@media (max-width: 767px) {
  .masthead .carousel-control-next,
  .masthead .carousel-control-prev {
    display: none;
  }
  .masthead .carousel-indicators {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: 10px;
  }
  .masthead .carousel-caption {
    padding: 20px 15px;
  }
  .masthead .carousel-caption h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .masthead .carousel-caption p.discount {
    font-size: 20px;
  }
  .masthead .carousel-caption p.offer {
    margin-bottom: 20px;
  }
  .featured-product .feature-single .caption {
    padding: 20px 0 0 20px;
  }
  .other-products .card-item {
    margin-bottom: 30px;
  }
  .other-products .card-item .caption {
    padding: 20px 0 0 20px;
  }
  .home-products1 .nav-tabs {
    padding-right: 50px;
  }
  .home-products2 .nav-tabs {
    padding-right: 50px;
  }
}

@media (max-width: 480px) {
  .featured-category .btn-category .image {
    height: 140px;
  }
}

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

footer p.copy {
  font: 700 14px "Gibson-Regular", sans-serif;
  color: #ffffff;
  margin-bottom: 10px;
}

footer .list-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

footer .list-inline li {
  font: 14px "Gibson-Regular", sans-serif;
  color: #ffffff;
}

footer .list-info li {
  display: inline-block;
  font: 14px "Gibson-Regular", sans-serif;
}

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

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

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

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

footer .list-nav li a {
  font: 13px/17px "Gibson-Regular", sans-serif;
  color: #ffffff;
}

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

footer .payment-cards {
  text-align: right;
}

footer .payment-cards ul li {
  display: inline-block;
}

footer .payment-cards ul li + li {
  margin-left: 6px;
}

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;
}

.footer-apps ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-apps ul li {
  font: 17px "core_sans_a_65_boldregular", sans-serif;
  color: #ffffff;
}

.footer-apps ul li:first-child {
  text-align: right;
}

.footer-apps ul li + li {
  margin-left: 18px;
}

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

@media (min-width: 768px) {
  footer .list-inline {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  footer .list-inline li + li {
    margin-left: 15px;
  }
}

@media (max-width: 767px) {
  footer p.copy {
    text-align: center;
  }
  footer .payment-cards {
    text-align: center;
  }
  footer .list-nav li + li {
    margin-left: 8px;
  }
  .footer-apps ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

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 "Gibson-Regular", sans-serif;
  color: #ffffff;
  margin: 0;
}

section.content {
  padding: 24px 0 40px;
  min-height: 530px;
}

section.content.product {
  padding-top: 42px;
  background: #F2F3F7;
}

section.content.categories, section.content.rubros {
  padding-top: 0 !important;
}

section.content.account {
  background: #F2F3F7;
  padding-top: 44px;
  padding-bottom: 80px;
}

section.content.catalog {
  background: #F2F3F7;
}

section.content.login {
  background: #F2F3F7;
  padding-top: 65px;
}

section.content.register {
  background: #f2f3f7;
  padding-top: 0;
}

section.content.contact {
  padding-top: 56px;
  background: #edf0f4;
}

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

section.content .page-title h1 {
  font: 22px/1 "aileronblack", sans-serif;
  color: #495263;
}

section.content .page-title h1 span {
  font-family: "Gibson-Regular", sans-serif;
}

.breadcrumb-wrapper {
  background: #ffffff;
  padding: 8px 0;
}

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

.breadcrumb-nav .breadcrumb .breadcrumb-item {
  font: 12px/24px "Gibson-Regular", sans-serif;
  color: #353F4E;
  position: relative;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 30px;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  position: absolute;
  top: 50%;
  left: 12px;
  margin-top: -3px;
  content: '';
  width: 5px;
  height: 5px;
  padding-right: 0;
  border-top: 1px solid #353F4E;
  border-left: 1px solid #353F4E;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

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

.breadcrumb-nav .breadcrumb .breadcrumb-item a {
  font: 12px/24px "Gibson-Regular", sans-serif;
  color: #353F4E;
  display: inline-block;
}

.arrow-right, .arrow-left, .long-arrow-right, .long-arrow-left {
  width: 25px;
  height: 25px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}

.arrow-right, .long-arrow-right {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.arrow-left, .long-arrow-left {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.long-arrow-right::after, .long-arrow-left::after {
  content: "";
  display: block;
  width: 2px;
  height: 45px;
  background-color: black;
  -webkit-transform: rotate(-45deg) translate(15px, 4px);
  transform: rotate(-45deg) translate(15px, 4px);
  left: 0;
  top: 0;
}

.accordion .btn {
  width: 100%;
  cursor: pointer;
  position: relative;
  text-align: left;
  font: 16px/1 "Gibson-SemiBold", sans-serif;
  color: #353F4E;
  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: #DF040B;
  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: #DF040B;
  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: #F2F3F7;
  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: 14px/16px "Gibson-Regular", sans-serif;
  color: #353F4E;
}

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

.accordion .card .card-body ul.decimal {
  list-style-type: decimal;
  padding-left: 20px;
}

.accordion .card .card-body ul li {
  font: 14px/16px "Gibson-Regular", sans-serif;
  color: #353F4E;
  margin-bottom: 15px;
}

.modal {
  z-index: 1070;
}

.modal-backdrop {
  z-index: 1060;
  background-color: #1a1a1a;
  opacity: 0.9;
}

.modal-backdrop.show {
  opacity: 0.9;
}

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

.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 "Gibson-SemiBold", sans-serif;
  color: #353F4E;
  margin: 0;
}

.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;
}

.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: #DF040B;
}

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

.modal-dialog .modal-body .form-control {
  height: 32px;
  border-color: #ADB5C0;
  border-radius: 5px;
  font: 14px "Gibson-Regular", sans-serif;
  color: #353F4E;
}

.modal-dialog .modal-body .checkbox label {
  font: 12px/26px "Gibson-Regular", sans-serif;
  color: #353F4E;
}

.modal-dialog .modal-body .checkbox label a {
  color: #353F4E;
  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: 13px 'Gibson-SemiBold', sans-serif;
  background: #66bddd;
  color: #fff;
  border-radius: 5px;
  line-height: 18px;
}

.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: 30px;
  font: 13px 'Gibson-SemiBold', sans-serif;
  background: #66bddd;
  color: #fff;
  border-radius: 5px;
  line-height: 18px;
}

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

.modal-dialog.modal-codigo .modal-body .code-info p.phone {
  font: 24px/1 'Gibson-SemiBold', sans-serif;
  color: #353F4E;
}

.modal-dialog.modal-codigo .modal-body .code-info p.message {
  font: 13px/1 "Gibson-Regular", sans-serif;
  color: #353F4E;
}

.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 {
  background: #F3F3F4;
  border-radius: 10px;
  padding: 15px 15px;
  margin-bottom: 30px;
}

.modal-dialog.modal-stores .store-address p {
  margin: 0;
  font: 16px/1 "Gibson-Regular", sans-serif;
  color: #353F4E;
}

.modal-dialog.modal-stores .store-address p span {
  color: #DF040B;
}

.modal-dialog.modal-stores .store-box {
  background: #F2F3F7;
  border-radius: 10px;
  padding: 15px 15px;
  min-height: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  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-caption {
  padding-top: 15px;
}

.modal-dialog.modal-stores .store-box .store-caption p {
  margin-bottom: 10px;
  font: 17px/1 "Gibson-Regular", sans-serif;
  color: #353F4E;
}

.modal-dialog.modal-stores .store-box .store-caption p.address {
  font-size: 13px;
  color: #808080;
}

.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-control {
  height: 60px;
  border-radius: 10px;
  border: 2px solid #dbdce0;
  font: 26px "Gibson-Regular", sans-serif;
  color: #353F4E;
}

.modal-cellphonenumber .login-form .button {
  margin: 10px 0 15px;
}

.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 "Gibson-Regular", sans-serif;
  color: #353F4E;
}

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

.modal-search-address .address-search-form .form-control {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  border: 0;
  background: #F2F3F7;
  font: 16px "Gibson-Regular", sans-serif;
  color: #929EAF;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.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: #504F4F;
  background: #F2F3F7;
  border: 0;
  border-radius: 20px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 40px;
}

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

.modal-search-address .reference-form .form-control {
  /*height: 46px;*/
  border-radius: 20px;
  /*box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);*/
  border-color: rgba(206, 212, 218, 0.5);
}

.modal-search-address .reference-form .btn {
  height: 40px;
  font: 14px "Gibson-SemiBold", sans-serif;
}

.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 "Gibson-Regular", sans-serif;
  color: #353F4E;
  border: 2px solid #dbdce0;
  border-radius: 10px;
}

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

.modal-ingresa-codigo .code-message p {
  font: 13px "Gibson-Regular", sans-serif;
  color: #353F4E;
}

.modal-ingresa-codigo .code-message p.pink {
  color: #DF040B;
}

.modal-complementos .modal-header .modal-header-content h5 {
  max-width: 80%;
  margin: 0 auto;
}

.modal-complementos .modal-body h6 {
  font: 16px/1 "Gibson-SemiBold", sans-serif;
  color: #353F4E;
}

.modal-complementos .modal-body p {
  font: 16px/1 "Gibson-Regular", sans-serif;
  color: #808080;
  font-style: italic;
}

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

.modal-complementos .modal-body .store h6 {
  font: 18px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.modal-complementos .modal-body .radio label {
  font: 16px/24px "Gibson-Regular", sans-serif;
  color: #353F4E;
  margin-bottom: 10px;
}

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

.modal-complementos .modal-body .button .btn {
  font: 14px "Gibson-SemiBold", sans-serif;
  height: 40px;
  width: 142px;
}

.modal-complementos .modal-body .button .btn i {
  margin-left: 10px;
}

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

.modal-complementos .form-item {
  background: #F2F3F7;
  border-radius: 25px;
  padding: 20px;
  margin-bottom: 20px;
}

.btn-send{
  /*width: 160px;*/
  height: 42px;
  background: #1BD741;
  font: 700 14px/1 "Poppins", sans-serif!important;
  color: #ffffff!important;
  border-radius: 5px;
  padding-top:0.85em;
}

.btn-send i{
  margin-right: 6px;
}

.modal-login .modal-body, .modal-login-codigo .modal-body, .modal-login-celular .modal-body {
  padding: 0;
}

.modal-login .modal-body .close, .modal-login-codigo .modal-body .close, .modal-login-celular .modal-body .close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: #F2F2F2;
  border-radius: 100%;
}

.modal-addcart .modal-header {
  position: relative;
}

.modal-addcart .modal-header .close {
  margin: 0;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: #F2F2F2;
  border-radius: 100%;
  padding: 0;
  line-height: 38px;
}

.modal-location .modal-body {
  padding: 42px 32px 32px 32px;
}

.modal-location .modal-body .close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: #F2F2F2;
  border-radius: 100%;
}

.modal-location .modal-body h3 {
  font: 28px/1 "aileronbold", sans-serif;
  color: #353f4e;
  margin-bottom: 20px;
  text-align: center;
}

.modal-location .modal-body p {
  font: 14px/1 "Gibson-Regular", sans-serif;
  color: #353f4e;
  margin-bottom: 20px;
}

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

.location-form label {
  font: 12px "aileronbold", sans-serif;
  color: #495263;
}

.location-form .form-control {
  font: 14px "Gibson-Regular", sans-serif;
  color: #353F4E;
}

.location-form .locations-map {
  margin-bottom: 25px;
}

.location-form .button {
  padding-bottom: 20px;
}

.location-form .button .btn-continue {
  width: 124px;
  height: 38px;
  background: #EA0000;
  font: 16px "aileronbold", sans-serif;
  color: #ffffff;
  border-radius: 10px;
}

.location-form .button .btn-continue:hover {
  background: #d44e2f;
}

.modal-login-celular .modal-body {
  padding: 30px 96px;
}

.modal-register .modal-body .form-group {
  margin-bottom: 24px;
}

.modal-register .modal-body .form-control {
  height: 46px;
  border-radius: 10px;
  border: 2px solid #dbdce0;
}

.modal-register .modal-body .checkbox label {
  padding-left: 34px;
  font: 14px/24px "Gibson-Regular", sans-serif;
  color: #353F4E;
}

.modal-register .modal-body .checkbox label::before {
  margin-left: 0;
}

.modal-register .modal-body .checkbox label::after {
  margin-left: -2px;
}

.modal-register .modal-body .button .btn {
  width: 142px;
}

@media (min-width: 576px) {
  .modal-login, .modal-login-codigo {
    max-width: 885px;
  }
  .modal-location {
    max-width: 885px;
  }
  .modal-login-celular {
    max-width: 542px;
  }
  .modal-dialog .modal-header {
    padding: 20px 30px;
  }
  .modal-register {
    max-width: 600px;
  }
  .modal-register .modal-header {
    padding: 10px 30px;
  }
  .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 36px 36px;
  }
}

@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;
  }
}

.title-order {
  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;
}

.title-order h2 {
  font: 22px "Gibson-SemiBold", sans-serif;
  color: #353F4E;
}

.products-order {
  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;
}

.products-order .result-location {
  margin: 0;
}

.products-order .result-location li {
  display: inline-block;
  font: 13px "Gibson-Regular", sans-serif;
  color: #353F4E;
}

.products-order .result-location li:first-child {
  font: 13px "Gibson-SemiBold", sans-serif;
}

.products-order .nice-select {
  width: 148px;
  height: 32px;
  border-radius: 16px;
  background: #ffffff;
  border: 0;
  font: 14px/32px "Gibson-Regular", sans-serif;
  color: #495263;
}

.products-order .nice-select::after {
  right: 18px;
  width: 7px;
  height: 7px;
}

.products-order .nice-select .option {
  text-align: center;
}

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

.product-item {
  background: #ffffff;
  border-radius: 10px;
  position: relative;
  border: 1px solid #F2F2F2;
  margin-bottom: 24px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
}

.product-item .discount {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 18px;
  background: #FFDC19;
  font: 14px/18px "Gibson-SemiBold", sans-serif;
  color: #495263;
  padding: 0 5px 0 2px;
}

.product-item .discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 7px 9px 0;
  border-color: transparent #FFDC19 transparent transparent;
}

.product-item .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #FFDC19;
  border-radius: 100%;
  color: #DF040B;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
}

.product-item .card-image {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 20px 18px 4px;
  height: 262px;
}

.product-item .card-image img {
  max-height: 218px;
}

.product-item .card-body {
  padding: 0 20px 20px;
}

.product-item .card-body .title {
  text-align: center;
  line-height: 18px;
}

.product-item .card-body .title a {
  font: 15px/1 "Gibson-Regular", sans-serif;
  color: #495263;
}

.product-item .card-body .price-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 11px;
}

.product-item .card-body .price-button p {
  margin: 0;
  font: 18px/20px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.product-item .card-body .price-button p.old-price {
  font: 12px/14px "Gibson-Regular", sans-serif;
  color: #A4A4A4;
  text-decoration: line-through;
}

.product-item .card-body .price-button .button .btn {
  width: 112px;
  height: 30px;
  border: 2px solid #dbdce0;
  background: transparent;
  border-radius: 15px;
  color: #DF040B;
  font: 14px/14px "Gibson-SemiBold", sans-serif;
}

.product-item .card-body .price-button .button .btn:hover {
  background: #DF040B;
  border-color: #DF040B;
  color: #ffffff;
}

.product-item .card-body .price-button .button .btn i {
  margin-left: 8px;
}

.product-item .card-body .price {
  text-align: center;
}

.product-item .card-body .price p {
  margin: 0;
  font: 18px/20px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.product-item .card-body .price p.old-price {
  font: 12px/14px "Gibson-Regular", sans-serif;
  color: #A4A4A4;
  text-decoration: line-through;
}

.product-item .card-footer {
  background: #ffffff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
  border: 0;
  padding-top: 33px;
  padding-bottom: 34px;
}

.product-item .card-footer .btn {
  width: 112px;
  height: 30px;
  border: 2px solid #DF040B;
  border-radius: 10px;
  color: #DF040B;
  font: 14px/14px "Gibson-SemiBold", sans-serif;
}

.product-item .card-footer .btn:hover {
  background: #DF040B;
  color: #ffffff;
}

.product-card {
  background: #ffffff;
  border-radius: 10px;
  position: relative;
  border: 1px solid #dde1ec;
  margin-bottom: 24px;
}

.product-card .discount {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 18px;
  background: #fee600;
  font: 14px/18px "Gibson-SemiBold", sans-serif;
  color: #495263;
  padding: 0 5px 0 2px;
}

.product-card .discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 7px 9px 0;
  border-color: transparent #fee600 transparent transparent;
}

.product-card .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: #FFDC19;
  border-radius: 100%;
  color: #DF040B;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
}

.product-card .card-image {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 15px 15px 4px;
  height: 242px;
}

.product-card .card-image img {
  max-height: 218px;
}

.product-card .card-body {
  padding: 0 20px 20px;
}

.product-card .card-body .title {
  text-align: center;
  line-height: 18px;
}

.product-card .card-body .title a {
  font: 15px/1 "Gibson-Regular", sans-serif;
  color: #495263;
}

.product-card .card-body .price-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 11px;
}

.product-card .card-body .price-button p {
  margin: 0;
  font: 18px/20px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.product-card .card-body .price-button p.old-price {
  font: 12px/14px "Gibson-Regular", sans-serif;
  color: #A4A4A4;
  text-decoration: line-through;
}

.product-card .card-body .price-button .button .btn {
  width: 112px;
  height: 30px;
  border: 2px solid #dbdce0;
  background: transparent;
  border-radius: 10px;
  color: #DF040B;
  font: 14px/14px "Gibson-SemiBold", sans-serif;
}

.product-card .card-body .price-button .button .btn:hover {
  background: #DF040B;
  border-color: #DF040B;
  color: #ffffff;
}

.product-card .card-body .price-button .button .btn i {
  margin-left: 8px;
}

.product-card .card-body .price {
  text-align: center;
}

.product-card .card-body .price p {
  margin: 0;
  font: 18px/20px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.product-card .card-body .price p.old-price {
  font: 12px/14px "Gibson-Regular", sans-serif;
  color: #A4A4A4;
  text-decoration: line-through;
}

.product-card .card-body .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-card .card-body .quantity .btn-quantity {
  width: 33px;
  height: 32px;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  font-size: 10px;
  line-height: 30px;
  padding: 0;
}

.product-card .card-body .quantity .form-control {
  width: 42px;
  height: 32px;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  font: 13px "Gibson-SemiBold", sans-serif;
  text-align: center;
  padding: 0;
}

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

.pagination-nav .pagination .page-item {
  font: 15px/1 "Gibson-Regular", sans-serif;
  line-height: 36px;
}

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

.pagination-nav .pagination .page-item .page-link {
  border-radius: 100%;
  padding: 5px;
  width: 36px;
  height: 36px;
  font: 15px/1 "Gibson-Regular", sans-serif;
  line-height: 26px;
  color: #000000;
  text-align: center;
  background: #ffffff;
  border-color: #E6E6E6;
}

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

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

.filter-box {
  width: 100%;
  max-width: 192px;
  background: #ffffff;
  padding: 15px 14px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.filter-box h3 {
  font: 18px/1 "Gibson-SemiBold", sans-serif;
  color: #495263;
}

.filter-box h3.red {
  color: #DF040B;
  font-size: 14px;
}

.filter-box .navbar-nav .nav-link {
  display: block;
  font: 14px/1 "Gibson-SemiBold", sans-serif;
  color: #495263;
  position: relative;
  border-top: 1px solid #ffffff;
}

.filter-box .navbar-nav .nav-link i {
  position: absolute;
  top: 50%;
  right: 7px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: all .35s;
  transition: all .35s;
}

.filter-box .navbar-nav .nav-link.collapsed i {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}

.filter-box .navbar-nav .collapse-item {
  display: block;
  font: 14px "Gibson-Regular", sans-serif;
  color: #495263;
}

.filter-box .navbar-nav .collapse-item + .collapse-item {
  margin-top: 10px;
}

.filter-box .collapse-inner {
  padding: 6px 0 10px;
}

.filter-box .collapse-inner.wpadding {
  padding-left: 16px;
}

.filter-box .form-control {
  height: 28px;
  border: 0;
}

.filter-box label {
  width: 100%;
  text-align: center;
}

.filter-box .button {
  padding-top: 10px;
}

.filter-box .button .btn-filter {
  width: 68px;
  height: 28px;
  background: #353F4E;
  font: 12px/1 "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 14px;
}

.filter-box .button .btn-filter:hover {
  background: #DF040B;
  color: #ffffff;
}

.product-wrapper {
  background: #ffffff;
  padding: 32px;
  border-radius: 15px;
}

.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;
}

.owl-thumbs .owl-thumb-item {
  height: 150px;
  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 .code {
  font: 15px/1 "Gibson-Regular", sans-serif;
  color: #929EAF;
  margin-bottom: 9px;
}

.product-details h2 {
  font: 35px/39px "Gibson-Regular", sans-serif;
  color: #3F4251;
  margin-bottom: 18px;
}

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

.product-details .rating-stars {
  margin-bottom: 30px;
}

.product-details .rating-stars .fa-star {
  color: #A4A4A4;
  font-size: 16px;
}

.product-details .rating-stars .fa-star + .fa-star {
  margin-left: 15px;
}

.product-details .rating-stars .fa-star.fas {
  color: #FF8F00;
}

.product-details .price p {
  font: 26px/1 "Gibson-SemiBold", sans-serif;
  color: #DF040B;
  display: inline-block;
  margin-bottom: 0;
}

.product-details .price p.old-price {
  font: 16px "Gibson-Regular", sans-serif;
  color: #808080;
  text-decoration: line-through;
}

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

.product-details .button {
  padding: 51px 0 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-details .button .cart-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-details .button .cart-quantity .btn-quantity {
  width: 33px;
  height: 32px;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  font-size: 10px;
  line-height: 30px;
  padding: 0;
  margin-right: 6px;
}

.product-details .button .cart-quantity .form-control {
  width: 42px;
  height: 32px;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  font: 13px "Gibson-SemiBold", sans-serif;
  text-align: center;
  margin-right: 6px;
  padding: 0;
}

.product-details .btn-agregar {
  width: 160px;
  height: 42px;
  background: #DF040B;
  font: 18px/1 "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 21px;
}

.product-details .btn-agregar i {
  margin-left: 6px;
}

.product-details .btn-agregar:hover {
  background: #FFDC19;
  color: #000000;
}

.product-details .description {
  padding: 0 0 23px;
}

.product-details .description h4 {
  font: 14px/1 "Gibson-SemiBold", sans-serif;
  color: #495263;
  margin-bottom: 20px;
}

.product-details .description h4 span {
  color: #DF040B;
}

.product-details .description p {
  font: 14px/20px "Gibson-Regular", sans-serif;
  color: #495263;
}

.product-details .product-data .navbar-nav.accordion .nav-link {
  background: #E9E9F7;
  border-radius: 10px;
  height: 32px;
  padding: 0 18px;
  font: 14px/32px "Gibson-SemiBold", sans-serif;
  color: #495263;
  position: relative;
}

.product-details .product-data .navbar-nav.accordion .nav-link i {
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: all .35s;
  transition: all .35s;
}

.product-details .product-data .navbar-nav.accordion .nav-link.collapsed i {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.product-details .product-data .navbar-nav.accordion .collapse-inner {
  padding: 15px 15px 0;
}

.product-details .returns-exchanges {
  padding-top: 20px;
}

.product-details .returns-exchanges .btn-link {
  font: 13px "Gibson-Regular", sans-serif;
  color: #606060;
  padding: 6px 0;
  text-decoration: underline;
}

.product-custom h2 {
  font: 26px/1 "Gibson-SemiBold", sans-serif;
  color: #495263;
  margin-bottom: 20px;
}

.product-custom .block {
  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;
  margin-bottom: 10px;
}

.product-custom .block p {
  display: inline-block;
  margin-bottom: 0;
  font-family: "Gibson-SemiBold", sans-serif;
}

.product-custom .block p.pink {
  color: #DF040B;
  margin-left: 15px;
}

.product-custom .block .btn-favorite {
  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;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #ffffff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}

.product-custom .block .btn-favorite:hover {
  color: #DF040B;
}

.product-custom .description p {
  font: 15px "Gibson-Regular", sans-serif;
  color: #495263;
}

.product-custom .quantity-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

.product-custom .quantity-price .cart-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-custom .quantity-price .cart-quantity .btn-quantity {
  width: 33px;
  height: 32px;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  font-size: 10px;
  line-height: 30px;
  padding: 0;
  margin-right: 6px;
}

.product-custom .quantity-price .cart-quantity .form-control {
  width: 42px;
  height: 32px;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  font: 13px "Gibson-SemiBold", sans-serif;
  text-align: center;
  margin-right: 6px;
  padding: 0;
}

.product-custom .quantity-price p {
  font: 26px/1 "Gibson-SemiBold", sans-serif;
  color: #DF040B;
  display: inline-block;
  margin-bottom: 0;
  margin-left: 10px;
}

.product-custom .custom-block {
  padding-top: 20px;
  border-top: 2px solid #E4E2E2;
}

.product-custom .custom-block h3 {
  font: 18px "Gibson-SemiBold", sans-serif;
  color: #495263;
  margin-bottom: 0;
}

.product-custom .custom-block p {
  font: 12px "Gibson-Regular", sans-serif;
  color: #495263;
}

.product-custom .buttons {
  padding-top: 20px;
  border-top: 2px solid #E4E2E2;
}

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

.product-custom .buttons .btn-outline i {
  margin-left: 10px;
}

.products-interest {
  background: #ffffff;
  padding-top: 30px;
}

.products-interest .title {
  padding: 12px 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.products-interest .title h3 {
  font: 26px/1 "Gibson-SemiBold", sans-serif;
  color: #495263;
  margin-bottom: 15px;
}

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

.modal-addcart .modal-title {
  font: 25px "aileronblack", sans-serif;
  color: #495263;
}

.modal-addcart .modal-title .icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: #3BB54A;
  border-radius: 100%;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 26px;
  vertical-align: top;
  margin-right: 6px;
}

@media (min-width: 576px) {
  .modal-addcart {
    min-width: 600px;
  }
}

.product-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 3px solid #F2F2F2;
  padding-top: 30px;
}

.product-modal .prod-image img {
  max-width: 95px;
}

.product-modal .prod-info {
  padding: 0 15px;
}

.product-modal .prod-info h5 {
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #495263;
}

.product-modal .prod-info p {
  font: 14px/1.4 "Gibson-Regular", sans-serif;
  color: #495263;
}

.product-modal .prod-quantity .cart-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-modal .prod-quantity .cart-quantity .btn-quantity {
  width: 33px;
  height: 32px;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  font-size: 10px;
  line-height: 30px;
  padding: 0;
  margin-right: 6px;
}

.product-modal .prod-quantity .cart-quantity .form-control {
  width: 42px;
  height: 32px;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  font: 13px "Gibson-SemiBold", sans-serif;
  text-align: center;
  margin-right: 6px;
  padding: 0;
}

.product-modal .prod-quantity .button {
  padding-top: 18px;
}

.product-modal .prod-quantity .button .btn-view {
  height: 32px;
  background: #ea0000;
  font: 13px/20px "Gibson-SemiBold", sans-serif;
  color: #fff;
  border-radius: 10px;
}

.product-modal .prod-quantity .button .btn-view:hover {
  background: #FFDC19;
  color: #000000;
}

@media (max-width: 767px) {
  .filter-box {
    max-width: 100%;
  }
  .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-top: 30px;
  }
  .product-details .btn-agregar {
    width: 100%;
  }
  .pagination-nav .pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.category-bar {
  background: #495263;
  padding: 19px 0 0px;
}

.category-bar .carousel-wrapp {
  padding-right: 110px;
  position: relative;
}

.category-bar .carousel-wrapp .btn-more {
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  text-decoration: none;
}

.category-bar .carousel-wrapp .btn-more .icon {
  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;
  width: 78px;
  height: 78px;
  background: #e4e8f1;
  color: #495263;
  border-radius: 100%;
  margin-bottom: 12px;
  font-size: 38px;
  -webkit-transition: all .35s;
  transition: all .35s;
}

.category-bar .carousel-wrapp .btn-more p {
  color: #ffffff;
  -webkit-transition: all .35s;
  transition: all .35s;
}

.category-bar .carousel-wrapp .btn-more:hover .icon {
  color: #DF040B;
}

.category-bar .carousel-wrapp .btn-more:hover p {
  color: #FFDC19;
}

.category-bar .carousel-wrapp .btn-more.focus, .category-bar .carousel-wrapp .btn-more:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.category-list {
  margin-bottom: 0;
  margin-left: -16px;
  margin-right: -16px;
  text-align: center;
}

.category-list li {
  display: inline-block;
  margin: 0 16px;
}

.category-list li a {
  text-align: center;
  text-decoration: none;
}

.category-list li a .icon {
  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;
  width: 78px;
  height: 78px;
  background: #ffffff;
  color: #C7C9CB;
  border-radius: 100%;
  margin-bottom: 12px;
  font-size: 38px;
  -webkit-transition: all .35s;
  transition: all .35s;
}

.category-list li a p {
  color: #ffffff;
  -webkit-transition: all .35s;
  transition: all .35s;
}

.category-list li a:hover .icon {
  color: #DF040B;
}

.category-list li a:hover p {
  color: #FFDC19;
}

.carousel-category .btn-category {
  text-align: center;
  text-decoration: none;
}

.carousel-category .btn-category .icon {
  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;
  width: 78px;
  height: 78px;
  background: #e4e8f1;
  color: #495263;
  border-radius: 100%;
  margin-bottom: 12px;
  font-size: 38px;
  -webkit-transition: all .35s;
  transition: all .35s;
}

.carousel-category .btn-category p {
  color: #ffffff;
  -webkit-transition: all .35s;
  transition: all .35s;
  margin-bottom: 14px;
}

.carousel-category .btn-category:hover .icon {
  color: #DF040B;
}

.carousel-category .btn-category:hover p {
  color: #FFDC19;
}

.carousel-category .btn-category.focus, .carousel-category .btn-category:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.category-content {
  padding: 47px 0 20px;
}

.category-title h2 {
  font: 26px/32px "core_sans_a_65_boldregular", sans-serif;
  color: #495263;
  position: relative;
  margin-bottom: 33px;
}

.category-title h2::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  background: #DDE1EC;
}

.category-title h2 span {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding-right: 20px;
}

.category-restaurant {
  margin-bottom: 44px;
}

.category-restaurant .restaurant-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.category-restaurant .restaurant-item img {
  border-radius: 20px;
}

.product-category {
  margin-bottom: 38px;
}

.product-category .card-image {
  text-align: center;
}

.product-category .card-image img {
  border-radius: 26px;
}

.product-category .card-body {
  text-align: center;
  padding: 16px 19px 6px 19px;
}

.product-category .card-body .title a {
  font: 22px/26px "core_sans_a_65_boldregular", sans-serif;
  color: #504F4F;
}

.product-category .card-body p {
  font: 16px/19px "core_sans_a_35_lightregular", sans-serif;
  color: #504F4F;
  margin-bottom: 10px;
}

.product-category .card-body .timing-price-rating {
  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;
}

.product-category .card-body .timing-price-rating p span {
  margin-left: 8px;
}

.product-category .card-body .timing-price-rating .fa-star {
  color: #FFC107;
}

.product-category .card-body .button {
  text-align: center;
  background: #ffffff;
  padding-top: 6px;
}

.product-category .card-body .button .btn {
  height: 42px;
  border-radius: 21px;
  width: 206px;
}

.product-category .card-body .button .btn.btn-outline {
  border-color: #C7C7C7;
  font: 16px/30px "core_sans_a_65_boldregular", sans-serif;
  color: #504F4F;
  padding: 6px 10px;
}

.product-category .card-body .button .btn.btn-outline img {
  vertical-align: text-bottom;
}

.product-category .card-body .button .btn.btn-outline:hover {
  border-color: #DF040B;
  color: #ffffff;
}

.product-category .card-body .button .btn.btn-off {
  border-color: #DF040B;
  background: #DF040B;
  font: 16px/30px "core_sans_a_65_boldregular", sans-serif;
  color: #ffffff;
}

@media (max-width: 767px) {
  .category-restaurant .restaurant-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .product-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product-category .card-image img {
    max-height: 130px;
  }
  .product-category .card-body {
    padding: 0 15px 6px 15px;
  }
  .product-category .card-body .title {
    margin-bottom: 0;
  }
  .product-category .card-body .title a {
    font-size: 18px;
  }
}

.rubros-bar {
  background: #495263;
  padding: 16px 0 20px;
}

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

.rubros-bar .carousel-wrapp .btn-plus {
  position: absolute;
  right: 0;
  /*top: -2px;*/
  top: 12px;
  width: 28px;
  height: 28px;
  border: 1px solid #ffffff;
  border-radius: 100%;
  color: #ffffff;
  line-height: 26px;
  padding: 0;
}

.rubros-list {
  margin-bottom: 0;
  margin-left: -11px;
  margin-right: -11px;
  text-align: center;
}

.rubros-list li {
  display: inline-block;
  margin: 0 11px;
}

.rubros-list li .btn {
  background: #DF040B;
  text-align: center;
  text-decoration: none;
  padding: 3px 6px;
  border-radius: 11px;
  font: 13px/14px "core_sans_a_65_boldregular", sans-serif;
  color: #ffffff;
}

.rubros-list li .btn.active {
  background: #ffffff;
  color: #DF040B;
}

.rubros-list li .btn.btn-plus {
  width: 28px;
  height: 28px;
  border: 1px solid #ffffff;
  border-radius: 100%;
  line-height: 22px;
}

.carousel-rubros .btn {
  background: transparent;
  text-align: center;
  text-decoration: none;
  padding: 3px 6px;
  border-radius: 10px;
  font: 13px/14px "Gibson-SemiBold", sans-serif;
  color: #ffffff!important;
  cursor: pointer;
}

.carousel-rubros .btn.active {
  background: #ffffff;
  color: #495263!important;
}

.rubros-content {
  padding: 47px 0 20px;
}

.rubros-title h2 {
  font: 26px/32px "Gibson-SemiBold", sans-serif;
  color: #495263;
  position: relative;
  margin-bottom: 33px;
  padding-bottom: 15px;
}

.rubros-title h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #DDE1EC;
}

.rubros-title h2 span {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding-right: 20px;
}

.product-rubro {
  padding-bottom: 24px;
  border-bottom: 2px solid #dbdce0;
  margin-bottom: 24px;
}

.product-rubro .card-image img {
  border-radius: 16px;
}

.product-rubro .card-body {
  padding: 0;
}

.product-rubro .card-body .title a {
  font: 22px/26px "Gibson-SemiBold", sans-serif;
  color: #495263;
}

.product-rubro .card-body p {
  font: 16px/19px "Gibson-Regular", sans-serif;
  color: #495263;
  margin-bottom: 10px;
}

.product-rubro .card-body .timing-price-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-rubro .card-body .timing-price-rating p span {
  margin-left: 8px;
}

.product-rubro .card-body .timing-price-rating p span.price {
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.product-rubro .card-body .timing-price-rating p.rating {
  margin-left: 20px;
}

.product-rubro .card-body .timing-price-rating .fa-star {
  color: #FFC107;
}

.product-rubro .card-body .btn {
  height: 42px;
  border-radius: 21px;
  width: 206px;
}

.product-rubro .card-body .btn.btn-outline {
  border-color: #dde1ec;
  font: 16px/30px "Gibson-Regular", sans-serif;
  color: #495263;
  padding: 6px 10px;
}

.product-rubro .card-body .btn.btn-outline img {
  vertical-align: text-bottom;
}

.product-rubro .card-body .btn.btn-outline:hover {
  border-color: #DF040B;
  color: #ffffff;
}

.product-rubro .card-body .btn.btn-off {
  border-color: #ffdc19;
  background: #ffdc19;
  font: 16px/30px "Gibson-SemiBold", sans-serif;
  color: #495263;
}

.rubros-products > .row div:nth-last-child(1) .product-rubro, .rubros-products > .row div:nth-last-child(2) .product-rubro {
  border-bottom: 0;
}

@media (max-width: 991px) {
  .product-rubro {
    text-align: center;
  }
  .product-rubro .card-image img {
    margin: 0 auto;
  }
  .product-rubro .card-body {
    text-align: center;
  }
  .product-rubro .card-body .timing-price-rating {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.store-heading {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

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

.store-heading .heading-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 228px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.store-heading .heading-content h1 {
  font: 42px/50px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
}

.store-heading .heading-content .text p {
  display: inline-block;
  font: 16px "Gibson-Light", sans-serif;
  color: #ffffff;
  margin-bottom: 10px;
}

.store-heading .heading-content .text p span.price {
  color: #ffdc19;
  font-family: "Gibson-SemiBold", sans-serif;
  padding-left: 20px;
}

.store-heading .heading-content .text p.horary {
  padding-left: 20px;
}

.store-heading .heading-content .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.store-heading .heading-content .buttons .btn-favorite {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #ffffff;
  text-align: center;
  line-height: 30px;
  padding: 0;
  color: #C7C9CB;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}

.store-heading .heading-content .buttons .btn-favorite:hover {
  color: #DF040B;
}

.store-heading .heading-content .buttons .badge-status {
  height: 26px;
  background: #39b54a;
  font: 14px/18px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 13px;
  padding: 4px 15px;
  margin-left: 20px;
}

.information-bar {
  background: #434956;
}

.information-bar .information-content {
  text-align: right;
  padding-right: 170px;
  position: relative;
}

.information-bar .information-content .btn-link {
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
}

.information-bar .information-content .store-brand {
  position: absolute;
  right: 0;
  top: -80px;
}

.information-bar .information-content .store-brand img {
  border-radius: 100%;
  border: 10px solid #ffffff;
}

.store-menu {
  background: #495263;
  padding: 15px;
}

.store-menu .nav-item .icon {
  font-size: 26px;
  line-height: 26px;
  margin-right: 20px;
  color: #ffffff;
}

.store-menu .nav-link {
  font: 15px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  height: 26px;
  border-radius: 13px;
  padding: 4px 20px;
}

.store-menu .nav-link.active {
  background: #ffffff;
  color: #495263;
}

.popular-products {
  padding-top: 26px;
}

.store-section {
  padding-top: 40px;
}

.store-section.second {
  padding-top: 14px;
}

.store-section .section-title h2 {
  font: 26px/32px "Gibson-SemiBold", sans-serif;
  color: #495263;
  position: relative;
}

.store-section .section-title h2::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  background: #DDE1EC;
}

.store-section .section-title h2 span {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding-right: 20px;
}

.popular-item {
  margin-bottom: 20px;
}

.popular-item .card-image {
  text-align: center;
}

.popular-item .card-image img {
  border-radius: 20px;
}

.popular-item .card-body {
  text-align: center;
  padding: 15px 15px;
}

.popular-item .card-body p {
  margin-bottom: 5px;
  font: 16px "Gibson-Light", sans-serif;
  color: #2B2929;
}

.popular-item .card-body p.price {
  font: 22px "Gibson-SemiBold", sans-serif;
  margin-bottom: 0;
}

.popular-item .card-body .button {
  padding-top: 10px;
}

.popular-item .card-body .btn-add {
  width: 134px;
  height: 30px;
  background: #FFFFFF;
  border: 2px solid #dbdce0;
  font: 16px/22px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
  padding: .15rem .75rem;
  border-radius: 15px;
}

.popular-item .card-body .btn-add:hover {
  background: #DF040B;
  color: #ffffff;
}

.popular-item .card-body .btn-add i {
  font-size: 12px;
  margin-left: 5px;
}

.store-products {
  padding-top: 30px;
  padding-bottom: 20px;
}

.store-products .row div:last-child .food-item, .store-products .row div:nth-last-child(2) .food-item {
  border-bottom: 0;
}

.food-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid #E4E2E2;
}

.food-item .card-image {
  text-align: center;
}

.food-item .card-image img {
  border-radius: 16px;
}

.food-item .card-body {
  padding: 0;
  position: relative;
}

.food-item .card-body h4 {
  font-size: 22px;
}

.food-item .card-body .btn-link {
  padding: 0;
  font: 22px "Gibson-SemiBold", sans-serif;
  color: #504F4F;
}

.food-item .card-body p {
  font: 16px "Gibson-Light", sans-serif;
  color: #504F4F;
  margin-bottom: 0;
}

.food-item .card-body p.popular {
  color: #DF040B;
}

.food-item .card-body p.price {
  font-family: "Gibson-SemiBold", sans-serif;
  font-size: 22px;
  color: #504F4F;
}

.food-item .card-body .btn-favorite {
  position: absolute;
  top: 0;
  right: 0;
  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;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #ffffff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  color: #c7c9cb;
}

.food-item .card-body .btn-favorite:hover {
  color: #DF040B;
}

.food-item .price-button {
  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;
  padding-top: 50px;
}

.food-item .price-button .btn-add {
  width: 134px;
  height: 30px;
  background: #FFFFFF;
  border: 2px solid #dbdce0;
  font: 16px/22px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
  padding: .15rem .75rem;
  border-radius: 15px;
}

.food-item .price-button .btn-add:hover {
  background: #DF040B;
  color: #ffffff;
}

.food-item .price-button .btn-add i {
  font-size: 12px;
  margin-left: 5px;
}

@media (max-width: 576px) {
  .store-heading .heading-content h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .store-heading .heading-content .text p {
    font-size: 14px;
  }
  .information-bar .information-content {
    padding-right: 0;
  }
  .information-bar .information-content .store-brand {
    right: inherit;
    left: 0;
    top: -40px;
  }
  .information-bar .information-content .store-brand img {
    max-height: 80px;
    border-width: 3px;
  }
  .store-menu .nav-link {
    padding: 4px 8px;
  }
  .popular-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .popular-item .card-image img {
    max-height: 120px;
  }
  .popular-item .card-body {
    text-align: right;
  }
  .popular-item .card-body p.price {
    font-size: 18px;
  }
  .food-item .card-body h4, .food-item .card-body .btn-link {
    font-size: 16px;
  }
  .food-item .card-body .price-button {
    padding-top: 10px;
  }
  .food-item .card-body .price-button .btn-add {
    width: auto;
    font-size: 14px;
  }
  .food-item .card-body p.price {
    font-size: 18px;
  }
}

.account .account-title {
  font: 20px "Gibson-SemiBold", sans-serif;
  color: #272D4C;
  text-align: center;
}

.account-wrapp {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #F2F2F2;
}

.account-menu {
  background: #353F4E;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 24px 0 24px 14px;
}

.account-menu .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.account-menu .profile .image {
  border-radius: 100%;
  border: 3px solid #ffffff;
}

.account-menu .profile .image img {
  border-radius: 100%;
}

.account-menu .profile .data {
  padding-left: 12px;
}

.account-menu .profile .data h5 {
  font: 12px/14px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.account-menu .profile .data p {
  font: 16px/18px "Gibson-Regular", sans-serif;
  color: #495263;
  margin: 0;
}

.account-menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}

.account-menu ul .nav-item {
  margin-bottom: 14px;
}

.account-menu ul .nav-item a {
  padding: 6px 18px;
  font: 14px "Gibson-Regular", sans-serif;
  color: #ffffff;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  border-radius: 10px;
  position: relative;
}

.account-menu ul .nav-item a::after {
  content: none;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #ffffff transparent transparent;
}

.account-menu ul .nav-item a i {
  margin-right: 4px;
  font-size: 16px;
}

.account-menu ul .nav-item a:hover {
  color: #fee600;
}

.account-menu ul .nav-item.active a {
  color: #fee600;
}

.account-menu ul .nav-item.active a::after {
  content: '';
}

.account-menu-mobile .btn-dropdown {
  background: #353F4E;
  border-radius: 15px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  font: 16px/1 "Gibson-Regular", sans-serif;
  color: #ffffff;
  text-align: left;
  height: 40px;
  position: relative;
}

.account-menu-mobile .btn-dropdown::after {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.account-menu-mobile .dropdown-menu {
  width: calc(100% - 30px);
  background: #353F4E;
}

.account-menu-mobile .dropdown-menu .dropdown-item {
  padding: 6px 18px;
  font: 14px "Gibson-Regular", sans-serif;
  color: #ffffff;
}

.account-menu-mobile .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: #DF040B;
}

.account-menu-mobile .dropdown-menu .dropdown-item.active {
  background: transparent;
  color: #DF040B;
}

.card-information {
  padding: 30px 15px;
}

.card-information .title-card {
  margin-bottom: 28px;
  position: relative;
  text-align: center;
}

.card-information .title-card h2 {
  font: 22px/1 "Gibson-SemiBold", sans-serif;
  color: #495263;
  margin-bottom: 20px;
}

.card-information .title-card .number-order {
  position: absolute;
  top: 0;
  right: 0;
  height: 28px;
  background: #E9E9F7;
  border-radius: 124px;
  padding: 0 23px;
  font: 14px/28px "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.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: 100%;
}

.card-information .profile .avatar .btn-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  font-size: 10px;
  background: #353F4E;
  color: #ffffff;
  padding: 0;
}

.card-information .monitoring-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}

.card-information .monitoring-detail .block1 {
  width: 100%;
}

.card-information .monitoring-detail .block2 {
  width: 100%;
}

.card-information .monitoring-detail .block3 {
  width: 100%;
}

.card-information .monitoring-detail .block {
  position: relative;
  padding-left: 58px;
  padding-top: 3px;
  margin-bottom: 20px;
}

.card-information .monitoring-detail .block .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: #F7F7F7;
  border-radius: 100%;
  text-align: center;
  line-height: 48px;
  font-size: 18px;
  color: #353F4E;
}

.card-information .monitoring-detail h5 {
  font: 12px "Gibson-SemiBold", sans-serif;
  color: #495263;
  margin: 0;
}

.card-information .monitoring-detail p {
  font: 13px "Gibson-Regular", sans-serif;
  color: #495263;
  margin: 0;
}

.card-information .monitoring-detail .table tbody td {
  padding: 0;
  border: 0;
}

.card-information .purchase-detail .navbar-nav .nav-link {
  font: 14px "Gibson-SemiBold", sans-serif;
  color: #495263;
}

.card-information .purchase-detail .navbar-nav .nav-link i {
  margin-left: 10px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all .35s;
  transition: all .35s;
}

.card-information .purchase-detail .navbar-nav .nav-link.collapsed i {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.card-information .button-wrapp {
  text-align: right;
  padding-top: 20px;
}

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

.perfil-form label {
  font: 14px "Gibson-Regular", sans-serif;
  color: #495263;
}

.perfil-form .form-control {
  font: 16px "Gibson-Regular", sans-serif;
  color: #353F4E;
  border: 2px solid #dbdce0;
  border-radius: 10px;
}

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

.perfil-form .button .btn-save {
  width: 124px;
  height: 42px;
  background: #DF040B;
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 10px;
}

.perfil-form .button .btn-save:hover {
  background: #FFDC19;
  color: #000000;
}

.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-thumb img {
  border-radius: 10px;
}

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

.shopping-item .product-descrip h4 {
  font: 18px "Gibson-Regular", sans-serif;
  color: #272D4C;
}

.shopping-item .product-descrip p {
  font: 14px "Gibson-Regular", sans-serif;
  color: #929EAF;
  margin-bottom: 10px;
}

.shopping-item .product-descrip p.brand {
  color: #272D4C;
}

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

.shopping-item .product-price p {
  font: 18px "Gibson-Regular", sans-serif;
  color: #D44E2F;
  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: 5px;
  width: 120px;
}

.shopping-item .input-group .form-control {
  text-align: center;
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #272D4C;
  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 "Gibson-Regular", sans-serif;
  color: #272D4C;
  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 "Gibson-SemiBold", sans-serif;
  color: #272D4C;
  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 "Gibson-Regular", sans-serif;
  color: #272D4C;
}

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

.shopping-buttons .btn {
  font: 16px "Gibson-SemiBold", sans-serif;
  height: 36px;
  border-radius: 5px;
  line-height: 22px;
}

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

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

.shopping-buttons .btn-seguir:hover {
  background: #66BDDD;
  color: #ffffff;
}

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

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

.payment-methods h3 {
  font: 14px "Gibson-Regular", sans-serif;
  color: #272D4C;
}

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

.address-list .button-add {
  padding: 10px 0 46px 0;
}

.address-list .button-add .btn {
  font: 16px "Gibson-SemiBold", sans-serif;
  width: 124px;
  height: 32px;
  background: #DF040B;
  color: #ffffff;
  border-radius: 10px;
}

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

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

.address-list .address-buttons .btn {
  font: 16px "Gibson-SemiBold", sans-serif;
  height: 36px;
  border-radius: 5px;
  line-height: 22px;
}

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

.address-list .address-buttons .btn-agregar {
  width: 202px;
  height: 36px;
  background: #66BDDD;
  color: #ffffff;
  border-radius: 5px;
  line-height: 22px;
}

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

.address-item .address-box {
  width: 100%;
  max-width: 90%;
  display: inline-block;
  background: #F2F3F7;
  border-radius: 10px;
  padding: 15px 18px;
}

.address-item .address-box .icon {
  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;
  width: 38px;
  height: 38px;
  font-size: 20px;
  color: #000000;
  background: #ffffff;
  border-radius: 5px;
}

.address-item .address-box .address {
  padding-left: 10px;
}

.address-item .address-box .address h5 {
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #272D4C;
  margin-bottom: 3px;
}

.address-item .address-box .address p {
  font: 14px "Gibson-Regular", sans-serif;
  color: #929EAF;
  margin-bottom: 0;
}

.address-item .address-box .btn-edit {
  width: 94px;
  height: 32px;
  border-radius: 10px;
  background: #ffffff;
  border: 2px solid #DDE1EC;
  font: 14px/1.2 "Gibson-SemiBold", sans-serif;
  color: #353F4E;
  margin-right: 20px;
}

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

.address-item .address-box .btn-edit:hover {
  background: #DF040B;
  border-color: #DF040B;
  color: #ffffff;
}

.address-item .address-box .checkbox {
  margin-top: 7px;
}

.address-item .address-box .checkbox label::before {
  margin-left: 0;
  border-width: 2px;
}

.address-item .address-box .checkbox label::after {
  margin-left: -2px;
}

.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 .actions {
  display: inline-block;
}

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

.address-item .actions .btn-trash:hover {
  color: #EA0000;
}

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

.address-form label {
  font: 12px "Gibson-SemiBold", sans-serif;
  color: #495263;
}

.address-form .form-control {
  font: 14px "Gibson-Regular", sans-serif;
  color: #272D4C;
  border: 2px solid #dbdce0;
  border-radius: 10px;
}

.address-form .locations-map {
  margin-bottom: 25px;
}

.address-form .button .btn-save {
  width: 124px;
  height: 32px;
  background: #DF040B;
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 10px;
}

.address-form .button .btn-save:hover {
  background: #FFDC19;
  color: #000000;
}

.address-form .buttons {
  text-align: right;
  padding-top: 16px;
}

.address-form .buttons .btn {
  height: 32px;
  width: 168px;
  font: 13px/18px "Gibson-SemiBold", sans-serif;
  border-radius: 10px;
}

.address-form .buttons .btn + .btn {
  margin-left: 10px;
}

.address-form .buttons .btn.btn-red {
  background: #DF040B;
  color: #ffffff;
}

.address-form .buttons .btn.btn-red:hover {
  background: #FFDC19;
  color: #000000;
}

.address-form .buttons .btn.btn-red-outline {
  background: #ffffff;
  border: 1px solid #DF040B;
  color: #DF040B;
}

.address-form .buttons .btn.btn-red-outline:hover {
  background: #DF040B;
  color: #ffffff;
}

.card-list .btn-addcard {
  width: 168px;
  height: 32px;
  background: #DF040B;
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  border-radius: 10px;
}

.card-list .btn-addcard i {
  margin-left: 6px;
}

.card-list .btn-addcard:hover {
  background: #FFDC19;
  color: #000000;
}

.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: #495263;
  display: inline-block;
  color: #ffffff;
}

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

.my-orders .driver-box .driver p {
  margin: 0;
  font: 13px "Gibson-Regular", sans-serif;
  color: #808080;
}

.my-orders .driver-box .driver h5 {
  margin: 0;
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #272D4C;
}

.my-orders .driver-box .btn-message {
  position: absolute;
  top: -24px;
  right: 40px;
  width: 48px;
  height: 48px;
  line-height: 40px;
  background: #DF040B;
  border-radius: 100%;
  color: #ffffff;
  font-size: 23px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

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

.my-orders .address-box p {
  font: 14px "Gibson-Regular", sans-serif;
  color: #353F4E;
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}

.my-orders .address-box p.text-gray {
  font-size: 13px;
  color: #808080;
}

.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 .address-box p.payment {
  padding-left: 0;
  padding-right: 25px;
}

.my-orders .address-box p.payment i {
  left: inherit;
  right: 0;
  top: 5px;
}

.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: 14px "Gibson-Regular", sans-serif;
  color: #929EAF;
  margin: 0;
}

.my-orders .orders-list .order-item .descript p.title {
  color: #272D4C;
  margin-bottom: 5px;
}

.my-orders .orders-list .order-item .price {
  width: 90px;
  text-align: right;
}

.my-orders .orders-list .order-item .price p {
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #353F4E;
}

.purchases-list ul li + li {
  margin-top: 24px;
}

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

.purchases-list .button-add {
  padding: 10px 0 46px 0;
}

.purchases-list .button-add .btn {
  font: 16px "Gibson-SemiBold", sans-serif;
  width: 124px;
  height: 32px;
  background: #DF040B;
  color: #ffffff;
  border-radius: 10px;
}

.purchase-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid #F2F2F2;
}

.purchase-box .icon {
  width: 32px;
  font-size: 24px;
  color: #000000;
  margin-right: 5px;
}

.purchase-box .purchase h5 {
  font: 14px "Gibson-Regular", sans-serif;
  color: #272D4C;
  margin-bottom: 10px;
}

.purchase-box .purchase p {
  font: 14px "Gibson-Regular", sans-serif;
  color: #353F4E;
  margin-bottom: 10px;
}

.purchase-box .purchase p.label {
  font-family: "Gibson-SemiBold", sans-serif;
}

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

.purchase-box .button .btn-view {
  width: 94px;
  height: 32px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #DF040B;
  font: 14px/1.4 "Gibson-SemiBold", sans-serif;
  color: #DF040B;
}

.purchase-box .button .btn-view i {
  font-size: 9px;
  margin-left: 10px;
}

.purchase-box .button .btn-view:hover {
  background: #DF040B;
  color: #ffffff;
}

.purchase-box .details {
  /*padding-left: 20px;
   padding-top: 10px;*/
  gap: 1rem
}

.purchase-box .details h5 {
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #353F4E;
  margin-bottom: 6px;
}

.purchase-box .details p {
  font: 13px "Gibson-Regular", sans-serif;
  color: #808080;
  margin-bottom: 6px;
}

/*.purchase-box .price-quantity {
  margin-left: auto;
  padding-top: 20px;
}*/

.purchase-box .price-quantity .price {
  font: 17px "Gibson-SemiBold", sans-serif;
  color: #353F4E;
  margin-bottom: 10px;
}

.purchase-box .price-quantity h6 {
  font-family: "Gibson-SemiBold", sans-serif;
}

.purchase-box .order-detai-status {
	gap: 1rem
}

.purchase-box .detail-price {
	display: grid;
	align-content: space-between;
	
	h5 {
	  font: 16px "Gibson-SemiBold", sans-serif;
	  color: #353F4E;
	  margin-top: .5rem;
	}
	
	.order-status {
		min-width: 110px;
	}
}



.purchase-box .price-quantity .cart-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.purchase-box .price-quantity .cart-quantity .btn-quantity {
  width: 33px;
  height: 32px;
  border: 0;
  background: #F2F3F7;
  font-size: 10px;
  line-height: 30px;
  padding: 0;
}

.purchase-box .price-quantity .cart-quantity .btn-quantity.button-up {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.purchase-box .price-quantity .cart-quantity .btn-quantity.button-down {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.purchase-box .price-quantity .cart-quantity .btn-delete {
  width: 32px;
  height: 32px;
  padding: 0;
}

.purchase-box .price-quantity .cart-quantity .btn-delete:hover {
  color: #EA0000;
}

.purchase-box .price-quantity .cart-quantity .form-control {
  width: 50px;
  height: 32px;
  border: 0;
  background: #F2F3F7;
  font: 13px "aileronbold", sans-serif;
  text-align: center;
  padding: 0;
}

.purchase-amount {
  border-bottom: 1px solid #F2F2F2;
}

.purchase-amount .table tr td {
  font: 16px "Gibson-Regular", sans-serif;
  color: #353F4E;
  border: 0;
  padding: 6px 0;
}

.purchase-amount .table tr.total td {
  font-family: "Gibson-SemiBold", sans-serif;
}

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

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

.purchase-item .purchase-box.outline {
  background: #ffffff;
  border: 2px solid #E4E2E2;
}

.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;
  width: 100%;
}

.purchase-item .purchase-box .address-area .address h5 {
  font: 14px "Gibson-Regular", sans-serif;
  color: #272D4C;
  margin-bottom: 3px;
}

.purchase-item .purchase-box .address-area .address p {
  font: 12px "Gibson-Regular", sans-serif;
  color: #929EAF;
  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: 38px;
  border-radius: 5px;
  background: #ffffff;
  font: 14px "Gibson-SemiBold", sans-serif;
  color: #272D4C;
}

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

.purchase-item .purchase-box .icon {
  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;
  width: 38px;
  height: 38px;
  font-size: 24px;
  margin-right: 10px;
  border-radius: 5px;
  background: #ffffff;
  text-align: center;
  color: #353F4E;
}

.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: 16px "Gibson-SemiBold", sans-serif;
  color: #272D4C;
  margin: 0;
}

.purchase-item .purchase-box .purchase-title p {
  font: 12px "Gibson-Regular", sans-serif;
  color: #929EAF;
  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 .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 .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;
  font: 13px "Gibson-SemiBold", sans-serif;
  background: #66bddd;
  color: #fff;
  border-radius: 5px;
  padding: .375rem 25px;
}

.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: #d44e2f;
}

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

.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 "Gibson-Regular", sans-serif;
  color: #272D4C;
  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: 14px "Gibson-SemiBold", sans-serif;
  color: #272D4C;
  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-atras {
  width: 185px;
  height: 30px;
  font: 13px "Gibson-SemiBold", sans-serif;
  background: #F3F3F4;
  color: #272D4C;
  line-height: 20px;
}

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

.purchase-item .buttons .btn-confirmar {
  width: 202px;
  height: 30px;
  font: 13px "Gibson-SemiBold", sans-serif;
  background: #66BDDD;
  color: #ffffff;
  border-radius: 5px;
  line-height: 20px;
}

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

.purchase-block {
  background: #F2F3F7;
  border-radius: 10px;
  padding: 15px;
}

.purchase-block.outline {
  background: #ffffff;
  border: 2px solid #E4E2E2;
}

.purchase-block .icon {
  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;
  width: 38px;
  height: 38px;
  font-size: 24px;
  margin-right: 10px;
  border-radius: 5px;
  background: #ffffff;
  text-align: center;
  color: #353F4E;
}

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

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

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

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

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

.purchase-block .purchase-title h5 {
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #272D4C;
  margin: 0;
}

.purchase-block .purchase-title p {
  font: 12px "Gibson-Regular", sans-serif;
  color: #929EAF;
  margin-bottom: 0;
}

.purchase-block .cash-payment .form-group {
  margin: 0;
}

.purchase-block .cash-payment .form-control {
  border: 2px solid #dbdce0;
  border-radius: 10px;
}

.purchase-block .btn-outline {
  height: 32px;
  border: 2px solid #DDE1EC;
  border-radius: 10px;
  font: 14px "Gibson-SemiBold", sans-serif;
  color: #353F4E;
}

.purchase-block .btn-outline i {
  margin-left: 5px;
}

.purchase-block .btn-outline:hover {
  border-color: #DF040B;
  background: #DF040B;
  color: #ffffff;
}

.purchase-block .total-table {
  width: 100%;
  max-width: 300px;
}

.purchase-block .total-table .table tr td {
  font: 14px "Gibson-Regular", sans-serif;
  color: #353F4E;
  border: 0;
  padding: 7px 0;
}

.purchase-block .total-table .table tr.total td {
  font: 14px "Gibson-SemiBold", sans-serif;
  color: #353F4E;
}

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

.voucher-form .form-control {
  height: 42px;
  font: 16px "Gibson-Regular", sans-serif;
  color: #353F4E;
  border: 2px solid #dbdce0;
  border-radius: 10px;
}

.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 "Gibson-Regular", sans-serif;
  color: #272D4C;
}

.orders-history ul .order-history-item p.code {
  font-family: "Gibson-SemiBold", 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;
}

.progress-bar-box {
  padding: 40px 10px 30px;
  background: #F7F7F7;
  border-radius: 20px;
  margin-bottom: 40px;
}

.stepbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.stepbar li {
  width: 25%;
  text-align: center;
  font: 14px "Gibson-Regular", sans-serif;
  color: #272D4C;
  position: relative;
}

.stepbar li:before {
  content: '';
  width: 23px;
  height: 23px;
  line-height: 17px;
  font-size: 14px;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  border: 3px solid transparent;
  background-color: #353F4E;
  color: #333;
  position: relative;
  z-index: 2;
}

.stepbar li:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #353F4E;
  top: 10px;
  left: -50%;
}

.stepbar li:first-child:after {
  content: none;
}

.stepbar li.active:before {
  background: #DF040B;
  border-color: #353F4E;
  -webkit-box-shadow: 0px 0px 0px 6px rgba(234, 0, 0, 0.15);
  box-shadow: 0px 0px 0px 6px rgba(234, 0, 0, 0.15);
}

.stepbar1 {
  counter-reset: step;
  margin: 0;
  padding: 0;
}

.stepbar1 li {
  list-style-type: none;
  float: left;
  width: 20%;
  position: relative;
  text-align: center;
  font-size: 9px;
  color: white;
  padding-left: 5px;
}

.stepbar1 li:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  border: 1px solid #ddd;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
  color: #333;
}

.stepbar1 li:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ddd;
  top: 15px;
  left: -50%;
  z-index: -1;
}

.stepbar1 li:first-child:after {
  content: none;
}

.stepbar1 li.active:before {
  background: #27AE60;
  border: 1px solid #89e5b0;
  color: white;
}

.stepbar1 li.active + li.active:after {
  background: #27AE60;
}

.stepbar1 li.active:first-child + li:after:not(.active) {
  background: white;
}

.orders-list .order-item {
  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;
  padding-bottom: 20px;
  border-bottom: 1px solid #EBEBEB;
}

.orders-list .order-item .details p {
  font: 16px "Gibson-Regular", sans-serif;
  color: #3F4251;
  margin: 0;
}

.orders-list .order-item .details p.code {
  font-size: 12px;
  color: #DF040B;
}

.orders-list .order-item .date-status {
  text-align: right;
}

.orders-list .order-item .date-status p {
  font: 14px "Gibson-Regular", sans-serif;
  color: #808080;
  margin-bottom: 10px;
}

.orders-list .order-item .date-status p i {
  margin-left: 5px;
  font-size: 12px;
}

.orders-list .order-item .date-status .btn {
  height: 20px;
  font: 12px/18px "Gibson-SemiBold", sans-serif;
  color: #ffffff;
  background: #808080;
  border-radius: 10px;
  padding: 0 10px;
}

.orders-list .order-item .date-status .btn.btn-cancel {
  background: #e24133;
}

.orders-list .order-item .date-status .btn.btn-delivered {
  background: #02a744;
}

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

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

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

.payment-form .form-control {
  border-radius: 5px;
  border-color: #D4D5DB;
  min-width: 286px;
  font: 12px 'Gibson-Regular', sans-serif;
  color: #232B3B;
}

.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: 13px 'Gibson-SemiBold', sans-serif;
  background: #66BDDD;
  color: #ffffff;
  border-radius: 5px;
  line-height: 20px;
}

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

@media (min-width: 768px) {
  .account-menu-mobile {
    display: none;
  }
  .card-information {
    padding: 36px 30px 30px 0;
  }
  .card-information .monitoring-detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .card-information .monitoring-detail .block1 {
    max-width: 30%;
  }
  .card-information .monitoring-detail .block2 {
    max-width: 30%;
  }
  .card-information .monitoring-detail .block3 {
    max-width: 40%;
  }
  .card-information .monitoring-detail .block {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .addresses,
  .purchase,
  .shopping-list,
  .payment-methods {
    padding-top: 20px;
  }
  .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;
  }
  .account-menu {
    display: none;
  }
  .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-wrapp {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 23px 60px;
}

.contact-content h2 {
  font: 26px/32px "Gibson-SemiBold", sans-serif;
  color: #495263;
  text-align: center;
  margin-bottom: 30px;
}

.contact-content h3 {
  font: 18px/21px "Gibson-SemiBold", sans-serif;
  color: #495263;
  padding-bottom: 10px;
  border-bottom: 3px solid #dde1ec;
  margin-bottom: 30px;
}

.contact-content .phone-control {
  margin-bottom: 30px;
}

.contact-content .phone-control li {
  position: relative;
  padding-left: 35px;
  font: 18px/22px "Gibson-Regular", sans-serif;
  color: #353f4e;
}

.contact-content .phone-control li + li {
  margin-top: 20px;
}

.contact-content .phone-control li .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #353f4e;
  border-radius: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
}

.contact-content .social {
  margin-bottom: 30px;
}

.contact-content .social li {
  position: relative;
  padding-left: 35px;
  font: 18px/22px "Gibson-Regular", sans-serif;
  color: #808080;
}

.contact-content .social li + li {
  margin-top: 20px;
}

.contact-content .social li span {
  color: #353f4e;
}

.contact-content .social li .icon {
  position: absolute;
  left: 0;
  top: 0;
}

.contact-content .social li .icon .fa-facebook-square {
  color: #1976d2;
  font-size: 22px;
}

.contact-content .social li .icon .fa-twitter {
  color: #1da1f2;
  font-size: 22px;
}

.contact-content .zones {
  margin-bottom: 30px;
}

.contact-content .zones li {
  position: relative;
  padding-left: 100px;
}

.contact-content .zones li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 64px;
  color: #DF040B;
}

.contact-content .zones li p {
  font: 14px/16px "Gibson-Regular", sans-serif;
  color: #808080;
}

.contact-content .zones li p.title {
  font-size: 18px;
  line-height: 21px;
  color: #495263;
  margin-bottom: 0;
}

.contact-content .btn-link {
  background: #e4e8f1;
  border-radius: 15px;
  position: relative;
  color: #353f4e;
  font: 18px/50px "Gibson-Regular", sans-serif;
  text-decoration: none;
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}

.contact-content .btn-link .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 15px;
  color: #DF040B;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  margin-right: 14px;
}

.contact-content .btn-link .icon i {
  vertical-align: middle;
}

@media (max-width: 767px) {
  .contact-wrapp {
    padding: 23px 20px;
  }
  .contact-content .zones li {
    padding-left: 50px;
  }
  .contact-content .zones li .icon {
    font-size: 30px;
  }
}

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

.login-wrapp .page-title {
  text-align: center;
}

.login-wrapp .page-title h1 {
  font: 22px "core_sans_a_65_boldregular", sans-serif;
  color: #353F4E;
}

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

.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: #F2F3F7;
  height: 187px;
  border-radius: 20px;
}

.login-block .btn-login .icon {
  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;
  width: 66px;
  height: 66px;
  background: #ffffff;
  border-radius: 15px;
  margin-bottom: 15px;
  -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);
}

.login-block .btn-login p {
  font: 16px "core_sans_a_35_lightregular", sans-serif;
  color: #353F4E;
  margin: 0;
}

.login-box {
  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;
}

.login-box .image {
  width: 100%;
  max-width: 410px;
}

.login-box .image img {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.login-box .login {
  width: 100%;
  padding: 30px 62px;
  text-align: center;
}

.login-box .login h3 {
  font: 28px/1 "aileronbold", sans-serif;
  color: #495263;
  margin-bottom: 50px;
}

.login-box .login p {
  font: 16px/1 "aileronregular", sans-serif;
  color: #353F4E;
}

.login-box .login p.divider {
  margin-top: 40px;
  position: relative;
}

.login-box .login p.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #E6E6E6;
}

.login-box .login p.divider span {
  background: #ffffff;
  padding: 0 12px;
  position: relative;
}

.login-box .login .button {
  margin-top: 20px;
}

.login-box .login .button .btn {
  border-radius: 10px;
  height: 42px;
  font: 16px/1.8 "aileronbold", sans-serif;
  color: #ffffff;
}

.login-box .login .button .btn i {
  margin-right: 6px;
}

.login-box .login .button .btn.btn-facebook {
  background: #2D88FF;
}

.login-box .login .button .btn.btn-googleplus {
  background: #EA0000;
}

.login-box .login .button .btn.btn-sms {
  background: #353F4E;
}

.login-box .login-codigo {
  width: 100%;
  padding: 30px 62px;
}

.login-box .login-codigo h3 {
  font: 28px/1 "aileronbold", sans-serif;
  color: #495263;
  margin-bottom: 30px;
  text-align: center;
}

.login-box .login-codigo p {
  font: 16px/1 "aileronbold", sans-serif;
  color: #495263;
}

.login-box .login-codigo .phone-number {
  text-align: center;
  border-top: 1px solid #E6E6E6;
  padding-top: 30px;
  padding-bottom: 30px;
}

.login-box .login-codigo .phone-number p {
  font: 14px/1 "aileronregular", sans-serif;
  color: #353F4E;
}

.login-box .login-codigo .phone-number p.number {
  font-size: 24px;
}

.login-box .login-codigo .phone-number p a {
  color: #EA0000;
  text-decoration: underline;
}

.login-box .login-codigo .verification-code {
  border-top: 1px solid #E6E6E6;
  padding-top: 30px;
}

.login-box .login-codigo .verification-code .form-control {
  height: 64px;
  background: #F2F2F2;
  border-radius: 10px;
  font: 38px "aileronregular", sans-serif;
  color: #353F4E;
  text-align: center;
  border: 0;
}

.login-box .login-codigo .verification-code .btn-enter {
  height: 42px;
  background: #EA0000;
  color: #ffffff;
  font: 16px/1 "aileronbold", sans-serif;
  border-radius: 10px;
}

.login-celular h3 {
  font: 28px/1 "aileronbold", sans-serif;
  color: #495263;
  margin-bottom: 30px;
  text-align: center;
}

.login-celular p {
  font: 16px/1 "aileronbold", sans-serif;
  color: #495263;
}

.login-celular .phone-number {
  text-align: center;
  border-top: 1px solid #E6E6E6;
  padding-top: 30px;
  padding-bottom: 30px;
}

.login-celular .phone-number p {
  font: 14px/1 "aileronregular", sans-serif;
  color: #353F4E;
}

.login-celular .phone-number p.number {
  font-size: 24px;
}

.login-celular .phone-number p a {
  color: #EA0000;
  text-decoration: underline;
}

.login-celular .verification-code {
  border-top: 1px solid #E6E6E6;
  padding-top: 30px;
}

.login-celular .verification-code .form-control {
  height: 64px;
  background: #F2F2F2;
  border-radius: 10px;
  font: 38px "aileronregular", sans-serif;
  color: #353F4E;
  text-align: center;
  border: 0;
}

.login-celular .verification-code .btn-send {
  height: 42px;
  background: #353F4E;
  color: #ffffff;
  font: 16px/1 "aileronbold", sans-serif;
  border-radius: 10px;
}

.login-celular .verification-code .btn-send i {
  margin-right: 8px;
}

.login-celular .verification-code .btn-send:hover {
  background: #EA0000;
}

.shopping-cart {
  background: #FAF9F7;
}

.table-cart .table thead th {
  font: 12px "aileronbold", sans-serif;
  color: #495263;
  background: #F2F5F7;
  border: 0;
}

.table-cart .table thead th:first-child {
  border-radius: 10px 0 0 0;
}

.table-cart .table thead th:last-child {
  border-radius: 0 10px 0 0;
}

.table-cart .table tbody tr:first-child td {
  border-top: 0;
}

.table-cart .table tbody tr td {
  background: #ffffff;
  font: 14px "aileronregular", sans-serif;
  color: #495263;
  padding: 1.5rem .75rem;
}

.table-cart .table tbody tr td p {
  margin-bottom: 10px;
}

.table-cart .table tbody tr td a {
  font: 14px "aileronregular", sans-serif;
  color: #495263;
}

.table-cart .table .cart-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.table-cart .table .cart-quantity .btn-quantity {
  width: 33px;
  height: 32px;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  font-size: 10px;
  line-height: 30px;
  padding: 0;
  margin-right: 6px;
}

.table-cart .table .cart-quantity .form-control {
  width: 42px;
  height: 32px;
  border: 2px solid #E6E6E6;
  border-radius: 10px;
  font: 13px "aileronbold", sans-serif;
  text-align: center;
  margin-right: 6px;
  padding: 0;
}

.table-cart .table .price {
  line-height: 32px;
}

.table-cart .table .btn-remove {
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 100%;
  background: #f2f2f2;
  font-size: 10px;
  line-height: 18px;
  color: #495263;
  vertical-align: top;
  margin-top: 6px;
  margin-left: 6px;
}

.table-cart .table .btn-remove:hover {
  background: #EA0000;
  color: #ffffff;
}

.sidebar-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 15px;
}

.sidebar-box h3 {
  font: 16px/1 "aileronbold", sans-serif;
  color: #495263;
}

.sidebar-box .shopping-subtotal p {
  margin-bottom: 10px;
  font: 15px/1 "aileronregular", sans-serif;
  color: #495263;
}

.sidebar-box .shopping-subtotal p span {
  float: right;
}

.sidebar-box .shopping-total {
  padding-top: 15px;
}

.sidebar-box .shopping-total p {
  margin-bottom: 20px;
  font: 15px/1 "aileronbold", sans-serif;
  color: #495263;
}

.sidebar-box .shopping-total p span {
  float: right;
}

.sidebar-box .btn-continue {
  height: 32px;
  background: #EA0000;
  border-radius: 10px;
  font: 14px/1 "aileronbold", sans-serif;
  color: #ffffff;
}

.sidebar-box .btn-continue:hover {
  background: #FFDC19;
  color: #000000;
}

.cupon-form .form-control {
  height: 32px;
  border-radius: 6px;
}

.cupon-form .btn {
  height: 32px;
  background: #353F4E;
  border: 0;
  border-radius: 6px;
  font: 13px "aileronbold", sans-serif;
  color: #ffffff;
  padding: 0 20px;
}

.card-data .card {
  border-radius: 10px;
  border: 0;
}

.card-data .card .card-header {
  background: #F7F7F7;
  font: 16px "aileronbold", sans-serif;
  color: #495263;
  border: 0;
}

.payment-form legend {
  font: 15px "aileronbold", sans-serif;
  color: #353F4E;
  margin-bottom: 20px;
}

.payment-form .form-control {
  height: 32px;
  border-radius: 5px;
  border-color: #CCCFD1;
  font: 12px "aileronregular", sans-serif;
  color: #232B3B;
}

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

.payment-form .button .btn-finalize {
  width: 124px;
  height: 35px;
  font: 13px "aileronbold", sans-serif;
  background: #EA0000;
  color: #ffffff;
  border-radius: 5px;
  line-height: 20px;
}

.payment-form .button .btn-finalize:hover {
  background: #FFDC19;
  color: #000000;
}

.method-box {
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.method-box ul {
  margin: 0;
}

.method-box ul li {
  padding: 10px 10px;
  font: 13px/18px "aileronregular", sans-serif;
  color: #495263;
}

.method-box ul li:not(:first-child) {
  border-top: 1px solid #E6E6E6;
}

.datacard-box {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 24px;
}

.payment-detail .table tbody td {
  font: 15px "aileronregular", sans-serif;
  color: #495263;
  border: 0;
  padding: .5rem 0;
}

.payment-detail .table tbody td.price {
  text-align: right;
}

.payment-detail .table tfoot td {
  font: 15px "aileronbold", sans-serif;
  color: #495263;
  border-color: #E6E6E6;
  padding: 1rem 0;
}

.payment-detail .table tfoot td.price {
  text-align: right;
}

.shipping-address .address-box {
  padding: 25px 27px;
  background: #F2F5F7;
  border-radius: 10px;
  margin-bottom: 20px;
}

.shipping-address .address-box p {
  margin: 0;
}

.shipping-address .address-box .btn-edit {
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 100%;
  padding: 0;
  font-size: 12px;
  line-height: 26px;
}

.shipping-address .address-box .btn-edit:hover {
  background-color: #FFDC19;
  color: #000000;
}

.shipping-address .buttons {
  text-align: right;
  padding-top: 16px;
}

.shipping-address .buttons .btn {
  height: 32px;
  width: 168px;
  font: 13px/18px "aileronbold", sans-serif;
  border-radius: 10px;
}

.shipping-address .buttons .btn + .btn {
  margin-left: 10px;
}

.shipping-address .buttons .btn.btn-red {
  background: #EA0000;
  color: #ffffff;
}

.shipping-address .buttons .btn.btn-red:hover {
  background: #FFDC19;
  color: #000000;
}

.shipping-address .buttons .btn.btn-red-outline {
  background: #ffffff;
  border: 1px solid #EA0000;
  color: #EA0000;
}

.shipping-address .buttons .btn.btn-red-outline:hover {
  background: #EA0000;
  color: #ffffff;
}

.payment-summary .table tbody td {
  font: 15px "aileronregular", sans-serif;
  color: #495263;
  border: 0;
  padding: .75rem .5rem;
}

.payment-summary .table tbody td img {
  max-width: 54px;
}

.payment-summary .table tbody td p {
  margin-bottom: 10px;
  font: 15px "aileronregular", sans-serif;
  color: #495263;
}

.payment-summary .table tbody td p.price {
  color: #5F6A82;
  font-size: 13px;
}

.payment-summary .table tbody td.quantity {
  text-align: right;
  font-family: "aileronbold", sans-serif;
}

.payment-summary .table tfoot td {
  font: 15px "aileronbold", sans-serif;
  color: #495263;
  border-color: #E6E6E6;
}

.payment-summary .table tfoot td.price {
  text-align: right;
}

.payment-program {
  padding: 15px 0;
}

.payment-program .program-box {
  background: #F2F5F7;
  border-radius: 10px;
  padding: 22px 20px;
  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;
  margin-bottom: 20px;
}

.payment-program .program-box p {
  font: 15px "aileronregular", sans-serif;
  color: #495263;
  margin: 0;
}

.payment-program .program-box .radio {
  background: #ffffff;
  padding: 5px 15px;
  border-radius: 10px;
}

.payment-program .program-box .radio label {
  margin: 0;
}

.payment-program .program-box .radio label:after, .payment-program .program-box .radio label:before {
  margin-left: -17px;
}

.payment-program .button {
  text-align: right;
}

.payment-program .button .btn-next {
  width: 124px;
  height: 35px;
  font: 13px aileronbold,sans-serif;
  background: #ea0000;
  color: #fff;
  border-radius: 5px;
  line-height: 20px;
}

.payment-program .button .btn-next:hover {
  background: #FFDC19;
  color: #000000;
}

.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) {
  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) {
  #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;
  }
  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;
  }
}

.register-heading {
  background: #ffffff;
  position: relative;
}

.register-heading::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background: #ff3645;
}

.register-content {
  padding-top: 54px;
}

.register-features {
  background: #495263;
  border-radius: 26px;
  padding: 25px;
}

.register-features ul li {
  position: relative;
  padding-left: 60px;
  font: 18px/24px "Gibson-Light", sans-serif;
  color: #ffffff;
  margin-bottom: 35px;
}

.register-features ul li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #ffff00;
  font-size: 43px;
}

.register-form .form-control {
  height: 38px;
  font: 16px "Gibson-Regular", sans-serif;
  border: 2px solid #dbdce0;
  border-radius: 6px;
}

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

.register-form .nice-select {
  font: 16px/22px "Gibson-Regular", sans-serif;
  width: 100%;
  padding-left: .75rem;
}

.register-form .nice-select .list {
  width: 100%;
}

.register-form .bluelight-box {
  background: #f2f3f7;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.register-form .white-box {
  background: #ffffff;
  border: 1px solid #e4e2e2;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.register-form .white-box label {
  font: 16px/32px "Gibson-Regular", sans-serif;
  color: #495263;
  margin: 0;
}

.register-form legend {
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #495263;
}

.register-form .info {
  font: 13px/16px "Gibson-Regular", sans-serif;
  color: #495263;
  margin: 0;
}

.register-form .button {
  text-align: right;
}

.register-form .btn-verify {
  height: 38px;
  line-height: 24px;
}

.register-form .label {
  position: relative;
  padding-left: 48px;
  font: 16px/38px "Gibson-Regular", sans-serif;
  color: #495263;
  margin: 0;
}

.register-form .label .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  background: #ffffff;
  text-align: center;
  line-height: 38px;
  font-size: 20px;
  color: #495263;
}

.register-box .nav-tabs {
  padding: 0 20px;
  border: 0;
}

.register-box .nav-tabs .nav-link {
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  font: 16px "Gibson-SemiBold", sans-serif;
  color: #495263;
  background: #e4e8f1;
  border-color: transparent;
  border-bottom: 0;
  padding: .5rem 2rem;
}

.register-box .nav-tabs .nav-link.active {
  background: #ffffff;
  border-color: #e4e2e2;
}

.register-box .tab-content {
  padding: 36px 32px;
  border: 1px solid #e4e2e2;
  border-radius: 16px;
  background: #ffffff;
}

.box-content {
  padding: 36px 32px;
  border: 1px solid #e4e2e2;
  border-radius: 16px;
  background: #ffffff;
}

.box-content h2 {
  font: 26px/32px "Gibson-SemiBold", sans-serif;
  color: #495263;
  margin-bottom: 30px;
}

.upload-box input[type="file"] {
  display: none;
}

.upload-box .form-control {
  height: 32px;
  border: 0;
  background: #ffffff;
  color: #495263;
}

.upload-box .btn-upload-file {
  height: 32px;
  font: 16px/18px "Gibson-SemiBold", sans-serif;
  border: 2px solid #e4e2e2;
  border-radius: 10px;
  background: #ffffff;
  color: #495263;
  position: relative;
}

@media (max-width: 767px) {
  .register-heading::before {
    top: inherit;
    bottom: 0;
    right: 0;
    height: 50%;
    width: 100%;
  }
  .register-box {
    margin-top: 20px;
  }
}

@media (max-width: 425px) {
  .btn-send{
		width:100%;
		margin-bottom:0.5em;
	}
	
	.rubros-bar-items .carousel-wrapp{
		padding-left: 0!important;
    	padding-right: 0!important;
	}
	
	.buttonPlusItems,.buttonMinusItems{
		display:none;
	}
	
	.header-control .address, .header-control-mobile .address{
		display: inherit;
	}
	
	.header-control div.address #lbl_direccion_entrega{
		-webkit-line-clamp: 1;
	}
}



/* ************* STYLES PARA FOOTER */

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

}

.cont-footer-page a{
    color: #FFFFFF;
	/*font-size:14px;*/
}
    
.footer_final_info hr{
	margin:0;
	padding-bottom:1em;
	max-width:100%;
	border-color:#929EAF;
}

.footer_final_info p{
	/*margin:0;*/
	/*padding:0;*/
	font-family: "Gibson-Regular", sans-serif;
	font-size: 14px;
	font-weight: 300;
}


.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{
	color:#FFFFFF;
}

.footer_icons_text_info{
	display:grid;
}

.card_apps_footer a{
	margin:0;
	
	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;
}

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


@media(max-width: 425px){
	.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;
	}

	.container-page-footer-info {
	    text-align: center;
	}
	.container-page-footer-info h6 {
	    border-bottom: 1px solid #dedede;
	    padding-bottom: 1em;
	}
	
	.container-page-footer-info .list {
	    display: none;
	}
	
	._legales {
	    max-width: 100%!important;
	}
	
	.lits-apps-f {
	    justify-content: center;
	}
}

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


@media (max-width: 768px) {
	
	._list_apps {
    display: grid!important;
    justify-content: center;
}
	
	.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;
	}
	
	
}

.page-title h1{
	text-align:center;
}

/* *************** CONTACTO ************** */


.contact-box {
	background: #f3f3f4;
	padding: 20px;
	border-radius: 10px;
	min-height: 186px;
	margin-bottom: 26px
}

.contact-box h3 {
	font: 18px Gibson-Regular, sans-serif;
	color: #272d4c;
	text-align: center;
	margin-bottom: 30px
}

.contact-box .social-networks {
	list-style-type: none;
	padding: 0;
	text-align: center;
	display: flex;
    justify-content: 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: #fff;
	text-align: center;
	border-radius: 100%
}

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

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

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

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

.contact-box .contact-info p {
	font: 24px Gibson-Regular, sans-serif;
	color: #272d4c;
	margin: 0
}

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

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

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

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

.contact-box-outline p {
	font: 18px Gibson-Regular, sans-serif;
	color: #272d4c;
	margin: 0
}


/* # REGISTRO COMERCIO # */

.destination-img-div {
  display: grid;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-content: center;
}

.destiny-box, .destiny-box .image {
  position: relative;
}

.destiny-box {
  max-width: 474px;
  margin-bottom: 20px;
}

.destiny-box .image img {
  border-radius: 10px;
}

.destiny-box img {
  max-width: 100%;
  height: auto;
}

.reservation-form {
  max-width: 570px;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 25px 30px 35px;
  margin-left: auto;
}

.reservation-form .button {
  padding-top: 26px;
}

.reservation-form .form-label {
  font: 400 11px/13px "Gibson-SemiBold", sans-serif;
  color: #b4b4b4;
  /*margin-bottom: 12px;*/
}

.reservation-form legend {
  font: 700 13px/14px "Gibson-SemiBold", sans-serif;
  /*color: #0096cc;*/
  margin-bottom: 5px;
}

.reservation-form h3 {
  font: 700 18px/22px "Gibson-SemiBold", sans-serif;
  color: #495263;
  text-align: center;
  margin-bottom: 30px;
}

.reservation-form .button .btn:hover {
  background: #eb6725;
}


.reservation-form .button .btn {
  /*background: #0096cc;*/
  color: #fff;
  font: 14px/22px "Gibson-SemiBold", sans-serif;
  border-radius: 5px;
  padding: .375rem 1.1rem;
}

.destiny-box .image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 77px;
  background: #000;
  background: -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.5)));
  background: linear-gradient(180deg,transparent,rgba(0,0,0,.5));
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#modalAddCartLabel{
	width:100%;
	text-align:center;
}

@media (min-width: 576px){
.address-search-form-style .modal-body {
    padding: 0 50px;
}
}

.carousel-rubros-items .btn{
	color:#000;
	background: transparent;
    text-align: center;
    text-decoration: none;
    padding: 3px 6px;
    border-radius: 10px;
    font: 13px/14px "Gibson-SemiBold", sans-serif;
}

.result-rubros-list .buttonMinusItems{
	position: absolute;
    left: 7.5rem;
    /*top: 25%;*/
    width: 28px;
    height: 28px;
    background: #EDEDED;
    border: 1px solid #EDEDED;
    border-radius: 15%;
    color: #000;
    line-height: 26px;
    padding: 0;
}

.result-rubros-list .buttonPlusItems{
	position: absolute;
    right: 15rem;
    top: 9.75rem;
    width: 28px;
    height: 28px;
    background: #EDEDED;
    border: 1px solid #EDEDED;
    border-radius: 15%;
    color: #000;
    line-height: 26px;
    padding: 0;
}

.rubros-bar-items .carousel-wrapp{
	padding-left: 50px;
	padding-right: 70px;
}


.almacen-result-item__bottom .carousel-productos img{
	width: 100%!important;
    /*height: 224px;*/
    object-fit: cover;
    border-radius: 10px;
}

.locations-map {
    margin-top: 0!important;
}

#confirmar_direccion_delivery .btn-trash {
    margin-top: 0!important;
}
/********************** THEME CUSTOM ************************/

.header-fixed-home-parent{
	position: fixed;
    z-index: 999;
    top: 6.4em;
    right: 0;
    left: 0;
}

.header-fixed-home-parent .carousel-wrapp.rubros-bar__carousel{
	max-width: 100%;
}

@media (max-width: 425px) {
	.header-fixed-home-parent{
	    top: 5em;
	}
}


.container-productos-recomendados .owl-carousel .owl-item img{
	height:100%;
}

.container-productos-recomendados{
	background: #F2F3F7;
}

.container-productos-recomendados .carousel-category .btn-category p{
	color:#000;
}

.container-productos-recomendados .carousel-category .btn-category p{
	margin-bottom: 0;
}

.container-productos-recomendados .precio{
	color:#47525d!important;
}

.container-productos-recomendados .carousel-wrapp .btn-minus {
    position: absolute;
    left: -2em;
    top: 60px;
    width: 28px;
    height: 28px;
    border: 1px solid #482464;
    border-radius: 100%;
    color: #ffffff;
    line-height: 26px;
    padding: 0;
    background: #482464;
}

.container-productos-recomendados .carousel-wrapp .btn-plus {
    position: absolute;
    right: -2em;
    top: 60px;
    width: 28px;
    height: 28px;
    border: 1px solid #482464;
    border-radius: 100%;
    color: #ffffff;
    line-height: 26px;
    padding: 0;
    background: #482464;
}

.container-productos-recomendados .carousel-wrapp{
	    padding-right: 0;
}

.container-productos-recomendados .img-rubro .img-rubros{
	border-radius:0;
}


.container-productos-recomendados .carousel-wrapp .btn-plus-add {
    position: absolute;
    right: 14px;
    top: 60px;
    width: 20px;
    height: 20px;
    border: 1px solid #029AE9;
    border-radius: 100%;
    color: #ffffff;
    line-height: 20px;
    padding: 0;
    font-size: .9em;
    background: #029AE9;
}