@keyframes isCompany {
  from {
    background-color: orange;
  }
  to {
    background-color: transparent;
  }
}

@keyframes slideDown {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 200px;
    opacity: 1;
  }
}

@keyframes growUp {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  40% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    opacity: 1;
    left: 70%;
  }
  10% {
    left: -5%;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@keyframes shake {
  0% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(5px);
  }
  40% {
    transform: translateY(-5px);
  }
  65% {
    transform: translateY(5px);
  }
  80% {
    transform: translateY(-5px);
  }
  950% {
    transform: translateY(5px);
  }
}

body .none, .fa.none {
  display: none;
}

.none.opened {
  display: block;
}

body {
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  background: #eee;
}

html,
body {
  height: 100%;
}

.wrap {
  min-height: 100%;
  height: auto;
  margin: 0 auto -60px;
  padding: 0 0 60px;
}

.wrap > .container {
  padding: 20px 15px 20px;
}

.jumbotron {
  text-align: center;
  background-color: transparent;
}

.jumbotron .btn {
  font-size: 21px;
  padding: 14px 24px;
}

.not-set {
  color: #c55;
  font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  padding-left: 5px;
}

a.asc:after {
  content: "\f15d";
}

a.desc:after {
  content: "\f881";
}

.sort-numerical a.asc:after {
  content: "\f162";
}

.sort-numerical a.desc:after {
  content: "\f886";
}

.sort-ordinal a.asc:after {
  content: "\f160";
}

.sort-ordinal a.desc:after {
  content: "\f884";
}

.grid-view td {
  white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
  min-width: 50px;
}

.hint-block {
  display: block;
  margin-top: 5px;
  color: #999;
}

.error-summary {
  color: #a94442;
  background: #fdf7f7;
  border-left: 3px solid #eed3d7;
  padding: 10px 20px;
  margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
  padding: 15px;
  border: none;
}

@media (max-width: 767px) {
  .nav li > form > button.logout {
    display: block;
    text-align: left;
    width: 100%;
    padding: 10px 15px;
  }
}

.nav li > form > button.logout:focus, .nav li > form > button.logout:hover {
  text-decoration: none;
}

.nav li > form > button.logout :focus {
  outline: none;
}

.order-resume-discount {
  display: block;
  color: red;
  font-size: 10px;
}

.navbar-toggle {
  background-color: #F8796C;
}

.navbar-toggle .icon-bar {
  background-color: white;
}

.site-error {
  text-align: center;
}

.site-error .statusCode {
  color: #F8796C;
  font-size: 160px;
  font-weight: bold;
}

.site-error .contact a {
  color: #F8796C;
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-weight: 300;
}

input[type="text"], input[type="password"] {
  border: none;
  border-bottom: 1px solid #a3a3a3;
  border-radius: 0;
  box-shadow: none !important;
}

.breadcrumb-wrapper:not(:empty) {
  min-height: 33px;
  text-align: left;
  border-top: 1px solid #ddd;
}

.breadcrumb-wrapper:not(:empty) .breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
}

