:root {
  --color-primary: #009de0;
  --color-secondary: #c4007a;
  --color-dark: #365d66;
}

.main-menu > ul > li:hover > a {
  color: var(--color-primary);
}

@media only screen and (min-width: 992px) {
  .main-menu ul ul li:hover > a {
    color: var(--color-primary);
  }
}

.btn_full,
a.btn_full {
  background-color: var(--color-primary);
}

.btn_1.white,
a.btn_1.white {
  color: var(--color-secondary);
}

#general_decor {
  background: none;
}

footer {
  background: var(--color-dark) repeat-x center bottom;
}

.qty-buttons {
  position: relative;
  width: 110px;
  height: 34px;
}

input.qty {
  width: 100%;
  border-left: 0;
  border-right: 0;
  text-align: center;
}

input.qtyminus,
input.qtyplus,
input.qtyplus:focus {
  position: absolute;
  width: 35px;
  height: 34px;
  border: 1px solid #ccc;
  outline: 0;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  z-index: 9;
}

input.qtyplus {
  background: #fff url(../img/plus.png) no-repeat center center;
  right: 0;
  top: 0;
  text-indent: -9999px;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 1px solid #ccc;
}

input.qtyminus {
  background: #fff url(../img/minus.png) no-repeat center center;
  text-indent: -9999px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 0;
  top: 0;
  border-right: 1px solid #ccc;
}

.qty.form-control {
  font-size: 12px;
  color: #333;
  height: 34px;
  border-radius: 3px;
}

.qty.form-control:focus {
  box-shadow: none;
}

.border {
  border-color: #ffa900 !important;
}

.button:disabled {
  background-color: #ffa90066;
  border-color: transparent;
  cursor: not-allowed;
}

.has-error .form-input {
  border-color: #a94442 !important;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%) !important;
}

.has-error .control-label, .help-block.help-block-error {
  color: #a94442 !important;
}