.modal-body h1 {
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.modal-body h1 i {
  color: #F8796C;
}

.modal-body h2 {
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.modal-body h2 i {
  color: #F8796C;
}

.modal-body h3 {
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.modal-body h3 i {
  color: #F8796C;
}

.modal-body h4 {
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.modal-body h4 i {
  color: #F8796C;
}

.modal-body h5 {
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.modal-body h5 i {
  color: #F8796C;
}

.modal-body h6 {
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.modal-body h6 i {
  color: #F8796C;
}

.main-content {
  position: relative;
}

/* button group */
#configurator > .need-file {
  background-color: #F8796C;
  text-align: center;
  color: white;
  padding: 5px 20px 5px 10px;
}

#configurator label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#configurator label.vert-cent {
  position: relative;
}

#configurator label.vert-cent input[type="checkbox"], #configurator label.vert-cent input[type="radio"] {
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
}

#configurator input:disabled:disabled, #configurator option:disabled:disabled {
  display: none;
}

#configurator input:disabled:disabled + label, #configurator option:disabled:disabled + label {
  display: none;
}

.simpleRow {
  margin-bottom: 10px;
}

.simpleRow label {
  line-height: 34px;
}

.navbar a {
  color: #333;
}

header {
  background-color: white;
  vertical-align: top;
}

header .right-actions {
  margin-top: 10px;
}

header .btn {
  display: inline-block;
  font-size: inherit;
  padding: 5px 12px;
  border-radius: 30px;
}

header .btn-default {
  border-color: #ddd;
}

header .dropdown-menu {
  padding: 20px;
  border-radius: 3px;
  border: none;
}

header .dropdown-menu li {
  padding: 5px 0;
}

header .dropdown-menu a {
  padding: 5px 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 30px;
}

header .dropdown-menu a:hover {
  border-color: #ddd;
}

header .btn-group .btn {
  font-size: inherit;
  padding: 5px;
}

header .btn-group .btn-default {
  border-color: #ddd;
}

header .btn-group .btn:first-child {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-left: 15px;
  padding-right: 10px;
}

header .btn-group .btn:last-child:not(.dropdown-menu) {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

header .btn-group .btn + .dropdown-toggle {
  padding-right: 10px;
}

header .btn-group .dropdown-toggle:not(:first-child) {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

header .dropdown-toggle {
  margin-top: 0px !important;
  align-items: center;
}

header .dropdown-toggle:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  border: none;
  line-height: 1;
  vertical-align: middle;
  color: #696969;
  font-size: 0.75rem;
}

header .dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0px;
  border-radius: 0;
}

header .dropdown-menu li {
  padding: 0px;
}

header .dropdown-menu a {
  padding: 5px 10px;
  text-align: left;
  border: none;
  border-radius: 0px;
  width: 100%;
}

header .dropdown-menu a:hover {
  color: #F8796C;
}

.logo {
  display: inline-block;
  padding: 5px 20px;
  text-transform: lowercase;
  font-weight: 700;
  letter-spacing: -2px;
  font-size: 28px;
  color: #F8796C;
  margin-top: 10px;
  margin-bottom: 15px;
}

.logo:hover {
  animation: shake;
  color: #F8796C;
  animation-iteration-count: 1;
  animation-duration: .2s;
  text-decoration: none;
}

.logo span:last-child {
  color: #2d2d2d;
  font-size: 16px;
  text-transform: uppercase;
}

@media screen and (max-width: 426px) {
  .logo {
    float: left;
  }
}

@media screen and (min-width: 768px) {
  .main-bigmenu > li > a {
    padding: 18px 10px !important;
    font-weight: 500 !important;
  }
  .main-bigmenu > li > a:hover {
    background-color: #F8796C !important;
  }
}

.bigmenu .topCartButton a {
  background-color: #F8796C;
  color: white;
}

.sac-top, .login-top {
  color: #2d2d2d;
  display: inline-block;
  padding: 5px 10px;
  vertical-align: middle;
}

.sac-top i, .login-top i {
  margin-right: 10px;
}

.login-top {
  border: 1px solid #ddd;
  border-radius: 30px;
}

nav .topCartButton {
  border: 1px solid #F8796C;
  border-radius: 6px !important;
  overflow: hidden;
  background-color: #F8796C;
}

nav .topCartButton a {
  color: white;
}

.btn.block {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 4px;
}

.btn-xenon, .btn-xenon-alt {
  background-color: #F8796C;
  color: white;
  border-bottom: 4px solid #f2210c;
}

.btn-xenon.btn-xs, .btn-xs.btn-xenon-alt {
  border-bottom-width: 1px;
}

.btn-xenon i, .btn-xenon-alt i {
  padding-right: 8px;
  margin-right: 8px;
  border-right: 1px solid white;
}

.btn-xenon:hover, .btn-xenon-alt:hover {
  color: white;
  transform-origin: bottom;
  background-color: #f98f84;
}

.btn-xenon.disabled, .disabled.btn-xenon-alt {
  background-color: #b7c0ca;
  border-bottom-color: #333;
}

.btn-xenon.disabled i, .disabled.btn-xenon-alt i {
  border-right-color: #999;
}

.btn-xenon-alt {
  border-bottom-color: #3be4f6;
  background-color: #6cebf8;
  color: #09b1c2;
}

.btn-xenon-alt:hover {
  background-color: #84eef9;
  color: #0cddf2;
}

.btn-xenon-alt i {
  border-right-color: #0cddf2;
}

.xenon-row {
  display: flex;
}

@media screen and (max-width: 991px) {
  .xenon-row {
    flex-flow: column;
  }
  .xenon-row [class*="xenon-"] {
    width: 100%;
  }
}

.xenon-col, .xenon-1, .xenon-2, .xenon-3, .xenon-4, .xenon-5, .xenon-6, .xenon-7, .xenon-8, .xenon-9, .xenon-10, .xenon-11, .xenon-12 {
  align-self: center;
}

.xenon-1 {
  width: 8.33333%;
}

.xenon-2 {
  width: 16.66667%;
}

.xenon-3 {
  width: 25%;
}

.xenon-4 {
  width: 33.33333%;
}

.xenon-5 {
  width: 41.66667%;
}

.xenon-6 {
  width: 50%;
}

.xenon-7 {
  width: 58.33333%;
}

.xenon-8 {
  width: 66.66667%;
}

.xenon-9 {
  width: 75%;
}

.xenon-10 {
  width: 83.33333%;
}

.xenon-11 {
  width: 91.66667%;
}

.xenon-12 {
  width: 100%;
}

.panel-xenon {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.17);
}

.panel-xenon .panel-heading {
  border-bottom: 1px solid #eee;
}

.panel-xenon .panel-body .description {
  color: #6d6d6d;
}

#configurator .panel-xenon .panel-footer {
  min-height: 40px;
}

.panel-xenon .panel-footer .prices {
  min-height: 42px;
  font-weight: bold;
  color: #F8796C;
}

.panel-xenon .info-icon {
  color: #56a3ff;
}

.panel-xenon .info-icon:hover {
  cursor: pointer;
}

.panel-xenon .info-icon.opened {
  color: #ddd;
}

.panel-xenon .value-description {
  background-color: #eee;
  padding: 10px;
  color: #5d5c5c;
}

.panel-xenon .value-description .preview a {
  width: 40px;
  height: 40px;
}

.panel-xenon .value-description .title {
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.panel-xenon .value-description.opened {
  display: block;
  animation: slideDown;
  animation-duration: .7s;
  animation-timing-function: ease;
  overflow: hidden;
}

.panel-xenon .feature-locked {
  padding: 6px 12px !important;
  width: 100%;
}

.panel-xenon .upload-file {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
  clear: both;
}

.panel-xenon .upload-file i {
  font-size: 6rem;
  border: 1px solid #737373;
  margin: auto;
  margin-bottom: 5px;
  padding: 15px;
  width: 150px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel-xenon .clean-file {
  float: right;
  border: none;
  background: transparent;
}

.panel-xenon.collapsed .need-file {
  background-color: #F8796C;
  text-align: center;
  color: white;
  display: inline-block;
  padding: 5px 20px 5px 10px;
  border-bottom-right-radius: 10px;
}

.panel-xenon.collapsed .feature-image {
  width: 50px;
  display: block;
  margin: auto;
  height: auto;
  border-radius: 100%;
}

.panel-xenon.collapsed .feature-info {
  padding: 15px;
}

.panel-xenon.collapsed .feature-info.opened {
  display: block;
  animation: slideDown;
  animation-duration: .7s;
  animation-timing-function: ease;
  overflow: hidden;
}

.panel-xenon.collapsed .panel-body {
  border-bottom: 1px solid #f0f0f0 !important;
}

.panel-xenon.collapsed .panel-body:not(.view6) {
  padding: 30px 40px;
}

.panel-xenon.collapsed .panel-body:last-child {
  border-bottom: none !important;
}

.panel-xenon.collapsed .panel-body > .row + .row {
  margin-top: 10px;
}

.panel-xenon.collapsed label.feature {
  color: #5d5c5c;
}

.panel-xenon.collapsed .form-control {
  line-height: 1em;
  padding: 0 12px;
  height: 28px;
  box-shadow: none;
}

.floatPanel {
  background: white;
}

.floatPanel .h3 {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  color: #eee;
}

/* Inquiry Panel */
.inquiry.loading div {
  opacity: 0.8;
}

.inquiry.loading .loader {
  display: block !important;
}

.inquiry .resume {
  position: relative;
}

.inquiry .resume .loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 50px;
}

.inquiry .productName {
  font-size: 14px;
  font-weight: bold;
}

.inquiry .listCaract .valueResume {
  display: block;
  font-size: 10px;
  padding: 2px 3px;
  color: #666;
}

.inquiry .listCaract span {
  font-weight: bold;
}

.inquiry .totalResume {
  text-align: right;
}

.inquiry .totalResume #cTaxQty {
  width: initial;
  margin-left: 0;
}

/*product Banner*/
.productIntro {
  padding: 0 15px;
  background: white;
}

.productIntro .description {
  text-align: justify;
  padding: 10px 10px 20px 10px;
}

.productIntro .bx-wrapper .bx-controls-direction a {
  z-index: 1040 !important;
}

/* CSS for the options groups and container*/
.radioOptionsGroup div label, .checkboxOptionGroup div label {
  display: inline-block;
  padding: 5px 0px 5px 10px;
}

.radioOptionsGroup div:last-child label:last-child, .checkboxOptionGroup div:last-child label:last-child {
  border-bottom: none;
}

.checkboxOptionGroup {
  padding-left: 10px;
}

.product-time-group ul {
  text-align: center;
  list-style: none;
  padding: 0;
}

.product-time-group ul li {
  display: inline-block;
}

.product-time-group ul li label {
  text-align: center;
  width: 90px;
  display: block;
  overflow: hidden;
  height: 109px;
  padding: 10px 0 0;
  margin: 10px;
  border: 1px solid #2d2d2d;
  color: #2d2d2d;
  position: relative;
}

.product-time-group ul li label:hover {
  cursor: pointer;
  background-color: #eee;
}

.product-time-group ul li input {
  display: none;
}

.product-time-group ul li input:checked + label {
  color: #F8796C;
}

.product-time-group ul li input:checked + label:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00c";
  position: absolute;
  color: white;
  top: 0;
  right: 0;
  background-color: #F8796C;
  padding: 4px;
}

.product-time-group .hint {
  text-align: right;
  font-size: 10px;
  color: #979797;
}

.product-time-group .weekday {
  font-size: 10px;
  display: block;
  text-transform: capitalize;
}

.product-time-group .day {
  font-size: 40px;
  line-height: 40px;
  display: block;
  font-weight: 100;
}

.product-time-group .month {
  display: block;
}

.product-time-group .name {
  background-color: #F8796C;
  display: block;
  width: 100%;
  margin-top: 5px;
  color: white;
  font-weight: normal;
  padding: 2px;
}

.image-wrapper, .colors-wrapper {
  padding: 0;
  margin: 0;
  list-style: none;
}

.image-wrapper .bx-viewport, .colors-wrapper .bx-viewport {
  margin: auto;
}

.image-wrapper .bx-controls-direction .bx-next, .image-wrapper .bx-controls-direction .bx-prev, .colors-wrapper .bx-controls-direction .bx-next, .colors-wrapper .bx-controls-direction .bx-prev {
  height: 100px;
  width: 20px;
  text-indent: 0 !important;
  background: transparent;
  transform: translateY(-50%);
  right: 10px;
  font-size: 34px;
  text-align: right;
}

.image-wrapper .bx-controls-direction .bx-next:after, .image-wrapper .bx-controls-direction .bx-prev:after, .colors-wrapper .bx-controls-direction .bx-next:after, .colors-wrapper .bx-controls-direction .bx-prev:after {
  position: absolute;
  padding: 10px;
  z-index: 999;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  top: 50%;
  transform: translateY(-50%);
  content: "\f105";
}

.image-wrapper .bx-controls-direction .bx-prev, .colors-wrapper .bx-controls-direction .bx-prev {
  text-align: left;
  right: auto;
}

.image-wrapper .bx-controls-direction .bx-prev:after, .colors-wrapper .bx-controls-direction .bx-prev:after {
  content: "\f104";
  left: -25px;
}

.image-wrapper > div, .colors-wrapper > div {
  text-align: center;
}

.image-wrapper .image, .colors-wrapper .image {
  width: 100%;
  height: 80px;
  min-width: 78px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.image-wrapper label, .colors-wrapper label {
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
}

.image-wrapper label:hover, .colors-wrapper label:hover {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.17);
}

.image-wrapper input, .colors-wrapper input {
  display: none;
}

.image-wrapper input:disabled + label, .colors-wrapper input:disabled + label {
  display: none;
}

.image-wrapper input:checked + label, .colors-wrapper input:checked + label {
  border: 1px solid #F8796C;
  background-color: #F8796C;
  color: white;
  position: relative;
}

.image-wrapper input:checked + label:after, .colors-wrapper input:checked + label:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00c";
  position: absolute;
  color: white;
  top: 0;
  right: 0;
  background-color: #F8796C;
  padding: 4px;
}

.color-filter {
  margin-bottom: 20px;
}

.color-filter input {
  border: 1px solid #ddd;
  border-radius: 30px;
  text-align: center;
}

.color-filter .disclaimer {
  font-size: 10px;
  color: #c9c9c9;
}

.pant-suggestion {
  padding: 6px;
  border-bottom: 1px solid #eee;
}

.pant-suggestion:hover {
  background: #eee;
}

.pant-suggestion span {
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

.colors-wrapper {
  /*Normal mode*/
  /* Bx mode*/
}

.colors-wrapper .show-all {
  margin: 10px;
}

.colors-wrapper .show-all.bx-disabled span:last-child {
  display: block;
}

.colors-wrapper .show-all.bx-disabled span:first-child {
  display: none;
}

.colors-wrapper > .color-selector .color-wrapper {
  max-width: 90px;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
  vertical-align: top;
}

.colors-wrapper input:checked + label {
  background: white;
  color: #F8796C;
}

.colors-wrapper .pant {
  font-size: 10px;
  display: block;
}

.colors-wrapper .color-sample {
  display: block;
  height: 70px;
  width: 70px;
  margin: 5px;
  border-radius: 100%;
  box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.55);
  border: 1px solid #eee;
}

.colors-wrapper .color-sample.image-sample {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*Bootstrap*/
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  background-color: #F8796C;
}

@media screen and (min-width: 768px) {
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.nav > li > a:hover, .nav > li > a:focus {
  color: #333;
}

.panel {
  border-radius: 0;
}

.microGallery {
  padding: 0;
  text-align: center;
}

.microGallery .preview {
  display: inline-block;
  padding: 5px;
  background: white;
  border: 1px solid #eee;
  margin: 3px;
}

.microGallery .preview a {
  display: block;
  height: 60px;
  width: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.option-value {
  vertical-align: middle;
}

.option-pic {
  padding: 8px;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
  position: relative;
}

.option-pic:hover .bigpic {
  z-index: 999;
  display: block;
}

.option-pic .bigpic {
  display: none;
  position: absolute;
  left: 150%;
  top: 50%;
  transform: translateY(-50%);
  height: 300px;
  width: 300px;
  padding: 10px;
  border: 1px solid #5e5e5e;
  background-position: center;
  background-size: contain;
  background-color: white;
  background-origin: content-box;
  background-repeat: no-repeat;
  box-shadow: -1px 2px 11px 0px rgba(0, 0, 0, 0.29);
}

.no-padding {
  padding: 0;
}

.bx-viewport ul {
  padding: 0;
  list-style: none;
}

.bx-viewport .bx-controls-direction img {
  visibility: hidden;
}

.bx-wrapper, .bx-viewport {
  margin-bottom: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none !important;
}

.small-cart i {
  color: #999;
  margin-right: 10px;
}

.well.white {
  background-color: white;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.17);
}

.well.white h1 {
  margin: 0;
}

.well.white h1 i {
  color: #F8796C;
}

.well.white h2 {
  margin: 0;
}

.well.white h2 i {
  color: #F8796C;
}

.well.white h3 {
  margin: 0;
}

.well.white h3 i {
  color: #F8796C;
}

.well.white h4 {
  margin: 0;
}

.well.white h4 i {
  color: #F8796C;
}

.well.white h5 {
  margin: 0;
}

.well.white h5 i {
  color: #F8796C;
}

.well.white h6 {
  margin: 0;
}

.well.white h6 i {
  color: #F8796C;
}

.main-cart .h3 {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 10px;
  margin-top: 0;
}

.main-cart .well {
  background-color: white;
}

.main-cart .productName {
  text-transform: uppercase;
  color: #F8796C;
  padding: 10px;
  font-weight: bold;
  white-space: initial;
}

@media (max-width: 768px) {
  .main-cart .productName {
    font-size: 1rem;
  }
}

.main-cart .productDescription {
  border-top: 1px solid #ddd;
  margin-top: 10px;
  padding-top: 10px;
}

@media (max-width: 768px) {
  .main-cart .productDescription {
    border-top: 1px solid #ddd;
    margin-top: 0px;
    padding-top: 0px;
  }
}

.main-cart .productDescription + .text-danger {
  white-space: normal;
}

@media (max-width: 768px) {
  .main-cart .form-group label {
    font-size: 16px;
    line-height: 1.5;
  }
}

.main-cart .productData {
  float: left;
  width: 60%;
}

@media (max-width: 600px) {
  .main-cart .productData {
    width: 100%;
  }
}

.main-cart .productImage {
  float: left;
  width: 40%;
}

@media (max-width: 480px) {
  .main-cart .productImage {
    width: 100%;
  }
}

.main-cart .attributes {
  list-style: none;
  padding-left: 20px;
}

.main-cart .attributes li {
  white-space: normal;
}

.main-cart .finalResume {
  text-align: right;
}

.main-cart .finalResume div {
  padding: 3px;
}

.main-cart .finalResume span {
  width: 100%;
  display: inline-block;
}

.main-cart .finalResume span.vat_incl {
  border-top: 1px solid #ddd;
  font-weight: bold;
}

.main-cart .finalResume .free {
  color: white;
  font-size: 0.9rem;
  padding: 3px 5px;
  background: #F8796C;
}

.main-cart .finalResume .shipping .qty {
  position: relative;
}

.main-cart .finalResume .shipping .qty.free-shipping:after {
  position: absolute;
  content: "";
  border-top: 1px solid #F8796C;
  top: 48%;
  transform: rotateZ(-20deg);
  width: 30px;
  left: 10px;
}

.main-cart .finalResume div {
  padding: 3px;
}

.main-cart .finalResume div > span {
  margin-left: 10px;
  width: 90px;
  display: inline-block;
}

.main-cart .finalResume .vat_incl span {
  border-top: 1px solid #eee;
  font-weight: bold;
}

.main-cart .expander:hover {
  cursor: pointer;
}

.main-cart .expander.open i:before {
  content: "\f00d";
}

#isCompany:checked ~ .field-address-company {
  display: block;
}

.field-address-company {
  -webkit-animation: isCompany;
  animation-duration: 1s;
  animation-iteration-count: 1;
  display: none;
}

tbody > tr:nth-of-type(odd) .productDescription {
  border-top-color: #eee;
}

.payment-options {
  list-style: none;
  padding: 0;
}

.payment-options li {
  display: inline-block;
  vertical-align: top;
  width: 33.3333333%;
  text-align: center;
}

.payment-options li:last-child label {
  border-right: 1px solid #eee;
}

.payment-options li label {
  transition: transform 0.3s ease;
  height: 75px;
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  border-right: none;
  line-height: 20px;
}

@media (max-width: 768px) {
  .payment-options li label {
    font-size: 0.75rem;
    padding: 10px 5px;
  }
}

.payment-options li label:hover {
  cursor: pointer;
}

.payment-options li i {
  display: block;
  font-size: 20px;
  margin: auto;
}

.payment-options input {
  display: none;
}

.payment-options input:checked + label {
  background: #F8796C;
  color: white;
}

#selectoraddress .selector {
  display: none;
}

#selectoraddress .changeaddress {
  display: block;
}

#selectoraddress.open .changeaddress {
  display: none;
}

#selectoraddress.open .selector {
  display: block;
}

.address-main ul {
  list-style: none;
  padding: 0;
}

.legal {
  max-height: 160px;
  overflow-y: auto;
  color: #676767;
}

.legal h1 {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.legal h1 i {
  color: #F8796C;
}

.legal h2 {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.legal h2 i {
  color: #F8796C;
}

.legal h3 {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.legal h3 i {
  color: #F8796C;
}

.legal h4 {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.legal h4 i {
  color: #F8796C;
}

.legal h5 {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.legal h5 i {
  color: #F8796C;
}

.legal h6 {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px dashed #a1a1a1;
  padding-bottom: 10px;
  margin-top: 1.3em;
}

.legal h6 i {
  color: #F8796C;
}

.order-status {
  padding: 5px 8px;
  border-radius: 3px;
}

.order-view .finalResume, .pdf-item .finalResume {
  text-align: right;
}

.order-view .finalResume div, .pdf-item .finalResume div {
  padding: 3px;
}

.order-view .finalResume span, .pdf-item .finalResume span {
  margin-left: 10px;
  width: 90px;
  display: inline-block;
}

.order-view .finalResume span.vat_incl, .pdf-item .finalResume span.vat_incl {
  border-top: 1px solid #bdbdbd;
  font-weight: bold;
}

.order-view .progress, .pdf-item .progress {
  display: none;
}

.order-view .productName, .pdf-item .productName {
  text-transform: uppercase;
  color: #F8796C;
  padding: 10px;
  font-weight: bold;
}

.order-view .fileinput-button, .pdf-item .fileinput-button {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.order-view .fileinput-button .replace, .pdf-item .fileinput-button .replace {
  display: none;
}

.order-view .filesUploaded, .pdf-item .filesUploaded {
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
  margin-bottom: 5px;
}

.order-view .filesUploaded .uploaded-date, .pdf-item .filesUploaded .uploaded-date {
  color: #a2a2a2;
}

.order-view .filesUploaded .timeLeft, .pdf-item .filesUploaded .timeLeft {
  white-space: normal;
  display: block;
}

.order-view .filesUploaded .file, .pdf-item .filesUploaded .file {
  font-weight: bold;
  padding: 4px 10px;
  display: inline-block;
  border: 1px solid;
  border-radius: 30px;
}

.order-view .filesUploaded .file i, .pdf-item .filesUploaded .file i {
  margin-right: 10px;
}

.order-view .newFile .fileinput-button, .pdf-item .newFile .fileinput-button {
  background-color: #F8796C;
  border-color: #f64d3b;
  color: white;
}

.order-view .filesOk .fileinput-button, .pdf-item .filesOk .fileinput-button {
  background-color: slategray;
  border-color: #5a6773;
  color: white;
}

.order-view .filesOk .glyphicon:before, .pdf-item .filesOk .glyphicon:before {
  content: "\e031";
}

.order-view .filesOk .replace, .pdf-item .filesOk .replace {
  display: inline-block;
}

.order-view .filesOk .select, .pdf-item .filesOk .select {
  display: none;
}

.order-view .filesKo .fileinput-button, .pdf-item .filesKo .fileinput-button {
  background: #ff6516;
  border-color: #c94400;
}

.order-view .filesKo .fileinput-button .glyphicon:before, .pdf-item .filesKo .fileinput-button .glyphicon:before {
  content: "\e031";
}

.order-view .filesKo .replace, .pdf-item .filesKo .replace {
  display: inline-block;
}

.order-view .filesKo .select, .pdf-item .filesKo .select {
  display: none;
}

.order-view .orderState, .pdf-item .orderState {
  margin-bottom: 0;
}

.nota {
  color: #b4b4b4;
}

.site-index .bx-wrapper {
  background: transparent;
}

.site-index .bx-wrapper .well {
  min-height: 140px;
}

.site-category-index ul, .items_list ul {
  padding: 0;
}

.site-category-index li, .items_list li {
  display: inline-block;
  width: 49%;
  padding: 15px 0;
}

@media screen and (min-width: 768px) {
  .site-category-index li:nth-child(2n+1), .items_list li:nth-child(2n+1) {
    padding-right: 30px;
  }
}

@media screen and (max-width: 768px) {
  .site-category-index li, .items_list li {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .site-category-index li .price, .items_list li .price {
    font-size: 18px !important;
  }
}

.categoryList {
  position: relative;
  background: #2d2d2d;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.17);
}

.categoryList h3 {
  margin-top: 0;
  color: #f98f84;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
}

.categoryList .categoryImage {
  display: inline-block;
  vertical-align: top;
  width: 49%;
}

.categoryList .categoryImage a {
  display: block;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.categoryList .desde {
  color: #F8796C;
  text-align: right;
}

.categoryList .desde .price {
  line-height: 1;
  display: block;
  font-size: 40px;
}

.categoryList .categoryDescription {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  padding: 10px;
  color: white;
  font-size: 12px;
}

.categoryList .categoryDescription a {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: block;
  font-size: 14px;
  border: 1px solid #F8796C;
  background-color: #2d2d2d;
  padding: 5px 15px;
  color: white;
  text-transform: uppercase;
  box-shadow: 0px 0px 0px 3px #2d2d2d;
}

.filesStatus .infoLink {
  display: block;
}

.filesStatus .infoLink:hover {
  cursor: pointer;
}

.filesStatus .alert {
  padding: 3px;
  font-size: 12px;
  white-space: normal;
}

.filesStatus ul {
  padding-left: 20px;
  font-weight: bold;
}

.addedgif {
  height: 100px;
  width: 100px;
  margin: auto;
  display: block;
  position: relative;
}

.addedgif span, .addedgif i {
  opacity: 0;
  position: absolute;
  top: 5px;
  left: 5px;
  height: 80px;
  width: 80px;
  display: block;
}

.addedgif i {
  top: 0;
  color: white;
  font-size: 40px;
  line-height: 80px;
  animation: slideIn;
  animation-iteration-count: 1;
  animation-duration: .4s;
  animation-timing-function: ease;
  animation-delay: .4s;
  animation-fill-mode: forwards;
}

.addedgif span {
  border-radius: 100%;
  background-color: #F8796C;
  overflow: hidden;
  transform-origin: center center;
  animation: growUp;
  animation-iteration-count: 1;
  animation-duration: .2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: .1s;
}

.addedgif span:first-child {
  animation-duration: .4s;
  animation-delay: .2s;
  top: 0;
  left: 0;
  height: 90px;
  width: 90px;
  background: white;
  border: 1px solid #F8796C;
}

.bigmenu-page-panel {
  width: 100%;
  background-color: #2d2d2d !important;
}

.bigmenu-page-panel .product-index > *:not(ul) {
  display: none;
}

.html-banner {
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 3px;
  padding: 10px;
  color: white;
  background-color: #2d2d2d;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17);
  margin-bottom: 20px;
}

.html-banner i {
  color: #F8796C;
  font-size: 30px;
  display: block;
  margin: 0;
  padding: 0;
}

.html-banner small {
  line-height: .85%;
}

.html-banner.featured {
  background-color: #F8796C;
}

.html-banner.green {
  background-color: #ACF815;
}

.html-banner.green .content {
  color: #2d2d2d;
}

.html-banner.green .content i {
  color: #2d2d2d;
}

.html-banner.blue {
  background-color: #2CD7FE;
}

.html-banner.blue .content {
  color: #2d2d2d;
}

.html-banner.blue .content i {
  color: #F8796C;
}

.html-banner.white {
  background-color: white;
}

.html-banner.white .content {
  border-color: #ddd;
  color: #2d2d2d;
}

.html-banner.white .content i {
  color: #F8796C;
}

.html-banner p {
  margin: 0;
}

.html-banner strong {
  display: block;
  letter-spacing: initial;
}

.html-banner .content {
  width: 100%;
  padding: 30px 10px;
  border: 2px dashed rgba(255, 255, 255, 0.7);
}

.sac {
  list-style: none;
  padding: 0;
}

.sac li {
  border: none;
}

.sac .title {
  font-size: 18px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.sac .image {
  margin: 10px 0;
  background-size: cover;
  height: 75px;
  background-position: center;
}

.sac .image.faq {
  background-image: url("../../images/custom_service/faq.jpg");
}

.sac .image.technical {
  background-image: url("../../images/custom_service/tecnical.jpg");
}

.sac .image.tracking {
  background-image: url("../../images/custom_service/tracking.jpg");
}

.sac .image.complaints {
  background-image: url("../../images/custom_service/recl.jpg");
}

.sac .content {
  height: 100px;
}

/* Claims */
#reason-information {
  padding: 10px;
  border: 3px solid #ddd;
  background-color: #eee;
  margin-bottom: 15px;
}

.site-faq .index h4 {
  text-align: center;
  padding-bottom: 15px;
}

.site-faq .index ul {
  padding-left: 18px;
  list-style-type: square;
}

.site-faq .index li {
  margin-bottom: 10px;
}

.site-faq .faqs {
  background-color: white;
  padding: 30px;
  padding-top: 1px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.17);
}

.site-faq .faqs h1 {
  text-align: center;
  margin-bottom: 20px;
}

.site-faq dt {
  color: #2d2d2d;
}

.site-faq dt:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f128";
  font-size: 40px;
  vertical-align: middle;
  color: #eee;
  background-color: #ddd;
  width: 40px;
  height: 40px;
  text-align: center;
  margin-right: 10px;
}

.site-faq dd {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

footer {
  background-color: #2d2d2d;
  color: #949494;
  padding: 60px 0 0;
}

footer .bottom {
  margin-top: 60px;
  text-align: center;
  padding: 20px;
  background-color: #202020;
}

footer .bottom p {
  margin: 0;
}

footer h5 {
  padding-right: 30px;
  font-weight: 700;
  color: #aeaeae;
  text-transform: uppercase;
  border-bottom: 1px solid #252525;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

footer h5:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  display: block;
  width: 30%;
  min-width: 95px;
  height: 1px;
  background-color: #F8796C;
}

footer .shop_name {
  color: white;
}

footer a {
  font-size: 11px;
  color: inherit;
}

footer a:hover {
  color: white;
}

footer ul, footer ol {
  padding: 0;
}

footer ul li, footer ol li {
  padding: 5px 8px;
  list-style: none;
}

.cms-view img {
  float: none;
  margin-right: auto;
}

.cms-view .main-content p {
  text-align: justify;
}

.cms-view .main-content img {
  max-width: 100%;
  float: left;
  margin-right: 10px;
  height: auto;
}

.site-colores .color-group-title, .site-nearpantone .color-group-title, .site-nearral .color-group-title {
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.site-colores .color-list, .site-nearpantone .color-list, .site-nearral .color-list {
  list-style: none;
  padding: 0;
}

.site-colores .color-wrapper, .site-nearpantone .color-wrapper, .site-nearral .color-wrapper {
  padding: 20px;
}

.site-colores .color-wrapper:hover .overlay, .site-nearpantone .color-wrapper:hover .overlay, .site-nearral .color-wrapper:hover .overlay {
  opacity: 0;
}

.site-colores .color-name, .site-nearpantone .color-name, .site-nearral .color-name {
  color: #6f6f6f;
}

.site-colores .color, .site-nearpantone .color, .site-nearral .color {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.17);
  background-color: white;
}

.site-colores .color .sample, .site-nearpantone .color .sample, .site-nearral .color .sample {
  position: relative;
  display: block;
  height: 100px;
}

.site-colores .color .sample .overlay, .site-nearpantone .color .sample .overlay, .site-nearral .color .sample .overlay {
  transition: opacity .4s ease;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.site-colores .color[title*='Gloss'] .overlay, .site-nearpantone .color[title*='Gloss'] .overlay, .site-nearral .color[title*='Gloss'] .overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 125%);
}

.site-colores .color[title*='Matt'] .overlay, .site-nearpantone .color[title*='Matt'] .overlay, .site-nearral .color[title*='Matt'] .overlay {
  background: linear-gradient(156deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.41) 140%);
}

.category-wrap-ajax .panel-background {
  box-shadow: none;
  height: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.category-wrap-ajax .panel-background .menu-item-content {
  text-align: right;
}

.category-wrap-ajax .panel-background .menu-item-content h2 {
  font-size: 20px;
}

.table.table-responsive {
  display: table;
}

.table.table-responsive thead {
  width: 100%;
}

.table.table-responsive tbody {
  width: 100%;
}

@media (max-width: 768px) {
  .table.table-responsive thead {
    display: none;
  }
  .table.table-responsive tbody tr {
    border: 1px solid #737373;
  }
  .table.table-responsive tbody td {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 25% !important;
    border: none !important;
  }
  .table.table-responsive tbody td div {
    width: 100%;
    min-width: 100%;
    flex: 1;
  }
  .table.table-responsive tbody td:empty {
    display: none;
  }
  .table.table-responsive tbody td:before {
    padding-top: 0.75rem;
    display: block;
    content: attr(data-th);
    font-weight: bold;
    text-align: left;
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 0.75rem;
    width: calc(25% - 10px);
    padding-right: 10px;
    white-space: nowrap;
  }
}

.whatsapp {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 77px;
  right: 24px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  line-height: 1.4;
}

/*# sourceMappingURL=style.css.map */
